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