@hlw-uni/mp-vue 1.0.35 → 1.1.1

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.
package/dist/style.css CHANGED
@@ -1,20 +1,20 @@
1
1
  @charset "UTF-8";
2
- .hlw-avatar[data-v-89dcbc96] {
2
+ .hlw-avatar[data-v-19006b2d] {
3
3
  border-radius: 50%;
4
4
  overflow: hidden;
5
5
  flex-shrink: 0;
6
6
  }
7
- .hlw-avatar--small[data-v-89dcbc96] { width: 56rpx; height: 56rpx;
7
+ .hlw-avatar--small[data-v-19006b2d] { width: 56rpx; height: 56rpx;
8
8
  }
9
- .hlw-avatar--medium[data-v-89dcbc96] { width: 80rpx; height: 80rpx;
9
+ .hlw-avatar--medium[data-v-19006b2d] { width: 80rpx; height: 80rpx;
10
10
  }
11
- .hlw-avatar--large[data-v-89dcbc96] { width: 120rpx; height: 120rpx;
11
+ .hlw-avatar--large[data-v-19006b2d] { width: 120rpx; height: 120rpx;
12
12
  }
13
- .hlw-avatar__image[data-v-89dcbc96] {
13
+ .hlw-avatar__image[data-v-19006b2d] {
14
14
  width: 100%;
15
15
  height: 100%;
16
16
  }
17
- .hlw-avatar__placeholder[data-v-89dcbc96] {
17
+ .hlw-avatar__placeholder[data-v-19006b2d] {
18
18
  width: 100%;
19
19
  height: 100%;
20
20
  background: #07c160;
@@ -22,17 +22,97 @@
22
22
  align-items: center;
23
23
  justify-content: center;
24
24
  }
25
- .hlw-avatar__initial[data-v-89dcbc96] {
25
+ .hlw-avatar__initial[data-v-19006b2d] {
26
26
  color: #fff;
27
27
  font-weight: bold;
28
28
  }
29
- .hlw-avatar--small .hlw-avatar__initial[data-v-89dcbc96] { font-size: var(--font-xs, 20rpx);
29
+ .hlw-avatar--small .hlw-avatar__initial[data-v-19006b2d] { font-size: var(--font-xs, 20rpx);
30
30
  }
31
- .hlw-avatar--medium .hlw-avatar__initial[data-v-89dcbc96] { font-size: var(--font-base, 28rpx);
31
+ .hlw-avatar--medium .hlw-avatar__initial[data-v-19006b2d] { font-size: var(--font-base, 28rpx);
32
+ }
33
+ .hlw-avatar--large .hlw-avatar__initial[data-v-19006b2d] { font-size: var(--font-xl, 40rpx);
34
+ }
35
+ .hlw-btn[data-v-19a9c118] {
36
+ display: inline-flex;
37
+ align-items: center;
38
+ justify-content: center;
39
+ gap: 8rpx;
40
+ border: none;
41
+ font-weight: 500;
42
+ line-height: 1;
43
+ transition: opacity 0.2s;
44
+ }
45
+ .hlw-btn[data-v-19a9c118]::after {
46
+ display: none;
47
+ }
48
+ .hlw-btn[data-v-19a9c118]:active {
49
+ opacity: 0.7;
50
+ }
51
+ .hlw-btn--primary[data-v-19a9c118] {
52
+ background: var(--primary-color);
53
+ color: #fff;
54
+ }
55
+ .hlw-btn--outline[data-v-19a9c118] {
56
+ background: transparent;
57
+ color: var(--primary-color);
58
+ border: 2rpx solid var(--primary-color);
59
+ }
60
+ .hlw-btn--text[data-v-19a9c118] {
61
+ background: transparent;
62
+ color: var(--primary-color);
63
+ }
64
+ .hlw-btn--ghost[data-v-19a9c118] {
65
+ background: transparent;
66
+ color: #fff;
67
+ border: 2rpx solid rgba(255, 255, 255, 0.6);
68
+ }
69
+ .hlw-btn--small[data-v-19a9c118] {
70
+ padding: 8rpx 20rpx;
71
+ font-size: var(--font-xs, 20rpx);
72
+ border-radius: var(--radius-sm, 8rpx);
73
+ }
74
+ .hlw-btn--medium[data-v-19a9c118] {
75
+ padding: 16rpx 32rpx;
76
+ font-size: var(--font-sm, 24rpx);
77
+ border-radius: var(--radius-md, 16rpx);
78
+ }
79
+ .hlw-btn--large[data-v-19a9c118] {
80
+ padding: 24rpx 48rpx;
81
+ font-size: var(--font-base, 28rpx);
82
+ border-radius: var(--radius-md, 16rpx);
83
+ }
84
+ .hlw-btn--block[data-v-19a9c118] {
85
+ display: flex;
86
+ width: 100%;
87
+ }
88
+ .hlw-btn--round[data-v-19a9c118] {
89
+ border-radius: 999rpx;
90
+ }
91
+ .hlw-btn--disabled[data-v-19a9c118] {
92
+ opacity: 0.4;
93
+ }
94
+ .hlw-btn--disabled[data-v-19a9c118]:active {
95
+ opacity: 0.4;
96
+ }
97
+ .hlw-btn--loading[data-v-19a9c118] {
98
+ opacity: 0.7;
99
+ }
100
+ .hlw-btn-icon[data-v-19a9c118] {
101
+ font-size: 1.1em;
102
+ }
103
+ .hlw-btn-spinner[data-v-19a9c118] {
104
+ width: 28rpx;
105
+ height: 28rpx;
106
+ border: 3rpx solid currentColor;
107
+ border-top-color: transparent;
108
+ border-radius: 50%;
109
+ animation: hlw-spin-19a9c118 0.6s linear infinite;
110
+ }
111
+ @keyframes hlw-spin-19a9c118 {
112
+ to {
113
+ transform: rotate(360deg);
32
114
  }
33
- .hlw-avatar--large .hlw-avatar__initial[data-v-89dcbc96] { font-size: var(--font-xl, 40rpx);
34
115
  }
35
-
36
116
  .hlw-card[data-v-cf55252e] {
37
117
  width: 100%;
38
118
  background: #fff;
@@ -121,28 +201,103 @@
121
201
  .hlw-card-footer-right[data-v-cf55252e] {
122
202
  flex-shrink: 0;
123
203
  margin-left: 16rpx;
204
+ }.hlw-cell[data-v-996053be] {
205
+ display: flex;
206
+ align-items: center;
207
+ padding: 24rpx 32rpx;
208
+ background: #fff;
209
+ gap: 20rpx;
210
+ }
211
+ .hlw-cell--border[data-v-996053be] {
212
+ border-bottom: 1rpx solid var(--border-color-light, #f1f5f9);
213
+ }
214
+ .hlw-cell--border[data-v-996053be]:last-child {
215
+ border-bottom: none;
216
+ }
217
+ .hlw-cell--hover[data-v-996053be] {
218
+ background: #f8fafc;
219
+ }
220
+ .hlw-cell-icon[data-v-996053be] {
221
+ font-size: var(--font-lg, 36rpx);
222
+ color: var(--primary-color, #3b82f6);
223
+ flex-shrink: 0;
224
+ }
225
+ .hlw-cell-body[data-v-996053be] {
226
+ flex: 1;
227
+ min-width: 0;
228
+ display: flex;
229
+ align-items: center;
230
+ justify-content: space-between;
231
+ }
232
+ .hlw-cell-title[data-v-996053be] {
233
+ font-size: var(--font-base, 28rpx);
234
+ color: #1e293b;
124
235
  }
125
- .hlw-empty[data-v-08b8d8fe] {
236
+ .hlw-cell-label[data-v-996053be] {
237
+ font-size: var(--font-xs, 20rpx);
238
+ color: #94a3b8;
239
+ margin-top: 4rpx;
240
+ }
241
+ .hlw-cell-value[data-v-996053be] {
242
+ font-size: var(--font-sm, 24rpx);
243
+ color: #94a3b8;
244
+ flex-shrink: 0;
245
+ }
246
+ .hlw-cell-arrow[data-v-996053be] {
247
+ width: 16rpx;
248
+ height: 16rpx;
249
+ border-top: 3rpx solid #c0c4cc;
250
+ border-right: 3rpx solid #c0c4cc;
251
+ transform: rotate(45deg);
252
+ flex-shrink: 0;
253
+ }.hlw-divider[data-v-beaa0298] {
254
+ display: flex;
255
+ align-items: center;
256
+ padding: 24rpx 0;
257
+ }
258
+ .hlw-divider-line[data-v-beaa0298] {
259
+ flex: 1;
260
+ height: 1rpx;
261
+ background: var(--border-color, #e2e8f0);
262
+ }
263
+ .hlw-divider--dashed .hlw-divider-line[data-v-beaa0298] {
264
+ background: none;
265
+ border-top: 1rpx dashed var(--border-color, #e2e8f0);
266
+ }
267
+ .hlw-divider-text[data-v-beaa0298] {
268
+ padding: 0 24rpx;
269
+ font-size: var(--font-xs, 20rpx);
270
+ color: #94a3b8;
271
+ white-space: nowrap;
272
+ }
273
+ .hlw-divider--left .hlw-divider-line[data-v-beaa0298]:first-child {
274
+ max-width: 60rpx;
275
+ }
276
+ .hlw-divider--right .hlw-divider-line[data-v-beaa0298]:last-child {
277
+ max-width: 60rpx;
278
+ }
279
+ .hlw-empty[data-v-94fefc47] {
126
280
  display: flex;
127
281
  flex-direction: column;
128
282
  align-items: center;
129
283
  justify-content: center;
130
284
  padding: 80rpx 40rpx;
131
285
  }
132
- .hlw-empty__image[data-v-08b8d8fe] {
286
+ .hlw-empty__image[data-v-94fefc47] {
133
287
  width: 200rpx;
134
288
  height: 200rpx;
135
289
  margin-bottom: 24rpx;
136
290
  }
137
- .hlw-empty__icon[data-v-08b8d8fe] {
291
+ .hlw-empty__icon[data-v-94fefc47] {
138
292
  font-size: 100rpx;
139
293
  margin-bottom: 20rpx;
294
+ color: #cbd5e1;
140
295
  }
141
- .hlw-empty__text[data-v-08b8d8fe] {
296
+ .hlw-empty__text[data-v-94fefc47] {
142
297
  font-size: var(--font-base, 28rpx);
143
298
  color: #bbb;
144
299
  }
145
- .hlw-header[data-v-fa8f2a18] {
300
+ .hlw-header[data-v-b85e90ac] {
146
301
  position: sticky;
147
302
  top: 0;
148
303
  z-index: 999;
@@ -150,18 +305,18 @@
150
305
  flex-direction: column;
151
306
  overflow: hidden;
152
307
  }
153
- .header-bg-layer[data-v-fa8f2a18] {
308
+ .header-bg-layer[data-v-b85e90ac] {
154
309
  position: absolute;
155
310
  inset: 0;
156
311
  z-index: 0;
157
312
  }
158
- .status-bar-spacer[data-v-fa8f2a18] {
313
+ .status-bar-spacer[data-v-b85e90ac] {
159
314
  flex-shrink: 0;
160
315
  width: 100%;
161
316
  position: relative;
162
317
  z-index: 1;
163
318
  }
164
- .header-content-area[data-v-fa8f2a18] {
319
+ .header-content-area[data-v-b85e90ac] {
165
320
  flex-shrink: 0;
166
321
  width: 100%;
167
322
  display: flex;
@@ -169,7 +324,7 @@
169
324
  position: relative;
170
325
  z-index: 1;
171
326
  }
172
- .header-back[data-v-fa8f2a18] {
327
+ .header-back[data-v-b85e90ac] {
173
328
  width: 88rpx;
174
329
  height: 100%;
175
330
  display: flex;
@@ -177,21 +332,21 @@
177
332
  justify-content: center;
178
333
  flex-shrink: 0;
179
334
  }
180
- .header-back-icon[data-v-fa8f2a18] {
335
+ .header-back-icon[data-v-b85e90ac] {
181
336
  font-size: 36rpx;
182
337
  }
183
- .header-title[data-v-fa8f2a18] {
338
+ .header-title[data-v-b85e90ac] {
184
339
  flex: 1;
185
340
  overflow: hidden;
186
341
  }
187
- .header-title--center[data-v-fa8f2a18] {
342
+ .header-title--center[data-v-b85e90ac] {
188
343
  text-align: center;
189
344
  }
190
- .header-title--left[data-v-fa8f2a18] {
345
+ .header-title--left[data-v-b85e90ac] {
191
346
  text-align: left;
192
347
  padding-left: 4rpx;
193
348
  }
194
- .header-title-text[data-v-fa8f2a18] {
349
+ .header-title-text[data-v-b85e90ac] {
195
350
  display: block;
196
351
  overflow: hidden;
197
352
  text-overflow: ellipsis;
@@ -201,30 +356,30 @@
201
356
  font-weight: 500;
202
357
  color: #14181f;
203
358
  }
204
- .header-placeholder[data-v-fa8f2a18] {
359
+ .header-placeholder[data-v-b85e90ac] {
205
360
  width: 88rpx;
206
361
  flex-shrink: 0;
207
362
  }
208
- .hlw-loading[data-v-14242381] {
363
+ .hlw-loading[data-v-fd9272d5] {
209
364
  display: flex;
210
365
  flex-direction: column;
211
366
  align-items: center;
212
367
  justify-content: center;
213
368
  padding: 24rpx;
214
369
  }
215
- .hlw-loading__spinner[data-v-14242381] {
370
+ .hlw-loading__spinner[data-v-fd9272d5] {
216
371
  width: 56rpx;
217
372
  height: 56rpx;
218
373
  border: 6rpx solid #e8e8e8;
219
374
  border-top-color: #07c160;
220
375
  border-radius: 50%;
221
- animation: hlw-spin-14242381 0.8s linear infinite;
376
+ animation: hlw-spin-fd9272d5 0.8s linear infinite;
222
377
  }
223
- @keyframes hlw-spin-14242381 {
378
+ @keyframes hlw-spin-fd9272d5 {
224
379
  to { transform: rotate(360deg);
225
380
  }
226
381
  }
227
- .hlw-loading__text[data-v-14242381] {
382
+ .hlw-loading__text[data-v-fd9272d5] {
228
383
  margin-top: 16rpx;
229
384
  font-size: 26rpx;
230
385
  color: #999;
@@ -439,21 +594,413 @@ from {
439
594
  to {
440
595
  transform: rotate(360deg);
441
596
  }
442
- }.hlw-page[data-v-d8833363] {
597
+ }.hlw-modal-mask[data-v-397b9549] {
598
+ position: fixed;
599
+ inset: 0;
600
+ display: flex;
601
+ align-items: center;
602
+ justify-content: center;
603
+ background: rgba(0, 0, 0, 0.5);
604
+ z-index: 1000;
605
+ animation: hlw-fade-in-397b9549 0.2s;
606
+ }
607
+ .hlw-modal[data-v-397b9549] {
608
+ width: 80%;
609
+ max-width: 600rpx;
610
+ background: #fff;
611
+ border-radius: var(--radius-xl, 32rpx);
612
+ overflow: hidden;
613
+ animation: hlw-scale-in-397b9549 0.25s ease;
614
+ }
615
+ .hlw-modal-title[data-v-397b9549] {
616
+ padding: 40rpx 32rpx 0;
617
+ text-align: center;
618
+ font-size: var(--font-md, 32rpx);
619
+ font-weight: 600;
620
+ color: #1e293b;
621
+ }
622
+ .hlw-modal-body[data-v-397b9549] {
623
+ padding: 32rpx;
624
+ font-size: var(--font-base, 28rpx);
625
+ color: #475569;
626
+ text-align: center;
627
+ line-height: 1.6;
628
+ }
629
+ .hlw-modal-footer[data-v-397b9549] {
630
+ display: flex;
631
+ border-top: 1rpx solid var(--border-color-light, #f1f5f9);
632
+ }
633
+ .hlw-modal-btn[data-v-397b9549] {
634
+ flex: 1;
635
+ padding: 24rpx 0;
636
+ text-align: center;
637
+ font-size: var(--font-base, 28rpx);
638
+ font-weight: 500;
639
+ }
640
+ .hlw-modal-btn[data-v-397b9549]:active {
641
+ background: #f8fafc;
642
+ }
643
+ .hlw-modal-btn--cancel[data-v-397b9549] {
644
+ color: #64748b;
645
+ border-right: 1rpx solid var(--border-color-light, #f1f5f9);
646
+ }
647
+ .hlw-modal-btn--confirm[data-v-397b9549] {
648
+ color: var(--primary-color, #3b82f6);
649
+ }
650
+ @keyframes hlw-fade-in-397b9549 {
651
+ from {
652
+ opacity: 0;
653
+ }
654
+ to {
655
+ opacity: 1;
656
+ }
657
+ }
658
+ @keyframes hlw-scale-in-397b9549 {
659
+ from {
660
+ transform: scale(0.9);
661
+ opacity: 0;
662
+ }
663
+ to {
664
+ transform: scale(1);
665
+ opacity: 1;
666
+ }
667
+ }.hlw-notice[data-v-7a758299] {
668
+ display: flex;
669
+ align-items: center;
670
+ padding: 16rpx 24rpx;
671
+ gap: 12rpx;
672
+ font-size: var(--font-sm, 24rpx);
673
+ }
674
+ .hlw-notice-left-icon[data-v-7a758299] {
675
+ flex-shrink: 0;
676
+ font-size: var(--font-base, 28rpx);
677
+ }
678
+ .hlw-notice-wrap[data-v-7a758299] {
679
+ flex: 1;
680
+ overflow: hidden;
681
+ white-space: nowrap;
682
+ }
683
+ .hlw-notice-scroll[data-v-7a758299] {
684
+ display: inline-block;
685
+ white-space: nowrap;
686
+ animation: hlw-notice-scroll-7a758299 linear infinite;
687
+ padding-left: 100%;
688
+ }
689
+ .hlw-notice-text[data-v-7a758299] {
690
+ display: inline;
691
+ }
692
+ .hlw-notice-text--ellipsis[data-v-7a758299] {
693
+ display: block;
694
+ overflow: hidden;
695
+ text-overflow: ellipsis;
696
+ white-space: nowrap;
697
+ }
698
+ .hlw-notice-close[data-v-7a758299] {
699
+ flex-shrink: 0;
700
+ font-size: 28rpx;
701
+ line-height: 1;
702
+ opacity: 0.6;
703
+ padding: 4rpx;
704
+ }
705
+ @keyframes hlw-notice-scroll-7a758299 {
706
+ 0% {
707
+ transform: translateX(0);
708
+ }
709
+ 100% {
710
+ transform: translateX(-100%);
711
+ }
712
+ }.hlw-page[data-v-0cf37585] {
443
713
  width: 100%;
444
714
  height: 100vh;
445
715
  display: flex;
446
716
  flex-direction: column;
447
717
  overflow: hidden;
448
718
  }
449
- .hlw-page-header[data-v-d8833363] {
719
+ .hlw-page-header[data-v-0cf37585] {
450
720
  flex-shrink: 0;
451
721
  }
452
- .hlw-page-content[data-v-d8833363] {
722
+ .hlw-page-content[data-v-0cf37585] {
453
723
  flex: 1;
454
724
  height: 0;
455
725
  width: 100%;
456
726
  }
457
- .hlw-page-footer[data-v-d8833363] {
727
+ .hlw-page-footer[data-v-0cf37585] {
458
728
  flex-shrink: 0;
729
+ }.hlw-popup-mask[data-v-2d71ef9b] {
730
+ position: fixed;
731
+ inset: 0;
732
+ background: rgba(0, 0, 0, 0.5);
733
+ z-index: 1000;
734
+ animation: hlw-fade-in-2d71ef9b 0.25s;
735
+ }
736
+ .hlw-popup[data-v-2d71ef9b] {
737
+ position: fixed;
738
+ z-index: 1001;
739
+ background: #fff;
740
+ transition: transform 0.3s ease, opacity 0.3s ease;
741
+ }
742
+ .hlw-popup--bottom[data-v-2d71ef9b] {
743
+ left: 0;
744
+ right: 0;
745
+ bottom: 0;
746
+ max-height: 80vh;
747
+ transform: translateY(100%);
748
+ }
749
+ .hlw-popup--bottom.hlw-popup--show[data-v-2d71ef9b] {
750
+ transform: translateY(0);
751
+ }
752
+ .hlw-popup--bottom.hlw-popup--round[data-v-2d71ef9b] {
753
+ border-radius: var(--radius-xl, 32rpx) var(--radius-xl, 32rpx) 0 0;
754
+ }
755
+ .hlw-popup--top[data-v-2d71ef9b] {
756
+ left: 0;
757
+ right: 0;
758
+ top: 0;
759
+ max-height: 80vh;
760
+ transform: translateY(-100%);
761
+ }
762
+ .hlw-popup--top.hlw-popup--show[data-v-2d71ef9b] {
763
+ transform: translateY(0);
764
+ }
765
+ .hlw-popup--top.hlw-popup--round[data-v-2d71ef9b] {
766
+ border-radius: 0 0 var(--radius-xl, 32rpx) var(--radius-xl, 32rpx);
767
+ }
768
+ .hlw-popup--center[data-v-2d71ef9b] {
769
+ left: 50%;
770
+ top: 50%;
771
+ width: 80%;
772
+ transform: translate(-50%, -50%) scale(0.9);
773
+ opacity: 0;
774
+ border-radius: var(--radius-xl, 32rpx);
775
+ }
776
+ .hlw-popup--center.hlw-popup--show[data-v-2d71ef9b] {
777
+ transform: translate(-50%, -50%) scale(1);
778
+ opacity: 1;
779
+ }
780
+ .hlw-popup-header[data-v-2d71ef9b] {
781
+ display: flex;
782
+ align-items: center;
783
+ justify-content: space-between;
784
+ padding: 28rpx 32rpx;
785
+ border-bottom: 1rpx solid var(--border-color-light, #f1f5f9);
786
+ }
787
+ .hlw-popup-title[data-v-2d71ef9b] {
788
+ font-size: var(--font-md, 32rpx);
789
+ font-weight: 600;
790
+ color: #1e293b;
791
+ }
792
+ .hlw-popup-close[data-v-2d71ef9b] {
793
+ font-size: 32rpx;
794
+ color: #94a3b8;
795
+ line-height: 1;
796
+ padding: 4rpx;
797
+ }
798
+ @keyframes hlw-fade-in-2d71ef9b {
799
+ from {
800
+ opacity: 0;
801
+ }
802
+ to {
803
+ opacity: 1;
804
+ }
805
+ }.hlw-search[data-v-4fe1bfab] {
806
+ padding: 16rpx 24rpx;
807
+ }
808
+ .hlw-search-box[data-v-4fe1bfab] {
809
+ display: flex;
810
+ align-items: center;
811
+ gap: 12rpx;
812
+ padding: 12rpx 24rpx;
813
+ background: #f1f5f9;
814
+ border-radius: var(--radius-md, 16rpx);
815
+ }
816
+ .hlw-search-box--round[data-v-4fe1bfab] {
817
+ border-radius: 999rpx;
818
+ }
819
+ .hlw-search-icon[data-v-4fe1bfab] {
820
+ font-size: var(--font-sm, 24rpx);
821
+ flex-shrink: 0;
822
+ opacity: 0.5;
823
+ }
824
+ .hlw-search-input[data-v-4fe1bfab] {
825
+ flex: 1;
826
+ font-size: var(--font-sm, 24rpx);
827
+ color: #1e293b;
828
+ min-height: 40rpx;
829
+ }
830
+ .hlw-search-clear[data-v-4fe1bfab] {
831
+ font-size: 28rpx;
832
+ color: #94a3b8;
833
+ line-height: 1;
834
+ flex-shrink: 0;
835
+ padding: 4rpx;
836
+ }.hlw-skeleton[data-v-bc3155a2] {
837
+ display: flex;
838
+ gap: 24rpx;
839
+ padding: 24rpx;
840
+ }
841
+ .hlw-skeleton-avatar[data-v-bc3155a2] {
842
+ flex-shrink: 0;
843
+ border-radius: 50%;
844
+ background: #e2e8f0;
845
+ }
846
+ .hlw-skeleton-avatar--small[data-v-bc3155a2] {
847
+ width: 56rpx;
848
+ height: 56rpx;
849
+ }
850
+ .hlw-skeleton-avatar--medium[data-v-bc3155a2] {
851
+ width: 80rpx;
852
+ height: 80rpx;
853
+ }
854
+ .hlw-skeleton-avatar--large[data-v-bc3155a2] {
855
+ width: 120rpx;
856
+ height: 120rpx;
857
+ }
858
+ .hlw-skeleton-content[data-v-bc3155a2] {
859
+ flex: 1;
860
+ display: flex;
861
+ flex-direction: column;
862
+ gap: 20rpx;
863
+ }
864
+ .hlw-skeleton-title[data-v-bc3155a2] {
865
+ width: 40%;
866
+ height: 32rpx;
867
+ border-radius: 6rpx;
868
+ background: #e2e8f0;
869
+ }
870
+ .hlw-skeleton-row[data-v-bc3155a2] {
871
+ height: 24rpx;
872
+ border-radius: 6rpx;
873
+ background: #e2e8f0;
874
+ }
875
+ .hlw-skeleton--animate .hlw-skeleton-avatar[data-v-bc3155a2],
876
+ .hlw-skeleton--animate .hlw-skeleton-title[data-v-bc3155a2],
877
+ .hlw-skeleton--animate .hlw-skeleton-row[data-v-bc3155a2] {
878
+ animation: hlw-skeleton-pulse-bc3155a2 1.5s ease-in-out infinite;
879
+ }
880
+ @keyframes hlw-skeleton-pulse-bc3155a2 {
881
+ 0% {
882
+ opacity: 1;
883
+ }
884
+ 50% {
885
+ opacity: 0.4;
886
+ }
887
+ 100% {
888
+ opacity: 1;
889
+ }
890
+ }.hlw-tabs[data-v-5a47c034] {
891
+ background: #fff;
892
+ white-space: nowrap;
893
+ }
894
+ .hlw-tabs-wrap[data-v-5a47c034] {
895
+ display: inline-flex;
896
+ min-width: 100%;
897
+ }
898
+ .hlw-tab[data-v-5a47c034] {
899
+ position: relative;
900
+ flex: 1;
901
+ display: flex;
902
+ align-items: center;
903
+ justify-content: center;
904
+ padding: 24rpx 28rpx;
905
+ gap: 6rpx;
906
+ transition: color 0.2s;
907
+ }
908
+ .hlw-tab--active .hlw-tab-text[data-v-5a47c034] {
909
+ color: var(--primary-color, #3b82f6);
910
+ font-weight: 600;
911
+ }
912
+ .hlw-tab-text[data-v-5a47c034] {
913
+ font-size: var(--font-base, 28rpx);
914
+ color: #64748b;
915
+ }
916
+ .hlw-tab-badge[data-v-5a47c034] {
917
+ padding: 0 8rpx;
918
+ min-width: 28rpx;
919
+ height: 28rpx;
920
+ line-height: 28rpx;
921
+ font-size: 18rpx;
922
+ text-align: center;
923
+ color: #fff;
924
+ background: #ef4444;
925
+ border-radius: 999rpx;
926
+ }
927
+ .hlw-tab-line[data-v-5a47c034] {
928
+ position: absolute;
929
+ bottom: 4rpx;
930
+ left: 50%;
931
+ transform: translateX(-50%);
932
+ height: 6rpx;
933
+ border-radius: 6rpx;
934
+ background: var(--primary-color, #3b82f6);
935
+ transition: width 0.2s;
936
+ }.hlw-tag[data-v-fd774288] {
937
+ display: inline-flex;
938
+ align-items: center;
939
+ gap: 4rpx;
940
+ font-weight: 500;
941
+ border: 2rpx solid transparent;
942
+ }
943
+ .hlw-tag--medium[data-v-fd774288] {
944
+ padding: 4rpx 16rpx;
945
+ font-size: var(--font-xs, 20rpx);
946
+ border-radius: var(--radius-sm, 8rpx);
947
+ }
948
+ .hlw-tag--small[data-v-fd774288] {
949
+ padding: 2rpx 10rpx;
950
+ font-size: 18rpx;
951
+ border-radius: 6rpx;
952
+ }
953
+ .hlw-tag--round[data-v-fd774288] {
954
+ border-radius: 999rpx;
955
+ }
956
+ .hlw-tag--primary[data-v-fd774288] {
957
+ background: var(--primary-color, #3b82f6);
958
+ color: #fff;
959
+ border-color: var(--primary-color, #3b82f6);
960
+ }
961
+ .hlw-tag--primary.hlw-tag--plain[data-v-fd774288] {
962
+ background: transparent;
963
+ color: var(--primary-color, #3b82f6);
964
+ }
965
+ .hlw-tag--success[data-v-fd774288] {
966
+ background: #10b981;
967
+ color: #fff;
968
+ border-color: #10b981;
969
+ }
970
+ .hlw-tag--success.hlw-tag--plain[data-v-fd774288] {
971
+ background: transparent;
972
+ color: #10b981;
973
+ }
974
+ .hlw-tag--warning[data-v-fd774288] {
975
+ background: #f59e0b;
976
+ color: #fff;
977
+ border-color: #f59e0b;
978
+ }
979
+ .hlw-tag--warning.hlw-tag--plain[data-v-fd774288] {
980
+ background: transparent;
981
+ color: #f59e0b;
982
+ }
983
+ .hlw-tag--danger[data-v-fd774288] {
984
+ background: #ef4444;
985
+ color: #fff;
986
+ border-color: #ef4444;
987
+ }
988
+ .hlw-tag--danger.hlw-tag--plain[data-v-fd774288] {
989
+ background: transparent;
990
+ color: #ef4444;
991
+ }
992
+ .hlw-tag--info[data-v-fd774288] {
993
+ background: #64748b;
994
+ color: #fff;
995
+ border-color: #64748b;
996
+ }
997
+ .hlw-tag--info.hlw-tag--plain[data-v-fd774288] {
998
+ background: transparent;
999
+ color: #64748b;
1000
+ }
1001
+ .hlw-tag-close[data-v-fd774288] {
1002
+ font-size: 1em;
1003
+ line-height: 1;
1004
+ margin-left: 2rpx;
1005
+ opacity: 0.8;
459
1006
  }