xiaoe_mp_npm 0.5.42-test2 → 0.5.42-test21

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.
Files changed (123) hide show
  1. package/miniprogram_dist/ConfirmOrder/components/ConfirmOrderContent/index.scss +45 -0
  2. package/miniprogram_dist/ConfirmOrder/components/ConfirmOrderContent/index.wxss +37 -1
  3. package/miniprogram_dist/ConfirmOrder/components/GoodsInfo/index.scss +223 -0
  4. package/miniprogram_dist/ConfirmOrder/components/GoodsInfo/index.wxss +522 -36
  5. package/miniprogram_dist/ConfirmOrder/components/IntegralSelect/index.scss +91 -0
  6. package/miniprogram_dist/ConfirmOrder/components/IntegralSelect/index.wxss +170 -14
  7. package/miniprogram_dist/ConfirmOrder/components/Invoice/index.scss +61 -0
  8. package/miniprogram_dist/ConfirmOrder/components/Invoice/index.wxss +68 -2
  9. package/miniprogram_dist/ConfirmOrder/components/LeaveWord/index.scss +40 -0
  10. package/miniprogram_dist/ConfirmOrder/components/LeaveWord/index.wxss +26 -2
  11. package/miniprogram_dist/ConfirmOrder/components/PayBar/index.scss +62 -0
  12. package/miniprogram_dist/ConfirmOrder/components/PayBar/index.wxss +81 -3
  13. package/miniprogram_dist/ConfirmOrder/components/PayDetail/index.scss +41 -0
  14. package/miniprogram_dist/ConfirmOrder/components/PayDetail/index.wxss +35 -3
  15. package/miniprogram_dist/CouponList/components/CouponItem/index.css +1715 -1715
  16. package/miniprogram_dist/CouponList/components/CouponItem/index.js +31 -22
  17. package/miniprogram_dist/CouponList/components/CouponItem/index.min.css +1 -1
  18. package/miniprogram_dist/CouponList/components/CouponItem/index.wxml +6 -2
  19. package/miniprogram_dist/CouponList/components/CouponItem/index.wxss +1037 -79
  20. package/miniprogram_dist/CouponList/couponColumn/index.js +5 -1
  21. package/miniprogram_dist/CouponList/couponColumn/index.scss +118 -0
  22. package/miniprogram_dist/CouponList/couponColumn/index.wxml +1 -0
  23. package/miniprogram_dist/CouponList/couponColumn/index.wxss +221 -32
  24. package/miniprogram_dist/CouponReceivePopup/index.js +75 -0
  25. package/miniprogram_dist/CouponReceivePopup/index.json +6 -0
  26. package/miniprogram_dist/CouponReceivePopup/index.scss +99 -0
  27. package/miniprogram_dist/CouponReceivePopup/index.wxml +85 -0
  28. package/miniprogram_dist/CouponReceivePopup/index.wxss +75 -0
  29. package/miniprogram_dist/GoodsItem/index.js +7 -5
  30. package/miniprogram_dist/GoodsItem/index.scss +45 -22
  31. package/miniprogram_dist/GoodsItem/index.wxml +11 -11
  32. package/miniprogram_dist/GoodsItem/index.wxs +18 -18
  33. package/miniprogram_dist/GoodsItem/index.wxss +1273 -116
  34. package/miniprogram_dist/GoodsRecommend/index.scss +162 -0
  35. package/miniprogram_dist/GoodsRecommend/index.wxss +418 -33
  36. package/miniprogram_dist/LiveGoodsList/Header/index.scss +79 -0
  37. package/miniprogram_dist/LiveGoodsList/Header/index.wxss +148 -10
  38. package/miniprogram_dist/LiveGoodsList/index.js +167 -25
  39. package/miniprogram_dist/LiveGoodsList/index.scss +93 -0
  40. package/miniprogram_dist/LiveGoodsList/index.wxml +41 -19
  41. package/miniprogram_dist/LiveGoodsList/index.wxss +187 -19
  42. package/miniprogram_dist/PayModule/button/index.scss +45 -0
  43. package/miniprogram_dist/PayModule/button/index.wxss +46 -4
  44. package/miniprogram_dist/TeacherGoodsList/index.js +778 -585
  45. package/miniprogram_dist/TeacherGoodsList/index.scss +5 -2
  46. package/miniprogram_dist/TeacherGoodsList/index.wxml +42 -24
  47. package/miniprogram_dist/TeacherGoodsList/index.wxss +132 -14
  48. package/miniprogram_dist/common/api/liveGoodsList.js +10 -2
  49. package/miniprogram_dist/common/utils/index.js +14 -0
  50. package/miniprogram_dist/coupon/components/CouponItem/index.less +1 -0
  51. package/miniprogram_dist/coupon/components/CouponItem/index.scss +247 -0
  52. package/miniprogram_dist/coupon/components/CouponItem/index.wxss +677 -86
  53. package/miniprogram_dist/coupon/components/CouponSelect/index.scss +331 -0
  54. package/miniprogram_dist/coupon/components/CouponSelect/index.wxss +861 -59
  55. package/miniprogram_dist/coupon/index.scss +83 -0
  56. package/miniprogram_dist/coupon/index.wxss +171 -15
  57. package/package.json +2 -2
  58. package/src/ConfirmOrder/components/ConfirmOrderContent/index.scss +45 -0
  59. package/src/ConfirmOrder/components/ConfirmOrderContent/index.wxss +42 -1
  60. package/src/ConfirmOrder/components/GoodsInfo/index.scss +223 -0
  61. package/src/ConfirmOrder/components/GoodsInfo/index.wxss +552 -39
  62. package/src/ConfirmOrder/components/IntegralSelect/index.scss +91 -0
  63. package/src/ConfirmOrder/components/IntegralSelect/index.wxss +182 -14
  64. package/src/ConfirmOrder/components/Invoice/index.scss +61 -0
  65. package/src/ConfirmOrder/components/Invoice/index.wxss +75 -2
  66. package/src/ConfirmOrder/components/LeaveWord/index.scss +40 -0
  67. package/src/ConfirmOrder/components/LeaveWord/index.wxss +30 -2
  68. package/src/ConfirmOrder/components/PayBar/index.scss +62 -0
  69. package/src/ConfirmOrder/components/PayBar/index.wxss +87 -3
  70. package/src/ConfirmOrder/components/PayDetail/index.scss +41 -0
  71. package/src/ConfirmOrder/components/PayDetail/index.wxss +39 -3
  72. package/src/CouponList/components/CouponItem/index.css +1715 -1715
  73. package/src/CouponList/components/CouponItem/index.js +31 -22
  74. package/src/CouponList/components/CouponItem/index.min.css +1 -1
  75. package/src/CouponList/components/CouponItem/index.wxml +6 -2
  76. package/src/CouponList/components/CouponItem/index.wxss +1039 -85
  77. package/src/CouponList/couponColumn/index.js +5 -1
  78. package/src/CouponList/couponColumn/index.scss +118 -0
  79. package/src/CouponList/couponColumn/index.wxml +1 -0
  80. package/src/CouponList/couponColumn/index.wxss +236 -32
  81. package/src/CouponReceivePopup/index.js +75 -0
  82. package/src/CouponReceivePopup/index.json +6 -0
  83. package/src/CouponReceivePopup/index.scss +99 -0
  84. package/src/CouponReceivePopup/index.wxml +85 -0
  85. package/src/CouponReceivePopup/index.wxss +1 -0
  86. package/src/GoodsItem/index.js +7 -5
  87. package/src/GoodsItem/index.scss +45 -22
  88. package/src/GoodsItem/index.wxml +11 -11
  89. package/src/GoodsItem/index.wxs +18 -18
  90. package/src/GoodsItem/index.wxss +1331 -116
  91. package/src/GoodsRecommend/index.scss +162 -0
  92. package/src/GoodsRecommend/index.wxss +441 -33
  93. package/src/LiveGoodsList/Header/index.scss +79 -0
  94. package/src/LiveGoodsList/Header/index.wxss +156 -10
  95. package/src/LiveGoodsList/index.js +167 -25
  96. package/src/LiveGoodsList/index.scss +93 -0
  97. package/src/LiveGoodsList/index.wxml +41 -19
  98. package/src/LiveGoodsList/index.wxss +230 -50
  99. package/src/PayModule/button/index.scss +45 -0
  100. package/src/PayModule/button/index.wxss +50 -4
  101. package/src/TeacherGoodsList/index.js +778 -585
  102. package/src/TeacherGoodsList/index.scss +5 -2
  103. package/src/TeacherGoodsList/index.wxml +42 -24
  104. package/src/TeacherGoodsList/index.wxss +151 -14
  105. package/src/common/api/liveGoodsList.js +10 -2
  106. package/src/common/utils/index.js +14 -0
  107. package/src/coupon/components/CouponItem/index.less +1 -0
  108. package/src/coupon/components/CouponItem/index.scss +247 -0
  109. package/src/coupon/components/CouponItem/index.wxss +712 -86
  110. package/src/coupon/components/CouponSelect/index.scss +331 -0
  111. package/src/coupon/components/CouponSelect/index.wxss +910 -59
  112. package/src/coupon/index.scss +83 -0
  113. package/src/coupon/index.wxss +181 -15
  114. package/miniprogram_dist/GoodsItem/index.css +0 -1364
  115. package/miniprogram_dist/GoodsItem/index.less +0 -299
  116. package/miniprogram_dist/GoodsItem/index.min.css +0 -1
  117. package/miniprogram_dist/TeacherGoodsList/index.css +0 -187
  118. package/miniprogram_dist/TeacherGoodsList/index.min.css +0 -1
  119. package/src/GoodsItem/index.css +0 -1364
  120. package/src/GoodsItem/index.less +0 -299
  121. package/src/GoodsItem/index.min.css +0 -1
  122. package/src/TeacherGoodsList/index.css +0 -187
  123. package/src/TeacherGoodsList/index.min.css +0 -1
