xiaoe_mp_npm 1.0.15-test01 → 1.0.15-test02

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.
@@ -103,7 +103,8 @@ Component({
103
103
  data: {
104
104
  is_viewUsingInfo: false, //是否点击了详细信息
105
105
  coupon_type: COUPON_TYPE_ENUM.RECEIVE, // 状态类型: 1-领取 2-继续领 3-已领完 4-已过期(领取失败) 5-已结束 6-已达上限 7-已失效 13-已领取 14-操作频繁
106
- has_received: false //标记是否领取过
106
+ has_received: false, //标记是否领取过
107
+ oldCouponItem: null // 上次传进来的优惠券信息
107
108
  },
108
109
  computed: {
109
110
  // 判断金额长度,不同金额区间端显示不同样式(一行优惠券样式)
@@ -285,9 +286,15 @@ Component({
285
286
  },
286
287
  observers: {
287
288
  item(val) {
288
- // 只有列表需要处理
289
- if (val && this.data.isNewList) {
290
- this.initCouponType();
289
+ if (val) {
290
+ // 右下角卡片的,监听到原有卡片的数据变化,无需初始化领取状态
291
+ if (this.data.isFullScreen && val.id !== this.data.oldCouponItem?.id) {
292
+ this.couponCardTypeHandle(val)
293
+ }
294
+ // 只有列表需要处理
295
+ if (this.data.isNewList) {
296
+ this.initCouponType();
297
+ }
291
298
  }
292
299
  }
293
300
  },
@@ -324,6 +331,30 @@ Component({
324
331
  * 组件的方法列表
325
332
  */
326
333
  methods: {
334
+ // 初始化优惠券状态
335
+ couponCardTypeHandle(info) {
336
+ let stock = info.count - info.has_received, coupon_type = COUPON_TYPE_ENUM.RECEIVE;
337
+ // 库存不为0
338
+ if (stock !== 0) {
339
+ if (info.receive_rule !== 0 && info.user_num === info.receive_rule) {
340
+ coupon_type = COUPON_TYPE_ENUM.IS_RECEIVED; // 展示已领取
341
+ } else {
342
+ // 无限制 || 未达到领取上限
343
+ coupon_type = COUPON_TYPE_ENUM.RECEIVE; // 展示正常可领取按钮
344
+ }
345
+ } else {
346
+ // 库存为0,领过
347
+ if (info.user_num !== 0) {
348
+ coupon_type = COUPON_TYPE_ENUM.IS_RECEIVED; // 展示已领取
349
+ } else {
350
+ coupon_type = COUPON_TYPE_ENUM.RECEIVED_COMPLETED; // 展示已领完
351
+ }
352
+ }
353
+ this.setData({
354
+ oldCouponItem: info,
355
+ coupon_type
356
+ });
357
+ },
327
358
  getCouponFunction() {
328
359
  if (this.data.isFullscreenList || (this.data.userRole === 'teacher' && !this.data.isFullScreenPopCard)) {
329
360
  this.sendCoupon();
@@ -205,6 +205,8 @@ $deviceWidth: 750;
205
205
  padding-top: vmin(6) !important;
206
206
  }
207
207
  .couponUseCondition {
208
+ width: vmin(160);
209
+ margin: 0 auto;
208
210
  color: #FF5429;
209
211
  font-size: vmin(24);
210
212
  font-weight: 500;
@@ -216,17 +218,17 @@ $deviceWidth: 750;
216
218
  }
217
219
 
218
220
  .couponInfo {
219
- flex: 1;
221
+ // flex: 1;
220
222
  position: relative;
221
223
  display: flex;
222
224
  flex-direction: column;
223
225
  justify-content: space-around;
224
- // max-width: vmin(340);
226
+ max-width: vmin(302);
225
227
  height: 100%;
226
228
  box-sizing: border-box;
227
- padding: vmin(34) 0 vmin(34) vmin(32);
228
- color: #999999;
229
- font-size: vmin(20);
229
+ padding: vmin(26) 0 vmin(26) vmin(32);
230
+ color: #666;
231
+ font-size: vmin(24);
230
232
  line-height: vmin(24);
231
233
  font-weight: 400;
232
234
  text-align: left;
@@ -270,10 +272,14 @@ $deviceWidth: 750;
270
272
  }
271
273
  }
272
274
  }
275
+ .blank-item {
276
+ flex: 1;
277
+ }
273
278
 
274
279
  .couponState {
275
- height: vmin(48);
276
- line-height: vmin(48);
280
+ width: vmin(144);
281
+ height: vmin(56);
282
+ line-height: vmin(56);
277
283
  text-align: center;
278
284
  color: #fff;
279
285
  border: none;
@@ -290,7 +296,7 @@ $deviceWidth: 750;
290
296
 
291
297
  .couponBtn {
292
298
  background: #FF5429;
293
- border-radius: vmin(48);
299
+ border-radius: vmin(56);
294
300
  color: rgba(255, 255, 255, 1);
295
301
  font-size: vmin(24);
296
302
  font-weight: 500;
@@ -58,6 +58,7 @@
58
58
  wx:if="{{!item.valid_day && item.valid_at && item.invalid_at}}">{{ time.formatDateToMinte(item.invalid_at) }}到期</text>
59
59
  </view>
60
60
  </view>
61
+ <view class="blank-item"></view>
61
62
 
62
63
  <!-- 右边优惠券领用状态, 讨论区跟列表不一样, 写两套了 -->
63
64
  <block wx:if="{{isNewList}}">
@@ -177,6 +177,8 @@
177
177
  padding-top: 0.8vmin !important;
178
178
  }
179
179
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
180
+ width: 21.33333vmin;
181
+ margin: 0 auto;
180
182
  color: #FF5429;
181
183
  font-size: 3.2vmin;
182
184
  font-weight: 500;
@@ -186,16 +188,16 @@
186
188
  padding-top: 2.13333vmin;
187
189
  }
188
190
  .styleType1_wrapper .coupon_style1 .couponInfo {
189
- flex: 1;
190
191
  position: relative;
191
192
  display: flex;
192
193
  flex-direction: column;
193
194
  justify-content: space-around;
195
+ max-width: 40.26667vmin;
194
196
  height: 100%;
195
197
  box-sizing: border-box;
196
- padding: 4.53333vmin 0 4.53333vmin 4.26667vmin;
197
- color: #999999;
198
- font-size: 2.66667vmin;
198
+ padding: 3.46667vmin 0 3.46667vmin 4.26667vmin;
199
+ color: #666;
200
+ font-size: 3.2vmin;
199
201
  line-height: 3.2vmin;
200
202
  font-weight: 400;
201
203
  text-align: left;
@@ -231,9 +233,13 @@
231
233
  margin-left: 0.8vmin;
232
234
  background-size: 100% 100%;
233
235
  }
236
+ .styleType1_wrapper .coupon_style1 .blank-item {
237
+ flex: 1;
238
+ }
234
239
  .styleType1_wrapper .coupon_style1 .couponState {
235
- height: 6.4vmin;
236
- line-height: 6.4vmin;
240
+ width: 19.2vmin;
241
+ height: 7.46667vmin;
242
+ line-height: 7.46667vmin;
237
243
  text-align: center;
238
244
  color: #fff;
239
245
  border: none;
@@ -248,7 +254,7 @@
248
254
  }
249
255
  .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
250
256
  background: #FF5429;
251
- border-radius: 6.4vmin;
257
+ border-radius: 7.46667vmin;
252
258
  color: #fff;
253
259
  font-size: 3.2vmin;
254
260
  font-weight: 500;
@@ -913,6 +919,8 @@
913
919
  padding-top: 0.39062vmin !important;
914
920
  }
915
921
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
922
+ width: 10.41667vmin;
923
+ margin: 0 auto;
916
924
  color: #FF5429;
917
925
  font-size: 1.5625vmin;
918
926
  font-weight: 500;
@@ -922,16 +930,16 @@
922
930
  padding-top: 1.04167vmin;
923
931
  }
924
932
  .styleType1_wrapper .coupon_style1 .couponInfo {
925
- flex: 1;
926
933
  position: relative;
927
934
  display: flex;
928
935
  flex-direction: column;
929
936
  justify-content: space-around;
937
+ max-width: 19.66146vmin;
930
938
  height: 100%;
931
939
  box-sizing: border-box;
932
- padding: 2.21354vmin 0 2.21354vmin 2.08333vmin;
933
- color: #999999;
934
- font-size: 1.30208vmin;
940
+ padding: 1.69271vmin 0 1.69271vmin 2.08333vmin;
941
+ color: #666;
942
+ font-size: 1.5625vmin;
935
943
  line-height: 1.5625vmin;
936
944
  font-weight: 400;
937
945
  text-align: left;
@@ -967,9 +975,13 @@
967
975
  margin-left: 0.39062vmin;
968
976
  background-size: 100% 100%;
969
977
  }
978
+ .styleType1_wrapper .coupon_style1 .blank-item {
979
+ flex: 1;
980
+ }
970
981
  .styleType1_wrapper .coupon_style1 .couponState {
971
- height: 3.125vmin;
972
- line-height: 3.125vmin;
982
+ width: 9.375vmin;
983
+ height: 3.64583vmin;
984
+ line-height: 3.64583vmin;
973
985
  text-align: center;
974
986
  color: #fff;
975
987
  border: none;
@@ -984,7 +996,7 @@
984
996
  }
985
997
  .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
986
998
  background: #FF5429;
987
- border-radius: 3.125vmin;
999
+ border-radius: 3.64583vmin;
988
1000
  color: #fff;
989
1001
  font-size: 1.5625vmin;
990
1002
  font-weight: 500;
@@ -1650,6 +1662,8 @@
1650
1662
  padding-top: 0.47619vmin !important;
1651
1663
  }
1652
1664
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
1665
+ width: 12.69841vmin;
1666
+ margin: 0 auto;
1653
1667
  color: #FF5429;
1654
1668
  font-size: 1.90476vmin;
1655
1669
  font-weight: 500;
@@ -1659,16 +1673,16 @@
1659
1673
  padding-top: 1.26984vmin;
1660
1674
  }
1661
1675
  .styleType1_wrapper .coupon_style1 .couponInfo {
1662
- flex: 1;
1663
1676
  position: relative;
1664
1677
  display: flex;
1665
1678
  flex-direction: column;
1666
1679
  justify-content: space-around;
1680
+ max-width: 23.96825vmin;
1667
1681
  height: 100%;
1668
1682
  box-sizing: border-box;
1669
- padding: 2.69841vmin 0 2.69841vmin 2.53968vmin;
1670
- color: #999999;
1671
- font-size: 1.5873vmin;
1683
+ padding: 2.06349vmin 0 2.06349vmin 2.53968vmin;
1684
+ color: #666;
1685
+ font-size: 1.90476vmin;
1672
1686
  line-height: 1.90476vmin;
1673
1687
  font-weight: 400;
1674
1688
  text-align: left;
@@ -1704,9 +1718,13 @@
1704
1718
  margin-left: 0.47619vmin;
1705
1719
  background-size: 100% 100%;
1706
1720
  }
1721
+ .styleType1_wrapper .coupon_style1 .blank-item {
1722
+ flex: 1;
1723
+ }
1707
1724
  .styleType1_wrapper .coupon_style1 .couponState {
1708
- height: 3.80952vmin;
1709
- line-height: 3.80952vmin;
1725
+ width: 11.42857vmin;
1726
+ height: 4.44444vmin;
1727
+ line-height: 4.44444vmin;
1710
1728
  text-align: center;
1711
1729
  color: #fff;
1712
1730
  border: none;
@@ -1721,7 +1739,7 @@
1721
1739
  }
1722
1740
  .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
1723
1741
  background: #FF5429;
1724
- border-radius: 3.80952vmin;
1742
+ border-radius: 4.44444vmin;
1725
1743
  color: #fff;
1726
1744
  font-size: 1.90476vmin;
1727
1745
  font-weight: 500;
@@ -2387,6 +2405,8 @@
2387
2405
  padding-top: 0.39062vmin !important;
2388
2406
  }
2389
2407
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
2408
+ width: 10.41667vmin;
2409
+ margin: 0 auto;
2390
2410
  color: #FF5429;
2391
2411
  font-size: 1.5625vmin;
2392
2412
  font-weight: 500;
@@ -2396,16 +2416,16 @@
2396
2416
  padding-top: 1.04167vmin;
2397
2417
  }
2398
2418
  .styleType1_wrapper .coupon_style1 .couponInfo {
2399
- flex: 1;
2400
2419
  position: relative;
2401
2420
  display: flex;
2402
2421
  flex-direction: column;
2403
2422
  justify-content: space-around;
2423
+ max-width: 19.66146vmin;
2404
2424
  height: 100%;
2405
2425
  box-sizing: border-box;
2406
- padding: 2.21354vmin 0 2.21354vmin 2.08333vmin;
2407
- color: #999999;
2408
- font-size: 1.30208vmin;
2426
+ padding: 1.69271vmin 0 1.69271vmin 2.08333vmin;
2427
+ color: #666;
2428
+ font-size: 1.5625vmin;
2409
2429
  line-height: 1.5625vmin;
2410
2430
  font-weight: 400;
2411
2431
  text-align: left;
@@ -2441,9 +2461,13 @@
2441
2461
  margin-left: 0.39062vmin;
2442
2462
  background-size: 100% 100%;
2443
2463
  }
2464
+ .styleType1_wrapper .coupon_style1 .blank-item {
2465
+ flex: 1;
2466
+ }
2444
2467
  .styleType1_wrapper .coupon_style1 .couponState {
2445
- height: 3.125vmin;
2446
- line-height: 3.125vmin;
2468
+ width: 9.375vmin;
2469
+ height: 3.64583vmin;
2470
+ line-height: 3.64583vmin;
2447
2471
  text-align: center;
2448
2472
  color: #fff;
2449
2473
  border: none;
@@ -2458,7 +2482,7 @@
2458
2482
  }
2459
2483
  .styleType1_wrapper .coupon_style1 .couponState .couponBtn {
2460
2484
  background: #FF5429;
2461
- border-radius: 3.125vmin;
2485
+ border-radius: 3.64583vmin;
2462
2486
  color: #fff;
2463
2487
  font-size: 1.5625vmin;
2464
2488
  font-weight: 500;
@@ -302,7 +302,7 @@ Component({
302
302
  let state = this.data.componentsState;
303
303
  getMyCouponList(data)
304
304
  .then(res => {
305
- let couponList = [],
305
+ let couponList = this.data.couponList,
306
306
  finished = true,
307
307
  loading = false;
308
308
  const { code, data } = res.data;
@@ -5,6 +5,7 @@
5
5
  round="{{ isRound }}"
6
6
  custom-class="coupon-list-popup"
7
7
  customStyle="{{ customStyle }}"
8
+ safe-area-inset-bottom="{{ false }}"
8
9
  bind:close="onClose"
9
10
  bind:click-overlay="onClose"
10
11
  zIndex="{{ zIndex }}"
@@ -6,15 +6,20 @@ $deviceWidth: 750;
6
6
  @mixin coupon-receive {
7
7
  .receive-popup {
8
8
  background-color: transparent;
9
+ overflow: visible !important;
9
10
  }
10
11
  .receive-container {
11
12
  transform: scale(0.8);
12
13
  margin-top: vmin(-16);
13
14
  }
14
15
  .receive-container-new {
15
- width: vmin(480);
16
- height: vmin(800);
17
- background-size: 100% 100%;
16
+ // 在ios上使用vmin导致背景被截断,先用rpx了,调试太麻烦了,从简吧
17
+ width: 480rpx;
18
+ height: 800rpx;
19
+ transform: translateY(#{vmin(-40)});
20
+ background-size: 480rpx 800rpx;
21
+ background-position: center;
22
+ background-repeat: no-repeat;
18
23
  background-image: url('https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png');
19
24
  display: flex;
20
25
  flex-flow: wrap;
@@ -195,6 +200,7 @@ $deviceWidth: 750;
195
200
  }
196
201
  &__close {
197
202
  position: absolute;
203
+ transform: translateY(#{vmin(-40)});
198
204
  top: 0;
199
205
  right: 0;
200
206
  width: vmin(64);
@@ -1,14 +1,18 @@
1
1
  .coupon-receive .receive-popup {
2
2
  background-color: transparent;
3
+ overflow: visible !important;
3
4
  }
4
5
  .coupon-receive .receive-container {
5
6
  transform: scale(0.8);
6
7
  margin-top: -2.13333vmin;
7
8
  }
8
9
  .coupon-receive .receive-container-new {
9
- width: 64vmin;
10
- height: 106.66667vmin;
11
- background-size: 100% 100%;
10
+ width: 480rpx;
11
+ height: 800rpx;
12
+ transform: translateY(-5.33333vmin);
13
+ background-size: 480rpx 800rpx;
14
+ background-position: center;
15
+ background-repeat: no-repeat;
12
16
  background-image: url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");
13
17
  display: flex;
14
18
  flex-flow: wrap;
@@ -188,6 +192,7 @@
188
192
  }
189
193
  .coupon-receive .receive-container-new__close {
190
194
  position: absolute;
195
+ transform: translateY(-5.33333vmin);
191
196
  top: 0;
192
197
  right: 0;
193
198
  width: 8.53333vmin;
@@ -196,15 +201,19 @@
196
201
  @media screen and (min-width: 768px) and (orientation: portrait) {
197
202
  .coupon-receive .receive-popup {
198
203
  background-color: transparent;
204
+ overflow: visible !important;
199
205
  }
200
206
  .coupon-receive .receive-container {
201
207
  transform: scale(0.8);
202
208
  margin-top: -1.04167vmin;
203
209
  }
204
210
  .coupon-receive .receive-container-new {
205
- width: 31.25vmin;
206
- height: 52.08333vmin;
207
- background-size: 100% 100%;
211
+ width: 480rpx;
212
+ height: 800rpx;
213
+ transform: translateY(-2.60417vmin);
214
+ background-size: 480rpx 800rpx;
215
+ background-position: center;
216
+ background-repeat: no-repeat;
208
217
  background-image: url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");
209
218
  display: flex;
210
219
  flex-flow: wrap;
@@ -384,6 +393,7 @@
384
393
  }
385
394
  .coupon-receive .receive-container-new__close {
386
395
  position: absolute;
396
+ transform: translateY(-2.60417vmin);
387
397
  top: 0;
388
398
  right: 0;
389
399
  width: 4.16667vmin;
@@ -393,15 +403,19 @@
393
403
  @media screen and (min-height: 768px) and (orientation: landscape) {
394
404
  .coupon-receive .receive-popup {
395
405
  background-color: transparent;
406
+ overflow: visible !important;
396
407
  }
397
408
  .coupon-receive .receive-container {
398
409
  transform: scale(0.8);
399
410
  margin-top: -1.04167vmin;
400
411
  }
401
412
  .coupon-receive .receive-container-new {
402
- width: 31.25vmin;
403
- height: 52.08333vmin;
404
- background-size: 100% 100%;
413
+ width: 480rpx;
414
+ height: 800rpx;
415
+ transform: translateY(-2.60417vmin);
416
+ background-size: 480rpx 800rpx;
417
+ background-position: center;
418
+ background-repeat: no-repeat;
405
419
  background-image: url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");
406
420
  display: flex;
407
421
  flex-flow: wrap;
@@ -581,6 +595,7 @@
581
595
  }
582
596
  .coupon-receive .receive-container-new__close {
583
597
  position: absolute;
598
+ transform: translateY(-2.60417vmin);
584
599
  top: 0;
585
600
  right: 0;
586
601
  width: 4.16667vmin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xiaoe_mp_npm",
3
- "version": "1.0.15-test01",
3
+ "version": "1.0.15-test02",
4
4
  "description": "",
5
5
  "main": "miniprogram_dist/index.js",
6
6
  "scripts": {
@@ -103,7 +103,8 @@ Component({
103
103
  data: {
104
104
  is_viewUsingInfo: false, //是否点击了详细信息
105
105
  coupon_type: COUPON_TYPE_ENUM.RECEIVE, // 状态类型: 1-领取 2-继续领 3-已领完 4-已过期(领取失败) 5-已结束 6-已达上限 7-已失效 13-已领取 14-操作频繁
106
- has_received: false //标记是否领取过
106
+ has_received: false, //标记是否领取过
107
+ oldCouponItem: null // 上次传进来的优惠券信息
107
108
  },
108
109
  computed: {
109
110
  // 判断金额长度,不同金额区间端显示不同样式(一行优惠券样式)
@@ -285,9 +286,15 @@ Component({
285
286
  },
286
287
  observers: {
287
288
  item(val) {
288
- // 只有列表需要处理
289
- if (val && this.data.isNewList) {
290
- this.initCouponType();
289
+ if (val) {
290
+ // 右下角卡片的,监听到原有卡片的数据变化,无需初始化领取状态
291
+ if (this.data.isFullScreen && val.id !== this.data.oldCouponItem?.id) {
292
+ this.couponCardTypeHandle(val)
293
+ }
294
+ // 只有列表需要处理
295
+ if (this.data.isNewList) {
296
+ this.initCouponType();
297
+ }
291
298
  }
292
299
  }
293
300
  },
@@ -324,6 +331,30 @@ Component({
324
331
  * 组件的方法列表
325
332
  */
326
333
  methods: {
334
+ // 初始化优惠券状态
335
+ couponCardTypeHandle(info) {
336
+ let stock = info.count - info.has_received, coupon_type = COUPON_TYPE_ENUM.RECEIVE;
337
+ // 库存不为0
338
+ if (stock !== 0) {
339
+ if (info.receive_rule !== 0 && info.user_num === info.receive_rule) {
340
+ coupon_type = COUPON_TYPE_ENUM.IS_RECEIVED; // 展示已领取
341
+ } else {
342
+ // 无限制 || 未达到领取上限
343
+ coupon_type = COUPON_TYPE_ENUM.RECEIVE; // 展示正常可领取按钮
344
+ }
345
+ } else {
346
+ // 库存为0,领过
347
+ if (info.user_num !== 0) {
348
+ coupon_type = COUPON_TYPE_ENUM.IS_RECEIVED; // 展示已领取
349
+ } else {
350
+ coupon_type = COUPON_TYPE_ENUM.RECEIVED_COMPLETED; // 展示已领完
351
+ }
352
+ }
353
+ this.setData({
354
+ oldCouponItem: info,
355
+ coupon_type
356
+ });
357
+ },
327
358
  getCouponFunction() {
328
359
  if (this.data.isFullscreenList || (this.data.userRole === 'teacher' && !this.data.isFullScreenPopCard)) {
329
360
  this.sendCoupon();
@@ -205,6 +205,8 @@ $deviceWidth: 750;
205
205
  padding-top: vmin(6) !important;
206
206
  }
207
207
  .couponUseCondition {
208
+ width: vmin(160);
209
+ margin: 0 auto;
208
210
  color: #FF5429;
209
211
  font-size: vmin(24);
210
212
  font-weight: 500;
@@ -216,17 +218,17 @@ $deviceWidth: 750;
216
218
  }
217
219
 
218
220
  .couponInfo {
219
- flex: 1;
221
+ // flex: 1;
220
222
  position: relative;
221
223
  display: flex;
222
224
  flex-direction: column;
223
225
  justify-content: space-around;
224
- // max-width: vmin(340);
226
+ max-width: vmin(302);
225
227
  height: 100%;
226
228
  box-sizing: border-box;
227
- padding: vmin(34) 0 vmin(34) vmin(32);
228
- color: #999999;
229
- font-size: vmin(20);
229
+ padding: vmin(26) 0 vmin(26) vmin(32);
230
+ color: #666;
231
+ font-size: vmin(24);
230
232
  line-height: vmin(24);
231
233
  font-weight: 400;
232
234
  text-align: left;
@@ -270,10 +272,14 @@ $deviceWidth: 750;
270
272
  }
271
273
  }
272
274
  }
275
+ .blank-item {
276
+ flex: 1;
277
+ }
273
278
 
274
279
  .couponState {
275
- height: vmin(48);
276
- line-height: vmin(48);
280
+ width: vmin(144);
281
+ height: vmin(56);
282
+ line-height: vmin(56);
277
283
  text-align: center;
278
284
  color: #fff;
279
285
  border: none;
@@ -290,7 +296,7 @@ $deviceWidth: 750;
290
296
 
291
297
  .couponBtn {
292
298
  background: #FF5429;
293
- border-radius: vmin(48);
299
+ border-radius: vmin(56);
294
300
  color: rgba(255, 255, 255, 1);
295
301
  font-size: vmin(24);
296
302
  font-weight: 500;
@@ -58,6 +58,7 @@
58
58
  wx:if="{{!item.valid_day && item.valid_at && item.invalid_at}}">{{ time.formatDateToMinte(item.invalid_at) }}到期</text>
59
59
  </view>
60
60
  </view>
61
+ <view class="blank-item"></view>
61
62
 
62
63
  <!-- 右边优惠券领用状态, 讨论区跟列表不一样, 写两套了 -->
63
64
  <block wx:if="{{isNewList}}">
@@ -1 +1 @@
1
- .styleType1_wrapper.pop-card{width:37.33333vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:37.33333vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:48vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:5.33333vmin 2.13333vmin 2.13333vmin 2.13333vmin;width:98.5%;height:21.33333vmin;background:#ff781f;color:#fff;border-radius:2.13333vmin 2.13333vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:2.13333vmin 2.13333vmin 4vmin 2.13333vmin;border-radius:0 0 2.13333vmin 2.13333vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:4.26667vmin;line-height:4.26667vmin;font-size:3.73333vmin;width:32.53333vmin;font-weight:500;margin-bottom:1.06667vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:2.13333vmin;top:95%;transform:translateY(-95%);height:6.4vmin;line-height:6.4vmin;border-radius:1.06667vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:63.46667vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:4.26667vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:25.6vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:3.2vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:22.66667vmin;justify-content:flex-start;overflow:hidden;padding:2.13333vmin 2.93333vmin 2.13333vmin 3.46667vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:1.6vmin;top:90%;transform:translateY(-90%);height:5.06667vmin;line-height:5.06667vmin;background:#FF5429;border-radius:5.06667vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:3.2vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:92.53333vmin;margin:3.2vmin 4.26667vmin 0 4.26667vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:23.46667vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:25.6vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:4.8vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:4.26667vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:4.26667vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:10.66667vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:4.26667vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.8vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{color:#FF5429;font-size:3.2vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:4.26667vmin;padding-top:2.13333vmin}.styleType1_wrapper .coupon_style1 .couponInfo{flex:1;position:relative;display:flex;flex-direction:column;justify-content:space-around;height:100%;box-sizing:border-box;padding:4.53333vmin 0 4.53333vmin 4.26667vmin;color:#999999;font-size:2.66667vmin;line-height:3.2vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:5.33333vmin;color:#333333;font-size:3.73333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.53333vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:3.2vmin;height:3.2vmin;margin-left:.8vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .couponState{height:6.4vmin;line-height:6.4vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:3.2vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:18.13333vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:14.13333vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:6.4vmin;color:#fff;font-size:3.2vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:13.06667vmin;height:15.2vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .53333vmin .53333vmin;padding:2.13333vmin;padding-top:5vmin;color:#666;font-size:2.66667vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:3.73333vmin;margin-right:1.33333vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:1.06667vmin}.styleType2_wrapper{margin-bottom:3.2vmin;margin-right:2.13333vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:44.8vmin;height:21.33333vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:36.26667vmin;font-size:2.66667vmin;line-height:3.2vmin;font-weight:400;padding:0 2.13333vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:4.8vmin;font-weight:500;height:4.26667vmin;line-height:4.26667vmin;margin-bottom:5.33333vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:2.13333vmin;width:36.26667vmin;height:100%;font-family:"PingFang SC";font-size:2.66667vmin;line-height:3.2vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:2.13333vmin;display:flex;flex-direction:row;align-items:flex-end;height:6.4vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:6.4vmin;line-height:6.4vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.53333vmin;font-size:3.2vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:9.4vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:3.2vmin;font-weight:500;margin-left:.53333vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:3.2vmin;position:relative;margin-top:.8vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.53333vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:2.66667vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.53333vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:8.26667vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:1.33333vmin;font-size:3.2vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:15.2vmin;border-left:.26667vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:13.06667vmin;height:15.2vmin}.styleType1_wrapper-v.vertical-screen{width:63.46667vmin;height:23.46667vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:63.46667vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:25.33333vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:3.2vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:2.13333vmin 2.93333vmin 2.13333vmin 3.46667vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:1.6vmin;top:90%;transform:translateY(-90%);height:5.06667vmin;line-height:5.06667vmin;background:#FF5429;border-radius:5.06667vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:3.2vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:92.53333vmin;margin:3.2vmin 4.26667vmin 0 4.26667vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:26.93333vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:3.33333vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:4.8vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.53333vmin;font-size:4.26667vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:8.53333vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:6.4vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:4.26667vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:3.2vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:4.26667vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:2.13333vmin;color:#999999;font-size:2.66667vmin;line-height:2.66667vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:5.33333vmin;color:#333333;font-size:3.73333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:1.06667vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:6.4vmin;line-height:6.4vmin;background:#FF5429;border-radius:6.4vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.33333vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:14.13333vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:3.2vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:58.66667vmin;width:35.2vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:10.66667vmin;box-sizing:border-box}.coupon-container .coupon-title{width:33.06667vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:3.2vmin;font-weight:500;line-height:4.26667vmin;margin-top:3.2vmin}.coupon-container .coupon-discount{margin-top:1.06667vmin;color:#fffce0;line-height:8.53333vmin;font-size:7.46667vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:5.33333vmin;line-height:5.33333vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:3.2vmin;line-height:4.26667vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:5.33333vmin;line-height:5.33333vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:33.06667vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:5.33333vmin;font-weight:600;height:7.46667vmin;line-height:7.46667vmin;margin-top:3.2vmin;margin-bottom:1.06667vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:9.6vmin}.coupon-container .coupon-gift-title .title-txt{width:33.06667vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:3.2vmin;font-weight:600;line-height:4.8vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:4.26667vmin;font-size:3.2vmin;font-weight:400;line-height:4.26667vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:3.2vmin auto 0;width:29.86667vmin;display:flex;height:7.46667vmin;justify-content:center;align-items:center;gap:1.06667vmin;border-radius:3.73333vmin;border:.26667vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .53333vmin 1.6vmin 0 #ff5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:3.73333vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:33.06667vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:2.93333vmin;font-style:normal;font-weight:400;line-height:4.26667vmin;margin:0 auto}@media screen and (min-width: 768px) and (orientation: portrait){.styleType1_wrapper.pop-card{width:18.22917vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:18.22917vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:23.4375vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;width:98.5%;height:10.41667vmin;background:#ff781f;color:#fff;border-radius:1.04167vmin 1.04167vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:1.04167vmin 1.04167vmin 1.95312vmin 1.04167vmin;border-radius:0 0 1.04167vmin 1.04167vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:2.08333vmin;line-height:2.08333vmin;font-size:1.82292vmin;width:15.88542vmin;font-weight:500;margin-bottom:.52083vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:1.04167vmin;top:95%;transform:translateY(-95%);height:3.125vmin;line-height:3.125vmin;border-radius:.52083vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:30.98958vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.5vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:11.06771vmin;justify-content:flex-start;overflow:hidden;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:11.45833vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:12.5vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:2.08333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:2.08333vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:5.20833vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.39062vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{color:#FF5429;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin;padding-top:1.04167vmin}.styleType1_wrapper .coupon_style1 .couponInfo{flex:1;position:relative;display:flex;flex-direction:column;justify-content:space-around;height:100%;box-sizing:border-box;padding:2.21354vmin 0 2.21354vmin 2.08333vmin;color:#999999;font-size:1.30208vmin;line-height:1.5625vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.26042vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:1.5625vmin;height:1.5625vmin;margin-left:.39062vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .couponState{height:3.125vmin;line-height:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.5625vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:8.85417vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:3.125vmin;color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .26042vmin .26042vmin;padding:1.04167vmin;padding-top:2.44141vmin;color:#666;font-size:1.30208vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:1.82292vmin;margin-right:.65104vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:.52083vmin}.styleType2_wrapper{margin-bottom:1.5625vmin;margin-right:1.04167vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:21.875vmin;height:10.41667vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:17.70833vmin;font-size:1.30208vmin;line-height:1.5625vmin;font-weight:400;padding:0 1.04167vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:2.34375vmin;font-weight:500;height:2.08333vmin;line-height:2.08333vmin;margin-bottom:2.60417vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:1.04167vmin;width:17.70833vmin;height:100%;font-family:"PingFang SC";font-size:1.30208vmin;line-height:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:1.04167vmin;display:flex;flex-direction:row;align-items:flex-end;height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:3.125vmin;line-height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:4.58984vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:1.5625vmin;font-weight:500;margin-left:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:1.5625vmin;position:relative;margin-top:.39062vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:1.30208vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:4.03646vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:.65104vmin;font-size:1.5625vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:7.42188vmin;border-left:.13021vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper-v.vertical-screen{width:30.98958vmin;height:11.45833vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:30.98958vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:12.36979vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:13.15104vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:1.6276vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:4.16667vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:3.125vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:1.04167vmin;color:#999999;font-size:1.30208vmin;line-height:1.30208vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.52083vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:3.125vmin;line-height:3.125vmin;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:28.64583vmin;width:17.1875vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:5.20833vmin;box-sizing:border-box}.coupon-container .coupon-title{width:16.14583vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:1.5625vmin;font-weight:500;line-height:2.08333vmin;margin-top:1.5625vmin}.coupon-container .coupon-discount{margin-top:.52083vmin;color:#fffce0;line-height:4.16667vmin;font-size:3.64583vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:1.5625vmin;line-height:2.08333vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:16.14583vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:2.60417vmin;font-weight:600;height:3.64583vmin;line-height:3.64583vmin;margin-top:1.5625vmin;margin-bottom:.52083vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:4.6875vmin}.coupon-container .coupon-gift-title .title-txt{width:16.14583vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:1.5625vmin;font-weight:600;line-height:2.34375vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:2.08333vmin;font-size:1.5625vmin;font-weight:400;line-height:2.08333vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:1.5625vmin auto 0;width:14.58333vmin;display:flex;height:3.64583vmin;justify-content:center;align-items:center;gap:.52083vmin;border-radius:1.82292vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:1.82292vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:16.14583vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:1.43229vmin;font-style:normal;font-weight:400;line-height:2.08333vmin;margin:0 auto}}@media screen and (min-height: 630px) and (orientation: landscape){.styleType1_wrapper.pop-card{width:22.22222vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:22.22222vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:28.57143vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:3.1746vmin 1.26984vmin 1.26984vmin 1.26984vmin;width:98.5%;height:12.69841vmin;background:#ff781f;color:#fff;border-radius:1.26984vmin 1.26984vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:1.26984vmin 1.26984vmin 2.38095vmin 1.26984vmin;border-radius:0 0 1.26984vmin 1.26984vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:2.53968vmin;line-height:2.53968vmin;font-size:2.22222vmin;width:19.36508vmin;font-weight:500;margin-bottom:.63492vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:1.26984vmin;top:95%;transform:translateY(-95%);height:3.80952vmin;line-height:3.80952vmin;border-radius:.63492vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:37.77778vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.53968vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:15.2381vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.90476vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:13.49206vmin;justify-content:flex-start;overflow:hidden;padding:1.26984vmin 1.74603vmin 1.26984vmin 2.06349vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:.95238vmin;top:90%;transform:translateY(-90%);height:3.01587vmin;line-height:3.01587vmin;background:#FF5429;border-radius:3.01587vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.90476vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:55.07937vmin;margin:1.90476vmin 2.53968vmin 0 2.53968vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:13.96825vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:15.2381vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:2.85714vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:2.53968vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:2.53968vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:6.34921vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.53968vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.47619vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{color:#FF5429;font-size:1.90476vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.53968vmin;padding-top:1.26984vmin}.styleType1_wrapper .coupon_style1 .couponInfo{flex:1;position:relative;display:flex;flex-direction:column;justify-content:space-around;height:100%;box-sizing:border-box;padding:2.69841vmin 0 2.69841vmin 2.53968vmin;color:#999999;font-size:1.5873vmin;line-height:1.90476vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:3.1746vmin;color:#333333;font-size:2.22222vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.31746vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:1.90476vmin;height:1.90476vmin;margin-left:.47619vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .couponState{height:3.80952vmin;line-height:3.80952vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.90476vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:10.79365vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:8.4127vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:3.80952vmin;color:#fff;font-size:1.90476vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:7.77778vmin;height:9.04762vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .31746vmin .31746vmin;padding:1.26984vmin;padding-top:2.97619vmin;color:#666;font-size:1.5873vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:2.22222vmin;margin-right:.79365vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:.63492vmin}.styleType2_wrapper{margin-bottom:1.90476vmin;margin-right:1.26984vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:26.66667vmin;height:12.69841vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:21.5873vmin;font-size:1.5873vmin;line-height:1.90476vmin;font-weight:400;padding:0 1.26984vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:2.85714vmin;font-weight:500;height:2.53968vmin;line-height:2.53968vmin;margin-bottom:3.1746vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:1.26984vmin;width:21.5873vmin;height:100%;font-family:"PingFang SC";font-size:1.5873vmin;line-height:1.90476vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:1.26984vmin;display:flex;flex-direction:row;align-items:flex-end;height:3.80952vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:3.80952vmin;line-height:3.80952vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.31746vmin;font-size:1.90476vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:5.59524vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:1.90476vmin;font-weight:500;margin-left:.31746vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:1.90476vmin;position:relative;margin-top:.47619vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.31746vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:1.5873vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.31746vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:4.92063vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:.79365vmin;font-size:1.90476vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:9.04762vmin;border-left:.15873vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:7.77778vmin;height:9.04762vmin}.styleType1_wrapper-v.vertical-screen{width:37.77778vmin;height:13.96825vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:37.77778vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:15.07937vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:1.90476vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:1.26984vmin 1.74603vmin 1.26984vmin 2.06349vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:.95238vmin;top:90%;transform:translateY(-90%);height:3.01587vmin;line-height:3.01587vmin;background:#FF5429;border-radius:3.01587vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.90476vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:55.07937vmin;margin:1.90476vmin 2.53968vmin 0 2.53968vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:16.03175vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:1.98413vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:2.85714vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.31746vmin;font-size:2.53968vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:5.07937vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:3.80952vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.53968vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:1.90476vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.53968vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:1.26984vmin;color:#999999;font-size:1.5873vmin;line-height:1.5873vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:3.1746vmin;color:#333333;font-size:2.22222vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.63492vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:3.80952vmin;line-height:3.80952vmin;background:#FF5429;border-radius:3.80952vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.79365vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:8.4127vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:1.90476vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:34.92063vmin;width:20.95238vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:6.34921vmin;box-sizing:border-box}.coupon-container .coupon-title{width:19.68254vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:1.90476vmin;font-weight:500;line-height:2.53968vmin;margin-top:1.90476vmin}.coupon-container .coupon-discount{margin-top:.63492vmin;color:#fffce0;line-height:5.07937vmin;font-size:4.44444vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:3.1746vmin;line-height:3.1746vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:1.90476vmin;line-height:2.53968vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:3.1746vmin;line-height:3.1746vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:19.68254vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:3.1746vmin;font-weight:600;height:4.44444vmin;line-height:4.44444vmin;margin-top:1.90476vmin;margin-bottom:.63492vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:5.71429vmin}.coupon-container .coupon-gift-title .title-txt{width:19.68254vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:1.90476vmin;font-weight:600;line-height:2.85714vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:2.53968vmin;font-size:1.90476vmin;font-weight:400;line-height:2.53968vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:1.90476vmin auto 0;width:17.77778vmin;display:flex;height:4.44444vmin;justify-content:center;align-items:center;gap:.63492vmin;border-radius:2.22222vmin;border:.15873vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .31746vmin .95238vmin 0 #ff5034,0 .63492vmin .63492vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:2.22222vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:19.68254vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:1.74603vmin;font-style:normal;font-weight:400;line-height:2.53968vmin;margin:0 auto}}@media screen and (min-height: 768px) and (orientation: landscape){.styleType1_wrapper.pop-card{width:18.22917vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:18.22917vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:23.4375vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;width:98.5%;height:10.41667vmin;background:#ff781f;color:#fff;border-radius:1.04167vmin 1.04167vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:1.04167vmin 1.04167vmin 1.95312vmin 1.04167vmin;border-radius:0 0 1.04167vmin 1.04167vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:2.08333vmin;line-height:2.08333vmin;font-size:1.82292vmin;width:15.88542vmin;font-weight:500;margin-bottom:.52083vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:1.04167vmin;top:95%;transform:translateY(-95%);height:3.125vmin;line-height:3.125vmin;border-radius:.52083vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:30.98958vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.5vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:11.06771vmin;justify-content:flex-start;overflow:hidden;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:11.45833vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:12.5vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:2.08333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:2.08333vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:5.20833vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.39062vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{color:#FF5429;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin;padding-top:1.04167vmin}.styleType1_wrapper .coupon_style1 .couponInfo{flex:1;position:relative;display:flex;flex-direction:column;justify-content:space-around;height:100%;box-sizing:border-box;padding:2.21354vmin 0 2.21354vmin 2.08333vmin;color:#999999;font-size:1.30208vmin;line-height:1.5625vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.26042vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:1.5625vmin;height:1.5625vmin;margin-left:.39062vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .couponState{height:3.125vmin;line-height:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.5625vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:8.85417vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:3.125vmin;color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .26042vmin .26042vmin;padding:1.04167vmin;padding-top:2.44141vmin;color:#666;font-size:1.30208vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:1.82292vmin;margin-right:.65104vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:.52083vmin}.styleType2_wrapper{margin-bottom:1.5625vmin;margin-right:1.04167vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:21.875vmin;height:10.41667vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:17.70833vmin;font-size:1.30208vmin;line-height:1.5625vmin;font-weight:400;padding:0 1.04167vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:2.34375vmin;font-weight:500;height:2.08333vmin;line-height:2.08333vmin;margin-bottom:2.60417vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:1.04167vmin;width:17.70833vmin;height:100%;font-family:"PingFang SC";font-size:1.30208vmin;line-height:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:1.04167vmin;display:flex;flex-direction:row;align-items:flex-end;height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:3.125vmin;line-height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:4.58984vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:1.5625vmin;font-weight:500;margin-left:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:1.5625vmin;position:relative;margin-top:.39062vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:1.30208vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:4.03646vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:.65104vmin;font-size:1.5625vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:7.42188vmin;border-left:.13021vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper-v.vertical-screen{width:30.98958vmin;height:11.45833vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:30.98958vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:12.36979vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:13.15104vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:1.6276vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:4.16667vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:3.125vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:1.04167vmin;color:#999999;font-size:1.30208vmin;line-height:1.30208vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.52083vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:3.125vmin;line-height:3.125vmin;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:28.64583vmin;width:17.1875vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:5.20833vmin;box-sizing:border-box}.coupon-container .coupon-title{width:16.14583vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:1.5625vmin;font-weight:500;line-height:2.08333vmin;margin-top:1.5625vmin}.coupon-container .coupon-discount{margin-top:.52083vmin;color:#fffce0;line-height:4.16667vmin;font-size:3.64583vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:1.5625vmin;line-height:2.08333vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:16.14583vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:2.60417vmin;font-weight:600;height:3.64583vmin;line-height:3.64583vmin;margin-top:1.5625vmin;margin-bottom:.52083vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:4.6875vmin}.coupon-container .coupon-gift-title .title-txt{width:16.14583vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:1.5625vmin;font-weight:600;line-height:2.34375vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:2.08333vmin;font-size:1.5625vmin;font-weight:400;line-height:2.08333vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:1.5625vmin auto 0;width:14.58333vmin;display:flex;height:3.64583vmin;justify-content:center;align-items:center;gap:.52083vmin;border-radius:1.82292vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:1.82292vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:16.14583vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:1.43229vmin;font-style:normal;font-weight:400;line-height:2.08333vmin;margin:0 auto}}
1
+ .styleType1_wrapper.pop-card{width:37.33333vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:37.33333vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:48vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:5.33333vmin 2.13333vmin 2.13333vmin 2.13333vmin;width:98.5%;height:21.33333vmin;background:#ff781f;color:#fff;border-radius:2.13333vmin 2.13333vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:2.13333vmin 2.13333vmin 4vmin 2.13333vmin;border-radius:0 0 2.13333vmin 2.13333vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:4.26667vmin;line-height:4.26667vmin;font-size:3.73333vmin;width:32.53333vmin;font-weight:500;margin-bottom:1.06667vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:2.13333vmin;top:95%;transform:translateY(-95%);height:6.4vmin;line-height:6.4vmin;border-radius:1.06667vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:63.46667vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:4.26667vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:25.6vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:3.2vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:22.66667vmin;justify-content:flex-start;overflow:hidden;padding:2.13333vmin 2.93333vmin 2.13333vmin 3.46667vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:1.6vmin;top:90%;transform:translateY(-90%);height:5.06667vmin;line-height:5.06667vmin;background:#FF5429;border-radius:5.06667vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:3.2vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:92.53333vmin;margin:3.2vmin 4.26667vmin 0 4.26667vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:23.46667vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:25.6vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:4.8vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:4.26667vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:4.26667vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:10.66667vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:4.26667vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.8vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{width:21.33333vmin;margin:0 auto;color:#FF5429;font-size:3.2vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:4.26667vmin;padding-top:2.13333vmin}.styleType1_wrapper .coupon_style1 .couponInfo{position:relative;display:flex;flex-direction:column;justify-content:space-around;max-width:40.26667vmin;height:100%;box-sizing:border-box;padding:3.46667vmin 0 3.46667vmin 4.26667vmin;color:#666;font-size:3.2vmin;line-height:3.2vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:5.33333vmin;color:#333333;font-size:3.73333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.53333vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:3.2vmin;height:3.2vmin;margin-left:.8vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .blank-item{flex:1}.styleType1_wrapper .coupon_style1 .couponState{width:19.2vmin;height:7.46667vmin;line-height:7.46667vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:3.2vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:18.13333vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:14.13333vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:7.46667vmin;color:#fff;font-size:3.2vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:13.06667vmin;height:15.2vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .53333vmin .53333vmin;padding:2.13333vmin;padding-top:5vmin;color:#666;font-size:2.66667vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:3.73333vmin;margin-right:1.33333vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:1.06667vmin}.styleType2_wrapper{margin-bottom:3.2vmin;margin-right:2.13333vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:44.8vmin;height:21.33333vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:36.26667vmin;font-size:2.66667vmin;line-height:3.2vmin;font-weight:400;padding:0 2.13333vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:4.8vmin;font-weight:500;height:4.26667vmin;line-height:4.26667vmin;margin-bottom:5.33333vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:2.13333vmin;width:36.26667vmin;height:100%;font-family:"PingFang SC";font-size:2.66667vmin;line-height:3.2vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:2.13333vmin;display:flex;flex-direction:row;align-items:flex-end;height:6.4vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:6.4vmin;line-height:6.4vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.53333vmin;font-size:3.2vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:9.4vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:3.2vmin;font-weight:500;margin-left:.53333vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:3.2vmin;position:relative;margin-top:.8vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.53333vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:2.66667vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.53333vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:8.26667vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:1.33333vmin;font-size:3.2vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:15.2vmin;border-left:.26667vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:13.06667vmin;height:15.2vmin}.styleType1_wrapper-v.vertical-screen{width:63.46667vmin;height:23.46667vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:63.46667vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:25.33333vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:3.2vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:2.13333vmin 2.93333vmin 2.13333vmin 3.46667vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:1.6vmin;top:90%;transform:translateY(-90%);height:5.06667vmin;line-height:5.06667vmin;background:#FF5429;border-radius:5.06667vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:3.2vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:92.53333vmin;margin:3.2vmin 4.26667vmin 0 4.26667vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:26.93333vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:3.33333vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:4.8vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.53333vmin;font-size:4.26667vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:8.53333vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:6.4vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:4.26667vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:3.2vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:4.26667vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:2.13333vmin;color:#999999;font-size:2.66667vmin;line-height:2.66667vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:5.33333vmin;color:#333333;font-size:3.73333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:1.06667vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:6.4vmin;line-height:6.4vmin;background:#FF5429;border-radius:6.4vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.33333vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:14.13333vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:3.2vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:58.66667vmin;width:35.2vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:10.66667vmin;box-sizing:border-box}.coupon-container .coupon-title{width:33.06667vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:3.2vmin;font-weight:500;line-height:4.26667vmin;margin-top:3.2vmin}.coupon-container .coupon-discount{margin-top:1.06667vmin;color:#fffce0;line-height:8.53333vmin;font-size:7.46667vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:5.33333vmin;line-height:5.33333vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:3.2vmin;line-height:4.26667vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:5.33333vmin;line-height:5.33333vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:33.06667vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:5.33333vmin;font-weight:600;height:7.46667vmin;line-height:7.46667vmin;margin-top:3.2vmin;margin-bottom:1.06667vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:9.6vmin}.coupon-container .coupon-gift-title .title-txt{width:33.06667vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:3.2vmin;font-weight:600;line-height:4.8vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:4.26667vmin;font-size:3.2vmin;font-weight:400;line-height:4.26667vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:3.2vmin auto 0;width:29.86667vmin;display:flex;height:7.46667vmin;justify-content:center;align-items:center;gap:1.06667vmin;border-radius:3.73333vmin;border:.26667vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .53333vmin 1.6vmin 0 #ff5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:3.73333vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:33.06667vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:2.93333vmin;font-style:normal;font-weight:400;line-height:4.26667vmin;margin:0 auto}@media screen and (min-width: 768px) and (orientation: portrait){.styleType1_wrapper.pop-card{width:18.22917vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:18.22917vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:23.4375vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;width:98.5%;height:10.41667vmin;background:#ff781f;color:#fff;border-radius:1.04167vmin 1.04167vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:1.04167vmin 1.04167vmin 1.95312vmin 1.04167vmin;border-radius:0 0 1.04167vmin 1.04167vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:2.08333vmin;line-height:2.08333vmin;font-size:1.82292vmin;width:15.88542vmin;font-weight:500;margin-bottom:.52083vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:1.04167vmin;top:95%;transform:translateY(-95%);height:3.125vmin;line-height:3.125vmin;border-radius:.52083vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:30.98958vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.5vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:11.06771vmin;justify-content:flex-start;overflow:hidden;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:11.45833vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:12.5vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:2.08333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:2.08333vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:5.20833vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.39062vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{width:10.41667vmin;margin:0 auto;color:#FF5429;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin;padding-top:1.04167vmin}.styleType1_wrapper .coupon_style1 .couponInfo{position:relative;display:flex;flex-direction:column;justify-content:space-around;max-width:19.66146vmin;height:100%;box-sizing:border-box;padding:1.69271vmin 0 1.69271vmin 2.08333vmin;color:#666;font-size:1.5625vmin;line-height:1.5625vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.26042vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:1.5625vmin;height:1.5625vmin;margin-left:.39062vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .blank-item{flex:1}.styleType1_wrapper .coupon_style1 .couponState{width:9.375vmin;height:3.64583vmin;line-height:3.64583vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.5625vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:8.85417vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:3.64583vmin;color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .26042vmin .26042vmin;padding:1.04167vmin;padding-top:2.44141vmin;color:#666;font-size:1.30208vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:1.82292vmin;margin-right:.65104vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:.52083vmin}.styleType2_wrapper{margin-bottom:1.5625vmin;margin-right:1.04167vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:21.875vmin;height:10.41667vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:17.70833vmin;font-size:1.30208vmin;line-height:1.5625vmin;font-weight:400;padding:0 1.04167vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:2.34375vmin;font-weight:500;height:2.08333vmin;line-height:2.08333vmin;margin-bottom:2.60417vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:1.04167vmin;width:17.70833vmin;height:100%;font-family:"PingFang SC";font-size:1.30208vmin;line-height:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:1.04167vmin;display:flex;flex-direction:row;align-items:flex-end;height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:3.125vmin;line-height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:4.58984vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:1.5625vmin;font-weight:500;margin-left:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:1.5625vmin;position:relative;margin-top:.39062vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:1.30208vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:4.03646vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:.65104vmin;font-size:1.5625vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:7.42188vmin;border-left:.13021vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper-v.vertical-screen{width:30.98958vmin;height:11.45833vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:30.98958vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:12.36979vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:13.15104vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:1.6276vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:4.16667vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:3.125vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:1.04167vmin;color:#999999;font-size:1.30208vmin;line-height:1.30208vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.52083vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:3.125vmin;line-height:3.125vmin;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:28.64583vmin;width:17.1875vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:5.20833vmin;box-sizing:border-box}.coupon-container .coupon-title{width:16.14583vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:1.5625vmin;font-weight:500;line-height:2.08333vmin;margin-top:1.5625vmin}.coupon-container .coupon-discount{margin-top:.52083vmin;color:#fffce0;line-height:4.16667vmin;font-size:3.64583vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:1.5625vmin;line-height:2.08333vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:16.14583vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:2.60417vmin;font-weight:600;height:3.64583vmin;line-height:3.64583vmin;margin-top:1.5625vmin;margin-bottom:.52083vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:4.6875vmin}.coupon-container .coupon-gift-title .title-txt{width:16.14583vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:1.5625vmin;font-weight:600;line-height:2.34375vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:2.08333vmin;font-size:1.5625vmin;font-weight:400;line-height:2.08333vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:1.5625vmin auto 0;width:14.58333vmin;display:flex;height:3.64583vmin;justify-content:center;align-items:center;gap:.52083vmin;border-radius:1.82292vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:1.82292vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:16.14583vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:1.43229vmin;font-style:normal;font-weight:400;line-height:2.08333vmin;margin:0 auto}}@media screen and (min-height: 630px) and (orientation: landscape){.styleType1_wrapper.pop-card{width:22.22222vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:22.22222vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:28.57143vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:3.1746vmin 1.26984vmin 1.26984vmin 1.26984vmin;width:98.5%;height:12.69841vmin;background:#ff781f;color:#fff;border-radius:1.26984vmin 1.26984vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:1.26984vmin 1.26984vmin 2.38095vmin 1.26984vmin;border-radius:0 0 1.26984vmin 1.26984vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:2.53968vmin;line-height:2.53968vmin;font-size:2.22222vmin;width:19.36508vmin;font-weight:500;margin-bottom:.63492vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:1.26984vmin;top:95%;transform:translateY(-95%);height:3.80952vmin;line-height:3.80952vmin;border-radius:.63492vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:37.77778vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.53968vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:15.2381vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.90476vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:13.49206vmin;justify-content:flex-start;overflow:hidden;padding:1.26984vmin 1.74603vmin 1.26984vmin 2.06349vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:.95238vmin;top:90%;transform:translateY(-90%);height:3.01587vmin;line-height:3.01587vmin;background:#FF5429;border-radius:3.01587vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.90476vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:55.07937vmin;margin:1.90476vmin 2.53968vmin 0 2.53968vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:13.96825vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:15.2381vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:2.85714vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:2.53968vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:2.53968vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:6.34921vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.53968vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.47619vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{width:12.69841vmin;margin:0 auto;color:#FF5429;font-size:1.90476vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.53968vmin;padding-top:1.26984vmin}.styleType1_wrapper .coupon_style1 .couponInfo{position:relative;display:flex;flex-direction:column;justify-content:space-around;max-width:23.96825vmin;height:100%;box-sizing:border-box;padding:2.06349vmin 0 2.06349vmin 2.53968vmin;color:#666;font-size:1.90476vmin;line-height:1.90476vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:3.1746vmin;color:#333333;font-size:2.22222vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.31746vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:1.90476vmin;height:1.90476vmin;margin-left:.47619vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .blank-item{flex:1}.styleType1_wrapper .coupon_style1 .couponState{width:11.42857vmin;height:4.44444vmin;line-height:4.44444vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.90476vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:10.79365vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:8.4127vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:4.44444vmin;color:#fff;font-size:1.90476vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:7.77778vmin;height:9.04762vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .31746vmin .31746vmin;padding:1.26984vmin;padding-top:2.97619vmin;color:#666;font-size:1.5873vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:2.22222vmin;margin-right:.79365vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:.63492vmin}.styleType2_wrapper{margin-bottom:1.90476vmin;margin-right:1.26984vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:26.66667vmin;height:12.69841vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:21.5873vmin;font-size:1.5873vmin;line-height:1.90476vmin;font-weight:400;padding:0 1.26984vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:2.85714vmin;font-weight:500;height:2.53968vmin;line-height:2.53968vmin;margin-bottom:3.1746vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:1.26984vmin;width:21.5873vmin;height:100%;font-family:"PingFang SC";font-size:1.5873vmin;line-height:1.90476vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:1.26984vmin;display:flex;flex-direction:row;align-items:flex-end;height:3.80952vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:3.80952vmin;line-height:3.80952vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.31746vmin;font-size:1.90476vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:5.59524vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:1.90476vmin;font-weight:500;margin-left:.31746vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:1.90476vmin;position:relative;margin-top:.47619vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.31746vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:1.5873vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.31746vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:4.92063vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:.79365vmin;font-size:1.90476vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:9.04762vmin;border-left:.15873vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:7.77778vmin;height:9.04762vmin}.styleType1_wrapper-v.vertical-screen{width:37.77778vmin;height:13.96825vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:37.77778vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:15.07937vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:1.90476vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:1.26984vmin 1.74603vmin 1.26984vmin 2.06349vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:.95238vmin;top:90%;transform:translateY(-90%);height:3.01587vmin;line-height:3.01587vmin;background:#FF5429;border-radius:3.01587vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.90476vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:55.07937vmin;margin:1.90476vmin 2.53968vmin 0 2.53968vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:16.03175vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:1.98413vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:2.85714vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.31746vmin;font-size:2.53968vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:5.07937vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:3.80952vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.53968vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:1.90476vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.53968vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:1.26984vmin;color:#999999;font-size:1.5873vmin;line-height:1.5873vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:3.1746vmin;color:#333333;font-size:2.22222vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.63492vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:3.80952vmin;line-height:3.80952vmin;background:#FF5429;border-radius:3.80952vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.79365vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:8.4127vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:1.90476vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:34.92063vmin;width:20.95238vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:6.34921vmin;box-sizing:border-box}.coupon-container .coupon-title{width:19.68254vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:1.90476vmin;font-weight:500;line-height:2.53968vmin;margin-top:1.90476vmin}.coupon-container .coupon-discount{margin-top:.63492vmin;color:#fffce0;line-height:5.07937vmin;font-size:4.44444vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:3.1746vmin;line-height:3.1746vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:1.90476vmin;line-height:2.53968vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:3.1746vmin;line-height:3.1746vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:19.68254vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:3.1746vmin;font-weight:600;height:4.44444vmin;line-height:4.44444vmin;margin-top:1.90476vmin;margin-bottom:.63492vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:5.71429vmin}.coupon-container .coupon-gift-title .title-txt{width:19.68254vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:1.90476vmin;font-weight:600;line-height:2.85714vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:2.53968vmin;font-size:1.90476vmin;font-weight:400;line-height:2.53968vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:1.90476vmin auto 0;width:17.77778vmin;display:flex;height:4.44444vmin;justify-content:center;align-items:center;gap:.63492vmin;border-radius:2.22222vmin;border:.15873vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .31746vmin .95238vmin 0 #ff5034,0 .63492vmin .63492vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:2.22222vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:19.68254vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:1.74603vmin;font-style:normal;font-weight:400;line-height:2.53968vmin;margin:0 auto}}@media screen and (min-height: 768px) and (orientation: landscape){.styleType1_wrapper.pop-card{width:18.22917vmin;margin-bottom:0;position:relative;height:100%}.styleType1_wrapper.pop-card.vertical-screen{width:18.22917vmin;height:100%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1{display:flex;flex-direction:column;position:relative;width:100%;min-height:23.4375vmin;background:none !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;width:98.5%;height:10.41667vmin;background:#ff781f;color:#fff;border-radius:1.04167vmin 1.04167vmin 0 0;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition{color:#fff;padding-top:0vmin !important}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo{flex:1;background:#fff;padding:1.04167vmin 1.04167vmin 1.95312vmin 1.04167vmin;border-radius:0 0 1.04167vmin 1.04167vmin;margin:0}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName{height:2.08333vmin;line-height:2.08333vmin;font-size:1.82292vmin;width:15.88542vmin;font-weight:500;margin-bottom:.52083vmin;-webkit-line-clamp:1}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState{position:absolute;left:1.04167vmin;top:95%;transform:translateY(-95%);height:3.125vmin;line-height:3.125vmin;border-radius:.52083vmin}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.fullscreen-btn{width:90%}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponState.vertical-btn{width:88%}.styleType1_wrapper.vertical-screen{width:30.98958vmin;height:100%;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat;background-size:99% 99%;box-sizing:border-box}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.5vmin;box-sizing:border-box;padding:0 .4vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap{margin-top:-1.6vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long{margin-top:1vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{height:11.06771vmin;justify-content:flex-start;overflow:hidden;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:11.45833vmin}.styleType1_wrapper .is-gray{filter:grayscale(100%) opacity(0.5)}.styleType1_wrapper .coupon_style1{display:flex;align-items:center;position:relative;height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:99% 99%}.styleType1_wrapper .coupon_style1 .couponValue{width:12.5vmin;color:#FF5429;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle{font-size:2.08333vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align:center}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{font-size:2.08333vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;font-size:5.20833vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper .coupon_style1 .couponValue .discount-percent{margin-top:-2vmin;padding-top:.39062vmin !important}.styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition{width:10.41667vmin;margin:0 auto;color:#FF5429;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin;padding-top:1.04167vmin}.styleType1_wrapper .coupon_style1 .couponInfo{position:relative;display:flex;flex-direction:column;justify-content:space-around;max-width:19.66146vmin;height:100%;box-sizing:border-box;padding:1.69271vmin 0 1.69271vmin 2.08333vmin;color:#666;font-size:1.5625vmin;line-height:1.5625vmin;font-weight:400;text-align:left}.styleType1_wrapper .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper .coupon_style1 .couponInfo .moreCouponInfo{display:flex;flex-direction:column;justify-content:space-between}.styleType1_wrapper .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.26042vmin}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo{display:flex;cursor:pointer;align-items:center}.styleType1_wrapper .coupon_style1 .couponInfo .moreInfo .operateBtn{width:1.5625vmin;height:1.5625vmin;margin-left:.39062vmin;background-size:100% 100%}.styleType1_wrapper .coupon_style1 .blank-item{flex:1}.styleType1_wrapper .coupon_style1 .couponState{width:9.375vmin;height:3.64583vmin;line-height:3.64583vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.5625vmin}.styleType1_wrapper .coupon_style1 .couponState.fullscreen-btn{width:8.85417vmin}.styleType1_wrapper .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper .coupon_style1 .couponState .couponBtn{background:#FF5429;border-radius:3.64583vmin;color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.styleType1_wrapper .coupon_style1 .couponState .received{opacity:0.4}.styleType1_wrapper .coupon_style1 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper .detailInfo{width:100%;display:flex;background-color:#fff6f0;box-sizing:border-box;border-radius:0 0 .26042vmin .26042vmin;padding:1.04167vmin;padding-top:2.44141vmin;color:#666;font-size:1.30208vmin;margin-top:-2vmin;text-align:left}.styleType1_wrapper .detailInfo .disabledHint{width:1.82292vmin;margin-right:.65104vmin}.styleType1_wrapper .detailInfo .instructions{word-break:break-all}.styleType1_wrapper .detailInfo .instructions .remark{color:#333;margin-bottom:.52083vmin}.styleType2_wrapper{margin-bottom:1.5625vmin;margin-right:1.04167vmin}.styleType2_wrapper .coupon_style2{display:flex;flex-direction:row;color:#ff781f;position:relative;overflow:hidden;width:21.875vmin;height:10.41667vmin;flex-shrink:0}.styleType2_wrapper .coupon_style2 .coupons-styles2-bg{position:absolute;top:0;left:0;right:0;width:100%;height:100%}.styleType2_wrapper .coupon_style2 .giftCouponInfo{display:flex;flex-direction:column;justify-content:center;align-items:baseline;color:#FF5429;position:relative;height:100%;width:17.70833vmin;font-size:1.30208vmin;line-height:1.5625vmin;font-weight:400;padding:0 1.04167vmin}.styleType2_wrapper .coupon_style2 .giftCouponInfo .giftCouponName{font-size:2.34375vmin;font-weight:500;height:2.08333vmin;line-height:2.08333vmin;margin-bottom:2.60417vmin}.styleType2_wrapper .coupon_style2 .couponInfo{display:inline-flex;flex-direction:column;box-sizing:border-box;padding-left:1.04167vmin;width:17.70833vmin;height:100%;font-family:"PingFang SC";font-size:1.30208vmin;line-height:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop{padding-top:1.04167vmin;display:flex;flex-direction:row;align-items:flex-end;height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:700;height:3.125vmin;line-height:3.125vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:1.5625vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .coupon-price{display:flex;font-size:4.58984vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoTop .couponPriceWrap .discountFont{font-size:1.5625vmin;font-weight:500;margin-left:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom{font-weight:400;line-height:1.5625vmin;position:relative;margin-top:.39062vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .priceLimit .couponUseCondition{font-size:1.30208vmin;font-weight:400}.styleType2_wrapper .coupon_style2 .couponInfo .couponInfoBottom .couponUseHint{margin-bottom:.26042vmin}.styleType2_wrapper .coupon_style2 .couponStatewrapper{width:4.03646vmin;height:100%;-ms-flex-item-align:center;align-self:center;position:relative;display:inline-flex;justify-content:center;align-items:center;text-align:center}.styleType2_wrapper .coupon_style2 .couponStatewrapper .couponBtn{writing-mode:vertical-lr;letter-spacing:.65104vmin;font-size:1.5625vmin;font-weight:700;font-family:"PingFang SC"}.styleType2_wrapper .coupon_style2 .couponStatewrapper:before{content:" ";display:block;width:100%;height:7.42188vmin;border-left:.13021vmin dashed #ff781f;-webkit-transform:scale(1.3);transform:scale(0.7, 1.1);position:absolute;left:-vmin(10);top:3.07vmin}.styleType2_wrapper .coupon_style2 .hasReceivedStatus{position:absolute;top:0vmin;right:0vmin;width:6.38021vmin;height:7.42188vmin}.styleType1_wrapper-v.vertical-screen{width:30.98958vmin;height:11.45833vmin;margin:0 auto}.styleType1_wrapper-v.vertical-screen.not-pop-card{width:30.98958vmin;margin-bottom:0}.styleType1_wrapper-v.vertical-screen .coupon_style1{height:100%;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwofsfs60b74.png") no-repeat !important;background-size:99% 99%}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponValue{width:12.36979vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;padding:1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin}.styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState{position:absolute;right:.78125vmin;top:90%;transform:translateY(-90%);height:2.47396vmin;line-height:2.47396vmin;background:#FF5429;border-radius:2.47396vmin;text-align:center;color:#fff;border:none;cursor:pointer;font-size:1.5625vmin;font-weight:500}.styleType1_wrapper-v.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper-v.full-screen-list .coupon_style1{height:13.15104vmin}.styleType1_wrapper-v .coupon_style1{display:flex;align-items:center;position:relative;width:100%;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lw67cw3y0qse.png") center no-repeat;background-size:100% 100%}.styleType1_wrapper-v .coupon_style1 .couponValue{padding:1.6276vmin 0;min-width:unset;color:#FF5429;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}.styleType1_wrapper-v .coupon_style1 .couponValue .giftCouponName{font-size:2.34375vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap{position:relative;display:flex;flex-direction:row;align-items:baseline;font-weight:600}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-symbol{margin-right:.26042vmin;font-size:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price{display:flex;align-items:baseline;font-weight:500;font-size:4.16667vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent{margin-top:-1vmin}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .coupon-price-long{font-size:3.125vmin !important}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap .discount-decimal{display:flex;align-items:center}.styleType1_wrapper-v .coupon_style1 .couponValue .couponPriceWrap.couponPriceWrap-discount-v{align-items:baseline}.styleType1_wrapper-v .coupon_style1 .couponValue .couponUseCondition{color:#fff;font-size:1.5625vmin;font-weight:500;font-family:"PingFang SC";text-align:center;line-height:2.08333vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo{flex:1;display:flex;flex-direction:column;justify-content:flex-start;height:100%;box-sizing:border-box;padding:1.04167vmin;color:#999999;font-size:1.30208vmin;line-height:1.30208vmin;font-weight:400;text-align:left}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponName{width:100%;line-height:2.60417vmin;color:#333333;font-size:1.82292vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseHint{margin-bottom:.52083vmin}.styleType1_wrapper-v .coupon_style1 .couponInfo .couponUseTime{margin-bottom:0}.styleType1_wrapper-v .coupon_style1 .couponState{height:3.125vmin;line-height:3.125vmin;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.styleType1_wrapper-v .coupon_style1 .couponState.vertical-btn{width:6.90104vmin}.styleType1_wrapper-v .coupon_style1 .couponState .couponBtn{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.coupon-container{height:28.64583vmin;width:17.1875vmin;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvx099r.png");background-size:100% 100%;padding-top:5.20833vmin;box-sizing:border-box}.coupon-container .coupon-title{width:16.14583vmin;margin:0 auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-size:1.5625vmin;font-weight:500;line-height:2.08333vmin;margin-top:1.5625vmin}.coupon-container .coupon-discount{margin-top:.52083vmin;color:#fffce0;line-height:4.16667vmin;font-size:3.64583vmin;font-weight:600;text-align:center}.coupon-container .coupon-discount .disc-logo{font-family:"D-DIN";font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-discount .disc-detail{font-family:"D-DIN"}.coupon-container .coupon-discount .discount-detail{color:#fffce0;text-align:center;font-size:1.5625vmin;line-height:2.08333vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coupon-container .coupon-discount .disc-bpart{font-size:2.60417vmin;line-height:2.60417vmin}.coupon-container .coupon-gift{display:flex;justify-content:center;align-items:center;flex-direction:column}.coupon-container .coupon-gift-label{width:16.14583vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:2.60417vmin;font-weight:600;height:3.64583vmin;line-height:3.64583vmin;margin-top:1.5625vmin;margin-bottom:.52083vmin}.coupon-container .coupon-gift-title{display:flex;justify-content:center;align-items:center;height:4.6875vmin}.coupon-container .coupon-gift-title .title-txt{width:16.14583vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:1.5625vmin;font-weight:600;line-height:2.34375vmin;overflow:hidden}.coupon-container .coupon-usage{margin-top:2.08333vmin;font-size:1.5625vmin;font-weight:400;line-height:2.08333vmin;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis}.coupon-container .coupon-usage .qlive-coupon-btn{margin:1.5625vmin auto 0;width:14.58333vmin;display:flex;height:3.64583vmin;justify-content:center;align-items:center;gap:.52083vmin;border-radius:1.82292vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;box-sizing:border-box;color:#ff5429;text-align:center;font-size:1.82292vmin;font-weight:600}.coupon-container .coupon-usage .disable-btn{border:none;background:#ebebeb;color:#b2b2b2}.coupon-container .coupon-usage .received-btn{border:1px solid #f8ffaa;opacity:0.4;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);color:#ff5429}.coupon-container .coupon-usage .discount-date-new{width:16.14583vmin;color:#ffffff;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-family:"PingFang SC";font-size:1.43229vmin;font-style:normal;font-weight:400;line-height:2.08333vmin;margin:0 auto}}
@@ -302,7 +302,7 @@ Component({
302
302
  let state = this.data.componentsState;
303
303
  getMyCouponList(data)
304
304
  .then(res => {
305
- let couponList = [],
305
+ let couponList = this.data.couponList,
306
306
  finished = true,
307
307
  loading = false;
308
308
  const { code, data } = res.data;
@@ -5,6 +5,7 @@
5
5
  round="{{ isRound }}"
6
6
  custom-class="coupon-list-popup"
7
7
  customStyle="{{ customStyle }}"
8
+ safe-area-inset-bottom="{{ false }}"
8
9
  bind:close="onClose"
9
10
  bind:click-overlay="onClose"
10
11
  zIndex="{{ zIndex }}"
@@ -6,15 +6,20 @@ $deviceWidth: 750;
6
6
  @mixin coupon-receive {
7
7
  .receive-popup {
8
8
  background-color: transparent;
9
+ overflow: visible !important;
9
10
  }
10
11
  .receive-container {
11
12
  transform: scale(0.8);
12
13
  margin-top: vmin(-16);
13
14
  }
14
15
  .receive-container-new {
15
- width: vmin(480);
16
- height: vmin(800);
17
- background-size: 100% 100%;
16
+ // 在ios上使用vmin导致背景被截断,先用rpx了,调试太麻烦了,从简吧
17
+ width: 480rpx;
18
+ height: 800rpx;
19
+ transform: translateY(#{vmin(-40)});
20
+ background-size: 480rpx 800rpx;
21
+ background-position: center;
22
+ background-repeat: no-repeat;
18
23
  background-image: url('https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png');
19
24
  display: flex;
20
25
  flex-flow: wrap;
@@ -195,6 +200,7 @@ $deviceWidth: 750;
195
200
  }
196
201
  &__close {
197
202
  position: absolute;
203
+ transform: translateY(#{vmin(-40)});
198
204
  top: 0;
199
205
  right: 0;
200
206
  width: vmin(64);
@@ -1 +1 @@
1
- .coupon-receive .receive-popup{background-color:transparent}.coupon-receive .receive-container{transform:scale(0.8);margin-top:-2.13333vmin}.coupon-receive .receive-container-new{width:64vmin;height:106.66667vmin;background-size:100% 100%;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");display:flex;flex-flow:wrap}.coupon-receive .receive-container-new__content{width:100%;display:flex;flex-direction:column;padding:29.86667vmin 0 0;box-sizing:border-box}.coupon-receive .receive-container-new__content-title{margin:6.4vmin auto 0;width:58.13333vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:4.8vmin;font-style:normal;font-weight:500;line-height:6.4vmin}.coupon-receive .receive-container-new__content-price{margin-top:3.2vmin;font-family:"D-DIN";color:#fffce0;font-size:10.66667vmin;font-style:normal;font-weight:600;text-align:center;display:flex;width:100%;justify-content:center;align-items:baseline}.coupon-receive .receive-container-new__content-price .smallIcon{display:inline-block;font-size:7.46667vmin;line-height:7.46667vmin;font-family:"D-DIN"}.coupon-receive .receive-container-new__content-price .boldIcon{font-family:"D-DIN"}.coupon-receive .receive-container-new__content-detail{margin-top:1.6vmin;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;font-style:normal;font-weight:400;line-height:6.4vmin}.coupon-receive .receive-container-new__content-gift .label{margin:6.4vmin auto 3.2vmin;width:58.13333vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:8.53333vmin;font-weight:600;height:10.66667vmin;line-height:10.66667vmin}.coupon-receive .receive-container-new__content-gift .title{display:flex;justify-content:center;align-items:center;height:12.8vmin}.coupon-receive .receive-container-new__content-gift .title .title-txt{width:48vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:4.8vmin;font-weight:600;line-height:6.4vmin;overflow:hidden}.coupon-receive .receive-container-new__content-describe{margin-top:10.13333vmin;font-family:"PingFang SC";font-size:3.73333vmin;font-style:normal;font-weight:400;line-height:5.33333vmin}.coupon-receive .receive-container-new__content-describe text{width:100%;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis;display:block;margin-bottom:1.06667vmin}.coupon-receive .receive-container-new__btn_box{display:flex;align-items:center;justify-content:center;padding:0 4.26667vmin;box-sizing:border-box}.coupon-receive .receive-container-new__coupon_btn{display:flex;width:21.33333vmin;color:#fff1c0;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;height:10.66667vmin;line-height:10.66667vmin;justify-content:center;align-items:center;gap:1.06667vmin;flex-shrink:0;border-radius:5.33333vmin;border:.26667vmin solid #F8FFAA;background:linear-gradient(0deg, #ffffe91a 0%, #ffe4991a 100%);box-shadow:0 .53333vmin 1.6vmin 0 #FF5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;margin:3.2vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__btn{display:flex;width:28.8vmin;height:10.66667vmin;line-height:10.66667vmin;justify-content:center;align-items:center;gap:1.06667vmin;flex-shrink:0;border-radius:5.33333vmin;border:.26667vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .53333vmin 1.6vmin 0 #ff5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;font-style:normal;font-weight:500;line-height:6.4vmin;box-sizing:border-box;margin:3.2vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__gift-check-btn{display:flex;width:51.2vmin;padding:2.66667vmin 8.26667vmin;box-sizing:border-box;justify-content:center;align-items:center;border-radius:5.33333vmin;border:.26667vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .53333vmin 1.6vmin 0 #FF5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;font-weight:600;margin-top:3.2vmin;height:11.73333vmin}.coupon-receive .receive-container-new__close{position:absolute;top:0;right:0;width:8.53333vmin;height:8.53333vmin}@media screen and (min-width: 768px) and (orientation: portrait){.coupon-receive .receive-popup{background-color:transparent}.coupon-receive .receive-container{transform:scale(0.8);margin-top:-1.04167vmin}.coupon-receive .receive-container-new{width:31.25vmin;height:52.08333vmin;background-size:100% 100%;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");display:flex;flex-flow:wrap}.coupon-receive .receive-container-new__content{width:100%;display:flex;flex-direction:column;padding:14.58333vmin 0 0;box-sizing:border-box}.coupon-receive .receive-container-new__content-title{margin:3.125vmin auto 0;width:28.38542vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.34375vmin;font-style:normal;font-weight:500;line-height:3.125vmin}.coupon-receive .receive-container-new__content-price{margin-top:1.5625vmin;font-family:"D-DIN";color:#fffce0;font-size:5.20833vmin;font-style:normal;font-weight:600;text-align:center;display:flex;width:100%;justify-content:center;align-items:baseline}.coupon-receive .receive-container-new__content-price .smallIcon{display:inline-block;font-size:3.64583vmin;line-height:3.64583vmin;font-family:"D-DIN"}.coupon-receive .receive-container-new__content-price .boldIcon{font-family:"D-DIN"}.coupon-receive .receive-container-new__content-detail{margin-top:.78125vmin;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:400;line-height:3.125vmin}.coupon-receive .receive-container-new__content-gift .label{margin:3.125vmin auto 1.5625vmin;width:28.38542vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:4.16667vmin;font-weight:600;height:5.20833vmin;line-height:5.20833vmin}.coupon-receive .receive-container-new__content-gift .title{display:flex;justify-content:center;align-items:center;height:6.25vmin}.coupon-receive .receive-container-new__content-gift .title .title-txt{width:23.4375vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:2.34375vmin;font-weight:600;line-height:3.125vmin;overflow:hidden}.coupon-receive .receive-container-new__content-describe{margin-top:4.94792vmin;font-family:"PingFang SC";font-size:1.82292vmin;font-style:normal;font-weight:400;line-height:2.60417vmin}.coupon-receive .receive-container-new__content-describe text{width:100%;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis;display:block;margin-bottom:.52083vmin}.coupon-receive .receive-container-new__btn_box{display:flex;align-items:center;justify-content:center;padding:0 2.08333vmin;box-sizing:border-box}.coupon-receive .receive-container-new__coupon_btn{display:flex;width:10.41667vmin;color:#fff1c0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #F8FFAA;background:linear-gradient(0deg, #ffffe91a 0%, #ffe4991a 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__btn{display:flex;width:14.0625vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:500;line-height:3.125vmin;box-sizing:border-box;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__gift-check-btn{display:flex;width:25vmin;padding:1.30208vmin 4.03646vmin;box-sizing:border-box;justify-content:center;align-items:center;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-weight:600;margin-top:1.5625vmin;height:5.72917vmin}.coupon-receive .receive-container-new__close{position:absolute;top:0;right:0;width:4.16667vmin;height:4.16667vmin}}@media screen and (min-height: 768px) and (orientation: landscape){.coupon-receive .receive-popup{background-color:transparent}.coupon-receive .receive-container{transform:scale(0.8);margin-top:-1.04167vmin}.coupon-receive .receive-container-new{width:31.25vmin;height:52.08333vmin;background-size:100% 100%;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");display:flex;flex-flow:wrap}.coupon-receive .receive-container-new__content{width:100%;display:flex;flex-direction:column;padding:14.58333vmin 0 0;box-sizing:border-box}.coupon-receive .receive-container-new__content-title{margin:3.125vmin auto 0;width:28.38542vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.34375vmin;font-style:normal;font-weight:500;line-height:3.125vmin}.coupon-receive .receive-container-new__content-price{margin-top:1.5625vmin;font-family:"D-DIN";color:#fffce0;font-size:5.20833vmin;font-style:normal;font-weight:600;text-align:center;display:flex;width:100%;justify-content:center;align-items:baseline}.coupon-receive .receive-container-new__content-price .smallIcon{display:inline-block;font-size:3.64583vmin;line-height:3.64583vmin;font-family:"D-DIN"}.coupon-receive .receive-container-new__content-price .boldIcon{font-family:"D-DIN"}.coupon-receive .receive-container-new__content-detail{margin-top:.78125vmin;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:400;line-height:3.125vmin}.coupon-receive .receive-container-new__content-gift .label{margin:3.125vmin auto 1.5625vmin;width:28.38542vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:4.16667vmin;font-weight:600;height:5.20833vmin;line-height:5.20833vmin}.coupon-receive .receive-container-new__content-gift .title{display:flex;justify-content:center;align-items:center;height:6.25vmin}.coupon-receive .receive-container-new__content-gift .title .title-txt{width:23.4375vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:2.34375vmin;font-weight:600;line-height:3.125vmin;overflow:hidden}.coupon-receive .receive-container-new__content-describe{margin-top:4.94792vmin;font-family:"PingFang SC";font-size:1.82292vmin;font-style:normal;font-weight:400;line-height:2.60417vmin}.coupon-receive .receive-container-new__content-describe text{width:100%;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis;display:block;margin-bottom:.52083vmin}.coupon-receive .receive-container-new__btn_box{display:flex;align-items:center;justify-content:center;padding:0 2.08333vmin;box-sizing:border-box}.coupon-receive .receive-container-new__coupon_btn{display:flex;width:10.41667vmin;color:#fff1c0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #F8FFAA;background:linear-gradient(0deg, #ffffe91a 0%, #ffe4991a 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__btn{display:flex;width:14.0625vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:500;line-height:3.125vmin;box-sizing:border-box;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__gift-check-btn{display:flex;width:25vmin;padding:1.30208vmin 4.03646vmin;box-sizing:border-box;justify-content:center;align-items:center;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-weight:600;margin-top:1.5625vmin;height:5.72917vmin}.coupon-receive .receive-container-new__close{position:absolute;top:0;right:0;width:4.16667vmin;height:4.16667vmin}}
1
+ .coupon-receive .receive-popup{background-color:transparent;overflow:visible !important}.coupon-receive .receive-container{transform:scale(0.8);margin-top:-2.13333vmin}.coupon-receive .receive-container-new{width:480rpx;height:800rpx;transform:translateY(-5.33333vmin);background-size:480rpx 800rpx;background-position:center;background-repeat:no-repeat;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");display:flex;flex-flow:wrap}.coupon-receive .receive-container-new__content{width:100%;display:flex;flex-direction:column;padding:29.86667vmin 0 0;box-sizing:border-box}.coupon-receive .receive-container-new__content-title{margin:6.4vmin auto 0;width:58.13333vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:4.8vmin;font-style:normal;font-weight:500;line-height:6.4vmin}.coupon-receive .receive-container-new__content-price{margin-top:3.2vmin;font-family:"D-DIN";color:#fffce0;font-size:10.66667vmin;font-style:normal;font-weight:600;text-align:center;display:flex;width:100%;justify-content:center;align-items:baseline}.coupon-receive .receive-container-new__content-price .smallIcon{display:inline-block;font-size:7.46667vmin;line-height:7.46667vmin;font-family:"D-DIN"}.coupon-receive .receive-container-new__content-price .boldIcon{font-family:"D-DIN"}.coupon-receive .receive-container-new__content-detail{margin-top:1.6vmin;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;font-style:normal;font-weight:400;line-height:6.4vmin}.coupon-receive .receive-container-new__content-gift .label{margin:6.4vmin auto 3.2vmin;width:58.13333vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:8.53333vmin;font-weight:600;height:10.66667vmin;line-height:10.66667vmin}.coupon-receive .receive-container-new__content-gift .title{display:flex;justify-content:center;align-items:center;height:12.8vmin}.coupon-receive .receive-container-new__content-gift .title .title-txt{width:48vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:4.8vmin;font-weight:600;line-height:6.4vmin;overflow:hidden}.coupon-receive .receive-container-new__content-describe{margin-top:10.13333vmin;font-family:"PingFang SC";font-size:3.73333vmin;font-style:normal;font-weight:400;line-height:5.33333vmin}.coupon-receive .receive-container-new__content-describe text{width:100%;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis;display:block;margin-bottom:1.06667vmin}.coupon-receive .receive-container-new__btn_box{display:flex;align-items:center;justify-content:center;padding:0 4.26667vmin;box-sizing:border-box}.coupon-receive .receive-container-new__coupon_btn{display:flex;width:21.33333vmin;color:#fff1c0;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;height:10.66667vmin;line-height:10.66667vmin;justify-content:center;align-items:center;gap:1.06667vmin;flex-shrink:0;border-radius:5.33333vmin;border:.26667vmin solid #F8FFAA;background:linear-gradient(0deg, #ffffe91a 0%, #ffe4991a 100%);box-shadow:0 .53333vmin 1.6vmin 0 #FF5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;margin:3.2vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__btn{display:flex;width:28.8vmin;height:10.66667vmin;line-height:10.66667vmin;justify-content:center;align-items:center;gap:1.06667vmin;flex-shrink:0;border-radius:5.33333vmin;border:.26667vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .53333vmin 1.6vmin 0 #ff5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;font-style:normal;font-weight:500;line-height:6.4vmin;box-sizing:border-box;margin:3.2vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__gift-check-btn{display:flex;width:51.2vmin;padding:2.66667vmin 8.26667vmin;box-sizing:border-box;justify-content:center;align-items:center;border-radius:5.33333vmin;border:.26667vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .53333vmin 1.6vmin 0 #FF5034,0 1.06667vmin 1.06667vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:4.26667vmin;font-weight:600;margin-top:3.2vmin;height:11.73333vmin}.coupon-receive .receive-container-new__close{position:absolute;transform:translateY(-5.33333vmin);top:0;right:0;width:8.53333vmin;height:8.53333vmin}@media screen and (min-width: 768px) and (orientation: portrait){.coupon-receive .receive-popup{background-color:transparent;overflow:visible !important}.coupon-receive .receive-container{transform:scale(0.8);margin-top:-1.04167vmin}.coupon-receive .receive-container-new{width:480rpx;height:800rpx;transform:translateY(-2.60417vmin);background-size:480rpx 800rpx;background-position:center;background-repeat:no-repeat;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");display:flex;flex-flow:wrap}.coupon-receive .receive-container-new__content{width:100%;display:flex;flex-direction:column;padding:14.58333vmin 0 0;box-sizing:border-box}.coupon-receive .receive-container-new__content-title{margin:3.125vmin auto 0;width:28.38542vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.34375vmin;font-style:normal;font-weight:500;line-height:3.125vmin}.coupon-receive .receive-container-new__content-price{margin-top:1.5625vmin;font-family:"D-DIN";color:#fffce0;font-size:5.20833vmin;font-style:normal;font-weight:600;text-align:center;display:flex;width:100%;justify-content:center;align-items:baseline}.coupon-receive .receive-container-new__content-price .smallIcon{display:inline-block;font-size:3.64583vmin;line-height:3.64583vmin;font-family:"D-DIN"}.coupon-receive .receive-container-new__content-price .boldIcon{font-family:"D-DIN"}.coupon-receive .receive-container-new__content-detail{margin-top:.78125vmin;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:400;line-height:3.125vmin}.coupon-receive .receive-container-new__content-gift .label{margin:3.125vmin auto 1.5625vmin;width:28.38542vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:4.16667vmin;font-weight:600;height:5.20833vmin;line-height:5.20833vmin}.coupon-receive .receive-container-new__content-gift .title{display:flex;justify-content:center;align-items:center;height:6.25vmin}.coupon-receive .receive-container-new__content-gift .title .title-txt{width:23.4375vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:2.34375vmin;font-weight:600;line-height:3.125vmin;overflow:hidden}.coupon-receive .receive-container-new__content-describe{margin-top:4.94792vmin;font-family:"PingFang SC";font-size:1.82292vmin;font-style:normal;font-weight:400;line-height:2.60417vmin}.coupon-receive .receive-container-new__content-describe text{width:100%;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis;display:block;margin-bottom:.52083vmin}.coupon-receive .receive-container-new__btn_box{display:flex;align-items:center;justify-content:center;padding:0 2.08333vmin;box-sizing:border-box}.coupon-receive .receive-container-new__coupon_btn{display:flex;width:10.41667vmin;color:#fff1c0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #F8FFAA;background:linear-gradient(0deg, #ffffe91a 0%, #ffe4991a 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__btn{display:flex;width:14.0625vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:500;line-height:3.125vmin;box-sizing:border-box;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__gift-check-btn{display:flex;width:25vmin;padding:1.30208vmin 4.03646vmin;box-sizing:border-box;justify-content:center;align-items:center;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-weight:600;margin-top:1.5625vmin;height:5.72917vmin}.coupon-receive .receive-container-new__close{position:absolute;transform:translateY(-2.60417vmin);top:0;right:0;width:4.16667vmin;height:4.16667vmin}}@media screen and (min-height: 768px) and (orientation: landscape){.coupon-receive .receive-popup{background-color:transparent;overflow:visible !important}.coupon-receive .receive-container{transform:scale(0.8);margin-top:-1.04167vmin}.coupon-receive .receive-container-new{width:480rpx;height:800rpx;transform:translateY(-2.60417vmin);background-size:480rpx 800rpx;background-position:center;background-repeat:no-repeat;background-image:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/luc13xvm0oyn.png");display:flex;flex-flow:wrap}.coupon-receive .receive-container-new__content{width:100%;display:flex;flex-direction:column;padding:14.58333vmin 0 0;box-sizing:border-box}.coupon-receive .receive-container-new__content-title{margin:3.125vmin auto 0;width:28.38542vmin;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.34375vmin;font-style:normal;font-weight:500;line-height:3.125vmin}.coupon-receive .receive-container-new__content-price{margin-top:1.5625vmin;font-family:"D-DIN";color:#fffce0;font-size:5.20833vmin;font-style:normal;font-weight:600;text-align:center;display:flex;width:100%;justify-content:center;align-items:baseline}.coupon-receive .receive-container-new__content-price .smallIcon{display:inline-block;font-size:3.64583vmin;line-height:3.64583vmin;font-family:"D-DIN"}.coupon-receive .receive-container-new__content-price .boldIcon{font-family:"D-DIN"}.coupon-receive .receive-container-new__content-detail{margin-top:.78125vmin;color:#fffce0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:400;line-height:3.125vmin}.coupon-receive .receive-container-new__content-gift .label{margin:3.125vmin auto 1.5625vmin;width:28.38542vmin;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fffce0;font-family:"PingFang SC";font-size:4.16667vmin;font-weight:600;height:5.20833vmin;line-height:5.20833vmin}.coupon-receive .receive-container-new__content-gift .title{display:flex;justify-content:center;align-items:center;height:6.25vmin}.coupon-receive .receive-container-new__content-gift .title .title-txt{width:23.4375vmin;color:#fffce0;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-family:"PingFang SC";font-size:2.34375vmin;font-weight:600;line-height:3.125vmin;overflow:hidden}.coupon-receive .receive-container-new__content-describe{margin-top:4.94792vmin;font-family:"PingFang SC";font-size:1.82292vmin;font-style:normal;font-weight:400;line-height:2.60417vmin}.coupon-receive .receive-container-new__content-describe text{width:100%;overflow:hidden;color:#ffffff;text-align:center;text-overflow:ellipsis;display:block;margin-bottom:.52083vmin}.coupon-receive .receive-container-new__btn_box{display:flex;align-items:center;justify-content:center;padding:0 2.08333vmin;box-sizing:border-box}.coupon-receive .receive-container-new__coupon_btn{display:flex;width:10.41667vmin;color:#fff1c0;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #F8FFAA;background:linear-gradient(0deg, #ffffe91a 0%, #ffe4991a 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__btn{display:flex;width:14.0625vmin;height:5.20833vmin;line-height:5.20833vmin;justify-content:center;align-items:center;gap:.52083vmin;flex-shrink:0;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #ff5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-style:normal;font-weight:500;line-height:3.125vmin;box-sizing:border-box;margin:1.5625vmin auto 0;cursor:pointer}.coupon-receive .receive-container-new__gift-check-btn{display:flex;width:25vmin;padding:1.30208vmin 4.03646vmin;box-sizing:border-box;justify-content:center;align-items:center;border-radius:2.60417vmin;border:.13021vmin solid #f8ffaa;background:linear-gradient(0deg, #ffffe9 0%, #ffe499 100%);box-shadow:0 .26042vmin .78125vmin 0 #FF5034,0 .52083vmin .52083vmin 0 #ffffff33 inset;color:#ff5429;text-align:center;font-family:"PingFang SC";font-size:2.08333vmin;font-weight:600;margin-top:1.5625vmin;height:5.72917vmin}.coupon-receive .receive-container-new__close{position:absolute;transform:translateY(-2.60417vmin);top:0;right:0;width:4.16667vmin;height:4.16667vmin}}