s-material-react 1.3.19 → 1.3.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/basic/textLine.scss +10 -10
- package/css/common/addressItem.scss +74 -74
- package/css/common/card.scss +42 -42
- package/css/common/coupon.scss +82 -82
- package/css/common/evaluateItem.scss +51 -51
- package/css/common/icon.scss +59 -59
- package/css/common/noData.scss +27 -27
- package/css/common/rateItem.scss +35 -35
- package/css/common/stepNum.scss +16 -16
- package/css/pages/addressDetail.scss +59 -59
- package/css/pages/addressList.scss +43 -41
- package/css/pages/cart.scss +161 -161
- package/css/pages/classifyNav.scss +15 -15
- package/css/pages/couponList.scss +198 -197
- package/css/pages/cube.scss +49 -49
- package/css/pages/evaluateDetail.scss +57 -57
- package/css/pages/evaluateEntry.scss +52 -52
- package/css/pages/evaluateList.scss +22 -22
- package/css/pages/goods.scss +79 -79
- package/css/pages/goodsClassify.scss +129 -109
- package/css/pages/goodsDetail.scss +380 -380
- package/css/pages/goodsDetailTopInfo.scss +40 -40
- package/css/pages/goodsList.scss +62 -63
- package/css/pages/index.scss +6 -3
- package/css/pages/mine.scss +72 -72
- package/css/pages/mineData.scss +48 -0
- package/css/pages/mineFunction.scss +35 -0
- package/css/pages/mineOrderEntry.scss +46 -0
- package/css/pages/order-goodsItem.scss +12 -12
- package/css/pages/orderDetail.scss +123 -123
- package/css/pages/orderEntry.scss +36 -36
- package/css/pages/orderList.scss +60 -60
- package/css/pages/paymentMode.scss +62 -61
- package/css/pages/placeOrder.scss +130 -130
- package/css/pages/placeOrderResult.scss +81 -81
- package/css/pages/searchPage.scss +65 -65
- package/css/pages/service.scss +2 -2
- package/css/pages/slider.scss +15 -15
- package/css/pages/title.scss +1 -1
- package/dist/common/scrollWrap/index.d.ts +1 -2
- package/dist/components/AddressDetail/index.d.ts +11 -1
- package/dist/components/AddressList/index.d.ts +10 -2
- package/dist/components/CouponList/components/couponItem.d.ts +9 -0
- package/dist/components/CouponList/components/index.d.ts +1 -3
- package/dist/components/CouponList/index.d.ts +8 -1
- package/dist/components/EvaluateDetail/index.d.ts +9 -2
- package/dist/components/GoodsClassify/components/classifyFloor.d.ts +1 -0
- package/dist/components/MineData/index.d.ts +8 -0
- package/dist/components/MineFunction/index.d.ts +1 -0
- package/dist/components/MineOrderEntry/index.d.ts +1 -0
- package/dist/components/OrderDetail/component/footer.d.ts +4 -0
- package/dist/components/OrderDetail/index.d.ts +13 -1
- package/dist/components/PaymentMode/index.d.ts +10 -2
- package/dist/components/PlaceOrder/components/operate.d.ts +4 -0
- package/dist/components/PlaceOrder/components/shop.d.ts +2 -1
- package/dist/components/PlaceOrder/index.d.ts +7 -0
- package/dist/components/PlaceOrderResult/index.d.ts +17 -2
- package/dist/components/SearchPage/index.d.ts +4 -1
- package/dist/components/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/dist/components/CouponList/components/overdue.d.ts +0 -5
- package/dist/components/CouponList/components/unUsed.d.ts +0 -5
- package/dist/components/CouponList/components/used.d.ts +0 -5
|
@@ -1,436 +1,436 @@
|
|
|
1
1
|
.GoodsDetailWrap {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
//overflow: scroll;
|
|
3
|
+
background-color: #f6f6f6;
|
|
4
|
+
//padding-top: 12px;
|
|
5
|
+
//padding-bottom: 12px;
|
|
6
|
+
|
|
7
|
+
.skeleton {
|
|
8
|
+
width: 100%;
|
|
9
|
+
height: 100vh;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
padding: 10px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.topSlider {
|
|
15
|
+
margin-bottom: 10px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.goodsDetail-topInfo {
|
|
19
|
+
background-color: #fff;
|
|
20
|
+
margin: 0 10px 12px;
|
|
21
|
+
padding: 13px;
|
|
22
|
+
display: grid;
|
|
23
|
+
grid-template-columns: 1fr 54px;
|
|
24
|
+
border-radius: 8px;
|
|
25
|
+
|
|
26
|
+
.name {
|
|
27
|
+
font-size: 18px;
|
|
28
|
+
color: #000000;
|
|
29
|
+
line-height: 25px;
|
|
30
|
+
display: block;
|
|
31
|
+
padding-right: 10px;
|
|
12
32
|
}
|
|
13
33
|
|
|
14
|
-
.
|
|
15
|
-
|
|
34
|
+
.price {
|
|
35
|
+
font-size: 20px;
|
|
36
|
+
font-weight: 600;
|
|
37
|
+
line-height: 28px;
|
|
16
38
|
}
|
|
17
39
|
|
|
18
|
-
.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
40
|
+
.rPart {
|
|
41
|
+
display: flex;
|
|
42
|
+
justify-content: center;
|
|
43
|
+
align-items: center;
|
|
44
|
+
flex-direction: column;
|
|
45
|
+
border-left: 1px solid #ededed;
|
|
46
|
+
padding-left: 10px;
|
|
47
|
+
|
|
48
|
+
.icon {
|
|
49
|
+
cursor: pointer;
|
|
50
|
+
width: 21px;
|
|
51
|
+
height: 21px;
|
|
52
|
+
display: block;
|
|
53
|
+
margin: 0 auto 7px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.txt {
|
|
57
|
+
font-size: 12px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
33
61
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
62
|
+
.goodsDetail-promotion {
|
|
63
|
+
background-color: #fff;
|
|
64
|
+
margin: 0 10px 12px;
|
|
65
|
+
padding: 13px;
|
|
66
|
+
border-radius: 8px;
|
|
67
|
+
display: grid;
|
|
68
|
+
grid-template-columns: 52px 1fr;
|
|
39
69
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
justify-content: center;
|
|
43
|
-
align-items: center;
|
|
44
|
-
flex-direction: column;
|
|
45
|
-
border-left: 1px solid #ededed;
|
|
46
|
-
padding-left: 10px;
|
|
47
|
-
|
|
48
|
-
.icon {
|
|
49
|
-
cursor: pointer;
|
|
50
|
-
width: 21px;
|
|
51
|
-
height: 21px;
|
|
52
|
-
display: block;
|
|
53
|
-
margin: 0 auto 7px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.txt {
|
|
57
|
-
font-size: 12px;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
70
|
+
.label {
|
|
71
|
+
font-size: 14px;
|
|
60
72
|
}
|
|
61
73
|
|
|
62
|
-
.
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
border-radius: 8px;
|
|
67
|
-
display: grid;
|
|
68
|
-
grid-template-columns: 52px 1fr;
|
|
74
|
+
.group {
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-wrap: wrap;
|
|
77
|
+
margin: -10px -10px 0 0;
|
|
69
78
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
79
|
+
.noPromotion {
|
|
80
|
+
line-height: 22px;
|
|
81
|
+
color: #999;
|
|
82
|
+
}
|
|
73
83
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.item {
|
|
85
|
-
font-size: 12px;
|
|
86
|
-
padding: 2px 10px;
|
|
87
|
-
background-color: #f3f3f3;
|
|
88
|
-
display: inline-block;
|
|
89
|
-
margin: 10px 10px 0 0;
|
|
90
|
-
border-radius: 20px;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
84
|
+
.item {
|
|
85
|
+
font-size: 12px;
|
|
86
|
+
padding: 2px 10px;
|
|
87
|
+
background-color: #f3f3f3;
|
|
88
|
+
display: inline-block;
|
|
89
|
+
margin: 10px 10px 0 0;
|
|
90
|
+
border-radius: 20px;
|
|
91
|
+
}
|
|
93
92
|
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.goodsDetail-coupon,
|
|
96
|
+
.goodsDetail-size {
|
|
97
|
+
background-color: #fff;
|
|
98
|
+
margin: 0 10px 12px;
|
|
99
|
+
padding: 13px;
|
|
100
|
+
border-radius: 8px;
|
|
101
|
+
display: grid;
|
|
102
|
+
grid-template-columns: 52px 1fr;
|
|
103
|
+
font-size: 14px;
|
|
104
|
+
|
|
105
|
+
.info {
|
|
106
|
+
display: flex;
|
|
107
|
+
justify-content: space-between;
|
|
108
|
+
|
|
109
|
+
.label {
|
|
110
|
+
color: #999;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.icon {
|
|
114
|
+
cursor: pointer;
|
|
115
|
+
width: 14px;
|
|
116
|
+
height: 3px;
|
|
117
|
+
margin-top: 10px;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.goodsDetailHandleBar {
|
|
123
|
+
width: 100%;
|
|
124
|
+
height: 54px;
|
|
125
|
+
background-color: #ffffff;
|
|
126
|
+
position: sticky;
|
|
127
|
+
bottom: 0;
|
|
128
|
+
left: 0;
|
|
129
|
+
//top: 0;
|
|
130
|
+
box-sizing: border-box;
|
|
131
|
+
padding: 7px 10px;
|
|
132
|
+
display: grid;
|
|
133
|
+
grid-template-columns: 30px 40px 1fr;
|
|
134
|
+
gap: 20px;
|
|
94
135
|
|
|
95
|
-
.
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
padding: 13px;
|
|
100
|
-
border-radius: 8px;
|
|
101
|
-
display: grid;
|
|
102
|
-
grid-template-columns: 52px 1fr;
|
|
103
|
-
font-size: 14px;
|
|
104
|
-
|
|
105
|
-
.info {
|
|
106
|
-
display: flex;
|
|
107
|
-
justify-content: space-between;
|
|
108
|
-
|
|
109
|
-
.label {
|
|
110
|
-
color: #999;
|
|
111
|
-
}
|
|
136
|
+
.txt {
|
|
137
|
+
font-size: 13px;
|
|
138
|
+
margin-top: 4px;
|
|
139
|
+
}
|
|
112
140
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
width: 14px;
|
|
116
|
-
height: 3px;
|
|
117
|
-
margin-top: 10px;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
141
|
+
.linkGroup {
|
|
142
|
+
text-align: center;
|
|
120
143
|
}
|
|
121
144
|
|
|
122
|
-
.
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
background-color: #ffffff;
|
|
126
|
-
position: sticky;
|
|
127
|
-
bottom: 0;
|
|
128
|
-
left: 0;
|
|
129
|
-
//top: 0;
|
|
130
|
-
box-sizing: border-box;
|
|
131
|
-
padding: 7px 10px;
|
|
132
|
-
display: grid;
|
|
133
|
-
grid-template-columns: 30px 40px 1fr;
|
|
134
|
-
gap: 20px;
|
|
135
|
-
|
|
136
|
-
.txt {
|
|
137
|
-
font-size: 13px;
|
|
138
|
-
margin-top: 4px;
|
|
139
|
-
}
|
|
145
|
+
.btnGroup {
|
|
146
|
+
display: grid;
|
|
147
|
+
grid-template-columns: repeat(2, 1fr);
|
|
140
148
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
149
|
+
.btn {
|
|
150
|
+
display: flex;
|
|
151
|
+
justify-content: center;
|
|
152
|
+
align-items: center;
|
|
153
|
+
font-size: 14px;
|
|
144
154
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
display: flex;
|
|
151
|
-
justify-content: center;
|
|
152
|
-
align-items: center;
|
|
153
|
-
font-size: 14px;
|
|
154
|
-
|
|
155
|
-
&.addCart {
|
|
156
|
-
background-color: #959595;
|
|
157
|
-
color: #ffffff;
|
|
158
|
-
border-top-left-radius: 20px;
|
|
159
|
-
border-bottom-left-radius: 20px;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
&.buy {
|
|
163
|
-
background-color: #000000;
|
|
164
|
-
color: #ffffff;
|
|
165
|
-
border-top-right-radius: 20px;
|
|
166
|
-
border-bottom-right-radius: 20px;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
155
|
+
&.addCart {
|
|
156
|
+
background-color: #959595;
|
|
157
|
+
color: #ffffff;
|
|
158
|
+
border-top-left-radius: 20px;
|
|
159
|
+
border-bottom-left-radius: 20px;
|
|
169
160
|
}
|
|
170
|
-
}
|
|
171
161
|
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
.tabs {
|
|
179
|
-
width: 100%;
|
|
180
|
-
height: 50px;
|
|
181
|
-
line-height: 50px;
|
|
182
|
-
text-align: center;
|
|
183
|
-
margin-bottom: 10px;
|
|
184
|
-
display: flex;
|
|
185
|
-
|
|
186
|
-
.tabsItem {
|
|
187
|
-
flex: 1;
|
|
188
|
-
display: inline-block;
|
|
189
|
-
font-size: 16px;
|
|
190
|
-
position: relative;
|
|
191
|
-
|
|
192
|
-
&.active {
|
|
193
|
-
.line {
|
|
194
|
-
display: block;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.line {
|
|
199
|
-
width: 40px;
|
|
200
|
-
height: 2px;
|
|
201
|
-
background-color: #000000;
|
|
202
|
-
position: absolute;
|
|
203
|
-
bottom: 0;
|
|
204
|
-
left: 50%;
|
|
205
|
-
margin-left: -20px;
|
|
206
|
-
display: none;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
162
|
+
&.buy {
|
|
163
|
+
background-color: #000000;
|
|
164
|
+
color: #ffffff;
|
|
165
|
+
border-top-right-radius: 20px;
|
|
166
|
+
border-bottom-right-radius: 20px;
|
|
209
167
|
}
|
|
168
|
+
}
|
|
210
169
|
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.goodsDetailTab {
|
|
173
|
+
background-color: #ffffff;
|
|
174
|
+
margin: 0 10px 12px;
|
|
175
|
+
border-radius: 8px;
|
|
176
|
+
overflow: hidden;
|
|
177
|
+
|
|
178
|
+
.tabs {
|
|
179
|
+
width: 100%;
|
|
180
|
+
height: 50px;
|
|
181
|
+
line-height: 50px;
|
|
182
|
+
text-align: center;
|
|
183
|
+
margin-bottom: 10px;
|
|
184
|
+
display: flex;
|
|
185
|
+
|
|
186
|
+
.tabsItem {
|
|
187
|
+
flex: 1;
|
|
188
|
+
display: inline-block;
|
|
189
|
+
font-size: 16px;
|
|
190
|
+
position: relative;
|
|
211
191
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
width: 100% !important;
|
|
215
|
-
height: auto;
|
|
192
|
+
&.active {
|
|
193
|
+
.line {
|
|
216
194
|
display: block;
|
|
217
|
-
|
|
195
|
+
}
|
|
218
196
|
}
|
|
219
197
|
|
|
220
|
-
|
|
221
|
-
|
|
198
|
+
.line {
|
|
199
|
+
width: 40px;
|
|
200
|
+
height: 2px;
|
|
201
|
+
background-color: #000000;
|
|
202
|
+
position: absolute;
|
|
203
|
+
bottom: 0;
|
|
204
|
+
left: 50%;
|
|
205
|
+
margin-left: -20px;
|
|
206
|
+
display: none;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.goodsDetail-info {
|
|
213
|
+
.mystyle {
|
|
214
|
+
width: 100% !important;
|
|
215
|
+
height: auto;
|
|
216
|
+
display: block;
|
|
217
|
+
background-size: cover !important;
|
|
218
|
+
}
|
|
222
219
|
|
|
223
|
-
|
|
224
|
-
|
|
220
|
+
width: 100%;
|
|
221
|
+
background-color: #ffffff;
|
|
225
222
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
223
|
+
.ssd-module-wrap {
|
|
224
|
+
width: 100%;
|
|
225
|
+
|
|
226
|
+
.ssd-module {
|
|
227
|
+
width: 100%;
|
|
228
|
+
background-size: cover;
|
|
229
|
+
}
|
|
231
230
|
}
|
|
231
|
+
}
|
|
232
232
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
}
|
|
233
|
+
.goodsDetailEvaluate {
|
|
234
|
+
padding: 0 13px;
|
|
235
|
+
.topInfo {
|
|
236
|
+
font-size: 14px;
|
|
238
237
|
}
|
|
238
|
+
}
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
.goodsDetail-coupon-popup {
|
|
242
|
-
|
|
242
|
+
padding: 14px 14px 0;
|
|
243
|
+
|
|
244
|
+
.stamp {
|
|
245
|
+
width: 100%;
|
|
246
|
+
display: inline-block;
|
|
247
|
+
padding: 10px;
|
|
248
|
+
position: relative;
|
|
249
|
+
background: radial-gradient(transparent 0px, transparent 4px, #1a1922 4px, #1a1922) -10px -10px;
|
|
250
|
+
background-size: 20px 20px;
|
|
251
|
+
margin-bottom: 14px;
|
|
252
|
+
|
|
253
|
+
&:after {
|
|
254
|
+
content: '';
|
|
255
|
+
position: absolute;
|
|
256
|
+
left: 5px;
|
|
257
|
+
top: 5px;
|
|
258
|
+
right: 5px;
|
|
259
|
+
bottom: 5px;
|
|
260
|
+
//box-shadow: 0 0 20px 1px rgba(0, 0, 0, 1);
|
|
261
|
+
z-index: -1;
|
|
262
|
+
}
|
|
243
263
|
|
|
244
|
-
.stamp {
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
264
|
+
.stamp-content {
|
|
265
|
+
height: 120px;
|
|
266
|
+
width: 100%;
|
|
267
|
+
background: #1a1922;
|
|
268
|
+
display: grid;
|
|
269
|
+
grid-template-columns: 108px 1fr;
|
|
270
|
+
position: relative;
|
|
271
|
+
|
|
272
|
+
.choose {
|
|
273
|
+
position: absolute;
|
|
274
|
+
top: 10px;
|
|
275
|
+
right: 10px;
|
|
276
|
+
background: #fff;
|
|
277
|
+
border-radius: 100%;
|
|
278
|
+
overflow: hidden;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.price {
|
|
282
|
+
border-right: 1px dashed #fff;
|
|
283
|
+
text-align: center;
|
|
284
|
+
line-height: 120px;
|
|
285
|
+
|
|
286
|
+
.symbol {
|
|
287
|
+
font-size: 23px;
|
|
288
|
+
color: #fff;
|
|
262
289
|
}
|
|
263
290
|
|
|
264
|
-
.
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
display: grid;
|
|
269
|
-
grid-template-columns: 108px 1fr;
|
|
270
|
-
position: relative;
|
|
271
|
-
|
|
272
|
-
.choose {
|
|
273
|
-
position: absolute;
|
|
274
|
-
top: 10px;
|
|
275
|
-
right: 10px;
|
|
276
|
-
background: #fff;
|
|
277
|
-
border-radius: 100%;
|
|
278
|
-
overflow: hidden;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.price {
|
|
282
|
-
border-right: 1px dashed #fff;
|
|
283
|
-
text-align: center;
|
|
284
|
-
line-height: 120px;
|
|
285
|
-
|
|
286
|
-
.symbol {
|
|
287
|
-
font-size: 23px;
|
|
288
|
-
color: #fff;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.num {
|
|
292
|
-
font-size: 33px;
|
|
293
|
-
color: #fff;
|
|
294
|
-
text-align: left;
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.info {
|
|
299
|
-
display: flex;
|
|
300
|
-
justify-content: center;
|
|
301
|
-
align-items: center;
|
|
302
|
-
flex-direction: column;
|
|
303
|
-
|
|
304
|
-
.title {
|
|
305
|
-
margin-bottom: 12px;
|
|
306
|
-
font-size: 16px;
|
|
307
|
-
color: #fff;
|
|
308
|
-
line-height: 22px;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.date {
|
|
312
|
-
color: rgba(255, 255, 255, 0.45);
|
|
313
|
-
}
|
|
314
|
-
}
|
|
291
|
+
.num {
|
|
292
|
+
font-size: 33px;
|
|
293
|
+
color: #fff;
|
|
294
|
+
text-align: left;
|
|
315
295
|
}
|
|
316
|
-
|
|
296
|
+
}
|
|
317
297
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
298
|
+
.info {
|
|
299
|
+
display: flex;
|
|
300
|
+
justify-content: center;
|
|
301
|
+
align-items: center;
|
|
302
|
+
flex-direction: column;
|
|
303
|
+
|
|
304
|
+
.title {
|
|
305
|
+
margin-bottom: 12px;
|
|
306
|
+
font-size: 16px;
|
|
307
|
+
color: #fff;
|
|
308
|
+
line-height: 22px;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.date {
|
|
312
|
+
color: rgba(255, 255, 255, 0.45);
|
|
313
|
+
}
|
|
314
|
+
}
|
|
326
315
|
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.confirm {
|
|
319
|
+
width: 100%;
|
|
320
|
+
height: 40px;
|
|
321
|
+
line-height: 40px;
|
|
322
|
+
text-align: center;
|
|
323
|
+
background-color: #000;
|
|
324
|
+
color: #fff;
|
|
325
|
+
border-radius: 30px;
|
|
326
|
+
}
|
|
327
327
|
}
|
|
328
328
|
|
|
329
329
|
.goodsDetail-size-popup {
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
.rPart {
|
|
355
|
-
.name {
|
|
356
|
-
font-size: 13px;
|
|
357
|
-
width: 98%;
|
|
358
|
-
margin-bottom: 6px;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
.price {
|
|
362
|
-
font-size: 14px;
|
|
363
|
-
margin-bottom: 4px;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.chosen {
|
|
367
|
-
color: #a7a7a7;
|
|
368
|
-
font-size: 14px;
|
|
369
|
-
}
|
|
370
|
-
}
|
|
330
|
+
background: #fff;
|
|
331
|
+
display: grid;
|
|
332
|
+
//grid-template-rows: calc(50vh - 110px) 88px;
|
|
333
|
+
|
|
334
|
+
.content {
|
|
335
|
+
overflow-y: scroll;
|
|
336
|
+
|
|
337
|
+
.goodsInfo {
|
|
338
|
+
width: 100%;
|
|
339
|
+
border-bottom: 1px solid #e2e2e2;
|
|
340
|
+
padding: 14px 12px 20px;
|
|
341
|
+
display: grid;
|
|
342
|
+
grid-template-columns: 72px 1fr;
|
|
343
|
+
gap: 10px;
|
|
344
|
+
box-sizing: border-box;
|
|
345
|
+
|
|
346
|
+
.lPart {
|
|
347
|
+
.goodsImg {
|
|
348
|
+
width: 70px;
|
|
349
|
+
height: 70px;
|
|
350
|
+
border: 1px solid #ccc;
|
|
371
351
|
}
|
|
352
|
+
}
|
|
372
353
|
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
display: block;
|
|
379
|
-
font-size: 13px;
|
|
380
|
-
color: #000000;
|
|
381
|
-
margin-bottom: 10px;
|
|
382
|
-
padding: 5px 12px 0;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
.sizeArrItemWrap {
|
|
386
|
-
padding: 0 12px;
|
|
387
|
-
|
|
388
|
-
.sizeItem {
|
|
389
|
-
padding: 7px 27px;
|
|
390
|
-
border: 1px solid #a7a7a7;
|
|
391
|
-
margin-right: 10px;
|
|
392
|
-
display: inline-block;
|
|
393
|
-
border-radius: 4px;
|
|
394
|
-
color: #a7a7a7;
|
|
395
|
-
margin-bottom: 10px;
|
|
396
|
-
&.active {
|
|
397
|
-
//background: #346fc2;
|
|
398
|
-
background: #000000;
|
|
399
|
-
color: #fff;
|
|
400
|
-
border-color: #1a1a1a;
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
}
|
|
354
|
+
.rPart {
|
|
355
|
+
.name {
|
|
356
|
+
font-size: 13px;
|
|
357
|
+
width: 98%;
|
|
358
|
+
margin-bottom: 6px;
|
|
404
359
|
}
|
|
405
360
|
|
|
406
|
-
.
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
361
|
+
.price {
|
|
362
|
+
font-size: 14px;
|
|
363
|
+
margin-bottom: 4px;
|
|
364
|
+
}
|
|
410
365
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
366
|
+
.chosen {
|
|
367
|
+
color: #a7a7a7;
|
|
368
|
+
font-size: 14px;
|
|
414
369
|
}
|
|
370
|
+
}
|
|
415
371
|
}
|
|
416
372
|
|
|
417
|
-
.
|
|
418
|
-
|
|
419
|
-
|
|
373
|
+
.sizeArr {
|
|
374
|
+
padding: 20px 0 10px;
|
|
375
|
+
border-bottom: 1px solid #e2e2e2;
|
|
376
|
+
|
|
377
|
+
.title {
|
|
378
|
+
display: block;
|
|
379
|
+
font-size: 13px;
|
|
380
|
+
color: #000000;
|
|
381
|
+
margin-bottom: 10px;
|
|
382
|
+
padding: 5px 12px 0;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.sizeArrItemWrap {
|
|
420
386
|
padding: 0 12px;
|
|
421
|
-
display: flex;
|
|
422
|
-
justify-content: center;
|
|
423
|
-
align-items: center;
|
|
424
387
|
|
|
425
|
-
.
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
388
|
+
.sizeItem {
|
|
389
|
+
padding: 7px 27px;
|
|
390
|
+
border: 1px solid #a7a7a7;
|
|
391
|
+
margin-right: 10px;
|
|
392
|
+
display: inline-block;
|
|
393
|
+
border-radius: 4px;
|
|
394
|
+
color: #a7a7a7;
|
|
395
|
+
margin-bottom: 10px;
|
|
396
|
+
&.active {
|
|
397
|
+
//background: #346fc2;
|
|
398
|
+
background: #000000;
|
|
399
|
+
color: #fff;
|
|
400
|
+
border-color: #1a1a1a;
|
|
401
|
+
}
|
|
434
402
|
}
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.countWrap {
|
|
407
|
+
padding: 16px 12px;
|
|
408
|
+
display: flex;
|
|
409
|
+
justify-content: space-between;
|
|
410
|
+
|
|
411
|
+
.label {
|
|
412
|
+
font-size: 13px;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.btnWrap {
|
|
418
|
+
height: 60px;
|
|
419
|
+
box-sizing: border-box;
|
|
420
|
+
padding: 0 12px;
|
|
421
|
+
display: flex;
|
|
422
|
+
justify-content: center;
|
|
423
|
+
align-items: center;
|
|
424
|
+
|
|
425
|
+
.btn {
|
|
426
|
+
width: 100%;
|
|
427
|
+
height: 40px;
|
|
428
|
+
line-height: 40px;
|
|
429
|
+
background-color: #000000;
|
|
430
|
+
display: block;
|
|
431
|
+
border-radius: 20px;
|
|
432
|
+
text-align: center;
|
|
433
|
+
color: #ffffff;
|
|
435
434
|
}
|
|
435
|
+
}
|
|
436
436
|
}
|