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,19 +1,23 @@
1
+ .styleType1_wrapper.pop-card {
2
+ width: 64.53333vmin;
3
+ margin-bottom: 0;
4
+ }
1
5
  .styleType1_wrapper.vertical-screen {
2
- width: 63.47vmin;
6
+ width: 63.46667vmin;
3
7
  margin: 0 auto;
4
8
  }
5
9
  .styleType1_wrapper.vertical-screen.not-pop-card {
6
- margin-bottom: 4.27vmin;
10
+ margin-bottom: 4.26667vmin;
7
11
  }
8
12
  .styleType1_wrapper.vertical-screen .coupon_style1 {
9
- height: 24.53vmin;
13
+ height: 24.53333vmin;
10
14
  }
11
15
  .styleType1_wrapper.full-screen-list {
12
- width: 92.47vmin;
13
- margin: 3.2vmin 4.27vmin 0 4.27vmin;
16
+ width: 92.53333vmin;
17
+ margin: 3.2vmin 4.26667vmin 0 4.26667vmin;
14
18
  }
15
19
  .styleType1_wrapper.full-screen-list .coupon_style1 {
16
- height: 27vmin;
20
+ height: 26.93333vmin;
17
21
  }
18
22
  .styleType1_wrapper .coupon_style1 {
19
23
  display: flex;
@@ -21,7 +25,7 @@
21
25
  width: 100%;
22
26
  }
23
27
  .styleType1_wrapper .coupon_style1 .couponValue {
24
- padding: 2.13vmin;
28
+ padding: 2.13333vmin;
25
29
  min-width: 24.8vmin;
26
30
  height: 100%;
27
31
  background: #ff781f;
@@ -31,7 +35,7 @@
31
35
  justify-content: space-around;
32
36
  align-items: center;
33
37
  box-sizing: border-box;
34
- border-radius: 2.13vmin 0 0 2.13vmin;
38
+ border-radius: 2.13333vmin 0 0 2.13333vmin;
35
39
  }
36
40
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
37
41
  position: relative;
@@ -41,15 +45,15 @@
41
45
  font-weight: 700;
42
46
  }
43
47
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol {
44
- margin-right: 0.53vmin;
45
- font-size: 4.27vmin;
48
+ margin-right: 0.53333vmin;
49
+ font-size: 4.26667vmin;
46
50
  }
47
51
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price {
48
52
  display: flex;
49
- font-size: 10.67vmin;
53
+ font-size: 10.66667vmin;
50
54
  }
51
55
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
52
- font-size: 4.27vmin;
56
+ font-size: 4.26667vmin;
53
57
  font-weight: 500;
54
58
  }
55
59
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
@@ -58,38 +62,38 @@
58
62
  font-weight: 500;
59
63
  font-family: "PingFang SC";
60
64
  text-align: center;
61
- line-height: 4.27vmin;
65
+ line-height: 4.26667vmin;
62
66
  }
63
67
  .styleType1_wrapper .coupon_style1 .couponInfo {
64
68
  display: flex;
65
69
  flex-direction: column;
66
70
  justify-content: flex-start;
67
- width: 68.07vmin;
71
+ width: 68vmin;
68
72
  height: 100%;
69
73
  box-sizing: border-box;
70
74
  background: white;
71
- padding: 2.13vmin 0 2.13vmin 2.13vmin;
75
+ padding: 2.13333vmin 0 2.13333vmin 2.13333vmin;
72
76
  color: #999999;
73
- font-size: 2.67vmin;
77
+ font-size: 2.66667vmin;
74
78
  line-height: 3.2vmin;
75
79
  font-weight: 400;
76
80
  text-align: left;
77
- border-radius: 0 2.13vmin 2.13vmin 0;
81
+ border-radius: 0 2.13333vmin 2.13333vmin 0;
78
82
  }
79
83
  .styleType1_wrapper .coupon_style1 .couponInfo .couponName {
80
84
  color: #333333;
81
85
  font-size: 3.2vmin;
82
- line-height: 4.27vmin;
83
- height: 4.27vmin;
86
+ line-height: 4.26667vmin;
87
+ height: 4.26667vmin;
84
88
  width: 32.8vmin;
85
89
  font-weight: 700;
86
- margin-bottom: 1.07vmin;
90
+ margin-bottom: 1.06667vmin;
87
91
  overflow: hidden;
88
92
  white-space: nowrap;
89
93
  text-overflow: ellipsis;
90
94
  }
91
95
  .styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint {
92
- margin-bottom: 0.53vmin;
96
+ margin-bottom: 0.53333vmin;
93
97
  }
94
98
  .styleType1_wrapper .coupon_style1 .couponInfo .couponUseTime {
95
99
  margin-bottom: 4.8vmin;
@@ -107,19 +111,19 @@
107
111
  }
108
112
  .styleType1_wrapper .coupon_style1 .couponState {
109
113
  position: absolute;
110
- right: 2.13vmin;
111
- bottom: 2.13vmin;
114
+ right: 2.13333vmin;
115
+ bottom: 2.13333vmin;
112
116
  height: 6.4vmin;
113
117
  line-height: 6.4vmin;
114
- border-radius: 3.73vmin;
118
+ border-radius: 3.73333vmin;
115
119
  border: 0;
116
120
  background: #ff781f;
117
121
  }
118
122
  .styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn {
119
- width: 18.13vmin;
123
+ width: 18.13333vmin;
120
124
  }
121
125
  .styleType1_wrapper .coupon_style1 .couponState.vertical-btn {
122
- width: 14.93vmin;
126
+ width: 14.93333vmin;
123
127
  }
124
128
  .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
125
129
  color: white;
@@ -132,7 +136,7 @@
132
136
  position: absolute;
133
137
  top: 0vmin;
134
138
  right: 0vmin;
135
- width: 13.07vmin;
139
+ width: 13.06667vmin;
136
140
  height: 15.2vmin;
137
141
  }
