xiaoe_mp_npm 0.5.42-test2 → 0.5.42-test21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/miniprogram_dist/ConfirmOrder/components/ConfirmOrderContent/index.scss +45 -0
  2. package/miniprogram_dist/ConfirmOrder/components/ConfirmOrderContent/index.wxss +37 -1
  3. package/miniprogram_dist/ConfirmOrder/components/GoodsInfo/index.scss +223 -0
  4. package/miniprogram_dist/ConfirmOrder/components/GoodsInfo/index.wxss +522 -36
  5. package/miniprogram_dist/ConfirmOrder/components/IntegralSelect/index.scss +91 -0
  6. package/miniprogram_dist/ConfirmOrder/components/IntegralSelect/index.wxss +170 -14
  7. package/miniprogram_dist/ConfirmOrder/components/Invoice/index.scss +61 -0
  8. package/miniprogram_dist/ConfirmOrder/components/Invoice/index.wxss +68 -2
  9. package/miniprogram_dist/ConfirmOrder/components/LeaveWord/index.scss +40 -0
  10. package/miniprogram_dist/ConfirmOrder/components/LeaveWord/index.wxss +26 -2
  11. package/miniprogram_dist/ConfirmOrder/components/PayBar/index.scss +62 -0
  12. package/miniprogram_dist/ConfirmOrder/components/PayBar/index.wxss +81 -3
  13. package/miniprogram_dist/ConfirmOrder/components/PayDetail/index.scss +41 -0
  14. package/miniprogram_dist/ConfirmOrder/components/PayDetail/index.wxss +35 -3
  15. package/miniprogram_dist/CouponList/components/CouponItem/index.css +1715 -1715
  16. package/miniprogram_dist/CouponList/components/CouponItem/index.js +31 -22
  17. package/miniprogram_dist/CouponList/components/CouponItem/index.min.css +1 -1
  18. package/miniprogram_dist/CouponList/components/CouponItem/index.wxml +6 -2
  19. package/miniprogram_dist/CouponList/components/CouponItem/index.wxss +1037 -79
  20. package/miniprogram_dist/CouponList/couponColumn/index.js +5 -1
  21. package/miniprogram_dist/CouponList/couponColumn/index.scss +118 -0
  22. package/miniprogram_dist/CouponList/couponColumn/index.wxml +1 -0
  23. package/miniprogram_dist/CouponList/couponColumn/index.wxss +221 -32
  24. package/miniprogram_dist/CouponReceivePopup/index.js +75 -0
  25. package/miniprogram_dist/CouponReceivePopup/index.json +6 -0
  26. package/miniprogram_dist/CouponReceivePopup/index.scss +99 -0
  27. package/miniprogram_dist/CouponReceivePopup/index.wxml +85 -0
  28. package/miniprogram_dist/CouponReceivePopup/index.wxss +75 -0
  29. package/miniprogram_dist/GoodsItem/index.js +7 -5
  30. package/miniprogram_dist/GoodsItem/index.scss +45 -22
  31. package/miniprogram_dist/GoodsItem/index.wxml +11 -11
  32. package/miniprogram_dist/GoodsItem/index.wxs +18 -18
  33. package/miniprogram_dist/GoodsItem/index.wxss +1273 -116
  34. package/miniprogram_dist/GoodsRecommend/index.scss +162 -0
  35. package/miniprogram_dist/GoodsRecommend/index.wxss +418 -33
  36. package/miniprogram_dist/LiveGoodsList/Header/index.scss +79 -0
  37. package/miniprogram_dist/LiveGoodsList/Header/index.wxss +148 -10
  38. package/miniprogram_dist/LiveGoodsList/index.js +167 -25
  39. package/miniprogram_dist/LiveGoodsList/index.scss +93 -0
  40. package/miniprogram_dist/LiveGoodsList/index.wxml +41 -19
  41. package/miniprogram_dist/LiveGoodsList/index.wxss +187 -19
  42. package/miniprogram_dist/PayModule/button/index.scss +45 -0
  43. package/miniprogram_dist/PayModule/button/index.wxss +46 -4
  44. package/miniprogram_dist/TeacherGoodsList/index.js +778 -585
  45. package/miniprogram_dist/TeacherGoodsList/index.scss +5 -2
  46. package/miniprogram_dist/TeacherGoodsList/index.wxml +42 -24
  47. package/miniprogram_dist/TeacherGoodsList/index.wxss +132 -14
  48. package/miniprogram_dist/common/api/liveGoodsList.js +10 -2
  49. package/miniprogram_dist/common/utils/index.js +14 -0
  50. package/miniprogram_dist/coupon/components/CouponItem/index.less +1 -0
  51. package/miniprogram_dist/coupon/components/CouponItem/index.scss +247 -0
  52. package/miniprogram_dist/coupon/components/CouponItem/index.wxss +677 -86
  53. package/miniprogram_dist/coupon/components/CouponSelect/index.scss +331 -0
  54. package/miniprogram_dist/coupon/components/CouponSelect/index.wxss +861 -59
  55. package/miniprogram_dist/coupon/index.scss +83 -0
  56. package/miniprogram_dist/coupon/index.wxss +171 -15
  57. package/package.json +2 -2
  58. package/src/ConfirmOrder/components/ConfirmOrderContent/index.scss +45 -0
  59. package/src/ConfirmOrder/components/ConfirmOrderContent/index.wxss +42 -1
  60. package/src/ConfirmOrder/components/GoodsInfo/index.scss +223 -0
  61. package/src/ConfirmOrder/components/GoodsInfo/index.wxss +552 -39
  62. package/src/ConfirmOrder/components/IntegralSelect/index.scss +91 -0
  63. package/src/ConfirmOrder/components/IntegralSelect/index.wxss +182 -14
  64. package/src/ConfirmOrder/components/Invoice/index.scss +61 -0
  65. package/src/ConfirmOrder/components/Invoice/index.wxss +75 -2
  66. package/src/ConfirmOrder/components/LeaveWord/index.scss +40 -0
  67. package/src/ConfirmOrder/components/LeaveWord/index.wxss +30 -2
  68. package/src/ConfirmOrder/components/PayBar/index.scss +62 -0
  69. package/src/ConfirmOrder/components/PayBar/index.wxss +87 -3
  70. package/src/ConfirmOrder/components/PayDetail/index.scss +41 -0
  71. package/src/ConfirmOrder/components/PayDetail/index.wxss +39 -3
  72. package/src/CouponList/components/CouponItem/index.css +1715 -1715
  73. package/src/CouponList/components/CouponItem/index.js +31 -22
  74. package/src/CouponList/components/CouponItem/index.min.css +1 -1
  75. package/src/CouponList/components/CouponItem/index.wxml +6 -2
  76. package/src/CouponList/components/CouponItem/index.wxss +1039 -85
  77. package/src/CouponList/couponColumn/index.js +5 -1
  78. package/src/CouponList/couponColumn/index.scss +118 -0
  79. package/src/CouponList/couponColumn/index.wxml +1 -0
  80. package/src/CouponList/couponColumn/index.wxss +236 -32
  81. package/src/CouponReceivePopup/index.js +75 -0
  82. package/src/CouponReceivePopup/index.json +6 -0
  83. package/src/CouponReceivePopup/index.scss +99 -0
  84. package/src/CouponReceivePopup/index.wxml +85 -0
  85. package/src/CouponReceivePopup/index.wxss +1 -0
  86. package/src/GoodsItem/index.js +7 -5
  87. package/src/GoodsItem/index.scss +45 -22
  88. package/src/GoodsItem/index.wxml +11 -11
  89. package/src/GoodsItem/index.wxs +18 -18
  90. package/src/GoodsItem/index.wxss +1331 -116
  91. package/src/GoodsRecommend/index.scss +162 -0
  92. package/src/GoodsRecommend/index.wxss +441 -33
  93. package/src/LiveGoodsList/Header/index.scss +79 -0
  94. package/src/LiveGoodsList/Header/index.wxss +156 -10
  95. package/src/LiveGoodsList/index.js +167 -25
  96. package/src/LiveGoodsList/index.scss +93 -0
  97. package/src/LiveGoodsList/index.wxml +41 -19
  98. package/src/LiveGoodsList/index.wxss +230 -50
  99. package/src/PayModule/button/index.scss +45 -0
  100. package/src/PayModule/button/index.wxss +50 -4
  101. package/src/TeacherGoodsList/index.js +778 -585
  102. package/src/TeacherGoodsList/index.scss +5 -2
  103. package/src/TeacherGoodsList/index.wxml +42 -24
  104. package/src/TeacherGoodsList/index.wxss +151 -14
  105. package/src/common/api/liveGoodsList.js +10 -2
  106. package/src/common/utils/index.js +14 -0
  107. package/src/coupon/components/CouponItem/index.less +1 -0
  108. package/src/coupon/components/CouponItem/index.scss +247 -0
  109. package/src/coupon/components/CouponItem/index.wxss +712 -86
  110. package/src/coupon/components/CouponSelect/index.scss +331 -0
  111. package/src/coupon/components/CouponSelect/index.wxss +910 -59
  112. package/src/coupon/index.scss +83 -0
  113. package/src/coupon/index.wxss +181 -15
  114. package/miniprogram_dist/GoodsItem/index.css +0 -1364
  115. package/miniprogram_dist/GoodsItem/index.less +0 -299
  116. package/miniprogram_dist/GoodsItem/index.min.css +0 -1
  117. package/miniprogram_dist/TeacherGoodsList/index.css +0 -187
  118. package/miniprogram_dist/TeacherGoodsList/index.min.css +0 -1
  119. package/src/GoodsItem/index.css +0 -1364
  120. package/src/GoodsItem/index.less +0 -299
  121. package/src/GoodsItem/index.min.css +0 -1
  122. package/src/TeacherGoodsList/index.css +0 -187
  123. package/src/TeacherGoodsList/index.min.css +0 -1
