xiaoe_mp_npm 1.0.12-alpha2 → 1.0.12-alpha4

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.
@@ -19,15 +19,20 @@ $deviceWidth: 750;
19
19
  flex-direction: column;
20
20
  position: relative;
21
21
  width: 100%;
22
- min-height: vmin(400);
23
- background-image: none;
22
+ min-height: vmin(360);
23
+ background: none !important;
24
24
  .couponValue {
25
25
  padding: vmin(40) vmin(16) vmin(16) vmin(16);
26
- width: 100%;
27
- height: vmin(200);
26
+ width: 98.5%;
27
+ height: vmin(160);
28
28
  background: rgba(255, 120, 31, 1);
29
29
  color: #fff;
30
30
  border-radius: vmin(16) vmin(16) 0 0;
31
+ margin: 0;
32
+ .couponUseCondition{
33
+ color: #fff;
34
+ padding-top: vmin(0) !important;
35
+ }
31
36
  }
32
37
 
33
38
  .couponInfo {
@@ -35,6 +40,7 @@ $deviceWidth: 750;
35
40
  background: rgba(255, 255, 255, 1);
36
41
  padding: vmin(16) vmin(16) vmin(30) vmin(16);
37
42
  border-radius: 0 0 vmin(16) vmin(16);
43
+ margin: 0;
38
44
 
39
45
  .couponName {
40
46
  height: vmin(32);
@@ -68,7 +74,6 @@ $deviceWidth: 750;
68
74
  }
69
75
  }
70
76
  }
71
-
72
77
  }
73
78
 
74
79
  &.vertical-screen {
@@ -81,15 +86,27 @@ $deviceWidth: 750;
81
86
 
82
87
  .coupon_style1 {
83
88
  height: vmin(176);
89
+ width: vmin(476);
84
90
  background: url('https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png') center no-repeat !important;
85
91
  .couponValue {
86
- width: vmin(190);
92
+ width: vmin(192);
93
+ margin-left: 1vmin;
94
+ box-sizing: border-box;
95
+ padding: 0 .4vmin;
96
+ .couponPriceWrap{
97
+ margin-top: -1.6vmin;
98
+ }
99
+ .coupon-price-long{
100
+ margin-top: 1vmin;
101
+ }
87
102
  }
88
103
  .couponName {
89
104
  font-size: vmin(24) !important;
90
105
  }
91
106
  .couponInfo {
107
+ height: vmin(170);
92
108
  justify-content: flex-start;
109
+ overflow: hidden;
93
110
  padding: vmin(16) vmin(22) vmin(16) vmin(26);
94
111
  }
95
112
  .couponState {
@@ -107,9 +124,6 @@ $deviceWidth: 750;
107
124
  cursor: pointer;
108
125
  font-size: vmin(24);
109
126
  font-weight: 500;
110
- &.vertical-btn {
111
- width: vmin(88);
112
- }
113
127
  }
114
128
  }
115
129
  }
@@ -145,6 +159,17 @@ $deviceWidth: 750;
145
159
  font-size: vmin(36);
146
160
  font-weight: 500;
147
161
  }
162
+ .giftCouponTitle{
163
+ font-size: vmin(32);
164
+ font-weight: 500;
165
+ overflow: hidden;
166
+ text-overflow: ellipsis;
167
+ display: -webkit-box;
168
+ -webkit-line-clamp: 2;
169
+ -webkit-box-orient: vertical;
170
+ text-align: center;
171
+
172
+ }
148
173
  .couponPriceWrap {
149
174
  position: relative;
150
175
  display: flex;
@@ -160,9 +185,6 @@ $deviceWidth: 750;
160
185
  .coupon-price {
161
186
  display: flex;
162
187
  font-size: vmin(80);
163
- &.discount-percent {
164
- margin-top: -1.8vmin;
165
- }
166
188
  }
167
189
 
168
190
  .discountFont {
@@ -170,7 +192,10 @@ $deviceWidth: 750;
170
192
  font-weight: 500;
171
193
  }
172
194
  }
173
-
195
+ .discount-percent {
196
+ margin-top: -2vmin;
197
+ padding-top: vmin(6) !important;
198
+ }
174
199
  .couponUseCondition {
175
200
  color: #FF5429;
176
201
  font-size: vmin(24);
@@ -500,9 +525,6 @@ $deviceWidth: 750;
500
525
  cursor: pointer;
501
526
  font-size: vmin(24);
502
527
  font-weight: 500;
503
- &.vertical-btn {
504
- width: vmin(88);
505
- }
506
528
  }
507
529
  }
508
530
  }
@@ -12,7 +12,7 @@
12
12
  <view wx:else class="couponValue">
13
13
  <view class="couponPriceWrap {{item.discount_way == 2 && aliveMode?'couponPriceWrap-discount-v':''}}">
14
14
  <!-- discount_way优惠方式 1-满减券 2-折扣券 -->
15
- <block wx:if="{{item.discount_way == 1}}">
15
+ <block wx:if="{{item.discount_way == 1}}" >
16
16
  <view class="coupon-symbol">¥</view>
17
17
  <view style="font-size: {{isLongNumStyle1}}" class="coupon-price {{isVerLongNumStyle1?'coupon-price-long':''}}" >
18
18
  <view>{{price.ToFilter(item.price)}}</view>
@@ -30,9 +30,9 @@
30
30
  </block>
31
31
  </view>
32
32
  <view wx:if="{{item.require_price == 0}}"
33
- class="couponUseCondition">无门槛</view>
33
+ class="couponUseCondition {{item.discount_way == 2 ? 'discount-percent':''}}">无门槛</view>
34
34
  <view wx:if="{{item.require_price != 0}}"
35
- class="couponUseCondition">
35
+ class="couponUseCondition {{item.discount_way == 2 ? 'discount-percent':''}}">
36
36
  满{{item.require_price / 100}}元可用
