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,217 +1,218 @@
|
|
|
1
1
|
.couponList {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
background-color: #f6f6f6;
|
|
3
|
+
.couponTab {
|
|
4
|
+
display: grid;
|
|
5
|
+
grid-template-columns: repeat(3, 1fr);
|
|
6
|
+
padding-bottom: 7px;
|
|
7
|
+
padding-top: 30px;
|
|
8
|
+
background-color: #ffffff;
|
|
9
|
+
|
|
10
|
+
.couponTabItem {
|
|
11
|
+
color: #999;
|
|
12
|
+
font-size: 16px;
|
|
13
|
+
text-align: center;
|
|
14
|
+
position: relative;
|
|
15
|
+
|
|
16
|
+
&.active {
|
|
17
|
+
color: #000;
|
|
18
|
+
|
|
19
|
+
.icon {
|
|
20
|
+
display: block;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon {
|
|
25
|
+
width: 23px;
|
|
26
|
+
height: 2px;
|
|
27
|
+
background-color: #000;
|
|
28
|
+
position: absolute;
|
|
29
|
+
bottom: -7px;
|
|
30
|
+
left: 50%;
|
|
31
|
+
margin-left: -12px;
|
|
32
|
+
border-radius: 20px;
|
|
33
|
+
display: none;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
18
37
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
38
|
+
.couponListContent {
|
|
39
|
+
background-color: #f6f6f6;
|
|
40
|
+
padding-left: 14px;
|
|
41
|
+
padding-right: 14px;
|
|
42
|
+
|
|
43
|
+
.noData {
|
|
44
|
+
.img {
|
|
45
|
+
width: 218px;
|
|
46
|
+
height: 182px;
|
|
47
|
+
display: block;
|
|
48
|
+
margin: 0 auto;
|
|
49
|
+
padding-top: 120px;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
23
52
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
53
|
+
.couponListItem {
|
|
54
|
+
width: 100%;
|
|
55
|
+
display: inline-block;
|
|
56
|
+
padding: 10px;
|
|
57
|
+
position: relative;
|
|
58
|
+
//background: radial-gradient(transparent 0px, transparent 4px, #1a1922 4px, #1a1922) -10px -10px;
|
|
59
|
+
background-size: 20px 20px;
|
|
60
|
+
margin-bottom: 14px;
|
|
61
|
+
overflow: hidden;
|
|
62
|
+
box-sizing: border-box;
|
|
63
|
+
|
|
64
|
+
&:after {
|
|
65
|
+
content: '';
|
|
66
|
+
position: absolute;
|
|
67
|
+
left: 5px;
|
|
68
|
+
top: 5px;
|
|
69
|
+
right: 5px;
|
|
70
|
+
bottom: 5px;
|
|
71
|
+
//box-shadow: 0 0 20px 1px rgba(0, 0, 0, 1);
|
|
72
|
+
z-index: -1;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&.unused {
|
|
76
|
+
.coupon-content {
|
|
77
|
+
.info {
|
|
78
|
+
.btn {
|
|
79
|
+
//background-color: #ffffff;
|
|
80
|
+
//color: #393939;
|
|
34
81
|
}
|
|
82
|
+
}
|
|
35
83
|
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
width: 218px;
|
|
45
|
-
height: 182px;
|
|
46
|
-
display: block;
|
|
47
|
-
margin: 0 auto;
|
|
48
|
-
padding-top: 120px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&.used {
|
|
87
|
+
.coupon-content {
|
|
88
|
+
.info {
|
|
89
|
+
.btn {
|
|
90
|
+
//background-color: rgba(255, 255, 255, 0.29);
|
|
91
|
+
//color: #393939;
|
|
49
92
|
}
|
|
93
|
+
}
|
|
50
94
|
}
|
|
95
|
+
}
|
|
51
96
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
&:after {
|
|
64
|
-
content: '';
|
|
65
|
-
position: absolute;
|
|
66
|
-
left: 5px;
|
|
67
|
-
top: 5px;
|
|
68
|
-
right: 5px;
|
|
69
|
-
bottom: 5px;
|
|
70
|
-
//box-shadow: 0 0 20px 1px rgba(0, 0, 0, 1);
|
|
71
|
-
z-index: -1;
|
|
97
|
+
&.overdue {
|
|
98
|
+
//background: radial-gradient(transparent 0px, transparent 4px, #d9dae1 4px, #d9dae1) -10px -10px;
|
|
99
|
+
background-size: 20px 20px;
|
|
100
|
+
|
|
101
|
+
.coupon-content {
|
|
102
|
+
//background: #d9dae1;
|
|
103
|
+
|
|
104
|
+
.price {
|
|
105
|
+
.symbol {
|
|
106
|
+
//color: #000;
|
|
72
107
|
}
|
|
73
108
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
.info {
|
|
77
|
-
.btn {
|
|
78
|
-
background-color: #ffffff;
|
|
79
|
-
color: #393939;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
109
|
+
.num {
|
|
110
|
+
//color: #000;
|
|
83
111
|
}
|
|
112
|
+
}
|
|
84
113
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
114
|
+
.info {
|
|
115
|
+
display: flex;
|
|
116
|
+
justify-content: center;
|
|
117
|
+
align-items: center;
|
|
118
|
+
flex-direction: column;
|
|
119
|
+
|
|
120
|
+
.title {
|
|
121
|
+
//color: #000000;
|
|
94
122
|
}
|
|
95
123
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
.coupon-content {
|
|
101
|
-
background: #d9dae1;
|
|
102
|
-
|
|
103
|
-
.price {
|
|
104
|
-
.symbol {
|
|
105
|
-
color: #000;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.num {
|
|
109
|
-
color: #000;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.info {
|
|
114
|
-
display: flex;
|
|
115
|
-
justify-content: center;
|
|
116
|
-
align-items: center;
|
|
117
|
-
flex-direction: column;
|
|
118
|
-
|
|
119
|
-
.title {
|
|
120
|
-
color: #000000;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.date {
|
|
124
|
-
margin-bottom: 0;
|
|
125
|
-
color: rgba(80, 80, 80, 0.45);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.btn {
|
|
129
|
-
display: none;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
124
|
+
.date {
|
|
125
|
+
margin-bottom: 0;
|
|
126
|
+
//color: rgba(80, 80, 80, 0.45);
|
|
133
127
|
}
|
|
134
128
|
|
|
135
|
-
.
|
|
136
|
-
|
|
137
|
-
width: 100%;
|
|
138
|
-
background: #1a1922;
|
|
139
|
-
display: grid;
|
|
140
|
-
grid-template-columns: 108px 1fr;
|
|
141
|
-
position: relative;
|
|
142
|
-
|
|
143
|
-
.choose {
|
|
144
|
-
position: absolute;
|
|
145
|
-
top: 10px;
|
|
146
|
-
right: 10px;
|
|
147
|
-
background: #fff;
|
|
148
|
-
border-radius: 100%;
|
|
149
|
-
overflow: hidden;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.price {
|
|
153
|
-
border-right: 1px dashed #fff;
|
|
154
|
-
text-align: center;
|
|
155
|
-
line-height: 120px;
|
|
156
|
-
|
|
157
|
-
.symbol {
|
|
158
|
-
font-size: 23px;
|
|
159
|
-
color: #fff;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.num {
|
|
163
|
-
font-size: 18px;
|
|
164
|
-
color: #fff;
|
|
165
|
-
text-align: left;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.info {
|
|
170
|
-
padding: 18px;
|
|
171
|
-
box-sizing: border-box;
|
|
172
|
-
|
|
173
|
-
.title {
|
|
174
|
-
margin-bottom: 4px;
|
|
175
|
-
font-size: 16px;
|
|
176
|
-
color: #fff;
|
|
177
|
-
line-height: 22px;
|
|
178
|
-
display: block;
|
|
179
|
-
position: relative;
|
|
180
|
-
z-index: 2;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.date {
|
|
184
|
-
display: block;
|
|
185
|
-
color: rgba(255, 255, 255, 0.45);
|
|
186
|
-
font-size: 12px;
|
|
187
|
-
margin-bottom: 15px;
|
|
188
|
-
position: relative;
|
|
189
|
-
z-index: 2;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.btn {
|
|
193
|
-
width: 100px;
|
|
194
|
-
height: 27px;
|
|
195
|
-
line-height: 27px;
|
|
196
|
-
text-align: center;
|
|
197
|
-
border-radius: 20px;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.round {
|
|
202
|
-
width: 100px;
|
|
203
|
-
height: 100px;
|
|
204
|
-
line-height: 75px;
|
|
205
|
-
text-align: center;
|
|
206
|
-
border-radius: 50%;
|
|
207
|
-
border: 10px solid #e4e5e9;
|
|
208
|
-
position: absolute;
|
|
209
|
-
right: -21px;
|
|
210
|
-
bottom: -44px;
|
|
211
|
-
z-index: 1;
|
|
212
|
-
color: rgba(80, 80, 80, 0.45);
|
|
213
|
-
}
|
|
129
|
+
.btn {
|
|
130
|
+
display: none;
|
|
214
131
|
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.coupon-content {
|
|
137
|
+
height: 120px;
|
|
138
|
+
width: 100%;
|
|
139
|
+
//background: #1a1922;
|
|
140
|
+
display: grid;
|
|
141
|
+
grid-template-columns: 108px 1fr;
|
|
142
|
+
position: relative;
|
|
143
|
+
|
|
144
|
+
.choose {
|
|
145
|
+
position: absolute;
|
|
146
|
+
top: 10px;
|
|
147
|
+
right: 10px;
|
|
148
|
+
background: #fff;
|
|
149
|
+
border-radius: 100%;
|
|
150
|
+
overflow: hidden;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.price {
|
|
154
|
+
border-right: 1px dashed #fff;
|
|
155
|
+
text-align: center;
|
|
156
|
+
line-height: 120px;
|
|
157
|
+
|
|
158
|
+
.symbol {
|
|
159
|
+
font-size: 23px;
|
|
160
|
+
color: #fff;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.num {
|
|
164
|
+
font-size: 18px;
|
|
165
|
+
//color: #fff;
|
|
166
|
+
text-align: left;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.info {
|
|
171
|
+
padding: 18px;
|
|
172
|
+
box-sizing: border-box;
|
|
173
|
+
|
|
174
|
+
.title {
|
|
175
|
+
margin-bottom: 4px;
|
|
176
|
+
font-size: 16px;
|
|
177
|
+
//color: #fff;
|
|
178
|
+
line-height: 22px;
|
|
179
|
+
display: block;
|
|
180
|
+
position: relative;
|
|
181
|
+
z-index: 2;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.date {
|
|
185
|
+
display: block;
|
|
186
|
+
//color: rgba(255, 255, 255, 0.45);
|
|
187
|
+
font-size: 12px;
|
|
188
|
+
margin-bottom: 15px;
|
|
189
|
+
position: relative;
|
|
190
|
+
z-index: 2;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.btn {
|
|
194
|
+
width: 100px;
|
|
195
|
+
height: 27px;
|
|
196
|
+
line-height: 27px;
|
|
197
|
+
text-align: center;
|
|
198
|
+
border-radius: 20px;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.round {
|
|
203
|
+
width: 100px;
|
|
204
|
+
height: 100px;
|
|
205
|
+
line-height: 75px;
|
|
206
|
+
text-align: center;
|
|
207
|
+
border-radius: 50%;
|
|
208
|
+
border: 10px solid #e4e5e9;
|
|
209
|
+
position: absolute;
|
|
210
|
+
right: -21px;
|
|
211
|
+
bottom: -44px;
|
|
212
|
+
z-index: 1;
|
|
213
|
+
color: rgba(80, 80, 80, 0.45);
|
|
215
214
|
}
|
|
215
|
+
}
|
|
216
216
|
}
|
|
217
|
+
}
|
|
217
218
|
}
|
package/css/pages/cube.scss
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
1
|
/*一行两个*/
|
|
2
2
|
|
|
3
3
|
.cube-type2 {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
height: 200px;
|
|
5
|
+
display: grid;
|
|
6
|
+
grid-template-columns: repeat(2, 1fr);
|
|
7
|
+
gap: 10px;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
/*一上二下*/
|
|
11
11
|
|
|
12
12
|
.cube-type3 {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
height: 400px;
|
|
14
|
+
display: grid;
|
|
15
|
+
grid-template-columns: repeat(2, 1fr);
|
|
16
|
+
grid-template-rows: repeat(2, 1fr);
|
|
17
|
+
gap: 10px;
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
19
|
+
& .block:nth-child(1) {
|
|
20
|
+
grid-area: 1 / 1 / 2 / 3;
|
|
21
|
+
}
|
|
22
|
+
& .block:nth-child(2) {
|
|
23
|
+
grid-area: 2 / 1 / 3 / 2;
|
|
24
|
+
}
|
|
25
|
+
& .block:nth-child(3) {
|
|
26
|
+
grid-area: 2 / 2 / 3 / 3;
|
|
27
|
+
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
/*一左二右*/
|
|
31
31
|
|
|
32
32
|
.cube-type4 {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
33
|
+
height: 400px;
|
|
34
|
+
display: grid;
|
|
35
|
+
gap: 10px;
|
|
36
|
+
grid-template-rows: repeat(2, 1fr);
|
|
37
|
+
grid-template-columns: repeat(2, 1fr);
|
|
38
|
+
& .block:nth-child(1) {
|
|
39
|
+
grid-row: 1 / 3;
|
|
40
|
+
}
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
/*田字形*/
|
|
44
44
|
|
|
45
45
|
.cube-type5 {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
height: 400px;
|
|
47
|
+
display: grid;
|
|
48
|
+
grid-template-columns: repeat(2, 1fr);
|
|
49
|
+
grid-template-rows: repeat(2, 1fr);
|
|
50
|
+
gap: 10px;
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
52
|
+
& .block:nth-child(1) {
|
|
53
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
54
|
+
}
|
|
55
|
+
& .block:nth-child(2) {
|
|
56
|
+
grid-area: 1 / 2 / 2 / 3;
|
|
57
|
+
}
|
|
58
|
+
& .block:nth-child(3) {
|
|
59
|
+
grid-area: 2 / 1 / 3 / 2;
|
|
60
|
+
}
|
|
61
|
+
& .block:nth-child(4) {
|
|
62
|
+
grid-area: 2 / 2 / 3 / 3;
|
|
63
|
+
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
.block {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
67
|
+
height: 100%;
|
|
68
|
+
width: 100%;
|
|
69
|
+
overflow: hidden;
|
|
70
|
+
background-size: cover;
|
|
71
|
+
background-repeat: no-repeat;
|
|
72
|
+
background-position: center center;
|
|
73
73
|
}
|
|
@@ -1,74 +1,74 @@
|
|
|
1
1
|
.evaluateDetail {
|
|
2
|
-
|
|
2
|
+
padding: 0 20px;
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
.topInfo {
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
align-items: center;
|
|
8
|
+
margin-bottom: 20px;
|
|
9
|
+
padding-top: 50px;
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
.lPart {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
flex: 1;
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
16
|
+
.img {
|
|
17
|
+
width: 80px;
|
|
18
|
+
height: 80px;
|
|
19
|
+
border-radius: 8px;
|
|
20
|
+
margin-right: 10px;
|
|
21
|
+
}
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
.goodsInfo {
|
|
24
|
+
flex: 1;
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.goodsSize {
|
|
32
|
-
font-size: 13px;
|
|
33
|
-
color: #999;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
26
|
+
.goodsName {
|
|
27
|
+
font-size: 13px;
|
|
28
|
+
margin-bottom: 6px;
|
|
36
29
|
}
|
|
37
30
|
|
|
38
|
-
.
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
31
|
+
.goodsSize {
|
|
32
|
+
font-size: 13px;
|
|
33
|
+
color: #999;
|
|
42
34
|
}
|
|
35
|
+
}
|
|
43
36
|
}
|
|
44
37
|
|
|
45
|
-
.
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
.title {
|
|
51
|
-
font-size: 15px;
|
|
52
|
-
margin-right: 10px;
|
|
53
|
-
font-weight: bold;
|
|
54
|
-
}
|
|
38
|
+
.rPart {
|
|
39
|
+
.price {
|
|
40
|
+
font-weight: bold;
|
|
41
|
+
}
|
|
55
42
|
}
|
|
43
|
+
}
|
|
56
44
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
45
|
+
.rate {
|
|
46
|
+
display: flex;
|
|
47
|
+
padding-bottom: 20px;
|
|
48
|
+
border-bottom: 1px solid #ccc;
|
|
49
|
+
|
|
50
|
+
.title {
|
|
51
|
+
font-size: 15px;
|
|
52
|
+
margin-right: 10px;
|
|
53
|
+
font-weight: bold;
|
|
62
54
|
}
|
|
55
|
+
}
|
|
63
56
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
background-color: #000;
|
|
69
|
-
color: #fff;
|
|
70
|
-
border-radius: 40px;
|
|
71
|
-
box-sizing: border-box;
|
|
72
|
-
margin-bottom: 40px;
|
|
57
|
+
.evaluate {
|
|
58
|
+
padding-top: 20px;
|
|
59
|
+
.content {
|
|
60
|
+
width: 100%;
|
|
73
61
|
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.btn {
|
|
65
|
+
width: 100%;
|
|
66
|
+
height: 40px;
|
|
67
|
+
line-height: 27px;
|
|
68
|
+
background-color: #000;
|
|
69
|
+
color: #fff;
|
|
70
|
+
border-radius: 40px;
|
|
71
|
+
box-sizing: border-box;
|
|
72
|
+
margin-bottom: 40px;
|
|
73
|
+
}
|
|
74
74
|
}
|