@@ -1,3 +1,4 @@
1
+ @charset "UTF-8";
1
2
  /* 主题色 */
2
3
  .theme-customize-bg {
3
4
  background: linear-gradient(180.25deg, #fe6500 0%, #ff4102 100%) !important;
@@ -16,11 +17,7 @@
16
17
  }
17
18
  .popUp {
18
19
  height: 80%;
19
- border-radius: 3.52vmin 3.52vmin 0 0;
20
- }
21
- .full-screen .header-content {
22
- position: absolute;
23
- width: 90vmin;
20
+ border-radius: 3.46667vmin 3.46667vmin 0 0;
24
21
  }
25
22
  .coupon-select-box {
26
23
  display: flex;
@@ -28,17 +25,21 @@
28
25
  margin: 0 auto;
29
26
  max-width: 100vmin;
30
27
  background-color: #F5F6F9;
31
- border-radius: 3.52vmin 3.52vmin 0 0;
28
+ border-radius: 3.46667vmin 3.46667vmin 0 0;
32
29
  user-select: none;
33
30
  }
34
31
  .coupon-select-box.vertical-screen {
35
32
  height: 100%;
36
33
  }
37
34
  .coupon-select-box.full-screen {
38
- height: 75vmin;
35
+ height: 74.93333vmin;
39
36
  overflow: scroll;
40
37
  margin: 13vmin 0;
41
38
  }
39
+ .coupon-select-box.full-screen .header-content {
40
+ position: absolute;
41
+ width: 90vmin;
42
+ }
42
43
  .coupon-select-box .coupon-header {
43
44
  display: flex;
44
45
  flex-direction: column;
@@ -52,28 +53,28 @@
52
53
  padding: 0 4.8vmin;
53
54
  top: 0;
54
55
  left: 0;
55
- font-size: 4.27vmin;
56
+ font-size: 4.26667vmin;
56
57
  font-weight: 500;
57
58
  background-color: #ffffff;
58
- border-radius: 3.52vmin 3.52vmin 0 0;
59
+ border-radius: 3.46667vmin 3.46667vmin 0 0;
59
60
  }
60
61
  .coupon-select-box .coupon-header .promo-code-wrap {
61
62
  display: flex;
62
63
  justify-content: center;
63
64
  align-items: center;
64
65
  padding: 0 4.8vmin;
65
- height: 15.33vmin;
66
+ height: 15.33333vmin;
66
67
  background-color: #fff;
67
68
  }
68
69
  .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input {
69
- width: 62.67vmin;
70
+ width: 62.66667vmin;
70
71
  height: 11.2vmin;
71
- padding: 0 2.93vmin;
72
- border: 0.13vmin solid #DCDCDC;
72
+ padding: 0 2.93333vmin;
73
+ border: 0.13333vmin solid #DCDCDC;
73
74
  border-right: none;
74
- border-radius: 1.17vmin 0 0 1.17vmin;
75
+ border-radius: 1.06667vmin 0 0 1.06667vmin;
75
76
  color: #333;
76
- font-size: 4.11vmin;
77
+ font-size: 4vmin;
77
78
  user-select: text;
78
79
  box-shadow: none;
79
80
  }
@@ -90,10 +91,10 @@
90
91
  line-height: 11.2vmin;
91
92
  margin: 0;
92
93
  border: none;
93
- border-radius: 0 1.17vmin 1.17vmin 0;
94
+ border-radius: 0 1.06667vmin 1.06667vmin 0;
94
95
  text-align: center;
95
96
  color: #fff;
96
- font-size: 3.67vmin;
97
+ font-size: 3.6vmin;
97
98
  cursor: pointer;
98
99
  }
