@atooyu/uxto-ui 1.0.0

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 (141) hide show
  1. package/README.md +259 -0
  2. package/dist/index.js +5055 -0
  3. package/dist/index.js.map +1 -0
  4. package/dist/index.mjs +5055 -0
  5. package/dist/index.mjs.map +1 -0
  6. package/dist/style.css +2528 -0
  7. package/package.json +93 -0
  8. package/src/components/index.ts +51 -0
  9. package/src/components/u-avatar/u-avatar.vue +205 -0
  10. package/src/components/u-badge/u-badge.vue +145 -0
  11. package/src/components/u-button/u-button.vue +239 -0
  12. package/src/components/u-cell/u-cell.vue +179 -0
  13. package/src/components/u-cell-group/u-cell-group.vue +46 -0
  14. package/src/components/u-checkbox/u-checkbox.vue +174 -0
  15. package/src/components/u-checkbox-group/u-checkbox-group.vue +72 -0
  16. package/src/components/u-code-input/u-code-input.vue +248 -0
  17. package/src/components/u-count-down/u-count-down.vue +182 -0
  18. package/src/components/u-datetime-picker/u-datetime-picker.vue +377 -0
  19. package/src/components/u-divider/u-divider.vue +71 -0
  20. package/src/components/u-empty/u-empty.vue +98 -0
  21. package/src/components/u-grid/u-grid.vue +63 -0
  22. package/src/components/u-grid-item/u-grid-item.vue +170 -0
  23. package/src/components/u-icon/icons/account.svg +3 -0
  24. package/src/components/u-icon/icons/arrow-down.svg +3 -0
  25. package/src/components/u-icon/icons/arrow-left.svg +3 -0
  26. package/src/components/u-icon/icons/arrow-right.svg +3 -0
  27. package/src/components/u-icon/icons/arrow-up.svg +3 -0
  28. package/src/components/u-icon/icons/bell.svg +3 -0
  29. package/src/components/u-icon/icons/bookmark-o.svg +3 -0
  30. package/src/components/u-icon/icons/bookmark.svg +3 -0
  31. package/src/components/u-icon/icons/chat.svg +3 -0
  32. package/src/components/u-icon/icons/check-circle.svg +3 -0
  33. package/src/components/u-icon/icons/check.svg +3 -0
  34. package/src/components/u-icon/icons/chevron-left.svg +3 -0
  35. package/src/components/u-icon/icons/chevron-right.svg +3 -0
  36. package/src/components/u-icon/icons/clear-o.svg +3 -0
  37. package/src/components/u-icon/icons/clear.svg +3 -0
  38. package/src/components/u-icon/icons/clipboard.svg +3 -0
  39. package/src/components/u-icon/icons/clock.svg +3 -0
  40. package/src/components/u-icon/icons/close.svg +3 -0
  41. package/src/components/u-icon/icons/code.svg +3 -0
  42. package/src/components/u-icon/icons/copy.svg +3 -0
  43. package/src/components/u-icon/icons/delete.svg +3 -0
  44. package/src/components/u-icon/icons/download.svg +3 -0
  45. package/src/components/u-icon/icons/edit.svg +3 -0
  46. package/src/components/u-icon/icons/email.svg +3 -0
  47. package/src/components/u-icon/icons/error-o.svg +3 -0
  48. package/src/components/u-icon/icons/error.svg +3 -0
  49. package/src/components/u-icon/icons/exit-fullscreen.svg +3 -0
  50. package/src/components/u-icon/icons/expand-less.svg +3 -0
  51. package/src/components/u-icon/icons/expand-more.svg +3 -0
  52. package/src/components/u-icon/icons/eye-off.svg +3 -0
  53. package/src/components/u-icon/icons/eye.svg +3 -0
  54. package/src/components/u-icon/icons/flag-o.svg +3 -0
  55. package/src/components/u-icon/icons/flag.svg +3 -0
  56. package/src/components/u-icon/icons/fullscreen.svg +3 -0
  57. package/src/components/u-icon/icons/grid.svg +3 -0
  58. package/src/components/u-icon/icons/group.svg +3 -0
  59. package/src/components/u-icon/icons/heart-o.svg +3 -0
  60. package/src/components/u-icon/icons/heart.svg +3 -0
  61. package/src/components/u-icon/icons/info-o.svg +3 -0
  62. package/src/components/u-icon/icons/info.svg +3 -0
  63. package/src/components/u-icon/icons/keyboard-arrow-down.svg +3 -0
  64. package/src/components/u-icon/icons/keyboard-arrow-left.svg +3 -0
  65. package/src/components/u-icon/icons/keyboard-arrow-right.svg +3 -0
  66. package/src/components/u-icon/icons/keyboard-arrow-up.svg +3 -0
  67. package/src/components/u-icon/icons/like-o.svg +3 -0
  68. package/src/components/u-icon/icons/like.svg +3 -0
  69. package/src/components/u-icon/icons/link.svg +3 -0
  70. package/src/components/u-icon/icons/list.svg +3 -0
  71. package/src/components/u-icon/icons/loading.svg +3 -0
  72. package/src/components/u-icon/icons/lock.svg +3 -0
  73. package/src/components/u-icon/icons/menu-o.svg +3 -0
  74. package/src/components/u-icon/icons/menu.svg +3 -0
  75. package/src/components/u-icon/icons/message.svg +3 -0
  76. package/src/components/u-icon/icons/minus.svg +3 -0
  77. package/src/components/u-icon/icons/notification.svg +3 -0
  78. package/src/components/u-icon/icons/phone.svg +3 -0
  79. package/src/components/u-icon/icons/plus.svg +3 -0
  80. package/src/components/u-icon/icons/question.svg +3 -0
  81. package/src/components/u-icon/icons/redo.svg +3 -0
  82. package/src/components/u-icon/icons/refresh-o.svg +3 -0
  83. package/src/components/u-icon/icons/refresh.svg +3 -0
  84. package/src/components/u-icon/icons/reload.svg +3 -0
  85. package/src/components/u-icon/icons/search-o.svg +3 -0
  86. package/src/components/u-icon/icons/search.svg +3 -0
  87. package/src/components/u-icon/icons/setting.svg +3 -0
  88. package/src/components/u-icon/icons/share.svg +3 -0
  89. package/src/components/u-icon/icons/smile-o.svg +3 -0
  90. package/src/components/u-icon/icons/smile.svg +3 -0
  91. package/src/components/u-icon/icons/star-o.svg +3 -0
  92. package/src/components/u-icon/icons/star.svg +3 -0
  93. package/src/components/u-icon/icons/success-o.svg +3 -0
  94. package/src/components/u-icon/icons/success.svg +3 -0
  95. package/src/components/u-icon/icons/sync.svg +3 -0
  96. package/src/components/u-icon/icons/tick.svg +3 -0
  97. package/src/components/u-icon/icons/undo.svg +3 -0
  98. package/src/components/u-icon/icons/unlock.svg +3 -0
  99. package/src/components/u-icon/icons/upload.svg +3 -0
  100. package/src/components/u-icon/icons/user.svg +3 -0
  101. package/src/components/u-icon/icons/warning-o.svg +3 -0
  102. package/src/components/u-icon/icons/warning.svg +3 -0
  103. package/src/components/u-icon/icons/zoom-in.svg +3 -0
  104. package/src/components/u-icon/icons/zoom-out.svg +3 -0
  105. package/src/components/u-icon/index.ts +219 -0
  106. package/src/components/u-icon/u-icon.vue +117 -0
  107. package/src/components/u-image/u-image.vue +106 -0
  108. package/src/components/u-input/u-input.vue +208 -0
  109. package/src/components/u-keyboard/u-keyboard.vue +213 -0
  110. package/src/components/u-layout/u-layout.vue +58 -0
  111. package/src/components/u-line-progress/u-line-progress.vue +156 -0
  112. package/src/components/u-link/u-link.vue +113 -0
  113. package/src/components/u-list/u-list.vue +148 -0
  114. package/src/components/u-list-item/u-list-item.vue +180 -0
  115. package/src/components/u-loading/u-loading.vue +80 -0
  116. package/src/components/u-loading-page/u-loading-page.vue +94 -0
  117. package/src/components/u-modal/u-modal.vue +159 -0
  118. package/src/components/u-notice-bar/u-notice-bar.vue +113 -0
  119. package/src/components/u-number-box/u-number-box.vue +262 -0
  120. package/src/components/u-parse/u-parse.vue +197 -0
  121. package/src/components/u-picker/u-picker.vue +219 -0
  122. package/src/components/u-popup/u-popup.vue +257 -0
  123. package/src/components/u-radio/u-radio.vue +159 -0
  124. package/src/components/u-radio-group/u-radio-group.vue +61 -0
  125. package/src/components/u-rate/u-rate.vue +187 -0
  126. package/src/components/u-read-more/u-read-more.vue +117 -0
  127. package/src/components/u-search/u-search.vue +238 -0
  128. package/src/components/u-skeleton/u-skeleton.vue +192 -0
  129. package/src/components/u-slider/u-slider.vue +453 -0
  130. package/src/components/u-swiper/u-swiper.vue +301 -0
  131. package/src/components/u-swiper-item/u-swiper-item.vue +82 -0
  132. package/src/components/u-switch/u-switch.vue +105 -0
  133. package/src/components/u-tabbar/u-tabbar.vue +221 -0
  134. package/src/components/u-tag/u-tag.vue +144 -0
  135. package/src/components/u-textarea/u-textarea.vue +189 -0
  136. package/src/components/u-toast/u-toast.vue +186 -0
  137. package/src/components/u-tooltip/u-tooltip.vue +364 -0
  138. package/src/components/u-transition/u-transition.vue +216 -0
  139. package/src/components/u-upload/u-upload.vue +403 -0
  140. package/src/styles/index.scss +59 -0
  141. package/src/styles/variables.scss +68 -0
