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