99
100
  .coupon-select-box .coupon-header .coupon-code-tip {
@@ -101,22 +102,22 @@
101
102
  align-items: center;
102
103
  padding: 0 4.8vmin;
103
104
  background-color: #fff;
104
- height: 5.28vmin;
105
+ height: 5.33333vmin;
105
106
  }
106
107
  .coupon-select-box .coupon-header .coupon-code-tip .tips-img {
107
108
  margin-right: 0.88vmin;
108
- width: 4.11vmin;
109
- height: 3.81vmin;
109
+ width: 4vmin;
110
+ height: 3.73333vmin;
110
111
  }
111
112
  .coupon-select-box .coupon-header .coupon-code-tip text {
112
- font-size: 3.52vmin;
113
+ font-size: 3.46667vmin;
113
114
  color: #999;
114
115
  }
115
116
  .coupon-select-box .coupon-header .coupon-tab_warp {
116
117
  display: flex;
117
118
  justify-items: center;
118
119
  align-items: center;
119
- font-size: 4.69vmin;
120
+ font-size: 4.66667vmin;
120
121
  padding: 0 4.8vmin;
121
122
  font-weight: 700;
122
123
  text-align: center;
@@ -128,14 +129,14 @@
128
129
  .coupon-select-box .coupon-header .coupon-tab_warp .tabItem {
129
130
  position: relative;
130
131
  width: 50%;
131
- height: 14.08vmin;
132
- line-height: 14.08vmin;
132
+ height: 14.13333vmin;
133
+ line-height: 14.13333vmin;
133
134
  text-align: center;
134
135
  cursor: pointer;
135
136
  }
136
137
  .coupon-select-box .coupon-header .coupon-tab_warp .greyColor {
137
138
  color: #999999;
138
- font-size: 4.11vmin;
139
+ font-size: 4vmin;
139
140
  font-weight: normal;
140
141
  }
141
142
  .coupon-select-box .coupon-header .coupon-tab_warp .activeBorder {
@@ -143,22 +144,22 @@
143
144
  bottom: 0;
144
145
  left: 50%;
145
146
  transform: translateX(-50%);
146
- width: 5.87vmin;
147
- height: 0.59vmin;
147
+ width: 5.86667vmin;
148
+ height: 0.53333vmin;
148
149
  background: #09BB07;
149
- border-radius: 0.44vmin;
150
+ border-radius: 0.53333vmin;
150
151
  }
151
152
  .coupon-select-box .coupon-header .coupon-tips {
152
153
  display: flex;
153
154
  background: #fff;
154
155
  align-items: center;
155
156
  justify-items: center;
156
- padding: 1.33vmin 4.8vmin;
157
+ padding: 1.33333vmin 4.8vmin;
157
158
  justify-content: space-between;
158
159
  }
159
160
  .coupon-select-box .coupon-header .coupon-tips .coupon-tips-font {
160
- line-height: 7.33vmin;
161
- font-size: 3.52vmin;
161
+ line-height: 7.33333vmin;
162
+ font-size: 3.46667vmin;
162
163
  font-weight: 500;
163
164
  color: #000;
164
165
  }
@@ -166,15 +167,15 @@
166
167
  color: #FF4747;
167
168
  }
168
169
  .coupon-select-box .coupon-header .coupon-tips .coupon-best-combination {
169
- min-width: 28.16vmin;
170
- height: 7.04vmin;
170
+ min-width: 28.13333vmin;
171
+ height: 7.06667vmin;
171
172
  text-align: center;
172
- line-height: 7.33vmin;
173
+ line-height: 7.33333vmin;
173
174
  background: #FF821F;
174
175
  border: 0;
175
176
  margin: 0;
176
- border-radius: 5.87vmin;
177
- font-size: 3.52vmin;
177
+ border-radius: 5.86667vmin;
178
+ font-size: 3.46667vmin;
178
179
  font-weight: 500;
179
180
  color: #fff;
180
181
  }
@@ -187,13 +188,13 @@
187
188
  flex: 1;
188
189
  /* 撑满剩余容器高度 */
189
190
  text-align: center;
190
- padding: 3.52vmin 4.69vmin 0;
191
+ padding: 3.46667vmin 4.66667vmin 0;
191
192
  }
192
193
  .coupon-select-box .coupon-list .coupon-item {
193
194
  position: relative;
194
195
  display: flex;
195
- margin-bottom: 3.52vmin;
196
- border-radius: 1.17vmin;
196
+ margin-bottom: 3.46667vmin;
197
+ border-radius: 1.06667vmin;
197
198
  background: #fff;
198
199
  }
199
200
  .coupon-select-box .coupon-list .not-use-coupon {
@@ -201,15 +202,15 @@
201
202
  justify-content: space-between;
202
203
  align-items: center;
203
204
  width: 100%;
204
- height: 15.25vmin;
205
- margin-bottom: 3.52vmin;
206
- border-radius: 1.17vmin;
205
+ height: 15.2vmin;
206
+ margin-bottom: 3.46667vmin;
207
+ border-radius: 1.06667vmin;
207
208
  background: #fff;
208
209
  }
209
210
  .coupon-select-box .coupon-list .not-use-coupon .not-use-text {
210
- width: 74.51vmin;
211
- padding-left: 4.69vmin;
212
- font-size: 4.11vmin;
211
+ width: 74.4vmin;
212
+ padding-left: 4.66667vmin;
213
+ font-size: 4vmin;
213
214
  color: #333;
214
215
  text-align: left;
215
216
  }
@@ -221,27 +222,27 @@
221
222
  height: 100%;
222
223
  }
223
224
  .coupon-select-box .coupon-list .not-use-coupon .choose-box .choose-inner {
224
- width: 5.28vmin;
225
- height: 5.28vmin;
225
+ width: 5.33333vmin;
226
+ height: 5.33333vmin;
226
227
  border-radius: 50%;
227
- border: 0.44vmin solid #ccc;
228
+ border: 0.53333vmin solid #ccc;
228
229
  }
