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,46 +1,74 @@
1
+ @charset "UTF-8";
1
2
  /* 主题色 */
2
3
  .theme-customize-bg {
3
4
  background: linear-gradient(180.25deg, #fe6500 0%, #ff4102 100%) !important;
4
5
  }
6
+
5
7
  .theme-customize-font {
6
8
  color: #1472FF !important;
7
9
  }
10
+
8
11
  .theme-customize-light-new {
9
12
  background-color: #9db8f1 !important;
10
13
  }
14
+
11
15
  .theme-customize-bg-light {
12
16
  background-color: #fff3eb !important;
13
17
  }
18
+
14
19
  .theme-customize-border {
15
20
  border-color: #FF781F !important;
16
21
  }
17
- .goods-explaining {
18
- position: absolute;
19
- width: 32vmin;
20
- height: 4.8vmin;
21
- bottom: 0vmin;
22
- left: 0vmin;
22
+
23
+ @keyframes turn {
24
+ 0% {
25
+ transform: rotate(0deg);
26
+ }
27
+ 20% {
28
+ transform: rotate(72deg);
29
+ }
30
+ 40% {
31
+ transform: rotate(144deg);
32
+ }
33
+ 60% {
34
+ transform: rotate(216deg);
35
+ }
36
+ 80% {
37
+ transform: rotate(288deg);
38
+ }
39
+ 100% {
40
+ transform: rotate(360deg);
41
+ }
23
42
  }
43
+
24
44
  .goods-item {
25
45
  display: flex;
26
46
  min-height: 24vmin;
27
47
  background: #ffffff;
28
- margin: 0 4.27vmin 0 4.27vmin;
29
- border-radius: 2.13vmin;
30
- padding: 2.13vmin;
48
+ border-radius: 2.13333vmin;
31
49
  flex-direction: column;
50
+ padding: 2.13333vmin;
51
+ margin: 2.13333vmin 2.13333vmin 0vmin 2.13333vmin;
32
52
  }
53
+
33
54
  .goods-item .main-card {
34
55
  display: flex;
35
56
  flex-direction: row;
36
57
  }
58
+
37
59
  .goods-item .main-card .left {
38
60
  position: relative;
39
- width: 32vmin;
40
- height: 24vmin;
61
+ width: 29.86667vmin;
62
+ height: 29.86667vmin;
63
+ }
64
+
65
+ .goods-item .main-card .left image {
66
+ width: 29.86667vmin;
67
+ height: 29.86667vmin;
41
68
  }
69
+
42
70
  .goods-item .main-card .left .index {
43
- border-radius: 2.13vmin 0 2.13vmin 0;
71
+ border-radius: 2.13333vmin 0 2.13333vmin 0;
44
72
  position: absolute;
45
73
  top: 0;
46
74
  left: 0;
@@ -48,259 +76,1446 @@
48
76
  align-items: center;
49
77
  justify-content: center;
50
78
  min-width: 4.8vmin;
51
- height: 3.73vmin;
52
- padding: 0.13vmin 0.8vmin;
53
- font-size: 2.66vmin;
79
+ height: 3.73333vmin;
80
+ padding: 0.13333vmin 0.8vmin;
81
+ font-size: 2.66667vmin;
54
82
  background: rgba(0, 0, 0, 0.6);
55
83
  color: #FFFFFF;
56
84
  }
85
+
57
86
  .goods-item .main-card .left .ios-index {
58
87
  background: rgba(0, 0, 0, 0.25);
59
88
  backdrop-filter: blur(3.2vmin);
60
89
  }
90
+
61
91
  .goods-item .main-card .left .goods-type {
62
92
  position: absolute;
63
- right: calc(100% - 30.67vmin);
64
- bottom: 1.07vmin;
65
- padding: 1.07vmin 1.33vmin;
93
+ right: 1.06667vmin;
94
+ bottom: 1.06667vmin;
95
+ padding: 1.06667vmin 1.33333vmin;
66
96
  background: rgba(0, 0, 0, 0.4);
67
- border-radius: 1.07vmin;
97
+ border-radius: 1.06667vmin;
68
98
  color: #fff;
69
- font-size: 2.67vmin;
99
+ font-size: 2.66667vmin;
70
100
  width: fit-content;
71
101
  display: flex;
72
102
  justify-content: center;
73
103
  align-items: center;
74
- height: 2.67vmin;
104
+ height: 2.66667vmin;
75
105
  font-weight: 500;
76
106
  }
107
+
108
+ .goods-item .main-card .left .goods-explaining {
109
+ position: absolute;
110
+ width: 32vmin;
111
+ height: 4.8vmin;
112
+ bottom: 0vmin;
113
+ left: 0vmin;
114
+ }
115
+
77
116
  .goods-item .main-card .left .ios-goods-type {
78
117
  background: rgba(0, 0, 0, 0.25) !important;
79
118
  backdrop-filter: blur(3.2vmin);
80
119
  }
120
+
121
+ .goods-item .main-card .left .is-over {
122
+ border-radius: 1.42267vmin 1.42267vmin 0 0;
123
+ position: absolute;
124
+ top: 0;
125
+ left: 0;
126
+ width: 35.2vmin;
127
+ height: 100%;
128
+ background: rgba(0, 0, 0, 0.4);
129
+ display: flex;
130
+ justify-content: center;
131
+ align-items: center;
132
+ color: #ffffff;
133
+ font-size: 3.2vmin;
134
+ }
135
+
81
136
  .goods-item .main-card .right {
82
137
  flex: 1;
83
138
  display: flex;
84
139
  flex-direction: column;
85
- justify-content: space-between;
86
- margin-left: 2.13vmin;
87
- height: 24vmin;
88
- width: calc(100% - 34.13vmin);
140
+ margin-left: 2.13333vmin;
141
+ height: 29.86667vmin;
142
+ width: calc(100% - vmin(256));
143
+ position: relative;
89
144
  }
145
+
90
146
  .goods-item .main-card .right .line-one {
91
147
  display: flex;
92
148
  align-items: center;
93
149
  height: 4.8vmin;
94
150
  }
95
- .goods-item .main-card .right .line-one .activity-type {
96
- background-color: #FFF3EB;
97
- color: #FF781F;
98
- padding: 0vmin 1.07vmin;
99
- font-size: 2.67vmin;
100
- height: 4.27vmin;
101
- line-height: 4.8vmin;
102
- flex-shrink: 0;
103
- margin-right: 1.07vmin;
104
- border-radius: 0.53vmin;
105
- display: flex;
106
- width: max-content;
107
- align-items: center;
108
- font-weight: 500;
109
- }
151
+
110
152
  .goods-item .main-card .right .line-one .super-activity-type {
111
153
  background: linear-gradient(180.25deg, #333333 0%, #525252 68%, #333333 100%);
112
154
  color: #ff781f;
113
- padding: 0.53vmin 1.07vmin;
114
- font-size: 2.67vmin;
115
- height: 4.27vmin;
155
+ padding: 0.53333vmin 1.06667vmin;
156
+ font-size: 2.66667vmin;
157
+ height: 4.26667vmin;
116
158
  width: max-content;
117
159
  line-height: 4.8vmin;
118
160
  flex-shrink: 0;
119
- margin-right: 1.07vmin;
120
- border-radius: 0.53vmin;
161
+ margin-right: 1.06667vmin;
162
+ border-radius: 0.53333vmin;
121
163
  display: flex;
122
164
  font-weight: 500;
123
165
  align-items: center;
124
166
  }
167
+
125
168
  .goods-item .main-card .right .line-one .super-activity-type .super-activity-txt {
126
169
  background: linear-gradient(to right, #FFE4AD, #FFC266);
127
170
  -webkit-background-clip: text;
128
171
  color: transparent;
129
172
  }
173
+
130
174
  .goods-item .main-card .right .line-one .goods-title {
131
- font-size: 3.73vmin;
175
+ font-size: 3.73333vmin;
132
176
  color: #333333;
133
177
  word-break: break-all;
178
+ display: inline-block;
134
179
  overflow: hidden;
135
180
  text-overflow: ellipsis;
136
181
  white-space: nowrap;
137
182
  display: inline-block;
138
183
  vertical-align: middle;
139
- line-height: 4.8vmin;
184
+ line-height: 5.33333vmin;
140
185
  font-weight: 500;
186
+ width: 59.46667vmin;
141
187
  }
142
- .goods-item .main-card .right .sec-kill {
143
- color: #FF781F;
144
- font-size: 2.67vmin;
145
- line-height: 4.27vmin;
146
- margin: 1.07vmin 0;
188
+
189
+ .goods-item .main-card .right .line-one .manage-title {
190
+ width: 49.86667vmin;
191
+ }
192
+
193
+ .goods-item .main-card .right .desc {
194
+ color: #FF2E57;
195
+ font-size: 3.2vmin;
196
+ line-height: 3.2vmin;
197
+ margin-top: 1.06667vmin;
198
+ }
199
+
200
+ .goods-item .main-card .right .order {
201
+ margin-top: 1.06667vmin;
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: space-between;
205
+ font-size: 2.66667vmin;
206
+ }
207
+
208
+ .goods-item .main-card .right .order .order-left .preferential-price {
209
+ color: #FF2E57;
210
+ background: #FFEBEF;
211
+ padding: 0.53333vmin 1.06667vmin;
212
+ border-radius: 0.53333vmin;
147
213
  }
148
- .goods-item .main-card .right .left-stock {
214
+
215
+ .goods-item .main-card .right .order .order-stock {
149
216
  color: #999999;
150
- font-size: 2.67vmin;
151
- height: 3.2vmin;
217
+ }
218
+
219
+ .goods-item .main-card .right .progress {
220
+ width: 42.66667vmin;
221
+ height: 4.26667vmin;
222
+ border-radius: 2.13333vmin;
223
+ background: #ebebeb;
224
+ position: relative;
152
225
  display: flex;
226
+ justify-content: space-between;
227
+ padding: 0.53333vmin 2.50933vmin 0.53333vmin 2.13333vmin;
228
+ box-sizing: border-box;
229
+ margin-top: 1.06667vmin;
153
230
  align-items: center;
154
231
  }
155
- .goods-item .main-card .right .left-stock .split {
156
- display: inline-block;
157
- border-left: 0.13vmin solid #999999;
158
- width: 0.27vmin;
159
- height: 3.2vmin;
160
- margin: 0 1.6vmin;
232
+
233
+ .goods-item .main-card .right .progress .schedule {
234
+ height: 4.26667vmin;
235
+ border-radius: 2.13333vmin;
236
+ background: linear-gradient(90deg, #ff833e 0%, #ff2e57 100%);
237
+ position: absolute;
238
+ left: 0;
239
+ top: 0;
240
+ }
241
+
242
+ .goods-item .main-card .right .progress .residue-num {
243
+ font-size: 2.66667vmin;
244
+ color: #ffffff;
245
+ z-index: 2;
246
+ }
247
+
248
+ .goods-item .main-card .right .progress .residue-time {
249
+ color: #999999;
250
+ font-size: 2.66667vmin;
251
+ z-index: 2;
161
252
  }
253
+
254
+ .goods-item .main-card .right .sec-kill {
255
+ color: #333333;
256
+ height: 4.26667vmin;
257
+ border-radius: 2.13333vmin;
258
+ background: linear-gradient(90deg, #ffebef 0%, #ffebef00 100%);
259
+ font-size: 2.66667vmin;
260
+ margin-top: 1.06667vmin;
261
+ display: flex;
262
+ align-items: center;
263
+ padding: 0 2.13333vmin;
264
+ }
265
+
266
+ .goods-item .main-card .right .sec-kill .time {
267
+ margin: 0 1.86667vmin;
268
+ color: #ff2e57;
269
+ }
270
+
162
271
  .goods-item .main-card .right .line-three {
163
272
  display: flex;
164
273
  justify-content: space-between;
165
274
  align-items: flex-end;
275
+ position: absolute;
276
+ bottom: 0;
277
+ width: 100%;
166
278
  }
279
+
167
280
  .goods-item .main-card .right .line-three .price {
168
281
  position: relative;
169
- min-height: 5.33vmin;
282
+ min-height: 5.33333vmin;
283
+ font-weight: 500;
284
+ color: #FF2E57;
285
+ }
286
+
287
+ .goods-item .main-card .right .line-three .price .activity-type {
288
+ font-size: 2.66667vmin;
289
+ height: 4.26667vmin;
290
+ line-height: 4.8vmin;
291
+ flex-shrink: 0;
292
+ margin-right: 0.53333vmin;
293
+ border-radius: 0.53333vmin;
170
294
  font-weight: 500;
171
295
  }
296
+
172
297
  .goods-item .main-card .right .line-three .price .price-flow {
173
- color: #FF5429;
174
298
  font-size: 3.2vmin;
175
299
  }
300
+
176
301
  .goods-item .main-card .right .line-three .price .price-show {
177
- color: #FF5429;
178
- font-size: 4.8vmin;
302
+ font-size: 4.26667vmin;
179
303
  }
304
+
180
305
  .goods-item .main-card .right .line-three .price .price-line {
181
- font-size: 2.67vmin;
306
+ font-size: 2.66667vmin;
182
307
  text-decoration: line-through;
183
308
  color: #999999;
184
- margin-left: 1.07vmin;
309
+ margin-left: 1.06667vmin;
185
310
  }
311
+
186
312
  .goods-item .main-card .right .line-three .buy-btn {
187
313
  font-size: 3.2vmin;
188
- border-radius: 5.33vmin;
189
- width: 21.33vmin;
190
- height: 7.47vmin;
314
+ border-radius: 1.06667vmin;
315
+ width: 17.06667vmin;
316
+ height: 6.4vmin;
191
317
  display: flex;
192
318
  justify-content: center;
193
319
  align-items: center;
194
320
  color: white;
195
- line-height: 7.47vmin;
321
+ line-height: 6.4vmin;
196
322
  font-weight: 500;
197
- background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
323
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
198
324
  }
325
+
199
326
  .goods-item .main-card .right .line-three .buy-btn-teacher {
200
327
  font-size: 3.2vmin;
201
- border-radius: 5.33vmin;
202
- width: 21.33vmin;
203
- height: 7.47vmin;
328
+ border-radius: 1.06667vmin;
329
+ width: 17.06667vmin;
330
+ height: 6.4vmin;
204
331
  display: flex;
205
332
  justify-content: center;
206
333
  align-items: center;
207
334
  color: white;
208
- line-height: 7.47vmin;
335
+ line-height: 6.4vmin;
209
336
  font-weight: 500;
210
- background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
337
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
211
338
  }
339
+
212
340
  .goods-item .main-card .right .line-three .buy-btn-teacher .load {
213
341
  width: 3.2vmin;
214
342
  height: 3.2vmin;
215
343
  animation: turn 1s linear infinite;
216
- margin-right: 1.06vmin;
344
+ margin-right: 1.06667vmin;
217
345
  }
346
+
218
347
  .goods-item .main-card .right .line-three .no-stock-btn {
219
348
  font-size: 3.2vmin;
220
- border-radius: 5.33vmin;
221
- width: 21.33vmin;
222
- height: 7.47vmin;
349
+ border-radius: 1.06667vmin;
350
+ width: 17.06667vmin;
351
+ height: 6.4vmin;
223
352
  display: flex;
224
353
  justify-content: center;
225
354
  align-items: center;
226
355
  color: white;
227
- line-height: 7.47vmin;
356
+ line-height: 6.4vmin;
228
357
  font-weight: 500;
229
358
  opacity: 40%;
230
- background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
359
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
231
360
  }
361
+
232
362
  .goods-item .main-card .right .line-three .see-btn {
233
363
  font-size: 3.2vmin;
234
- border-radius: 5.33vmin;
235
- width: 21.33vmin;
236
- height: 7.47vmin;
364
+ border-radius: 1.06667vmin;
365
+ width: 17.06667vmin;
366
+ height: 6.4vmin;
237
367
  display: flex;
238
368
  justify-content: center;
239
369
  align-items: center;
240
370
  color: white;
241
- line-height: 7.47vmin;
371
+ line-height: 6.4vmin;
242
372
  font-weight: 500;
243
373
  margin-left: inherit;
244
374
  margin-right: inherit;
245
- background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
375
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
246
376
  }
377
+
247
378
  .goods-item .main-card .right .line-three .buy-btn-preferential {
248
379
  font-size: 3.2vmin;
249
- border-radius: 5.33vmin;
250
- padding: 0 1.33vmin;
251
- min-width: 21.33vmin;
252
- height: 9.07vmin;
380
+ border-radius: 1.06667vmin;
381
+ padding: 0 1.33333vmin;
382
+ min-width: 21.33333vmin;
383
+ height: 9.06667vmin;
253
384
  display: flex;
254
385
  justify-content: center;
255
386
  align-items: center;
256
387
  color: white;
257
388
  flex-flow: column;
258
- line-height: 4.27vmin;
259
- background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
389
+ line-height: 4.26667vmin;
390
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
260
391
  }
392
+
261
393
  .goods-item .main-card .right .line-three .buy-btn-preferential .go-buy {
262
394
  font-size: 3.2vmin;
263
395
  font-weight: 500;
264
396
  }
397
+
265
398
  .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-flow {
266
- color: #ffffff;
267
- font-size: 2.67vmin;
399
+ color: white;
400
+ font-size: 2.66667vmin;
268
401
  }
402
+
269
403
  .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-show {
270
- font-size: 3.73vmin;
271
- color: #ffffff;
404
+ font-size: 3.73333vmin;
405
+ color: white;
272
406
  }
273
- .teacher-switch {
274
- height: 4.27vmin;
407
+
408
+ .goods-item .main-card .manage-right {
409
+ width: 49.86667vmin;
410
+ }
411
+
412
+ .goods-item .main-card .teacher-switch {
413
+ height: 4.26667vmin;
275
414
  background: #fff;
276
415
  display: flex;
277
- margin-top: 2.13vmin;
416
+ margin-top: 2.13333vmin;
278
417
  }
279
- .teacher-switch .switch-txt {
418
+
419
+ .goods-item .main-card .teacher-switch .switch-txt {
280
420
  opacity: 1;
281
421
  color: #333333;
282
422
  font-size: 3.2vmin;
283
423
  font-weight: 400;
284
424
  font-family: "PingFang SC";
285
- margin-left: 2.13vmin;
425
+ margin-left: 2.13333vmin;
286
426
  }
287
- @keyframes turn {
288
- 0% {
289
- transform: rotate(0deg);
427
+
428
+ .goods-item .hide-tip {
429
+ width: 32vmin;
430
+ height: 6.4vmin;
431
+ border-radius: 3.2vmin;
432
+ background: #f5f5f5;
433
+ font-size: 2.66667vmin;
434
+ color: #666666;
435
+ font-weight: 500;
436
+ display: flex;
437
+ justify-content: center;
438
+ align-items: center;
439
+ margin-top: 1.06667vmin;
440
+ }
441
+
442
+ .goods-item .full-hide-tip {
443
+ width: 100%;
444
+ }
445
+
446
+ @media screen and (min-width: 768px) and (orientation: portrait) {
447
+ .goods-item {
448
+ display: flex;
449
+ min-height: 11.71875vmin;
450
+ background: #ffffff;
451
+ border-radius: 1.04167vmin;
452
+ flex-direction: column;
453
+ padding: 1.04167vmin;
454
+ margin: 1.04167vmin 1.04167vmin 0vmin 1.04167vmin;
290
455
  }
291
- 20% {
292
- transform: rotate(72deg);
456
+ .goods-item .main-card {
457
+ display: flex;
458
+ flex-direction: row;
293
459
  }
294
- 40% {
295
- transform: rotate(144deg);
460
+ .goods-item .main-card .left {
461
+ position: relative;
462
+ width: 14.58333vmin;
463
+ height: 14.58333vmin;
296
464
  }
297
- 60% {
298
- transform: rotate(216deg);
465
+ .goods-item .main-card .left image {
466
+ width: 14.58333vmin;
467
+ height: 14.58333vmin;
299
468
  }
300
- 80% {
301
- transform: rotate(288deg);
469
+ .goods-item .main-card .left .index {
470
+ border-radius: 1.04167vmin 0 1.04167vmin 0;
471
+ position: absolute;
472
+ top: 0;
473
+ left: 0;
474
+ display: inline-flex;
475
+ align-items: center;
476
+ justify-content: center;
477
+ min-width: 2.34375vmin;
478
+ height: 1.82292vmin;
479
+ padding: 0.0651vmin 0.39062vmin;
480
+ font-size: 1.30208vmin;
481
+ background: rgba(0, 0, 0, 0.6);
482
+ color: #FFFFFF;
302
483
  }
303
- 100% {
304
- transform: rotate(360deg);
484
+ .goods-item .main-card .left .ios-index {
485
+ background: rgba(0, 0, 0, 0.25);
486
+ backdrop-filter: blur(1.5625vmin);
487
+ }
488
+ .goods-item .main-card .left .goods-type {
489
+ position: absolute;
490
+ right: 0.52083vmin;
491
+ bottom: 0.52083vmin;
492
+ padding: 0.52083vmin 0.65104vmin;
493
+ background: rgba(0, 0, 0, 0.4);
494
+ border-radius: 0.52083vmin;
495
+ color: #fff;
496
+ font-size: 1.30208vmin;
497
+ width: fit-content;
498
+ display: flex;
499
+ justify-content: center;
500
+ align-items: center;
501
+ height: 1.30208vmin;
502
+ font-weight: 500;
503
+ }
504
+ .goods-item .main-card .left .goods-explaining {
505
+ position: absolute;
506
+ width: 15.625vmin;
507
+ height: 2.34375vmin;
508
+ bottom: 0vmin;
509
+ left: 0vmin;
510
+ }
511
+ .goods-item .main-card .left .ios-goods-type {
512
+ background: rgba(0, 0, 0, 0.25) !important;
513
+ backdrop-filter: blur(1.5625vmin);
514
+ }
515
+ .goods-item .main-card .left .is-over {
516
+ border-radius: 0.69466vmin 0.69466vmin 0 0;
517
+ position: absolute;
518
+ top: 0;
519
+ left: 0;
520
+ width: 17.1875vmin;
521
+ height: 100%;
522
+ background: rgba(0, 0, 0, 0.4);
523
+ display: flex;
524
+ justify-content: center;
525
+ align-items: center;
526
+ color: #ffffff;
527
+ font-size: 1.5625vmin;
528
+ }
529
+ .goods-item .main-card .right {
530
+ flex: 1;
531
+ display: flex;
532
+ flex-direction: column;
533
+ margin-left: 1.04167vmin;
534
+ height: 14.58333vmin;
535
+ width: calc(100% - vmin(256));
536
+ position: relative;
537
+ }
538
+ .goods-item .main-card .right .line-one {
539
+ display: flex;
540
+ align-items: center;
541
+ height: 2.34375vmin;
542
+ }
543
+ .goods-item .main-card .right .line-one .super-activity-type {
544
+ background: linear-gradient(180.25deg, #333333 0%, #525252 68%, #333333 100%);
545
+ color: #ff781f;
546
+ padding: 0.26042vmin 0.52083vmin;
547
+ font-size: 1.30208vmin;
548
+ height: 2.08333vmin;
549
+ width: max-content;
550
+ line-height: 2.34375vmin;
551
+ flex-shrink: 0;
552
+ margin-right: 0.52083vmin;
553
+ border-radius: 0.26042vmin;
554
+ display: flex;
555
+ font-weight: 500;
556
+ align-items: center;
557
+ }
558
+ .goods-item .main-card .right .line-one .super-activity-type .super-activity-txt {
559
+ background: linear-gradient(to right, #FFE4AD, #FFC266);
560
+ -webkit-background-clip: text;
561
+ color: transparent;
562
+ }
563
+ .goods-item .main-card .right .line-one .goods-title {
564
+ font-size: 1.82292vmin;
565
+ color: #333333;
566
+ word-break: break-all;
567
+ display: inline-block;
568
+ overflow: hidden;
569
+ text-overflow: ellipsis;
570
+ white-space: nowrap;
571
+ display: inline-block;
572
+ vertical-align: middle;
573
+ line-height: 2.60417vmin;
574
+ font-weight: 500;
575
+ width: 29.03646vmin;
576
+ }
577
+ .goods-item .main-card .right .line-one .manage-title {
578
+ width: 24.34896vmin;
579
+ }
580
+ .goods-item .main-card .right .desc {
581
+ color: #FF2E57;
582
+ font-size: 1.5625vmin;
583
+ line-height: 1.5625vmin;
584
+ margin-top: 0.52083vmin;
585
+ }
586
+ .goods-item .main-card .right .order {
587
+ margin-top: 0.52083vmin;
588
+ display: flex;
589
+ align-items: center;
590
+ justify-content: space-between;
591
+ font-size: 1.30208vmin;
592
+ }
593
+ .goods-item .main-card .right .order .order-left .preferential-price {
594
+ color: #FF2E57;
595
+ background: #FFEBEF;
596
+ padding: 0.26042vmin 0.52083vmin;
597
+ border-radius: 0.26042vmin;
598
+ }
599
+ .goods-item .main-card .right .order .order-stock {
600
+ color: #999999;
601
+ }
602
+ .goods-item .main-card .right .progress {
603
+ width: 20.83333vmin;
604
+ height: 2.08333vmin;
605
+ border-radius: 1.04167vmin;
606
+ background: #ebebeb;
607
+ position: relative;
608
+ display: flex;
609
+ justify-content: space-between;
610
+ padding: 0.26042vmin 1.22526vmin 0.26042vmin 1.04167vmin;
611
+ box-sizing: border-box;
612
+ margin-top: 0.52083vmin;
613
+ align-items: center;
614
+ }
615
+ .goods-item .main-card .right .progress .schedule {
616
+ height: 2.08333vmin;
617
+ border-radius: 1.04167vmin;
618
+ background: linear-gradient(90deg, #ff833e 0%, #ff2e57 100%);
619
+ position: absolute;
620
+ left: 0;
621
+ top: 0;
622
+ }
623
+ .goods-item .main-card .right .progress .residue-num {
624
+ font-size: 1.30208vmin;
625
+ color: #ffffff;
626
+ z-index: 2;
627
+ }
628
+ .goods-item .main-card .right .progress .residue-time {
629
+ color: #999999;
630
+ font-size: 1.30208vmin;
631
+ z-index: 2;
632
+ }
633
+ .goods-item .main-card .right .sec-kill {
634
+ color: #333333;
635
+ height: 2.08333vmin;
636
+ border-radius: 1.04167vmin;
637
+ background: linear-gradient(90deg, #ffebef 0%, #ffebef00 100%);
638
+ font-size: 1.30208vmin;
639
+ margin-top: 0.52083vmin;
640
+ display: flex;
641
+ align-items: center;
642
+ padding: 0 1.04167vmin;
643
+ }
644
+ .goods-item .main-card .right .sec-kill .time {
645
+ margin: 0 0.91146vmin;
646
+ color: #ff2e57;
647
+ }
648
+ .goods-item .main-card .right .line-three {
649
+ display: flex;
650
+ justify-content: space-between;
651
+ align-items: flex-end;
652
+ position: absolute;
653
+ bottom: 0;
654
+ width: 100%;
655
+ }
656
+ .goods-item .main-card .right .line-three .price {
657
+ position: relative;
658
+ min-height: 2.60417vmin;
659
+ font-weight: 500;
660
+ color: #FF2E57;
661
+ }
662
+ .goods-item .main-card .right .line-three .price .activity-type {
663
+ font-size: 1.30208vmin;
664
+ height: 2.08333vmin;
665
+ line-height: 2.34375vmin;
666
+ flex-shrink: 0;
667
+ margin-right: 0.26042vmin;
668
+ border-radius: 0.26042vmin;
669
+ font-weight: 500;
670
+ }
671
+ .goods-item .main-card .right .line-three .price .price-flow {
672
+ font-size: 1.5625vmin;
673
+ }
674
+ .goods-item .main-card .right .line-three .price .price-show {
675
+ font-size: 2.08333vmin;
676
+ }
677
+ .goods-item .main-card .right .line-three .price .price-line {
678
+ font-size: 1.30208vmin;
679
+ text-decoration: line-through;
680
+ color: #999999;
681
+ margin-left: 0.52083vmin;
682
+ }
683
+ .goods-item .main-card .right .line-three .buy-btn {
684
+ font-size: 1.5625vmin;
685
+ border-radius: 0.52083vmin;
686
+ width: 8.33333vmin;
687
+ height: 3.125vmin;
688
+ display: flex;
689
+ justify-content: center;
690
+ align-items: center;
691
+ color: white;
692
+ line-height: 3.125vmin;
693
+ font-weight: 500;
694
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
695
+ }
696
+ .goods-item .main-card .right .line-three .buy-btn-teacher {
697
+ font-size: 1.5625vmin;
698
+ border-radius: 0.52083vmin;
699
+ width: 8.33333vmin;
700
+ height: 3.125vmin;
701
+ display: flex;
702
+ justify-content: center;
703
+ align-items: center;
704
+ color: white;
705
+ line-height: 3.125vmin;
706
+ font-weight: 500;
707
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
708
+ }
709
+ .goods-item .main-card .right .line-three .buy-btn-teacher .load {
710
+ width: 1.5625vmin;
711
+ height: 1.5625vmin;
712
+ animation: turn 1s linear infinite;
713
+ margin-right: 0.52083vmin;
714
+ }
715
+ .goods-item .main-card .right .line-three .no-stock-btn {
716
+ font-size: 1.5625vmin;
717
+ border-radius: 0.52083vmin;
718
+ width: 8.33333vmin;
719
+ height: 3.125vmin;
720
+ display: flex;
721
+ justify-content: center;
722
+ align-items: center;
723
+ color: white;
724
+ line-height: 3.125vmin;
725
+ font-weight: 500;
726
+ opacity: 40%;
727
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
728
+ }
729
+ .goods-item .main-card .right .line-three .see-btn {
730
+ font-size: 1.5625vmin;
731
+ border-radius: 0.52083vmin;
732
+ width: 8.33333vmin;
733
+ height: 3.125vmin;
734
+ display: flex;
735
+ justify-content: center;
736
+ align-items: center;
737
+ color: white;
738
+ line-height: 3.125vmin;
739
+ font-weight: 500;
740
+ margin-left: inherit;
741
+ margin-right: inherit;
742
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
743
+ }
744
+ .goods-item .main-card .right .line-three .buy-btn-preferential {
745
+ font-size: 1.5625vmin;
746
+ border-radius: 0.52083vmin;
747
+ padding: 0 0.65104vmin;
748
+ min-width: 10.41667vmin;
749
+ height: 4.42708vmin;
750
+ display: flex;
751
+ justify-content: center;
752
+ align-items: center;
753
+ color: white;
754
+ flex-flow: column;
755
+ line-height: 2.08333vmin;
756
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
757
+ }
758
+ .goods-item .main-card .right .line-three .buy-btn-preferential .go-buy {
759
+ font-size: 1.5625vmin;
760
+ font-weight: 500;
761
+ }
762
+ .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-flow {
763
+ color: white;
764
+ font-size: 1.30208vmin;
765
+ }
766
+ .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-show {
767
+ font-size: 1.82292vmin;
768
+ color: white;
769
+ }
770
+ .goods-item .main-card .manage-right {
771
+ width: 24.34896vmin;
772
+ }
773
+ .goods-item .main-card .teacher-switch {
774
+ height: 2.08333vmin;
775
+ background: #fff;
776
+ display: flex;
777
+ margin-top: 1.04167vmin;
778
+ }
779
+ .goods-item .main-card .teacher-switch .switch-txt {
780
+ opacity: 1;
781
+ color: #333333;
782
+ font-size: 1.5625vmin;
783
+ font-weight: 400;
784
+ font-family: "PingFang SC";
785
+ margin-left: 1.04167vmin;
786
+ }
787
+ .goods-item .hide-tip {
788
+ width: 15.625vmin;
789
+ height: 3.125vmin;
790
+ border-radius: 1.5625vmin;
791
+ background: #f5f5f5;
792
+ font-size: 1.30208vmin;
793
+ color: #666666;
794
+ font-weight: 500;
795
+ display: flex;
796
+ justify-content: center;
797
+ align-items: center;
798
+ margin-top: 0.52083vmin;
799
+ }
800
+ .goods-item .full-hide-tip {
801
+ width: 100%;
802
+ }
803
+ }
804
+
805
+ @media screen and (min-height: 630px) and (orientation: landscape) {
806
+ .goods-item {
807
+ display: flex;
808
+ min-height: 14.28571vmin;
809
+ background: #ffffff;
810
+ border-radius: 1.26984vmin;
811
+ flex-direction: column;
812
+ padding: 1.26984vmin;
813
+ margin: 1.26984vmin 1.26984vmin 0vmin 1.26984vmin;
814
+ }
815
+ .goods-item .main-card {
816
+ display: flex;
817
+ flex-direction: row;
818
+ }
819
+ .goods-item .main-card .left {
820
+ position: relative;
821
+ width: 17.77778vmin;
822
+ height: 17.77778vmin;
823
+ }
824
+ .goods-item .main-card .left image {
825
+ width: 17.77778vmin;
826
+ height: 17.77778vmin;
827
+ }
828
+ .goods-item .main-card .left .index {
829
+ border-radius: 1.26984vmin 0 1.26984vmin 0;
830
+ position: absolute;
831
+ top: 0;
832
+ left: 0;
833
+ display: inline-flex;
834
+ align-items: center;
835
+ justify-content: center;
836
+ min-width: 2.85714vmin;
837
+ height: 2.22222vmin;
838
+ padding: 0.07937vmin 0.47619vmin;
839
+ font-size: 1.5873vmin;
840
+ background: rgba(0, 0, 0, 0.6);
841
+ color: #FFFFFF;
842
+ }
843
+ .goods-item .main-card .left .ios-index {
844
+ background: rgba(0, 0, 0, 0.25);
845
+ backdrop-filter: blur(1.90476vmin);
846
+ }
847
+ .goods-item .main-card .left .goods-type {
848
+ position: absolute;
849
+ right: 0.63492vmin;
850
+ bottom: 0.63492vmin;
851
+ padding: 0.63492vmin 0.79365vmin;
852
+ background: rgba(0, 0, 0, 0.4);
853
+ border-radius: 0.63492vmin;
854
+ color: #fff;
855
+ font-size: 1.5873vmin;
856
+ width: fit-content;
857
+ display: flex;
858
+ justify-content: center;
859
+ align-items: center;
860
+ height: 1.5873vmin;
861
+ font-weight: 500;
862
+ }
863
+ .goods-item .main-card .left .goods-explaining {
864
+ position: absolute;
865
+ width: 19.04762vmin;
866
+ height: 2.85714vmin;
867
+ bottom: 0vmin;
868
+ left: 0vmin;
869
+ }
870
+ .goods-item .main-card .left .ios-goods-type {
871
+ background: rgba(0, 0, 0, 0.25) !important;
872
+ backdrop-filter: blur(1.90476vmin);
873
+ }
874
+ .goods-item .main-card .left .is-over {
875
+ border-radius: 0.84683vmin 0.84683vmin 0 0;
876
+ position: absolute;
877
+ top: 0;
878
+ left: 0;
879
+ width: 20.95238vmin;
880
+ height: 100%;
881
+ background: rgba(0, 0, 0, 0.4);
882
+ display: flex;
883
+ justify-content: center;
884
+ align-items: center;
885
+ color: #ffffff;
886
+ font-size: 1.90476vmin;
887
+ }
888
+ .goods-item .main-card .right {
889
+ flex: 1;
890
+ display: flex;
891
+ flex-direction: column;
892
+ margin-left: 1.26984vmin;
893
+ height: 17.77778vmin;
894
+ width: calc(100% - vmin(256));
895
+ position: relative;
896
+ }
897
+ .goods-item .main-card .right .line-one {
898
+ display: flex;
899
+ align-items: center;
900
+ height: 2.85714vmin;
901
+ }
902
+ .goods-item .main-card .right .line-one .super-activity-type {
903
+ background: linear-gradient(180.25deg, #333333 0%, #525252 68%, #333333 100%);
904
+ color: #ff781f;
905
+ padding: 0.31746vmin 0.63492vmin;
906
+ font-size: 1.5873vmin;
907
+ height: 2.53968vmin;
908
+ width: max-content;
909
+ line-height: 2.85714vmin;
910
+ flex-shrink: 0;
911
+ margin-right: 0.63492vmin;
912
+ border-radius: 0.31746vmin;
913
+ display: flex;
914
+ font-weight: 500;
915
+ align-items: center;
916
+ }
917
+ .goods-item .main-card .right .line-one .super-activity-type .super-activity-txt {
918
+ background: linear-gradient(to right, #FFE4AD, #FFC266);
919
+ -webkit-background-clip: text;
920
+ color: transparent;
921
+ }
922
+ .goods-item .main-card .right .line-one .goods-title {
923
+ font-size: 2.22222vmin;
924
+ color: #333333;
925
+ word-break: break-all;
926
+ display: inline-block;
927
+ overflow: hidden;
928
+ text-overflow: ellipsis;
929
+ white-space: nowrap;
930
+ display: inline-block;
931
+ vertical-align: middle;
932
+ line-height: 3.1746vmin;
933
+ font-weight: 500;
934
+ width: 35.39683vmin;
935
+ }
936
+ .goods-item .main-card .right .line-one .manage-title {
937
+ width: 29.68254vmin;
938
+ }
939
+ .goods-item .main-card .right .desc {
940
+ color: #FF2E57;
941
+ font-size: 1.90476vmin;
942
+ line-height: 1.90476vmin;
943
+ margin-top: 0.63492vmin;
944
+ }
945
+ .goods-item .main-card .right .order {
946
+ margin-top: 0.63492vmin;
947
+ display: flex;
948
+ align-items: center;
949
+ justify-content: space-between;
950
+ font-size: 1.5873vmin;
951
+ }
952
+ .goods-item .main-card .right .order .order-left .preferential-price {
953
+ color: #FF2E57;
954
+ background: #FFEBEF;
955
+ padding: 0.31746vmin 0.63492vmin;
956
+ border-radius: 0.31746vmin;
957
+ }
958
+ .goods-item .main-card .right .order .order-stock {
959
+ color: #999999;
960
+ }
961
+ .goods-item .main-card .right .progress {
962
+ width: 25.39683vmin;
963
+ height: 2.53968vmin;
964
+ border-radius: 1.26984vmin;
965
+ background: #ebebeb;
966
+ position: relative;
967
+ display: flex;
968
+ justify-content: space-between;
969
+ padding: 0.31746vmin 1.49365vmin 0.31746vmin 1.26984vmin;
970
+ box-sizing: border-box;
971
+ margin-top: 0.63492vmin;
972
+ align-items: center;
973
+ }
974
+ .goods-item .main-card .right .progress .schedule {
975
+ height: 2.53968vmin;
976
+ border-radius: 1.26984vmin;
977
+ background: linear-gradient(90deg, #ff833e 0%, #ff2e57 100%);
978
+ position: absolute;
979
+ left: 0;
980
+ top: 0;
981
+ }
982
+ .goods-item .main-card .right .progress .residue-num {
983
+ font-size: 1.5873vmin;
984
+ color: #ffffff;
985
+ z-index: 2;
986
+ }
987
+ .goods-item .main-card .right .progress .residue-time {
988
+ color: #999999;
989
+ font-size: 1.5873vmin;
990
+ z-index: 2;
991
+ }
992
+ .goods-item .main-card .right .sec-kill {
993
+ color: #333333;
994
+ height: 2.53968vmin;
995
+ border-radius: 1.26984vmin;
996
+ background: linear-gradient(90deg, #ffebef 0%, #ffebef00 100%);
997
+ font-size: 1.5873vmin;
998
+ margin-top: 0.63492vmin;
999
+ display: flex;
1000
+ align-items: center;
1001
+ padding: 0 1.26984vmin;
1002
+ }
1003
+ .goods-item .main-card .right .sec-kill .time {
1004
+ margin: 0 1.11111vmin;
1005
+ color: #ff2e57;
1006
+ }
1007
+ .goods-item .main-card .right .line-three {
1008
+ display: flex;
1009
+ justify-content: space-between;
1010
+ align-items: flex-end;
1011
+ position: absolute;
1012
+ bottom: 0;
1013
+ width: 100%;
1014
+ }
1015
+ .goods-item .main-card .right .line-three .price {
1016
+ position: relative;
1017
+ min-height: 3.1746vmin;
1018
+ font-weight: 500;
1019
+ color: #FF2E57;
1020
+ }
1021
+ .goods-item .main-card .right .line-three .price .activity-type {
1022
+ font-size: 1.5873vmin;
1023
+ height: 2.53968vmin;
1024
+ line-height: 2.85714vmin;
1025
+ flex-shrink: 0;
1026
+ margin-right: 0.31746vmin;
1027
+ border-radius: 0.31746vmin;
1028
+ font-weight: 500;
1029
+ }
1030
+ .goods-item .main-card .right .line-three .price .price-flow {
1031
+ font-size: 1.90476vmin;
1032
+ }
1033
+ .goods-item .main-card .right .line-three .price .price-show {
1034
+ font-size: 2.53968vmin;
1035
+ }
1036
+ .goods-item .main-card .right .line-three .price .price-line {
1037
+ font-size: 1.5873vmin;
1038
+ text-decoration: line-through;
1039
+ color: #999999;
1040
+ margin-left: 0.63492vmin;
1041
+ }
1042
+ .goods-item .main-card .right .line-three .buy-btn {
1043
+ font-size: 1.90476vmin;
1044
+ border-radius: 0.63492vmin;
1045
+ width: 10.15873vmin;
1046
+ height: 3.80952vmin;
1047
+ display: flex;
1048
+ justify-content: center;
1049
+ align-items: center;
1050
+ color: white;
1051
+ line-height: 3.80952vmin;
1052
+ font-weight: 500;
1053
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1054
+ }
1055
+ .goods-item .main-card .right .line-three .buy-btn-teacher {
1056
+ font-size: 1.90476vmin;
1057
+ border-radius: 0.63492vmin;
1058
+ width: 10.15873vmin;
1059
+ height: 3.80952vmin;
1060
+ display: flex;
1061
+ justify-content: center;
1062
+ align-items: center;
1063
+ color: white;
1064
+ line-height: 3.80952vmin;
1065
+ font-weight: 500;
1066
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1067
+ }
1068
+ .goods-item .main-card .right .line-three .buy-btn-teacher .load {
1069
+ width: 1.90476vmin;
1070
+ height: 1.90476vmin;
1071
+ animation: turn 1s linear infinite;
1072
+ margin-right: 0.63492vmin;
1073
+ }
1074
+ .goods-item .main-card .right .line-three .no-stock-btn {
1075
+ font-size: 1.90476vmin;
1076
+ border-radius: 0.63492vmin;
1077
+ width: 10.15873vmin;
1078
+ height: 3.80952vmin;
1079
+ display: flex;
1080
+ justify-content: center;
1081
+ align-items: center;
1082
+ color: white;
1083
+ line-height: 3.80952vmin;
1084
+ font-weight: 500;
1085
+ opacity: 40%;
1086
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1087
+ }
1088
+ .goods-item .main-card .right .line-three .see-btn {
1089
+ font-size: 1.90476vmin;
1090
+ border-radius: 0.63492vmin;
1091
+ width: 10.15873vmin;
1092
+ height: 3.80952vmin;
1093
+ display: flex;
1094
+ justify-content: center;
1095
+ align-items: center;
1096
+ color: white;
1097
+ line-height: 3.80952vmin;
1098
+ font-weight: 500;
1099
+ margin-left: inherit;
1100
+ margin-right: inherit;
1101
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1102
+ }
1103
+ .goods-item .main-card .right .line-three .buy-btn-preferential {
1104
+ font-size: 1.90476vmin;
1105
+ border-radius: 0.63492vmin;
1106
+ padding: 0 0.79365vmin;
1107
+ min-width: 12.69841vmin;
1108
+ height: 5.39683vmin;
1109
+ display: flex;
1110
+ justify-content: center;
1111
+ align-items: center;
1112
+ color: white;
1113
+ flex-flow: column;
1114
+ line-height: 2.53968vmin;
1115
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1116
+ }
1117
+ .goods-item .main-card .right .line-three .buy-btn-preferential .go-buy {
1118
+ font-size: 1.90476vmin;
1119
+ font-weight: 500;
1120
+ }
1121
+ .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-flow {
1122
+ color: white;
1123
+ font-size: 1.5873vmin;
1124
+ }
1125
+ .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-show {
1126
+ font-size: 2.22222vmin;
1127
+ color: white;
1128
+ }
1129
+ .goods-item .main-card .manage-right {
1130
+ width: 29.68254vmin;
1131
+ }
1132
+ .goods-item .main-card .teacher-switch {
1133
+ height: 2.53968vmin;
1134
+ background: #fff;
1135
+ display: flex;
1136
+ margin-top: 1.26984vmin;
1137
+ }
1138
+ .goods-item .main-card .teacher-switch .switch-txt {
1139
+ opacity: 1;
1140
+ color: #333333;
1141
+ font-size: 1.90476vmin;
1142
+ font-weight: 400;
1143
+ font-family: "PingFang SC";
1144
+ margin-left: 1.26984vmin;
1145
+ }
1146
+ .goods-item .hide-tip {
1147
+ width: 19.04762vmin;
1148
+ height: 3.80952vmin;
1149
+ border-radius: 1.90476vmin;
1150
+ background: #f5f5f5;
1151
+ font-size: 1.5873vmin;
1152
+ color: #666666;
1153
+ font-weight: 500;
1154
+ display: flex;
1155
+ justify-content: center;
1156
+ align-items: center;
1157
+ margin-top: 0.63492vmin;
1158
+ }
1159
+ .goods-item .full-hide-tip {
1160
+ width: 100%;
1161
+ }
1162
+ }
1163
+
1164
+ @media screen and (min-height: 768px) and (orientation: landscape) {
1165
+ .goods-item {
1166
+ display: flex;
1167
+ min-height: 11.71875vmin;
1168
+ background: #ffffff;
1169
+ border-radius: 1.04167vmin;
1170
+ flex-direction: column;
1171
+ padding: 1.04167vmin;
1172
+ margin: 1.04167vmin 1.04167vmin 0vmin 1.04167vmin;
1173
+ }
1174
+ .goods-item .main-card {
1175
+ display: flex;
1176
+ flex-direction: row;
1177
+ }
1178
+ .goods-item .main-card .left {
1179
+ position: relative;
1180
+ width: 14.58333vmin;
1181
+ height: 14.58333vmin;
1182
+ }
1183
+ .goods-item .main-card .left image {
1184
+ width: 14.58333vmin;
1185
+ height: 14.58333vmin;
1186
+ }
1187
+ .goods-item .main-card .left .index {
1188
+ border-radius: 1.04167vmin 0 1.04167vmin 0;
1189
+ position: absolute;
1190
+ top: 0;
1191
+ left: 0;
1192
+ display: inline-flex;
1193
+ align-items: center;
1194
+ justify-content: center;
1195
+ min-width: 2.34375vmin;
1196
+ height: 1.82292vmin;
1197
+ padding: 0.0651vmin 0.39062vmin;
1198
+ font-size: 1.30208vmin;
1199
+ background: rgba(0, 0, 0, 0.6);
1200
+ color: #FFFFFF;
1201
+ }
1202
+ .goods-item .main-card .left .ios-index {
1203
+ background: rgba(0, 0, 0, 0.25);
1204
+ backdrop-filter: blur(1.5625vmin);
1205
+ }
1206
+ .goods-item .main-card .left .goods-type {
1207
+ position: absolute;
1208
+ right: 0.52083vmin;
1209
+ bottom: 0.52083vmin;
1210
+ padding: 0.52083vmin 0.65104vmin;
1211
+ background: rgba(0, 0, 0, 0.4);
1212
+ border-radius: 0.52083vmin;
1213
+ color: #fff;
1214
+ font-size: 1.30208vmin;
1215
+ width: fit-content;
1216
+ display: flex;
1217
+ justify-content: center;
1218
+ align-items: center;
1219
+ height: 1.30208vmin;
1220
+ font-weight: 500;
1221
+ }
1222
+ .goods-item .main-card .left .goods-explaining {
1223
+ position: absolute;
1224
+ width: 15.625vmin;
1225
+ height: 2.34375vmin;
1226
+ bottom: 0vmin;
1227
+ left: 0vmin;
1228
+ }
1229
+ .goods-item .main-card .left .ios-goods-type {
1230
+ background: rgba(0, 0, 0, 0.25) !important;
1231
+ backdrop-filter: blur(1.5625vmin);
1232
+ }
1233
+ .goods-item .main-card .left .is-over {
1234
+ border-radius: 0.69466vmin 0.69466vmin 0 0;
1235
+ position: absolute;
1236
+ top: 0;
1237
+ left: 0;
1238
+ width: 17.1875vmin;
1239
+ height: 100%;
1240
+ background: rgba(0, 0, 0, 0.4);
1241
+ display: flex;
1242
+ justify-content: center;
1243
+ align-items: center;
1244
+ color: #ffffff;
1245
+ font-size: 1.5625vmin;
1246
+ }
1247
+ .goods-item .main-card .right {
1248
+ flex: 1;
1249
+ display: flex;
1250
+ flex-direction: column;
1251
+ margin-left: 1.04167vmin;
1252
+ height: 14.58333vmin;
1253
+ width: calc(100% - vmin(256));
1254
+ position: relative;
1255
+ }
1256
+ .goods-item .main-card .right .line-one {
1257
+ display: flex;
1258
+ align-items: center;
1259
+ height: 2.34375vmin;
1260
+ }
1261
+ .goods-item .main-card .right .line-one .super-activity-type {
1262
+ background: linear-gradient(180.25deg, #333333 0%, #525252 68%, #333333 100%);
1263
+ color: #ff781f;
1264
+ padding: 0.26042vmin 0.52083vmin;
1265
+ font-size: 1.30208vmin;
1266
+ height: 2.08333vmin;
1267
+ width: max-content;
1268
+ line-height: 2.34375vmin;
1269
+ flex-shrink: 0;
1270
+ margin-right: 0.52083vmin;
1271
+ border-radius: 0.26042vmin;
1272
+ display: flex;
1273
+ font-weight: 500;
1274
+ align-items: center;
1275
+ }
1276
+ .goods-item .main-card .right .line-one .super-activity-type .super-activity-txt {
1277
+ background: linear-gradient(to right, #FFE4AD, #FFC266);
1278
+ -webkit-background-clip: text;
1279
+ color: transparent;
1280
+ }
1281
+ .goods-item .main-card .right .line-one .goods-title {
1282
+ font-size: 1.82292vmin;
1283
+ color: #333333;
1284
+ word-break: break-all;
1285
+ display: inline-block;
1286
+ overflow: hidden;
1287
+ text-overflow: ellipsis;
1288
+ white-space: nowrap;
1289
+ display: inline-block;
1290
+ vertical-align: middle;
1291
+ line-height: 2.60417vmin;
1292
+ font-weight: 500;
1293
+ width: 29.03646vmin;
1294
+ }
1295
+ .goods-item .main-card .right .line-one .manage-title {
1296
+ width: 24.34896vmin;
1297
+ }
1298
+ .goods-item .main-card .right .desc {
1299
+ color: #FF2E57;
1300
+ font-size: 1.5625vmin;
1301
+ line-height: 1.5625vmin;
1302
+ margin-top: 0.52083vmin;
1303
+ }
1304
+ .goods-item .main-card .right .order {
1305
+ margin-top: 0.52083vmin;
1306
+ display: flex;
1307
+ align-items: center;
1308
+ justify-content: space-between;
1309
+ font-size: 1.30208vmin;
1310
+ }
1311
+ .goods-item .main-card .right .order .order-left .preferential-price {
1312
+ color: #FF2E57;
1313
+ background: #FFEBEF;
1314
+ padding: 0.26042vmin 0.52083vmin;
1315
+ border-radius: 0.26042vmin;
1316
+ }
1317
+ .goods-item .main-card .right .order .order-stock {
1318
+ color: #999999;
1319
+ }
1320
+ .goods-item .main-card .right .progress {
1321
+ width: 20.83333vmin;
1322
+ height: 2.08333vmin;
1323
+ border-radius: 1.04167vmin;
1324
+ background: #ebebeb;
1325
+ position: relative;
1326
+ display: flex;
1327
+ justify-content: space-between;
1328
+ padding: 0.26042vmin 1.22526vmin 0.26042vmin 1.04167vmin;
1329
+ box-sizing: border-box;
1330
+ margin-top: 0.52083vmin;
1331
+ align-items: center;
1332
+ }
1333
+ .goods-item .main-card .right .progress .schedule {
1334
+ height: 2.08333vmin;
1335
+ border-radius: 1.04167vmin;
1336
+ background: linear-gradient(90deg, #ff833e 0%, #ff2e57 100%);
1337
+ position: absolute;
1338
+ left: 0;
1339
+ top: 0;
1340
+ }
1341
+ .goods-item .main-card .right .progress .residue-num {
1342
+ font-size: 1.30208vmin;
1343
+ color: #ffffff;
1344
+ z-index: 2;
1345
+ }
1346
+ .goods-item .main-card .right .progress .residue-time {
1347
+ color: #999999;
1348
+ font-size: 1.30208vmin;
1349
+ z-index: 2;
1350
+ }
1351
+ .goods-item .main-card .right .sec-kill {
1352
+ color: #333333;
1353
+ height: 2.08333vmin;
1354
+ border-radius: 1.04167vmin;
1355
+ background: linear-gradient(90deg, #ffebef 0%, #ffebef00 100%);
1356
+ font-size: 1.30208vmin;
1357
+ margin-top: 0.52083vmin;
1358
+ display: flex;
1359
+ align-items: center;
1360
+ padding: 0 1.04167vmin;
1361
+ }
1362
+ .goods-item .main-card .right .sec-kill .time {
1363
+ margin: 0 0.91146vmin;
1364
+ color: #ff2e57;
1365
+ }
1366
+ .goods-item .main-card .right .line-three {
1367
+ display: flex;
1368
+ justify-content: space-between;
1369
+ align-items: flex-end;
1370
+ position: absolute;
1371
+ bottom: 0;
1372
+ width: 100%;
1373
+ }
1374
+ .goods-item .main-card .right .line-three .price {
1375
+ position: relative;
1376
+ min-height: 2.60417vmin;
1377
+ font-weight: 500;
1378
+ color: #FF2E57;
1379
+ }
1380
+ .goods-item .main-card .right .line-three .price .activity-type {
1381
+ font-size: 1.30208vmin;
1382
+ height: 2.08333vmin;
1383
+ line-height: 2.34375vmin;
1384
+ flex-shrink: 0;
1385
+ margin-right: 0.26042vmin;
1386
+ border-radius: 0.26042vmin;
1387
+ font-weight: 500;
1388
+ }
1389
+ .goods-item .main-card .right .line-three .price .price-flow {
1390
+ font-size: 1.5625vmin;
1391
+ }
1392
+ .goods-item .main-card .right .line-three .price .price-show {
1393
+ font-size: 2.08333vmin;
1394
+ }
1395
+ .goods-item .main-card .right .line-three .price .price-line {
1396
+ font-size: 1.30208vmin;
1397
+ text-decoration: line-through;
1398
+ color: #999999;
1399
+ margin-left: 0.52083vmin;
1400
+ }
1401
+ .goods-item .main-card .right .line-three .buy-btn {
1402
+ font-size: 1.5625vmin;
1403
+ border-radius: 0.52083vmin;
1404
+ width: 8.33333vmin;
1405
+ height: 3.125vmin;
1406
+ display: flex;
1407
+ justify-content: center;
1408
+ align-items: center;
1409
+ color: white;
1410
+ line-height: 3.125vmin;
1411
+ font-weight: 500;
1412
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1413
+ }
1414
+ .goods-item .main-card .right .line-three .buy-btn-teacher {
1415
+ font-size: 1.5625vmin;
1416
+ border-radius: 0.52083vmin;
1417
+ width: 8.33333vmin;
1418
+ height: 3.125vmin;
1419
+ display: flex;
1420
+ justify-content: center;
1421
+ align-items: center;
1422
+ color: white;
1423
+ line-height: 3.125vmin;
1424
+ font-weight: 500;
1425
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1426
+ }
1427
+ .goods-item .main-card .right .line-three .buy-btn-teacher .load {
1428
+ width: 1.5625vmin;
1429
+ height: 1.5625vmin;
1430
+ animation: turn 1s linear infinite;
1431
+ margin-right: 0.52083vmin;
1432
+ }
1433
+ .goods-item .main-card .right .line-three .no-stock-btn {
1434
+ font-size: 1.5625vmin;
1435
+ border-radius: 0.52083vmin;
1436
+ width: 8.33333vmin;
1437
+ height: 3.125vmin;
1438
+ display: flex;
1439
+ justify-content: center;
1440
+ align-items: center;
1441
+ color: white;
1442
+ line-height: 3.125vmin;
1443
+ font-weight: 500;
1444
+ opacity: 40%;
1445
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1446
+ }
1447
+ .goods-item .main-card .right .line-three .see-btn {
1448
+ font-size: 1.5625vmin;
1449
+ border-radius: 0.52083vmin;
1450
+ width: 8.33333vmin;
1451
+ height: 3.125vmin;
1452
+ display: flex;
1453
+ justify-content: center;
1454
+ align-items: center;
1455
+ color: white;
1456
+ line-height: 3.125vmin;
1457
+ font-weight: 500;
1458
+ margin-left: inherit;
1459
+ margin-right: inherit;
1460
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1461
+ }
1462
+ .goods-item .main-card .right .line-three .buy-btn-preferential {
1463
+ font-size: 1.5625vmin;
1464
+ border-radius: 0.52083vmin;
1465
+ padding: 0 0.65104vmin;
1466
+ min-width: 10.41667vmin;
1467
+ height: 4.42708vmin;
1468
+ display: flex;
1469
+ justify-content: center;
1470
+ align-items: center;
1471
+ color: white;
1472
+ flex-flow: column;
1473
+ line-height: 2.08333vmin;
1474
+ background: linear-gradient(270deg, #ff2e57 0%, #ff4d82 100%);
1475
+ }
1476
+ .goods-item .main-card .right .line-three .buy-btn-preferential .go-buy {
1477
+ font-size: 1.5625vmin;
1478
+ font-weight: 500;
1479
+ }
1480
+ .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-flow {
1481
+ color: white;
1482
+ font-size: 1.30208vmin;
1483
+ }
1484
+ .goods-item .main-card .right .line-three .buy-btn-preferential .preferential-show {
1485
+ font-size: 1.82292vmin;
1486
+ color: white;
1487
+ }
1488
+ .goods-item .main-card .manage-right {
1489
+ width: 24.34896vmin;
1490
+ }
1491
+ .goods-item .main-card .teacher-switch {
1492
+ height: 2.08333vmin;
1493
+ background: #fff;
1494
+ display: flex;
1495
+ margin-top: 1.04167vmin;
1496
+ }
1497
+ .goods-item .main-card .teacher-switch .switch-txt {
1498
+ opacity: 1;
1499
+ color: #333333;
1500
+ font-size: 1.5625vmin;
1501
+ font-weight: 400;
1502
+ font-family: "PingFang SC";
1503
+ margin-left: 1.04167vmin;
1504
+ }
1505
+ .goods-item .hide-tip {
1506
+ width: 15.625vmin;
1507
+ height: 3.125vmin;
1508
+ border-radius: 1.5625vmin;
1509
+ background: #f5f5f5;
1510
+ font-size: 1.30208vmin;
1511
+ color: #666666;
1512
+ font-weight: 500;
1513
+ display: flex;
1514
+ justify-content: center;
1515
+ align-items: center;
1516
+ margin-top: 0.52083vmin;
1517
+ }
1518
+ .goods-item .full-hide-tip {
1519
+ width: 100%;
305
1520
  }
306
1521
  }