37
37
  </view>
38
38
  </view>
@@ -13,22 +13,28 @@
13
13
  flex-direction: column;
14
14
  position: relative;
15
15
  width: 100%;
16
- min-height: 53.33333vmin;
17
- background-image: none;
16
+ min-height: 48vmin;
17
+ background: none !important;
18
18
  }
19
19
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue {
20
20
  padding: 5.33333vmin 2.13333vmin 2.13333vmin 2.13333vmin;
21
- width: 100%;
22
- height: 26.66667vmin;
21
+ width: 98.5%;
22
+ height: 21.33333vmin;
23
23
  background: #ff781f;
24
24
  color: #fff;
25
25
  border-radius: 2.13333vmin 2.13333vmin 0 0;
26
+ margin: 0;
27
+ }
28
+ .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition {
29
+ color: #fff;
30
+ padding-top: 0vmin !important;
26
31
  }
27
32
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo {
28
33
  flex: 1;
29
34
  background: #fff;
30
35
  padding: 2.13333vmin 2.13333vmin 4vmin 2.13333vmin;
31
36
  border-radius: 0 0 2.13333vmin 2.13333vmin;
37
+ margin: 0;
32
38
  }
33
39
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName {
34
40
  height: 4.26667vmin;
@@ -63,16 +69,28 @@
63
69
  }
64
70
  .styleType1_wrapper.vertical-screen .coupon_style1 {
65
71
  height: 23.46667vmin;
72
+ width: 63.46667vmin;
66
73
  background: url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important;
67
74
  }
68
75
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue {
69
- width: 25.33333vmin;
76
+ width: 25.6vmin;
77
+ margin-left: 1vmin;
78
+ box-sizing: border-box;
79
+ padding: 0 0.4vmin;
80
+ }
81
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap {
82
+ margin-top: -1.6vmin;
83
+ }
84
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long {
85
+ margin-top: 1vmin;
70
86
  }
71
87
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponName {
72
88
  font-size: 3.2vmin !important;
73
89
  }
74
90
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo {
91
+ height: 22.66667vmin;
75
92
  justify-content: flex-start;
93
+ overflow: hidden;
76
94
  padding: 2.13333vmin 2.93333vmin 2.13333vmin 3.46667vmin;
77
95
  }
78
96
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponState {
@@ -91,9 +109,6 @@
91
109
  font-size: 3.2vmin;
92
110
  font-weight: 500;
93
111
  }
94
- .styleType1_wrapper.vertical-screen .coupon_style1 .couponState.vertical-btn {
95
- width: 11.73333vmin;
96
- }
97
112
  .styleType1_wrapper.full-screen-list {
98
113
  width: 92.53333vmin;
99
114
  margin: 3.2vmin 4.26667vmin 0 4.26667vmin;
@@ -123,6 +138,16 @@
123
138
  font-size: 4.8vmin;
124
139
  font-weight: 500;
125
140
  }
141
+ .styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle {
142
+ font-size: 4.26667vmin;
143
+ font-weight: 500;
144
+ overflow: hidden;
145
+ text-overflow: ellipsis;
146
+ display: -webkit-box;
147
+ -webkit-line-clamp: 2;
148
+ -webkit-box-orient: vertical;
149
+ text-align: center;
150
+ }
126
151
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
127
152
  position: relative;
128
153
  display: flex;
@@ -137,13 +162,14 @@
137
162
  display: flex;
138
163
  font-size: 10.66667vmin;
139
164
  }
140
- .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent {
141
- margin-top: -1.8vmin;
142
- }
143
165
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
144
166
  font-size: 4.26667vmin;
145
167
  font-weight: 500;
146
168
  }
169
+ .styleType1_wrapper .coupon_style1 .couponValue .discount-percent {
170
+ margin-top: -2vmin;
171
+ padding-top: 0.8vmin !important;
172
+ }
147
173
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
148
174
  color: #FF5429;
149
175
  font-size: 3.2vmin;
@@ -429,9 +455,6 @@
429
455
  font-size: 3.2vmin;
430
456
  font-weight: 500;
431
457
  }
432
- .styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState.vertical-btn {
433
- width: 11.73333vmin;
434
- }
435
458
  .styleType1_wrapper-v.full-screen-list {
436
459
  width: 92.53333vmin;
437
460
  margin: 3.2vmin 4.26667vmin 0 4.26667vmin;
@@ -572,22 +595,28 @@
572
595
  flex-direction: column;
573
596
  position: relative;
574
597
  width: 100%;
575
- min-height: 26.04167vmin;
576
- background-image: none;
598
+ min-height: 23.4375vmin;
599
+ background: none !important;
577
600
  }
578
601
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue {
579
602
  padding: 2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;
580
- width: 100%;
581
- height: 13.02083vmin;
603
+ width: 98.5%;
604
+ height: 10.41667vmin;
582
605
  background: #ff781f;
583
606
  color: #fff;
584
607
  border-radius: 1.04167vmin 1.04167vmin 0 0;
608
+ margin: 0;
609
+ }
610
+ .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition {
611
+ color: #fff;
612
+ padding-top: 0vmin !important;
585
613
  }
586
614
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo {
587
615
  flex: 1;
588
616
  background: #fff;
589
617
  padding: 1.04167vmin 1.04167vmin 1.95312vmin 1.04167vmin;
590
618
  border-radius: 0 0 1.04167vmin 1.04167vmin;
619
+ margin: 0;
591
620
  }
592
621
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName {
593
622
  height: 2.08333vmin;
@@ -622,16 +651,28 @@
622
651
  }
623
652
  .styleType1_wrapper.vertical-screen .coupon_style1 {
624
653
  height: 11.45833vmin;
654
+ width: 30.98958vmin;
625
655
  background: url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important;
626
656
  }
