cart.scss
2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
.page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.coupon-tab {
white-space:nowrap;
width: 100%;
height: 100rpx;
overflow-x: auto;
overflow-y: hidden;
.list{
position: relative;
display:inline-block;
width: 20%;
height: 100%;
line-height: 100rpx;
text-align: center;
text{
font-size: 28rpx;
color: #000;
}
}
.action {
text {
color: #222222;
}
.line {
position: absolute;
left: 50%;
bottom: 10rpx;
width: 30%;
height: 6rpx;
background: linear-gradient(to right, $base, #f6f6f6);
transform: translate(-50%, 0);
}
}
}
.goods-list{
padding: 0 20rpx;
margin-top: 20rpx;
padding-bottom: 100rpx;
/* #ifdef MP */
padding-bottom: calc(100rpx + env(safe-area-inset-bottom));
/* #endif */
.list{
width: 100%;
.cart-box {
background-color: #fff;
border-radius: 20rpx;
padding-bottom: 10rpx;
margin-bottom: 20rpx;
.cart-box-top {
display:flex;
align-items: center;
padding: 20rpx;
.cart-box-img {
image {
width: 70rpx;
height: 70rpx;
border-radius: 10rpx;
margin-right: 20rpx;
}
}
.cart-box-text {
width: 55%;
.my-qymc {
font-size: 34rpx;
font-weight: bold;
}
.my-one-omit {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 300rpx;
display: inline-block;
color: #848484;
}
}
.cart-box-btn {
border: 2rpx solid #e5e5e5;
border-radius: 100rpx;
padding: 8rpx 20rpx;
display: flex;
align-items: center;
justify-content: right;
image {
width: 40rpx;
height: 40rpx;
margin-right: 10rpx;
}
}
}
.cart-box-list {
display:flex;
border: 2rpx solid #f7f7f7;
border-radius: 10rpx;
padding:10rpx;
margin: 0 10rpx 20rpx 10rpx;
.cart-box-img {
image {
width: 44rpx;
height: 44rpx;
border-radius: 8rpx;
margin-right: 20rpx;
}
}
.cart-box-text {
width: 73%;
.my-qymc {
font-size: 30rpx;
}
}
.cart-box-btn {
color: #ff5b5b;
font-weight: bold;
}
}
}
}
}
/* 底部 */
.footer-btn{
position: fixed;
left: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 80rpx;
background-color: #FFFFFF;
.btn{
display: flex;
align-items: center;
justify-content: center;
width: 90%;
height: 70rpx;
background: linear-gradient(to right,$base,$change-clor);
border-radius: 70rpx;
font-size: 28rpx;
color: #FFFFFF;
}
}