138
142
  .styleType1_wrapper .detailInfo {
@@ -140,44 +144,28 @@
140
144
  display: flex;
141
145
  background-color: #fff6f0;
142
146
  box-sizing: border-box;
143
- border-radius: 0 0 0.53vmin 0.53vmin;
144
- padding: 2.13vmin;
147
+ border-radius: 0 0 0.53333vmin 0.53333vmin;
148
+ padding: 2.13333vmin;
145
149
  padding-top: 5vmin;
146
150
  color: #666666;
147
- font-size: 2.67vmin;
151
+ font-size: 2.66667vmin;
148
152
  margin-top: -2vmin;
149
153
  text-align: left;
150
154
  }
151
155
  .styleType1_wrapper .detailInfo .disabledHint {
152
- width: 3.73vmin;
153
- margin-right: 1.33vmin;
156
+ width: 3.73333vmin;
157
+ margin-right: 1.33333vmin;
154
158
  }
155
159
  .styleType1_wrapper .detailInfo .instructions {
156
160
  word-break: break-all;
157
161
  }
158
162
  .styleType1_wrapper .detailInfo .instructions .remark {
159
163
  color: #333333;
160
- margin-bottom: 1.07vmin;
161
- }
162
- .disabledState {
163
- background-color: #eeeeee !important;
164
- }
165
- .disabledState .couponValue {
166
- background: #cdcdcd !important;
167
- }
168
- .whiteBg {
169
- background-color: #fff !important;
170
- }
171
- .disabledHint {
172
- width: 3.73vmin;
173
- margin-right: 1.33vmin;
174
- }
175
- .unselectState {
176
- background: #cdcdcd !important;
164
+ margin-bottom: 1.06667vmin;
177
165
  }
178
166
  .styleType2_wrapper {
179
167
  margin-bottom: 3.2vmin;
180
- margin-right: 2.13vmin;
168
+ margin-right: 2.13333vmin;
181
169
  }
182
170
  .styleType2_wrapper .coupon_style2 {
183
171
  display: flex;
@@ -186,7 +174,7 @@
186
174
  position: relative;
187
175
  overflow: hidden;
188
176
  width: 44.8vmin;
189
- height: 21.33vmin;
177
+ height: 21.33333vmin;
190
178
  flex-shrink: 0;
191
179
  }
192
180
  .styleType2_wrapper .coupon_style2 .coupons-styles2-bg {
@@ -201,15 +189,15 @@
201
189
  display: inline-flex;
202
190
  flex-direction: column;
203
191
  box-sizing: border-box;
204
- padding-left: 2.13vmin;
205
- width: 36.27vmin;
192
+ padding-left: 2.13333vmin;
193
+ width: 36.26667vmin;
206
194
  height: 100%;
207
195
  font-family: "PingFang SC";
208
- font-size: 2.67vmin;
196
+ font-size: 2.66667vmin;
209
197
  line-height: 3.2vmin;
210
198
  }
211
199
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop {
212
- padding-top: 2.13vmin;
200
+ padding-top: 2.13333vmin;
213
201
  display: flex;
214
202
  flex-direction: row;
215
203
  align-items: flex-end;
@@ -225,7 +213,7 @@
225
213
  line-height: 6.4vmin;
226
214
  }
227
215
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol {
228
- margin-right: 0.53vmin;
216
+ margin-right: 0.53333vmin;
229
217
  font-size: 3.2vmin;
230
218
  }
