cfel-base-components 2.5.61 → 2.5.63

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.
@@ -0,0 +1,889 @@
1
+ $menuPrefixCls: rc-menu;
2
+
3
+ ul {
4
+ list-style: none;
5
+ padding: 0;
6
+ margin: 0;
7
+ }
8
+
9
+ .ant-layout {
10
+ background: linear-gradient(223deg, #fef8ff 0%, #ecf3fe 29%, #f9faff 100%);
11
+ box-shadow: inset 0px -1px 0px 0px #edeefd;
12
+ }
13
+
14
+ .ant-popover-inner {
15
+ padding: 8px !important;
16
+ }
17
+
18
+ .menu-popover {
19
+ width: 168px;
20
+ font-weight: 400;
21
+ font-size: 14px;
22
+ color: #04073b;
23
+ text-align: left;
24
+ font-style: normal;
25
+ cursor: pointer;
26
+
27
+ .sub-list {
28
+ width: 100%;
29
+ display: flex;
30
+ justify-content: space-between;
31
+ }
32
+
33
+ .sub-li {
34
+ width: 152px;
35
+ height: 24px;
36
+ overflow: hidden;
37
+ text-overflow: ellipsis;
38
+ font-weight: 400;
39
+ font-size: 14px;
40
+ padding: 6px 8px;
41
+
42
+ &:hover {
43
+ color: #185dfe;
44
+ }
45
+
46
+ &:not(:first-child) {
47
+ margin-top: 4px;
48
+ }
49
+ }
50
+
51
+ .grand-li {
52
+ width: 130px;
53
+ height: 24px;
54
+ overflow: hidden;
55
+ text-overflow: ellipsis;
56
+ font-weight: 400;
57
+ font-size: 14px;
58
+ padding: 6px 8px;
59
+
60
+ &:hover {
61
+ color: #185dfe;
62
+ }
63
+
64
+ &:not(:first-child) {
65
+ margin-top: 4px;
66
+ }
67
+ }
68
+
69
+ .sub-item-selected {
70
+ font-weight: 500;
71
+ color: #3d76ec;
72
+ background: rgba(61, 118, 236, 0.1);
73
+ border-radius: 4px;
74
+ }
75
+ }
76
+
77
+ .layout-menu {
78
+ border-radius: 16px;
79
+ height: calc(100% - 109px);
80
+ overflow-y: scroll;
81
+ position: relative;
82
+ z-index: 11;
83
+
84
+ .menu {
85
+ padding: 0;
86
+ margin: 0;
87
+ list-style: none;
88
+ cursor: pointer;
89
+
90
+ .#{$menuPrefixCls}-submenu-arrow {
91
+ display: inline-block;
92
+ position: absolute;
93
+ top: 52%;
94
+ right: 16px;
95
+ width: 16px;
96
+ height: 16px;
97
+ transform: translateY(0);
98
+ transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
99
+
100
+ // 当菜单收起时隐藏箭头
101
+ .ant-layout-sider-collapsed & {
102
+ display: none;
103
+ }
104
+
105
+ &::before,
106
+ &::after {
107
+ position: absolute;
108
+ width: 6px;
109
+ height: 1px;
110
+ scale: 1.25;
111
+ background: #788bb1;
112
+ border-radius: 2px;
113
+ transition:
114
+ background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
115
+ transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
116
+ content: '';
117
+ }
118
+
119
+ &::before {
120
+ transform: rotate(-45deg) translateX(2.5px);
121
+ }
122
+
123
+ &::after {
124
+ transform: rotate(45deg) translateX(-2.5px);
125
+ }
126
+
127
+ // RTL support
128
+ &.#{$menuPrefixCls}-rtl,
129
+ .#{$menuPrefixCls}-submenu-rtl & {
130
+ right: auto;
131
+ left: 16px;
132
+ }
133
+ }
134
+
135
+ .#{$menuPrefixCls}-submenu-open > .#{$menuPrefixCls}-submenu-title {
136
+ .#{$menuPrefixCls}-submenu-arrow {
137
+ transform: translateY(-3px);
138
+ &::before {
139
+ transform: rotate(45deg) translateX(2.5px);
140
+ }
141
+ &::after {
142
+ transform: rotate(-45deg) translateX(-2.5px);
143
+ }
144
+ }
145
+ }
146
+
147
+ .#{$menuPrefixCls}-submenu-selected {
148
+ > .#{$menuPrefixCls}-submenu-title {
149
+ .#{$menuPrefixCls}-submenu-arrow {
150
+ &::before,
151
+ &::after {
152
+ background-color: #409A74;
153
+ }
154
+ }
155
+ }
156
+ }
157
+
158
+ > li {
159
+ .first-li {
160
+ &:hover {
161
+ .menu-item-icon {
162
+ color: #409A74;
163
+ font-weight: 500;
164
+ }
165
+
166
+ .menu-item-label {
167
+ color: #409A74;
168
+ font-weight: 500;
169
+ }
170
+ }
171
+ }
172
+
173
+ &:hover {
174
+ > .menu-item-content {
175
+ .menu-item-icon,
176
+ .menu-item-label {
177
+ color: #409A74;
178
+ font-weight: 500;
179
+ }
180
+ }
181
+ }
182
+ }
183
+
184
+ .rc-menu-submenu {
185
+ &:hover {
186
+ > .rc-menu-submenu-title {
187
+ .menu-item-icon,
188
+ .menu-item-label {
189
+ color: #409A74;
190
+ font-weight: 500;
191
+ }
192
+
193
+ .#{$menuPrefixCls}-submenu-arrow {
194
+ &::before,
195
+ &::after {
196
+ background: #409A74;
197
+ }
198
+ }
199
+ }
200
+ }
201
+ }
202
+
203
+ .rc-menu-submenu-title {
204
+ position: relative;
205
+ }
206
+
207
+ .rc-menu-submenu {
208
+ position: relative;
209
+ }
210
+
211
+ .menu-item-content {
212
+ font-weight: 400;
213
+ font-size: 14px;
214
+ line-height: 50px;
215
+ text-align: left;
216
+ }
217
+
218
+ .sub-menu-item-label {
219
+ padding-left: 11px;
220
+ display: flex;
221
+ }
222
+
223
+ .menu-item-icon {
224
+ display: inline-block;
225
+ height: 22px;
226
+ width: 22px;
227
+ }
228
+
229
+ .menu-item-label {
230
+ display: inline-block;
231
+ padding-left: 12px;
232
+ border: 1px solid transparent;
233
+ color: black;
234
+ }
235
+
236
+ .submenu-selected {
237
+ color: #409A74 !important;
238
+ font-weight: 500;
239
+ }
240
+
241
+ .sub-li {
242
+ position: relative;
243
+ z-index: 9;
244
+
245
+ .menu-item-content {
246
+ width: 100%;
247
+ padding-right: 24px;
248
+
249
+ .menu-item-label {
250
+ width: 100%;
251
+ display: inline-flex;
252
+ align-items: center;
253
+ justify-content: space-between;
254
+ }
255
+ }
256
+
257
+ &:hover {
258
+ > .menu-item-content {
259
+ .menu-item-icon,
260
+ .menu-item-label {
261
+ color: #409A74;
262
+ font-weight: 500;
263
+ }
264
+ }
265
+ }
266
+
267
+ &::before {
268
+ content: '';
269
+ position: absolute;
270
+ left: 31px;
271
+ top: 24px;
272
+ transform: translateY(-50%);
273
+ width: 5px;
274
+ height: 5px;
275
+ background: #b4c4dc;
276
+ border-radius: 100%;
277
+ z-index: 1;
278
+ }
279
+
280
+ &::after {
281
+ content: '';
282
+ position: absolute;
283
+ left: 32.9px;
284
+ top: 0 !important;
285
+ width: 1px;
286
+ height: 100%;
287
+ background: #b4c4dc;
288
+ z-index: 0;
289
+ }
290
+
291
+ &:only-child::after {
292
+ display: none;
293
+ }
294
+
295
+ &:last-child::after {
296
+ height: 50%;
297
+ }
298
+
299
+ &:first-child::after {
300
+ top: 24px !important;
301
+ }
302
+
303
+ &.rc-menu-submenu-selected {
304
+ &::before {
305
+ background: #409A74;
306
+ }
307
+ }
308
+
309
+ &.rc-menu-item-selected {
310
+ &::before {
311
+ background: #409A74;
312
+ }
313
+ }
314
+
315
+ &:not(.rc-menu-submenu) {
316
+ height: 52px;
317
+ display: flex;
318
+ align-items: center;
319
+ box-shadow: 0px 0px 30px 0px transparent;
320
+
321
+ &.rc-menu-item-selected {
322
+ .menu-item-content {
323
+ width: 100%;
324
+ padding-right: 24px;
325
+ }
326
+ .menu-item-label {
327
+ display: flex;
328
+ align-items: center;
329
+ padding-left: 12px;
330
+ width: 100%;
331
+ height: 40px;
332
+ background: #c5d6ff;
333
+ border-radius: 10px;
334
+ backdrop-filter: blur(10px);
335
+ transition: all 0.3s ease-in-out;
336
+ }
337
+ }
338
+ }
339
+ }
340
+
341
+ .grand-li {
342
+ background: rgba(255,255,255,0.40);
343
+ position: relative;
344
+ z-index: 9;
345
+ display: flex;
346
+ align-items: center;
347
+ margin-left: 2px;
348
+
349
+ .menu-item-content {
350
+ width: 100%;
351
+ padding-right: 24px;
352
+ height: 52px;
353
+ display: flex;
354
+ align-items: center;
355
+
356
+ .menu-item-label {
357
+ width: 100%;
358
+ display: inline-flex;
359
+ align-items: center;
360
+ justify-content: space-between;
361
+ }
362
+ }
363
+
364
+ &:hover {
365
+ > .menu-item-content {
366
+ .menu-item-icon,
367
+ .menu-item-label {
368
+ color: #409A74;
369
+ font-weight: 500;
370
+ }
371
+ }
372
+ }
373
+
374
+ &:last-child {
375
+ box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.05);
376
+ }
377
+
378
+ &::before {
379
+ content: '';
380
+ position: absolute;
381
+ left: 49px;
382
+ top: 50%;
383
+ width: 5px;
384
+ height: 5px;
385
+ background: #b4c4dc;
386
+ border-radius: 100%;
387
+ transform: translateY(-50%);
388
+ z-index: 1;
389
+ }
390
+
391
+ &::after {
392
+ content: '';
393
+ position: absolute;
394
+ left: 51px;
395
+ top: 0;
396
+ width: 1px;
397
+ height: 100%;
398
+ background: #b4c4dc;
399
+ z-index: 0;
400
+ }
401
+
402
+ &:only-child::after {
403
+ display: none;
404
+ }
405
+
406
+ &:last-child::after {
407
+ height: 50%;
408
+ }
409
+
410
+ &:first-child::after {
411
+ top: 50% !important;
412
+ }
413
+
414
+ &.rc-menu-item-selected {
415
+ &::before {
416
+ background: #409A74;
417
+ }
418
+ }
419
+
420
+ &.rc-menu-item-selected {
421
+ .menu-item-label {
422
+ padding-left: 12px;
423
+ width: 100%;
424
+ height: 40px;
425
+ background: #c5d6ff;
426
+ border-radius: 10px;
427
+ backdrop-filter: blur(10px);
428
+ transition: all 0.3s ease-in-out;
429
+ }
430
+
431
+ &::before {
432
+ background: #409A74;
433
+ }
434
+ }
435
+ }
436
+ }
437
+
438
+ .menu-collapsed {
439
+ display: flex;
440
+ flex-direction: column;
441
+ align-items: center;
442
+ list-style: none;
443
+ cursor: pointer;
444
+
445
+ .menu-item-icon {
446
+ display: inline-block;
447
+ height: 22px;
448
+ color: #04073b;
449
+
450
+ &:hover {
451
+ color: #409A74;
452
+ font-weight: 500;
453
+ }
454
+ }
455
+
456
+ .submenu-selected {
457
+ color: #409A74;
458
+ font-weight: 500;
459
+ }
460
+
461
+ .menu-item-content {
462
+ font-weight: 400;
463
+ font-size: 14px;
464
+ margin-top: 30px;
465
+ line-height: 24px;
466
+ text-align: left;
467
+ }
468
+ }
469
+
470
+ .cpc-icon {
471
+ display: inline-block;
472
+ height: 22px;
473
+ width: 22px;
474
+ }
475
+ }
476
+
477
+ $header-height: 62px;
478
+ $base-color: #c6538c;
479
+
480
+ body {
481
+ overflow: hidden;
482
+ }
483
+
484
+ .layout-warps {
485
+ display: flex;
486
+ padding: 12px;
487
+ background-color: #f3f6fd;
488
+
489
+ ::-webkit-scrollbar {
490
+ display: none;
491
+ }
492
+
493
+ .trigger {
494
+ margin-right: 16px;
495
+ width: 30px;
496
+ height: 30px;
497
+ background: #f0f4fe;
498
+ box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
499
+ border-radius: 4px;
500
+ border: 1px solid rgba(255, 255, 255, 0.55);
501
+ backdrop-filter: blur(10px);
502
+ display: flex;
503
+ justify-content: center;
504
+ align-items: center;
505
+ }
506
+
507
+ .close-trigger {
508
+ position: relative;
509
+ z-index: 10;
510
+ margin-top: 24px;
511
+ width: 30px;
512
+ height: 30px;
513
+ background: #f0f4fe;
514
+ box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
515
+ border-radius: 4px;
516
+ border: 1px solid rgba(255, 255, 255, 0.55);
517
+ backdrop-filter: blur(10px);
518
+ display: flex;
519
+ justify-content: center;
520
+ align-items: center;
521
+ cursor: pointer;
522
+ }
523
+
524
+ .search {
525
+ height: 40px;
526
+ box-shadow:
527
+ inset 0px 2px 1px 0px rgba(0, 0, 0, 0.05),
528
+ inset 0px -2px 0px 0px rgba(255, 255, 255, 0.3);
529
+ border-radius: 10px;
530
+ backdrop-filter: blur(10px);
531
+ position: relative;
532
+ z-index: 11;
533
+
534
+ .search-bg-mask {
535
+ position: absolute;
536
+ top: 0;
537
+ right: 0;
538
+ width: 93px;
539
+ height: 38px;
540
+
541
+ img {
542
+ width: 93px;
543
+ height: 37px;
544
+ }
545
+ }
546
+
547
+ .search-input {
548
+ width: 100%;
549
+ height: 100%;
550
+ background: transparent;
551
+ border: none;
552
+ outline: none;
553
+ padding-left: 45px;
554
+ line-height: 32px;
555
+ font-size: 14px;
556
+ color: #7d8295;
557
+
558
+ &:hover {
559
+ background: rgba(0, 0, 0, 0.05);
560
+ }
561
+
562
+ border-radius: 10px;
563
+ backdrop-filter: blur(10px);
564
+
565
+ &::placeholder {
566
+ color: #817f9b;
567
+ }
568
+ }
569
+
570
+ .search-icon {
571
+ position: absolute;
572
+ left: 12px;
573
+ top: 11px;
574
+ }
575
+
576
+ .search-command {
577
+ position: absolute;
578
+ right: 4px;
579
+ top: 4px;
580
+ width: 40px;
581
+ height: 30px;
582
+ background: #f0f4fe;
583
+ border-radius: 8px;
584
+ border: 1px solid #eceefc;
585
+ backdrop-filter: blur(10px);
586
+ display: flex;
587
+ justify-content: center;
588
+ align-items: center;
589
+ font-size: 14px;
590
+ color: #4f4b81;
591
+ line-height: 17px;
592
+ }
593
+ }
594
+
595
+ .search-mobile-console {
596
+ width: 40px;
597
+ height: 40px;
598
+ box-shadow:
599
+ inset 0px 2px 1px 0px rgba(0, 0, 0, 0.05),
600
+ inset 0px -2px 0px 0px rgba(255, 255, 255, 0.3);
601
+ border-radius: 10px;
602
+ backdrop-filter: blur(10px);
603
+ padding-top: 11px;
604
+ padding-left: 12px;
605
+ cursor: pointer;
606
+ }
607
+ }
608
+
609
+ .layout-side-mask1 {
610
+ background: white;
611
+ position: absolute;
612
+ top: 0;
613
+ left: 0;
614
+ width: 100%;
615
+ height: 100%;
616
+ border-radius: 16px;
617
+ z-index: 9;
618
+ }
619
+
620
+ .layout-side-mask2 {
621
+ background: linear-gradient( 227deg, #F0FBF3 0%, #E5F6FA 100%);
622
+ opacity: 0.3;
623
+ position: absolute;
624
+ top: 0;
625
+ left: 0;
626
+ width: 100%;
627
+ height: 100%;
628
+ border-radius: 16px;
629
+ z-index: 10;
630
+ }
631
+
632
+ .layout-side {
633
+ background: transparent !important;
634
+ position: relative;
635
+ height: calc(100vh - 24px);
636
+ user-select: none;
637
+ border: 2px solid white;
638
+ border-radius: 16px;
639
+ padding-top: 24px;
640
+ overflow: visible;
641
+
642
+ .header-logo {
643
+ padding-left: 16px;
644
+ display: flex;
645
+ justify-content: space-between;
646
+ cursor: pointer;
647
+ height: 30px;
648
+ position: relative;
649
+ z-index: 11;
650
+
651
+ .logo-sub {
652
+ width: 31px;
653
+ height: 30px;
654
+ }
655
+
656
+ .logo-base {
657
+ height: 30px;
658
+ width: 105px;
659
+ }
660
+ }
661
+ }
662
+
663
+ .layout-header {
664
+ z-index: 1;
665
+ height: $header-height;
666
+ background: linear-gradient(223deg, #faf8ff 0%, #ecf2fe 29%, #ffffff 100%);
667
+ border-radius: 16px;
668
+ border: 1px solid #ffffff;
669
+ position: relative;
670
+ display: flex;
671
+ justify-content: flex-start;
672
+ align-items: center;
673
+
674
+ .app-name {
675
+ margin-left: 24px;
676
+ font-weight: 500;
677
+ color: rgba(0, 0, 0, 0.65);
678
+ }
679
+
680
+ .layout-header-fill {
681
+ flex: 1;
682
+ }
683
+
684
+ .layout-header-actions {
685
+ display: flex;
686
+ justify-content: flex-start;
687
+ align-items: center;
688
+ height: 100%;
689
+ max-width: 400px;
690
+ z-index: 2;
691
+
692
+ .actions-item {
693
+ line-height: 22px;
694
+ font-size: 14px;
695
+ height: 36px;
696
+ border-radius: 6px;
697
+ transition: all 0.3s;
698
+ cursor: pointer;
699
+ margin: 0 4px;
700
+ padding: 0 4px;
701
+
702
+ display: flex;
703
+ justify-content: center;
704
+ align-items: center;
705
+
706
+ &:hover {
707
+ background: rgba(0, 0, 0, 0.06);
708
+ }
709
+ }
710
+ }
711
+
712
+ .layout-header-user {
713
+ height: 48px;
714
+ display: flex;
715
+ font-size: 14px;
716
+ justify-content: flex-start;
717
+ align-items: center;
718
+ z-index: 2;
719
+ transition: all 0.3s;
720
+ padding: 4px 12px;
721
+ margin: 0 12px;
722
+ border-radius: 6px;
723
+ cursor: pointer;
724
+
725
+ &:hover {
726
+ background: rgba(0, 0, 0, 0.06);
727
+ }
728
+
729
+ .avatar {
730
+ width: 40px;
731
+ height: 40px;
732
+ border-radius: 50%;
733
+ margin-right: 12px;
734
+ }
735
+ }
736
+ }
737
+
738
+ .layout-main {
739
+ flex: 1;
740
+ height: 100%;
741
+ padding-left: 12px;
742
+ overflow: auto;
743
+ }
744
+
745
+ .layout-content {
746
+ width: 100%;
747
+ height: calc(100vh - #{$header-height} - 12px - 24px);
748
+ overflow: auto;
749
+ margin-top: 12px;
750
+ border-radius: 16px;
751
+ }
752
+
753
+ .rc-menu-collapse {
754
+ overflow: hidden;
755
+ transition: height 0.3s ease-out;
756
+ }
757
+
758
+ .rc-menu-hidden {
759
+ height: 0;
760
+ overflow: hidden;
761
+ }
762
+
763
+ .lists {
764
+ position: absolute;
765
+ z-index: 1000;
766
+ width: 88%;
767
+ background: linear-gradient(223deg, #fef8ff 0%, #ecf3fe 29%, #f9faff 100%);
768
+ box-shadow: inset 0px -1px 0px 0px #edeefd;
769
+ color: black;
770
+ border-radius: 16px;
771
+ box-shadow:
772
+ 0 8px 20px rgba(0, 0, 0, 0.1),
773
+ inset 0 1px 0 rgba(255, 255, 255, 0.1);
774
+ backdrop-filter: blur(10px);
775
+ padding: 16px;
776
+ border: 1px solid rgba(255, 255, 255, 0.08);
777
+ animation: dropDown 0.2s ease-out;
778
+
779
+ .ant-list-header {
780
+ padding: 0 0 12px;
781
+ font-weight: 500;
782
+ font-size: 14px;
783
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
784
+ display: flex;
785
+ align-items: center;
786
+ justify-content: space-between;
787
+ }
788
+
789
+ .ant-list-item {
790
+ color: black;
791
+ cursor: pointer;
792
+ padding: 10px 12px;
793
+ margin: 4px 0;
794
+ border-radius: 8px;
795
+ transition: all 0.2s ease;
796
+ display: flex;
797
+ align-items: center;
798
+ gap: 12px;
799
+ font-size: 14px;
800
+
801
+ &:hover {
802
+ background: rgba(0, 0, 0, 0.08);
803
+ transform: translateX(2px);
804
+ }
805
+
806
+ .search-item-icon {
807
+ color: rgba(0, 0, 0, 0.9);
808
+ font-size: 16px;
809
+ }
810
+
811
+ .search-item-content {
812
+ flex: 1;
813
+ }
814
+
815
+ .search-item-title {
816
+ font-size: 14px;
817
+ color: rgba(0, 0, 0, 0.95);
818
+ }
819
+
820
+ .search-item-description {
821
+ font-size: 12px;
822
+ color: rgba(0, 0, 0, 0.6);
823
+ margin-top: 2px;
824
+ }
825
+
826
+ .search-item-shortcut {
827
+ font-size: 12px;
828
+ color: rgba(0, 0, 0, 0.5);
829
+ background: rgba(0, 0, 0, 0.1);
830
+ padding: 2px 6px;
831
+ border-radius: 4px;
832
+ }
833
+ }
834
+ }
835
+
836
+ // 箭头向下样式
837
+ .down {
838
+ transform: rotate(0deg);
839
+ transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
840
+ }
841
+
842
+ // 箭头向上样式
843
+ .up {
844
+ transform: rotate(180deg);
845
+ transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
846
+ }
847
+
848
+ // 箭头切换动画
849
+ .arrow-transition {
850
+ transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
851
+
852
+ &.down-to-up {
853
+ animation: colorRotateUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
854
+ }
855
+
856
+ &.up-to-down {
857
+ animation: colorRotateDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
858
+ }
859
+ }
860
+
861
+ @keyframes colorRotateUp {
862
+ 0% {
863
+ transform: rotate(0deg) scale(1);
864
+ color: currentColor;
865
+ }
866
+ 50% {
867
+ transform: rotate(90deg) scale(1.2);
868
+ color: #1890ff;
869
+ }
870
+ 100% {
871
+ transform: rotate(180deg) scale(1);
872
+ color: currentColor;
873
+ }
874
+ }
875
+
876
+ @keyframes colorRotateDown {
877
+ 0% {
878
+ transform: rotate(180deg) scale(1);
879
+ color: currentColor;
880
+ }
881
+ 50% {
882
+ transform: rotate(90deg) scale(1.2);
883
+ color: #1890ff;
884
+ }
885
+ 100% {
886
+ transform: rotate(0deg) scale(1);
887
+ color: currentColor;
888
+ }
889
+ }