@@ -6,43 +6,43 @@
6
6
  font-size: 3.2vmin;
7
7
  }
8
8
  .goods-info-wrapper .goods-info {
9
- padding: 4.27vmin;
9
+ padding: 4.26667vmin;
10
10
  }
11
11
  .goods-info-wrapper .goods-info .shop-title {
12
12
  display: flex;
13
13
  align-items: center;
14
14
  }
15
15
  .goods-info-wrapper .goods-info .shop-title .shop-img {
16
- width: 4.27vmin;
17
- height: 4.27vmin;
18
- margin-right: 2.13vmin;
16
+ width: 4.26667vmin;
17
+ height: 4.26667vmin;
18
+ margin-right: 2.13333vmin;
19
19
  }
20
20
  .goods-info-wrapper .goods-info .shop-title .shop-name {
21
- font-size: 3.73vmin;
21
+ font-size: 3.73333vmin;
22
22
  }
23
23
  .goods-info-wrapper .goods-info .goods-wrapper {
24
24
  display: flex;
25
- margin-top: 4.27vmin;
25
+ margin-top: 4.26667vmin;
26
26
  }
27
27
  .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail {
28
28
  position: relative;
29
29
  flex: 0 0 24vmin;
30
30
  height: 24vmin;
31
- width: 24vw;
32
- border-radius: 1.07vmin;
33
- border: 0.27vmin solid #e5e5e5;
31
+ width: 24vmin;
32
+ border-radius: 1.06667vmin;
33
+ border: 0.26667vmin solid #e5e5e5;
34
34
  overflow: hidden;
35
35
  }