627
657
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue {
628
- width: 12.36979vmin;
658
+ width: 12.5vmin;
659
+ margin-left: 1vmin;
660
+ box-sizing: border-box;
661
+ padding: 0 0.4vmin;
662
+ }
663
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap {
664
+ margin-top: -1.6vmin;
665
+ }
666
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long {
667
+ margin-top: 1vmin;
629
668
  }
630
669
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponName {
631
670
  font-size: 1.5625vmin !important;
632
671
  }
633
672
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo {
673
+ height: 11.06771vmin;
634
674
  justify-content: flex-start;
675
+ overflow: hidden;
635
676
  padding: 1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin;
636
677
  }
637
678
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponState {
@@ -650,9 +691,6 @@
650
691
  font-size: 1.5625vmin;
651
692
  font-weight: 500;
652
693
  }
653
- .styleType1_wrapper.vertical-screen .coupon_style1 .couponState.vertical-btn {
654
- width: 5.72917vmin;
655
- }
656
694
  .styleType1_wrapper.full-screen-list {
657
695
  width: 45.18229vmin;
658
696
  margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
@@ -682,6 +720,16 @@
682
720
  font-size: 2.34375vmin;
683
721
  font-weight: 500;
684
722
  }
723
+ .styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle {
724
+ font-size: 2.08333vmin;
725
+ font-weight: 500;
726
+ overflow: hidden;
727
+ text-overflow: ellipsis;
728
+ display: -webkit-box;
729
+ -webkit-line-clamp: 2;
730
+ -webkit-box-orient: vertical;
731
+ text-align: center;
732
+ }
685
733
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
686
734
  position: relative;
687
735
  display: flex;
@@ -696,13 +744,14 @@
696
744
  display: flex;
697
745
  font-size: 5.20833vmin;
698
746
  }
699
- .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent {
700
- margin-top: -1.8vmin;
701
- }
702
747
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
703
748
  font-size: 2.08333vmin;
704
749
  font-weight: 500;
705
750
  }
751
+ .styleType1_wrapper .coupon_style1 .couponValue .discount-percent {
752
+ margin-top: -2vmin;
753
+ padding-top: 0.39062vmin !important;
754
+ }
706
755
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
707
756
  color: #FF5429;
708
757
  font-size: 1.5625vmin;
@@ -988,9 +1037,6 @@
988
1037
  font-size: 1.5625vmin;
989
1038
  font-weight: 500;
990
1039
  }
991
- .styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState.vertical-btn {
992
- width: 5.72917vmin;
993
- }
994
1040
  .styleType1_wrapper-v.full-screen-list {
995
1041
  width: 45.18229vmin;
996
1042
  margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
@@ -1132,22 +1178,28 @@
1132
1178
  flex-direction: column;
1133
1179
  position: relative;
1134
1180
  width: 100%;
1135
- min-height: 31.74603vmin;
1136
- background-image: none;
1181
+ min-height: 28.57143vmin;
1182
+ background: none !important;
1137
1183
  }
1138
1184
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue {
1139
1185
  padding: 3.1746vmin 1.26984vmin 1.26984vmin 1.26984vmin;
1140
- width: 100%;
1141
- height: 15.87302vmin;
1186
+ width: 98.5%;
1187
+ height: 12.69841vmin;
1142
1188
  background: #ff781f;
1143
1189
  color: #fff;
1144
1190
  border-radius: 1.26984vmin 1.26984vmin 0 0;
1191
+ margin: 0;
1192
+ }
1193
+ .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition {
1194
+ color: #fff;
1195
+ padding-top: 0vmin !important;
1145
1196
  }
1146
1197
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo {
1147
1198
  flex: 1;
1148
1199
  background: #fff;
1149
1200
  padding: 1.26984vmin 1.26984vmin 2.38095vmin 1.26984vmin;
1150
1201
  border-radius: 0 0 1.26984vmin 1.26984vmin;
1202
+ margin: 0;
1151
1203
  }
1152
1204
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName {
1153
1205
  height: 2.53968vmin;
@@ -1182,16 +1234,28 @@
1182
1234
  }
1183
1235
  .styleType1_wrapper.vertical-screen .coupon_style1 {
1184
1236
  height: 13.96825vmin;
1237
+ width: 37.77778vmin;
1185
1238
  background: url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important;
1186
1239
  }
1187
1240
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue {
1188
- width: 15.07937vmin;
1241
+ width: 15.2381vmin;
1242
+ margin-left: 1vmin;
1243
+ box-sizing: border-box;
1244
+ padding: 0 0.4vmin;
1245
+ }
1246
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap {
1247
+ margin-top: -1.6vmin;
1248
+ }
1249
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long {
1250
+ margin-top: 1vmin;
1189
1251
  }
1190
1252
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponName {
1191
1253
  font-size: 1.90476vmin !important;
1192
1254
  }
1193
1255
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo {
1256
+ height: 13.49206vmin;
1194
1257
  justify-content: flex-start;
1258
+ overflow: hidden;
1195
1259
  padding: 1.26984vmin 1.74603vmin 1.26984vmin 2.06349vmin;
1196
1260
  }
1197
1261
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponState {
@@ -1210,9 +1274,6 @@
1210
1274
  font-size: 1.90476vmin;
1211
1275
  font-weight: 500;
1212
1276
  }
1213
- .styleType1_wrapper.vertical-screen .coupon_style1 .couponState.vertical-btn {
1214
- width: 6.98413vmin;
1215
- }
1216
1277
  .styleType1_wrapper.full-screen-list {
1217
1278
  width: 55.07937vmin;
1218
1279
  margin: 1.90476vmin 2.53968vmin 0 2.53968vmin;
@@ -1242,6 +1303,16 @@
1242
1303
  font-size: 2.85714vmin;
1243
1304
  font-weight: 500;
1244
1305
  }