229
230
  .coupon-select-box .coupon-list .not-use-coupon .choose-box .coupon-not-used {
230
231
  border: none;
231
232
  }
232
233
  .coupon-select-box .coupon-bottom {
233
- height: 13.33vmin;
234
+ height: 13.33333vmin;
234
235
  display: flex;
235
236
  align-items: center;
236
237
  justify-content: center;
237
238
  background-color: #fff;
238
239
  }
239
240
  .coupon-select-box .coupon-bottom .coupon-confirm-button {
240
- height: 10.77vmin;
241
- border-radius: 6.45vmin;
242
- line-height: 10.77vmin;
241
+ height: 10.66667vmin;
242
+ border-radius: 6.4vmin;
243
+ line-height: 10.66667vmin;
243
244
  text-align: center;
244
- font-size: 4.11vmin;
245
+ font-size: 4vmin;
245
246
  font-weight: 500;
246
247
  color: #fff;
247
248
  }
@@ -250,7 +251,7 @@
250
251
  }
251
252
  .coupon-select-box.vertical-screen .coupon-bottom .coupon-confirm-button {
252
253
  background: #FF821F;
253
- width: 100.61vmin;
254
+ width: 100.53333vmin;
254
255
  }
255
256
  .coupon-select-box.vertical-screen .promo-code-btn {
256
257
  background-color: #FF821F !important;
@@ -262,7 +263,7 @@
262
263
  }
263
264
  .coupon-select-box.full-screen .coupon-bottom .coupon-confirm-button {
264
265
  background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
265
- width: 95vmin;
266
+ width: 94.93333vmin;
266
267
  }