36
36
  .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .goods-type {
37
37
  position: absolute;
38
- right: 1.07vmin;
39
- bottom: 1.07vmin;
38
+ right: 1.06667vmin;
39
+ bottom: 1.06667vmin;
40
40
  text-size-adjust: none;
41
41
  color: #ffffff !important;
42
42
  padding: 0.8vmin;
43
- border-radius: 0.53vmin;
43
+ border-radius: 0.53333vmin;
44
44
  background: rgba(0, 0, 0, 0.25);
45
- font-size: 2.67vmin;
45
+ font-size: 2.66667vmin;
46
46
  backdrop-filter: blur(3.2vmin);
47
47
  font-weight: 500;
48
48
  }
@@ -50,12 +50,12 @@
50
50
  position: absolute;
51
51
  top: 0;
52
52
  left: 0;
53
- padding: 0.27vmin 1.07vmin;
53
+ padding: 0.26667vmin 1.06667vmin;
54
54
  background: linear-gradient(315deg, #333333 0%, #525252 68%, #333333 100%);
55
- border-radius: 1.07vmin 0vmin 1.07vmin 0vmin;
55
+ border-radius: 1.06667vmin 0vmin 1.06667vmin 0vmin;
56
56
  }
57
57
  .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .svip-tag-text {
58
- font-size: 2.67vmin;
58
+ font-size: 2.66667vmin;
59
59
  text-size-adjust: none;
60
60
  color: #ffc266;
61
61
  }