231
219
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price {
@@ -235,7 +223,7 @@
235
223
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont {
236
224
  font-size: 3.2vmin;
237
225
  font-weight: 500;
238
- margin-left: 0.53vmin;
226
+ margin-left: 0.53333vmin;
239
227
  }
240
228
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom {
241
229
  font-weight: 400;
@@ -244,17 +232,17 @@
244
232
  margin-top: 0.8vmin;
245
233
  }
246
234
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit {
247
- margin-bottom: 0.53vmin;
235
+ margin-bottom: 0.53333vmin;
248
236
  }
249
237
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition {
250
- font-size: 2.67vmin;
238
+ font-size: 2.66667vmin;
251
239
  font-weight: 400;
252
240
  }
253
241
  .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint {
254
- margin-bottom: 0.53vmin;
242
+ margin-bottom: 0.53333vmin;
255
243
  }
256
244
  .styleType2_wrapper .coupon_style2 .couponStatewrapper {
257
- width: 8.27vmin;
245
+ width: 8.26667vmin;
258
246
  height: 100%;
259
247
  /* -webkit-align-self: center; */
260
248
  -ms-flex-item-align: center;
@@ -267,7 +255,7 @@
267
255
  }
268
256
  .styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn {
269
257
  writing-mode: vertical-lr;
270
- letter-spacing: 1.33vmin;
258
+ letter-spacing: 1.33333vmin;
271
259
  font-size: 3.2vmin;
272
260
  font-weight: 700;
273
261
  font-family: "PingFang SC";
@@ -277,24 +265,20 @@
277
265
  display: block;
278
266
  width: 100%;
279
267
  height: 15.2vmin;
280
- border-left: 0.27vmin dashed #ff781f;
268
+ border-left: 0.26667vmin dashed #ff781f;
281
269
  -webkit-transform: scale(1.3);
282
270
  transform: scale(0.7, 1.1);
283
271
  position: absolute;
284
- left: -1.33vmin;
272
+ left: -vmin(10);
285
273
  top: 3.07vmin;
286
274
  }
287
275
  .styleType2_wrapper .coupon_style2 .hasReceivedStatus {
288
276
  position: absolute;
289
277
  top: 0vmin;
290
278
  right: 0vmin;
291
- width: 13.07vmin;
279
+ width: 13.06667vmin;
292
280
  height: 15.2vmin;
293
281
  }
294
- .pop-card {
295
- width: 64.47vmin;
296
- margin-bottom: 0;
297
- }
298
282
  .styleType1_wrapper-v.vertical-screen {
299
283
  width: 35.2vmin;
300
284
  height: 48.53333vmin;
@@ -307,11 +291,11 @@
307
291
  height: 22.93333vmin;
308
292
  }
309
293
  .styleType1_wrapper-v.full-screen-list {
310
- width: 92.47vmin;
311
- margin: 3.2vmin 4.27vmin 0 4.27vmin;
294
+ width: 92.53333vmin;
295
+ margin: 3.2vmin 4.26667vmin 0 4.26667vmin;
312
296
  }
313
297
  .styleType1_wrapper-v.full-screen-list .coupon_style1 {
314
- height: 27vmin;
298
+ height: 26.93333vmin;
315
299
  }
316
300
  .styleType1_wrapper-v .coupon_style1 {
317
301
  display: block;
@@ -425,6 +409,287 @@
425
409
  font-family: "PingFang SC";
426
410
  }
427
411
  @media screen and (min-width: 768px) and (orientation: portrait) {
412
+ .styleType1_wrapper.pop-card {
413
+ width: 31.51042vmin;
414
+ margin-bottom: 0;
415
+ }
416
+ .styleType1_wrapper.vertical-screen {
417
+ width: 30.98958vmin;
418
+ margin: 0 auto;
419
+ }
420
+ .styleType1_wrapper.vertical-screen.not-pop-card {
421
+ margin-bottom: 2.08333vmin;
422
+ }
423
+ .styleType1_wrapper.vertical-screen .coupon_style1 {
424
+ height: 11.97917vmin;
425
+ }
426
+ .styleType1_wrapper.full-screen-list {
427
+ width: 45.18229vmin;
428
+ margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
429
+ }
430
+ .styleType1_wrapper.full-screen-list .coupon_style1 {
431
+ height: 13.15104vmin;
432
+ }
433
+ .styleType1_wrapper .coupon_style1 {
434
+ display: flex;
435
+ position: relative;
436
+ width: 100%;
437
+ }
438
+ .styleType1_wrapper .coupon_style1 .couponValue {
439
+ padding: 1.04167vmin;
440
+ min-width: 12.10938vmin;
441
+ height: 100%;
442
+ background: #ff781f;
443
+ color: #fff;
444
+ display: flex;
445
+ flex-direction: column;
446
+ justify-content: space-around;
447
+ align-items: center;
448
+ box-sizing: border-box;
449
+ border-radius: 1.04167vmin 0 0 1.04167vmin;
450
+ }
451
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
452
+ position: relative;
453
+ display: flex;
454
+ flex-direction: row;
455
+ align-items: baseline;
456
+ font-weight: 700;
457
+ }
458
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol {
459
+ margin-right: 0.26042vmin;
460
+ font-size: 2.08333vmin;
461
+ }
462
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price {
463
+ display: flex;
464
+ font-size: 5.20833vmin;
465
+ }
466
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
467
+ font-size: 2.08333vmin;
468
+ font-weight: 500;
469
+ }
470
+ .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
471
+ color: white;
472
+ font-size: 1.5625vmin;
473
+ font-weight: 500;
474
+ font-family: "PingFang SC";
475
+ text-align: center;
476
+ line-height: 2.08333vmin;
477
+ }
478
+ .styleType1_wrapper .coupon_style1 .couponInfo {
479
+ display: flex;
480
+ flex-direction: column;
481
+ justify-content: flex-start;
482
+ width: 33.20312vmin;
483
+ height: 100%;
484
+ box-sizing: border-box;
485
+ background: white;
486
+ padding: 1.04167vmin 0 1.04167vmin 1.04167vmin;
487
+ color: #999999;
488
+ font-size: 1.30208vmin;
489
+ line-height: 1.5625vmin;
490
+ font-weight: 400;
491
+ text-align: left;
492
+ border-radius: 0 1.04167vmin 1.04167vmin 0;
493
+ }
494
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponName {
495
+ color: #333333;
496
+ font-size: 1.5625vmin;
497
+ line-height: 2.08333vmin;
498
+ height: 2.08333vmin;
499
+ width: 16.01562vmin;
500
+ font-weight: 700;
501
+ margin-bottom: 0.52083vmin;
502
+ overflow: hidden;
503
+ white-space: nowrap;
504
+ text-overflow: ellipsis;
505
+ }
506
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint {
507
+ margin-bottom: 0.26042vmin;
508
+ }
509
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponUseTime {
510
+ margin-bottom: 4.8vmin;
511
+ }
512
+ .styleType1_wrapper .coupon_style1 .couponInfo .moreInfo {
513
+ display: flex;
514
+ cursor: pointer;
515
+ align-items: center;
516
+ }
517
+ .styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn {
518
+ width: 1.5625vmin;
519
+ height: 1.5625vmin;
520
+ margin-left: 0.39062vmin;
521
+ background-size: 100% 100%;
522
+ }
523
+ .styleType1_wrapper .coupon_style1 .couponState {
524
+ position: absolute;
525
+ right: 1.04167vmin;
526
+ bottom: 1.04167vmin;
527
+ height: 3.125vmin;
528
+ line-height: 3.125vmin;
529
+ border-radius: 1.82292vmin;
530
+ border: 0;
531
+ background: #ff781f;
532
+ }
533
+ .styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn {
534
+ width: 8.85417vmin;
535
+ }
536
+ .styleType1_wrapper .coupon_style1 .couponState.vertical-btn {
537
+ width: 7.29167vmin;
538
+ }
539
+ .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
540
+ color: white;
541
+ font-size: 1.5625vmin;
542
+ font-weight: 700;
543
+ text-align: center;
544
+ font-family: "PingFang SC";
545
+ }
546
+ .styleType1_wrapper .coupon_style1 .hasReceivedStatus {
547
+ position: absolute;
548
+ top: 0vmin;
549
+ right: 0vmin;
550
+ width: 6.38021vmin;
551
+ height: 7.42188vmin;
552
+ }
553
+ .styleType1_wrapper .detailInfo {
554
+ width: 100%;
555
+ display: flex;
556
+ background-color: #fff6f0;
557
+ box-sizing: border-box;
558
+ border-radius: 0 0 0.26042vmin 0.26042vmin;
559
+ padding: 1.04167vmin;
560
+ padding-top: 2.44141vmin;
561
+ color: #666666;
562
+ font-size: 1.30208vmin;
563
+ margin-top: -2vmin;
564
+ text-align: left;
565
+ }
566
+ .styleType1_wrapper .detailInfo .disabledHint {
567
+ width: 1.82292vmin;
568
+ margin-right: 0.65104vmin;
569
+ }
570
+ .styleType1_wrapper .detailInfo .instructions {
571
+ word-break: break-all;
572
+ }
573
+ .styleType1_wrapper .detailInfo .instructions .remark {
574
+ color: #333333;
575
+ margin-bottom: 0.52083vmin;
576
+ }
577
+ .styleType2_wrapper {
578
+ margin-bottom: 1.5625vmin;
579
+ margin-right: 1.04167vmin;
580
+ }
581
+ .styleType2_wrapper .coupon_style2 {
582
+ display: flex;
583
+ flex-direction: row;
584
+ color: #ff781f;
585
+ position: relative;
586
+ overflow: hidden;
587
+ width: 21.875vmin;
588
+ height: 10.41667vmin;
589
+ flex-shrink: 0;
590
+ }
591
+ .styleType2_wrapper .coupon_style2 .coupons-styles2-bg {
592
+ position: absolute;
593
+ top: 0;
594
+ left: 0;
595
+ right: 0;
596
+ width: 100%;
597
+ height: 100%;
598
+ }
599
+ .styleType2_wrapper .coupon_style2 .couponInfo {
600
+ display: inline-flex;
601
+ flex-direction: column;
602
+ box-sizing: border-box;
603
+ padding-left: 1.04167vmin;
604
+ width: 17.70833vmin;
605
+ height: 100%;
606
+ font-family: "PingFang SC";
607
+ font-size: 1.30208vmin;
608
+ line-height: 1.5625vmin;
609
+ }
610
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop {
611
+ padding-top: 1.04167vmin;
612
+ display: flex;
613
+ flex-direction: row;
614
+ align-items: flex-end;
615
+ height: 3.125vmin;
616
+ }
617
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap {
618
+ position: relative;
619
+ display: flex;
620
+ flex-direction: row;
621
+ align-items: baseline;
622
+ font-weight: 700;
623
+ height: 3.125vmin;
624
+ line-height: 3.125vmin;
625
+ }
626
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol {
627
+ margin-right: 0.26042vmin;
628
+ font-size: 1.5625vmin;
629
+ }
630
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price {
631
+ display: flex;
632
+ font-size: 4.58984vmin;
633
+ }
634
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont {
635
+ font-size: 1.5625vmin;
636
+ font-weight: 500;
637
+ margin-left: 0.26042vmin;
638
+ }
639
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom {
640
+ font-weight: 400;
641
+ line-height: 1.5625vmin;
642
+ position: relative;
643
+ margin-top: 0.39062vmin;
644
+ }
645
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit {
646
+ margin-bottom: 0.26042vmin;
647
+ }
648
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition {
649
+ font-size: 1.30208vmin;
650
+ font-weight: 400;
651
+ }
652
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint {
653
+ margin-bottom: 0.26042vmin;
654
+ }
655
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper {
656
+ width: 4.03646vmin;
657
+ height: 100%;
658
+ /* -webkit-align-self: center; */
659
+ -ms-flex-item-align: center;
660
+ align-self: center;
661
+ position: relative;
662
+ display: inline-flex;
663
+ justify-content: center;
664
+ align-items: center;
665
+ text-align: center;
666
+ }
667
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn {
668
+ writing-mode: vertical-lr;
669
+ letter-spacing: 0.65104vmin;
670
+ font-size: 1.5625vmin;
671
+ font-weight: 700;
672
+ font-family: "PingFang SC";
673
+ }
674
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper:before {
675
+ content: " ";
676
+ display: block;
677
+ width: 100%;
678
+ height: 7.42188vmin;
679
+ border-left: 0.13021vmin dashed #ff781f;
680
+ -webkit-transform: scale(1.3);
681
+ transform: scale(0.7, 1.1);
682
+ position: absolute;
683
+ left: -vmin(10);
684
+ top: 3.07vmin;
685
+ }
686
+ .styleType2_wrapper .coupon_style2 .hasReceivedStatus {
687
+ position: absolute;
688
+ top: 0vmin;
689
+ right: 0vmin;
690
+ width: 6.38021vmin;
691
+ height: 7.42188vmin;
692
+ }
428
693
  .styleType1_wrapper-v.vertical-screen {
429
694
  width: 17.1875vmin;
430
695
  height: 23.69792vmin;
@@ -437,11 +702,11 @@
437
702
  height: 11.19792vmin;
438
703
  }