package/dist/style.css ADDED
@@ -0,0 +1,2528 @@
1
+ @charset "UTF-8";.u-button[data-v-a51cb0bf] {
2
+ display: inline-flex;
3
+ align-items: center;
4
+ justify-content: center;
5
+ position: relative;
6
+ box-sizing: border-box;
7
+ height: 44px;
8
+ padding: 0 16px;
9
+ margin: 0;
10
+ font-size: 14px;
11
+ line-height: 1.2;
12
+ text-align: center;
13
+ border-radius: 8px;
14
+ border: 1px solid transparent;
15
+ transition: all 0.3s;
16
+ -webkit-tap-highlight-color: transparent;
17
+ }
18
+ .u-button[data-v-a51cb0bf]::after {
19
+ border: none;
20
+ }
21
+ .u-button--default[data-v-a51cb0bf] {
22
+ color: #323233;
23
+ background-color: #ffffff;
24
+ border-color: #ebedf0;
25
+ }
26
+ .u-button--primary[data-v-a51cb0bf] {
27
+ color: #ffffff;
28
+ background-color: #1989fa;
29
+ border-color: #1989fa;
30
+ }
31
+ .u-button--success[data-v-a51cb0bf] {
32
+ color: #ffffff;
33
+ background-color: #07c160;
34
+ border-color: #07c160;
35
+ }
36
+ .u-button--warning[data-v-a51cb0bf] {
37
+ color: #ffffff;
38
+ background-color: #ff976a;
39
+ border-color: #ff976a;
40
+ }
41
+ .u-button--danger[data-v-a51cb0bf] {
42
+ color: #ffffff;
43
+ background-color: #ee0a24;
44
+ border-color: #ee0a24;
45
+ }
46
+ .u-button--large[data-v-a51cb0bf] {
47
+ height: 50px;
48
+ font-size: 16px;
49
+ }
50
+ .u-button--small[data-v-a51cb0bf] {
51
+ height: 32px;
52
+ padding: 0 12px;
53
+ font-size: 12px;
54
+ }
55
+ .u-button--mini[data-v-a51cb0bf] {
56
+ height: 24px;
57
+ padding: 0 8px;
58
+ font-size: 10px;
59
+ }
60
+ .u-button--plain[data-v-a51cb0bf] {
61
+ background-color: transparent;
62
+ }
63
+ .u-button--plain.u-button--primary[data-v-a51cb0bf] {
64
+ color: #1989fa;
65
+ }
66
+ .u-button--plain.u-button--success[data-v-a51cb0bf] {
67
+ color: #07c160;
68
+ }
69
+ .u-button--plain.u-button--warning[data-v-a51cb0bf] {
70
+ color: #ff976a;
71
+ }
72
+ .u-button--plain.u-button--danger[data-v-a51cb0bf] {
73
+ color: #ee0a24;
74
+ }
75
+ .u-button--round[data-v-a51cb0bf] {
76
+ border-radius: 999px;
77
+ }
78
+ .u-button--square[data-v-a51cb0bf] {
79
+ border-radius: 0;
80
+ }
81
+ .u-button--disabled[data-v-a51cb0bf] {
82
+ opacity: 0.5;
83
+ }
84
+ .u-button--block[data-v-a51cb0bf] {
85
+ display: flex;
86
+ width: 100%;
87
+ }
88
+ .u-button--active[data-v-a51cb0bf] {
89
+ opacity: 0.8;
90
+ }
91
+ .u-button__content[data-v-a51cb0bf] {
92
+ display: flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ }
96
+ .u-button__icon[data-v-a51cb0bf] {
97
+ margin-right: 4px;
98
+ }
99
+ .u-button__loading[data-v-a51cb0bf] {
100
+ display: flex;
101
+ align-items: center;
102
+ justify-content: center;
103
+ }
104
+ .u-button__loading-icon[data-v-a51cb0bf] {
105
+ width: 16px;
106
+ height: 16px;
107
+ border: 2px solid currentColor;
108
+ border-top-color: transparent;
109
+ border-radius: 50%;
110
+ animation: u-button-loading-a51cb0bf 0.8s linear infinite;
111
+ }
112
+ @keyframes u-button-loading-a51cb0bf {
113
+ from {
114
+ transform: rotate(0deg);
115
+ }
116
+ to {
117
+ transform: rotate(360deg);
118
+ }
119
+ }.u-input[data-v-2f635824] {
120
+ display: flex;
121
+ align-items: center;
122
+ width: 100%;
123
+ height: 44px;
124
+ padding: 0 12px;
125
+ background-color: #ffffff;
126
+ border-radius: 8px;
127
+ border: 1px solid #ebedf0;
128
+ transition: all 0.3s;
129
+ }
130
+ .u-input--focus[data-v-2f635824] {
131
+ border-color: #1989fa;
132
+ }
133
+ .u-input--error[data-v-2f635824] {
134
+ border-color: #ee0a24;
135
+ }
136
+ .u-input--disabled[data-v-2f635824] {
137
+ background-color: #f7f8fa;
138
+ }
139
+ .u-input__body[data-v-2f635824] {
140
+ flex: 1;
141
+ display: flex;
142
+ align-items: center;
143
+ }
144
+ .u-input__control[data-v-2f635824] {
145
+ flex: 1;
146
+ height: 100%;
147
+ font-size: 14px;
148
+ color: #323233;
149
+ background: transparent;
150
+ }
151
+ .u-input__placeholder[data-v-2f635824] {
152
+ color: #969799;
153
+ }
154
+ .u-input__prefix[data-v-2f635824], .u-input__suffix[data-v-2f635824] {
155
+ display: flex;
156
+ align-items: center;
157
+ }
158
+ .u-input__prefix[data-v-2f635824] {
159
+ margin-right: 8px;
160
+ }
161
+ .u-input__suffix[data-v-2f635824] {
162
+ margin-left: 8px;
163
+ }
164
+ .u-input__icon[data-v-2f635824] {
165
+ color: #646566;
166
+ font-size: 14px;
167
+ }
168
+ .u-input__clear[data-v-2f635824] {
169
+ display: flex;
170
+ align-items: center;
171
+ justify-content: center;
172
+ width: 16px;
173
+ height: 16px;
174
+ margin-left: 8px;
175
+ background-color: #969799;
176
+ border-radius: 50%;
177
+ }
178
+ .u-input__clear-icon[data-v-2f635824] {
179
+ color: #ffffff;
180
+ font-size: 12px;
181
+ line-height: 1;
182
+ }.u-cell[data-v-c3a35a65] {
183
+ display: flex;
184
+ align-items: center;
185
+ min-height: 48px;
186
+ padding: 12px 16px;
187
+ background-color: #ffffff;
188
+ position: relative;
189
+ }
190
+ .u-cell[data-v-c3a35a65]::after {
191
+ content: "";
192
+ position: absolute;
193
+ left: 16px;
194
+ right: 0;
195
+ bottom: 0;
196
+ height: 1px;
197
+ background-color: #ebedf0;
198
+ transform: scaleY(0.5);
199
+ }
200
+ .u-cell[data-v-c3a35a65]:last-child::after {
201
+ display: none;
202
+ }
203
+ .u-cell--disabled[data-v-c3a35a65] {
204
+ opacity: 0.5;
205
+ }
206
+ .u-cell--active[data-v-c3a35a65] {
207
+ background-color: #f7f8fa;
208
+ }
209
+ .u-cell__icon[data-v-c3a35a65] {
210
+ margin-right: 12px;
211
+ }
212
+ .u-cell__icon-img[data-v-c3a35a65] {
213
+ width: 20px;
214
+ height: 20px;
215
+ }
216
+ .u-cell__content[data-v-c3a35a65] {
217
+ flex: 1;
218
+ display: flex;
219
+ align-items: center;
220
+ justify-content: space-between;
221
+ overflow: hidden;
222
+ }
223
+ .u-cell__title[data-v-c3a35a65] {
224
+ flex: 1;
225
+ overflow: hidden;
226
+ }
227
+ .u-cell__title-text[data-v-c3a35a65] {
228
+ font-size: 14px;
229
+ color: #323233;
230
+ line-height: 24px;
231
+ }
232
+ .u-cell__label[data-v-c3a35a65] {
233
+ display: block;
234
+ margin-top: 2px;
235
+ font-size: 12px;
236
+ color: #646566;
237
+ line-height: 18px;
238
+ }
239
+ .u-cell__value[data-v-c3a35a65] {
240
+ overflow: hidden;
241
+ }
242
+ .u-cell__value-text[data-v-c3a35a65] {
243
+ font-size: 14px;
244
+ color: #646566;
245
+ }
246
+ .u-cell__arrow[data-v-c3a35a65] {
247
+ margin-left: 8px;
248
+ color: #969799;
249
+ }
250
+ .u-cell__arrow-icon[data-v-c3a35a65] {
251
+ font-size: 16px;
252
+ }.u-cell-group[data-v-f529bc69] {
253
+ background-color: #ffffff;
254
+ }
255
+ .u-cell-group__title[data-v-f529bc69] {
256
+ padding: 12px 16px;
257
+ font-size: 12px;
258
+ color: #646566;
259
+ background-color: #f7f8fa;
260
+ }
261
+ .u-cell-group__body[data-v-f529bc69] {
262
+ position: relative;
263
+ }.u-modal[data-v-9552a05f] {
264
+ position: fixed;
265
+ top: 0;
266
+ left: 0;
267
+ right: 0;
268
+ bottom: 0;
269
+ display: flex;
270
+ align-items: center;
271
+ justify-content: center;
272
+ background-color: rgba(0, 0, 0, 0.5);
273
+ z-index: 999;
274
+ }
275
+ .u-modal__container[data-v-9552a05f] {
276
+ width: 280px;
277
+ background-color: #ffffff;
278
+ border-radius: 12px;
279
+ overflow: hidden;
280
+ }
281
+ .u-modal__header[data-v-9552a05f] {
282
+ padding: 16px 16px 8px;
283
+ text-align: center;
284
+ }
285
+ .u-modal__title[data-v-9552a05f] {
286
+ font-size: 16px;
287
+ font-weight: 600;
288
+ color: #323233;
289
+ }
290
+ .u-modal__body[data-v-9552a05f] {
291
+ padding: 12px 16px 16px;
292
+ text-align: center;
293
+ max-height: 300px;
294
+ overflow-y: auto;
295
+ }
296
+ .u-modal__message[data-v-9552a05f] {
297
+ font-size: 14px;
298
+ color: #646566;
299
+ line-height: 1.5;
300
+ }
301
+ .u-modal__footer[data-v-9552a05f] {
302
+ display: flex;
303
+ border-top: 1px solid #ebedf0;
304
+ }
305
+ .u-modal__button[data-v-9552a05f] {
306
+ flex: 1;
307
+ height: 48px;
308
+ display: flex;
309
+ align-items: center;
310
+ justify-content: center;
311
+ font-size: 14px;
312
+ transition: background-color 0.3s;
313
+ }
314
+ .u-modal__button[data-v-9552a05f]:active {
315
+ background-color: #f7f8fa;
316
+ }
317
+ .u-modal__button--cancel[data-v-9552a05f] {
318
+ color: #646566;
319
+ border-right: 1px solid #ebedf0;
320
+ }
321
+ .u-modal__button--confirm[data-v-9552a05f] {
322
+ color: #1989fa;
323
+ font-weight: 500;
324
+ }.u-icon[data-v-5d845d48] {
325
+ display: inline-flex;
326
+ align-items: center;
327
+ justify-content: center;
328
+ font-style: normal;
329
+ line-height: 1;
330
+ }
331
+ .u-icon--spin[data-v-5d845d48] {
332
+ animation: u-icon-spin-5d845d48 1s linear infinite;
333
+ }
334
+ .u-icon__inner[data-v-5d845d48] {
335
+ font-family: inherit;
336
+ line-height: 1;
337
+ }
338
+ .u-icon__svg[data-v-5d845d48] {
339
+ display: block;
340
+ object-fit: contain;
341
+ }
342
+ @keyframes u-icon-spin-5d845d48 {
343
+ from {
344
+ transform: rotate(0deg);
345
+ }
346
+ to {
347
+ transform: rotate(360deg);
348
+ }
349
+ }.u-loading[data-v-ce769006] {
350
+ display: inline-flex;
351
+ align-items: center;
352
+ gap: 8px;
353
+ }
354
+ .u-loading--vertical[data-v-ce769006] {
355
+ flex-direction: column;
356
+ }
357
+ .u-loading__spinner[data-v-ce769006] {
358
+ position: relative;
359
+ display: inline-block;
360
+ }
361
+ .u-loading__line[data-v-ce769006] {
362
+ position: absolute;
363
+ top: 0;
364
+ left: 50%;
365
+ width: 2px;
366
+ height: 25%;
367
+ margin-left: -1px;
368
+ border-radius: 1px;
369
+ transform-origin: center 200%;
370
+ opacity: 0.2;
371
+ }
372
+ .u-loading__line[data-v-ce769006]:nth-child(1) {
373
+ opacity: 0.2;
374
+ }
375
+ .u-loading__line[data-v-ce769006]:nth-child(2) {
376
+ opacity: 0.26;
377
+ }
378
+ .u-loading__line[data-v-ce769006]:nth-child(3) {
379
+ opacity: 0.32;
380
+ }
381
+ .u-loading__line[data-v-ce769006]:nth-child(4) {
382
+ opacity: 0.38;
383
+ }
384
+ .u-loading__line[data-v-ce769006]:nth-child(5) {
385
+ opacity: 0.44;
386
+ }
387
+ .u-loading__line[data-v-ce769006]:nth-child(6) {
388
+ opacity: 0.5;
389
+ }
390
+ .u-loading__line[data-v-ce769006]:nth-child(7) {
391
+ opacity: 0.56;
392
+ }
393
+ .u-loading__line[data-v-ce769006]:nth-child(8) {
394
+ opacity: 0.62;
395
+ }
396
+ .u-loading__line[data-v-ce769006]:nth-child(9) {
397
+ opacity: 0.68;
398
+ }
399
+ .u-loading__line[data-v-ce769006]:nth-child(10) {
400
+ opacity: 0.74;
401
+ }
402
+ .u-loading__line[data-v-ce769006]:nth-child(11) {
403
+ opacity: 0.8;
404
+ }
405
+ .u-loading__line[data-v-ce769006]:nth-child(12) {
406
+ opacity: 0.86;
407
+ }
408
+ .u-loading__text[data-v-ce769006] {
409
+ font-size: 12px;
410
+ line-height: 1.5;
411
+ }.u-tag[data-v-dff28fc4] {
412
+ display: inline-flex;
413
+ align-items: center;
414
+ padding: 0 8px;
415
+ border-radius: 2px;
416
+ border: 1px solid transparent;
417
+ font-size: 12px;
418
+ }
419
+ .u-tag--default[data-v-dff28fc4] {
420
+ color: #323233;
421
+ background-color: #f2f3f5;
422
+ border-color: #f2f3f5;
423
+ }
424
+ .u-tag--primary[data-v-dff28fc4] {
425
+ color: #ffffff;
426
+ background-color: #1989fa;
427
+ border-color: #1989fa;
428
+ }
429
+ .u-tag--success[data-v-dff28fc4] {
430
+ color: #ffffff;
431
+ background-color: #07c160;
432
+ border-color: #07c160;
433
+ }
434
+ .u-tag--warning[data-v-dff28fc4] {
435
+ color: #ffffff;
436
+ background-color: #ff976a;
437
+ border-color: #ff976a;
438
+ }
439
+ .u-tag--danger[data-v-dff28fc4] {
440
+ color: #ffffff;
441
+ background-color: #ee0a24;
442
+ border-color: #ee0a24;
443
+ }
444
+ .u-tag--large[data-v-dff28fc4] {
445
+ padding: 8px 12px;
446
+ font-size: 14px;
447
+ }
448
+ .u-tag--small[data-v-dff28fc4] {
449
+ padding: 0 4px;
450
+ font-size: 10px;
451
+ }
452
+ .u-tag--plain[data-v-dff28fc4] {
453
+ background-color: transparent;
454
+ }
455
+ .u-tag--plain.u-tag--primary[data-v-dff28fc4] {
456
+ color: #1989fa;
457
+ }
458
+ .u-tag--plain.u-tag--success[data-v-dff28fc4] {
459
+ color: #07c160;
460
+ }
461
+ .u-tag--plain.u-tag--warning[data-v-dff28fc4] {
462
+ color: #ff976a;
463
+ }
464
+ .u-tag--plain.u-tag--danger[data-v-dff28fc4] {
465
+ color: #ee0a24;
466
+ }
467
+ .u-tag--round[data-v-dff28fc4] {
468
+ border-radius: 999px;
469
+ }
470
+ .u-tag__text[data-v-dff28fc4] {
471
+ line-height: 1.4;
472
+ }
473
+ .u-tag__close[data-v-dff28fc4] {
474
+ margin-left: 2px;
475
+ font-size: 12px;
476
+ }.u-switch[data-v-c9caea3a] {
477
+ position: relative;
478
+ background-color: #f2f3f5;
479
+ transition: background-color 0.3s;
480
+ box-sizing: border-box;
481
+ }
482
+ .u-switch--on[data-v-c9caea3a] {
483
+ background-color: #1989fa;
484
+ }
485
+ .u-switch--disabled[data-v-c9caea3a] {
486
+ opacity: 0.5;
487
+ }
488
+ .u-switch__node[data-v-c9caea3a] {
489
+ position: absolute;
490
+ background-color: #ffffff;
491
+ border-radius: 50%;
492
+ display: flex;
493
+ align-items: center;
494
+ justify-content: center;
495
+ transition: transform 0.3s;
496
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
497
+ }.u-image[data-v-55a4498e] {
498
+ position: relative;
499
+ display: inline-block;
500
+ overflow: hidden;
501
+ }
502
+ .u-image__inner[data-v-55a4498e] {
503
+ width: 100%;
504
+ height: 100%;
505
+ display: block;
506
+ }
507
+ .u-image__loading[data-v-55a4498e], .u-image__error[data-v-55a4498e] {
508
+ position: absolute;
509
+ top: 0;
510
+ left: 0;
511
+ right: 0;
512
+ bottom: 0;
513
+ display: flex;
514
+ align-items: center;
515
+ justify-content: center;
516
+ background-color: #f7f8fa;
517
+ }
518
+ .u-image__error-text[data-v-55a4498e] {
519
+ font-size: 12px;
520
+ color: #969799;
521
+ }.u-divider[data-v-7f88d163] {
522
+ display: flex;
523
+ align-items: center;
524
+ margin: 16px 0;
525
+ color: #646566;
526
+ font-size: 12px;
527
+ line-height: 1;
528
+ }
529
+ .u-divider[data-v-7f88d163]::before, .u-divider[data-v-7f88d163]::after {
530
+ content: "";
531
+ flex: 1;
532
+ height: 1px;
533
+ background-color: #ebedf0;
534
+ }
535
+ .u-divider--hairline[data-v-7f88d163]::before, .u-divider--hairline[data-v-7f88d163]::after {
536
+ transform: scaleY(0.5);
537
+ }
538
+ .u-divider--dashed[data-v-7f88d163]::before, .u-divider--dashed[data-v-7f88d163]::after {
539
+ border-style: dashed;
540
+ background: transparent;
541
+ border-top: 1px dashed #ebedf0;
542
+ border-bottom: none;
543
+ height: 0;
544
+ }
545
+ .u-divider__text[data-v-7f88d163] {
546
+ padding: 0 12px;
547
+ }.u-notice-bar[data-v-89a44cf8] {
548
+ display: flex;
549
+ align-items: center;
550
+ padding: 12px 16px;
551
+ font-size: 12px;
552
+ line-height: 24px;
553
+ }
554
+ .u-notice-bar--wrapable[data-v-89a44cf8] {
555
+ flex-wrap: wrap;
556
+ padding: 12px 16px;
557
+ }
558
+ .u-notice-bar__content[data-v-89a44cf8] {
559
+ flex: 1;
560
+ overflow: hidden;
561
+ position: relative;
562
+ }
563
+ .u-notice-bar__content--scrollable[data-v-89a44cf8] {
564
+ overflow: hidden;
565
+ white-space: nowrap;
566
+ }
567
+ .u-notice-bar__text[data-v-89a44cf8] {
568
+ display: inline-block;
569
+ }
570
+ .u-notice-bar__content--scrollable .u-notice-bar__text[data-v-89a44cf8] {
571
+ animation: u-notice-bar-scroll-89a44cf8 linear infinite;
572
+ }
573
+ .u-notice-bar__left-icon[data-v-89a44cf8] {
574
+ margin-right: 8px;
575
+ }
576
+ .u-notice-bar__right-icon[data-v-89a44cf8] {
577
+ margin-left: 8px;
578
+ }
579
+ @keyframes u-notice-bar-scroll-89a44cf8 {
580
+ 0% {
581
+ transform: translateX(100%);
582
+ }
583
+ 100% {
584
+ transform: translateX(-100%);
585
+ }
586
+ }.u-layout[data-v-1682e77a] {
587
+ display: flex;
588
+ flex-direction: column;
589
+ min-height: 100vh;
590
+ background-color: #f7f8fa;
591
+ }
592
+ .u-layout__header[data-v-1682e77a] {
593
+ position: sticky;
594
+ top: 0;
595
+ z-index: 100;
596
+ background-color: #ffffff;
597
+ }
598
+ .u-layout__content[data-v-1682e77a] {
599
+ flex: 1;
600
+ overflow: auto;
601
+ }
602
+ .u-layout__footer[data-v-1682e77a] {
603
+ position: sticky;
604
+ bottom: 0;
605
+ z-index: 100;
606
+ background-color: #ffffff;
607
+ }.u-badge[data-v-56dd42ed] {
608
+ position: relative;
609
+ display: inline-block;
610
+ }
611
+ .u-badge--fixed[data-v-56dd42ed] {
612
+ position: absolute;
613
+ top: 0;
614
+ right: 0;
615
+ transform: translate(50%, -50%);
616
+ }
617
+ .u-badge__content[data-v-56dd42ed] {
618
+ position: absolute;
619
+ top: 0;
620
+ right: 0;
621
+ transform: translate(50%, -50%);
622
+ display: inline-flex;
623
+ align-items: center;
624
+ justify-content: center;
625
+ min-width: 16px;
626
+ height: 16px;
627
+ padding: 0 5px;
628
+ border-radius: 999px;
629
+ font-size: 10px;
630
+ line-height: 1;
631
+ color: #ffffff;
632
+ white-space: nowrap;
633
+ box-sizing: border-box;
634
+ }
635
+ .u-badge__content--dot[data-v-56dd42ed] {
636
+ min-width: 8px;
637
+ width: 8px;
638
+ height: 8px;
639
+ padding: 0;
640
+ border-radius: 50%;
641
+ }
642
+ .u-badge__content--alone[data-v-56dd42ed] {
643
+ position: relative;
644
+ transform: none;
645
+ }
646
+ .u-badge__content--primary[data-v-56dd42ed] {
647
+ background-color: #1989fa;
648
+ }
649
+ .u-badge__content--success[data-v-56dd42ed] {
650
+ background-color: #07c160;
651
+ }
652
+ .u-badge__content--warning[data-v-56dd42ed] {
653
+ background-color: #ff976a;
654
+ }
655
+ .u-badge__content--danger[data-v-56dd42ed] {
656
+ background-color: #ee0a24;
657
+ }
658
+ .u-badge__content--info[data-v-56dd42ed] {
659
+ background-color: #969799;
660
+ }
661
+ .u-badge__text[data-v-56dd42ed] {
662
+ display: inline-block;
663
+ vertical-align: middle;
664
+ }.u-loading-page[data-v-ddf92cf6] {
665
+ position: fixed;
666
+ top: 0;
667
+ left: 0;
668
+ right: 0;
669
+ bottom: 0;
670
+ z-index: 999;
671
+ display: flex;
672
+ align-items: center;
673
+ justify-content: center;
674
+ background-color: #ffffff;
675
+ }
676
+ .u-loading-page__content[data-v-ddf92cf6] {
677
+ display: flex;
678
+ flex-direction: column;
679
+ align-items: center;
680
+ gap: 12px;
681
+ }
682
+ .u-loading-page__spinner[data-v-ddf92cf6] {
683
+ position: relative;
684
+ display: inline-block;
685
+ }
686
+ .u-loading-page__line[data-v-ddf92cf6] {
687
+ position: absolute;
688
+ top: 0;
689
+ left: 50%;
690
+ width: 3px;
691
+ height: 25%;
692
+ margin-left: -1.5px;
693
+ border-radius: 2px;
694
+ transform-origin: center 200%;
695
+ opacity: 0.2;
696
+ }
697
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(1) {
698
+ opacity: 0.2;
699
+ }
700
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(2) {
701
+ opacity: 0.26;
702
+ }
703
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(3) {
704
+ opacity: 0.32;
705
+ }
706
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(4) {
707
+ opacity: 0.38;
708
+ }
709
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(5) {
710
+ opacity: 0.44;
711
+ }
712
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(6) {
713
+ opacity: 0.5;
714
+ }
715
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(7) {
716
+ opacity: 0.56;
717
+ }
718
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(8) {
719
+ opacity: 0.62;
720
+ }
721
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(9) {
722
+ opacity: 0.68;
723
+ }
724
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(10) {
725
+ opacity: 0.74;
726
+ }
727
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(11) {
728
+ opacity: 0.8;
729
+ }
730
+ .u-loading-page__line[data-v-ddf92cf6]:nth-child(12) {
731
+ opacity: 0.86;
732
+ }
733
+ .u-loading-page__text[data-v-ddf92cf6] {
734
+ font-size: 14px;
735
+ line-height: 1.5;
736
+ }.u-parse[data-v-5361245b] {
737
+ font-size: 14px;
738
+ line-height: 1.6;
739
+ color: #323233;
740
+ word-break: break-word;
741
+ }
742
+ .u-parse[data-v-5361245b] img {
743
+ max-width: 100%;
744
+ height: auto;
745
+ vertical-align: middle;
746
+ }
747
+ .u-parse[data-v-5361245b] a {
748
+ color: #1989fa;
749
+ text-decoration: none;
750
+ }
751
+ .u-parse[data-v-5361245b] a:active {
752
+ opacity: 0.7;
753
+ }
754
+ .u-parse[data-v-5361245b] pre {
755
+ white-space: pre-wrap;
756
+ word-wrap: break-word;
757
+ }
758
+ .u-parse[data-v-5361245b] code {
759
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
760
+ }
761
+ .u-parse[data-v-5361245b] table {
762
+ display: block;
763
+ overflow-x: auto;
764
+ }
765
+ .u-parse[data-v-5361245b] blockquote {
766
+ border-left: 4px solid #ebedf0;
767
+ background-color: #f7f8fa;
768
+ padding: 12px 16px;
769
+ margin: 12px 0;
770
+ }.u-keyboard[data-v-b318be29] {
771
+ position: fixed;
772
+ inset: 0;
773
+ display: flex;
774
+ align-items: flex-end;
775
+ background: rgba(0, 0, 0, 0.45);
776
+ z-index: 1000;
777
+ }
778
+ .u-keyboard__panel[data-v-b318be29] {
779
+ width: 100%;
780
+ background: #f7f8fa;
781
+ border-radius: 12px 12px 0 0;
782
+ padding: 12px;
783
+ box-sizing: border-box;
784
+ }
785
+ .u-keyboard__header[data-v-b318be29] {
786
+ display: flex;
787
+ align-items: center;
788
+ justify-content: space-between;
789
+ margin-bottom: 12px;
790
+ }
791
+ .u-keyboard__title[data-v-b318be29] {
792
+ font-size: 14px;
793
+ color: #323233;
794
+ font-weight: 600;
795
+ }
796
+ .u-keyboard__close[data-v-b318be29] {
797
+ font-size: 14px;
798
+ color: #1989fa;
799
+ }
800
+ .u-keyboard__body[data-v-b318be29] {
801
+ display: grid;
802
+ grid-template-columns: repeat(3, 1fr);
803
+ gap: 8px;
804
+ }
805
+ .u-keyboard__body--car[data-v-b318be29] {
806
+ grid-template-columns: repeat(6, 1fr);
807
+ }
808
+ .u-keyboard__key[data-v-b318be29] {
809
+ display: flex;
810
+ align-items: center;
811
+ justify-content: center;
812
+ min-height: 44px;
813
+ background: #ffffff;
814
+ border-radius: 8px;
815
+ font-size: 16px;
816
+ color: #323233;
817
+ }
818
+ .u-keyboard__key--action[data-v-b318be29] {
819
+ background: #d7dbe0;
820
+ color: #646566;
821
+ font-size: 14px;
822
+ }
823
+ .u-keyboard__key--wide[data-v-b318be29] {
824
+ grid-column: span 1;
825
+ }.u-picker[data-v-54bd44d7] {
826
+ position: fixed;
827
+ inset: 0;
828
+ display: flex;
829
+ align-items: flex-end;
830
+ background: rgba(0, 0, 0, 0.45);
831
+ z-index: 1000;
832
+ }
833
+ .u-picker__popup[data-v-54bd44d7] {
834
+ width: 100%;
835
+ background: #ffffff;
836
+ border-radius: 12px 12px 0 0;
837
+ overflow: hidden;
838
+ }
839
+ .u-picker__toolbar[data-v-54bd44d7] {
840
+ display: flex;
841
+ align-items: center;
842
+ justify-content: space-between;
843
+ height: 48px;
844
+ padding: 0 16px;
845
+ border-bottom: 1px solid #ebedf0;
846
+ }
847
+ .u-picker__title[data-v-54bd44d7] {
848
+ font-size: 14px;
849
+ color: #323233;
850
+ font-weight: 600;
851
+ }
852
+ .u-picker__action[data-v-54bd44d7] {
853
+ font-size: 14px;
854
+ color: #646566;
855
+ }
856
+ .u-picker__action--confirm[data-v-54bd44d7] {
857
+ color: #1989fa;
858
+ }
859
+ .u-picker__loading[data-v-54bd44d7] {
860
+ display: flex;
861
+ align-items: center;
862
+ justify-content: center;
863
+ height: 240px;
864
+ font-size: 14px;
865
+ color: #646566;
866
+ }
867
+ .u-picker__view[data-v-54bd44d7] {
868
+ width: 100%;
869
+ height: 240px;
870
+ }
871
+ .u-picker__indicator[data-v-54bd44d7] {
872
+ height: 48px;
873
+ display: flex;
874
+ align-items: center;
875
+ justify-content: center;
876
+ }
877
+ .u-picker__option[data-v-54bd44d7] {
878
+ display: flex;
879
+ align-items: center;
880
+ justify-content: center;
881
+ height: 48px;
882
+ font-size: 16px;
883
+ color: #323233;
884
+ }.u-datetime-picker[data-v-45acbf1d] {
885
+ position: fixed;
886
+ inset: 0;
887
+ display: flex;
888
+ align-items: flex-end;
889
+ background: rgba(0, 0, 0, 0.45);
890
+ z-index: 1000;
891
+ }
892
+ .u-datetime-picker__popup[data-v-45acbf1d] {
893
+ width: 100%;
894
+ background: #ffffff;
895
+ border-radius: 12px 12px 0 0;
896
+ overflow: hidden;
897
+ }
898
+ .u-datetime-picker__toolbar[data-v-45acbf1d] {
899
+ display: flex;
900
+ align-items: center;
901
+ justify-content: space-between;
902
+ height: 48px;
903
+ padding: 0 16px;
904
+ border-bottom: 1px solid #ebedf0;
905
+ }
906
+ .u-datetime-picker__title[data-v-45acbf1d] {
907
+ font-size: 14px;
908
+ color: #323233;
909
+ font-weight: 600;
910
+ }
911
+ .u-datetime-picker__action[data-v-45acbf1d] {
912
+ font-size: 14px;
913
+ color: #646566;
914
+ }
915
+ .u-datetime-picker__action--confirm[data-v-45acbf1d] {
916
+ color: #1989fa;
917
+ }
918
+ .u-datetime-picker__view[data-v-45acbf1d] {
919
+ width: 100%;
920
+ height: 240px;
921
+ }
922
+ .u-datetime-picker__indicator[data-v-45acbf1d] {
923
+ height: 48px;
924
+ display: flex;
925
+ align-items: center;
926
+ justify-content: center;
927
+ }
928
+ .u-datetime-picker__option[data-v-45acbf1d] {
929
+ display: flex;
930
+ align-items: center;
931
+ justify-content: center;
932
+ height: 48px;
933
+ font-size: 16px;
934
+ color: #323233;
935
+ }.u-rate[data-v-62d85215] {
936
+ display: inline-flex;
937
+ align-items: center;
938
+ gap: 4px;
939
+ }
940
+ .u-rate--disabled[data-v-62d85215] {
941
+ opacity: 0.5;
942
+ }
943
+ .u-rate__item[data-v-62d85215] {
944
+ position: relative;
945
+ display: inline-flex;
946
+ align-items: center;
947
+ justify-content: center;
948
+ }
949
+ .u-rate__icon[data-v-62d85215] {
950
+ line-height: 1;
951
+ }
952
+ .u-rate__icon--void[data-v-62d85215] {
953
+ position: relative;
954
+ z-index: 1;
955
+ }
956
+ .u-rate__icon--active[data-v-62d85215] {
957
+ display: block;
958
+ }
959
+ .u-rate__icon-wrapper[data-v-62d85215] {
960
+ position: absolute;
961
+ top: 50%;
962
+ left: 0;
963
+ z-index: 2;
964
+ overflow: hidden;
965
+ transform: translateY(-50%);
966
+ white-space: nowrap;
967
+ }.u-grid[data-v-d005bea6] {
968
+ display: flex;
969
+ flex-wrap: wrap;
970
+ background-color: #ffffff;
971
+ }.u-grid-item[data-v-de6f40c1] {
972
+ position: relative;
973
+ display: flex;
974
+ flex-direction: column;
975
+ align-items: center;
976
+ justify-content: center;
977
+ padding: 16px 8px;
978
+ box-sizing: border-box;
979
+ background-color: #ffffff;
980
+ }
981
+ .u-grid-item--clickable[data-v-de6f40c1]:active {
982
+ background-color: #f7f8fa;
983
+ }
984
+ .u-grid-item--border[data-v-de6f40c1] {
985
+ border-right: 1px solid #ebedf0;
986
+ border-bottom: 1px solid #ebedf0;
987
+ }
988
+ .u-grid-item__icon[data-v-de6f40c1] {
989
+ position: relative;
990
+ display: flex;
991
+ align-items: center;
992
+ justify-content: center;
993
+ width: 32px;
994
+ height: 32px;
995
+ margin-bottom: 8px;
996
+ }
997
+ .u-grid-item__icon-image[data-v-de6f40c1] {
998
+ width: 32px;
999
+ height: 32px;
1000
+ }
1001
+ .u-grid-item__icon-text[data-v-de6f40c1] {
1002
+ font-size: 24px;
1003
+ line-height: 1;
1004
+ }
1005
+ .u-grid-item__text[data-v-de6f40c1] {
1006
+ font-size: 12px;
1007
+ color: #646566;
1008
+ line-height: 1.4;
1009
+ text-align: center;
1010
+ word-break: break-all;
1011
+ }
1012
+ .u-grid-item__badge[data-v-de6f40c1] {
1013
+ position: absolute;
1014
+ top: -4px;
1015
+ right: -8px;
1016
+ min-width: 16px;
1017
+ height: 16px;
1018
+ padding: 0 4px;
1019
+ display: inline-flex;
1020
+ align-items: center;
1021
+ justify-content: center;
1022
+ border-radius: 999px;
1023
+ background-color: #ee0a24;
1024
+ box-sizing: border-box;
1025
+ }
1026
+ .u-grid-item__badge-text[data-v-de6f40c1] {
1027
+ font-size: 10px;
1028
+ line-height: 1;
1029
+ color: #ffffff;
1030
+ }.u-swiper[data-v-5602345b] {
1031
+ position: relative;
1032
+ width: 100%;
1033
+ overflow: hidden;
1034
+ }
1035
+ .u-swiper__wrapper[data-v-5602345b] {
1036
+ width: 100%;
1037
+ height: var(--swiper-height, 200px);
1038
+ }
1039
+ .u-swiper__loading[data-v-5602345b] {
1040
+ position: absolute;
1041
+ top: 0;
1042
+ left: 0;
1043
+ right: 0;
1044
+ bottom: 0;
1045
+ display: flex;
1046
+ align-items: center;
1047
+ justify-content: center;
1048
+ background-color: rgba(0, 0, 0, 0.3);
1049
+ z-index: 10;
1050
+ }
1051
+ .u-swiper__loading-icon[data-v-5602345b] {
1052
+ width: 32px;
1053
+ height: 32px;
1054
+ border: 3px solid rgba(255, 255, 255, 0.3);
1055
+ border-top-color: #fff;
1056
+ border-radius: 50%;
1057
+ animation: u-swiper-loading-5602345b 0.8s linear infinite;
1058
+ }
1059
+ @keyframes u-swiper-loading-5602345b {
1060
+ to {
1061
+ transform: rotate(360deg);
1062
+ }
1063
+ }
1064
+ .u-swiper__title[data-v-5602345b] {
1065
+ position: absolute;
1066
+ left: 0;
1067
+ right: 0;
1068
+ bottom: 0;
1069
+ padding: 8px 12px;
1070
+ background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
1071
+ z-index: 5;
1072
+ }
1073
+ .u-swiper__title-text[data-v-5602345b] {
1074
+ font-size: 14px;
1075
+ color: #ffffff;
1076
+ line-height: 1.4;
1077
+ }
1078
+ .u-swiper__indicator[data-v-5602345b] {
1079
+ position: absolute;
1080
+ z-index: 5;
1081
+ }
1082
+ .u-swiper__indicator-wrapper[data-v-5602345b] {
1083
+ position: absolute;
1084
+ display: flex;
1085
+ z-index: 5;
1086
+ padding: 4px 8px;
1087
+ }
1088
+ .u-swiper__indicator-wrapper--top-left[data-v-5602345b] {
1089
+ top: 0;
1090
+ left: 0;
1091
+ }
1092
+ .u-swiper__indicator-wrapper--top-right[data-v-5602345b] {
1093
+ top: 0;
1094
+ right: 0;
1095
+ }
1096
+ .u-swiper__indicator-wrapper--bottom-left[data-v-5602345b] {
1097
+ bottom: 0;
1098
+ left: 0;
1099
+ }
1100
+ .u-swiper__indicator-wrapper--bottom-right[data-v-5602345b] {
1101
+ bottom: 0;
1102
+ right: 0;
1103
+ }
1104
+ .u-swiper__indicator-wrapper--vertical[data-v-5602345b] {
1105
+ flex-direction: column;
1106
+ }
1107
+ .u-swiper__indicator-item[data-v-5602345b] {
1108
+ width: 6px;
1109
+ height: 6px;
1110
+ border-radius: 50%;
1111
+ background-color: var(--indicator-color, rgba(255, 255, 255, 0.5));
1112
+ margin: 0 4px;
1113
+ transition: all 0.3s;
1114
+ }
1115
+ .u-swiper__indicator-item--active[data-v-5602345b] {
1116
+ width: 16px;
1117
+ border-radius: 4px;
1118
+ background-color: var(--indicator-active-color, #fff);
1119
+ }
1120
+ .u-swiper__indicator-wrapper--vertical .u-swiper__indicator-item[data-v-5602345b] {
1121
+ width: 6px;
1122
+ height: 6px;
1123
+ margin: 4px 0;
1124
+ }
1125
+ .u-swiper__indicator-wrapper--vertical .u-swiper__indicator-item--active[data-v-5602345b] {
1126
+ width: 6px;
1127
+ height: 16px;
1128
+ }.u-swiper-item[data-v-ef481687] {
1129
+ width: 100%;
1130
+ height: 100%;
1131
+ overflow: hidden;
1132
+ }
1133
+ .u-swiper-item--card[data-v-ef481687] {
1134
+ display: flex;
1135
+ align-items: center;
1136
+ justify-content: center;
1137
+ }.u-search[data-v-223b845c] {
1138
+ display: flex;
1139
+ align-items: center;
1140
+ width: 100%;
1141
+ padding: 8px 12px;
1142
+ }
1143
+ .u-search--disabled[data-v-223b845c] {
1144
+ opacity: 0.6;
1145
+ }
1146
+ .u-search__content[data-v-223b845c] {
1147
+ flex: 1;
1148
+ display: flex;
1149
+ align-items: center;
1150
+ height: 36px;
1151
+ padding: 0 12px;
1152
+ background-color: #ffffff;
1153
+ border-radius: 12px;
1154
+ transition: all 0.3s;
1155
+ }
1156
+ .u-search--focus .u-search__content[data-v-223b845c] {
1157
+ background-color: #ffffff;
1158
+ box-shadow: 0 0 0 1px #1989fa;
1159
+ }
1160
+ .u-search__icon[data-v-223b845c] {
1161
+ display: flex;
1162
+ align-items: center;
1163
+ margin-right: 8px;
1164
+ }
1165
+ .u-search__icon-text[data-v-223b845c] {
1166
+ font-size: 14px;
1167
+ color: #646566;
1168
+ }
1169
+ .u-search__body[data-v-223b845c] {
1170
+ flex: 1;
1171
+ display: flex;
1172
+ align-items: center;
1173
+ }
1174
+ .u-search__control[data-v-223b845c] {
1175
+ flex: 1;
1176
+ width: 100%;
1177
+ height: 100%;
1178
+ font-size: 14px;
1179
+ color: #323233;
1180
+ background: transparent;
1181
+ }
1182
+ .u-search__placeholder[data-v-223b845c] {
1183
+ color: #969799;
1184
+ }
1185
+ .u-search__clear[data-v-223b845c] {
1186
+ display: flex;
1187
+ align-items: center;
1188
+ justify-content: center;
1189
+ width: 16px;
1190
+ height: 16px;
1191
+ margin-left: 8px;
1192
+ background-color: #969799;
1193
+ border-radius: 50%;
1194
+ }
1195
+ .u-search__clear-icon[data-v-223b845c] {
1196
+ color: #ffffff;
1197
+ font-size: 12px;
1198
+ line-height: 1;
1199
+ }
1200
+ .u-search__action[data-v-223b845c] {
1201
+ display: flex;
1202
+ align-items: center;
1203
+ padding: 8px 12px;
1204
+ }
1205
+ .u-search__action-text[data-v-223b845c] {
1206
+ font-size: 14px;
1207
+ color: #1989fa;
1208
+ }.u-number-box[data-v-86153bb8] {
1209
+ display: inline-flex;
1210
+ align-items: center;
1211
+ gap: 2px;
1212
+ }
1213
+ .u-number-box--disabled[data-v-86153bb8] {
1214
+ opacity: 0.5;
1215
+ }
1216
+ .u-number-box__btn[data-v-86153bb8] {
1217
+ display: flex;
1218
+ align-items: center;
1219
+ justify-content: center;
1220
+ -webkit-user-select: none;
1221
+ -moz-user-select: none;
1222
+ -ms-user-select: none;
1223
+ user-select: none;
1224
+ transition: all 0.3s;
1225
+ border-radius: 4px;
1226
+ }
1227
+ .u-number-box__btn[data-v-86153bb8]:active {
1228
+ opacity: 0.7;
1229
+ }
1230
+ .u-number-box__btn--disabled[data-v-86153bb8] {
1231
+ opacity: 0.4;
1232
+ }
1233
+ .u-number-box__btn-icon[data-v-86153bb8] {
1234
+ line-height: 1;
1235
+ }
1236
+ .u-number-box__input[data-v-86153bb8] {
1237
+ text-align: center;
1238
+ font-size: 14px;
1239
+ color: #323233;
1240
+ background: #ffffff;
1241
+ border: 1px solid #ebedf0;
1242
+ border-radius: 4px;
1243
+ outline: none;
1244
+ }
1245
+ .u-number-box__input--disabled[data-v-86153bb8] {
1246
+ background: #f7f8fa;
1247
+ }.u-upload[data-v-172bcb23] {
1248
+ width: 100%;
1249
+ }
1250
+ .u-upload__list[data-v-172bcb23] {
1251
+ display: flex;
1252
+ flex-wrap: wrap;
1253
+ gap: 8px;
1254
+ }
1255
+ .u-upload__item[data-v-172bcb23] {
1256
+ position: relative;
1257
+ width: 80px;
1258
+ height: 80px;
1259
+ border-radius: 8px;
1260
+ overflow: hidden;
1261
+ background: #ffffff;
1262
+ border: 1px solid #ebedf0;
1263
+ }
1264
+ .u-upload__item--error[data-v-172bcb23] {
1265
+ border-color: #ee0a24;
1266
+ }
1267
+ .u-upload__item--uploading[data-v-172bcb23] {
1268
+ opacity: 0.8;
1269
+ }
1270
+ .u-upload__preview[data-v-172bcb23] {
1271
+ width: 100%;
1272
+ height: 100%;
1273
+ object-fit: cover;
1274
+ }
1275
+ .u-upload__video[data-v-172bcb23] {
1276
+ width: 100%;
1277
+ height: 100%;
1278
+ position: relative;
1279
+ }
1280
+ .u-upload__video-icon[data-v-172bcb23] {
1281
+ position: absolute;
1282
+ inset: 0;
1283
+ display: flex;
1284
+ align-items: center;
1285
+ justify-content: center;
1286
+ background: rgba(0, 0, 0, 0.3);
1287
+ color: #fff;
1288
+ font-size: 24px;
1289
+ }
1290
+ .u-upload__file[data-v-172bcb23] {
1291
+ width: 100%;
1292
+ height: 100%;
1293
+ display: flex;
1294
+ flex-direction: column;
1295
+ align-items: center;
1296
+ justify-content: center;
1297
+ padding: 4px;
1298
+ }
1299
+ .u-upload__file-icon[data-v-172bcb23] {
1300
+ font-size: 24px;
1301
+ margin-bottom: 4px;
1302
+ }
1303
+ .u-upload__file-name[data-v-172bcb23] {
1304
+ font-size: 10px;
1305
+ color: #646566;
1306
+ text-align: center;
1307
+ overflow: hidden;
1308
+ text-overflow: ellipsis;
1309
+ white-space: nowrap;
1310
+ max-width: 100%;
1311
+ }
1312
+ .u-upload__progress[data-v-172bcb23] {
1313
+ position: absolute;
1314
+ bottom: 0;
1315
+ left: 0;
1316
+ right: 0;
1317
+ height: 4px;
1318
+ background: rgba(255, 255, 255, 0.8);
1319
+ }
1320
+ .u-upload__progress-bar[data-v-172bcb23] {
1321
+ height: 100%;
1322
+ background: #1989fa;
1323
+ transition: width 0.2s;
1324
+ }
1325
+ .u-upload__delete[data-v-172bcb23] {
1326
+ position: absolute;
1327
+ top: 0;
1328
+ right: 0;
1329
+ width: 16px;
1330
+ height: 16px;
1331
+ display: flex;
1332
+ align-items: center;
1333
+ justify-content: center;
1334
+ background: rgba(0, 0, 0, 0.5);
1335
+ border-radius: 0 8px 0 0;
1336
+ }
1337
+ .u-upload__delete-icon[data-v-172bcb23] {
1338
+ color: #fff;
1339
+ font-size: 12px;
1340
+ }
1341
+ .u-upload__error[data-v-172bcb23] {
1342
+ position: absolute;
1343
+ inset: 0;
1344
+ display: flex;
1345
+ align-items: center;
1346
+ justify-content: center;
1347
+ background: rgba(238, 10, 36, 0.1);
1348
+ color: #ee0a24;
1349
+ font-size: 10px;
1350
+ }
1351
+ .u-upload__trigger[data-v-172bcb23] {
1352
+ width: 80px;
1353
+ height: 80px;
1354
+ border-radius: 8px;
1355
+ background: #f7f8fa;
1356
+ border: 1px solid #ebedf0;
1357
+ display: flex;
1358
+ align-items: center;
1359
+ justify-content: center;
1360
+ }
1361
+ .u-upload__trigger--disabled[data-v-172bcb23] {
1362
+ opacity: 0.5;
1363
+ }
1364
+ .u-upload__trigger-default[data-v-172bcb23] {
1365
+ display: flex;
1366
+ flex-direction: column;
1367
+ align-items: center;
1368
+ justify-content: center;
1369
+ }
1370
+ .u-upload__trigger-icon[data-v-172bcb23] {
1371
+ font-size: 24px;
1372
+ color: #969799;
1373
+ }
1374
+ .u-upload__trigger-text[data-v-172bcb23] {
1375
+ font-size: 10px;
1376
+ color: #969799;
1377
+ margin-top: 4px;
1378
+ }.u-textarea[data-v-82478b77] {
1379
+ position: relative;
1380
+ display: flex;
1381
+ flex-direction: column;
1382
+ width: 100%;
1383
+ padding: 12px;
1384
+ background-color: #ffffff;
1385
+ border-radius: 8px;
1386
+ border: 1px solid #ebedf0;
1387
+ transition: all 0.3s;
1388
+ }
1389
+ .u-textarea--focus[data-v-82478b77] {
1390
+ border-color: #1989fa;
1391
+ }
1392
+ .u-textarea--error[data-v-82478b77] {
1393
+ border-color: #ee0a24;
1394
+ }
1395
+ .u-textarea--disabled[data-v-82478b77] {
1396
+ background-color: #f7f8fa;
1397
+ }
1398
+ .u-textarea__control[data-v-82478b77] {
1399
+ width: 100%;
1400
+ min-height: 63px;
1401
+ font-size: 14px;
1402
+ line-height: 1.5;
1403
+ color: #323233;
1404
+ background: transparent;
1405
+ resize: none;
1406
+ outline: none;
1407
+ border: none;
1408
+ }
1409
+ .u-textarea__placeholder[data-v-82478b77] {
1410
+ color: #969799;
1411
+ }
1412
+ .u-textarea__limit[data-v-82478b77] {
1413
+ display: flex;
1414
+ justify-content: flex-end;
1415
+ padding-top: 8px;
1416
+ }
1417
+ .u-textarea__limit-text[data-v-82478b77] {
1418
+ font-size: 12px;
1419
+ color: #969799;
1420
+ }
1421
+ .u-textarea--disabled .u-textarea__limit-text[data-v-82478b77] {
1422
+ color: #969799;
1423
+ }
1424
+ .u-textarea--error .u-textarea__limit-text[data-v-82478b77] {
1425
+ color: #ee0a24;
1426
+ }.u-slider[data-v-c099c413] {
1427
+ display: flex;
1428
+ align-items: center;
1429
+ width: 100%;
1430
+ padding: 12px 0;
1431
+ -webkit-user-select: none;
1432
+ -moz-user-select: none;
1433
+ -ms-user-select: none;
1434
+ user-select: none;
1435
+ }
1436
+ .u-slider--disabled[data-v-c099c413] {
1437
+ opacity: 0.5;
1438
+ }
1439
+ .u-slider__min[data-v-c099c413], .u-slider__max[data-v-c099c413] {
1440
+ min-width: 32px;
1441
+ text-align: center;
1442
+ }
1443
+ .u-slider__label[data-v-c099c413] {
1444
+ font-size: 12px;
1445
+ color: #646566;
1446
+ }
1447
+ .u-slider__track[data-v-c099c413] {
1448
+ flex: 1;
1449
+ position: relative;
1450
+ border-radius: 999px;
1451
+ }
1452
+ .u-slider__bar[data-v-c099c413] {
1453
+ position: absolute;
1454
+ border-radius: 999px;
1455
+ transition: width 0.1s, left 0.1s;
1456
+ }
1457
+ .u-slider__button[data-v-c099c413] {
1458
+ position: absolute;
1459
+ top: 50%;
1460
+ transform: translateY(-50%);
1461
+ border-radius: 50%;
1462
+ border: 2px solid #1989fa;
1463
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
1464
+ transition: transform 0.1s;
1465
+ }
1466
+ .u-slider__button[data-v-c099c413]:active {
1467
+ transform: translateY(-50%) scale(1.2);
1468
+ }
1469
+ .u-slider__button--start[data-v-c099c413] {
1470
+ left: -12px;
1471
+ }
1472
+ .u-slider__button--end[data-v-c099c413] {
1473
+ right: -12px;
1474
+ }
1475
+ .u-slider__tooltip[data-v-c099c413] {
1476
+ position: absolute;
1477
+ left: 50%;
1478
+ bottom: 100%;
1479
+ transform: translateX(-50%);
1480
+ padding: 4px 8px;
1481
+ background: #323233;
1482
+ color: #fff;
1483
+ font-size: 10px;
1484
+ border-radius: 4px;
1485
+ white-space: nowrap;
1486
+ margin-bottom: 8px;
1487
+ }
1488
+ .u-slider__tooltip[data-v-c099c413]::after {
1489
+ content: "";
1490
+ position: absolute;
1491
+ top: 100%;
1492
+ left: 50%;
1493
+ transform: translateX(-50%);
1494
+ border: 4px solid transparent;
1495
+ border-top-color: #323233;
1496
+ }
1497
+ .u-slider__ticks[data-v-c099c413] {
1498
+ position: absolute;
1499
+ inset: 0;
1500
+ }
1501
+ .u-slider__tick[data-v-c099c413] {
1502
+ position: absolute;
1503
+ width: 2px;
1504
+ height: 100%;
1505
+ background: rgba(0, 0, 0, 0.1);
1506
+ transform: translateX(-50%);
1507
+ }.u-list[data-v-6d331927] {
1508
+ width: 100%;
1509
+ }
1510
+ .u-list__header[data-v-6d331927], .u-list__footer[data-v-6d331927] {
1511
+ padding: 12px 16px;
1512
+ font-size: 12px;
1513
+ color: #646566;
1514
+ }
1515
+ .u-list__content[data-v-6d331927] {
1516
+ min-height: 50px;
1517
+ }
1518
+ .u-list__loading[data-v-6d331927], .u-list__finished[data-v-6d331927], .u-list__error[data-v-6d331927] {
1519
+ display: flex;
1520
+ align-items: center;
1521
+ justify-content: center;
1522
+ padding: 16px;
1523
+ font-size: 14px;
1524
+ color: #646566;
1525
+ }
1526
+ .u-list__loading[data-v-6d331927] {
1527
+ gap: 8px;
1528
+ }
1529
+ .u-list__loading-icon[data-v-6d331927] {
1530
+ width: 16px;
1531
+ height: 16px;
1532
+ border: 2px solid #ebedf0;
1533
+ border-top-color: #1989fa;
1534
+ border-radius: 50%;
1535
+ animation: u-list-spin-6d331927 0.8s linear infinite;
1536
+ }
1537
+ .u-list__loading-text[data-v-6d331927], .u-list__finished-text[data-v-6d331927], .u-list__error-text[data-v-6d331927] {
1538
+ font-size: 12px;
1539
+ color: #646566;
1540
+ }
1541
+ .u-list__error-text[data-v-6d331927] {
1542
+ color: #1989fa;
1543
+ }
1544
+ @keyframes u-list-spin-6d331927 {
1545
+ from {
1546
+ transform: rotate(0deg);
1547
+ }
1548
+ to {
1549
+ transform: rotate(360deg);
1550
+ }
1551
+ }.u-list-item[data-v-8c31b17c] {
1552
+ display: flex;
1553
+ align-items: flex-start;
1554
+ padding: 12px 16px;
1555
+ background-color: #ffffff;
1556
+ border-bottom: 1px solid #ebedf0;
1557
+ transition: background-color 0.3s;
1558
+ }
1559
+ .u-list-item[data-v-8c31b17c]:last-child {
1560
+ border-bottom: none;
1561
+ }
1562
+ .u-list-item--clickable[data-v-8c31b17c]:active {
1563
+ background-color: #f7f8fa;
1564
+ }
1565
+ .u-list-item--disabled[data-v-8c31b17c] {
1566
+ opacity: 0.5;
1567
+ }
1568
+ .u-list-item__icon[data-v-8c31b17c] {
1569
+ display: flex;
1570
+ align-items: center;
1571
+ margin-right: 12px;
1572
+ }
1573
+ .u-list-item__thumb[data-v-8c31b17c] {
1574
+ width: 40px;
1575
+ height: 40px;
1576
+ border-radius: 4px;
1577
+ object-fit: cover;
1578
+ }
1579
+ .u-list-item__icon-text[data-v-8c31b17c] {
1580
+ font-size: 20px;
1581
+ }
1582
+ .u-list-item__body[data-v-8c31b17c] {
1583
+ flex: 1;
1584
+ display: flex;
1585
+ flex-direction: column;
1586
+ min-width: 0;
1587
+ }
1588
+ .u-list-item__title[data-v-8c31b17c] {
1589
+ font-size: 14px;
1590
+ color: #323233;
1591
+ line-height: 1.5;
1592
+ }
1593
+ .u-list-item__desc[data-v-8c31b17c] {
1594
+ margin-top: 4px;
1595
+ font-size: 12px;
1596
+ color: #646566;
1597
+ line-height: 1.4;
1598
+ }
1599
+ .u-list-item__content[data-v-8c31b17c] {
1600
+ margin-top: 8px;
1601
+ }
1602
+ .u-list-item__extra[data-v-8c31b17c] {
1603
+ display: flex;
1604
+ align-items: center;
1605
+ margin-left: 12px;
1606
+ flex-shrink: 0;
1607
+ }
1608
+ .u-list-item__value[data-v-8c31b17c] {
1609
+ font-size: 14px;
1610
+ color: #646566;
1611
+ }
1612
+ .u-list-item__extra-text[data-v-8c31b17c] {
1613
+ font-size: 12px;
1614
+ color: #969799;
1615
+ }
1616
+ .u-list-item__arrow[data-v-8c31b17c] {
1617
+ display: flex;
1618
+ align-items: center;
1619
+ margin-left: 8px;
1620
+ color: #969799;
1621
+ }
1622
+ .u-list-item__arrow-icon[data-v-8c31b17c] {
1623
+ font-size: 16px;
1624
+ }.u-line-progress[data-v-99121563] {
1625
+ display: flex;
1626
+ align-items: center;
1627
+ width: 100%;
1628
+ }
1629
+ .u-line-progress__track[data-v-99121563] {
1630
+ flex: 1;
1631
+ overflow: hidden;
1632
+ position: relative;
1633
+ }
1634
+ .u-line-progress__bar[data-v-99121563] {
1635
+ height: 100%;
1636
+ transition: width 0.3s ease-out;
1637
+ position: relative;
1638
+ }
1639
+ .u-line-progress__bar--striped[data-v-99121563] {
1640
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1641
+ background-size: 1rem 1rem;
1642
+ }
1643
+ .u-line-progress__bar--animated[data-v-99121563] {
1644
+ animation: u-line-progress-stripes-99121563 1s linear infinite;
1645
+ }
1646
+ .u-line-progress__text[data-v-99121563] {
1647
+ font-size: 12px;
1648
+ color: #646566;
1649
+ white-space: nowrap;
1650
+ margin-left: 8px;
1651
+ }
1652
+ .u-line-progress__text--inside[data-v-99121563] {
1653
+ position: absolute;
1654
+ top: 50%;
1655
+ left: 50%;
1656
+ transform: translate(-50%, -50%);
1657
+ margin-left: 0;
1658
+ color: #fff;
1659
+ font-size: 12px;
1660
+ }
1661
+ @keyframes u-line-progress-stripes-99121563 {
1662
+ from {
1663
+ background-position: 1rem 0;
1664
+ }
1665
+ to {
1666
+ background-position: 0 0;
1667
+ }
1668
+ }.u-count-down[data-v-da70e500] {
1669
+ display: inline-block;
1670
+ }
1671
+ .u-count-down__text[data-v-da70e500] {
1672
+ font-variant-numeric: tabular-nums;
1673
+ }.u-tooltip[data-v-dd1bff02] {
1674
+ position: relative;
1675
+ display: inline-block;
1676
+ }
1677
+ .u-tooltip--active[data-v-dd1bff02] {
1678
+ z-index: 999;
1679
+ }
1680
+ .u-tooltip__trigger[data-v-dd1bff02] {
1681
+ display: inline;
1682
+ transition: background-color 0.15s;
1683
+ }
1684
+ .u-tooltip__trigger--highlight[data-v-dd1bff02] {
1685
+ border-radius: 2px;
1686
+ }
1687
+ .u-tooltip__popup[data-v-dd1bff02] {
1688
+ position: absolute;
1689
+ z-index: 1000;
1690
+ padding: 8px 12px;
1691
+ background: #323233;
1692
+ border-radius: 8px;
1693
+ white-space: nowrap;
1694
+ animation: u-tooltip-fade-in-dd1bff02 0.15s ease-out;
1695
+ }
1696
+ .u-tooltip__popup--top[data-v-dd1bff02] {
1697
+ bottom: 100%;
1698
+ left: 50%;
1699
+ transform: translateX(-50%);
1700
+ margin-bottom: 8px;
1701
+ }
1702
+ .u-tooltip__popup--bottom[data-v-dd1bff02] {
1703
+ top: 100%;
1704
+ left: 50%;
1705
+ transform: translateX(-50%);
1706
+ margin-top: 8px;
1707
+ }
1708
+ .u-tooltip__arrow[data-v-dd1bff02] {
1709
+ position: absolute;
1710
+ width: 0;
1711
+ height: 0;
1712
+ border: 6px solid transparent;
1713
+ }
1714
+ .u-tooltip__arrow--top[data-v-dd1bff02] {
1715
+ bottom: -12px;
1716
+ left: 50%;
1717
+ transform: translateX(-50%);
1718
+ border-top-color: #323233;
1719
+ border-bottom: none;
1720
+ }
1721
+ .u-tooltip__arrow--bottom[data-v-dd1bff02] {
1722
+ top: -12px;
1723
+ left: 50%;
1724
+ transform: translateX(-50%);
1725
+ border-bottom-color: #323233;
1726
+ border-top: none;
1727
+ }
1728
+ .u-tooltip__content[data-v-dd1bff02] {
1729
+ display: flex;
1730
+ align-items: center;
1731
+ }
1732
+ .u-tooltip__text[data-v-dd1bff02] {
1733
+ font-size: 14px;
1734
+ color: #fff;
1735
+ line-height: 1.4;
1736
+ }
1737
+ .u-tooltip__actions[data-v-dd1bff02] {
1738
+ display: flex;
1739
+ gap: 16px;
1740
+ }
1741
+ .u-tooltip__action[data-v-dd1bff02] {
1742
+ display: flex;
1743
+ align-items: center;
1744
+ padding: 4px 0;
1745
+ }
1746
+ .u-tooltip__action--disabled[data-v-dd1bff02] {
1747
+ opacity: 0.5;
1748
+ }
1749
+ .u-tooltip__action[data-v-dd1bff02]:not(.u-tooltip__action--disabled):active {
1750
+ opacity: 0.7;
1751
+ }
1752
+ .u-tooltip__action-text[data-v-dd1bff02] {
1753
+ font-size: 14px;
1754
+ color: #fff;
1755
+ }
1756
+ @keyframes u-tooltip-fade-in-dd1bff02 {
1757
+ from {
1758
+ opacity: 0;
1759
+ transform: translateX(-50%) scale(0.9);
1760
+ }
1761
+ to {
1762
+ opacity: 1;
1763
+ transform: translateX(-50%) scale(1);
1764
+ }
1765
+ }.u-avatar[data-v-10f478fe] {
1766
+ position: relative;
1767
+ display: inline-flex;
1768
+ align-items: center;
1769
+ justify-content: center;
1770
+ overflow: hidden;
1771
+ box-sizing: border-box;
1772
+ background-color: #f7f8fa;
1773
+ font-weight: 500;
1774
+ }
1775
+ .u-avatar--circle[data-v-10f478fe] {
1776
+ border-radius: 50%;
1777
+ }
1778
+ .u-avatar--square[data-v-10f478fe] {
1779
+ border-radius: 4px;
1780
+ }
1781
+ .u-avatar__image[data-v-10f478fe] {
1782
+ width: 100%;
1783
+ height: 100%;
1784
+ }
1785
+ .u-avatar__text[data-v-10f478fe] {
1786
+ font-size: 16px;
1787
+ color: #646566;
1788
+ line-height: 1;
1789
+ }
1790
+ .u-avatar__icon[data-v-10f478fe] {
1791
+ font-size: 24px;
1792
+ color: #969799;
1793
+ }
1794
+ .u-avatar__badge[data-v-10f478fe] {
1795
+ position: absolute;
1796
+ z-index: 1;
1797
+ display: flex;
1798
+ align-items: center;
1799
+ justify-content: center;
1800
+ min-width: 16px;
1801
+ height: 16px;
1802
+ padding: 0 4px;
1803
+ font-size: 10px;
1804
+ color: #ffffff;
1805
+ background-color: #ee0a24;
1806
+ border-radius: 999px;
1807
+ box-sizing: border-box;
1808
+ }
1809
+ .u-avatar__badge--dot[data-v-10f478fe] {
1810
+ min-width: 8px;
1811
+ width: 8px;
1812
+ height: 8px;
1813
+ padding: 0;
1814
+ border-radius: 50%;
1815
+ }
1816
+ .u-avatar__badge--top-right[data-v-10f478fe] {
1817
+ top: 0;
1818
+ right: 0;
1819
+ transform: translate(25%, -25%);
1820
+ }
1821
+ .u-avatar__badge--top-left[data-v-10f478fe] {
1822
+ top: 0;
1823
+ left: 0;
1824
+ transform: translate(-25%, -25%);
1825
+ }
1826
+ .u-avatar__badge--bottom-right[data-v-10f478fe] {
1827
+ bottom: 0;
1828
+ right: 0;
1829
+ transform: translate(25%, 25%);
1830
+ }
1831
+ .u-avatar__badge--bottom-left[data-v-10f478fe] {
1832
+ bottom: 0;
1833
+ left: 0;
1834
+ transform: translate(-25%, 25%);
1835
+ }.u-empty[data-v-853e089d] {
1836
+ display: flex;
1837
+ flex-direction: column;
1838
+ align-items: center;
1839
+ justify-content: center;
1840
+ padding: 24px 12px;
1841
+ box-sizing: border-box;
1842
+ }
1843
+ .u-empty--inline[data-v-853e089d] {
1844
+ display: inline-flex;
1845
+ padding: 12px;
1846
+ }
1847
+ .u-empty__image[data-v-853e089d] {
1848
+ width: 160px;
1849
+ height: 160px;
1850
+ margin-bottom: 12px;
1851
+ display: flex;
1852
+ align-items: center;
1853
+ justify-content: center;
1854
+ }
1855
+ .u-empty__image-src[data-v-853e089d] {
1856
+ width: 100%;
1857
+ height: 100%;
1858
+ }
1859
+ .u-empty__image-default[data-v-853e089d] {
1860
+ width: 100%;
1861
+ height: 100%;
1862
+ display: flex;
1863
+ align-items: center;
1864
+ justify-content: center;
1865
+ background-color: #f7f8fa;
1866
+ border-radius: 12px;
1867
+ }
1868
+ .u-empty__icon[data-v-853e089d] {
1869
+ font-size: 64px;
1870
+ color: #969799;
1871
+ }
1872
+ .u-empty__description[data-v-853e089d] {
1873
+ font-size: 14px;
1874
+ color: #969799;
1875
+ line-height: 1.5;
1876
+ text-align: center;
1877
+ margin-bottom: 12px;
1878
+ }
1879
+ .u-empty__bottom[data-v-853e089d] {
1880
+ margin-top: 8px;
1881
+ }.u-checkbox[data-v-6f3ea0c6] {
1882
+ display: inline-flex;
1883
+ align-items: center;
1884
+ -webkit-user-select: none;
1885
+ -moz-user-select: none;
1886
+ -ms-user-select: none;
1887
+ user-select: none;
1888
+ }
1889
+ .u-checkbox--disabled[data-v-6f3ea0c6] {
1890
+ opacity: 0.5;
1891
+ }
1892
+ .u-checkbox__icon[data-v-6f3ea0c6] {
1893
+ display: flex;
1894
+ align-items: center;
1895
+ justify-content: center;
1896
+ border: 1px solid #ebedf0;
1897
+ background-color: #ffffff;
1898
+ transition: all 0.2s;
1899
+ flex-shrink: 0;
1900
+ }
1901
+ .u-checkbox__icon--square[data-v-6f3ea0c6] {
1902
+ border-radius: 4px;
1903
+ }
1904
+ .u-checkbox__icon--circle[data-v-6f3ea0c6] {
1905
+ border-radius: 50%;
1906
+ }
1907
+ .u-checkbox__icon--checked[data-v-6f3ea0c6] {
1908
+ background-color: #1989fa;
1909
+ border-color: #1989fa;
1910
+ }
1911
+ .u-checkbox__icon--disabled[data-v-6f3ea0c6] {
1912
+ background-color: #f7f8fa;
1913
+ border-color: #ebedf0;
1914
+ }
1915
+ .u-checkbox__check[data-v-6f3ea0c6] {
1916
+ color: #ffffff;
1917
+ font-size: 12px;
1918
+ font-weight: bold;
1919
+ line-height: 1;
1920
+ }
1921
+ .u-checkbox__label[data-v-6f3ea0c6] {
1922
+ margin-left: 8px;
1923
+ font-size: 14px;
1924
+ color: #323233;
1925
+ line-height: 1.5;
1926
+ }
1927
+ .u-checkbox--checked .u-checkbox__label[data-v-6f3ea0c6] {
1928
+ color: #323233;
1929
+ }
1930
+ .u-checkbox--disabled .u-checkbox__label[data-v-6f3ea0c6] {
1931
+ color: #969799;
1932
+ }.u-checkbox-group[data-v-4e51c49e] {
1933
+ display: flex;
1934
+ flex-wrap: wrap;
1935
+ gap: 12px;
1936
+ }.u-radio[data-v-3b4f8627] {
1937
+ display: inline-flex;
1938
+ align-items: center;
1939
+ -webkit-user-select: none;
1940
+ -moz-user-select: none;
1941
+ -ms-user-select: none;
1942
+ user-select: none;
1943
+ }
1944
+ .u-radio--disabled[data-v-3b4f8627] {
1945
+ opacity: 0.5;
1946
+ }
1947
+ .u-radio__icon[data-v-3b4f8627] {
1948
+ display: flex;
1949
+ align-items: center;
1950
+ justify-content: center;
1951
+ border: 1px solid #ebedf0;
1952
+ background-color: #ffffff;
1953
+ border-radius: 50%;
1954
+ transition: all 0.2s;
1955
+ flex-shrink: 0;
1956
+ }
1957
+ .u-radio__icon--checked[data-v-3b4f8627] {
1958
+ border-color: #1989fa;
1959
+ border-width: 6px;
1960
+ background-color: #ffffff;
1961
+ }
1962
+ .u-radio__icon--disabled[data-v-3b4f8627] {
1963
+ background-color: #f7f8fa;
1964
+ border-color: #ebedf0;
1965
+ }
1966
+ .u-radio__dot[data-v-3b4f8627] {
1967
+ width: 8px;
1968
+ height: 8px;
1969
+ border-radius: 50%;
1970
+ background-color: #1989fa;
1971
+ }
1972
+ .u-radio__label[data-v-3b4f8627] {
1973
+ margin-left: 8px;
1974
+ font-size: 14px;
1975
+ color: #323233;
1976
+ line-height: 1.5;
1977
+ }
1978
+ .u-radio--disabled .u-radio__label[data-v-3b4f8627] {
1979
+ color: #969799;
1980
+ }.u-radio-group[data-v-04ea4949] {
1981
+ display: flex;
1982
+ flex-wrap: wrap;
1983
+ gap: 12px;
1984
+ }.u-toast[data-v-ffefead4] {
1985
+ position: fixed;
1986
+ left: 50%;
1987
+ transform: translateX(-50%);
1988
+ z-index: 1000;
1989
+ pointer-events: none;
1990
+ }
1991
+ .u-toast--top[data-v-ffefead4] {
1992
+ top: 50px;
1993
+ }
1994
+ .u-toast--middle[data-v-ffefead4] {
1995
+ top: 50%;
1996
+ transform: translate(-50%, -50%);
1997
+ }
1998
+ .u-toast--bottom[data-v-ffefead4] {
1999
+ bottom: 50px;
2000
+ }
2001
+ .u-toast--forbid-click[data-v-ffefead4] {
2002
+ pointer-events: auto;
2003
+ width: 100vw;
2004
+ height: 100vh;
2005
+ left: 0;
2006
+ top: 0;
2007
+ transform: none;
2008
+ background-color: transparent;
2009
+ }
2010
+ .u-toast__content[data-v-ffefead4] {
2011
+ display: flex;
2012
+ flex-direction: column;
2013
+ align-items: center;
2014
+ justify-content: center;
2015
+ padding: 12px 16px;
2016
+ background-color: rgba(0, 0, 0, 0.7);
2017
+ border-radius: 12px;
2018
+ min-width: 100px;
2019
+ max-width: 280px;
2020
+ }
2021
+ .u-toast--loading .u-toast__content[data-v-ffefead4] {
2022
+ min-width: 80px;
2023
+ min-height: 80px;
2024
+ padding: 16px;
2025
+ }
2026
+ .u-toast__icon[data-v-ffefead4] {
2027
+ font-size: 32px;
2028
+ color: #ffffff;
2029
+ margin-bottom: 8px;
2030
+ }
2031
+ .u-toast__loading[data-v-ffefead4] {
2032
+ display: flex;
2033
+ align-items: center;
2034
+ justify-content: center;
2035
+ margin-bottom: 8px;
2036
+ }
2037
+ .u-toast__loading-icon[data-v-ffefead4] {
2038
+ width: 24px;
2039
+ height: 24px;
2040
+ border: 2px solid rgba(255, 255, 255, 0.3);
2041
+ border-top-color: #ffffff;
2042
+ border-radius: 50%;
2043
+ animation: u-toast-loading-ffefead4 0.8s linear infinite;
2044
+ }
2045
+ @keyframes u-toast-loading-ffefead4 {
2046
+ to {
2047
+ transform: rotate(360deg);
2048
+ }
2049
+ }
2050
+ .u-toast__text[data-v-ffefead4] {
2051
+ font-size: 14px;
2052
+ color: #ffffff;
2053
+ line-height: 1.4;
2054
+ text-align: center;
2055
+ }
2056
+ .u-popup[data-v-850475f0] {
2057
+ position: fixed;
2058
+ top: 0;
2059
+ left: 0;
2060
+ right: 0;
2061
+ bottom: 0;
2062
+ z-index: 1000;
2063
+ pointer-events: none;
2064
+ }
2065
+ .u-popup--safe-area[data-v-850475f0] {
2066
+ padding-bottom: constant(safe-area-inset-bottom);
2067
+ padding-bottom: env(safe-area-inset-bottom);
2068
+ /* 鴻蒙兼容 */
2069
+ padding-bottom: var(--safe-area-inset-bottom, env(safe-area-inset-bottom));
2070
+ }
2071
+ .u-popup__overlay[data-v-850475f0] {
2072
+ position: absolute;
2073
+ top: 0;
2074
+ left: 0;
2075
+ right: 0;
2076
+ bottom: 0;
2077
+ background-color: rgba(0, 0, 0, 0.7);
2078
+ opacity: 0;
2079
+ transition: opacity 0.3s;
2080
+ pointer-events: auto;
2081
+ }
2082
+ .u-popup__overlay--visible[data-v-850475f0] {
2083
+ opacity: 1;
2084
+ }
2085
+ .u-popup__content[data-v-850475f0] {
2086
+ position: absolute;
2087
+ background-color: #ffffff;
2088
+ transition: transform 0.3s ease-out;
2089
+ pointer-events: auto;
2090
+ overflow: hidden;
2091
+ }
2092
+ .u-popup__content--top[data-v-850475f0] {
2093
+ transform: translateY(-100%);
2094
+ }
2095
+ .u-popup__content--top--visible[data-v-850475f0] {
2096
+ transform: translateY(0);
2097
+ }
2098
+ .u-popup__content--top--round[data-v-850475f0] {
2099
+ border-radius: 0 0 12px 12px;
2100
+ }
2101
+ .u-popup__content--bottom[data-v-850475f0] {
2102
+ transform: translateY(100%);
2103
+ }
2104
+ .u-popup__content--bottom--visible[data-v-850475f0] {
2105
+ transform: translateY(0);
2106
+ }
2107
+ .u-popup__content--bottom--round[data-v-850475f0] {
2108
+ border-radius: 12px 12px 0 0;
2109
+ }
2110
+ .u-popup__content--left[data-v-850475f0] {
2111
+ width: 80%;
2112
+ height: 100%;
2113
+ transform: translateX(-100%);
2114
+ }
2115
+ .u-popup__content--left--visible[data-v-850475f0] {
2116
+ transform: translateX(0);
2117
+ }
2118
+ .u-popup__content--left--round[data-v-850475f0] {
2119
+ border-radius: 0 12px 12px 0;
2120
+ }
2121
+ .u-popup__content--right[data-v-850475f0] {
2122
+ width: 80%;
2123
+ height: 100%;
2124
+ transform: translateX(100%);
2125
+ }
2126
+ .u-popup__content--right--visible[data-v-850475f0] {
2127
+ transform: translateX(0);
2128
+ }
2129
+ .u-popup__content--right--round[data-v-850475f0] {
2130
+ border-radius: 12px 0 0 12px;
2131
+ }
2132
+ .u-popup__content--center[data-v-850475f0] {
2133
+ top: 50%;
2134
+ left: 50%;
2135
+ transform: translate(-50%, -50%) scale(0.9);
2136
+ opacity: 0;
2137
+ min-width: 280px;
2138
+ border-radius: 12px;
2139
+ }
2140
+ .u-popup__content--center--visible[data-v-850475f0] {
2141
+ transform: translate(-50%, -50%) scale(1);
2142
+ opacity: 1;
2143
+ }
2144
+ .u-popup__content--center--round[data-v-850475f0] {
2145
+ border-radius: 12px;
2146
+ }
2147
+ .u-popup__close[data-v-850475f0] {
2148
+ position: absolute;
2149
+ top: 12px;
2150
+ right: 12px;
2151
+ width: 24px;
2152
+ height: 24px;
2153
+ display: flex;
2154
+ align-items: center;
2155
+ justify-content: center;
2156
+ z-index: 1;
2157
+ }
2158
+ .u-popup__close-icon[data-v-850475f0] {
2159
+ font-size: 18px;
2160
+ color: #969799;
2161
+ }.u-code-input[data-v-9fffa23f] {
2162
+ position: relative;
2163
+ -webkit-user-select: none;
2164
+ -moz-user-select: none;
2165
+ -ms-user-select: none;
2166
+ user-select: none;
2167
+ }
2168
+ .u-code-input__wrapper[data-v-9fffa23f] {
2169
+ display: flex;
2170
+ flex-direction: row;
2171
+ }
2172
+ .u-code-input__item[data-v-9fffa23f] {
2173
+ display: flex;
2174
+ align-items: center;
2175
+ justify-content: center;
2176
+ font-size: 20px;
2177
+ font-weight: 500;
2178
+ line-height: 1;
2179
+ position: relative;
2180
+ flex-shrink: 0;
2181
+ }
2182
+ .u-code-input__item[data-v-9fffa23f]:last-child {
2183
+ margin-right: 0 !important;
2184
+ }
2185
+ .u-code-input__item--filled[data-v-9fffa23f] {
2186
+ background-color: #f7f8fa;
2187
+ border: 1px solid #ebedf0;
2188
+ border-radius: 4px;
2189
+ }
2190
+ .u-code-input__item--plain[data-v-9fffa23f] {
2191
+ border-bottom: 2px solid #ebedf0;
2192
+ background-color: transparent;
2193
+ }
2194
+ .u-code-input__item--active[data-v-9fffa23f] {
2195
+ border-color: #1989fa;
2196
+ }
2197
+ .u-code-input__item--focused[data-v-9fffa23f] {
2198
+ border-color: #1989fa;
2199
+ }
2200
+ .u-code-input__item--disabled[data-v-9fffa23f] {
2201
+ opacity: 0.5;
2202
+ }
2203
+ .u-code-input__char[data-v-9fffa23f] {
2204
+ color: #323233;
2205
+ }
2206
+ .u-code-input__dot[data-v-9fffa23f] {
2207
+ width: 8px;
2208
+ height: 8px;
2209
+ border-radius: 50%;
2210
+ background-color: #323233;
2211
+ }
2212
+ .u-code-input__placeholder[data-v-9fffa23f] {
2213
+ color: #969799;
2214
+ font-size: 24px;
2215
+ }
2216
+ .u-code-input__cursor[data-v-9fffa23f] {
2217
+ position: absolute;
2218
+ left: 0;
2219
+ top: 10%;
2220
+ height: 80%;
2221
+ width: 2px;
2222
+ background-color: #1989fa;
2223
+ animation: u-code-input-cursor-9fffa23f 1s infinite;
2224
+ }
2225
+ @keyframes u-code-input-cursor-9fffa23f {
2226
+ 0%, 50% {
2227
+ opacity: 1;
2228
+ }
2229
+ 51%, 100% {
2230
+ opacity: 0;
2231
+ }
2232
+ }
2233
+ .u-code-input__input[data-v-9fffa23f] {
2234
+ position: absolute;
2235
+ top: 0;
2236
+ left: 0;
2237
+ width: 200%;
2238
+ height: 100%;
2239
+ opacity: 0;
2240
+ z-index: 2;
2241
+ }.u-skeleton[data-v-8f29b4c7] {
2242
+ display: flex;
2243
+ gap: 12px;
2244
+ }
2245
+ .u-skeleton--animate .u-skeleton__avatar[data-v-8f29b4c7],
2246
+ .u-skeleton--animate .u-skeleton__title[data-v-8f29b4c7],
2247
+ .u-skeleton--animate .u-skeleton__paragraph[data-v-8f29b4c7] {
2248
+ animation: skeleton-blink-8f29b4c7 1.2s ease-in-out infinite;
2249
+ }
2250
+ .u-skeleton__avatar[data-v-8f29b4c7] {
2251
+ flex-shrink: 0;
2252
+ background-color: #f2f3f5;
2253
+ border-radius: 50%;
2254
+ }
2255
+ .u-skeleton__avatar--circle[data-v-8f29b4c7] {
2256
+ border-radius: 50%;
2257
+ }
2258
+ .u-skeleton__avatar--square[data-v-8f29b4c7] {
2259
+ border-radius: 4px;
2260
+ }
2261
+ .u-skeleton__content[data-v-8f29b4c7] {
2262
+ flex: 1;
2263
+ min-width: 0;
2264
+ }
2265
+ .u-skeleton__title[data-v-8f29b4c7] {
2266
+ height: 20px;
2267
+ margin-bottom: 12px;
2268
+ background-color: #f2f3f5;
2269
+ border-radius: 4px;
2270
+ }
2271
+ .u-skeleton__paragraphs[data-v-8f29b4c7] {
2272
+ display: flex;
2273
+ flex-direction: column;
2274
+ gap: 8px;
2275
+ }
2276
+ .u-skeleton__paragraph[data-v-8f29b4c7] {
2277
+ background-color: #f2f3f5;
2278
+ border-radius: 4px;
2279
+ }
2280
+ @keyframes skeleton-blink-8f29b4c7 {
2281
+ 0% {
2282
+ opacity: 1;
2283
+ }
2284
+ 50% {
2285
+ opacity: 0.5;
2286
+ }
2287
+ 100% {
2288
+ opacity: 1;
2289
+ }
2290
+ }.u-transition[data-v-48c1ff4a] {
2291
+ opacity: 1;
2292
+ transform: none;
2293
+ }
2294
+ .u-transition--fade-enter[data-v-48c1ff4a] {
2295
+ opacity: 0;
2296
+ }
2297
+ .u-transition--fade-leave[data-v-48c1ff4a] {
2298
+ opacity: 0;
2299
+ }
2300
+ .u-transition--fade-up-enter[data-v-48c1ff4a] {
2301
+ opacity: 0;
2302
+ transform: translateY(100%);
2303
+ }
2304
+ .u-transition--fade-up-leave[data-v-48c1ff4a] {
2305
+ opacity: 0;
2306
+ transform: translateY(-100%);
2307
+ }
2308
+ .u-transition--fade-down-enter[data-v-48c1ff4a] {
2309
+ opacity: 0;
2310
+ transform: translateY(-100%);
2311
+ }
2312
+ .u-transition--fade-down-leave[data-v-48c1ff4a] {
2313
+ opacity: 0;
2314
+ transform: translateY(100%);
2315
+ }
2316
+ .u-transition--fade-left-enter[data-v-48c1ff4a] {
2317
+ opacity: 0;
2318
+ transform: translateX(100%);
2319
+ }
2320
+ .u-transition--fade-left-leave[data-v-48c1ff4a] {
2321
+ opacity: 0;
2322
+ transform: translateX(-100%);
2323
+ }
2324
+ .u-transition--fade-right-enter[data-v-48c1ff4a] {
2325
+ opacity: 0;
2326
+ transform: translateX(-100%);
2327
+ }
2328
+ .u-transition--fade-right-leave[data-v-48c1ff4a] {
2329
+ opacity: 0;
2330
+ transform: translateX(100%);
2331
+ }
2332
+ .u-transition--slide-up-enter[data-v-48c1ff4a] {
2333
+ transform: translateY(100%);
2334
+ }
2335
+ .u-transition--slide-up-leave[data-v-48c1ff4a] {
2336
+ transform: translateY(-100%);
2337
+ }
2338
+ .u-transition--slide-down-enter[data-v-48c1ff4a] {
2339
+ transform: translateY(-100%);
2340
+ }
2341
+ .u-transition--slide-down-leave[data-v-48c1ff4a] {
2342
+ transform: translateY(100%);
2343
+ }
2344
+ .u-transition--slide-left-enter[data-v-48c1ff4a] {
2345
+ transform: translateX(100%);
2346
+ }
2347
+ .u-transition--slide-left-leave[data-v-48c1ff4a] {
2348
+ transform: translateX(-100%);
2349
+ }
2350
+ .u-transition--slide-right-enter[data-v-48c1ff4a] {
2351
+ transform: translateX(-100%);
2352
+ }
2353
+ .u-transition--slide-right-leave[data-v-48c1ff4a] {
2354
+ transform: translateX(100%);
2355
+ }
2356
+ .u-transition--zoom-enter[data-v-48c1ff4a] {
2357
+ transform: scale(0);
2358
+ }
2359
+ .u-transition--zoom-leave[data-v-48c1ff4a] {
2360
+ transform: scale(0);
2361
+ }
2362
+ .u-transition--zoom-fade-enter[data-v-48c1ff4a] {
2363
+ opacity: 0;
2364
+ transform: scale(0.5);
2365
+ }
2366
+ .u-transition--zoom-fade-leave[data-v-48c1ff4a] {
2367
+ opacity: 0;
2368
+ transform: scale(0.5);
2369
+ }.u-link[data-v-264b49c0] {
2370
+ display: inline;
2371
+ color: #646566;
2372
+ font-size: inherit;
2373
+ word-break: break-all;
2374
+ }
2375
+ .u-link--default[data-v-264b49c0] {
2376
+ color: #646566;
2377
+ }
2378
+ .u-link--primary[data-v-264b49c0] {
2379
+ color: #1989fa;
2380
+ }
2381
+ .u-link--success[data-v-264b49c0] {
2382
+ color: #07c160;
2383
+ }
2384
+ .u-link--warning[data-v-264b49c0] {
2385
+ color: #ff976a;
2386
+ }
2387
+ .u-link--danger[data-v-264b49c0] {
2388
+ color: #ee0a24;
2389
+ }
2390
+ .u-link--underline[data-v-264b49c0] {
2391
+ text-decoration: underline;
2392
+ }
2393
+ .u-link--disabled[data-v-264b49c0] {
2394
+ color: #969799;
2395
+ opacity: 0.5;
2396
+ }.u-read-more__content[data-v-e27ed42c] {
2397
+ font-size: 14px;
2398
+ color: #323233;
2399
+ line-height: 1.6;
2400
+ word-break: break-all;
2401
+ }
2402
+ .u-read-more__toggle[data-v-e27ed42c] {
2403
+ display: inline-flex;
2404
+ align-items: center;
2405
+ margin-top: 8px;
2406
+ color: #1989fa;
2407
+ font-size: 14px;
2408
+ }
2409
+ .u-read-more__toggle[data-v-e27ed42c]:active {
2410
+ opacity: 0.7;
2411
+ }
2412
+ .u-read-more__toggle-text[data-v-e27ed42c] {
2413
+ margin-right: 4px;
2414
+ }
2415
+ .u-read-more__toggle-icon[data-v-e27ed42c] {
2416
+ font-size: 12px;
2417
+ }
2418
+ .u-tabbar[data-v-cdd03f9f] {
2419
+ position: fixed;
2420
+ left: 0;
2421
+ right: 0;
2422
+ bottom: 0;
2423
+ z-index: 999;
2424
+ width: 100%;
2425
+ }
2426
+ .u-tabbar__nav-wrap[data-v-cdd03f9f] {
2427
+ position: absolute;
2428
+ left: 14px;
2429
+ right: 14px;
2430
+ bottom: calc(10px + env(safe-area-inset-bottom));
2431
+ /* 鴻蒙兼容 */
2432
+ bottom: calc(10px + var(--safe-area-inset-bottom, env(safe-area-inset-bottom)));
2433
+ z-index: 5;
2434
+ height: 56px;
2435
+ border-radius: 28px;
2436
+ background: linear-gradient(90deg, #12b6af 0%, #9fe4dd 100%);
2437
+ box-shadow: 0 10px 24px rgba(7, 114, 108, 0.3);
2438
+ display: flex;
2439
+ align-items: center;
2440
+ justify-content: space-between;
2441
+ padding: 0 8px;
2442
+ box-sizing: border-box;
2443
+ }
2444
+ .u-tabbar__tab-btn[data-v-cdd03f9f] {
2445
+ flex: 1;
2446
+ height: 40px;
2447
+ border-radius: 20px;
2448
+ background: transparent;
2449
+ display: flex;
2450
+ align-items: center;
2451
+ justify-content: center;
2452
+ gap: 4px;
2453
+ font-size: 14px;
2454
+ transition: all 200ms ease;
2455
+ white-space: nowrap;
2456
+ overflow: hidden;
2457
+ min-width: 0;
2458
+ }
2459
+ .u-tabbar__tab-btn--active[data-v-cdd03f9f] {
2460
+ background: #ffffff;
2461
+ color: #0c958e;
2462
+ box-shadow: inset 0 0 0 1px rgba(17, 135, 128, 0.14);
2463
+ }
2464
+ .u-tabbar__tab-icon[data-v-cdd03f9f] {
2465
+ font-size: 16px;
2466
+ font-weight: 700;
2467
+ color: rgba(255, 255, 255, 0.9);
2468
+ flex-shrink: 0;
2469
+ }
2470
+ .u-tabbar__tab-btn--active .u-tabbar__tab-icon[data-v-cdd03f9f] {
2471
+ color: #0c958e;
2472
+ }
2473
+ .u-tabbar__tab-text[data-v-cdd03f9f] {
2474
+ font-weight: 600;
2475
+ color: rgba(255, 255, 255, 0.9);
2476
+ overflow: hidden;
2477
+ text-overflow: ellipsis;
2478
+ }
2479
+ .u-tabbar__tab-btn--active .u-tabbar__tab-text[data-v-cdd03f9f] {
2480
+ color: #0c958e;
2481
+ }
2482
+ .u-tabbar__center[data-v-cdd03f9f] {
2483
+ position: relative;
2484
+ width: 72px;
2485
+ height: 56px;
2486
+ flex-shrink: 0;
2487
+ }
2488
+ .u-tabbar__center-btn[data-v-cdd03f9f] {
2489
+ position: absolute;
2490
+ left: 50%;
2491
+ top: -22px;
2492
+ transform: translateX(-50%);
2493
+ width: 72px;
2494
+ height: 72px;
2495
+ border-radius: 50%;
2496
+ border: 2px solid #dff7f4;
2497
+ background: linear-gradient(180deg, #65d8d1 0%, #21b5ae 100%);
2498
+ color: #fff;
2499
+ display: flex;
2500
+ flex-direction: column;
2501
+ align-items: center;
2502
+ justify-content: center;
2503
+ gap: 1px;
2504
+ box-shadow: 0 8px 20px rgba(8, 112, 106, 0.3);
2505
+ transition: all 200ms ease;
2506
+ }
2507
+ .u-tabbar__center-btn[data-v-cdd03f9f]:active {
2508
+ transform: translateX(-50%) scale(0.95);
2509
+ }
2510
+ .u-tabbar__center-btn--active[data-v-cdd03f9f] {
2511
+ background: #ffffff;
2512
+ border-color: #12b6af;
2513
+ }
2514
+ .u-tabbar__center-btn--active .u-tabbar__center-brand[data-v-cdd03f9f],
2515
+ .u-tabbar__center-btn--active .u-tabbar__center-text[data-v-cdd03f9f] {
2516
+ color: #12b6af;
2517
+ }
2518
+ .u-tabbar__center-brand[data-v-cdd03f9f] {
2519
+ font-size: 22px;
2520
+ line-height: 1;
2521
+ font-weight: 700;
2522
+ color: #fff;
2523
+ }
2524
+ .u-tabbar__center-text[data-v-cdd03f9f] {
2525
+ font-size: 12px;
2526
+ letter-spacing: 0.5px;
2527
+ color: #fff;
2528
+ }