1306
+ .styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle {
1307
+ font-size: 2.53968vmin;
1308
+ font-weight: 500;
1309
+ overflow: hidden;
1310
+ text-overflow: ellipsis;
1311
+ display: -webkit-box;
1312
+ -webkit-line-clamp: 2;
1313
+ -webkit-box-orient: vertical;
1314
+ text-align: center;
1315
+ }
1245
1316
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
1246
1317
  position: relative;
1247
1318
  display: flex;
@@ -1256,13 +1327,14 @@
1256
1327
  display: flex;
1257
1328
  font-size: 6.34921vmin;
1258
1329
  }
1259
- .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent {
1260
- margin-top: -1.8vmin;
1261
- }
1262
1330
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
1263
1331
  font-size: 2.53968vmin;
1264
1332
  font-weight: 500;
1265
1333
  }
1334
+ .styleType1_wrapper .coupon_style1 .couponValue .discount-percent {
1335
+ margin-top: -2vmin;
1336
+ padding-top: 0.47619vmin !important;
1337
+ }
1266
1338
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
1267
1339
  color: #FF5429;
1268
1340
  font-size: 1.90476vmin;
@@ -1548,9 +1620,6 @@
1548
1620
  font-size: 1.90476vmin;
1549
1621
  font-weight: 500;
1550
1622
  }
1551
- .styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState.vertical-btn {
1552
- width: 6.98413vmin;
1553
- }
1554
1623
  .styleType1_wrapper-v.full-screen-list {
1555
1624
  width: 55.07937vmin;
1556
1625
  margin: 1.90476vmin 2.53968vmin 0 2.53968vmin;
@@ -1692,22 +1761,28 @@
1692
1761
  flex-direction: column;
1693
1762
  position: relative;
1694
1763
  width: 100%;
1695
- min-height: 26.04167vmin;
1696
- background-image: none;
1764
+ min-height: 23.4375vmin;
1765
+ background: none !important;
1697
1766
  }
1698
1767
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue {
1699
1768
  padding: 2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;
1700
- width: 100%;
1701
- height: 13.02083vmin;
1769
+ width: 98.5%;
1770
+ height: 10.41667vmin;
1702
1771
  background: #ff781f;
1703
1772
  color: #fff;
1704
1773
  border-radius: 1.04167vmin 1.04167vmin 0 0;
1774
+ margin: 0;
1775
+ }
1776
+ .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue .couponUseCondition {
1777
+ color: #fff;
1778
+ padding-top: 0vmin !important;
1705
1779
  }
1706
1780
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo {
1707
1781
  flex: 1;
1708
1782
  background: #fff;
1709
1783
  padding: 1.04167vmin 1.04167vmin 1.95312vmin 1.04167vmin;
1710
1784
  border-radius: 0 0 1.04167vmin 1.04167vmin;
1785
+ margin: 0;
1711
1786
  }
1712
1787
  .styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponInfo .couponName {
1713
1788
  height: 2.08333vmin;
@@ -1742,16 +1817,28 @@
1742
1817
  }
1743
1818
  .styleType1_wrapper.vertical-screen .coupon_style1 {
1744
1819
  height: 11.45833vmin;
1820
+ width: 30.98958vmin;
1745
1821
  background: url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important;
1746
1822
  }
1747
1823
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue {
1748
- width: 12.36979vmin;
1824
+ width: 12.5vmin;
1825
+ margin-left: 1vmin;
1826
+ box-sizing: border-box;
1827
+ padding: 0 0.4vmin;
1828
+ }
1829
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .couponPriceWrap {
1830
+ margin-top: -1.6vmin;
1831
+ }
1832
+ .styleType1_wrapper.vertical-screen .coupon_style1 .couponValue .coupon-price-long {
1833
+ margin-top: 1vmin;
1749
1834
  }
1750
1835
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponName {
1751
1836
  font-size: 1.5625vmin !important;
1752
1837
  }
1753
1838
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo {
1839
+ height: 11.06771vmin;
1754
1840
  justify-content: flex-start;
1841
+ overflow: hidden;
1755
1842
  padding: 1.04167vmin 1.43229vmin 1.04167vmin 1.69271vmin;
1756
1843
  }
1757
1844
  .styleType1_wrapper.vertical-screen .coupon_style1 .couponState {
@@ -1770,9 +1857,6 @@
1770
1857
  font-size: 1.5625vmin;
1771
1858
  font-weight: 500;
1772
1859
  }
1773
- .styleType1_wrapper.vertical-screen .coupon_style1 .couponState.vertical-btn {
1774
- width: 5.72917vmin;
1775
- }
1776
1860
  .styleType1_wrapper.full-screen-list {
1777
1861
  width: 45.18229vmin;
1778
1862
  margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
@@ -1802,6 +1886,16 @@
1802
1886
  font-size: 2.34375vmin;
1803
1887
  font-weight: 500;
1804
1888
  }
1889
+ .styleType1_wrapper .coupon_style1 .couponValue .giftCouponTitle {
1890
+ font-size: 2.08333vmin;
1891
+ font-weight: 500;
1892
+ overflow: hidden;
1893
+ text-overflow: ellipsis;
1894
+ display: -webkit-box;
1895
+ -webkit-line-clamp: 2;
1896
+ -webkit-box-orient: vertical;
1897
+ text-align: center;
1898
+ }
1805
1899
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap {
1806
1900
  position: relative;
1807
1901
  display: flex;
@@ -1816,13 +1910,14 @@
1816
1910
  display: flex;
1817
1911
  font-size: 5.20833vmin;
1818
1912
  }
1819
- .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .coupon-price.discount-percent {
1820
- margin-top: -1.8vmin;
1821
- }
1822
1913
  .styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont {
1823
1914
  font-size: 2.08333vmin;
1824
1915
  font-weight: 500;
1825
1916
  }
