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
@@ -1,64 +1,73 @@
1
1
  .goods-recommend-container {
2
2
  width: 100%;
3
3
  background-color: #ffffff;
4
- padding-bottom: 100rpx;
4
+ padding-bottom: 13.33333vmin;
5
5
  }
6
+
6
7
  .goods-recommend-container .recommend-title {
7
- font-size: 32rpx;
8
- padding-left: 32rpx;
9
- padding-top: 32rpx;
8
+ font-size: 4.26667vmin;
9
+ padding-left: 4.26667vmin;
10
+ padding-top: 4.26667vmin;
10
11
  }
12
+
11
13
  .goods-recommend-container .goods-item {
12
14
  display: flex;
13
- padding: 32rpx 24rpx 0rpx 24rpx;
14
- height: 180rpx;
15
+ padding: 4.26667vmin 3.2vmin 0rpx 3.2vmin;
16
+ height: 24vmin;
15
17
  }
18
+
16
19
  .goods-recommend-container .goods-item .cover-picture {
17
- margin-right: 16rpx;
20
+ margin-right: 2.13333vmin;
18
21
  position: relative;
19
22
  }
23
+
20
24
  .goods-recommend-container .goods-item .cover-picture .picture {
21
- width: 240rpx;
22
- height: 180rpx;
23
- border-radius: 16rpx;
25
+ width: 32vmin;
26
+ height: 24vmin;
27
+ border-radius: 2.13333vmin;
24
28
  }
29
+
25
30
  .goods-recommend-container .goods-item .cover-picture .marketing-type {
26
31
  position: absolute;
27
- font-size: 20rpx;
32
+ font-size: 2.66667vmin;
28
33
  left: 0;
29
34
  color: #807157;
30
- padding: 4rpx 8rpx;
35
+ padding: 0.53333vmin 1.06667vmin;
31
36
  top: 0;
32
- border-radius: 8rpx 0 8rpx 0;
37
+ border-radius: 1.06667vmin 0 1.06667vmin 0;
33
38
  }
