xiaoe_mp_npm 1.0.21 → 1.0.22-store2

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 (165) hide show
  1. package/.prettierrc.js +32 -6
  2. package/miniprogram_dist/GoodsItem/index.json +6 -6
  3. package/miniprogram_dist/GoodsItem/index.wxs +18 -18
  4. package/miniprogram_dist/LiveGoodsList/Header/index.js +54 -54
  5. package/miniprogram_dist/LiveGoodsList/Header/index.json +6 -6
  6. package/miniprogram_dist/LiveGoodsList/Header/index.less +45 -45
  7. package/miniprogram_dist/LiveGoodsList/Header/index.scss +105 -105
  8. package/miniprogram_dist/LiveGoodsList/Header/index.wxml +32 -32
  9. package/miniprogram_dist/LiveGoodsList/README.md +9 -9
  10. package/miniprogram_dist/LiveGoodsList/index.json +8 -8
  11. package/miniprogram_dist/LiveGoodsList/index.less +53 -53
  12. package/miniprogram_dist/LiveGoodsList/index.scss +92 -92
  13. package/miniprogram_dist/Task/TaskBubble/index.js +2 -1
  14. package/miniprogram_dist/Task/TaskPopup/component/RewardList/index.js +23 -21
  15. package/miniprogram_dist/Task/TaskPopup/component/RewardList/index.wxml +1 -0
  16. package/miniprogram_dist/Task/TaskPopup/component/TaskItem/index.js +264 -169
  17. package/miniprogram_dist/Task/TaskPopup/component/TaskItem/index.scss +26 -0
  18. package/miniprogram_dist/Task/TaskPopup/component/TaskItem/index.wxml +32 -13
  19. package/miniprogram_dist/Task/TaskPopup/component/TaskItem/index.wxss +96 -0
  20. package/miniprogram_dist/Task/TaskPopup/component/TaskList/index.js +8 -0
  21. package/miniprogram_dist/Task/TaskPopup/component/TaskList/index.wxml +1 -0
  22. package/miniprogram_dist/Task/TaskPopup/component/TaskType/index.js +4 -0
  23. package/miniprogram_dist/Task/TaskPopup/component/TaskType/index.wxml +1 -0
  24. package/miniprogram_dist/Task/TaskPopup/index.js +76 -70
  25. package/miniprogram_dist/Task/TaskPopup/index.json +2 -2
  26. package/miniprogram_dist/Task/TaskPopup/index.wxml +2 -0
  27. package/miniprogram_dist/Task/TaskQuizPopup/components/quizContent/index.js +132 -0
  28. package/miniprogram_dist/Task/TaskQuizPopup/components/quizContent/index.json +6 -0
  29. package/miniprogram_dist/Task/TaskQuizPopup/components/quizContent/index.scss +192 -0
  30. package/miniprogram_dist/Task/TaskQuizPopup/components/quizContent/index.wxml +65 -0
  31. package/miniprogram_dist/Task/TaskQuizPopup/components/quizContent/index.wxs +79 -0
  32. package/miniprogram_dist/Task/TaskQuizPopup/components/quizContent/index.wxss +521 -0
  33. package/miniprogram_dist/Task/TaskQuizPopup/components/quizRichText/index.js +40 -0
  34. package/miniprogram_dist/Task/TaskQuizPopup/components/quizRichText/index.json +6 -0
  35. package/miniprogram_dist/Task/TaskQuizPopup/components/quizRichText/index.scss +7 -0
  36. package/miniprogram_dist/Task/TaskQuizPopup/components/quizRichText/index.wxml +2 -0
  37. package/miniprogram_dist/Task/TaskQuizPopup/components/quizRichText/index.wxss +298 -0
  38. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/base.wxml +50 -0
  39. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/html2json.js +623 -0
  40. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/htmlparser.js +183 -0
  41. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/iframeParse.js +216 -0
  42. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/loop.wxml +3563 -0
  43. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/showdown.js +2364 -0
  44. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/wxDiscode.js +209 -0
  45. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/wxParse.js +269 -0
  46. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/wxParse.wxml +1276 -0
  47. package/miniprogram_dist/Task/TaskQuizPopup/components/wxParse/wxParse.wxss +316 -0
  48. package/miniprogram_dist/Task/TaskQuizPopup/index.js +225 -0
  49. package/miniprogram_dist/Task/TaskQuizPopup/index.json +8 -0
  50. package/miniprogram_dist/Task/TaskQuizPopup/index.scss +159 -0
  51. package/miniprogram_dist/Task/TaskQuizPopup/index.wxml +97 -0
  52. package/miniprogram_dist/Task/TaskQuizPopup/index.wxss +478 -0
  53. package/miniprogram_dist/Task/taskQuizRemindPopup/index.js +74 -0
  54. package/miniprogram_dist/Task/taskQuizRemindPopup/index.json +6 -0
  55. package/miniprogram_dist/Task/taskQuizRemindPopup/index.scss +108 -0
  56. package/miniprogram_dist/Task/taskQuizRemindPopup/index.wxml +27 -0
  57. package/miniprogram_dist/Task/taskQuizRemindPopup/index.wxss +286 -0
  58. package/miniprogram_dist/common/utils/tool.js +54 -48
  59. package/package.json +1 -1
  60. package/src/AliveInvite/LiveRoomVertical/index.wxss +252 -252
  61. package/src/CollectionAddress/index.wxss +5 -5
  62. package/src/ConfirmOrder/components/AddressEdit/index.wxss +120 -120
  63. package/src/ConfirmOrder/components/AddressManage/index.wxss +98 -98
  64. package/src/ConfirmOrder/components/AddressSelect/index.wxss +67 -67
  65. package/src/ConfirmOrder/components/ChoosePicker/index.wxss +18 -18
  66. package/src/ConfirmOrder/components/GoodsInfo/components/GoodsCommerce/components/entityGiftList/index.wxss +45 -45
  67. package/src/ConfirmOrder/components/GoodsInfo/components/GoodsCommerce/components/entityItem/index.wxss +100 -100
  68. package/src/ConfirmOrder/components/GoodsInfo/components/GoodsCommerce/index.wxss +55 -55
  69. package/src/ConfirmOrder/components/GoodsInfo/components/ImageData/index.wxss +13 -13
  70. package/src/ConfirmOrder/components/Header/index.wxss +26 -26
  71. package/src/ConfirmOrder/components/IntegralSelect/componenets/integralTips/index.wxss +85 -85
  72. package/src/ConfirmOrder/components/Invoice/components/InvoiceSelect/index.wxss +155 -155
  73. package/src/ConfirmOrder/components/Invoice/components/InvoiceTip/index.wxss +51 -51
  74. package/src/ConfirmOrder/components/ModeSelect/index.wxss +44 -44
  75. package/src/ConfirmOrder/components/PickupSelect/index.wxss +22 -22
  76. package/src/ConfirmOrder/components/SelectSite/index.wxss +82 -82
  77. package/src/ConfirmOrder/components/Shipper/index.wxss +76 -76
  78. package/src/ConfirmOrder/components/ShipperEdit/index.wxss +78 -78
  79. package/src/ConfirmOrder/components/WechatAddress/index.wxss +22 -22
  80. package/src/ConfirmOrder/index.wxss +5 -5
  81. package/src/CouponList/couponMsg/index.wxss +3 -3
  82. package/src/CustomPopup/index.wxss +22 -22
  83. package/src/GoodsItem/index.json +6 -6
  84. package/src/GoodsItem/index.wxs +18 -18
  85. package/src/LiveGoodsList/Header/index.js +54 -54
  86. package/src/LiveGoodsList/Header/index.json +6 -6
  87. package/src/LiveGoodsList/Header/index.less +45 -45
  88. package/src/LiveGoodsList/Header/index.scss +105 -105
  89. package/src/LiveGoodsList/Header/index.wxml +32 -32
  90. package/src/LiveGoodsList/README.md +9 -9
  91. package/src/LiveGoodsList/index.json +8 -8
  92. package/src/LiveGoodsList/index.less +53 -53
  93. package/src/LiveGoodsList/index.scss +92 -92
  94. package/src/LiveGoodsList/index.wxss +218 -218
  95. package/src/PayComplete/Components/CouponItem/index.wxss +122 -122
  96. package/src/PayComplete/Components/Header/index.wxss +27 -27
  97. package/src/PayComplete/Components/LeadGroup/index.wxss +33 -33
  98. package/src/PayComplete/Components/PayGifts/index.wxss +157 -157
  99. package/src/PayComplete/Components/PayState/earnIntegral/index.wxss +23 -23
  100. package/src/PayComplete/Components/PayState/index.wxss +20 -20
  101. package/src/PayComplete/index.wxss +27 -27
  102. package/src/PayModule/wechatLoading/index.wxss +57 -57
  103. package/src/Recommend/index.wxss +110 -110
  104. package/src/Sku/Header/index.wxss +27 -27
  105. package/src/Sku/goods-info/index.wxss +52 -52
  106. package/src/Sku/index/index.wxss +52 -52
  107. package/src/Sku/row-item/index.wxss +50 -50
  108. package/src/Sku/step/index.wxss +11 -11
  109. package/src/Task/TaskBubble/index.js +2 -1
  110. package/src/Task/TaskBubble/index.wxss +289 -289
  111. package/src/Task/TaskIcon/index.wxss +130 -130
  112. package/src/Task/TaskPopup/component/RewardList/index.js +23 -21
  113. package/src/Task/TaskPopup/component/RewardList/index.wxml +1 -0
  114. package/src/Task/TaskPopup/component/RewardList/index.wxss +18 -18
  115. package/src/Task/TaskPopup/component/TaskItem/index.js +264 -169
  116. package/src/Task/TaskPopup/component/TaskItem/index.scss +26 -0
  117. package/src/Task/TaskPopup/component/TaskItem/index.wxml +32 -13
  118. package/src/Task/TaskPopup/component/TaskItem/index.wxss +1 -394
  119. package/src/Task/TaskPopup/component/TaskList/index.js +8 -0
  120. package/src/Task/TaskPopup/component/TaskList/index.wxml +1 -0
  121. package/src/Task/TaskPopup/component/TaskList/index.wxss +118 -118
  122. package/src/Task/TaskPopup/component/TaskType/index.js +4 -0
  123. package/src/Task/TaskPopup/component/TaskType/index.wxml +1 -0
  124. package/src/Task/TaskPopup/component/TaskType/index.wxss +110 -110
  125. package/src/Task/TaskPopup/index.js +76 -70
  126. package/src/Task/TaskPopup/index.json +2 -2
  127. package/src/Task/TaskPopup/index.wxml +2 -0
  128. package/src/Task/TaskPopup/index.wxss +406 -406
  129. package/src/Task/TaskQuizPopup/components/quizContent/index.js +132 -0
  130. package/src/Task/TaskQuizPopup/components/quizContent/index.json +6 -0
  131. package/src/Task/TaskQuizPopup/components/quizContent/index.scss +192 -0
  132. package/src/Task/TaskQuizPopup/components/quizContent/index.wxml +65 -0
  133. package/src/Task/TaskQuizPopup/components/quizContent/index.wxs +79 -0
  134. package/src/Task/TaskQuizPopup/components/quizContent/index.wxss +1 -0
  135. package/src/Task/TaskQuizPopup/components/quizRichText/index.js +40 -0
  136. package/src/Task/TaskQuizPopup/components/quizRichText/index.json +6 -0
  137. package/src/Task/TaskQuizPopup/components/quizRichText/index.scss +7 -0
  138. package/src/Task/TaskQuizPopup/components/quizRichText/index.wxml +2 -0
  139. package/src/Task/TaskQuizPopup/components/quizRichText/index.wxss +1 -0
  140. package/src/Task/TaskQuizPopup/components/wxParse/base.wxml +50 -0
  141. package/src/Task/TaskQuizPopup/components/wxParse/html2json.js +623 -0
  142. package/src/Task/TaskQuizPopup/components/wxParse/htmlparser.js +183 -0
  143. package/src/Task/TaskQuizPopup/components/wxParse/iframeParse.js +216 -0
  144. package/src/Task/TaskQuizPopup/components/wxParse/loop.wxml +3563 -0
  145. package/src/Task/TaskQuizPopup/components/wxParse/showdown.js +2364 -0
  146. package/src/Task/TaskQuizPopup/components/wxParse/wxDiscode.js +209 -0
  147. package/src/Task/TaskQuizPopup/components/wxParse/wxParse.js +269 -0
  148. package/src/Task/TaskQuizPopup/components/wxParse/wxParse.wxml +1276 -0
  149. package/src/Task/TaskQuizPopup/components/wxParse/wxParse.wxss +283 -0
  150. package/src/Task/TaskQuizPopup/index.js +225 -0
  151. package/src/Task/TaskQuizPopup/index.json +8 -0
  152. package/src/Task/TaskQuizPopup/index.scss +159 -0
  153. package/src/Task/TaskQuizPopup/index.wxml +97 -0
  154. package/src/Task/TaskQuizPopup/index.wxss +1 -0
  155. package/src/Task/taskQuizRemindPopup/index.js +74 -0
  156. package/src/Task/taskQuizRemindPopup/index.json +6 -0
  157. package/src/Task/taskQuizRemindPopup/index.scss +108 -0
  158. package/src/Task/taskQuizRemindPopup/index.wxml +27 -0
  159. package/src/Task/taskQuizRemindPopup/index.wxss +1 -0
  160. package/src/Task/taskReceivePopup/customPrizes/index.wxss +220 -220
  161. package/src/Task/taskReceivePopup/index.wxss +1 -1
  162. package/src/Task/taskReceivePopup/integral/index.wxss +94 -94
  163. package/src/common/css/theme.wxss +16 -16
  164. package/src/common/utils/tool.js +54 -48
  165. package/src/miniprogram_npm/miniprogram-computed/index.js +1 -0