1917
+ .styleType1_wrapper .coupon_style1 .couponValue .discount-percent {
1918
+ margin-top: -2vmin;
1919
+ padding-top: 0.39062vmin !important;
1920
+ }
1826
1921
  .styleType1_wrapper .coupon_style1 .couponValue .couponUseCondition {
1827
1922
  color: #FF5429;
1828
1923
  font-size: 1.5625vmin;
@@ -2108,9 +2203,6 @@
2108
2203
  font-size: 1.5625vmin;
2109
2204
  font-weight: 500;
2110
2205
  }
2111
- .styleType1_wrapper-v.vertical-screen .coupon_style1 .couponState.vertical-btn {
2112
- width: 5.72917vmin;
2113
- }
2114
2206
  .styleType1_wrapper-v.full-screen-list {
2115
2207
  width: 45.18229vmin;
2116
2208
  margin: 1.5625vmin 2.08333vmin 0 2.08333vmin;
@@ -30,10 +30,16 @@ $deviceWidth: 750;
30
30
  display: flex;
31
31
  align-items: baseline;
32
32
  flex-direction: column;
33
+ height: vmin(245);
33
34
  .gift-coupon-name {
34
35
  color: #fd2b54;
35
36
  font-size: vmin(36);
36
37
  font-weight: 500;
38
+ overflow: hidden;
39
+ text-overflow: ellipsis;
40
+ display: -webkit-box;
41
+ -webkit-line-clamp: 2;
42
+ -webkit-box-orient: vertical;
37
43
  }
38
44
  .coupon-use-condition{
39
45
  margin-top: vmin(28);
@@ -12,18 +12,19 @@
12
12
  <view class="receive-container" style="background-image: url({{backgroundImageUrl}});">
13
13
  <view class="receive-container__content">
14
14
  <view wx:if="{{couponInfo.coupon_type == 6}}" class="receive-container__content-gift-coupon">
15
- <view class="gift-coupon-name">礼品券</view>
15
+ <view>礼品券</view>
16
+ <view class="gift-coupon-name">{{couponInfo.title}}</view>
16
17
  <view wx:if="{{!couponInfo.valid_day && couponInfo.valid_at && couponInfo.invalid_at}}" class="coupon-use-condition">
17
18
  有效期至:{{price.formatDateToMinte(couponInfo.invalid_at) }}
18
19
  </view>
19
20
  </view>
20
21
  <view wx:else class="receive-container__content-price">
21
- <view wx:if="{{couponInfo.discount_way === 1}}">
22
+ <view wx:if="{{couponInfo.discount_way == 1}}">
22
23
  <span class="smallIcon">¥</span>
23
24
  <span class="boldIcon">{{ price.ToFilter(couponInfo.price) }}</span>
24
25
  <span class="smallIcon" wx:if="{{isShowPoint}}">.{{ price.fixedFont(couponInfo.price) }}</span>
25
26
  </view>
26
- <view class="discount-price" wx:if="{{couponInfo.discount_way === 2}}">
27
+ <view class="discount-price" wx:if="{{couponInfo.discount_way == 2}}">
27
28
  <view class="disc-detail">{{couponInfo.discount_percent/10}}</view>
28
29
  <view>折</view>
29
30
  </view>
@@ -26,11 +26,17 @@
26
26
  display: flex;
27
27
  align-items: baseline;
28
28
  flex-direction: column;
29
+ height: 32.66667vmin;
29
30
  }
30
31
  .coupon-receive .receive-popup .receive-container__content-gift-coupon .gift-coupon-name {
31
32
  color: #fd2b54;
32
33
  font-size: 4.8vmin;
33
34
  font-weight: 500;
35
+ overflow: hidden;
36
+ text-overflow: ellipsis;
37
+ display: -webkit-box;
38
+ -webkit-line-clamp: 2;
39
+ -webkit-box-orient: vertical;
34
40
  }
35
41
  .coupon-receive .receive-popup .receive-container__content-gift-coupon .coupon-use-condition {
36
42
  margin-top: 3.73333vmin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xiaoe_mp_npm",
3
- "version": "1.0.12-alpha2",
3
+ "version": "1.0.12-alpha4",
4
4
  "description": "",
5
5
  "main": "miniprogram_dist/index.js",
6
6
  "scripts": {
@@ -19,15 +19,20 @@ $deviceWidth: 750;
19
19
  flex-direction: column;
20
20
  position: relative;
21
21
  width: 100%;
22
- min-height: vmin(400);
23
- background-image: none;
22
+ min-height: vmin(360);
23
+ background: none !important;
24
24
  .couponValue {
25
25
  padding: vmin(40) vmin(16) vmin(16) vmin(16);
26
- width: 100%;
27
- height: vmin(200);
26
+ width: 98.5%;
27
+ height: vmin(160);
28
28
  background: rgba(255, 120, 31, 1);
29
29
  color: #fff;
30
30
  border-radius: vmin(16) vmin(16) 0 0;
31
+ margin: 0;
32
+ .couponUseCondition{
33
+ color: #fff;
34
+ padding-top: vmin(0) !important;
35
+ }
31
36
  }
32
37
 
33
38
  .couponInfo {
@@ -35,6 +40,7 @@ $deviceWidth: 750;
35
40
  background: rgba(255, 255, 255, 1);
36
41
  padding: vmin(16) vmin(16) vmin(30) vmin(16);
37
42
  border-radius: 0 0 vmin(16) vmin(16);
43
+ margin: 0;
38
44
 
39
45
  .couponName {
40
46
  height: vmin(32);
@@ -68,7 +74,6 @@ $deviceWidth: 750;
68
74
  }
69
75
  }
70
76
  }
71
-
72
77
  }
73
78
 
74
79
  &.vertical-screen {
@@ -81,15 +86,27 @@ $deviceWidth: 750;
81
86
 
82
87
  .coupon_style1 {
83
88
  height: vmin(176);
89
+ width: vmin(476);
84
90
  background: url('https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png') center no-repeat !important;
85
91
  .couponValue {
86
- width: vmin(190);
92
+ width: vmin(192);
93
+ margin-left: 1vmin;
94
+ box-sizing: border-box;
95
+ padding: 0 .4vmin;
96
+ .couponPriceWrap{
97
+ margin-top: -1.6vmin;
98
+ }
99
+ .coupon-price-long{
100
+ margin-top: 1vmin;
101
+ }
87
102
  }
88
103
  .couponName {
89
104
  font-size: vmin(24) !important;
90
105
  }
91
106
  .couponInfo {
107
+ height: vmin(170);
92
108
  justify-content: flex-start;
109
+ overflow: hidden;
93
110
  padding: vmin(16) vmin(22) vmin(16) vmin(26);
94
111
  }
95
112
  .couponState {
@@ -107,9 +124,6 @@ $deviceWidth: 750;
107
124
  cursor: pointer;
108
125
  font-size: vmin(24);
109
126
  font-weight: 500;
110
- &.vertical-btn {
111
- width: vmin(88);
112
- }
113
127
  }
114
128
  }
115
129
  }
@@ -145,6 +159,17 @@ $deviceWidth: 750;
145
159
  font-size: vmin(36);
146
160
  font-weight: 500;
147
161
  }