@@ -75,18 +75,18 @@
75
75
  word-break: break-all;
76
76
  }
77
77
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-tag {
78
- margin-right: 0.53vmin;
78
+ margin-right: 0.53333vmin;
79
79
  white-space: nowrap;
80
80
  color: #1472FF;
81
- border: 0.27vmin solid #1472FF;
82
- padding: 0 1.07vmin;
83
- border-radius: 0.53vmin;
81
+ border: 0.26667vmin solid #1472FF;
82
+ padding: 0 1.06667vmin;
83
+ border-radius: 0.53333vmin;
84
84
  background-color: #fff;
85
- top: -0.53vmin;
85
+ top: -vmin(4);
86
86
  position: relative;
87
87
  }
88
88
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-name {
89
- font-size: 3.73vmin;
89
+ font-size: 3.73333vmin;
90
90
  }
91
91
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-specification {
92
92
  margin-top: 1.6vmin;
@@ -108,40 +108,40 @@
108
108
  flex-direction: column;
109
109
  }
110
110
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit {
111
- margin-bottom: 2.13vmin;
111
+ margin-bottom: 2.13333vmin;
112
112
  display: flex;
113
113
  font-size: 3.2vmin;
114
114
  }
115
115
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-blue {
116
116
  border: #1472FF 0.02rem solid;
117
117
  color: #1472ff;
118
- padding: 0 1.07vmin;
119
- margin-right: 1.07vmin;
120
- border-radius: 0.53vmin;
118
+ padding: 0 1.06667vmin;
119
+ margin-right: 1.06667vmin;
120
+ border-radius: 0.53333vmin;
121
121
  }
122
122
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-orange {
123
- border: #ff781f 0.27vmin solid;
123
+ border: #ff781f 0.26667vmin solid;
124
124
  color: #ff781f;
125
- padding: 0 1.07vmin;
126
- border-radius: 0.53vmin;
125
+ padding: 0 1.06667vmin;
126
+ border-radius: 0.53333vmin;
127
127
  }
128
128
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-price {
129
129
  display: inline-block;
130
- margin-right: 1.07vmin;
130
+ margin-right: 1.06667vmin;
131
131
  margin-bottom: 0;
132
- font-size: 4.27vmin;
132
+ font-size: 4.26667vmin;
133
133
  }
134
134
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tags {
135
135
  display: inline-block;
136
136
  }
137
137
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag {
138
138
  display: inline-block;
139
- padding: 0.27vmin 1.6vmin;
140
- font-size: 2.67vmin;
141
- border-radius: 2.67vmin;
139
+ padding: 0.26667vmin 1.6vmin;
140
+ font-size: 2.66667vmin;
141
+ border-radius: 2.66667vmin;
142
142
  }
143
143
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag + .goods-tag {
144
- margin-left: 1.07vmin;
144
+ margin-left: 1.06667vmin;
145
145
  }
146
146
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.marketing-tag {
147
147
  color: #ff781f;
@@ -149,7 +149,7 @@
149
149
  }
150
150
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.send-friend {
151
151
  color: #07c160;
152
- border: 0.27vmin solid rgba(7, 193, 96, 0.5);
152
+ border: 0.26667vmin solid rgba(7, 193, 96, 0.5);
153
153
  }
