xiaoe_mp_npm 0.5.42-test2 → 0.5.42-test21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/miniprogram_dist/ConfirmOrder/components/ConfirmOrderContent/index.scss +45 -0
  2. package/miniprogram_dist/ConfirmOrder/components/ConfirmOrderContent/index.wxss +37 -1
  3. package/miniprogram_dist/ConfirmOrder/components/GoodsInfo/index.scss +223 -0
  4. package/miniprogram_dist/ConfirmOrder/components/GoodsInfo/index.wxss +522 -36
  5. package/miniprogram_dist/ConfirmOrder/components/IntegralSelect/index.scss +91 -0
  6. package/miniprogram_dist/ConfirmOrder/components/IntegralSelect/index.wxss +170 -14
  7. package/miniprogram_dist/ConfirmOrder/components/Invoice/index.scss +61 -0
  8. package/miniprogram_dist/ConfirmOrder/components/Invoice/index.wxss +68 -2
  9. package/miniprogram_dist/ConfirmOrder/components/LeaveWord/index.scss +40 -0
  10. package/miniprogram_dist/ConfirmOrder/components/LeaveWord/index.wxss +26 -2
  11. package/miniprogram_dist/ConfirmOrder/components/PayBar/index.scss +62 -0
  12. package/miniprogram_dist/ConfirmOrder/components/PayBar/index.wxss +81 -3
  13. package/miniprogram_dist/ConfirmOrder/components/PayDetail/index.scss +41 -0
  14. package/miniprogram_dist/ConfirmOrder/components/PayDetail/index.wxss +35 -3
  15. package/miniprogram_dist/CouponList/components/CouponItem/index.css +1715 -1715
  16. package/miniprogram_dist/CouponList/components/CouponItem/index.js +31 -22
  17. package/miniprogram_dist/CouponList/components/CouponItem/index.min.css +1 -1
  18. package/miniprogram_dist/CouponList/components/CouponItem/index.wxml +6 -2
  19. package/miniprogram_dist/CouponList/components/CouponItem/index.wxss +1037 -79
  20. package/miniprogram_dist/CouponList/couponColumn/index.js +5 -1
  21. package/miniprogram_dist/CouponList/couponColumn/index.scss +118 -0
  22. package/miniprogram_dist/CouponList/couponColumn/index.wxml +1 -0
  23. package/miniprogram_dist/CouponList/couponColumn/index.wxss +221 -32
  24. package/miniprogram_dist/CouponReceivePopup/index.js +75 -0
  25. package/miniprogram_dist/CouponReceivePopup/index.json +6 -0
  26. package/miniprogram_dist/CouponReceivePopup/index.scss +99 -0
  27. package/miniprogram_dist/CouponReceivePopup/index.wxml +85 -0
  28. package/miniprogram_dist/CouponReceivePopup/index.wxss +75 -0
  29. package/miniprogram_dist/GoodsItem/index.js +7 -5
  30. package/miniprogram_dist/GoodsItem/index.scss +45 -22
  31. package/miniprogram_dist/GoodsItem/index.wxml +11 -11
  32. package/miniprogram_dist/GoodsItem/index.wxs +18 -18
  33. package/miniprogram_dist/GoodsItem/index.wxss +1273 -116
  34. package/miniprogram_dist/GoodsRecommend/index.scss +162 -0
  35. package/miniprogram_dist/GoodsRecommend/index.wxss +418 -33
  36. package/miniprogram_dist/LiveGoodsList/Header/index.scss +79 -0
  37. package/miniprogram_dist/LiveGoodsList/Header/index.wxss +148 -10
  38. package/miniprogram_dist/LiveGoodsList/index.js +167 -25
  39. package/miniprogram_dist/LiveGoodsList/index.scss +93 -0
  40. package/miniprogram_dist/LiveGoodsList/index.wxml +41 -19
  41. package/miniprogram_dist/LiveGoodsList/index.wxss +187 -19
  42. package/miniprogram_dist/PayModule/button/index.scss +45 -0
  43. package/miniprogram_dist/PayModule/button/index.wxss +46 -4
  44. package/miniprogram_dist/TeacherGoodsList/index.js +778 -585
  45. package/miniprogram_dist/TeacherGoodsList/index.scss +5 -2
  46. package/miniprogram_dist/TeacherGoodsList/index.wxml +42 -24
  47. package/miniprogram_dist/TeacherGoodsList/index.wxss +132 -14
  48. package/miniprogram_dist/common/api/liveGoodsList.js +10 -2
  49. package/miniprogram_dist/common/utils/index.js +14 -0
  50. package/miniprogram_dist/coupon/components/CouponItem/index.less +1 -0
  51. package/miniprogram_dist/coupon/components/CouponItem/index.scss +247 -0
  52. package/miniprogram_dist/coupon/components/CouponItem/index.wxss +677 -86
  53. package/miniprogram_dist/coupon/components/CouponSelect/index.scss +331 -0
  54. package/miniprogram_dist/coupon/components/CouponSelect/index.wxss +861 -59
  55. package/miniprogram_dist/coupon/index.scss +83 -0
  56. package/miniprogram_dist/coupon/index.wxss +171 -15
  57. package/package.json +2 -2
  58. package/src/ConfirmOrder/components/ConfirmOrderContent/index.scss +45 -0
  59. package/src/ConfirmOrder/components/ConfirmOrderContent/index.wxss +42 -1
  60. package/src/ConfirmOrder/components/GoodsInfo/index.scss +223 -0
  61. package/src/ConfirmOrder/components/GoodsInfo/index.wxss +552 -39
  62. package/src/ConfirmOrder/components/IntegralSelect/index.scss +91 -0
  63. package/src/ConfirmOrder/components/IntegralSelect/index.wxss +182 -14
  64. package/src/ConfirmOrder/components/Invoice/index.scss +61 -0
  65. package/src/ConfirmOrder/components/Invoice/index.wxss +75 -2
  66. package/src/ConfirmOrder/components/LeaveWord/index.scss +40 -0
  67. package/src/ConfirmOrder/components/LeaveWord/index.wxss +30 -2
  68. package/src/ConfirmOrder/components/PayBar/index.scss +62 -0
  69. package/src/ConfirmOrder/components/PayBar/index.wxss +87 -3
  70. package/src/ConfirmOrder/components/PayDetail/index.scss +41 -0
  71. package/src/ConfirmOrder/components/PayDetail/index.wxss +39 -3
  72. package/src/CouponList/components/CouponItem/index.css +1715 -1715
  73. package/src/CouponList/components/CouponItem/index.js +31 -22
  74. package/src/CouponList/components/CouponItem/index.min.css +1 -1
  75. package/src/CouponList/components/CouponItem/index.wxml +6 -2
  76. package/src/CouponList/components/CouponItem/index.wxss +1039 -85
  77. package/src/CouponList/couponColumn/index.js +5 -1
  78. package/src/CouponList/couponColumn/index.scss +118 -0
  79. package/src/CouponList/couponColumn/index.wxml +1 -0
  80. package/src/CouponList/couponColumn/index.wxss +236 -32
  81. package/src/CouponReceivePopup/index.js +75 -0
  82. package/src/CouponReceivePopup/index.json +6 -0
  83. package/src/CouponReceivePopup/index.scss +99 -0
  84. package/src/CouponReceivePopup/index.wxml +85 -0
  85. package/src/CouponReceivePopup/index.wxss +1 -0
  86. package/src/GoodsItem/index.js +7 -5
  87. package/src/GoodsItem/index.scss +45 -22
  88. package/src/GoodsItem/index.wxml +11 -11
  89. package/src/GoodsItem/index.wxs +18 -18
  90. package/src/GoodsItem/index.wxss +1331 -116
  91. package/src/GoodsRecommend/index.scss +162 -0
  92. package/src/GoodsRecommend/index.wxss +441 -33
  93. package/src/LiveGoodsList/Header/index.scss +79 -0
  94. package/src/LiveGoodsList/Header/index.wxss +156 -10
  95. package/src/LiveGoodsList/index.js +167 -25
  96. package/src/LiveGoodsList/index.scss +93 -0
  97. package/src/LiveGoodsList/index.wxml +41 -19
  98. package/src/LiveGoodsList/index.wxss +230 -50
  99. package/src/PayModule/button/index.scss +45 -0
  100. package/src/PayModule/button/index.wxss +50 -4
  101. package/src/TeacherGoodsList/index.js +778 -585
  102. package/src/TeacherGoodsList/index.scss +5 -2
  103. package/src/TeacherGoodsList/index.wxml +42 -24
  104. package/src/TeacherGoodsList/index.wxss +151 -14
  105. package/src/common/api/liveGoodsList.js +10 -2
  106. package/src/common/utils/index.js +14 -0
  107. package/src/coupon/components/CouponItem/index.less +1 -0
  108. package/src/coupon/components/CouponItem/index.scss +247 -0
  109. package/src/coupon/components/CouponItem/index.wxss +712 -86
  110. package/src/coupon/components/CouponSelect/index.scss +331 -0
  111. package/src/coupon/components/CouponSelect/index.wxss +910 -59
  112. package/src/coupon/index.scss +83 -0
  113. package/src/coupon/index.wxss +181 -15
  114. package/miniprogram_dist/GoodsItem/index.css +0 -1364
  115. package/miniprogram_dist/GoodsItem/index.less +0 -299
  116. package/miniprogram_dist/GoodsItem/index.min.css +0 -1
  117. package/miniprogram_dist/TeacherGoodsList/index.css +0 -187
  118. package/miniprogram_dist/TeacherGoodsList/index.min.css +0 -1
  119. package/src/GoodsItem/index.css +0 -1364
  120. package/src/GoodsItem/index.less +0 -299
  121. package/src/GoodsItem/index.min.css +0 -1
  122. package/src/TeacherGoodsList/index.css +0 -187
  123. package/src/TeacherGoodsList/index.min.css +0 -1