162
+ .giftCouponTitle{
163
+ font-size: vmin(32);
164
+ font-weight: 500;
165
+ overflow: hidden;
166
+ text-overflow: ellipsis;
167
+ display: -webkit-box;
168
+ -webkit-line-clamp: 2;
169
+ -webkit-box-orient: vertical;
170
+ text-align: center;
171
+
172
+ }
148
173
  .couponPriceWrap {
149
174
  position: relative;
150
175
  display: flex;
@@ -160,9 +185,6 @@ $deviceWidth: 750;
160
185
  .coupon-price {
161
186
  display: flex;
162
187
  font-size: vmin(80);
163
- &.discount-percent {
164
- margin-top: -1.8vmin;
165
- }
166
188
  }
167
189
 
168
190
  .discountFont {
@@ -170,7 +192,10 @@ $deviceWidth: 750;
170
192
  font-weight: 500;
171
193
  }
172
194
  }
173
-
195
+ .discount-percent {
196
+ margin-top: -2vmin;
197
+ padding-top: vmin(6) !important;
198
+ }
174
199
  .couponUseCondition {
175
200
  color: #FF5429;
176
201
  font-size: vmin(24);
@@ -500,9 +525,6 @@ $deviceWidth: 750;
500
525
  cursor: pointer;
501
526
  font-size: vmin(24);
502
527
  font-weight: 500;
503
- &.vertical-btn {
504
- width: vmin(88);
505
- }
506
528
  }
507
529
  }
508
530
  }
@@ -12,7 +12,7 @@
12
12
  <view wx:else class="couponValue">
13
13
  <view class="couponPriceWrap {{item.discount_way == 2 && aliveMode?'couponPriceWrap-discount-v':''}}">
14
14
  <!-- discount_way优惠方式 1-满减券 2-折扣券 -->
15
- <block wx:if="{{item.discount_way == 1}}">
15
+ <block wx:if="{{item.discount_way == 1}}" >
16
16
  <view class="coupon-symbol">¥</view>
17
17
  <view style="font-size: {{isLongNumStyle1}}" class="coupon-price {{isVerLongNumStyle1?'coupon-price-long':''}}" >
18
18
  <view>{{price.ToFilter(item.price)}}</view>
@@ -30,9 +30,9 @@
30
30
  </block>
31
31
  </view>
32
32
  <view wx:if="{{item.require_price == 0}}"
33
- class="couponUseCondition">无门槛</view>
33
+ class="couponUseCondition {{item.discount_way == 2 ? 'discount-percent':''}}">无门槛</view>
34
34
  <view wx:if="{{item.require_price != 0}}"
35
- class="couponUseCondition">
35
+ class="couponUseCondition {{item.discount_way == 2 ? 'discount-percent':''}}">
36
36
  满{{item.require_price / 100}}元可用
37
37
  </view>
38
38
  </view>