39
+
34
40
  .goods-recommend-container .goods-item .cover-picture .super-member {
35
41
  background: linear-gradient(-45deg, #333333 0%, #525252 68%, #333333 100%);
36
42
  color: #ffc166;
37
43
  }
44
+
38
45
  .goods-recommend-container .goods-item .cover-picture .else-activity {
39
46
  color: #fff;
40
47
  border: 0 solid #010101;
41
48
  background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
42
49
  }
50
+
43
51
  .goods-recommend-container .goods-item .cover-picture .goods-type {
44
52
  position: absolute;
45
- font-size: 20rpx;
46
- right: 12rpx;
47
- bottom: 12rpx;
48
- padding: 4rpx 8rpx;
53
+ font-size: 2.66667vmin;
54
+ right: 1.6vmin;
55
+ bottom: 1.6vmin;
56
+ padding: 0.53333vmin 1.06667vmin;
49
57
  color: #ffffff;
50
- border-radius: 8rpx;
58
+ border-radius: 1.06667vmin;
51
59
  border: 0 solid #010101;
52
60
  background: rgba(0, 0, 0, 0.25);
53
- backdrop-filter: blur(10.1746254 0.56rem);
61
+ backdrop-filter: blur(10.17463 0.56rem);
54
62
  }
63
+
55
64
  .goods-recommend-container .goods-item .goods-info {
56
- font-size: 28rpx;
57
- width: calc(100% - 256rpx);
65
+ font-size: 3.73333vmin;
58
66
  display: flex;
59
67
  flex-direction: column;
60
68
  justify-content: space-between;
61
69
  }
70
+
62
71
  .goods-recommend-container .goods-item .goods-info .goods-title {
63
72
  font-weight: 600;
64
73
  display: -webkit-box;
@@ -67,17 +76,19 @@
67
76
  -webkit-box-orient: vertical;
68
77
  -webkit-line-clamp: 2;
69
78
  }
79
+
70
80
  .goods-recommend-container .goods-item .goods-info .price-watch {
71
81
  display: flex;
72
- margin-top: 60rpx;
73
82
  justify-content: space-between;
74
83
  align-items: center;
75
84
  }
85
+
76
86
  .goods-recommend-container .goods-item .goods-info .price-watch .goods-type {
77
- font-size: 24rpx;
87
+ font-size: 3.2vmin;
78
88
  color: #ff5024;
79
89
  font-weight: 700;
80
90
  }
91
+
81
92
  .goods-recommend-container .goods-item .goods-info .price-watch .goods-price {
82
93
  width: 75%;
83
94
  color: #b2b2b2;
@@ -88,42 +99,439 @@
88
99
  display: flex;
89
100
  align-items: baseline;
90
101
  }
102
+
91
103
  .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback-one {
92
- font-size: 32rpx;
104
+ font-size: 4.26667vmin;
93
105
  color: #ff5024;
94
106
  }
107
+
95
108
  .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback {
96
- font-size: 24rpx;
109
+ font-size: 3.2vmin;
97
110
  color: #ff5024;
98
111
  }
112
+
99
113
  .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .discount {
100
- font-size: 24rpx;
101
- margin-left: 8rpx;
114
+ font-size: 3.2vmin;
115
+ margin-left: 1.06667vmin;
102
116
  text-decoration: line-through;
103
117
  }
118
+
104
119
  .goods-recommend-container .goods-item .goods-info .price-watch .goods-watch {
105
120
  text-align: right;
106
121
  width: 25%;
107
122
  white-space: nowrap;
108
123
  text-overflow: ellipsis;
109
124
  overflow: hidden;
110
- font-size: 20rpx;
125
+ font-size: 2.66667vmin;
111
126
  color: #b2b2b2;
112
127
  }
128
+
113
129
  .goods-recommend-container .empty {
114
130
  width: 100%;
115
131
  display: flex;
116
132
  justify-content: center;
117
133
  align-items: center;
118
134
  flex-direction: column;
119
- padding: 80rpx 0;
135
+ padding: 10.66667vmin 0;
120
136
  }
137
+
121
138
  .goods-recommend-container .empty .empty-text {
122
139
  color: #9e9e9e;
123
- font-size: 32rpx;
124
- margin-top: 32rpx;
140
+ font-size: 4.26667vmin;
141
+ margin-top: 4.26667vmin;
125
142
  }
143
+
126
144
  .goods-recommend-container .empty image {
127
- width: 176rpx;
128
- height: 176rpx;
145
+ width: 23.46667vmin;
146
+ height: 23.46667vmin;
147
+ }
148
+
149
+ @media screen and (min-width: 768px) and (orientation: portrait) {
150
+ .goods-recommend-container {
151
+ width: 100%;
152
+ background-color: #ffffff;
153
+ padding-bottom: 6.51042vmin;
154
+ }
155
+ .goods-recommend-container .recommend-title {
156
+ font-size: 2.08333vmin;
157
+ padding-left: 2.08333vmin;
158
+ padding-top: 2.08333vmin;
159
+ }
160
+ .goods-recommend-container .goods-item {
161
+ display: flex;
162
+ padding: 2.08333vmin 1.5625vmin 0rpx 1.5625vmin;
163
+ height: 11.71875vmin;
164
+ }
165
+ .goods-recommend-container .goods-item .cover-picture {
166
+ margin-right: 1.04167vmin;
167
+ position: relative;
168
+ }
169
+ .goods-recommend-container .goods-item .cover-picture .picture {
170
+ width: 15.625vmin;
171
+ height: 11.71875vmin;
172
+ border-radius: 1.04167vmin;
173
+ }
174
+ .goods-recommend-container .goods-item .cover-picture .marketing-type {
175
+ position: absolute;
176
+ font-size: 1.30208vmin;
177
+ left: 0;
178
+ color: #807157;
179
+ padding: 0.26042vmin 0.52083vmin;
180
+ top: 0;
181
+ border-radius: 0.52083vmin 0 0.52083vmin 0;
182
+ }
183
+ .goods-recommend-container .goods-item .cover-picture .super-member {
184
+ background: linear-gradient(-45deg, #333333 0%, #525252 68%, #333333 100%);
185
+ color: #ffc166;
186
+ }
187
+ .goods-recommend-container .goods-item .cover-picture .else-activity {
188
+ color: #fff;
189
+ border: 0 solid #010101;
190
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
191
+ }
192
+ .goods-recommend-container .goods-item .cover-picture .goods-type {
193
+ position: absolute;
194
+ font-size: 1.30208vmin;
195
+ right: 0.78125vmin;
196
+ bottom: 0.78125vmin;
197
+ padding: 0.26042vmin 0.52083vmin;
198
+ color: #ffffff;
199
+ border-radius: 0.52083vmin;
200
+ border: 0 solid #010101;
201
+ background: rgba(0, 0, 0, 0.25);
202
+ backdrop-filter: blur(10.17463 0.56rem);
203
+ }
204
+ .goods-recommend-container .goods-item .goods-info {
205
+ font-size: 1.82292vmin;
206
+ display: flex;
207
+ flex-direction: column;
208
+ justify-content: space-between;
209
+ }
210
+ .goods-recommend-container .goods-item .goods-info .goods-title {
211
+ font-weight: 600;
212
+ display: -webkit-box;
213
+ overflow: hidden;
214
+ text-overflow: ellipsis;
215
+ -webkit-box-orient: vertical;
216
+ -webkit-line-clamp: 2;
217
+ }
218
+ .goods-recommend-container .goods-item .goods-info .price-watch {
219
+ display: flex;
220
+ justify-content: space-between;
221
+ align-items: center;
222
+ }
223
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-type {
224
+ font-size: 1.5625vmin;
225
+ color: #ff5024;
226
+ font-weight: 700;
227
+ }
228
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price {
229
+ width: 75%;
230
+ color: #b2b2b2;
231
+ font-weight: 700;
232
+ white-space: nowrap;
233
+ text-overflow: ellipsis;
234
+ overflow: hidden;
235
+ display: flex;
236
+ align-items: baseline;
237
+ }
238
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback-one {
239
+ font-size: 2.08333vmin;
240
+ color: #ff5024;
241
+ }
242
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback {
243
+ font-size: 1.5625vmin;
244
+ color: #ff5024;
245
+ }
246
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .discount {
247
+ font-size: 1.5625vmin;
248
+ margin-left: 0.52083vmin;
249
+ text-decoration: line-through;
250
+ }
251
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-watch {
252
+ text-align: right;
253
+ width: 25%;
254
+ white-space: nowrap;
255
+ text-overflow: ellipsis;
256
+ overflow: hidden;
257
+ font-size: 1.30208vmin;
258
+ color: #b2b2b2;
259
+ }
260
+ .goods-recommend-container .empty {
261
+ width: 100%;
262
+ display: flex;
263
+ justify-content: center;
264
+ align-items: center;
265
+ flex-direction: column;
266
+ padding: 5.20833vmin 0;
267
+ }
268
+ .goods-recommend-container .empty .empty-text {
269
+ color: #9e9e9e;
270
+ font-size: 2.08333vmin;
271
+ margin-top: 2.08333vmin;
272
+ }
273
+ .goods-recommend-container .empty image {
274
+ width: 11.45833vmin;
275
+ height: 11.45833vmin;
276
+ }
277
+ }
278
+
279
+ @media screen and (min-height: 630px) and (orientation: landscape) {
280
+ .goods-recommend-container {
281
+ width: 100%;
282
+ background-color: #ffffff;
283
+ padding-bottom: 7.93651vmin;
284
+ }
285
+ .goods-recommend-container .recommend-title {
286
+ font-size: 2.53968vmin;
287
+ padding-left: 2.53968vmin;
288
+ padding-top: 2.53968vmin;
289
+ }
290
+ .goods-recommend-container .goods-item {
291
+ display: flex;
292
+ padding: 2.53968vmin 1.90476vmin 0rpx 1.90476vmin;
293
+ height: 14.28571vmin;
294
+ }
295
+ .goods-recommend-container .goods-item .cover-picture {
296
+ margin-right: 1.26984vmin;
297
+ position: relative;
298
+ }
299
+ .goods-recommend-container .goods-item .cover-picture .picture {
300
+ width: 19.04762vmin;
301
+ height: 14.28571vmin;
302
+ border-radius: 1.26984vmin;
303
+ }
304
+ .goods-recommend-container .goods-item .cover-picture .marketing-type {
305
+ position: absolute;
306
+ font-size: 1.5873vmin;
307
+ left: 0;
308
+ color: #807157;
309
+ padding: 0.31746vmin 0.63492vmin;
310
+ top: 0;
311
+ border-radius: 0.63492vmin 0 0.63492vmin 0;
312
+ }
313
+ .goods-recommend-container .goods-item .cover-picture .super-member {
314
+ background: linear-gradient(-45deg, #333333 0%, #525252 68%, #333333 100%);
315
+ color: #ffc166;
316
+ }
317
+ .goods-recommend-container .goods-item .cover-picture .else-activity {
318
+ color: #fff;
319
+ border: 0 solid #010101;
320
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
321
+ }
322
+ .goods-recommend-container .goods-item .cover-picture .goods-type {
323
+ position: absolute;
324
+ font-size: 1.5873vmin;
325
+ right: 0.95238vmin;
326
+ bottom: 0.95238vmin;
327
+ padding: 0.31746vmin 0.63492vmin;
328
+ color: #ffffff;
329
+ border-radius: 0.63492vmin;
330
+ border: 0 solid #010101;
331
+ background: rgba(0, 0, 0, 0.25);
332
+ backdrop-filter: blur(10.17463 0.56rem);
333
+ }
334
+ .goods-recommend-container .goods-item .goods-info {
335
+ font-size: 2.22222vmin;
336
+ display: flex;
337
+ flex-direction: column;
338
+ justify-content: space-between;
339
+ }
340
+ .goods-recommend-container .goods-item .goods-info .goods-title {
341
+ font-weight: 600;
342
+ display: -webkit-box;
343
+ overflow: hidden;
344
+ text-overflow: ellipsis;
345
+ -webkit-box-orient: vertical;
346
+ -webkit-line-clamp: 2;
347
+ }
348
+ .goods-recommend-container .goods-item .goods-info .price-watch {
349
+ display: flex;
350
+ justify-content: space-between;
351
+ align-items: center;
352
+ }
353
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-type {
354
+ font-size: 1.90476vmin;
355
+ color: #ff5024;
356
+ font-weight: 700;
357
+ }
358
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price {
359
+ width: 75%;
360
+ color: #b2b2b2;
361
+ font-weight: 700;
362
+ white-space: nowrap;
363
+ text-overflow: ellipsis;
364
+ overflow: hidden;
365
+ display: flex;
366
+ align-items: baseline;
367
+ }
368
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback-one {
369
+ font-size: 2.53968vmin;
370
+ color: #ff5024;
371
+ }
372
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback {
373
+ font-size: 1.90476vmin;
374
+ color: #ff5024;
375
+ }
376
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .discount {
377
+ font-size: 1.90476vmin;
378
+ margin-left: 0.63492vmin;
379
+ text-decoration: line-through;
380
+ }
381
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-watch {
382
+ text-align: right;
383
+ width: 25%;
384
+ white-space: nowrap;
385
+ text-overflow: ellipsis;
386
+ overflow: hidden;
387
+ font-size: 1.5873vmin;
388
+ color: #b2b2b2;
389
+ }
390
+ .goods-recommend-container .empty {
391
+ width: 100%;
392
+ display: flex;
393
+ justify-content: center;
394
+ align-items: center;
395
+ flex-direction: column;
396
+ padding: 6.34921vmin 0;
397
+ }
398
+ .goods-recommend-container .empty .empty-text {
399
+ color: #9e9e9e;
400
+ font-size: 2.53968vmin;
401
+ margin-top: 2.53968vmin;
402
+ }
403
+ .goods-recommend-container .empty image {
404
+ width: 13.96825vmin;
405
+ height: 13.96825vmin;
406
+ }
407
+ }
408
+
409
+ @media screen and (min-height: 768px) and (orientation: landscape) {
410
+ .goods-recommend-container {
411
+ width: 100%;
412
+ background-color: #ffffff;
413
+ padding-bottom: 6.51042vmin;
414
+ }
415
+ .goods-recommend-container .recommend-title {
416
+ font-size: 2.08333vmin;
417
+ padding-left: 2.08333vmin;
418
+ padding-top: 2.08333vmin;
419
+ }
420
+ .goods-recommend-container .goods-item {
421
+ display: flex;
422
+ padding: 2.08333vmin 1.5625vmin 0rpx 1.5625vmin;
423
+ height: 11.71875vmin;
424
+ }
425
+ .goods-recommend-container .goods-item .cover-picture {
426
+ margin-right: 1.04167vmin;
427
+ position: relative;
428
+ }
429
+ .goods-recommend-container .goods-item .cover-picture .picture {
430
+ width: 15.625vmin;
431
+ height: 11.71875vmin;
432
+ border-radius: 1.04167vmin;
433
+ }
434
+ .goods-recommend-container .goods-item .cover-picture .marketing-type {
435
+ position: absolute;
436
+ font-size: 1.30208vmin;
437
+ left: 0;
438
+ color: #807157;
439
+ padding: 0.26042vmin 0.52083vmin;
440
+ top: 0;
441
+ border-radius: 0.52083vmin 0 0.52083vmin 0;
442
+ }
443
+ .goods-recommend-container .goods-item .cover-picture .super-member {
444
+ background: linear-gradient(-45deg, #333333 0%, #525252 68%, #333333 100%);
445
+ color: #ffc166;
446
+ }
447
+ .goods-recommend-container .goods-item .cover-picture .else-activity {
448
+ color: #fff;
449
+ border: 0 solid #010101;
450
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
451
+ }
452
+ .goods-recommend-container .goods-item .cover-picture .goods-type {
453
+ position: absolute;
454
+ font-size: 1.30208vmin;
455
+ right: 0.78125vmin;
456
+ bottom: 0.78125vmin;
457
+ padding: 0.26042vmin 0.52083vmin;
458
+ color: #ffffff;
459
+ border-radius: 0.52083vmin;
460
+ border: 0 solid #010101;
461
+ background: rgba(0, 0, 0, 0.25);
462
+ backdrop-filter: blur(10.17463 0.56rem);
463
+ }
464
+ .goods-recommend-container .goods-item .goods-info {
465
+ font-size: 1.82292vmin;
466
+ display: flex;
467
+ flex-direction: column;
468
+ justify-content: space-between;
469
+ }
470
+ .goods-recommend-container .goods-item .goods-info .goods-title {
471
+ font-weight: 600;
472
+ display: -webkit-box;
473
+ overflow: hidden;
474
+ text-overflow: ellipsis;
475
+ -webkit-box-orient: vertical;
476
+ -webkit-line-clamp: 2;
477
+ }
478
+ .goods-recommend-container .goods-item .goods-info .price-watch {
479
+ display: flex;
480
+ justify-content: space-between;
481
+ align-items: center;
482
+ }
483
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-type {
484
+ font-size: 1.5625vmin;
485
+ color: #ff5024;
486
+ font-weight: 700;
487
+ }
488
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price {
489
+ width: 75%;
490
+ color: #b2b2b2;
491
+ font-weight: 700;
492
+ white-space: nowrap;
493
+ text-overflow: ellipsis;
494
+ overflow: hidden;
495
+ display: flex;
496
+ align-items: baseline;
497
+ }
498
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback-one {
499
+ font-size: 2.08333vmin;
500
+ color: #ff5024;
501
+ }
502
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .greenback {
503
+ font-size: 1.5625vmin;
504
+ color: #ff5024;
505
+ }
506
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-price .discount {
507
+ font-size: 1.5625vmin;
508
+ margin-left: 0.52083vmin;
509
+ text-decoration: line-through;
510
+ }
511
+ .goods-recommend-container .goods-item .goods-info .price-watch .goods-watch {
512
+ text-align: right;
513
+ width: 25%;
514
+ white-space: nowrap;
515
+ text-overflow: ellipsis;
516
+ overflow: hidden;
517
+ font-size: 1.30208vmin;
518
+ color: #b2b2b2;
519
+ }
520
+ .goods-recommend-container .empty {
521
+ width: 100%;
522
+ display: flex;
523
+ justify-content: center;
524
+ align-items: center;
525
+ flex-direction: column;
526
+ padding: 5.20833vmin 0;
527
+ }
528
+ .goods-recommend-container .empty .empty-text {
529
+ color: #9e9e9e;
530
+ font-size: 2.08333vmin;
531
+ margin-top: 2.08333vmin;
532
+ }
533
+ .goods-recommend-container .empty image {
534
+ width: 11.45833vmin;
535
+ height: 11.45833vmin;
536
+ }
129
537
  }
@@ -0,0 +1,79 @@
1
+ $deviceWidth: 750;
2
+ @function vmin($rpx) {
3
+ @return #{$rpx * 100 / $deviceWidth}vmin;
4
+ }
5
+
6
+ @mixin popup-header{
7
+ padding: vmin(24) vmin(32);
8
+ height: vmin(48);
9
+ top: auto;
10
+ display: flex;
11
+ justify-content: space-between;
12
+ align-items: center;
13
+ .head-right-txt {
14
+ display: inline-block;
15
+ text-align: right;
16
+ min-width: vmin(104);
17
+ font-size: vmin(40);
18
+ }
19
+ .popup-header-title{
20
+ color: rgba(51,51,51,1);
21
+ font-size: vmin(32);
22
+ font-weight: 500;
23
+ font-family: "PingFang SC";
24
+ }
25
+ .van-action-sheet__left {
26
+ color: #c8c9cc;
27
+ font-size: vmin(22);
28
+ line-height: inherit;
29
+ display: flex;
30
+ align-items: center;
31
+ min-width: vmin(104);
32
+
33
+ .order-icon {
34
+ display: inline-block;
35
+ width: vmin(40);
36
+ height: vmin(40);
37
+ -moz-background-size: 100% 100%;
38
+ background-size: 100% 100%;
39
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAACXBIWXMAACxLAAAsSwGlPZapAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANHSURBVHgB7ZzPcdpQEId/yAwXH0IJdBCoINCBXYHlYRAcSQekAnPk34yVCuxUYDowJagEc4ADM0D2xTplkvDEaldE3m+GEYeHkD6e3q7eWwQYhvEfU4ESg8GgcTweh/T2E2RZVyqV8WQySaCAisBer9ekzQudWB06vNGP1ZnP5ysIE0ABEveoKM9RD4LgAQqoCCSaUIZ6YBsKaAksLWePgRQU2vQr38AjKFC7EAVAw0bs0WxNx7eczWbPOIPMAl1AoAN7orcNlIuERN5mDTyZBLpedzgcXpATrodMp9N7MIiiKKbNHXKCgk+HUqCld3vfhi6PI3mPKDl0jk9hGHpnDN4C9/u9S4IbKD/1Wq029G1c9W1Il9sX5IxLNfr9PqtX0z5yPy68Dwkjn4beAiGTyzWKitAnaPg2zCLwj/gEAhrojygASk3+GSTzCECWSDNREUiX6Rv0SaCA1mTCN+jzHQqoCKSxaEwbJzGBPAm9vtJ3jqAAO4j4kp7QCCXDgggTE8jEBDIxgUxMIBMTyMQEMjGBTEwgE/E7kbQq4YHuh9vQZUXrG7fSJR6iPdCto+C9pKMNfZq0vvGaHoMYogLdOopyScfv1NO1HDFEBRYs7xd0GYtWg0kHEfHqqFO4qgMIIipwt9vFKFbiiqbRRCdWRaNwHMduKr9FkTikS0li+fGvUABZXV9fi89Kq0yozufzmDYxSogl0kxMIBMTyMQEMjGBTMSj8HA4rG82mztKY3IpTkrLcVUWzX0QF7jdbl/pls5VYSEnwiiKhpSkd9I8s1BEL2GXQEOmKLNZq9VCXADSkwltCEH7/owLQFSgZFUW3aqtcQGICry6uhpLSHT7dPvGBSAq0E2n04m26HJbIifS6amO1r8xTyEehdMT7aCkWCLNxAQyMYFMTCATE8jEBDIxgUxMIBMTyMQEMjGBTEwgExPIxAQyMYFMTCATE8jEBDIxgUzYayLuuS9RFIX4oGTpgQk+Dt513VkEXkxBjwI/fBt6C9ztduOCnv+iTRIEQezb2Fugq4RyDyhEiXEd5HA43GdZtM8UhReLxZK+pIVyjocJvTruHDN85vxnqHa73ZtqtdqG/IO1pVnv9/vnrOIMwygFPwHK0g4OEWNPBgAAAABJRU5ErkJggg==");
40
+ }
41
+ .head-left-txt {
42
+ opacity: 1;
43
+ color: #666666;
44
+ font-size: vmin(28);
45
+ font-weight: 500;
46
+ font-family: "PingFang SC";
47
+ margin-left: vmin(8);
48
+ }
49
+ }
50
+ }
51
+
52
+
53
+ .popup-header {
54
+ @include popup-header;
55
+ }
56
+ // 竖屏pad
57
+ @media screen and (min-width: 768px) and (orientation: portrait) {
58
+ $deviceWidth: 1536 !global;
59
+
60
+ .popup-header {
61
+ @include popup-header;
62
+ }
63
+ }
64
+ // PC 放大适配
65
+ @media screen and (min-height: 630px) and (orientation: landscape) {
66
+ $deviceWidth: 1260 !global;
67
+
68
+ .popup-header {
69
+ @include popup-header;
70
+ }
71
+ }
72
+ // 横屏pad
73
+ @media screen and (min-height: 768px) and (orientation: landscape) {
74
+ $deviceWidth: 1536 !global;
75
+
76
+ .popup-header {
77
+ @include popup-header;
78
+ }
79
+ }