154
154
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter {
155
155
  flex-shrink: 0;
@@ -158,3 +158,489 @@
158
158
  .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter .goods-minus {
159
159
  background: none;
160
160
  }
161
+ @media screen and (min-width: 768px) and (orientation: portrait) {
162
+ .goods-info-wrapper {
163
+ margin-bottom: 1.17188vmin;
164
+ background: #fff;
165
+ }
166
+ .goods-info-wrapper .font-12 {
167
+ font-size: 1.5625vmin;
168
+ }
169
+ .goods-info-wrapper .goods-info {
170
+ padding: 2.08333vmin;
171
+ }
172
+ .goods-info-wrapper .goods-info .shop-title {
173
+ display: flex;
174
+ align-items: center;
175
+ }
176
+ .goods-info-wrapper .goods-info .shop-title .shop-img {
177
+ width: 2.08333vmin;
178
+ height: 2.08333vmin;
179
+ margin-right: 1.04167vmin;
180
+ }
181
+ .goods-info-wrapper .goods-info .shop-title .shop-name {
182
+ font-size: 1.82292vmin;
183
+ }
184
+ .goods-info-wrapper .goods-info .goods-wrapper {
185
+ display: flex;
186
+ margin-top: 2.08333vmin;
187
+ }
188
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail {
189
+ position: relative;
190
+ flex: 0 0 11.71875vmin;
191
+ height: 11.71875vmin;
192
+ width: 11.71875vmin;
193
+ border-radius: 0.52083vmin;
194
+ border: 0.13021vmin solid #e5e5e5;
195
+ overflow: hidden;
196
+ }
197
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .goods-type {
198
+ position: absolute;
199
+ right: 0.52083vmin;
200
+ bottom: 0.52083vmin;
201
+ text-size-adjust: none;
202
+ color: #ffffff !important;
203
+ padding: 0.39062vmin;
204
+ border-radius: 0.26042vmin;
205
+ background: rgba(0, 0, 0, 0.25);
206
+ font-size: 1.30208vmin;
207
+ backdrop-filter: blur(1.5625vmin);
208
+ font-weight: 500;
209
+ }
210
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .svip-tag {
211
+ position: absolute;
212
+ top: 0;
213
+ left: 0;
214
+ padding: 0.13021vmin 0.52083vmin;
215
+ background: linear-gradient(315deg, #333333 0%, #525252 68%, #333333 100%);
216
+ border-radius: 0.52083vmin 0vmin 0.52083vmin 0vmin;
217
+ }
218
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .svip-tag-text {
219
+ font-size: 1.30208vmin;
220
+ text-size-adjust: none;
221
+ color: #ffc266;
222
+ }
223
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail {
224
+ flex: 1;
225
+ margin-left: 1.5625vmin;
226
+ display: flex;
227
+ flex-direction: column;
228
+ justify-content: space-around;
229
+ padding: 0;
230
+ }
231
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title {
232
+ display: -webkit-box;
233
+ -webkit-box-orient: vertical;
234
+ -webkit-line-clamp: 2;
235
+ overflow: hidden;
236
+ word-break: break-all;
237
+ }
238
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-tag {
239
+ margin-right: 0.26042vmin;
240
+ white-space: nowrap;
241
+ color: #1472FF;
242
+ border: 0.13021vmin solid #1472FF;
243
+ padding: 0 0.52083vmin;
244
+ border-radius: 0.26042vmin;
245
+ background-color: #fff;
246
+ top: -vmin(4);
247
+ position: relative;
248
+ }
249
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-name {
250
+ font-size: 1.82292vmin;
251
+ }
252
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-specification {
253
+ margin-top: 0.78125vmin;
254
+ height: 2.34375vmin;
255
+ color: #999;
256
+ word-break: break-all;
257
+ }
258
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity {
259
+ display: flex;
260
+ justify-content: space-between;
261
+ align-items: flex-end;
262
+ margin-top: 0.78125vmin;
263
+ width: 100%;
264
+ color: #999;
265
+ }
266
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-pay-info {
267
+ flex-grow: 1;
268
+ display: flex;
269
+ flex-direction: column;
270
+ }
271
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit {
272
+ margin-bottom: 1.04167vmin;
273
+ display: flex;
274
+ font-size: 1.5625vmin;
275
+ }
276
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-blue {
277
+ border: #1472FF 0.02rem solid;
278
+ color: #1472ff;
279
+ padding: 0 0.52083vmin;
280
+ margin-right: 0.52083vmin;
281
+ border-radius: 0.26042vmin;
282
+ }
283
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-orange {
284
+ border: #ff781f 0.13021vmin solid;
285
+ color: #ff781f;
286
+ padding: 0 0.52083vmin;
287
+ border-radius: 0.26042vmin;
288
+ }
289
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-price {
290
+ display: inline-block;
291
+ margin-right: 0.52083vmin;
292
+ margin-bottom: 0;
293
+ font-size: 2.08333vmin;
294
+ }
295
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tags {
296
+ display: inline-block;
297
+ }
298
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag {
299
+ display: inline-block;
300
+ padding: 0.13021vmin 0.78125vmin;
301
+ font-size: 1.30208vmin;
302
+ border-radius: 1.30208vmin;
303
+ }
304
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag + .goods-tag {
305
+ margin-left: 0.52083vmin;
306
+ }
307
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.marketing-tag {
308
+ color: #ff781f;
309
+ background: #fff3eb;
310
+ }
311
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.send-friend {
312
+ color: #07c160;
313
+ border: 0.13021vmin solid rgba(7, 193, 96, 0.5);
314
+ }
315
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter {
316
+ flex-shrink: 0;
317
+ }
318
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter .goods-plus,
319
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter .goods-minus {
320
+ background: none;
321
+ }
322
+ }
323
+ @media screen and (min-height: 630px) and (orientation: landscape) {
324
+ .goods-info-wrapper {
325
+ margin-bottom: 1.42857vmin;
326
+ background: #fff;
327
+ }
328
+ .goods-info-wrapper .font-12 {
329
+ font-size: 1.90476vmin;
330
+ }
331
+ .goods-info-wrapper .goods-info {
332
+ padding: 2.53968vmin;
333
+ }
334
+ .goods-info-wrapper .goods-info .shop-title {
335
+ display: flex;
336
+ align-items: center;
337
+ }
338
+ .goods-info-wrapper .goods-info .shop-title .shop-img {
339
+ width: 2.53968vmin;
340
+ height: 2.53968vmin;
341
+ margin-right: 1.26984vmin;
342
+ }
343
+ .goods-info-wrapper .goods-info .shop-title .shop-name {
344
+ font-size: 2.22222vmin;
345
+ }
346
+ .goods-info-wrapper .goods-info .goods-wrapper {
347
+ display: flex;
348
+ margin-top: 2.53968vmin;
349
+ }
350
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail {
351
+ position: relative;
352
+ flex: 0 0 14.28571vmin;
353
+ height: 14.28571vmin;
354
+ width: 14.28571vmin;
355
+ border-radius: 0.63492vmin;
356
+ border: 0.15873vmin solid #e5e5e5;
357
+ overflow: hidden;
358
+ }
359
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .goods-type {
360
+ position: absolute;
361
+ right: 0.63492vmin;
362
+ bottom: 0.63492vmin;
363
+ text-size-adjust: none;
364
+ color: #ffffff !important;
365
+ padding: 0.47619vmin;
366
+ border-radius: 0.31746vmin;
367
+ background: rgba(0, 0, 0, 0.25);
368
+ font-size: 1.5873vmin;
369
+ backdrop-filter: blur(1.90476vmin);
370
+ font-weight: 500;
371
+ }
372
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .svip-tag {
373
+ position: absolute;
374
+ top: 0;
375
+ left: 0;
376
+ padding: 0.15873vmin 0.63492vmin;
377
+ background: linear-gradient(315deg, #333333 0%, #525252 68%, #333333 100%);
378
+ border-radius: 0.63492vmin 0vmin 0.63492vmin 0vmin;
379
+ }
380
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .svip-tag-text {
381
+ font-size: 1.5873vmin;
382
+ text-size-adjust: none;
383
+ color: #ffc266;
384
+ }
385
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail {
386
+ flex: 1;
387
+ margin-left: 1.90476vmin;
388
+ display: flex;
389
+ flex-direction: column;
390
+ justify-content: space-around;
391
+ padding: 0;
392
+ }
393
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title {
394
+ display: -webkit-box;
395
+ -webkit-box-orient: vertical;
396
+ -webkit-line-clamp: 2;
397
+ overflow: hidden;
398
+ word-break: break-all;
399
+ }
400
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-tag {
401
+ margin-right: 0.31746vmin;
402
+ white-space: nowrap;
403
+ color: #1472FF;
404
+ border: 0.15873vmin solid #1472FF;
405
+ padding: 0 0.63492vmin;
406
+ border-radius: 0.31746vmin;
407
+ background-color: #fff;
408
+ top: -vmin(4);
409
+ position: relative;
410
+ }
411
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-name {
412
+ font-size: 2.22222vmin;
413
+ }
414
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-specification {
415
+ margin-top: 0.95238vmin;
416
+ height: 2.85714vmin;
417
+ color: #999;
418
+ word-break: break-all;
419
+ }
420
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity {
421
+ display: flex;
422
+ justify-content: space-between;
423
+ align-items: flex-end;
424
+ margin-top: 0.95238vmin;
425
+ width: 100%;
426
+ color: #999;
427
+ }
428
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-pay-info {
429
+ flex-grow: 1;
430
+ display: flex;
431
+ flex-direction: column;
432
+ }
433
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit {
434
+ margin-bottom: 1.26984vmin;
435
+ display: flex;
436
+ font-size: 1.90476vmin;
437
+ }
438
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-blue {
439
+ border: #1472FF 0.02rem solid;
440
+ color: #1472ff;
441
+ padding: 0 0.63492vmin;
442
+ margin-right: 0.63492vmin;
443
+ border-radius: 0.31746vmin;
444
+ }
445
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-orange {
446
+ border: #ff781f 0.15873vmin solid;
447
+ color: #ff781f;
448
+ padding: 0 0.63492vmin;
449
+ border-radius: 0.31746vmin;
450
+ }
451
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-price {
452
+ display: inline-block;
453
+ margin-right: 0.63492vmin;
454
+ margin-bottom: 0;
455
+ font-size: 2.53968vmin;
456
+ }
457
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tags {
458
+ display: inline-block;
459
+ }
460
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag {
461
+ display: inline-block;
462
+ padding: 0.15873vmin 0.95238vmin;
463
+ font-size: 1.5873vmin;
464
+ border-radius: 1.5873vmin;
465
+ }
466
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag + .goods-tag {
467
+ margin-left: 0.63492vmin;
468
+ }
469
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.marketing-tag {
470
+ color: #ff781f;
471
+ background: #fff3eb;
472
+ }
473
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.send-friend {
474
+ color: #07c160;
475
+ border: 0.15873vmin solid rgba(7, 193, 96, 0.5);
476
+ }
477
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter {
478
+ flex-shrink: 0;
479
+ }
480
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter .goods-plus,
481
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter .goods-minus {
482
+ background: none;
483
+ }
484
+ }
485
+ @media screen and (min-height: 768px) and (orientation: landscape) {
486
+ .goods-info-wrapper {
487
+ margin-bottom: 1.17188vmin;
488
+ background: #fff;
489
+ }
490
+ .goods-info-wrapper .font-12 {
491
+ font-size: 1.5625vmin;
492
+ }
493
+ .goods-info-wrapper .goods-info {
494
+ padding: 2.08333vmin;
495
+ }
496
+ .goods-info-wrapper .goods-info .shop-title {
497
+ display: flex;
498
+ align-items: center;
499
+ }
500
+ .goods-info-wrapper .goods-info .shop-title .shop-img {
501
+ width: 2.08333vmin;
502
+ height: 2.08333vmin;
503
+ margin-right: 1.04167vmin;
504
+ }
505
+ .goods-info-wrapper .goods-info .shop-title .shop-name {
506
+ font-size: 1.82292vmin;
507
+ }
508
+ .goods-info-wrapper .goods-info .goods-wrapper {
509
+ display: flex;
510
+ margin-top: 2.08333vmin;
511
+ }
512
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail {
513
+ position: relative;
514
+ flex: 0 0 11.71875vmin;
515
+ height: 11.71875vmin;
516
+ width: 11.71875vmin;
517
+ border-radius: 0.52083vmin;
518
+ border: 0.13021vmin solid #e5e5e5;
519
+ overflow: hidden;
520
+ }
521
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .goods-type {
522
+ position: absolute;
523
+ right: 0.52083vmin;
524
+ bottom: 0.52083vmin;
525
+ text-size-adjust: none;
526
+ color: #ffffff !important;
527
+ padding: 0.39062vmin;
528
+ border-radius: 0.26042vmin;
529
+ background: rgba(0, 0, 0, 0.25);
530
+ font-size: 1.30208vmin;
531
+ backdrop-filter: blur(1.5625vmin);
532
+ font-weight: 500;
533
+ }
534
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .svip-tag {
535
+ position: absolute;
536
+ top: 0;
537
+ left: 0;
538
+ padding: 0.13021vmin 0.52083vmin;
539
+ background: linear-gradient(315deg, #333333 0%, #525252 68%, #333333 100%);
540
+ border-radius: 0.52083vmin 0vmin 0.52083vmin 0vmin;
541
+ }
542
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-thumbnail .svip-tag-text {
543
+ font-size: 1.30208vmin;
544
+ text-size-adjust: none;
545
+ color: #ffc266;
546
+ }
547
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail {
548
+ flex: 1;
549
+ margin-left: 1.5625vmin;
550
+ display: flex;
551
+ flex-direction: column;
552
+ justify-content: space-around;
553
+ padding: 0;
554
+ }
555
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title {
556
+ display: -webkit-box;
557
+ -webkit-box-orient: vertical;
558
+ -webkit-line-clamp: 2;
559
+ overflow: hidden;
560
+ word-break: break-all;
561
+ }
562
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-tag {
563
+ margin-right: 0.26042vmin;
564
+ white-space: nowrap;
565
+ color: #1472FF;
566
+ border: 0.13021vmin solid #1472FF;
567
+ padding: 0 0.52083vmin;
568
+ border-radius: 0.26042vmin;
569
+ background-color: #fff;
570
+ top: -vmin(4);
571
+ position: relative;
572
+ }
573
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-title .goods-name {
574
+ font-size: 1.82292vmin;
575
+ }
576
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-specification {
577
+ margin-top: 0.78125vmin;
578
+ height: 2.34375vmin;
579
+ color: #999;
580
+ word-break: break-all;
581
+ }
582
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity {
583
+ display: flex;
584
+ justify-content: space-between;
585
+ align-items: flex-end;
586
+ margin-top: 0.78125vmin;
587
+ width: 100%;
588
+ color: #999;
589
+ }
590
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-pay-info {
591
+ flex-grow: 1;
592
+ display: flex;
593
+ flex-direction: column;
594
+ }
595
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit {
596
+ margin-bottom: 1.04167vmin;
597
+ display: flex;
598
+ font-size: 1.5625vmin;
599
+ }
600
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-blue {
601
+ border: #1472FF 0.02rem solid;
602
+ color: #1472ff;
603
+ padding: 0 0.52083vmin;
604
+ margin-right: 0.52083vmin;
605
+ border-radius: 0.26042vmin;
606
+ }
607
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-limit .border-orange {
608
+ border: #ff781f 0.13021vmin solid;
609
+ color: #ff781f;
610
+ padding: 0 0.52083vmin;
611
+ border-radius: 0.26042vmin;
612
+ }
613
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-price {
614
+ display: inline-block;
615
+ margin-right: 0.52083vmin;
616
+ margin-bottom: 0;
617
+ font-size: 2.08333vmin;
618
+ }
619
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tags {
620
+ display: inline-block;
621
+ }
622
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag {
623
+ display: inline-block;
624
+ padding: 0.13021vmin 0.78125vmin;
625
+ font-size: 1.30208vmin;
626
+ border-radius: 1.30208vmin;
627
+ }
628
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag + .goods-tag {
629
+ margin-left: 0.52083vmin;
630
+ }
631
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.marketing-tag {
632
+ color: #ff781f;
633
+ background: #fff3eb;
634
+ }
635
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-tag.send-friend {
636
+ color: #07c160;
637
+ border: 0.13021vmin solid rgba(7, 193, 96, 0.5);
638
+ }
639
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter {
640
+ flex-shrink: 0;
641
+ }
642
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter .goods-plus,
643
+ .goods-info-wrapper .goods-info .goods-wrapper .goods-detail .goods-quantity .goods-counter .goods-minus {
644
+ background: none;
645
+ }
646
+ }