@@ -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:53.33333vmin;background-image:none}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:5.33333vmin 2.13333vmin 2.13333vmin 2.13333vmin;width:100%;height:26.66667vmin;background:#ff781f;color:#fff;border-radius:2.13333vmin 2.13333vmin 0 0}.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}.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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:4.26667vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:23.46667vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:25.33333vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:3.2vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:11.73333vmin}.styleType1_wrapper.full-screen-list{width:92.53333vmin;margin:3.2vmin 4.26667vmin 0 4.26667vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:26.93333vmin}.styleType1_wrapper .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 .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 .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 .coupon-price.discount-percent{margin-top:-1.8vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:4.26667vmin;font-weight:500}.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:2.13333vmin 0 2.13333vmin 2.66667vmin;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;background:#FF5429;border-radius:6.4vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.33333vmin}.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{color:#fff;font-size:3.2vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:23.46667vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:11.73333vmin}.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"}@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:26.04167vmin;background-image:none}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;width:100%;height:13.02083vmin;background:#ff781f;color:#fff;border-radius:1.04167vmin 1.04167vmin 0 0}.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}.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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:11.45833vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.36979vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:5.72917vmin}.styleType1_wrapper.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:13.15104vmin}.styleType1_wrapper .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 .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 .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 .coupon-price.discount-percent{margin-top:-1.8vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.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:1.04167vmin 0 1.04167vmin 1.30208vmin;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;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.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{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:11.45833vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:5.72917vmin}.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"}}@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:31.74603vmin;background-image:none}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:3.1746vmin 1.26984vmin 1.26984vmin 1.26984vmin;width:100%;height:15.87302vmin;background:#ff781f;color:#fff;border-radius:1.26984vmin 1.26984vmin 0 0}.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}.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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.53968vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:13.96825vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:15.07937vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.90476vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:6.98413vmin}.styleType1_wrapper.full-screen-list{width:55.07937vmin;margin:1.90476vmin 2.53968vmin 0 2.53968vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:16.03175vmin}.styleType1_wrapper .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 .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 .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 .coupon-price.discount-percent{margin-top:-1.8vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.53968vmin;font-weight:500}.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:1.26984vmin 0 1.26984vmin 1.5873vmin;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;background:#FF5429;border-radius:3.80952vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.79365vmin}.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{color:#fff;font-size:1.90476vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:13.96825vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:6.98413vmin}.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"}}@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:26.04167vmin;background-image:none}.styleType1_wrapper.pop-card.vertical-screen .coupon_style1 .couponValue{padding:2.60417vmin 1.04167vmin 1.04167vmin 1.04167vmin;width:100%;height:13.02083vmin;background:#ff781f;color:#fff;border-radius:1.04167vmin 1.04167vmin 0 0}.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}.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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:11.45833vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.36979vmin}.styleType1_wrapper.vertical-screen .coupon_style1 .couponName{font-size:1.5625vmin !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponInfo{justify-content:flex-start;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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:5.72917vmin}.styleType1_wrapper.full-screen-list{width:45.18229vmin;margin:1.5625vmin 2.08333vmin 0 2.08333vmin}.styleType1_wrapper.full-screen-list .coupon_style1{height:13.15104vmin}.styleType1_wrapper .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 .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 .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 .coupon-price.discount-percent{margin-top:-1.8vmin}.styleType1_wrapper .coupon_style1 .couponValue .couponPriceWrap .discountFont{font-size:2.08333vmin;font-weight:500}.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:1.04167vmin 0 1.04167vmin 1.30208vmin;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;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.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{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:11.45833vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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.vertical-screen .coupon_style1 .couponState.vertical-btn{width:5.72917vmin}.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"}}
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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:4.26667vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:23.46667vmin;width:63.46667vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:25.6vmin;margin-left:1vmin;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:26.93333vmin}.styleType1_wrapper .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 .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:2.13333vmin 0 2.13333vmin 2.66667vmin;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;background:#FF5429;border-radius:6.4vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:1.33333vmin}.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{color:#fff;font-size:3.2vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:23.46667vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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"}@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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:11.45833vmin;width:30.98958vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.5vmin;margin-left:1vmin;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:13.15104vmin}.styleType1_wrapper .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 .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:1.04167vmin 0 1.04167vmin 1.30208vmin;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;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.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{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:11.45833vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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"}}@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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.53968vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:13.96825vmin;width:37.77778vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:15.2381vmin;margin-left:1vmin;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:16.03175vmin}.styleType1_wrapper .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 .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:1.26984vmin 0 1.26984vmin 1.5873vmin;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;background:#FF5429;border-radius:3.80952vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.79365vmin}.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{color:#fff;font-size:1.90476vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:13.96825vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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"}}@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;margin:0 auto}.styleType1_wrapper.vertical-screen.not-pop-card{margin-bottom:2.08333vmin}.styleType1_wrapper.vertical-screen .coupon_style1{height:11.45833vmin;width:30.98958vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.styleType1_wrapper.vertical-screen .coupon_style1 .couponValue{width:12.5vmin;margin-left:1vmin;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:13.15104vmin}.styleType1_wrapper .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 .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:1.04167vmin 0 1.04167vmin 1.30208vmin;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;background:#FF5429;border-radius:3.125vmin;text-align:center;color:#fff;border:none;cursor:pointer;margin-right:.65104vmin}.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{color:#fff;font-size:1.5625vmin;font-weight:500;text-align:center;font-family:"PingFang SC"}.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:11.45833vmin;background:url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/lwho4h4o0bls.png") center no-repeat !important}.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"}}
@@ -30,10 +30,16 @@ $deviceWidth: 750;
30
30
  display: flex;
31
31
  align-items: baseline;
32
32
  flex-direction: column;
33
+ height: vmin(245);
33
34
  .gift-coupon-name {
34
35
  color: #fd2b54;
35
36
  font-size: vmin(36);
36
37
  font-weight: 500;
38
+ overflow: hidden;
39
+ text-overflow: ellipsis;
40
+ display: -webkit-box;
41
+ -webkit-line-clamp: 2;
42
+ -webkit-box-orient: vertical;
37
43
  }