@@ -1,289 +1,289 @@
1
- .barrage-container {
2
- color: #fff;
3
- font-size: 2.66667vmin;
4
- }
5
- .barrage-container .barrage-wrap {
6
- display: flex;
7
- }
8
- .barrage-container .barrage-wrap .barrage-item {
9
- position: relative;
10
- background: linear-gradient(270deg, #ff552b00 0%, #ff552bc7 21.42%, #ff8b25eb 46.71%, #FC0 100%);
11
- height: 8.53333vmin;
12
- font-size: 3.2vmin;
13
- line-height: 8.53333vmin;
14
- border-radius: 12.26667vmin;
15
- transition: 0.3s;
16
- transform: translateX(-66.66667vmin);
17
- }
18
- .barrage-container .barrage-wrap .barrage-item .barrage-content {
19
- display: flex;
20
- align-items: center;
21
- }
22
- .barrage-container .barrage-wrap .barrage-item .task-completion-icon {
23
- width: 6.4vmin;
24
- height: 6.4vmin;
25
- border-radius: 50%;
26
- margin-left: 1.33333vmin;
27
- margin-right: 1.06667vmin;
28
- flex-shrink: 0;
29
- }
30
- .barrage-container .barrage-wrap .barrage-item .task-type {
31
- display: flex;
32
- flex-direction: column;
33
- margin-right: 1.06667vmin;
34
- overflow: hidden;
35
- text-overflow: ellipsis;
36
- white-space: nowrap;
37
- }
38
- .barrage-container .barrage-wrap .barrage-item .task-type view {
39
- width: 100%;
40
- overflow: hidden;
41
- text-overflow: ellipsis;
42
- white-space: nowrap;
43
- }
44
- .barrage-container .barrage-wrap .barrage-item .prize-icon {
45
- width: 7.46667vmin;
46
- height: 7.46667vmin;
47
- display: flex;
48
- justify-content: center;
49
- align-items: center;
50
- margin: 0 1.06667vmin;
51
- }
52
- .barrage-container .barrage-wrap .barrage-item .prize-num {
53
- color: #FFF5CC;
54
- font-weight: 500;
55
- margin-right: 1.06667vmin;
56
- }
57
- .barrage-container .barrage-wrap .barrage-item .right-arrow-icon {
58
- height: 5.33333vmin;
59
- width: 5.33333vmin;
60
- margin-right: 6.93333vmin;
61
- }
62
- .barrage-container .barrage-wrap .barrage-item.barrage-item-show {
63
- animation: taskFadeInLeft 1.5s both;
64
- }
65
- .barrage-container .barrage-wrap .barrage-item.barrage-item-hide {
66
- animation: taskFadeOut 1.5s both;
67
- }
68
- @keyframes taskFadeInLeft {
69
- 0% {
70
- transform: translateX(-66.66667vmin);
71
- opacity: 1;
72
- }
73
- 100% {
74
- transform: translateX(0);
75
- opacity: 1;
76
- }
77
- }
78
- @keyframes taskFadeOut {
79
- 0% {
80
- transform: translateX(0);
81
- opacity: 1;
82
- }
83
- 100% {
84
- transform: translateX(0);
85
- opacity: 0;
86
- }
87
- }
88
- @keyframes moveRight {
89
- from {
90
- transform: translateX(-100%);
91
- }
92
- to {
93
- transform: translateX(0);
94
- }
95
- }
96
- @media screen and (min-width: 768px) and (orientation: portrait) {
97
- .barrage-container {
98
- color: #fff;
99
- font-size: 1.30208vmin;
100
- }
101
- .barrage-container .barrage-wrap {
102
- display: flex;
103
- }
104
- .barrage-container .barrage-wrap .barrage-item {
105
- position: relative;
106
- background: linear-gradient(270deg, #ff552b00 0%, #ff552bc7 21.42%, #ff8b25eb 46.71%, #FC0 100%);
107
- height: 4.16667vmin;
108
- font-size: 1.5625vmin;
109
- line-height: 4.16667vmin;
110
- border-radius: 5.98958vmin;
111
- transition: 0.3s;
112
- transform: translateX(-32.55208vmin);
113
- }
114
- .barrage-container .barrage-wrap .barrage-item .barrage-content {
115
- display: flex;
116
- align-items: center;
117
- }
118
- .barrage-container .barrage-wrap .barrage-item .task-completion-icon {
119
- width: 3.125vmin;
120
- height: 3.125vmin;
121
- border-radius: 50%;
122
- margin-left: 0.65104vmin;
123
- margin-right: 0.52083vmin;
124
- flex-shrink: 0;
125
- }
126
- .barrage-container .barrage-wrap .barrage-item .task-type {
127
- display: flex;
128
- flex-direction: column;
129
- margin-right: 0.52083vmin;
130
- overflow: hidden;
131
- text-overflow: ellipsis;
132
- white-space: nowrap;
133
- }
134
- .barrage-container .barrage-wrap .barrage-item .task-type view {
135
- width: 100%;
136
- overflow: hidden;
137
- text-overflow: ellipsis;
138
- white-space: nowrap;
139
- }
140
- .barrage-container .barrage-wrap .barrage-item .prize-icon {
141
- width: 3.64583vmin;
142
- height: 3.64583vmin;
143
- display: flex;
144
- justify-content: center;
145
- align-items: center;
146
- margin: 0 0.52083vmin;
147
- }
148
- .barrage-container .barrage-wrap .barrage-item .prize-num {
149
- color: #FFF5CC;
150
- font-weight: 500;
151
- margin-right: 0.52083vmin;
152
- }
153
- .barrage-container .barrage-wrap .barrage-item .right-arrow-icon {
154
- height: 2.60417vmin;
155
- width: 2.60417vmin;
156
- margin-right: 3.38542vmin;
157
- }
158
- .barrage-container .barrage-wrap .barrage-item.barrage-item-show {
159
- animation: taskFadeInLeft 1.5s both;
160
- }
161
- .barrage-container .barrage-wrap .barrage-item.barrage-item-hide {
162
- animation: taskFadeOut 1.5s both;
163
- }
164
- @keyframes taskFadeInLeft {
165
- 0% {
166
- transform: translateX(-32.55208vmin);
167
- opacity: 1;
168
- }
169
- 100% {
170
- transform: translateX(0);
171
- opacity: 1;
172
- }
173
- }
174
- @keyframes taskFadeOut {
175
- 0% {
176
- transform: translateX(0);
177
- opacity: 1;
178
- }
179
- 100% {
180
- transform: translateX(0);
181
- opacity: 0;
182
- }
183
- }
184
- @keyframes moveRight {
185
- from {
186
- transform: translateX(-100%);
187
- }
188
- to {
189
- transform: translateX(0);
190
- }
191
- }
192
- }
193
- @media screen and (min-height: 768px) and (orientation: landscape) {
194
- .barrage-container {
195
- color: #fff;
196
- font-size: 1.30208vmin;
197
- }
198
- .barrage-container .barrage-wrap {
199
- display: flex;
200
- }
201
- .barrage-container .barrage-wrap .barrage-item {
202
- position: relative;
203
- background: linear-gradient(270deg, #ff552b00 0%, #ff552bc7 21.42%, #ff8b25eb 46.71%, #FC0 100%);
204
- height: 4.16667vmin;
205
- font-size: 1.5625vmin;
206
- line-height: 4.16667vmin;
207
- border-radius: 5.98958vmin;
208
- transition: 0.3s;
209
- transform: translateX(-32.55208vmin);
210
- }
211
- .barrage-container .barrage-wrap .barrage-item .barrage-content {
212
- display: flex;
213
- align-items: center;
214
- }
215
- .barrage-container .barrage-wrap .barrage-item .task-completion-icon {
216
- width: 3.125vmin;
217
- height: 3.125vmin;
218
- border-radius: 50%;
219
- margin-left: 0.65104vmin;
220
- margin-right: 0.52083vmin;
221
- flex-shrink: 0;
222
- }
223
- .barrage-container .barrage-wrap .barrage-item .task-type {
224
- display: flex;
225
- flex-direction: column;
226
- margin-right: 0.52083vmin;
227
- overflow: hidden;
228
- text-overflow: ellipsis;
229
- white-space: nowrap;
230
- }
231
- .barrage-container .barrage-wrap .barrage-item .task-type view {
232
- width: 100%;
233
- overflow: hidden;
234
- text-overflow: ellipsis;
235
- white-space: nowrap;
236
- }
237
- .barrage-container .barrage-wrap .barrage-item .prize-icon {
238
- width: 3.64583vmin;
239
- height: 3.64583vmin;
240
- display: flex;
241
- justify-content: center;
242
- align-items: center;
243
- margin: 0 0.52083vmin;
244
- }
245
- .barrage-container .barrage-wrap .barrage-item .prize-num {
246
- color: #FFF5CC;
247
- font-weight: 500;
248
- margin-right: 0.52083vmin;
249
- }
250
- .barrage-container .barrage-wrap .barrage-item .right-arrow-icon {
251
- height: 2.60417vmin;
252
- width: 2.60417vmin;
253
- margin-right: 3.38542vmin;
254
- }
255
- .barrage-container .barrage-wrap .barrage-item.barrage-item-show {
256
- animation: taskFadeInLeft 1.5s both;
257
- }
258
- .barrage-container .barrage-wrap .barrage-item.barrage-item-hide {
259
- animation: taskFadeOut 1.5s both;
260
- }
261
- @keyframes taskFadeInLeft {
262
- 0% {
263
- transform: translateX(-32.55208vmin);
264
- opacity: 1;
265
- }
266
- 100% {
267
- transform: translateX(0);
268
- opacity: 1;
269
- }
270
- }
271
- @keyframes taskFadeOut {
272
- 0% {
273
- transform: translateX(0);
274
- opacity: 1;
275
- }
276
- 100% {
277
- transform: translateX(0);
278
- opacity: 0;
279
- }
280
- }
281
- @keyframes moveRight {
282
- from {
283
- transform: translateX(-100%);
284
- }
285
- to {
286
- transform: translateX(0);
287
- }
288
- }
289
- }
1
+ .barrage-container {
2
+ color: #fff;
3
+ font-size: 2.66667vmin;
4
+ }
5
+ .barrage-container .barrage-wrap {
6
+ display: flex;
7
+ }
8
+ .barrage-container .barrage-wrap .barrage-item {
9
+ position: relative;
10
+ background: linear-gradient(270deg, #ff552b00 0%, #ff552bc7 21.42%, #ff8b25eb 46.71%, #FC0 100%);
11
+ height: 8.53333vmin;
12
+ font-size: 3.2vmin;
13
+ line-height: 8.53333vmin;
14
+ border-radius: 12.26667vmin;
15
+ transition: 0.3s;
16
+ transform: translateX(-66.66667vmin);
17
+ }
18
+ .barrage-container .barrage-wrap .barrage-item .barrage-content {
19
+ display: flex;
20
+ align-items: center;
21
+ }
22
+ .barrage-container .barrage-wrap .barrage-item .task-completion-icon {
23
+ width: 6.4vmin;
24
+ height: 6.4vmin;
25
+ border-radius: 50%;
26
+ margin-left: 1.33333vmin;
27
+ margin-right: 1.06667vmin;
28
+ flex-shrink: 0;
29
+ }
30
+ .barrage-container .barrage-wrap .barrage-item .task-type {
31
+ display: flex;
32
+ flex-direction: column;
33
+ margin-right: 1.06667vmin;
34
+ overflow: hidden;
35
+ text-overflow: ellipsis;
36
+ white-space: nowrap;
37
+ }
38
+ .barrage-container .barrage-wrap .barrage-item .task-type view {
39
+ width: 100%;
40
+ overflow: hidden;
41
+ text-overflow: ellipsis;
42
+ white-space: nowrap;
43
+ }
44
+ .barrage-container .barrage-wrap .barrage-item .prize-icon {
45
+ width: 7.46667vmin;
46
+ height: 7.46667vmin;
47
+ display: flex;
48
+ justify-content: center;
49
+ align-items: center;
50
+ margin: 0 1.06667vmin;
51
+ }
52
+ .barrage-container .barrage-wrap .barrage-item .prize-num {
53
+ color: #FFF5CC;
54
+ font-weight: 500;
55
+ margin-right: 1.06667vmin;
56
+ }
57
+ .barrage-container .barrage-wrap .barrage-item .right-arrow-icon {
58
+ height: 5.33333vmin;
59
+ width: 5.33333vmin;
60
+ margin-right: 6.93333vmin;
61
+ }
62
+ .barrage-container .barrage-wrap .barrage-item.barrage-item-show {
63
+ animation: taskFadeInLeft 1.5s both;
64
+ }
65
+ .barrage-container .barrage-wrap .barrage-item.barrage-item-hide {
66
+ animation: taskFadeOut 1.5s both;
67
+ }
68
+ @keyframes taskFadeInLeft {
69
+ 0% {
70
+ transform: translateX(-66.66667vmin);
71
+ opacity: 1;
72
+ }
73
+ 100% {
74
+ transform: translateX(0);
75
+ opacity: 1;
76
+ }
77
+ }
78
+ @keyframes taskFadeOut {
79
+ 0% {
80
+ transform: translateX(0);
81
+ opacity: 1;
82
+ }
83
+ 100% {
84
+ transform: translateX(0);
85
+ opacity: 0;
86
+ }
87
+ }
88
+ @keyframes moveRight {
89
+ from {
90
+ transform: translateX(-100%);
91
+ }
92
+ to {
93
+ transform: translateX(0);
94
+ }
95
+ }
96
+ @media screen and (min-width: 768px) and (orientation: portrait) {
97
+ .barrage-container {
98
+ color: #fff;
99
+ font-size: 1.30208vmin;
100
+ }
101
+ .barrage-container .barrage-wrap {
102
+ display: flex;
103
+ }
104
+ .barrage-container .barrage-wrap .barrage-item {
105
+ position: relative;
106
+ background: linear-gradient(270deg, #ff552b00 0%, #ff552bc7 21.42%, #ff8b25eb 46.71%, #FC0 100%);
107
+ height: 4.16667vmin;
108
+ font-size: 1.5625vmin;
109
+ line-height: 4.16667vmin;
110
+ border-radius: 5.98958vmin;
111
+ transition: 0.3s;
112
+ transform: translateX(-32.55208vmin);
113
+ }
114
+ .barrage-container .barrage-wrap .barrage-item .barrage-content {
115
+ display: flex;
116
+ align-items: center;
117
+ }
118
+ .barrage-container .barrage-wrap .barrage-item .task-completion-icon {
119
+ width: 3.125vmin;
120
+ height: 3.125vmin;
121
+ border-radius: 50%;
122
+ margin-left: 0.65104vmin;
123
+ margin-right: 0.52083vmin;
124
+ flex-shrink: 0;
125
+ }
126
+ .barrage-container .barrage-wrap .barrage-item .task-type {
127
+ display: flex;
128
+ flex-direction: column;
129
+ margin-right: 0.52083vmin;
130
+ overflow: hidden;
131
+ text-overflow: ellipsis;
132
+ white-space: nowrap;
133
+ }
134
+ .barrage-container .barrage-wrap .barrage-item .task-type view {
135
+ width: 100%;
136
+ overflow: hidden;
137
+ text-overflow: ellipsis;
138
+ white-space: nowrap;
139
+ }
140
+ .barrage-container .barrage-wrap .barrage-item .prize-icon {
141
+ width: 3.64583vmin;
142
+ height: 3.64583vmin;
143
+ display: flex;
144
+ justify-content: center;
145
+ align-items: center;
146
+ margin: 0 0.52083vmin;
147
+ }
148
+ .barrage-container .barrage-wrap .barrage-item .prize-num {
149
+ color: #FFF5CC;
150
+ font-weight: 500;
151
+ margin-right: 0.52083vmin;
152
+ }
153
+ .barrage-container .barrage-wrap .barrage-item .right-arrow-icon {
154
+ height: 2.60417vmin;
155
+ width: 2.60417vmin;
156
+ margin-right: 3.38542vmin;
157
+ }
158
+ .barrage-container .barrage-wrap .barrage-item.barrage-item-show {
159
+ animation: taskFadeInLeft 1.5s both;
160
+ }
161
+ .barrage-container .barrage-wrap .barrage-item.barrage-item-hide {
162
+ animation: taskFadeOut 1.5s both;
163
+ }
164
+ @keyframes taskFadeInLeft {
165
+ 0% {
166
+ transform: translateX(-32.55208vmin);
167
+ opacity: 1;
168
+ }
169
+ 100% {
170
+ transform: translateX(0);
171
+ opacity: 1;
172
+ }
173
+ }
174
+ @keyframes taskFadeOut {
175
+ 0% {
176
+ transform: translateX(0);
177
+ opacity: 1;
178
+ }
179
+ 100% {
180
+ transform: translateX(0);
181
+ opacity: 0;
182
+ }
183
+ }
184
+ @keyframes moveRight {
185
+ from {
186
+ transform: translateX(-100%);
187
+ }
188
+ to {
189
+ transform: translateX(0);
190
+ }
191
+ }
192
+ }
193
+ @media screen and (min-height: 768px) and (orientation: landscape) {
194
+ .barrage-container {
195
+ color: #fff;
196
+ font-size: 1.30208vmin;
197
+ }
198
+ .barrage-container .barrage-wrap {
199
+ display: flex;
200
+ }
201
+ .barrage-container .barrage-wrap .barrage-item {
202
+ position: relative;
203
+ background: linear-gradient(270deg, #ff552b00 0%, #ff552bc7 21.42%, #ff8b25eb 46.71%, #FC0 100%);
204
+ height: 4.16667vmin;
205
+ font-size: 1.5625vmin;
206
+ line-height: 4.16667vmin;
207
+ border-radius: 5.98958vmin;
208
+ transition: 0.3s;
209
+ transform: translateX(-32.55208vmin);
210
+ }
211
+ .barrage-container .barrage-wrap .barrage-item .barrage-content {
212
+ display: flex;
213
+ align-items: center;
214
+ }
215
+ .barrage-container .barrage-wrap .barrage-item .task-completion-icon {
216
+ width: 3.125vmin;
217
+ height: 3.125vmin;
218
+ border-radius: 50%;
219
+ margin-left: 0.65104vmin;
220
+ margin-right: 0.52083vmin;
221
+ flex-shrink: 0;
222
+ }
223
+ .barrage-container .barrage-wrap .barrage-item .task-type {
224
+ display: flex;
225
+ flex-direction: column;
226
+ margin-right: 0.52083vmin;
227
+ overflow: hidden;
228
+ text-overflow: ellipsis;
229
+ white-space: nowrap;
230
+ }
231
+ .barrage-container .barrage-wrap .barrage-item .task-type view {
232
+ width: 100%;
233
+ overflow: hidden;
234
+ text-overflow: ellipsis;
235
+ white-space: nowrap;
236
+ }
237
+ .barrage-container .barrage-wrap .barrage-item .prize-icon {
238
+ width: 3.64583vmin;
239
+ height: 3.64583vmin;
240
+ display: flex;
241
+ justify-content: center;
242
+ align-items: center;
243
+ margin: 0 0.52083vmin;
244
+ }
245
+ .barrage-container .barrage-wrap .barrage-item .prize-num {
246
+ color: #FFF5CC;
247
+ font-weight: 500;
248
+ margin-right: 0.52083vmin;
249
+ }
250
+ .barrage-container .barrage-wrap .barrage-item .right-arrow-icon {
251
+ height: 2.60417vmin;
252
+ width: 2.60417vmin;
253
+ margin-right: 3.38542vmin;
254
+ }
255
+ .barrage-container .barrage-wrap .barrage-item.barrage-item-show {
256
+ animation: taskFadeInLeft 1.5s both;
257
+ }
258
+ .barrage-container .barrage-wrap .barrage-item.barrage-item-hide {
259
+ animation: taskFadeOut 1.5s both;
260
+ }
261
+ @keyframes taskFadeInLeft {
262
+ 0% {
263
+ transform: translateX(-32.55208vmin);
264
+ opacity: 1;
265
+ }
266
+ 100% {
267
+ transform: translateX(0);
268
+ opacity: 1;
269
+ }
270
+ }
271
+ @keyframes taskFadeOut {
272
+ 0% {
273
+ transform: translateX(0);
274
+ opacity: 1;
275
+ }
276
+ 100% {
277
+ transform: translateX(0);
278
+ opacity: 0;
279
+ }
280
+ }
281
+ @keyframes moveRight {
282
+ from {
283
+ transform: translateX(-100%);
284
+ }
285
+ to {
286
+ transform: translateX(0);
287
+ }
288
+ }
289
+ }