267
268
  .coupon-select-box.full-screen .promo-code-btn {
268
269
  background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
@@ -270,12 +271,813 @@
270
271
  .coupon-select-box .coupon_emptypage {
271
272
  text-align: center;
272
273
  margin: 2vmin 0 10vmin 0;
273
- font-size: 3.5vmin;
274
+ font-size: 3.46667vmin;
274
275
  color: #ADADB4;
275
276
  }
276
277
  .coupon-select-box .coupon_emptypage .coupon_emptyImg {
277
- margin-bottom: 2.13vmin;
278
- width: 25vmin;
279
- height: 25vmin;
278
+ margin-bottom: 2.13333vmin;
279
+ width: 25.06667vmin;
280
+ height: 25.06667vmin;
280
281
  background-size: 100% 100%;
281
282
  }
283
+ @media screen and (min-width: 768px) and (orientation: portrait) {
284
+ .popUp {
285
+ height: 80%;
286
+ border-radius: 1.69271vmin 1.69271vmin 0 0;
287
+ }
288
+ .coupon-select-box {
289
+ display: flex;
290
+ flex-direction: column;
291
+ margin: 0 auto;
292
+ max-width: 100vmin;
293
+ background-color: #F5F6F9;
294
+ border-radius: 1.69271vmin 1.69271vmin 0 0;
295
+ user-select: none;
296
+ }
297
+ .coupon-select-box.vertical-screen {
298
+ height: 100%;
299
+ }
300
+ .coupon-select-box.full-screen {
301
+ height: 36.58854vmin;
302
+ overflow: scroll;
303
+ margin: 6.34766vmin 0;
304
+ }
305
+ .coupon-select-box.full-screen .header-content {
306
+ position: absolute;
307
+ width: 90vmin;
308
+ }
309
+ .coupon-select-box .coupon-header {
310
+ display: flex;
311
+ flex-direction: column;
312
+ }
313
+ .coupon-select-box .coupon-header .header-content {
314
+ display: flex;
315
+ flex-direction: row;
316
+ justify-content: space-between;
317
+ align-items: center;
318
+ height: 5.85938vmin;
319
+ padding: 0 2.34375vmin;
320
+ top: 0;
321
+ left: 0;
322
+ font-size: 2.08333vmin;
323
+ font-weight: 500;
324
+ background-color: #ffffff;
325
+ border-radius: 1.69271vmin 1.69271vmin 0 0;
326
+ }
327
+ .coupon-select-box .coupon-header .promo-code-wrap {
328
+ display: flex;
329
+ justify-content: center;
330
+ align-items: center;
331
+ padding: 0 2.34375vmin;
332
+ height: 7.48698vmin;
333
+ background-color: #fff;
334
+ }
335
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input {
336
+ width: 30.59896vmin;
337
+ height: 5.46875vmin;
338
+ padding: 0 1.43229vmin;
339
+ border: 0.0651vmin solid #DCDCDC;
340
+ border-right: none;
341
+ border-radius: 0.52083vmin 0 0 0.52083vmin;
342
+ color: #333;
343
+ font-size: 1.95312vmin;
344
+ user-select: text;
345
+ box-shadow: none;
346
+ }
347
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input::-webkit-input-placeholder {
348
+ color: #c8c8c8;
349
+ }
350
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input:disabled {
351
+ color: #999;
352
+ background-color: #eee;
353
+ }
354
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-btn {
355
+ width: 11.71875vmin;
356
+ height: 5.46875vmin;
357
+ line-height: 5.46875vmin;
358
+ margin: 0;
359
+ border: none;
360
+ border-radius: 0 0.52083vmin 0.52083vmin 0;
361
+ text-align: center;
362
+ color: #fff;
363
+ font-size: 1.75781vmin;
364
+ cursor: pointer;
365
+ }
366
+ .coupon-select-box .coupon-header .coupon-code-tip {
367
+ display: flex;
368
+ align-items: center;
369
+ padding: 0 2.34375vmin;
370
+ background-color: #fff;
371
+ height: 2.60417vmin;
372
+ }
373
+ .coupon-select-box .coupon-header .coupon-code-tip .tips-img {
374
+ margin-right: 0.88vmin;
375
+ width: 1.95312vmin;
376
+ height: 1.82292vmin;
377
+ }
378
+ .coupon-select-box .coupon-header .coupon-code-tip text {
379
+ font-size: 1.69271vmin;
380
+ color: #999;
381
+ }
382
+ .coupon-select-box .coupon-header .coupon-tab_warp {
383
+ display: flex;
384
+ justify-items: center;
385
+ align-items: center;
386
+ font-size: 2.27865vmin;
387
+ padding: 0 2.34375vmin;
388
+ font-weight: 700;
389
+ text-align: center;
390
+ background-color: #fff;
391
+ }
392
+ .coupon-select-box .coupon-header .coupon-tab_warp text {
393
+ display: block;
394
+ }
395
+ .coupon-select-box .coupon-header .coupon-tab_warp .tabItem {
396
+ position: relative;
397
+ width: 50%;
398
+ height: 6.90104vmin;
399
+ line-height: 6.90104vmin;
400
+ text-align: center;
401
+ cursor: pointer;
402
+ }
403
+ .coupon-select-box .coupon-header .coupon-tab_warp .greyColor {
404
+ color: #999999;
405
+ font-size: 1.95312vmin;
406
+ font-weight: normal;
407
+ }
408
+ .coupon-select-box .coupon-header .coupon-tab_warp .activeBorder {
409
+ position: absolute;
410
+ bottom: 0;
411
+ left: 50%;
412
+ transform: translateX(-50%);
413
+ width: 2.86458vmin;
414
+ height: 0.26042vmin;
415
+ background: #09BB07;
416
+ border-radius: 0.26042vmin;
417
+ }
418
+ .coupon-select-box .coupon-header .coupon-tips {
419
+ display: flex;
420
+ background: #fff;
421
+ align-items: center;
422
+ justify-items: center;
423
+ padding: 0.65104vmin 2.34375vmin;
424
+ justify-content: space-between;
425
+ }
426
+ .coupon-select-box .coupon-header .coupon-tips .coupon-tips-font {
427
+ line-height: 3.58073vmin;
428
+ font-size: 1.69271vmin;
429
+ font-weight: 500;
430
+ color: #000;
431
+ }
432
+ .coupon-select-box .coupon-header .coupon-tips .coupon-tips-font .coupon-money-num {
433
+ color: #FF4747;
434
+ }
435
+ .coupon-select-box .coupon-header .coupon-tips .coupon-best-combination {
436
+ min-width: 13.73698vmin;
437
+ height: 3.45052vmin;
438
+ text-align: center;
439
+ line-height: 3.58073vmin;
440
+ background: #FF821F;
441
+ border: 0;
442
+ margin: 0;
443
+ border-radius: 2.86458vmin;
444
+ font-size: 1.69271vmin;
445
+ font-weight: 500;
446
+ color: #fff;
447
+ }
448
+ .coupon-select-box.vertical-screen .coupon-list {
449
+ overflow: scroll;
450
+ -webkit-overflow-scrolling: touch;
451
+ }
452
+ .coupon-select-box .coupon-list {
453
+ box-sizing: border-box;
454
+ flex: 1;
455
+ /* 撑满剩余容器高度 */
456
+ text-align: center;
457
+ padding: 1.69271vmin 2.27865vmin 0;
458
+ }
459
+ .coupon-select-box .coupon-list .coupon-item {
460
+ position: relative;
461
+ display: flex;
462
+ margin-bottom: 1.69271vmin;
463
+ border-radius: 0.52083vmin;
464
+ background: #fff;
465
+ }
466
+ .coupon-select-box .coupon-list .not-use-coupon {
467
+ display: flex;
468
+ justify-content: space-between;
469
+ align-items: center;
470
+ width: 100%;
471
+ height: 7.42188vmin;
472
+ margin-bottom: 1.69271vmin;
473
+ border-radius: 0.52083vmin;
474
+ background: #fff;
475
+ }
476
+ .coupon-select-box .coupon-list .not-use-coupon .not-use-text {
477
+ width: 36.32812vmin;
478
+ padding-left: 2.27865vmin;
479
+ font-size: 1.95312vmin;
480
+ color: #333;
481
+ text-align: left;
482
+ }
483
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box {
484
+ display: flex;
485
+ align-items: center;
486
+ justify-content: center;
487
+ width: 8.59375vmin;
488
+ height: 100%;
489
+ }
490
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box .choose-inner {
491
+ width: 2.60417vmin;
492
+ height: 2.60417vmin;
493
+ border-radius: 50%;
494
+ border: 0.26042vmin solid #ccc;
495
+ }
496
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box .coupon-not-used {
497
+ border: none;
498
+ }
499
+ .coupon-select-box .coupon-bottom {
500
+ height: 6.51042vmin;
501
+ display: flex;
502
+ align-items: center;
503
+ justify-content: center;
504
+ background-color: #fff;
505
+ }
506
+ .coupon-select-box .coupon-bottom .coupon-confirm-button {
507
+ height: 5.20833vmin;
508
+ border-radius: 3.125vmin;
509
+ line-height: 5.20833vmin;
510
+ text-align: center;
511
+ font-size: 1.95312vmin;
512
+ font-weight: 500;
513
+ color: #fff;
514
+ }
515
+ .coupon-select-box.vertical-screen .coupon-bottom {
516
+ padding: 0 2.34375vmin;
517
+ }
518
+ .coupon-select-box.vertical-screen .coupon-bottom .coupon-confirm-button {
519
+ background: #FF821F;
520
+ width: 49.08854vmin;
521
+ }
522
+ .coupon-select-box.vertical-screen .promo-code-btn {
523
+ background-color: #FF821F !important;
524
+ }
525
+ .coupon-select-box.full-screen .coupon-bottom {
526
+ width: 100%;
527
+ position: absolute;
528
+ bottom: 0;
529
+ }
530
+ .coupon-select-box.full-screen .coupon-bottom .coupon-confirm-button {
531
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
532
+ width: 46.35417vmin;
533
+ }
534
+ .coupon-select-box.full-screen .promo-code-btn {
535
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
536
+ }
537
+ .coupon-select-box .coupon_emptypage {
538
+ text-align: center;
539
+ margin: 0.97656vmin 0 4.88281vmin 0;
540
+ font-size: 1.69271vmin;
541
+ color: #ADADB4;
542
+ }
543
+ .coupon-select-box .coupon_emptypage .coupon_emptyImg {
544
+ margin-bottom: 1.04167vmin;
545
+ width: 12.23958vmin;
546
+ height: 12.23958vmin;
547
+ background-size: 100% 100%;
548
+ }
549
+ }
550
+ @media screen and (min-height: 630px) and (orientation: landscape) {
551
+ .popUp {
552
+ height: 80%;
553
+ border-radius: 2.06349vmin 2.06349vmin 0 0;
554
+ }
555
+ .coupon-select-box {
556
+ display: flex;
557
+ flex-direction: column;
558
+ margin: 0 auto;
559
+ max-width: 100vmin;
560
+ background-color: #F5F6F9;
561
+ border-radius: 2.06349vmin 2.06349vmin 0 0;
562
+ user-select: none;
563
+ }
564
+ .coupon-select-box.vertical-screen {
565
+ height: 100%;
566
+ }
567
+ .coupon-select-box.full-screen {
568
+ height: 44.60317vmin;
569
+ overflow: scroll;
570
+ margin: 7.7381vmin 0;
571
+ }
572
+ .coupon-select-box.full-screen .header-content {
573
+ position: absolute;
574
+ width: 90vmin;
575
+ }
576
+ .coupon-select-box .coupon-header {
577
+ display: flex;
578
+ flex-direction: column;
579
+ }
580
+ .coupon-select-box .coupon-header .header-content {
581
+ display: flex;
582
+ flex-direction: row;
583
+ justify-content: space-between;
584
+ align-items: center;
585
+ height: 7.14286vmin;
586
+ padding: 0 2.85714vmin;
587
+ top: 0;
588
+ left: 0;
589
+ font-size: 2.53968vmin;
590
+ font-weight: 500;
591
+ background-color: #ffffff;
592
+ border-radius: 2.06349vmin 2.06349vmin 0 0;
593
+ }
594
+ .coupon-select-box .coupon-header .promo-code-wrap {
595
+ display: flex;
596
+ justify-content: center;
597
+ align-items: center;
598
+ padding: 0 2.85714vmin;
599
+ height: 9.12698vmin;
600
+ background-color: #fff;
601
+ }
602
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input {
603
+ width: 37.30159vmin;
604
+ height: 6.66667vmin;
605
+ padding: 0 1.74603vmin;
606
+ border: 0.07937vmin solid #DCDCDC;
607
+ border-right: none;
608
+ border-radius: 0.63492vmin 0 0 0.63492vmin;
609
+ color: #333;
610
+ font-size: 2.38095vmin;
611
+ user-select: text;
612
+ box-shadow: none;
613
+ }
614
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input::-webkit-input-placeholder {
615
+ color: #c8c8c8;
616
+ }
617
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input:disabled {
618
+ color: #999;
619
+ background-color: #eee;
620
+ }
621
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-btn {
622
+ width: 14.28571vmin;
623
+ height: 6.66667vmin;
624
+ line-height: 6.66667vmin;
625
+ margin: 0;
626
+ border: none;
627
+ border-radius: 0 0.63492vmin 0.63492vmin 0;
628
+ text-align: center;
629
+ color: #fff;
630
+ font-size: 2.14286vmin;
631
+ cursor: pointer;
632
+ }
633
+ .coupon-select-box .coupon-header .coupon-code-tip {
634
+ display: flex;
635
+ align-items: center;
636
+ padding: 0 2.85714vmin;
637
+ background-color: #fff;
638
+ height: 3.1746vmin;
639
+ }
640
+ .coupon-select-box .coupon-header .coupon-code-tip .tips-img {
641
+ margin-right: 0.88vmin;
642
+ width: 2.38095vmin;
643
+ height: 2.22222vmin;
644
+ }
645
+ .coupon-select-box .coupon-header .coupon-code-tip text {
646
+ font-size: 2.06349vmin;
647
+ color: #999;
648
+ }
649
+ .coupon-select-box .coupon-header .coupon-tab_warp {
650
+ display: flex;
651
+ justify-items: center;
652
+ align-items: center;
653
+ font-size: 2.77778vmin;
654
+ padding: 0 2.85714vmin;
655
+ font-weight: 700;
656
+ text-align: center;
657
+ background-color: #fff;
658
+ }
659
+ .coupon-select-box .coupon-header .coupon-tab_warp text {
660
+ display: block;
661
+ }
662
+ .coupon-select-box .coupon-header .coupon-tab_warp .tabItem {
663
+ position: relative;
664
+ width: 50%;
665
+ height: 8.4127vmin;
666
+ line-height: 8.4127vmin;
667
+ text-align: center;
668
+ cursor: pointer;
669
+ }
670
+ .coupon-select-box .coupon-header .coupon-tab_warp .greyColor {
671
+ color: #999999;
672
+ font-size: 2.38095vmin;
673
+ font-weight: normal;
674
+ }
675
+ .coupon-select-box .coupon-header .coupon-tab_warp .activeBorder {
676
+ position: absolute;
677
+ bottom: 0;
678
+ left: 50%;
679
+ transform: translateX(-50%);
680
+ width: 3.49206vmin;
681
+ height: 0.31746vmin;
682
+ background: #09BB07;
683
+ border-radius: 0.31746vmin;
684
+ }
685
+ .coupon-select-box .coupon-header .coupon-tips {
686
+ display: flex;
687
+ background: #fff;
688
+ align-items: center;
689
+ justify-items: center;
690
+ padding: 0.79365vmin 2.85714vmin;
691
+ justify-content: space-between;
692
+ }
693
+ .coupon-select-box .coupon-header .coupon-tips .coupon-tips-font {
694
+ line-height: 4.36508vmin;
695
+ font-size: 2.06349vmin;
696
+ font-weight: 500;
697
+ color: #000;
698
+ }
699
+ .coupon-select-box .coupon-header .coupon-tips .coupon-tips-font .coupon-money-num {
700
+ color: #FF4747;
701
+ }
702
+ .coupon-select-box .coupon-header .coupon-tips .coupon-best-combination {
703
+ min-width: 16.74603vmin;
704
+ height: 4.20635vmin;
705
+ text-align: center;
706
+ line-height: 4.36508vmin;
707
+ background: #FF821F;
708
+ border: 0;
709
+ margin: 0;
710
+ border-radius: 3.49206vmin;
711
+ font-size: 2.06349vmin;
712
+ font-weight: 500;
713
+ color: #fff;
714
+ }
715
+ .coupon-select-box.vertical-screen .coupon-list {
716
+ overflow: scroll;
717
+ -webkit-overflow-scrolling: touch;
718
+ }
719
+ .coupon-select-box .coupon-list {
720
+ box-sizing: border-box;
721
+ flex: 1;
722
+ /* 撑满剩余容器高度 */
723
+ text-align: center;
724
+ padding: 2.06349vmin 2.77778vmin 0;
725
+ }
726
+ .coupon-select-box .coupon-list .coupon-item {
727
+ position: relative;
728
+ display: flex;
729
+ margin-bottom: 2.06349vmin;
730
+ border-radius: 0.63492vmin;
731
+ background: #fff;
732
+ }
733
+ .coupon-select-box .coupon-list .not-use-coupon {
734
+ display: flex;
735
+ justify-content: space-between;
736
+ align-items: center;
737
+ width: 100%;
738
+ height: 9.04762vmin;
739
+ margin-bottom: 2.06349vmin;
740
+ border-radius: 0.63492vmin;
741
+ background: #fff;
742
+ }
743
+ .coupon-select-box .coupon-list .not-use-coupon .not-use-text {
744
+ width: 44.28571vmin;
745
+ padding-left: 2.77778vmin;
746
+ font-size: 2.38095vmin;
747
+ color: #333;
748
+ text-align: left;
749
+ }
750
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box {
751
+ display: flex;
752
+ align-items: center;
753
+ justify-content: center;
754
+ width: 10.47619vmin;
755
+ height: 100%;
756
+ }
757
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box .choose-inner {
758
+ width: 3.1746vmin;
759
+ height: 3.1746vmin;
760
+ border-radius: 50%;
761
+ border: 0.31746vmin solid #ccc;
762
+ }
763
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box .coupon-not-used {
764
+ border: none;
765
+ }
766
+ .coupon-select-box .coupon-bottom {
767
+ height: 7.93651vmin;
768
+ display: flex;
769
+ align-items: center;
770
+ justify-content: center;
771
+ background-color: #fff;
772
+ }
773
+ .coupon-select-box .coupon-bottom .coupon-confirm-button {
774
+ height: 6.34921vmin;
775
+ border-radius: 3.80952vmin;
776
+ line-height: 6.34921vmin;
777
+ text-align: center;
778
+ font-size: 2.38095vmin;
779
+ font-weight: 500;
780
+ color: #fff;
781
+ }
782
+ .coupon-select-box.vertical-screen .coupon-bottom {
783
+ padding: 0 2.85714vmin;
784
+ }
785
+ .coupon-select-box.vertical-screen .coupon-bottom .coupon-confirm-button {
786
+ background: #FF821F;
787
+ width: 59.84127vmin;
788
+ }
789
+ .coupon-select-box.vertical-screen .promo-code-btn {
790
+ background-color: #FF821F !important;
791
+ }
792
+ .coupon-select-box.full-screen .coupon-bottom {
793
+ width: 100%;
794
+ position: absolute;
795
+ bottom: 0;
796
+ }
797
+ .coupon-select-box.full-screen .coupon-bottom .coupon-confirm-button {
798
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
799
+ width: 56.50794vmin;
800
+ }
801
+ .coupon-select-box.full-screen .promo-code-btn {
802
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
803
+ }
804
+ .coupon-select-box .coupon_emptypage {
805
+ text-align: center;
806
+ margin: 1.19048vmin 0 5.95238vmin 0;
807
+ font-size: 2.06349vmin;
808
+ color: #ADADB4;
809
+ }
810
+ .coupon-select-box .coupon_emptypage .coupon_emptyImg {
811
+ margin-bottom: 1.26984vmin;
812
+ width: 14.92063vmin;
813
+ height: 14.92063vmin;
814
+ background-size: 100% 100%;
815
+ }
816
+ }
817
+ @media screen and (min-height: 768px) and (orientation: landscape) {
818
+ .popUp {
819
+ height: 80%;
820
+ border-radius: 1.69271vmin 1.69271vmin 0 0;
821
+ }
822
+ .coupon-select-box {
823
+ display: flex;
824
+ flex-direction: column;
825
+ margin: 0 auto;
826
+ max-width: 100vmin;
827
+ background-color: #F5F6F9;
828
+ border-radius: 1.69271vmin 1.69271vmin 0 0;
829
+ user-select: none;
830
+ }
831
+ .coupon-select-box.vertical-screen {
832
+ height: 100%;
833
+ }
834
+ .coupon-select-box.full-screen {
835
+ height: 36.58854vmin;
836
+ overflow: scroll;
837
+ margin: 6.34766vmin 0;
838
+ }
839
+ .coupon-select-box.full-screen .header-content {
840
+ position: absolute;
841
+ width: 90vmin;
842
+ }
843
+ .coupon-select-box .coupon-header {
844
+ display: flex;
845
+ flex-direction: column;
846
+ }
847
+ .coupon-select-box .coupon-header .header-content {
848
+ display: flex;
849
+ flex-direction: row;
850
+ justify-content: space-between;
851
+ align-items: center;
852
+ height: 5.85938vmin;
853
+ padding: 0 2.34375vmin;
854
+ top: 0;
855
+ left: 0;
856
+ font-size: 2.08333vmin;
857
+ font-weight: 500;
858
+ background-color: #ffffff;
859
+ border-radius: 1.69271vmin 1.69271vmin 0 0;
860
+ }
861
+ .coupon-select-box .coupon-header .promo-code-wrap {
862
+ display: flex;
863
+ justify-content: center;
864
+ align-items: center;
865
+ padding: 0 2.34375vmin;
866
+ height: 7.48698vmin;
867
+ background-color: #fff;
868
+ }
869
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input {
870
+ width: 30.59896vmin;
871
+ height: 5.46875vmin;
872
+ padding: 0 1.43229vmin;
873
+ border: 0.0651vmin solid #DCDCDC;
874
+ border-right: none;
875
+ border-radius: 0.52083vmin 0 0 0.52083vmin;
876
+ color: #333;
877
+ font-size: 1.95312vmin;
878
+ user-select: text;
879
+ box-shadow: none;
880
+ }
881
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input::-webkit-input-placeholder {
882
+ color: #c8c8c8;
883
+ }
884
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-input:disabled {
885
+ color: #999;
886
+ background-color: #eee;
887
+ }
888
+ .coupon-select-box .coupon-header .promo-code-wrap .promo-code-btn {
889
+ width: 11.71875vmin;
890
+ height: 5.46875vmin;
891
+ line-height: 5.46875vmin;
892
+ margin: 0;
893
+ border: none;
894
+ border-radius: 0 0.52083vmin 0.52083vmin 0;
895
+ text-align: center;
896
+ color: #fff;
897
+ font-size: 1.75781vmin;
898
+ cursor: pointer;
899
+ }
900
+ .coupon-select-box .coupon-header .coupon-code-tip {
901
+ display: flex;
902
+ align-items: center;
903
+ padding: 0 2.34375vmin;
904
+ background-color: #fff;
905
+ height: 2.60417vmin;
906
+ }
907
+ .coupon-select-box .coupon-header .coupon-code-tip .tips-img {
908
+ margin-right: 0.88vmin;
909
+ width: 1.95312vmin;
910
+ height: 1.82292vmin;
911
+ }
912
+ .coupon-select-box .coupon-header .coupon-code-tip text {
913
+ font-size: 1.69271vmin;
914
+ color: #999;
915
+ }
916
+ .coupon-select-box .coupon-header .coupon-tab_warp {
917
+ display: flex;
918
+ justify-items: center;
919
+ align-items: center;
920
+ font-size: 2.27865vmin;
921
+ padding: 0 2.34375vmin;
922
+ font-weight: 700;
923
+ text-align: center;
924
+ background-color: #fff;
925
+ }
926
+ .coupon-select-box .coupon-header .coupon-tab_warp text {
927
+ display: block;
928
+ }
929
+ .coupon-select-box .coupon-header .coupon-tab_warp .tabItem {
930
+ position: relative;
931
+ width: 50%;
932
+ height: 6.90104vmin;
933
+ line-height: 6.90104vmin;
934
+ text-align: center;
935
+ cursor: pointer;
936
+ }
937
+ .coupon-select-box .coupon-header .coupon-tab_warp .greyColor {
938
+ color: #999999;
939
+ font-size: 1.95312vmin;
940
+ font-weight: normal;
941
+ }
942
+ .coupon-select-box .coupon-header .coupon-tab_warp .activeBorder {
943
+ position: absolute;
944
+ bottom: 0;
945
+ left: 50%;
946
+ transform: translateX(-50%);
947
+ width: 2.86458vmin;
948
+ height: 0.26042vmin;
949
+ background: #09BB07;
950
+ border-radius: 0.26042vmin;
951
+ }
952
+ .coupon-select-box .coupon-header .coupon-tips {
953
+ display: flex;
954
+ background: #fff;
955
+ align-items: center;
956
+ justify-items: center;
957
+ padding: 0.65104vmin 2.34375vmin;
958
+ justify-content: space-between;
959
+ }
960
+ .coupon-select-box .coupon-header .coupon-tips .coupon-tips-font {
961
+ line-height: 3.58073vmin;
962
+ font-size: 1.69271vmin;
963
+ font-weight: 500;
964
+ color: #000;
965
+ }
966
+ .coupon-select-box .coupon-header .coupon-tips .coupon-tips-font .coupon-money-num {
967
+ color: #FF4747;
968
+ }
969
+ .coupon-select-box .coupon-header .coupon-tips .coupon-best-combination {
970
+ min-width: 13.73698vmin;
971
+ height: 3.45052vmin;
972
+ text-align: center;
973
+ line-height: 3.58073vmin;
974
+ background: #FF821F;
975
+ border: 0;
976
+ margin: 0;
977
+ border-radius: 2.86458vmin;
978
+ font-size: 1.69271vmin;
979
+ font-weight: 500;
980
+ color: #fff;
981
+ }
982
+ .coupon-select-box.vertical-screen .coupon-list {
983
+ overflow: scroll;
984
+ -webkit-overflow-scrolling: touch;
985
+ }
986
+ .coupon-select-box .coupon-list {
987
+ box-sizing: border-box;
988
+ flex: 1;
989
+ /* 撑满剩余容器高度 */
990
+ text-align: center;
991
+ padding: 1.69271vmin 2.27865vmin 0;
992
+ }
993
+ .coupon-select-box .coupon-list .coupon-item {
994
+ position: relative;
995
+ display: flex;
996
+ margin-bottom: 1.69271vmin;
997
+ border-radius: 0.52083vmin;
998
+ background: #fff;
999
+ }
1000
+ .coupon-select-box .coupon-list .not-use-coupon {
1001
+ display: flex;
1002
+ justify-content: space-between;
1003
+ align-items: center;
1004
+ width: 100%;
1005
+ height: 7.42188vmin;
1006
+ margin-bottom: 1.69271vmin;
1007
+ border-radius: 0.52083vmin;
1008
+ background: #fff;
1009
+ }
1010
+ .coupon-select-box .coupon-list .not-use-coupon .not-use-text {
1011
+ width: 36.32812vmin;
1012
+ padding-left: 2.27865vmin;
1013
+ font-size: 1.95312vmin;
1014
+ color: #333;
1015
+ text-align: left;
1016
+ }
1017
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box {
1018
+ display: flex;
1019
+ align-items: center;
1020
+ justify-content: center;
1021
+ width: 8.59375vmin;
1022
+ height: 100%;
1023
+ }
1024
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box .choose-inner {
1025
+ width: 2.60417vmin;
1026
+ height: 2.60417vmin;
1027
+ border-radius: 50%;
1028
+ border: 0.26042vmin solid #ccc;
1029
+ }
1030
+ .coupon-select-box .coupon-list .not-use-coupon .choose-box .coupon-not-used {
1031
+ border: none;
1032
+ }
1033
+ .coupon-select-box .coupon-bottom {
1034
+ height: 6.51042vmin;
1035
+ display: flex;
1036
+ align-items: center;
1037
+ justify-content: center;
1038
+ background-color: #fff;
1039
+ }
1040
+ .coupon-select-box .coupon-bottom .coupon-confirm-button {
1041
+ height: 5.20833vmin;
1042
+ border-radius: 3.125vmin;
1043
+ line-height: 5.20833vmin;
1044
+ text-align: center;
1045
+ font-size: 1.95312vmin;
1046
+ font-weight: 500;
1047
+ color: #fff;
1048
+ }
1049
+ .coupon-select-box.vertical-screen .coupon-bottom {
1050
+ padding: 0 2.34375vmin;
1051
+ }
1052
+ .coupon-select-box.vertical-screen .coupon-bottom .coupon-confirm-button {
1053
+ background: #FF821F;
1054
+ width: 49.08854vmin;
1055
+ }
1056
+ .coupon-select-box.vertical-screen .promo-code-btn {
1057
+ background-color: #FF821F !important;
1058
+ }
1059
+ .coupon-select-box.full-screen .coupon-bottom {
1060
+ width: 100%;
1061
+ position: absolute;
1062
+ bottom: 0;
1063
+ }
1064
+ .coupon-select-box.full-screen .coupon-bottom .coupon-confirm-button {
1065
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
1066
+ width: 46.35417vmin;
1067
+ }
1068
+ .coupon-select-box.full-screen .promo-code-btn {
1069
+ background: linear-gradient(270deg, #fe6500 0%, #ff4102 100%);
1070
+ }
1071
+ .coupon-select-box .coupon_emptypage {
1072
+ text-align: center;
1073
+ margin: 0.97656vmin 0 4.88281vmin 0;
1074
+ font-size: 1.69271vmin;
1075
+ color: #ADADB4;
1076
+ }
1077
+ .coupon-select-box .coupon_emptypage .coupon_emptyImg {
1078
+ margin-bottom: 1.04167vmin;
1079
+ width: 12.23958vmin;
1080
+ height: 12.23958vmin;
1081
+ background-size: 100% 100%;
1082
+ }
1083
+ }