439
704
  .styleType1_wrapper-v.full-screen-list {
440
- width: 92.47vmin;
441
- margin: 3.2vmin 4.27vmin 0 4.27vmin;
705
+ width: 45.18229vmin;
706
+ margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
442
707
  }
443
708
  .styleType1_wrapper-v.full-screen-list .coupon_style1 {
444
- height: 27vmin;
709
+ height: 13.15104vmin;
445
710
  }
446
711
  .styleType1_wrapper-v .coupon_style1 {
447
712
  display: block;
@@ -555,7 +820,700 @@
555
820
  font-family: "PingFang SC";
556
821
  }
557
822
  }
558
- @media screen and (min-height: 768px) and (orientation: landscape) {
823
+ @media screen and (min-height: 630px) and (orientation: landscape) {
824
+ .styleType1_wrapper.pop-card {
825
+ width: 38.4127vmin;
826
+ margin-bottom: 0;
827
+ }
828
+ .styleType1_wrapper.vertical-screen {
829
+ width: 37.77778vmin;
830
+ margin: 0 auto;
831
+ }
832
+ .styleType1_wrapper.vertical-screen.not-pop-card {
833
+ margin-bottom: 2.53968vmin;
834
+ }
835
+ .styleType1_wrapper.vertical-screen .coupon_style1 {
836
+ height: 14.60317vmin;
837
+ }
838
+ .styleType1_wrapper.full-screen-list {
839
+ width: 55.07937vmin;
840
+ margin: 1.90476vmin 2.53968vmin 0 2.53968vmin;
841
+ }
842
+ .styleType1_wrapper.full-screen-list .coupon_style1 {
843
+ height: 16.03175vmin;
844
+ }
845
+ .styleType1_wrapper .coupon_style1 {
846
+ display: flex;
847
+ position: relative;
848
+ width: 100%;
849
+ }
850
+ .styleType1_wrapper .coupon_style1 .couponValue {
851
+ padding: 1.26984vmin;
852
+ min-width: 14.7619vmin;
853
+ height: 100%;
854
+ background: #ff781f;
855
+ color: #fff;
856
+ display: flex;
857
+ flex-direction: column;
858
+ justify-content: space-around;
859
+ align-items: center;
860
+ box-sizing: border-box;
861
+ border-radius: 1.26984vmin 0 0 1.26984vmin;
862
+ }
863
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
864
+ position: relative;
865
+ display: flex;
866
+ flex-direction: row;
867
+ align-items: baseline;
868
+ font-weight: 700;
869
+ }
870
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol {
871
+ margin-right: 0.31746vmin;
872
+ font-size: 2.53968vmin;
873
+ }
874
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price {
875
+ display: flex;
876
+ font-size: 6.34921vmin;
877
+ }
878
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
879
+ font-size: 2.53968vmin;
880
+ font-weight: 500;
881
+ }
882
+ .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
883
+ color: white;
884
+ font-size: 1.90476vmin;
885
+ font-weight: 500;
886
+ font-family: "PingFang SC";
887
+ text-align: center;
888
+ line-height: 2.53968vmin;
889
+ }
890
+ .styleType1_wrapper .coupon_style1 .couponInfo {
891
+ display: flex;
892
+ flex-direction: column;
893
+ justify-content: flex-start;
894
+ width: 40.47619vmin;
895
+ height: 100%;
896
+ box-sizing: border-box;
897
+ background: white;
898
+ padding: 1.26984vmin 0 1.26984vmin 1.26984vmin;
899
+ color: #999999;
900
+ font-size: 1.5873vmin;
901
+ line-height: 1.90476vmin;
902
+ font-weight: 400;
903
+ text-align: left;
904
+ border-radius: 0 1.26984vmin 1.26984vmin 0;
905
+ }
906
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponName {
907
+ color: #333333;
908
+ font-size: 1.90476vmin;
909
+ line-height: 2.53968vmin;
910
+ height: 2.53968vmin;
911
+ width: 19.52381vmin;
912
+ font-weight: 700;
913
+ margin-bottom: 0.63492vmin;
914
+ overflow: hidden;
915
+ white-space: nowrap;
916
+ text-overflow: ellipsis;
917
+ }
918
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint {
919
+ margin-bottom: 0.31746vmin;
920
+ }
921
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponUseTime {
922
+ margin-bottom: 4.8vmin;
923
+ }
924
+ .styleType1_wrapper .coupon_style1 .couponInfo .moreInfo {
925
+ display: flex;
926
+ cursor: pointer;
927
+ align-items: center;
928
+ }
929
+ .styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn {
930
+ width: 1.90476vmin;
931
+ height: 1.90476vmin;
932
+ margin-left: 0.47619vmin;
933
+ background-size: 100% 100%;
934
+ }
935
+ .styleType1_wrapper .coupon_style1 .couponState {
936
+ position: absolute;
937
+ right: 1.26984vmin;
938
+ bottom: 1.26984vmin;
939
+ height: 3.80952vmin;
940
+ line-height: 3.80952vmin;
941
+ border-radius: 2.22222vmin;
942
+ border: 0;
943
+ background: #ff781f;
944
+ }
945
+ .styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn {
946
+ width: 10.79365vmin;
947
+ }
948
+ .styleType1_wrapper .coupon_style1 .couponState.vertical-btn {
949
+ width: 8.88889vmin;
950
+ }
951
+ .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
952
+ color: white;
953
+ font-size: 1.90476vmin;
954
+ font-weight: 700;
955
+ text-align: center;
956
+ font-family: "PingFang SC";
957
+ }
958
+ .styleType1_wrapper .coupon_style1 .hasReceivedStatus {
959
+ position: absolute;
960
+ top: 0vmin;
961
+ right: 0vmin;
962
+ width: 7.77778vmin;
963
+ height: 9.04762vmin;
964
+ }
965
+ .styleType1_wrapper .detailInfo {
966
+ width: 100%;
967
+ display: flex;
968
+ background-color: #fff6f0;
969
+ box-sizing: border-box;
970
+ border-radius: 0 0 0.31746vmin 0.31746vmin;
971
+ padding: 1.26984vmin;
972
+ padding-top: 2.97619vmin;
973
+ color: #666666;
974
+ font-size: 1.5873vmin;
975
+ margin-top: -2vmin;
976
+ text-align: left;
977
+ }
978
+ .styleType1_wrapper .detailInfo .disabledHint {
979
+ width: 2.22222vmin;
980
+ margin-right: 0.79365vmin;
981
+ }
982
+ .styleType1_wrapper .detailInfo .instructions {
983
+ word-break: break-all;
984
+ }
985
+ .styleType1_wrapper .detailInfo .instructions .remark {
986
+ color: #333333;
987
+ margin-bottom: 0.63492vmin;
988
+ }
989
+ .styleType2_wrapper {
990
+ margin-bottom: 1.90476vmin;
991
+ margin-right: 1.26984vmin;
992
+ }
993
+ .styleType2_wrapper .coupon_style2 {
994
+ display: flex;
995
+ flex-direction: row;
996
+ color: #ff781f;
997
+ position: relative;
998
+ overflow: hidden;
999
+ width: 26.66667vmin;
1000
+ height: 12.69841vmin;
1001
+ flex-shrink: 0;
1002
+ }
1003
+ .styleType2_wrapper .coupon_style2 .coupons-styles2-bg {
1004
+ position: absolute;
1005
+ top: 0;
1006
+ left: 0;
1007
+ right: 0;
1008
+ width: 100%;
1009
+ height: 100%;
1010
+ }
1011
+ .styleType2_wrapper .coupon_style2 .couponInfo {
1012
+ display: inline-flex;
1013
+ flex-direction: column;
1014
+ box-sizing: border-box;
1015
+ padding-left: 1.26984vmin;
1016
+ width: 21.5873vmin;
1017
+ height: 100%;
1018
+ font-family: "PingFang SC";
1019
+ font-size: 1.5873vmin;
1020
+ line-height: 1.90476vmin;
1021
+ }
1022
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop {
1023
+ padding-top: 1.26984vmin;
1024
+ display: flex;
1025
+ flex-direction: row;
1026
+ align-items: flex-end;
1027
+ height: 3.80952vmin;
1028
+ }
1029
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap {
1030
+ position: relative;
1031
+ display: flex;
1032
+ flex-direction: row;
1033
+ align-items: baseline;
1034
+ font-weight: 700;
1035
+ height: 3.80952vmin;
1036
+ line-height: 3.80952vmin;
1037
+ }
1038
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol {
1039
+ margin-right: 0.31746vmin;
1040
+ font-size: 1.90476vmin;
1041
+ }
1042
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price {
1043
+ display: flex;
1044
+ font-size: 5.59524vmin;
1045
+ }
1046
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont {
1047
+ font-size: 1.90476vmin;
1048
+ font-weight: 500;
1049
+ margin-left: 0.31746vmin;
1050
+ }
1051
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom {
1052
+ font-weight: 400;
1053
+ line-height: 1.90476vmin;
1054
+ position: relative;
1055
+ margin-top: 0.47619vmin;
1056
+ }
1057
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit {
1058
+ margin-bottom: 0.31746vmin;
1059
+ }
1060
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition {
1061
+ font-size: 1.5873vmin;
1062
+ font-weight: 400;
1063
+ }
1064
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint {
1065
+ margin-bottom: 0.31746vmin;
1066
+ }
1067
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper {
1068
+ width: 4.92063vmin;
1069
+ height: 100%;
1070
+ /* -webkit-align-self: center; */
1071
+ -ms-flex-item-align: center;
1072
+ align-self: center;
1073
+ position: relative;
1074
+ display: inline-flex;
1075
+ justify-content: center;
1076
+ align-items: center;
1077
+ text-align: center;
1078
+ }
1079
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn {
1080
+ writing-mode: vertical-lr;
1081
+ letter-spacing: 0.79365vmin;
1082
+ font-size: 1.90476vmin;
1083
+ font-weight: 700;
1084
+ font-family: "PingFang SC";
1085
+ }
1086
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper:before {
1087
+ content: " ";
1088
+ display: block;
1089
+ width: 100%;
1090
+ height: 9.04762vmin;
1091
+ border-left: 0.15873vmin dashed #ff781f;
1092
+ -webkit-transform: scale(1.3);
1093
+ transform: scale(0.7, 1.1);
1094
+ position: absolute;
1095
+ left: -vmin(10);
1096
+ top: 3.07vmin;
1097
+ }
1098
+ .styleType2_wrapper .coupon_style2 .hasReceivedStatus {
1099
+ position: absolute;
1100
+ top: 0vmin;
1101
+ right: 0vmin;
1102
+ width: 7.77778vmin;
1103
+ height: 9.04762vmin;
1104
+ }
1105
+ .styleType1_wrapper-v.vertical-screen {
1106
+ width: 20.95238vmin;
1107
+ height: 28.88889vmin;
1108
+ margin: 0 auto;
1109
+ }
1110
+ .styleType1_wrapper-v.vertical-screen.not-pop-card {
1111
+ margin-bottom: 0;
1112
+ }
1113
+ .styleType1_wrapper-v.vertical-screen .coupon_style1 {
1114
+ height: 13.65079vmin;
1115
+ }
1116
+ .styleType1_wrapper-v.full-screen-list {
1117
+ width: 55.07937vmin;
1118
+ margin: 1.90476vmin 2.53968vmin 0 2.53968vmin;
1119
+ }
1120
+ .styleType1_wrapper-v.full-screen-list .coupon_style1 {
1121
+ height: 16.03175vmin;
1122
+ }
1123
+ .styleType1_wrapper-v .coupon_style1 {
1124
+ display: block;
1125
+ position: static;
1126
+ width: 100%;
1127
+ }
1128
+ .styleType1_wrapper-v .coupon_style1 .couponValue {
1129
+ padding: 1.98413vmin 0;
1130
+ min-width: unset;
1131
+ height: 13.65079vmin;
1132
+ background: #ff781f;
1133
+ color: #fff;
1134
+ display: flex;
1135
+ flex-direction: column;
1136
+ justify-content: space-around;
1137
+ align-items: center;
1138
+ box-sizing: border-box;
1139
+ border-radius: 1.26984vmin 1.26984vmin 0 0;
1140
+ }
1141
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap {
1142
+ position: relative;
1143
+ display: flex;
1144
+ flex-direction: row;
1145
+ align-items: center;
1146
+ font-weight: 700;
1147
+ }
1148
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol {
1149
+ margin-right: 0.31746vmin;
1150
+ font-size: 2.53968vmin;
1151
+ }
1152
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price {
1153
+ display: flex;
1154
+ align-items: baseline;
1155
+ font-weight: 500;
1156
+ font-size: 5.07937vmin !important;
1157
+ }
1158
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long {
1159
+ font-size: 3.80952vmin !important;
1160
+ }
1161
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont {
1162
+ font-size: 2.53968vmin;
1163
+ font-weight: 500;
1164
+ }
1165
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal {
1166
+ display: flex;
1167
+ align-items: center;
1168
+ }
1169
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v {
1170
+ align-items: baseline;
1171
+ }
1172
+ .styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition {
1173
+ color: white;
1174
+ font-size: 1.90476vmin;
1175
+ font-weight: 500;
1176
+ font-family: "PingFang SC";
1177
+ text-align: center;
1178
+ line-height: 2.53968vmin;
1179
+ }
1180
+ .styleType1_wrapper-v .coupon_style1 .couponInfo {
1181
+ display: flex;
1182
+ flex-direction: column;
1183
+ justify-content: flex-start;
1184
+ width: 100%;
1185
+ height: 15.2381vmin;
1186
+ box-sizing: border-box;
1187
+ background: white;
1188
+ padding: 1.26984vmin;
1189
+ color: #999999;
1190
+ font-size: 1.5873vmin;
1191
+ line-height: 1.5873vmin;
1192
+ font-weight: 400;
1193
+ text-align: left;
1194
+ border-radius: 0 0 1.26984vmin 1.26984vmin;
1195
+ }
1196
+ .styleType1_wrapper-v .coupon_style1 .couponInfo .couponName {
1197
+ color: #333;
1198
+ font-size: 1.90476vmin;
1199
+ line-height: 2.53968vmin;
1200
+ height: 2.53968vmin;
1201
+ width: 18.4127vmin;
1202
+ font-weight: 700;
1203
+ margin-bottom: 0.63492vmin;
1204
+ overflow: hidden;
1205
+ white-space: nowrap;
1206
+ text-overflow: ellipsis;
1207
+ }
1208
+ .styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint {
1209
+ margin-bottom: 0.63492vmin;
1210
+ }
1211
+ .styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime {
1212
+ margin-bottom: 0;
1213
+ }
1214
+ .styleType1_wrapper-v .coupon_style1 .couponState {
1215
+ position: absolute;
1216
+ right: 1.26984vmin;
1217
+ bottom: 1.26984vmin;
1218
+ height: 3.80952vmin;
1219
+ line-height: 3.80952vmin;
1220
+ border-radius: 0.63492vmin;
1221
+ border: 0;
1222
+ background: #ff781f;
1223
+ }
1224
+ .styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn {
1225
+ width: 18.4127vmin;
1226
+ }
1227
+ .styleType1_wrapper-v .coupon_style1 .couponState .couponBtn {
1228
+ color: white;
1229
+ font-size: 1.90476vmin;
1230
+ font-weight: 500;
1231
+ text-align: center;
1232
+ font-family: "PingFang SC";
1233
+ }
1234
+ }
1235
+ @media screen and (min-height: 768px) and (orientation: landscape) {
1236
+ .styleType1_wrapper.pop-card {
1237
+ width: 31.51042vmin;
1238
+ margin-bottom: 0;
1239
+ }
1240
+ .styleType1_wrapper.vertical-screen {
1241
+ width: 30.98958vmin;
1242
+ margin: 0 auto;
1243
+ }
1244
+ .styleType1_wrapper.vertical-screen.not-pop-card {
1245
+ margin-bottom: 2.08333vmin;
1246
+ }
1247
+ .styleType1_wrapper.vertical-screen .coupon_style1 {
1248
+ height: 11.97917vmin;
1249
+ }
1250
+ .styleType1_wrapper.full-screen-list {
1251
+ width: 45.18229vmin;
1252
+ margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
1253
+ }
1254
+ .styleType1_wrapper.full-screen-list .coupon_style1 {
1255
+ height: 13.15104vmin;
1256
+ }
1257
+ .styleType1_wrapper .coupon_style1 {
1258
+ display: flex;
1259
+ position: relative;
1260
+ width: 100%;
1261
+ }
1262
+ .styleType1_wrapper .coupon_style1 .couponValue {
1263
+ padding: 1.04167vmin;
1264
+ min-width: 12.10938vmin;
1265
+ height: 100%;
1266
+ background: #ff781f;
1267
+ color: #fff;
1268
+ display: flex;
1269
+ flex-direction: column;
1270
+ justify-content: space-around;
1271
+ align-items: center;
1272
+ box-sizing: border-box;
1273
+ border-radius: 1.04167vmin 0 0 1.04167vmin;
1274
+ }
1275
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
1276
+ position: relative;
1277
+ display: flex;
1278
+ flex-direction: row;
1279
+ align-items: baseline;
1280
+ font-weight: 700;
1281
+ }
1282
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol {
1283
+ margin-right: 0.26042vmin;
1284
+ font-size: 2.08333vmin;
1285
+ }
1286
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price {
1287
+ display: flex;
1288
+ font-size: 5.20833vmin;
1289
+ }
1290
+ .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
1291
+ font-size: 2.08333vmin;
1292
+ font-weight: 500;
1293
+ }
1294
+ .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
1295
+ color: white;
1296
+ font-size: 1.5625vmin;
1297
+ font-weight: 500;
1298
+ font-family: "PingFang SC";
1299
+ text-align: center;
1300
+ line-height: 2.08333vmin;
1301
+ }
1302
+ .styleType1_wrapper .coupon_style1 .couponInfo {
1303
+ display: flex;
1304
+ flex-direction: column;
1305
+ justify-content: flex-start;
1306
+ width: 33.20312vmin;
1307
+ height: 100%;
1308
+ box-sizing: border-box;
1309
+ background: white;
1310
+ padding: 1.04167vmin 0 1.04167vmin 1.04167vmin;
1311
+ color: #999999;
1312
+ font-size: 1.30208vmin;
1313
+ line-height: 1.5625vmin;
1314
+ font-weight: 400;
1315
+ text-align: left;
1316
+ border-radius: 0 1.04167vmin 1.04167vmin 0;
1317
+ }
1318
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponName {
1319
+ color: #333333;
1320
+ font-size: 1.5625vmin;
1321
+ line-height: 2.08333vmin;
1322
+ height: 2.08333vmin;
1323
+ width: 16.01562vmin;
1324
+ font-weight: 700;
1325
+ margin-bottom: 0.52083vmin;
1326
+ overflow: hidden;
1327
+ white-space: nowrap;
1328
+ text-overflow: ellipsis;
1329
+ }
1330
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint {
1331
+ margin-bottom: 0.26042vmin;
1332
+ }
1333
+ .styleType1_wrapper .coupon_style1 .couponInfo .couponUseTime {
1334
+ margin-bottom: 4.8vmin;
1335
+ }
1336
+ .styleType1_wrapper .coupon_style1 .couponInfo .moreInfo {
1337
+ display: flex;
1338
+ cursor: pointer;
1339
+ align-items: center;
1340
+ }
1341
+ .styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn {
1342
+ width: 1.5625vmin;
1343
+ height: 1.5625vmin;
1344
+ margin-left: 0.39062vmin;
1345
+ background-size: 100% 100%;
1346
+ }
1347
+ .styleType1_wrapper .coupon_style1 .couponState {
1348
+ position: absolute;
1349
+ right: 1.04167vmin;
1350
+ bottom: 1.04167vmin;
1351
+ height: 3.125vmin;
1352
+ line-height: 3.125vmin;
1353
+ border-radius: 1.82292vmin;
1354
+ border: 0;
1355
+ background: #ff781f;
1356
+ }
1357
+ .styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn {
1358
+ width: 8.85417vmin;
1359
+ }
1360
+ .styleType1_wrapper .coupon_style1 .couponState.vertical-btn {
1361
+ width: 7.29167vmin;
1362
+ }
1363
+ .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
1364
+ color: white;
1365
+ font-size: 1.5625vmin;
1366
+ font-weight: 700;
1367
+ text-align: center;
1368
+ font-family: "PingFang SC";
1369
+ }
1370
+ .styleType1_wrapper .coupon_style1 .hasReceivedStatus {
1371
+ position: absolute;
1372
+ top: 0vmin;
1373
+ right: 0vmin;
1374
+ width: 6.38021vmin;
1375
+ height: 7.42188vmin;
1376
+ }
1377
+ .styleType1_wrapper .detailInfo {
1378
+ width: 100%;
1379
+ display: flex;
1380
+ background-color: #fff6f0;
1381
+ box-sizing: border-box;
1382
+ border-radius: 0 0 0.26042vmin 0.26042vmin;
1383
+ padding: 1.04167vmin;
1384
+ padding-top: 2.44141vmin;
1385
+ color: #666666;
1386
+ font-size: 1.30208vmin;
1387
+ margin-top: -2vmin;
1388
+ text-align: left;
1389
+ }
1390
+ .styleType1_wrapper .detailInfo .disabledHint {
1391
+ width: 1.82292vmin;
1392
+ margin-right: 0.65104vmin;
1393
+ }
1394
+ .styleType1_wrapper .detailInfo .instructions {
1395
+ word-break: break-all;
1396
+ }
1397
+ .styleType1_wrapper .detailInfo .instructions .remark {
1398
+ color: #333333;
1399
+ margin-bottom: 0.52083vmin;
1400
+ }
1401
+ .styleType2_wrapper {
1402
+ margin-bottom: 1.5625vmin;
1403
+ margin-right: 1.04167vmin;
1404
+ }
1405
+ .styleType2_wrapper .coupon_style2 {
1406
+ display: flex;
1407
+ flex-direction: row;
1408
+ color: #ff781f;
1409
+ position: relative;
1410
+ overflow: hidden;
1411
+ width: 21.875vmin;
1412
+ height: 10.41667vmin;
1413
+ flex-shrink: 0;
1414
+ }
1415
+ .styleType2_wrapper .coupon_style2 .coupons-styles2-bg {
1416
+ position: absolute;
1417
+ top: 0;
1418
+ left: 0;
1419
+ right: 0;
1420
+ width: 100%;
1421
+ height: 100%;
1422
+ }
1423
+ .styleType2_wrapper .coupon_style2 .couponInfo {
1424
+ display: inline-flex;
1425
+ flex-direction: column;
1426
+ box-sizing: border-box;
1427
+ padding-left: 1.04167vmin;
1428
+ width: 17.70833vmin;
1429
+ height: 100%;
1430
+ font-family: "PingFang SC";
1431
+ font-size: 1.30208vmin;
1432
+ line-height: 1.5625vmin;
1433
+ }
1434
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop {
1435
+ padding-top: 1.04167vmin;
1436
+ display: flex;
1437
+ flex-direction: row;
1438
+ align-items: flex-end;
1439
+ height: 3.125vmin;
1440
+ }
1441
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap {
1442
+ position: relative;
1443
+ display: flex;
1444
+ flex-direction: row;
1445
+ align-items: baseline;
1446
+ font-weight: 700;
1447
+ height: 3.125vmin;
1448
+ line-height: 3.125vmin;
1449
+ }
1450
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol {
1451
+ margin-right: 0.26042vmin;
1452
+ font-size: 1.5625vmin;
1453
+ }
1454
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price {
1455
+ display: flex;
1456
+ font-size: 4.58984vmin;
1457
+ }
1458
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont {
1459
+ font-size: 1.5625vmin;
1460
+ font-weight: 500;
1461
+ margin-left: 0.26042vmin;
1462
+ }
1463
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom {
1464
+ font-weight: 400;
1465
+ line-height: 1.5625vmin;
1466
+ position: relative;
1467
+ margin-top: 0.39062vmin;
1468
+ }
1469
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit {
1470
+ margin-bottom: 0.26042vmin;
1471
+ }
1472
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition {
1473
+ font-size: 1.30208vmin;
1474
+ font-weight: 400;
1475
+ }
1476
+ .styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint {
1477
+ margin-bottom: 0.26042vmin;
1478
+ }
1479
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper {
1480
+ width: 4.03646vmin;
1481
+ height: 100%;
1482
+ /* -webkit-align-self: center; */
1483
+ -ms-flex-item-align: center;
1484
+ align-self: center;
1485
+ position: relative;
1486
+ display: inline-flex;
1487
+ justify-content: center;
1488
+ align-items: center;
1489
+ text-align: center;
1490
+ }
1491
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn {
1492
+ writing-mode: vertical-lr;
1493
+ letter-spacing: 0.65104vmin;
1494
+ font-size: 1.5625vmin;
1495
+ font-weight: 700;
1496
+ font-family: "PingFang SC";
1497
+ }
1498
+ .styleType2_wrapper .coupon_style2 .couponStatewrapper:before {
1499
+ content: " ";
1500
+ display: block;
1501
+ width: 100%;
1502
+ height: 7.42188vmin;
1503
+ border-left: 0.13021vmin dashed #ff781f;
1504
+ -webkit-transform: scale(1.3);
1505
+ transform: scale(0.7, 1.1);
1506
+ position: absolute;
1507
+ left: -vmin(10);
1508
+ top: 3.07vmin;
1509
+ }
1510
+ .styleType2_wrapper .coupon_style2 .hasReceivedStatus {
1511
+ position: absolute;
1512
+ top: 0vmin;
1513
+ right: 0vmin;
1514
+ width: 6.38021vmin;
1515
+ height: 7.42188vmin;
1516
+ }
559
1517
  .styleType1_wrapper-v.vertical-screen {
560
1518
  width: 17.1875vmin;
561
1519
  height: 23.69792vmin;
@@ -568,11 +1526,11 @@
568
1526
  height: 11.19792vmin;
569
1527
  }
570
1528
  .styleType1_wrapper-v.full-screen-list {
571
- width: 92.47vmin;
572
- margin: 3.2vmin 4.27vmin 0 4.27vmin;
1529
+ width: 45.18229vmin;
1530
+ margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
573
1531
  }
574
1532
  .styleType1_wrapper-v.full-screen-list .coupon_style1 {
575
- height: 27vmin;
1533
+ height: 13.15104vmin;
576
1534
  }
577
1535
  .styleType1_wrapper-v .coupon_style1 {
578
1536
  display: block;