@@ -4,29 +4,8 @@
4
4
  margin-left: auto;
5
5
  margin-right: auto;
6
6
  }
7
- .couponNewWrap:last-child {
8
- margin-bottom: 0;
9
- }
10
- .couponNewWrap .detailInfo {
11
- display: flex;
12
- align-items: center;
13
- padding: 4.69vmin;
14
- background-color: #FFFAF4;
15
- box-sizing: border-box;
16
- border-radius: 0 0 0.53vmin 0.53vmin;
17
- color: #505050;
18
- font-size: 2.93vmin;
19
- background: #FFFAF4;
20
- text-align: left;
21
- }
22
- .couponNewWrap .detailInfo .instructions {
23
- font-size: 1.87vmin;
24
- color: #505050;
25
- }
26
- .couponNewWrap .detailInfo .instructions text {
27
- white-space: pre-wrap;
28
- }
29
- .couponNewV2 {
7
+
8
+ .couponNewWrap .couponNewV2 {
30
9
  position: relative;
31
10
  display: flex;
32
11
  width: 100%;
@@ -34,162 +13,809 @@
34
13
  margin-left: auto;
35
14
  margin-right: auto;
36
15
  overflow: hidden;
37
- border-radius: 1.17vmin;
16
+ border-radius: 1.06667vmin;
38
17
  background-color: #fff;
39
18
  }
40
- .couponNewV2 .couponValue {
41
- width: 30.51vmin;
19
+
20
+ .couponNewWrap .couponNewV2 .disabledState {
21
+ background-color: #EEEEEE !important;
22
+ }
23
+
24
+ .couponNewWrap .couponNewV2 .disabledState .couponValue {
25
+ background: #CDCDCD !important;
26
+ }
27
+
28
+ .couponNewWrap .couponNewV2 .couponValue {
29
+ width: 30.4vmin;
42
30
  height: 29.92vmin;
43
31
  background: #FF821F !important;
44
32
  box-sizing: border-box;
45
- border-radius: 1.17vmin 0 0 1.17vmin;
33
+ border-radius: 1.06667vmin 0 0 1.06667vmin;
46
34
  }
47
- .couponNewV2 .couponValue .couponPrice {
35
+
36
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice {
48
37
  position: relative;
49
38
  width: 100%;
50
39
  height: 13.2vmin;
51
- margin: 4.11vmin auto 1.17vmin;
40
+ margin: 4.13333vmin auto 1.06667vmin;
52
41
  text-align: center;
53
42
  line-height: 13.2vmin;
54
- font-size: 12.91vmin;
43
+ font-size: 12.93333vmin;
55
44
  font-weight: 500;
56
45
  color: #fff;
57
46
  }
58
- .couponNewV2 .couponValue .couponPrice .fontSmall {
59
- font-size: 7.04vmin !important;
47
+
48
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontSmall {
49
+ font-size: 7.06667vmin !important;
60
50
  }
61
- .couponNewV2 .couponValue .couponPrice .fontLastSmall {
62
- font-size: 4.69vmin !important;
51
+
52
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontLastSmall {
53
+ font-size: 4.66667vmin !important;
63
54
  }
64
- .couponNewV2 .couponValue .couponPrice .fixedfont {
55
+
56
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedfont {
65
57
  font-size: 3.52vmin !important;
66
58
  }
67
- .couponNewV2 .couponValue .couponPrice .fixedPercent {
68
- font-size: 4.69vmin !important;
59
+
60
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedPercent {
61
+ font-size: 4.66667vmin !important;
69
62
  }
70
- .couponNewV2 .couponValue .couponPrice span {
63
+
64
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice span {
71
65
  position: relative;
72
66
  display: inline-block;
73
67
  }
74
- .couponNewV2 .couponValue .couponPrice .discountFont,
75
- .couponNewV2 .couponValue .couponPrice .coupon-symbol {
76
- font-size: 4.69vmin;
77
- margin-left: 0.29vmin;
78
- margin-left: -0.15vmin;
68
+
69
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .discountFont, .couponNewWrap .couponNewV2 .couponValue .couponPrice .coupon-symbol {
70
+ font-size: 4.66667vmin;
71
+ margin-left: 0.26667vmin;
72
+ margin-left: -vmin(1);
79
73
  }
80
- .couponNewV2 .couponValue .couponUseCondition {
74
+
75
+ .couponNewWrap .couponNewV2 .couponValue .couponUseCondition {
81
76
  width: 100%;
82
77
  overflow: hidden;
83
- max-height: 11.73vmin;
84
- line-height: 5.28vmin;
78
+ max-height: 11.73333vmin;
79
+ line-height: 5.33333vmin;
85
80
  color: #fff;
86
81
  text-align: center;
87
82
  }
88
- .couponNewV2 .couponValue .couponMaxDiscountNum {
83
+
84
+ .couponNewWrap .couponNewV2 .couponValue .couponMaxDiscountNum {
89
85
  width: 100%;
90
86
  text-align: center;
91
87
  color: #fff;
92
- margin-bottom: 7.33vmin;
93
- font-size: 1.33vmin;
88
+ margin-bottom: 7.33333vmin;
89
+ font-size: 1.33333vmin;
94
90
  }
95
- .couponNewV2 .couponInfo {
91
+
92
+ .couponNewWrap .couponNewV2 .couponInfo {
96
93
  position: relative;
97
94
  display: flex;
98
95
  flex-direction: column;
99
96
  justify-content: space-between;
100
- width: 49.87vmin;
97
+ width: 49.86667vmin;
101
98
  height: 100%;
102
99
  overflow: hidden;
103
100
  box-sizing: border-box;
104
- padding: 2.35vmin 0 2.35vmin 3.52vmin;
105
- border-bottom-right-radius: 1.17vmin;
106
- border-top-right-radius: 1.17vmin;
101
+ padding: 2.4vmin 0 2.4vmin 3.52vmin;
102
+ border-bottom-right-radius: 1.06667vmin;
103
+ border-top-right-radius: 1.06667vmin;
107
104
  color: #888888;
108
- font-size: 2.93vmin;
105
+ font-size: 2.93333vmin;
109
106
  text-align: left;
110
107
  }
111
- .couponNewV2 .couponInfo span {
108
+
109
+ .couponNewWrap .couponNewV2 .couponInfo span {
112
110
  display: inline-block;
113
111
  }
114
- .couponNewV2 .couponInfo .couponName {
112
+
113
+ .couponNewWrap .couponNewV2 .couponInfo .couponName {
115
114
  width: 100%;
116
115
  line-height: 4.4vmin;
117
116
  white-space: nowrap;
118
117
  overflow: hidden;
119
118
  text-overflow: ellipsis;
120
- margin-bottom: 2.35vmin;
119
+ margin-bottom: 2.4vmin;
121
120
  color: #505050;
122
121
  font-size: 3.52vmin;
123
122
  font-weight: 500;
124
123
  }
125
- .couponNewV2 .couponInfo .couponUseTime {
124
+
125
+ .couponNewWrap .couponNewV2 .couponInfo .couponUseTime {
126
126
  width: 100%;
127
- height: 4.11vmin;
128
- line-height: 4.11vmin;
129
- font-size: 2.93vmin;
127
+ height: 4.13333vmin;
128
+ line-height: 4.13333vmin;
129
+ font-size: 2.93333vmin;
130
130
  }
131
- .couponNewV2 .couponInfo .noSuperposition {
131
+
132
+ .couponNewWrap .couponNewV2 .couponInfo .noSuperposition {
132
133
  color: #FF821F;
133
134
  }
134
- .couponNewV2 .couponInfo .moreInfo {
135
+
136
+ .couponNewWrap .couponNewV2 .couponInfo .moreInfo {
135
137
  display: flex;
136
138
  align-items: center;
137
- padding: 0.29vmin 0;
139
+ padding: 0.26667vmin 0;
138
140
  }
139
- .couponNewV2 .couponInfo .operateBtn {
141
+
142
+ .couponNewWrap .couponNewV2 .couponInfo .operateBtn {
140
143
  width: 3.52vmin;
141
144
  height: 3.52vmin;
142
145
  cursor: pointer;
143
146
  margin-left: 0.88vmin;
144
147
  background-size: 100% 100%;
145
148
  }
146
- .couponNewV2 .couponInfo .retract {
147
- background: url('../../../common/assets/images/coupon/up.svg') center no-repeat;
149
+
150
+ .couponNewWrap .couponNewV2 .couponInfo .retract {
151
+ background: url("../../../common/assets/images/coupon/up.svg") center no-repeat;
148
152
  }
149
- .couponNewV2 .couponState {
153
+
154
+ .couponNewWrap .couponNewV2 .couponState {
150
155
  position: absolute;
151
156
  right: 0;
152
157
  width: 17.6vmin;
153
158
  height: 100%;
154
159
  }
155
- .couponNewV2 .couponState .superImg {
156
- width: 11.73vmin;
157
- height: 11.73vmin;
160
+
161
+ .couponNewWrap .couponNewV2 .couponState .superImg {
162
+ width: 11.73333vmin;
163
+ height: 11.73333vmin;
158
164
  background-size: 100% 100%;
159
165
  position: absolute;
160
166
  right: 0;
161
167
  }
162
- .couponNewV2 .couponState .coupon-choose-box {
168
+
169
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box {
163
170
  display: flex;
164
171
  align-items: center;
165
172
  justify-content: center;
166
173
  width: 100%;
167
174
  height: 100%;
168
- border-radius: 0 1.17vmin 1.17vmin 0;
175
+ border-radius: 0 1.06667vmin 1.06667vmin 0;
169
176
  }
170
- .couponNewV2 .couponState .coupon-choose-box .coupon-choose {
171
- width: 5.87vmin;
172
- height: 5.87vmin;
177
+
178
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-choose {
179
+ width: 5.86667vmin;
180
+ height: 5.86667vmin;
181
+ background-size: 100% 100%;
173
182
  border-radius: 50%;
174
183
  box-sizing: border-box;
175
184
  background-size: 100% 100%;
176
185
  }
177
- .couponNewV2 .couponState .coupon-choose-box .coupon-unchoosed {
178
- border: 0.44vmin solid #CCC;
186
+
187
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-unchoosed {
188
+ border: 0.53333vmin solid #CCC;
179
189
  background: none;
180
190
  }
181
- .disabledState {
182
- background-color: #EEEEEE !important;
191
+
192
+ .couponNewWrap:last-child {
193
+ margin-bottom: 0;
183
194
  }
184
- .disabledState .couponValue {
185
- background: #CDCDCD !important;
195
+
196
+ .couponNewWrap .detailInfo {
197
+ display: flex;
198
+ align-items: center;
199
+ padding: 4.66667vmin;
200
+ background-color: #FFFAF4;
201
+ box-sizing: border-box;
202
+ border-radius: 0 0 0.53vmin 0.53vmin;
203
+ color: #505050;
204
+ font-size: 2.93333vmin;
205
+ background: #FFFAF4;
206
+ text-align: left;
186
207
  }
187
- .whiteBg {
208
+
209
+ .couponNewWrap .detailInfo.whiteBg {
188
210
  background-color: #fff !important;
189
211
  }
190
- .disabledHint {
212
+
213
+ .couponNewWrap .detailInfo .disabledHint {
191
214
  width: 4vmin;
192
215
  height: 4vmin;
193
- margin-right: 1.07vmin;
216
+ margin-right: 1.06667vmin;
194
217
  transform: translateY(0.8vmin);
195
218
  }
219
+
220
+ .couponNewWrap .detailInfo .instructions {
221
+ font-size: 1.86667vmin;
222
+ color: #505050;
223
+ }
224
+
225
+ .couponNewWrap .detailInfo .instructions text {
226
+ white-space: pre-wrap;
227
+ }
228
+
229
+ @media screen and (min-width: 768px) and (orientation: portrait) {
230
+ .couponNewWrap {
231
+ width: 100%;
232
+ margin-bottom: 1.71875vmin;
233
+ margin-left: auto;
234
+ margin-right: auto;
235
+ }
236
+ .couponNewWrap .couponNewV2 {
237
+ position: relative;
238
+ display: flex;
239
+ width: 100%;
240
+ height: 14.60938vmin;
241
+ margin-left: auto;
242
+ margin-right: auto;
243
+ overflow: hidden;
244
+ border-radius: 0.52083vmin;
245
+ background-color: #fff;
246
+ }
247
+ .couponNewWrap .couponNewV2 .disabledState {
248
+ background-color: #EEEEEE !important;
249
+ }
250
+ .couponNewWrap .couponNewV2 .disabledState .couponValue {
251
+ background: #CDCDCD !important;
252
+ }
253
+ .couponNewWrap .couponNewV2 .couponValue {
254
+ width: 14.84375vmin;
255
+ height: 14.60938vmin;
256
+ background: #FF821F !important;
257
+ box-sizing: border-box;
258
+ border-radius: 0.52083vmin 0 0 0.52083vmin;
259
+ }
260
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice {
261
+ position: relative;
262
+ width: 100%;
263
+ height: 6.44531vmin;
264
+ margin: 2.01823vmin auto 0.52083vmin;
265
+ text-align: center;
266
+ line-height: 6.44531vmin;
267
+ font-size: 6.3151vmin;
268
+ font-weight: 500;
269
+ color: #fff;
270
+ }
271
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontSmall {
272
+ font-size: 3.45052vmin !important;
273
+ }
274
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontLastSmall {
275
+ font-size: 2.27865vmin !important;
276
+ }
277
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedfont {
278
+ font-size: 1.71875vmin !important;
279
+ }
280
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedPercent {
281
+ font-size: 2.27865vmin !important;
282
+ }
283
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice span {
284
+ position: relative;
285
+ display: inline-block;
286
+ }
287
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .discountFont, .couponNewWrap .couponNewV2 .couponValue .couponPrice .coupon-symbol {
288
+ font-size: 2.27865vmin;
289
+ margin-left: 0.13021vmin;
290
+ margin-left: -vmin(1);
291
+ }
292
+ .couponNewWrap .couponNewV2 .couponValue .couponUseCondition {
293
+ width: 100%;
294
+ overflow: hidden;
295
+ max-height: 5.72917vmin;
296
+ line-height: 2.60417vmin;
297
+ color: #fff;
298
+ text-align: center;
299
+ }
300
+ .couponNewWrap .couponNewV2 .couponValue .couponMaxDiscountNum {
301
+ width: 100%;
302
+ text-align: center;
303
+ color: #fff;
304
+ margin-bottom: 3.58073vmin;
305
+ font-size: 0.65104vmin;
306
+ }
307
+ .couponNewWrap .couponNewV2 .couponInfo {
308
+ position: relative;
309
+ display: flex;
310
+ flex-direction: column;
311
+ justify-content: space-between;
312
+ width: 24.34896vmin;
313
+ height: 100%;
314
+ overflow: hidden;
315
+ box-sizing: border-box;
316
+ padding: 1.17188vmin 0 1.17188vmin 1.71875vmin;
317
+ border-bottom-right-radius: 0.52083vmin;
318
+ border-top-right-radius: 0.52083vmin;
319
+ color: #888888;
320
+ font-size: 1.43229vmin;
321
+ text-align: left;
322
+ }
323
+ .couponNewWrap .couponNewV2 .couponInfo span {
324
+ display: inline-block;
325
+ }
326
+ .couponNewWrap .couponNewV2 .couponInfo .couponName {
327
+ width: 100%;
328
+ line-height: 2.14844vmin;
329
+ white-space: nowrap;
330
+ overflow: hidden;
331
+ text-overflow: ellipsis;
332
+ margin-bottom: 1.17188vmin;
333
+ color: #505050;
334
+ font-size: 1.71875vmin;
335
+ font-weight: 500;
336
+ }
337
+ .couponNewWrap .couponNewV2 .couponInfo .couponUseTime {
338
+ width: 100%;
339
+ height: 2.01823vmin;
340
+ line-height: 2.01823vmin;
341
+ font-size: 1.43229vmin;
342
+ }
343
+ .couponNewWrap .couponNewV2 .couponInfo .noSuperposition {
344
+ color: #FF821F;
345
+ }
346
+ .couponNewWrap .couponNewV2 .couponInfo .moreInfo {
347
+ display: flex;
348
+ align-items: center;
349
+ padding: 0.13021vmin 0;
350
+ }
351
+ .couponNewWrap .couponNewV2 .couponInfo .operateBtn {
352
+ width: 1.71875vmin;
353
+ height: 1.71875vmin;
354
+ cursor: pointer;
355
+ margin-left: 0.42969vmin;
356
+ background-size: 100% 100%;
357
+ }
358
+ .couponNewWrap .couponNewV2 .couponInfo .retract {
359
+ background: url("../../../common/assets/images/coupon/up.svg") center no-repeat;
360
+ }
361
+ .couponNewWrap .couponNewV2 .couponState {
362
+ position: absolute;
363
+ right: 0;
364
+ width: 8.59375vmin;
365
+ height: 100%;
366
+ }
367
+ .couponNewWrap .couponNewV2 .couponState .superImg {
368
+ width: 5.72917vmin;
369
+ height: 5.72917vmin;
370
+ background-size: 100% 100%;
371
+ position: absolute;
372
+ right: 0;
373
+ }
374
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box {
375
+ display: flex;
376
+ align-items: center;
377
+ justify-content: center;
378
+ width: 100%;
379
+ height: 100%;
380
+ border-radius: 0 0.52083vmin 0.52083vmin 0;
381
+ }
382
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-choose {
383
+ width: 2.86458vmin;
384
+ height: 2.86458vmin;
385
+ background-size: 100% 100%;
386
+ border-radius: 50%;
387
+ box-sizing: border-box;
388
+ background-size: 100% 100%;
389
+ }
390
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-unchoosed {
391
+ border: 0.26042vmin solid #CCC;
392
+ background: none;
393
+ }
394
+ .couponNewWrap:last-child {
395
+ margin-bottom: 0;
396
+ }
397
+ .couponNewWrap .detailInfo {
398
+ display: flex;
399
+ align-items: center;
400
+ padding: 2.27865vmin;
401
+ background-color: #FFFAF4;
402
+ box-sizing: border-box;
403
+ border-radius: 0 0 0.53vmin 0.53vmin;
404
+ color: #505050;
405
+ font-size: 1.43229vmin;
406
+ background: #FFFAF4;
407
+ text-align: left;
408
+ }
409
+ .couponNewWrap .detailInfo.whiteBg {
410
+ background-color: #fff !important;
411
+ }
412
+ .couponNewWrap .detailInfo .disabledHint {
413
+ width: 1.95312vmin;
414
+ height: 1.95312vmin;
415
+ margin-right: 0.52083vmin;
416
+ transform: translateY(0.39062vmin);
417
+ }
418
+ .couponNewWrap .detailInfo .instructions {
419
+ font-size: 0.91146vmin;
420
+ color: #505050;
421
+ }
422
+ .couponNewWrap .detailInfo .instructions text {
423
+ white-space: pre-wrap;
424
+ }
425
+ }
426
+
427
+ @media screen and (min-height: 630px) and (orientation: landscape) {
428
+ .couponNewWrap {
429
+ width: 100%;
430
+ margin-bottom: 2.09524vmin;
431
+ margin-left: auto;
432
+ margin-right: auto;
433
+ }
434
+ .couponNewWrap .couponNewV2 {
435
+ position: relative;
436
+ display: flex;
437
+ width: 100%;
438
+ height: 17.80952vmin;
439
+ margin-left: auto;
440
+ margin-right: auto;
441
+ overflow: hidden;
442
+ border-radius: 0.63492vmin;
443
+ background-color: #fff;
444
+ }
445
+ .couponNewWrap .couponNewV2 .disabledState {
446
+ background-color: #EEEEEE !important;
447
+ }
448
+ .couponNewWrap .couponNewV2 .disabledState .couponValue {
449
+ background: #CDCDCD !important;
450
+ }
451
+ .couponNewWrap .couponNewV2 .couponValue {
452
+ width: 18.09524vmin;
453
+ height: 17.80952vmin;
454
+ background: #FF821F !important;
455
+ box-sizing: border-box;
456
+ border-radius: 0.63492vmin 0 0 0.63492vmin;
457
+ }
458
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice {
459
+ position: relative;
460
+ width: 100%;
461
+ height: 7.85714vmin;
462
+ margin: 2.46032vmin auto 0.63492vmin;
463
+ text-align: center;
464
+ line-height: 7.85714vmin;
465
+ font-size: 7.69841vmin;
466
+ font-weight: 500;
467
+ color: #fff;
468
+ }
469
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontSmall {
470
+ font-size: 4.20635vmin !important;
471
+ }
472
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontLastSmall {
473
+ font-size: 2.77778vmin !important;
474
+ }
475
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedfont {
476
+ font-size: 2.09524vmin !important;
477
+ }
478
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedPercent {
479
+ font-size: 2.77778vmin !important;
480
+ }
481
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice span {
482
+ position: relative;
483
+ display: inline-block;
484
+ }
485
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .discountFont, .couponNewWrap .couponNewV2 .couponValue .couponPrice .coupon-symbol {
486
+ font-size: 2.77778vmin;
487
+ margin-left: 0.15873vmin;
488
+ margin-left: -vmin(1);
489
+ }
490
+ .couponNewWrap .couponNewV2 .couponValue .couponUseCondition {
491
+ width: 100%;
492
+ overflow: hidden;
493
+ max-height: 6.98413vmin;
494
+ line-height: 3.1746vmin;
495
+ color: #fff;
496
+ text-align: center;
497
+ }
498
+ .couponNewWrap .couponNewV2 .couponValue .couponMaxDiscountNum {
499
+ width: 100%;
500
+ text-align: center;
501
+ color: #fff;
502
+ margin-bottom: 4.36508vmin;
503
+ font-size: 0.79365vmin;
504
+ }
505
+ .couponNewWrap .couponNewV2 .couponInfo {
506
+ position: relative;
507
+ display: flex;
508
+ flex-direction: column;
509
+ justify-content: space-between;
510
+ width: 29.68254vmin;
511
+ height: 100%;
512
+ overflow: hidden;
513
+ box-sizing: border-box;
514
+ padding: 1.42857vmin 0 1.42857vmin 2.09524vmin;
515
+ border-bottom-right-radius: 0.63492vmin;
516
+ border-top-right-radius: 0.63492vmin;
517
+ color: #888888;
518
+ font-size: 1.74603vmin;
519
+ text-align: left;
520
+ }
521
+ .couponNewWrap .couponNewV2 .couponInfo span {
522
+ display: inline-block;
523
+ }
524
+ .couponNewWrap .couponNewV2 .couponInfo .couponName {
525
+ width: 100%;
526
+ line-height: 2.61905vmin;
527
+ white-space: nowrap;
528
+ overflow: hidden;
529
+ text-overflow: ellipsis;
530
+ margin-bottom: 1.42857vmin;
531
+ color: #505050;
532
+ font-size: 2.09524vmin;
533
+ font-weight: 500;
534
+ }
535
+ .couponNewWrap .couponNewV2 .couponInfo .couponUseTime {
536
+ width: 100%;
537
+ height: 2.46032vmin;
538
+ line-height: 2.46032vmin;
539
+ font-size: 1.74603vmin;
540
+ }
541
+ .couponNewWrap .couponNewV2 .couponInfo .noSuperposition {
542
+ color: #FF821F;
543
+ }
544
+ .couponNewWrap .couponNewV2 .couponInfo .moreInfo {
545
+ display: flex;
546
+ align-items: center;
547
+ padding: 0.15873vmin 0;
548
+ }
549
+ .couponNewWrap .couponNewV2 .couponInfo .operateBtn {
550
+ width: 2.09524vmin;
551
+ height: 2.09524vmin;
552
+ cursor: pointer;
553
+ margin-left: 0.52381vmin;
554
+ background-size: 100% 100%;
555
+ }
556
+ .couponNewWrap .couponNewV2 .couponInfo .retract {
557
+ background: url("../../../common/assets/images/coupon/up.svg") center no-repeat;
558
+ }
559
+ .couponNewWrap .couponNewV2 .couponState {
560
+ position: absolute;
561
+ right: 0;
562
+ width: 10.47619vmin;
563
+ height: 100%;
564
+ }
565
+ .couponNewWrap .couponNewV2 .couponState .superImg {
566
+ width: 6.98413vmin;
567
+ height: 6.98413vmin;
568
+ background-size: 100% 100%;
569
+ position: absolute;
570
+ right: 0;
571
+ }
572
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box {
573
+ display: flex;
574
+ align-items: center;
575
+ justify-content: center;
576
+ width: 100%;
577
+ height: 100%;
578
+ border-radius: 0 0.63492vmin 0.63492vmin 0;
579
+ }
580
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-choose {
581
+ width: 3.49206vmin;
582
+ height: 3.49206vmin;
583
+ background-size: 100% 100%;
584
+ border-radius: 50%;
585
+ box-sizing: border-box;
586
+ background-size: 100% 100%;
587
+ }
588
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-unchoosed {
589
+ border: 0.31746vmin solid #CCC;
590
+ background: none;
591
+ }
592
+ .couponNewWrap:last-child {
593
+ margin-bottom: 0;
594
+ }
595
+ .couponNewWrap .detailInfo {
596
+ display: flex;
597
+ align-items: center;
598
+ padding: 2.77778vmin;
599
+ background-color: #FFFAF4;
600
+ box-sizing: border-box;
601
+ border-radius: 0 0 0.53vmin 0.53vmin;
602
+ color: #505050;
603
+ font-size: 1.74603vmin;
604
+ background: #FFFAF4;
605
+ text-align: left;
606
+ }
607
+ .couponNewWrap .detailInfo.whiteBg {
608
+ background-color: #fff !important;
609
+ }
610
+ .couponNewWrap .detailInfo .disabledHint {
611
+ width: 2.38095vmin;
612
+ height: 2.38095vmin;
613
+ margin-right: 0.63492vmin;
614
+ transform: translateY(0.47619vmin);
615
+ }
616
+ .couponNewWrap .detailInfo .instructions {
617
+ font-size: 1.11111vmin;
618
+ color: #505050;
619
+ }
620
+ .couponNewWrap .detailInfo .instructions text {
621
+ white-space: pre-wrap;
622
+ }
623
+ }
624
+
625
+ @media screen and (min-height: 768px) and (orientation: landscape) {
626
+ .couponNewWrap {
627
+ width: 100%;
628
+ margin-bottom: 1.71875vmin;
629
+ margin-left: auto;
630
+ margin-right: auto;
631
+ }
632
+ .couponNewWrap .couponNewV2 {
633
+ position: relative;
634
+ display: flex;
635
+ width: 100%;
636
+ height: 14.60938vmin;
637
+ margin-left: auto;
638
+ margin-right: auto;
639
+ overflow: hidden;
640
+ border-radius: 0.52083vmin;
641
+ background-color: #fff;
642
+ }
643
+ .couponNewWrap .couponNewV2 .disabledState {
644
+ background-color: #EEEEEE !important;
645
+ }
646
+ .couponNewWrap .couponNewV2 .disabledState .couponValue {
647
+ background: #CDCDCD !important;
648
+ }
649
+ .couponNewWrap .couponNewV2 .couponValue {
650
+ width: 14.84375vmin;
651
+ height: 14.60938vmin;
652
+ background: #FF821F !important;
653
+ box-sizing: border-box;
654
+ border-radius: 0.52083vmin 0 0 0.52083vmin;
655
+ }
656
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice {
657
+ position: relative;
658
+ width: 100%;
659
+ height: 6.44531vmin;
660
+ margin: 2.01823vmin auto 0.52083vmin;
661
+ text-align: center;
662
+ line-height: 6.44531vmin;
663
+ font-size: 6.3151vmin;
664
+ font-weight: 500;
665
+ color: #fff;
666
+ }
667
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontSmall {
668
+ font-size: 3.45052vmin !important;
669
+ }
670
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fontLastSmall {
671
+ font-size: 2.27865vmin !important;
672
+ }
673
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedfont {
674
+ font-size: 1.71875vmin !important;
675
+ }
676
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .fixedPercent {
677
+ font-size: 2.27865vmin !important;
678
+ }
679
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice span {
680
+ position: relative;
681
+ display: inline-block;
682
+ }
683
+ .couponNewWrap .couponNewV2 .couponValue .couponPrice .discountFont, .couponNewWrap .couponNewV2 .couponValue .couponPrice .coupon-symbol {
684
+ font-size: 2.27865vmin;
685
+ margin-left: 0.13021vmin;
686
+ margin-left: -vmin(1);
687
+ }
688
+ .couponNewWrap .couponNewV2 .couponValue .couponUseCondition {
689
+ width: 100%;
690
+ overflow: hidden;
691
+ max-height: 5.72917vmin;
692
+ line-height: 2.60417vmin;
693
+ color: #fff;
694
+ text-align: center;
695
+ }
696
+ .couponNewWrap .couponNewV2 .couponValue .couponMaxDiscountNum {
697
+ width: 100%;
698
+ text-align: center;
699
+ color: #fff;
700
+ margin-bottom: 3.58073vmin;
701
+ font-size: 0.65104vmin;
702
+ }
703
+ .couponNewWrap .couponNewV2 .couponInfo {
704
+ position: relative;
705
+ display: flex;
706
+ flex-direction: column;
707
+ justify-content: space-between;
708
+ width: 24.34896vmin;
709
+ height: 100%;
710
+ overflow: hidden;
711
+ box-sizing: border-box;
712
+ padding: 1.17188vmin 0 1.17188vmin 1.71875vmin;
713
+ border-bottom-right-radius: 0.52083vmin;
714
+ border-top-right-radius: 0.52083vmin;
715
+ color: #888888;
716
+ font-size: 1.43229vmin;
717
+ text-align: left;
718
+ }
719
+ .couponNewWrap .couponNewV2 .couponInfo span {
720
+ display: inline-block;
721
+ }
722
+ .couponNewWrap .couponNewV2 .couponInfo .couponName {
723
+ width: 100%;
724
+ line-height: 2.14844vmin;
725
+ white-space: nowrap;
726
+ overflow: hidden;
727
+ text-overflow: ellipsis;
728
+ margin-bottom: 1.17188vmin;
729
+ color: #505050;
730
+ font-size: 1.71875vmin;
731
+ font-weight: 500;
732
+ }
733
+ .couponNewWrap .couponNewV2 .couponInfo .couponUseTime {
734
+ width: 100%;
735
+ height: 2.01823vmin;
736
+ line-height: 2.01823vmin;
737
+ font-size: 1.43229vmin;
738
+ }
739
+ .couponNewWrap .couponNewV2 .couponInfo .noSuperposition {
740
+ color: #FF821F;
741
+ }
742
+ .couponNewWrap .couponNewV2 .couponInfo .moreInfo {
743
+ display: flex;
744
+ align-items: center;
745
+ padding: 0.13021vmin 0;
746
+ }
747
+ .couponNewWrap .couponNewV2 .couponInfo .operateBtn {
748
+ width: 1.71875vmin;
749
+ height: 1.71875vmin;
750
+ cursor: pointer;
751
+ margin-left: 0.42969vmin;
752
+ background-size: 100% 100%;
753
+ }
754
+ .couponNewWrap .couponNewV2 .couponInfo .retract {
755
+ background: url("../../../common/assets/images/coupon/up.svg") center no-repeat;
756
+ }
757
+ .couponNewWrap .couponNewV2 .couponState {
758
+ position: absolute;
759
+ right: 0;
760
+ width: 8.59375vmin;
761
+ height: 100%;
762
+ }
763
+ .couponNewWrap .couponNewV2 .couponState .superImg {
764
+ width: 5.72917vmin;
765
+ height: 5.72917vmin;
766
+ background-size: 100% 100%;
767
+ position: absolute;
768
+ right: 0;
769
+ }
770
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box {
771
+ display: flex;
772
+ align-items: center;
773
+ justify-content: center;
774
+ width: 100%;
775
+ height: 100%;
776
+ border-radius: 0 0.52083vmin 0.52083vmin 0;
777
+ }
778
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-choose {
779
+ width: 2.86458vmin;
780
+ height: 2.86458vmin;
781
+ background-size: 100% 100%;
782
+ border-radius: 50%;
783
+ box-sizing: border-box;
784
+ background-size: 100% 100%;
785
+ }
786
+ .couponNewWrap .couponNewV2 .couponState .coupon-choose-box .coupon-unchoosed {
787
+ border: 0.26042vmin solid #CCC;
788
+ background: none;
789
+ }
790
+ .couponNewWrap:last-child {
791
+ margin-bottom: 0;
792
+ }
793
+ .couponNewWrap .detailInfo {
794
+ display: flex;
795
+ align-items: center;
796
+ padding: 2.27865vmin;
797
+ background-color: #FFFAF4;
798
+ box-sizing: border-box;
799
+ border-radius: 0 0 0.53vmin 0.53vmin;
800
+ color: #505050;
801
+ font-size: 1.43229vmin;
802
+ background: #FFFAF4;
803
+ text-align: left;
804
+ }
805
+ .couponNewWrap .detailInfo.whiteBg {
806
+ background-color: #fff !important;
807
+ }
808
+ .couponNewWrap .detailInfo .disabledHint {
809
+ width: 1.95312vmin;
810
+ height: 1.95312vmin;
811
+ margin-right: 0.52083vmin;
812
+ transform: translateY(0.39062vmin);
813
+ }
814
+ .couponNewWrap .detailInfo .instructions {
815
+ font-size: 0.91146vmin;
816
+ color: #505050;
817
+ }
818
+ .couponNewWrap .detailInfo .instructions text {
819
+ white-space: pre-wrap;
820
+ }
821
+ }