38
44
  .coupon-use-condition{
39
45
  margin-top: vmin(28);
@@ -12,18 +12,19 @@
12
12
  <view class="receive-container" style="background-image: url({{backgroundImageUrl}});">
13
13
  <view class="receive-container__content">
14
14
  <view wx:if="{{couponInfo.coupon_type == 6}}" class="receive-container__content-gift-coupon">
15
- <view class="gift-coupon-name">礼品券</view>
15
+ <view>礼品券</view>
16
+ <view class="gift-coupon-name">{{couponInfo.title}}</view>
16
17
  <view wx:if="{{!couponInfo.valid_day && couponInfo.valid_at && couponInfo.invalid_at}}" class="coupon-use-condition">
17
18
  有效期至:{{price.formatDateToMinte(couponInfo.invalid_at) }}
18
19
  </view>
19
20
  </view>
20
21
  <view wx:else class="receive-container__content-price">
21
- <view wx:if="{{couponInfo.discount_way === 1}}">
22
+ <view wx:if="{{couponInfo.discount_way == 1}}">
22
23
  <span class="smallIcon">¥</span>
23
24
  <span class="boldIcon">{{ price.ToFilter(couponInfo.price) }}</span>
24
25
  <span class="smallIcon" wx:if="{{isShowPoint}}">.{{ price.fixedFont(couponInfo.price) }}</span>
25
26
  </view>
26
- <view class="discount-price" wx:if="{{couponInfo.discount_way === 2}}">
27
+ <view class="discount-price" wx:if="{{couponInfo.discount_way == 2}}">
27
28
  <view class="disc-detail">{{couponInfo.discount_percent/10}}</view>
28
29
  <view>折</view>
29
30
  </view>
@@ -1 +1 @@
1
- .coupon-receive .receive-box{display:flex;flex-direction:column}.coupon-receive .receive-box-scale{transform:scale(80%);transform-origin:50% 10%}.coupon-receive .receive-popup{background-color:transparent;display:flex;flex-direction:column}.coupon-receive .receive-popup .receive-container{width:68.26667vmin;height:101.33333vmin;background-size:100% 100%}.coupon-receive .receive-popup .receive-container__content{display:flex;flex-direction:column;margin:37.33333vmin 4.26667vmin 4.26667vmin;padding:4.26667vmin 3.2vmin 3.2vmin}.coupon-receive .receive-popup .receive-container__content-gift-coupon{display:flex;align-items:baseline;flex-direction:column}.coupon-receive .receive-popup .receive-container__content-gift-coupon .gift-coupon-name{color:#fd2b54;font-size:4.8vmin;font-weight:500}.coupon-receive .receive-popup .receive-container__content-gift-coupon .coupon-use-condition{margin-top:3.73333vmin;color:#333333;font-size:3.73333vmin;font-weight:400}.coupon-receive .receive-popup .receive-container__content-price{font-weight:500;font-family:"PingFang SC";text-align:left}.coupon-receive .receive-popup .receive-container__content-price .discount-price{display:flex;align-items:baseline;color:#fd2b54;margin-top:-2.6vmin}.coupon-receive .receive-popup .receive-container__content-price .discount-price .disc-detail{font-size:12.26667vmin;line-height:12.26667vmin}.coupon-receive .receive-popup .receive-container__content-price .smallIcon{color:#fd2b54;font-size:5.33333vmin;line-height:5.33333vmin}.coupon-receive .receive-popup .receive-container__content-price .boldIcon{color:#fd2b54;font-size:10.66667vmin;line-height:10.66667vmin}.coupon-receive .receive-popup .receive-container__content-describe{margin-top:3.73333vmin;color:#333333;font-size:3.73333vmin;font-weight:400;font-family:"PingFang SC";text-align:left;line-height:5.33333vmin}.coupon-receive .receive-popup .receive-container__content-describe span{display:block;margin-bottom:1.06667vmin}.coupon-receive .receive-popup .receive-container__btn{width:53.33333vmin;height:10.66667vmin;border-radius:1.06667vmin;opacity:1;background:linear-gradient(270deg, #ff5820 0%, #ff4067 100%);color:#ffffff;font-size:4.26667vmin;font-weight:500;font-family:"PingFang SC";text-align:left;margin:5.33333vmin 7.46667vmin 7.46667vmin;display:flex;align-items:center;justify-content:center}.coupon-receive .receive-popup .receive-container__close{width:8.53333vmin;height:8.53333vmin;margin:4.26667vmin auto 0}
1
+ .coupon-receive .receive-box{display:flex;flex-direction:column}.coupon-receive .receive-box-scale{transform:scale(80%);transform-origin:50% 10%}.coupon-receive .receive-popup{background-color:transparent;display:flex;flex-direction:column}.coupon-receive .receive-popup .receive-container{width:68.26667vmin;height:101.33333vmin;background-size:100% 100%}.coupon-receive .receive-popup .receive-container__content{display:flex;flex-direction:column;margin:37.33333vmin 4.26667vmin 4.26667vmin;padding:4.26667vmin 3.2vmin 3.2vmin}.coupon-receive .receive-popup .receive-container__content-gift-coupon{display:flex;align-items:baseline;flex-direction:column;height:32.66667vmin}.coupon-receive .receive-popup .receive-container__content-gift-coupon .gift-coupon-name{color:#fd2b54;font-size:4.8vmin;font-weight:500;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.coupon-receive .receive-popup .receive-container__content-gift-coupon .coupon-use-condition{margin-top:3.73333vmin;color:#333333;font-size:3.73333vmin;font-weight:400}.coupon-receive .receive-popup .receive-container__content-price{font-weight:500;font-family:"PingFang SC";text-align:left}.coupon-receive .receive-popup .receive-container__content-price .discount-price{display:flex;align-items:baseline;color:#fd2b54;margin-top:-2.6vmin}.coupon-receive .receive-popup .receive-container__content-price .discount-price .disc-detail{font-size:12.26667vmin;line-height:12.26667vmin}.coupon-receive .receive-popup .receive-container__content-price .smallIcon{color:#fd2b54;font-size:5.33333vmin;line-height:5.33333vmin}.coupon-receive .receive-popup .receive-container__content-price .boldIcon{color:#fd2b54;font-size:10.66667vmin;line-height:10.66667vmin}.coupon-receive .receive-popup .receive-container__content-describe{margin-top:3.73333vmin;color:#333333;font-size:3.73333vmin;font-weight:400;font-family:"PingFang SC";text-align:left;line-height:5.33333vmin}.coupon-receive .receive-popup .receive-container__content-describe span{display:block;margin-bottom:1.06667vmin}.coupon-receive .receive-popup .receive-container__btn{width:53.33333vmin;height:10.66667vmin;border-radius:1.06667vmin;opacity:1;background:linear-gradient(270deg, #ff5820 0%, #ff4067 100%);color:#ffffff;font-size:4.26667vmin;font-weight:500;font-family:"PingFang SC";text-align:left;margin:5.33333vmin 7.46667vmin 7.46667vmin;display:flex;align-items:center;justify-content:center}.coupon-receive .receive-popup .receive-container__close{width:8.53333vmin;height:8.53333vmin;margin:4.26667vmin auto 0}