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