@tntd/monaco-editor 1.1.1 → 1.1.2

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,3676 @@
1
+ .tnt-react-monaco-editor-container {
2
+ background-color: #17233d;
3
+ }
4
+ .tnt-react-monaco-editor-container .line-numbers {
5
+ word-wrap: normal !important;
6
+ font-family: Helvetica, Arial, sans-serif, Microsoft YaHei, Menlo, Monaco, 'Courier New',
7
+ monospace;
8
+ }
9
+ .tnt-codemirror {
10
+ border: none !important;
11
+ }
12
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
13
+ /* stylelint-disable no-duplicate-selectors */
14
+ /* stylelint-disable */
15
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
16
+
17
+ .tntd-cascader-dropdown .tntd-cascader-menu {
18
+ padding: 0;
19
+ }
20
+ .tntd-cascader-dropdown .tntd-cascader-menu .rc-virtual-list {
21
+ width: 140px;
22
+ }
23
+ .tntd-cascader-dropdown .tntd-cascader-menu .rc-virtual-list-full {
24
+ width: auto;
25
+ }
26
+ .tntd-cascader-dropdown .tntd-cascader-menu .tntd-cascader-menu-item {
27
+ display: flex;
28
+ line-height: 22px;
29
+ padding: 5px 12px;
30
+ }
31
+ .tntd-cascader-dropdown
32
+ .tntd-cascader-menu
33
+ .tntd-cascader-menu-item
34
+ .tntd-cascader-menu-item-content {
35
+ flex: 1;
36
+ overflow: hidden;
37
+ white-space: nowrap;
38
+ text-overflow: ellipsis;
39
+ }
40
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
41
+ /* stylelint-disable no-duplicate-selectors */
42
+ /* stylelint-disable */
43
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
44
+
45
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
46
+ /* stylelint-disable no-duplicate-selectors */
47
+ /* stylelint-disable */
48
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
49
+ /* 深色主题变量(通过覆盖变量实现主题切换) */
50
+ /* 核心滚动条混合(建议添加到需要滚动的容器类) */
51
+ /* stylelint-disable at-rule-no-unknown */
52
+ html,
53
+ body {
54
+ width: 100%;
55
+ height: 100%;
56
+ }
57
+ input::-ms-clear,
58
+ input::-ms-reveal {
59
+ display: none;
60
+ }
61
+ *,
62
+ *::before,
63
+ *::after {
64
+ box-sizing: border-box;
65
+ }
66
+ html {
67
+ font-family: sans-serif;
68
+ line-height: 1.15;
69
+ -webkit-text-size-adjust: 100%;
70
+ -ms-text-size-adjust: 100%;
71
+ -ms-overflow-style: scrollbar;
72
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
73
+ }
74
+ @-ms-viewport {
75
+ width: device-width;
76
+ }
77
+ article,
78
+ aside,
79
+ dialog,
80
+ figcaption,
81
+ figure,
82
+ footer,
83
+ header,
84
+ hgroup,
85
+ main,
86
+ nav,
87
+ section {
88
+ display: block;
89
+ }
90
+ body {
91
+ margin: 0;
92
+ color: #17233d;
93
+ font-size: 14px;
94
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
95
+ 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
96
+ 'Segoe UI Emoji', 'Segoe UI Symbol';
97
+ font-variant: tabular-nums;
98
+ line-height: 1.57142857;
99
+ background-color: #fff;
100
+ font-feature-settings: 'tnum';
101
+ }
102
+ [tabindex='-1']:focus {
103
+ outline: none !important;
104
+ }
105
+ hr {
106
+ box-sizing: content-box;
107
+ height: 0;
108
+ overflow: visible;
109
+ }
110
+ h1,
111
+ h2,
112
+ h3,
113
+ h4,
114
+ h5,
115
+ h6 {
116
+ margin-top: 0;
117
+ margin-bottom: 0.5em;
118
+ color: #17233d;
119
+ font-weight: 500;
120
+ }
121
+ p {
122
+ margin-top: 0;
123
+ margin-bottom: 1em;
124
+ }
125
+ abbr[title],
126
+ abbr[data-original-title] {
127
+ text-decoration: underline;
128
+ text-decoration: underline dotted;
129
+ border-bottom: 0;
130
+ cursor: help;
131
+ }
132
+ address {
133
+ margin-bottom: 1em;
134
+ font-style: normal;
135
+ line-height: inherit;
136
+ }
137
+ input[type='text'],
138
+ input[type='password'],
139
+ input[type='number'],
140
+ textarea {
141
+ -webkit-appearance: none;
142
+ }
143
+ ol,
144
+ ul,
145
+ dl {
146
+ margin-top: 0;
147
+ margin-bottom: 1em;
148
+ }
149
+ ol ol,
150
+ ul ul,
151
+ ol ul,
152
+ ul ol {
153
+ margin-bottom: 0;
154
+ }
155
+ dt {
156
+ font-weight: 500;
157
+ }
158
+ dd {
159
+ margin-bottom: 0.5em;
160
+ margin-left: 0;
161
+ }
162
+ blockquote {
163
+ margin: 0 0 1em;
164
+ }
165
+ dfn {
166
+ font-style: italic;
167
+ }
168
+ b,
169
+ strong {
170
+ font-weight: bolder;
171
+ }
172
+ small {
173
+ font-size: 80%;
174
+ }
175
+ sub,
176
+ sup {
177
+ position: relative;
178
+ font-size: 75%;
179
+ line-height: 0;
180
+ vertical-align: baseline;
181
+ }
182
+ sub {
183
+ bottom: -0.25em;
184
+ }
185
+ sup {
186
+ top: -0.5em;
187
+ }
188
+ a {
189
+ color: #126bfb;
190
+ text-decoration: none;
191
+ background-color: transparent;
192
+ outline: none;
193
+ cursor: pointer;
194
+ transition: color 0.3s;
195
+ -webkit-text-decoration-skip: objects;
196
+ }
197
+ a:hover {
198
+ color: #3b8cff;
199
+ }
200
+ a:active {
201
+ color: #044dd4;
202
+ }
203
+ a:active,
204
+ a:hover {
205
+ text-decoration: none;
206
+ outline: 0;
207
+ }
208
+ a[disabled] {
209
+ color: #babdc5;
210
+ cursor: not-allowed;
211
+ pointer-events: none;
212
+ }
213
+ pre,
214
+ code,
215
+ kbd,
216
+ samp {
217
+ font-size: 1em;
218
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
219
+ }
220
+ pre {
221
+ margin-top: 0;
222
+ margin-bottom: 1em;
223
+ overflow: auto;
224
+ }
225
+ figure {
226
+ margin: 0 0 1em;
227
+ }
228
+ img {
229
+ vertical-align: middle;
230
+ border-style: none;
231
+ }
232
+ svg:not(:root) {
233
+ overflow: hidden;
234
+ }
235
+ a,
236
+ area,
237
+ button,
238
+ [role='button'],
239
+ input:not([type='range']),
240
+ label,
241
+ select,
242
+ summary,
243
+ textarea {
244
+ touch-action: manipulation;
245
+ }
246
+ table {
247
+ border-collapse: collapse;
248
+ }
249
+ caption {
250
+ padding-top: 0.75em;
251
+ padding-bottom: 0.3em;
252
+ color: #454f64;
253
+ text-align: left;
254
+ caption-side: bottom;
255
+ }
256
+ th {
257
+ text-align: inherit;
258
+ }
259
+ input,
260
+ button,
261
+ select,
262
+ optgroup,
263
+ textarea {
264
+ margin: 0;
265
+ color: inherit;
266
+ font-size: inherit;
267
+ font-family: inherit;
268
+ line-height: inherit;
269
+ }
270
+ button,
271
+ input {
272
+ overflow: visible;
273
+ }
274
+ button,
275
+ select {
276
+ text-transform: none;
277
+ }
278
+ button,
279
+ html [type='button'],
280
+ [type='reset'],
281
+ [type='submit'] {
282
+ -webkit-appearance: button;
283
+ }
284
+ button::-moz-focus-inner,
285
+ [type='button']::-moz-focus-inner,
286
+ [type='reset']::-moz-focus-inner,
287
+ [type='submit']::-moz-focus-inner {
288
+ padding: 0;
289
+ border-style: none;
290
+ }
291
+ input[type='radio'],
292
+ input[type='checkbox'] {
293
+ box-sizing: border-box;
294
+ padding: 0;
295
+ }
296
+ input[type='date'],
297
+ input[type='time'],
298
+ input[type='datetime-local'],
299
+ input[type='month'] {
300
+ -webkit-appearance: listbox;
301
+ }
302
+ textarea {
303
+ overflow: auto;
304
+ resize: vertical;
305
+ }
306
+ fieldset {
307
+ min-width: 0;
308
+ margin: 0;
309
+ padding: 0;
310
+ border: 0;
311
+ }
312
+ legend {
313
+ display: block;
314
+ width: 100%;
315
+ max-width: 100%;
316
+ margin-bottom: 0.5em;
317
+ padding: 0;
318
+ color: inherit;
319
+ font-size: 1.5em;
320
+ line-height: inherit;
321
+ white-space: normal;
322
+ }
323
+ progress {
324
+ vertical-align: baseline;
325
+ }
326
+ [type='number']::-webkit-inner-spin-button,
327
+ [type='number']::-webkit-outer-spin-button {
328
+ height: auto;
329
+ }
330
+ [type='search'] {
331
+ outline-offset: -2px;
332
+ -webkit-appearance: none;
333
+ }
334
+ [type='search']::-webkit-search-cancel-button,
335
+ [type='search']::-webkit-search-decoration {
336
+ -webkit-appearance: none;
337
+ }
338
+ ::-webkit-file-upload-button {
339
+ font: inherit;
340
+ -webkit-appearance: button;
341
+ }
342
+ output {
343
+ display: inline-block;
344
+ }
345
+ summary {
346
+ display: list-item;
347
+ }
348
+ template {
349
+ display: none;
350
+ }
351
+ [hidden] {
352
+ display: none !important;
353
+ }
354
+ mark {
355
+ padding: 0.2em;
356
+ background-color: #feffe6;
357
+ }
358
+ ::selection {
359
+ color: #fff;
360
+ background: #126bfb;
361
+ }
362
+ .clearfix {
363
+ zoom: 1;
364
+ }
365
+ .clearfix::before,
366
+ .clearfix::after {
367
+ display: table;
368
+ content: '';
369
+ }
370
+ .clearfix::after {
371
+ clear: both;
372
+ }
373
+ .anticon {
374
+ display: inline-block;
375
+ color: inherit;
376
+ font-style: normal;
377
+ line-height: 0;
378
+ text-align: center;
379
+ text-transform: none;
380
+ vertical-align: -0.125em;
381
+ text-rendering: optimizeLegibility;
382
+ -webkit-font-smoothing: antialiased;
383
+ -moz-osx-font-smoothing: grayscale;
384
+ }
385
+ .anticon > * {
386
+ line-height: 1;
387
+ }
388
+ .anticon svg {
389
+ display: inline-block;
390
+ }
391
+ .anticon::before {
392
+ display: none;
393
+ }
394
+ .anticon .anticon-icon {
395
+ display: block;
396
+ }
397
+ .anticon[tabindex] {
398
+ cursor: pointer;
399
+ }
400
+ .anticon-spin::before {
401
+ display: inline-block;
402
+ animation: loadingCircle 1s infinite linear;
403
+ }
404
+ .anticon-spin {
405
+ display: inline-block;
406
+ animation: loadingCircle 1s infinite linear;
407
+ }
408
+ .fade-enter,
409
+ .fade-appear {
410
+ animation-duration: 0.2s;
411
+ animation-fill-mode: both;
412
+ animation-play-state: paused;
413
+ }
414
+ .fade-leave {
415
+ animation-duration: 0.2s;
416
+ animation-fill-mode: both;
417
+ animation-play-state: paused;
418
+ }
419
+ .fade-enter.fade-enter-active,
420
+ .fade-appear.fade-appear-active {
421
+ animation-name: antFadeIn;
422
+ animation-play-state: running;
423
+ }
424
+ .fade-leave.fade-leave-active {
425
+ animation-name: antFadeOut;
426
+ animation-play-state: running;
427
+ pointer-events: none;
428
+ }
429
+ .fade-enter,
430
+ .fade-appear {
431
+ opacity: 0;
432
+ animation-timing-function: linear;
433
+ }
434
+ .fade-leave {
435
+ animation-timing-function: linear;
436
+ }
437
+ @keyframes antFadeIn {
438
+ 0% {
439
+ opacity: 0;
440
+ }
441
+ 100% {
442
+ opacity: 1;
443
+ }
444
+ }
445
+ @keyframes antFadeOut {
446
+ 0% {
447
+ opacity: 1;
448
+ }
449
+ 100% {
450
+ opacity: 0;
451
+ }
452
+ }
453
+ .move-up-enter,
454
+ .move-up-appear {
455
+ animation-duration: 0.2s;
456
+ animation-fill-mode: both;
457
+ animation-play-state: paused;
458
+ }
459
+ .move-up-leave {
460
+ animation-duration: 0.2s;
461
+ animation-fill-mode: both;
462
+ animation-play-state: paused;
463
+ }
464
+ .move-up-enter.move-up-enter-active,
465
+ .move-up-appear.move-up-appear-active {
466
+ animation-name: antMoveUpIn;
467
+ animation-play-state: running;
468
+ }
469
+ .move-up-leave.move-up-leave-active {
470
+ animation-name: antMoveUpOut;
471
+ animation-play-state: running;
472
+ pointer-events: none;
473
+ }
474
+ .move-up-enter,
475
+ .move-up-appear {
476
+ opacity: 0;
477
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
478
+ }
479
+ .move-up-leave {
480
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
481
+ }
482
+ .move-down-enter,
483
+ .move-down-appear {
484
+ animation-duration: 0.2s;
485
+ animation-fill-mode: both;
486
+ animation-play-state: paused;
487
+ }
488
+ .move-down-leave {
489
+ animation-duration: 0.2s;
490
+ animation-fill-mode: both;
491
+ animation-play-state: paused;
492
+ }
493
+ .move-down-enter.move-down-enter-active,
494
+ .move-down-appear.move-down-appear-active {
495
+ animation-name: antMoveDownIn;
496
+ animation-play-state: running;
497
+ }
498
+ .move-down-leave.move-down-leave-active {
499
+ animation-name: antMoveDownOut;
500
+ animation-play-state: running;
501
+ pointer-events: none;
502
+ }
503
+ .move-down-enter,
504
+ .move-down-appear {
505
+ opacity: 0;
506
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
507
+ }
508
+ .move-down-leave {
509
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
510
+ }
511
+ .move-left-enter,
512
+ .move-left-appear {
513
+ animation-duration: 0.2s;
514
+ animation-fill-mode: both;
515
+ animation-play-state: paused;
516
+ }
517
+ .move-left-leave {
518
+ animation-duration: 0.2s;
519
+ animation-fill-mode: both;
520
+ animation-play-state: paused;
521
+ }
522
+ .move-left-enter.move-left-enter-active,
523
+ .move-left-appear.move-left-appear-active {
524
+ animation-name: antMoveLeftIn;
525
+ animation-play-state: running;
526
+ }
527
+ .move-left-leave.move-left-leave-active {
528
+ animation-name: antMoveLeftOut;
529
+ animation-play-state: running;
530
+ pointer-events: none;
531
+ }
532
+ .move-left-enter,
533
+ .move-left-appear {
534
+ opacity: 0;
535
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
536
+ }
537
+ .move-left-leave {
538
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
539
+ }
540
+ .move-right-enter,
541
+ .move-right-appear {
542
+ animation-duration: 0.2s;
543
+ animation-fill-mode: both;
544
+ animation-play-state: paused;
545
+ }
546
+ .move-right-leave {
547
+ animation-duration: 0.2s;
548
+ animation-fill-mode: both;
549
+ animation-play-state: paused;
550
+ }
551
+ .move-right-enter.move-right-enter-active,
552
+ .move-right-appear.move-right-appear-active {
553
+ animation-name: antMoveRightIn;
554
+ animation-play-state: running;
555
+ }
556
+ .move-right-leave.move-right-leave-active {
557
+ animation-name: antMoveRightOut;
558
+ animation-play-state: running;
559
+ pointer-events: none;
560
+ }
561
+ .move-right-enter,
562
+ .move-right-appear {
563
+ opacity: 0;
564
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
565
+ }
566
+ .move-right-leave {
567
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
568
+ }
569
+ @keyframes antMoveDownIn {
570
+ 0% {
571
+ transform: translateY(100%);
572
+ transform-origin: 0 0;
573
+ opacity: 0;
574
+ }
575
+ 100% {
576
+ transform: translateY(0%);
577
+ transform-origin: 0 0;
578
+ opacity: 1;
579
+ }
580
+ }
581
+ @keyframes antMoveDownOut {
582
+ 0% {
583
+ transform: translateY(0%);
584
+ transform-origin: 0 0;
585
+ opacity: 1;
586
+ }
587
+ 100% {
588
+ transform: translateY(100%);
589
+ transform-origin: 0 0;
590
+ opacity: 0;
591
+ }
592
+ }
593
+ @keyframes antMoveLeftIn {
594
+ 0% {
595
+ transform: translateX(-100%);
596
+ transform-origin: 0 0;
597
+ opacity: 0;
598
+ }
599
+ 100% {
600
+ transform: translateX(0%);
601
+ transform-origin: 0 0;
602
+ opacity: 1;
603
+ }
604
+ }
605
+ @keyframes antMoveLeftOut {
606
+ 0% {
607
+ transform: translateX(0%);
608
+ transform-origin: 0 0;
609
+ opacity: 1;
610
+ }
611
+ 100% {
612
+ transform: translateX(-100%);
613
+ transform-origin: 0 0;
614
+ opacity: 0;
615
+ }
616
+ }
617
+ @keyframes antMoveRightIn {
618
+ 0% {
619
+ transform: translateX(100%);
620
+ transform-origin: 0 0;
621
+ opacity: 0;
622
+ }
623
+ 100% {
624
+ transform: translateX(0%);
625
+ transform-origin: 0 0;
626
+ opacity: 1;
627
+ }
628
+ }
629
+ @keyframes antMoveRightOut {
630
+ 0% {
631
+ transform: translateX(0%);
632
+ transform-origin: 0 0;
633
+ opacity: 1;
634
+ }
635
+ 100% {
636
+ transform: translateX(100%);
637
+ transform-origin: 0 0;
638
+ opacity: 0;
639
+ }
640
+ }
641
+ @keyframes antMoveUpIn {
642
+ 0% {
643
+ transform: translateY(-100%);
644
+ transform-origin: 0 0;
645
+ opacity: 0;
646
+ }
647
+ 100% {
648
+ transform: translateY(0%);
649
+ transform-origin: 0 0;
650
+ opacity: 1;
651
+ }
652
+ }
653
+ @keyframes antMoveUpOut {
654
+ 0% {
655
+ transform: translateY(0%);
656
+ transform-origin: 0 0;
657
+ opacity: 1;
658
+ }
659
+ 100% {
660
+ transform: translateY(-100%);
661
+ transform-origin: 0 0;
662
+ opacity: 0;
663
+ }
664
+ }
665
+ @keyframes loadingCircle {
666
+ 100% {
667
+ transform: rotate(360deg);
668
+ }
669
+ }
670
+ [ant-click-animating='true'],
671
+ [ant-click-animating-without-extra-node='true'] {
672
+ position: relative;
673
+ }
674
+ [ant-click-animating-without-extra-node='true']::after,
675
+ .ant-click-animating-node {
676
+ position: absolute;
677
+ top: 0;
678
+ right: 0;
679
+ bottom: 0;
680
+ left: 0;
681
+ display: block;
682
+ border-radius: inherit;
683
+ box-shadow: 0 0 0 0 #126bfb;
684
+ opacity: 0.2;
685
+ animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1),
686
+ waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
687
+ animation-fill-mode: forwards;
688
+ content: '';
689
+ pointer-events: none;
690
+ }
691
+ @keyframes waveEffect {
692
+ 100% {
693
+ box-shadow: 0 0 0 6px #126bfb;
694
+ }
695
+ }
696
+ @keyframes fadeEffect {
697
+ 100% {
698
+ opacity: 0;
699
+ }
700
+ }
701
+ .slide-up-enter,
702
+ .slide-up-appear {
703
+ animation-duration: 0.2s;
704
+ animation-fill-mode: both;
705
+ animation-play-state: paused;
706
+ }
707
+ .slide-up-leave {
708
+ animation-duration: 0.2s;
709
+ animation-fill-mode: both;
710
+ animation-play-state: paused;
711
+ }
712
+ .slide-up-enter.slide-up-enter-active,
713
+ .slide-up-appear.slide-up-appear-active {
714
+ animation-name: antSlideUpIn;
715
+ animation-play-state: running;
716
+ }
717
+ .slide-up-leave.slide-up-leave-active {
718
+ animation-name: antSlideUpOut;
719
+ animation-play-state: running;
720
+ pointer-events: none;
721
+ }
722
+ .slide-up-enter,
723
+ .slide-up-appear {
724
+ opacity: 0;
725
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
726
+ }
727
+ .slide-up-leave {
728
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
729
+ }
730
+ .slide-down-enter,
731
+ .slide-down-appear {
732
+ animation-duration: 0.2s;
733
+ animation-fill-mode: both;
734
+ animation-play-state: paused;
735
+ }
736
+ .slide-down-leave {
737
+ animation-duration: 0.2s;
738
+ animation-fill-mode: both;
739
+ animation-play-state: paused;
740
+ }
741
+ .slide-down-enter.slide-down-enter-active,
742
+ .slide-down-appear.slide-down-appear-active {
743
+ animation-name: antSlideDownIn;
744
+ animation-play-state: running;
745
+ }
746
+ .slide-down-leave.slide-down-leave-active {
747
+ animation-name: antSlideDownOut;
748
+ animation-play-state: running;
749
+ pointer-events: none;
750
+ }
751
+ .slide-down-enter,
752
+ .slide-down-appear {
753
+ opacity: 0;
754
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
755
+ }
756
+ .slide-down-leave {
757
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
758
+ }
759
+ .slide-left-enter,
760
+ .slide-left-appear {
761
+ animation-duration: 0.2s;
762
+ animation-fill-mode: both;
763
+ animation-play-state: paused;
764
+ }
765
+ .slide-left-leave {
766
+ animation-duration: 0.2s;
767
+ animation-fill-mode: both;
768
+ animation-play-state: paused;
769
+ }
770
+ .slide-left-enter.slide-left-enter-active,
771
+ .slide-left-appear.slide-left-appear-active {
772
+ animation-name: antSlideLeftIn;
773
+ animation-play-state: running;
774
+ }
775
+ .slide-left-leave.slide-left-leave-active {
776
+ animation-name: antSlideLeftOut;
777
+ animation-play-state: running;
778
+ pointer-events: none;
779
+ }
780
+ .slide-left-enter,
781
+ .slide-left-appear {
782
+ opacity: 0;
783
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
784
+ }
785
+ .slide-left-leave {
786
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
787
+ }
788
+ .slide-right-enter,
789
+ .slide-right-appear {
790
+ animation-duration: 0.2s;
791
+ animation-fill-mode: both;
792
+ animation-play-state: paused;
793
+ }
794
+ .slide-right-leave {
795
+ animation-duration: 0.2s;
796
+ animation-fill-mode: both;
797
+ animation-play-state: paused;
798
+ }
799
+ .slide-right-enter.slide-right-enter-active,
800
+ .slide-right-appear.slide-right-appear-active {
801
+ animation-name: antSlideRightIn;
802
+ animation-play-state: running;
803
+ }
804
+ .slide-right-leave.slide-right-leave-active {
805
+ animation-name: antSlideRightOut;
806
+ animation-play-state: running;
807
+ pointer-events: none;
808
+ }
809
+ .slide-right-enter,
810
+ .slide-right-appear {
811
+ opacity: 0;
812
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
813
+ }
814
+ .slide-right-leave {
815
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
816
+ }
817
+ @keyframes antSlideUpIn {
818
+ 0% {
819
+ transform: scaleY(0.8);
820
+ transform-origin: 0% 0%;
821
+ opacity: 0;
822
+ }
823
+ 100% {
824
+ transform: scaleY(1);
825
+ transform-origin: 0% 0%;
826
+ opacity: 1;
827
+ }
828
+ }
829
+ @keyframes antSlideUpOut {
830
+ 0% {
831
+ transform: scaleY(1);
832
+ transform-origin: 0% 0%;
833
+ opacity: 1;
834
+ }
835
+ 100% {
836
+ transform: scaleY(0.8);
837
+ transform-origin: 0% 0%;
838
+ opacity: 0;
839
+ }
840
+ }
841
+ @keyframes antSlideDownIn {
842
+ 0% {
843
+ transform: scaleY(0.8);
844
+ transform-origin: 100% 100%;
845
+ opacity: 0;
846
+ }
847
+ 100% {
848
+ transform: scaleY(1);
849
+ transform-origin: 100% 100%;
850
+ opacity: 1;
851
+ }
852
+ }
853
+ @keyframes antSlideDownOut {
854
+ 0% {
855
+ transform: scaleY(1);
856
+ transform-origin: 100% 100%;
857
+ opacity: 1;
858
+ }
859
+ 100% {
860
+ transform: scaleY(0.8);
861
+ transform-origin: 100% 100%;
862
+ opacity: 0;
863
+ }
864
+ }
865
+ @keyframes antSlideLeftIn {
866
+ 0% {
867
+ transform: scaleX(0.8);
868
+ transform-origin: 0% 0%;
869
+ opacity: 0;
870
+ }
871
+ 100% {
872
+ transform: scaleX(1);
873
+ transform-origin: 0% 0%;
874
+ opacity: 1;
875
+ }
876
+ }
877
+ @keyframes antSlideLeftOut {
878
+ 0% {
879
+ transform: scaleX(1);
880
+ transform-origin: 0% 0%;
881
+ opacity: 1;
882
+ }
883
+ 100% {
884
+ transform: scaleX(0.8);
885
+ transform-origin: 0% 0%;
886
+ opacity: 0;
887
+ }
888
+ }
889
+ @keyframes antSlideRightIn {
890
+ 0% {
891
+ transform: scaleX(0.8);
892
+ transform-origin: 100% 0%;
893
+ opacity: 0;
894
+ }
895
+ 100% {
896
+ transform: scaleX(1);
897
+ transform-origin: 100% 0%;
898
+ opacity: 1;
899
+ }
900
+ }
901
+ @keyframes antSlideRightOut {
902
+ 0% {
903
+ transform: scaleX(1);
904
+ transform-origin: 100% 0%;
905
+ opacity: 1;
906
+ }
907
+ 100% {
908
+ transform: scaleX(0.8);
909
+ transform-origin: 100% 0%;
910
+ opacity: 0;
911
+ }
912
+ }
913
+ .swing-enter,
914
+ .swing-appear {
915
+ animation-duration: 0.2s;
916
+ animation-fill-mode: both;
917
+ animation-play-state: paused;
918
+ }
919
+ .swing-enter.swing-enter-active,
920
+ .swing-appear.swing-appear-active {
921
+ animation-name: antSwingIn;
922
+ animation-play-state: running;
923
+ }
924
+ @keyframes antSwingIn {
925
+ 0%,
926
+ 100% {
927
+ transform: translateX(0);
928
+ }
929
+ 20% {
930
+ transform: translateX(-10px);
931
+ }
932
+ 40% {
933
+ transform: translateX(10px);
934
+ }
935
+ 60% {
936
+ transform: translateX(-5px);
937
+ }
938
+ 80% {
939
+ transform: translateX(5px);
940
+ }
941
+ }
942
+ .zoom-enter,
943
+ .zoom-appear {
944
+ animation-duration: 0.2s;
945
+ animation-fill-mode: both;
946
+ animation-play-state: paused;
947
+ }
948
+ .zoom-leave {
949
+ animation-duration: 0.2s;
950
+ animation-fill-mode: both;
951
+ animation-play-state: paused;
952
+ }
953
+ .zoom-enter.zoom-enter-active,
954
+ .zoom-appear.zoom-appear-active {
955
+ animation-name: antZoomIn;
956
+ animation-play-state: running;
957
+ }
958
+ .zoom-leave.zoom-leave-active {
959
+ animation-name: antZoomOut;
960
+ animation-play-state: running;
961
+ pointer-events: none;
962
+ }
963
+ .zoom-enter,
964
+ .zoom-appear {
965
+ transform: scale(0);
966
+ opacity: 0;
967
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
968
+ }
969
+ .zoom-leave {
970
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
971
+ }
972
+ .zoom-big-enter,
973
+ .zoom-big-appear {
974
+ animation-duration: 0.2s;
975
+ animation-fill-mode: both;
976
+ animation-play-state: paused;
977
+ }
978
+ .zoom-big-leave {
979
+ animation-duration: 0.2s;
980
+ animation-fill-mode: both;
981
+ animation-play-state: paused;
982
+ }
983
+ .zoom-big-enter.zoom-big-enter-active,
984
+ .zoom-big-appear.zoom-big-appear-active {
985
+ animation-name: antZoomBigIn;
986
+ animation-play-state: running;
987
+ }
988
+ .zoom-big-leave.zoom-big-leave-active {
989
+ animation-name: antZoomBigOut;
990
+ animation-play-state: running;
991
+ pointer-events: none;
992
+ }
993
+ .zoom-big-enter,
994
+ .zoom-big-appear {
995
+ transform: scale(0);
996
+ opacity: 0;
997
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
998
+ }
999
+ .zoom-big-leave {
1000
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1001
+ }
1002
+ .zoom-big-fast-enter,
1003
+ .zoom-big-fast-appear {
1004
+ animation-duration: 0.1s;
1005
+ animation-fill-mode: both;
1006
+ animation-play-state: paused;
1007
+ }
1008
+ .zoom-big-fast-leave {
1009
+ animation-duration: 0.1s;
1010
+ animation-fill-mode: both;
1011
+ animation-play-state: paused;
1012
+ }
1013
+ .zoom-big-fast-enter.zoom-big-fast-enter-active,
1014
+ .zoom-big-fast-appear.zoom-big-fast-appear-active {
1015
+ animation-name: antZoomBigIn;
1016
+ animation-play-state: running;
1017
+ }
1018
+ .zoom-big-fast-leave.zoom-big-fast-leave-active {
1019
+ animation-name: antZoomBigOut;
1020
+ animation-play-state: running;
1021
+ pointer-events: none;
1022
+ }
1023
+ .zoom-big-fast-enter,
1024
+ .zoom-big-fast-appear {
1025
+ transform: scale(0);
1026
+ opacity: 0;
1027
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1028
+ }
1029
+ .zoom-big-fast-leave {
1030
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1031
+ }
1032
+ .zoom-up-enter,
1033
+ .zoom-up-appear {
1034
+ animation-duration: 0.2s;
1035
+ animation-fill-mode: both;
1036
+ animation-play-state: paused;
1037
+ }
1038
+ .zoom-up-leave {
1039
+ animation-duration: 0.2s;
1040
+ animation-fill-mode: both;
1041
+ animation-play-state: paused;
1042
+ }
1043
+ .zoom-up-enter.zoom-up-enter-active,
1044
+ .zoom-up-appear.zoom-up-appear-active {
1045
+ animation-name: antZoomUpIn;
1046
+ animation-play-state: running;
1047
+ }
1048
+ .zoom-up-leave.zoom-up-leave-active {
1049
+ animation-name: antZoomUpOut;
1050
+ animation-play-state: running;
1051
+ pointer-events: none;
1052
+ }
1053
+ .zoom-up-enter,
1054
+ .zoom-up-appear {
1055
+ transform: scale(0);
1056
+ opacity: 0;
1057
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1058
+ }
1059
+ .zoom-up-leave {
1060
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1061
+ }
1062
+ .zoom-down-enter,
1063
+ .zoom-down-appear {
1064
+ animation-duration: 0.2s;
1065
+ animation-fill-mode: both;
1066
+ animation-play-state: paused;
1067
+ }
1068
+ .zoom-down-leave {
1069
+ animation-duration: 0.2s;
1070
+ animation-fill-mode: both;
1071
+ animation-play-state: paused;
1072
+ }
1073
+ .zoom-down-enter.zoom-down-enter-active,
1074
+ .zoom-down-appear.zoom-down-appear-active {
1075
+ animation-name: antZoomDownIn;
1076
+ animation-play-state: running;
1077
+ }
1078
+ .zoom-down-leave.zoom-down-leave-active {
1079
+ animation-name: antZoomDownOut;
1080
+ animation-play-state: running;
1081
+ pointer-events: none;
1082
+ }
1083
+ .zoom-down-enter,
1084
+ .zoom-down-appear {
1085
+ transform: scale(0);
1086
+ opacity: 0;
1087
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1088
+ }
1089
+ .zoom-down-leave {
1090
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1091
+ }
1092
+ .zoom-left-enter,
1093
+ .zoom-left-appear {
1094
+ animation-duration: 0.2s;
1095
+ animation-fill-mode: both;
1096
+ animation-play-state: paused;
1097
+ }
1098
+ .zoom-left-leave {
1099
+ animation-duration: 0.2s;
1100
+ animation-fill-mode: both;
1101
+ animation-play-state: paused;
1102
+ }
1103
+ .zoom-left-enter.zoom-left-enter-active,
1104
+ .zoom-left-appear.zoom-left-appear-active {
1105
+ animation-name: antZoomLeftIn;
1106
+ animation-play-state: running;
1107
+ }
1108
+ .zoom-left-leave.zoom-left-leave-active {
1109
+ animation-name: antZoomLeftOut;
1110
+ animation-play-state: running;
1111
+ pointer-events: none;
1112
+ }
1113
+ .zoom-left-enter,
1114
+ .zoom-left-appear {
1115
+ transform: scale(0);
1116
+ opacity: 0;
1117
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1118
+ }
1119
+ .zoom-left-leave {
1120
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1121
+ }
1122
+ .zoom-right-enter,
1123
+ .zoom-right-appear {
1124
+ animation-duration: 0.2s;
1125
+ animation-fill-mode: both;
1126
+ animation-play-state: paused;
1127
+ }
1128
+ .zoom-right-leave {
1129
+ animation-duration: 0.2s;
1130
+ animation-fill-mode: both;
1131
+ animation-play-state: paused;
1132
+ }
1133
+ .zoom-right-enter.zoom-right-enter-active,
1134
+ .zoom-right-appear.zoom-right-appear-active {
1135
+ animation-name: antZoomRightIn;
1136
+ animation-play-state: running;
1137
+ }
1138
+ .zoom-right-leave.zoom-right-leave-active {
1139
+ animation-name: antZoomRightOut;
1140
+ animation-play-state: running;
1141
+ pointer-events: none;
1142
+ }
1143
+ .zoom-right-enter,
1144
+ .zoom-right-appear {
1145
+ transform: scale(0);
1146
+ opacity: 0;
1147
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1148
+ }
1149
+ .zoom-right-leave {
1150
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1151
+ }
1152
+ @keyframes antZoomIn {
1153
+ 0% {
1154
+ transform: scale(0.2);
1155
+ opacity: 0;
1156
+ }
1157
+ 100% {
1158
+ transform: scale(1);
1159
+ opacity: 1;
1160
+ }
1161
+ }
1162
+ @keyframes antZoomOut {
1163
+ 0% {
1164
+ transform: scale(1);
1165
+ }
1166
+ 100% {
1167
+ transform: scale(0.2);
1168
+ opacity: 0;
1169
+ }
1170
+ }
1171
+ @keyframes antZoomBigIn {
1172
+ 0% {
1173
+ transform: scale(0.8);
1174
+ opacity: 0;
1175
+ }
1176
+ 100% {
1177
+ transform: scale(1);
1178
+ opacity: 1;
1179
+ }
1180
+ }
1181
+ @keyframes antZoomBigOut {
1182
+ 0% {
1183
+ transform: scale(1);
1184
+ }
1185
+ 100% {
1186
+ transform: scale(0.8);
1187
+ opacity: 0;
1188
+ }
1189
+ }
1190
+ @keyframes antZoomUpIn {
1191
+ 0% {
1192
+ transform: scale(0.8);
1193
+ transform-origin: 50% 0%;
1194
+ opacity: 0;
1195
+ }
1196
+ 100% {
1197
+ transform: scale(1);
1198
+ transform-origin: 50% 0%;
1199
+ }
1200
+ }
1201
+ @keyframes antZoomUpOut {
1202
+ 0% {
1203
+ transform: scale(1);
1204
+ transform-origin: 50% 0%;
1205
+ }
1206
+ 100% {
1207
+ transform: scale(0.8);
1208
+ transform-origin: 50% 0%;
1209
+ opacity: 0;
1210
+ }
1211
+ }
1212
+ @keyframes antZoomLeftIn {
1213
+ 0% {
1214
+ transform: scale(0.8);
1215
+ transform-origin: 0% 50%;
1216
+ opacity: 0;
1217
+ }
1218
+ 100% {
1219
+ transform: scale(1);
1220
+ transform-origin: 0% 50%;
1221
+ }
1222
+ }
1223
+ @keyframes antZoomLeftOut {
1224
+ 0% {
1225
+ transform: scale(1);
1226
+ transform-origin: 0% 50%;
1227
+ }
1228
+ 100% {
1229
+ transform: scale(0.8);
1230
+ transform-origin: 0% 50%;
1231
+ opacity: 0;
1232
+ }
1233
+ }
1234
+ @keyframes antZoomRightIn {
1235
+ 0% {
1236
+ transform: scale(0.8);
1237
+ transform-origin: 100% 50%;
1238
+ opacity: 0;
1239
+ }
1240
+ 100% {
1241
+ transform: scale(1);
1242
+ transform-origin: 100% 50%;
1243
+ }
1244
+ }
1245
+ @keyframes antZoomRightOut {
1246
+ 0% {
1247
+ transform: scale(1);
1248
+ transform-origin: 100% 50%;
1249
+ }
1250
+ 100% {
1251
+ transform: scale(0.8);
1252
+ transform-origin: 100% 50%;
1253
+ opacity: 0;
1254
+ }
1255
+ }
1256
+ @keyframes antZoomDownIn {
1257
+ 0% {
1258
+ transform: scale(0.8);
1259
+ transform-origin: 50% 100%;
1260
+ opacity: 0;
1261
+ }
1262
+ 100% {
1263
+ transform: scale(1);
1264
+ transform-origin: 50% 100%;
1265
+ }
1266
+ }
1267
+ @keyframes antZoomDownOut {
1268
+ 0% {
1269
+ transform: scale(1);
1270
+ transform-origin: 50% 100%;
1271
+ }
1272
+ 100% {
1273
+ transform: scale(0.8);
1274
+ transform-origin: 50% 100%;
1275
+ opacity: 0;
1276
+ }
1277
+ }
1278
+ .ant-motion-collapse-legacy {
1279
+ overflow: hidden;
1280
+ }
1281
+ .ant-motion-collapse-legacy-active {
1282
+ transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
1283
+ opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1284
+ }
1285
+ .ant-motion-collapse {
1286
+ overflow: hidden;
1287
+ transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
1288
+ opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1289
+ }
1290
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1291
+ /* stylelint-disable no-duplicate-selectors */
1292
+ /* stylelint-disable */
1293
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1294
+
1295
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1296
+ /* stylelint-disable no-duplicate-selectors */
1297
+ /* stylelint-disable */
1298
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1299
+ /* 深色主题变量(通过覆盖变量实现主题切换) */
1300
+ /* 核心滚动条混合(建议添加到需要滚动的容器类) */
1301
+ .ant-empty {
1302
+ margin: 0 8px;
1303
+ font-size: 14px;
1304
+ line-height: 22px;
1305
+ text-align: center;
1306
+ }
1307
+ .ant-empty-image {
1308
+ height: 100px;
1309
+ margin-bottom: 8px;
1310
+ }
1311
+ .ant-empty-image img {
1312
+ height: 100%;
1313
+ }
1314
+ .ant-empty-image svg {
1315
+ height: 100%;
1316
+ margin: auto;
1317
+ }
1318
+ .ant-empty-description {
1319
+ margin: 0;
1320
+ }
1321
+ .ant-empty-footer {
1322
+ margin-top: 16px;
1323
+ }
1324
+ .ant-empty-normal {
1325
+ margin: 32px 0;
1326
+ color: #babdc5;
1327
+ }
1328
+ .ant-empty-normal .ant-empty-image {
1329
+ height: 40px;
1330
+ }
1331
+ .ant-empty-small {
1332
+ margin: 8px 0;
1333
+ color: #babdc5;
1334
+ }
1335
+ .ant-empty-small .ant-empty-image {
1336
+ height: 35px;
1337
+ }
1338
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1339
+ /* stylelint-disable no-duplicate-selectors */
1340
+ /* stylelint-disable */
1341
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1342
+
1343
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1344
+ /* stylelint-disable no-duplicate-selectors */
1345
+ /* stylelint-disable */
1346
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1347
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1348
+ /* stylelint-disable no-duplicate-selectors */
1349
+ /* stylelint-disable */
1350
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1351
+
1352
+ .ant-empty.ant-empty-mini .ant-empty-image {
1353
+ height: 50px;
1354
+ margin-bottom: 6px;
1355
+ }
1356
+ .ant-empty.ant-empty-small .ant-empty-image {
1357
+ height: 100px;
1358
+ }
1359
+ .ant-empty.ant-empty-large .ant-empty-image {
1360
+ height: 160px;
1361
+ }
1362
+ .ant-empty.ant-empty-ultra .ant-empty-image {
1363
+ height: 250px;
1364
+ }
1365
+ .ant-empty .ant-empty-image {
1366
+ height: 120px;
1367
+ margin-bottom: 20px;
1368
+ color: #126bfb;
1369
+ }
1370
+ .ant-empty .ant-empty-description {
1371
+ color: #17233d;
1372
+ }
1373
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1374
+ /* stylelint-disable no-duplicate-selectors */
1375
+ /* stylelint-disable */
1376
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1377
+
1378
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1379
+ /* stylelint-disable no-duplicate-selectors */
1380
+ /* stylelint-disable */
1381
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1382
+ /* 深色主题变量(通过覆盖变量实现主题切换) */
1383
+ /* 核心滚动条混合(建议添加到需要滚动的容器类) */
1384
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1385
+ /* stylelint-disable no-duplicate-selectors */
1386
+ /* stylelint-disable */
1387
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1388
+
1389
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1390
+ /* stylelint-disable no-duplicate-selectors */
1391
+ /* stylelint-disable */
1392
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1393
+ .tntd-anticon {
1394
+ font-size: 16px;
1395
+ vertical-align: -0.1875em;
1396
+ }
1397
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1398
+ /* stylelint-disable no-duplicate-selectors */
1399
+ /* stylelint-disable */
1400
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1401
+
1402
+ [class*='tntd-'] input::-ms-clear,
1403
+ [class*='tntd-'] input::-ms-reveal,
1404
+ [class*='tntd-']::-ms-clear,
1405
+ [class^='tntd-'] input::-ms-clear,
1406
+ [class^='tntd-'] input::-ms-reveal,
1407
+ [class^='tntd-']::-ms-clear {
1408
+ display: none;
1409
+ }
1410
+ .tntd-fade-appear,
1411
+ .tntd-fade-enter,
1412
+ .tntd-fade-leave {
1413
+ animation-duration: 0.2s;
1414
+ animation-fill-mode: both;
1415
+ animation-play-state: paused;
1416
+ }
1417
+ .tntd-fade-appear.tntd-fade-appear-active,
1418
+ .tntd-fade-enter.tntd-fade-enter-active {
1419
+ animation-name: antFadeIn;
1420
+ animation-play-state: running;
1421
+ }
1422
+ .tntd-fade-leave.tntd-fade-leave-active {
1423
+ animation-name: antFadeOut;
1424
+ animation-play-state: running;
1425
+ pointer-events: none;
1426
+ }
1427
+ .tntd-fade-appear,
1428
+ .tntd-fade-enter {
1429
+ animation-timing-function: linear;
1430
+ opacity: 0;
1431
+ }
1432
+ .tntd-fade-leave {
1433
+ animation-timing-function: linear;
1434
+ }
1435
+ @keyframes antFadeIn {
1436
+ 0% {
1437
+ opacity: 0;
1438
+ }
1439
+ to {
1440
+ opacity: 1;
1441
+ }
1442
+ }
1443
+ @keyframes antFadeOut {
1444
+ 0% {
1445
+ opacity: 1;
1446
+ }
1447
+ to {
1448
+ opacity: 0;
1449
+ }
1450
+ }
1451
+ .tntd-move-up-appear,
1452
+ .tntd-move-up-enter,
1453
+ .tntd-move-up-leave {
1454
+ animation-duration: 0.2s;
1455
+ animation-fill-mode: both;
1456
+ animation-play-state: paused;
1457
+ }
1458
+ .tntd-move-up-appear.tntd-move-up-appear-active,
1459
+ .tntd-move-up-enter.tntd-move-up-enter-active {
1460
+ animation-name: antMoveUpIn;
1461
+ animation-play-state: running;
1462
+ }
1463
+ .tntd-move-up-leave.tntd-move-up-leave-active {
1464
+ animation-name: antMoveUpOut;
1465
+ animation-play-state: running;
1466
+ pointer-events: none;
1467
+ }
1468
+ .tntd-move-up-appear,
1469
+ .tntd-move-up-enter {
1470
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1471
+ opacity: 0;
1472
+ }
1473
+ .tntd-move-up-leave {
1474
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1475
+ }
1476
+ .tntd-move-down-appear,
1477
+ .tntd-move-down-enter,
1478
+ .tntd-move-down-leave {
1479
+ animation-duration: 0.2s;
1480
+ animation-fill-mode: both;
1481
+ animation-play-state: paused;
1482
+ }
1483
+ .tntd-move-down-appear.tntd-move-down-appear-active,
1484
+ .tntd-move-down-enter.tntd-move-down-enter-active {
1485
+ animation-name: antMoveDownIn;
1486
+ animation-play-state: running;
1487
+ }
1488
+ .tntd-move-down-leave.tntd-move-down-leave-active {
1489
+ animation-name: antMoveDownOut;
1490
+ animation-play-state: running;
1491
+ pointer-events: none;
1492
+ }
1493
+ .tntd-move-down-appear,
1494
+ .tntd-move-down-enter {
1495
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1496
+ opacity: 0;
1497
+ }
1498
+ .tntd-move-down-leave {
1499
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1500
+ }
1501
+ .tntd-move-left-appear,
1502
+ .tntd-move-left-enter,
1503
+ .tntd-move-left-leave {
1504
+ animation-duration: 0.2s;
1505
+ animation-fill-mode: both;
1506
+ animation-play-state: paused;
1507
+ }
1508
+ .tntd-move-left-appear.tntd-move-left-appear-active,
1509
+ .tntd-move-left-enter.tntd-move-left-enter-active {
1510
+ animation-name: antMoveLeftIn;
1511
+ animation-play-state: running;
1512
+ }
1513
+ .tntd-move-left-leave.tntd-move-left-leave-active {
1514
+ animation-name: antMoveLeftOut;
1515
+ animation-play-state: running;
1516
+ pointer-events: none;
1517
+ }
1518
+ .tntd-move-left-appear,
1519
+ .tntd-move-left-enter {
1520
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1521
+ opacity: 0;
1522
+ }
1523
+ .tntd-move-left-leave {
1524
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1525
+ }
1526
+ .tntd-move-right-appear,
1527
+ .tntd-move-right-enter,
1528
+ .tntd-move-right-leave {
1529
+ animation-duration: 0.2s;
1530
+ animation-fill-mode: both;
1531
+ animation-play-state: paused;
1532
+ }
1533
+ .tntd-move-right-appear.tntd-move-right-appear-active,
1534
+ .tntd-move-right-enter.tntd-move-right-enter-active {
1535
+ animation-name: antMoveRightIn;
1536
+ animation-play-state: running;
1537
+ }
1538
+ .tntd-move-right-leave.tntd-move-right-leave-active {
1539
+ animation-name: antMoveRightOut;
1540
+ animation-play-state: running;
1541
+ pointer-events: none;
1542
+ }
1543
+ .tntd-move-right-appear,
1544
+ .tntd-move-right-enter {
1545
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1546
+ opacity: 0;
1547
+ }
1548
+ .tntd-move-right-leave {
1549
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1550
+ }
1551
+ @keyframes antMoveDownIn {
1552
+ 0% {
1553
+ opacity: 0;
1554
+ transform: translateY(100%);
1555
+ transform-origin: 0 0;
1556
+ }
1557
+ to {
1558
+ opacity: 1;
1559
+ transform: translateY(0);
1560
+ transform-origin: 0 0;
1561
+ }
1562
+ }
1563
+ @keyframes antMoveDownOut {
1564
+ 0% {
1565
+ opacity: 1;
1566
+ transform: translateY(0);
1567
+ transform-origin: 0 0;
1568
+ }
1569
+ to {
1570
+ opacity: 0;
1571
+ transform: translateY(100%);
1572
+ transform-origin: 0 0;
1573
+ }
1574
+ }
1575
+ @keyframes antMoveLeftIn {
1576
+ 0% {
1577
+ opacity: 0;
1578
+ transform: translateX(-100%);
1579
+ transform-origin: 0 0;
1580
+ }
1581
+ to {
1582
+ opacity: 1;
1583
+ transform: translateX(0);
1584
+ transform-origin: 0 0;
1585
+ }
1586
+ }
1587
+ @keyframes antMoveLeftOut {
1588
+ 0% {
1589
+ opacity: 1;
1590
+ transform: translateX(0);
1591
+ transform-origin: 0 0;
1592
+ }
1593
+ to {
1594
+ opacity: 0;
1595
+ transform: translateX(-100%);
1596
+ transform-origin: 0 0;
1597
+ }
1598
+ }
1599
+ @keyframes antMoveRightIn {
1600
+ 0% {
1601
+ opacity: 0;
1602
+ transform: translateX(100%);
1603
+ transform-origin: 0 0;
1604
+ }
1605
+ to {
1606
+ opacity: 1;
1607
+ transform: translateX(0);
1608
+ transform-origin: 0 0;
1609
+ }
1610
+ }
1611
+ @keyframes antMoveRightOut {
1612
+ 0% {
1613
+ opacity: 1;
1614
+ transform: translateX(0);
1615
+ transform-origin: 0 0;
1616
+ }
1617
+ to {
1618
+ opacity: 0;
1619
+ transform: translateX(100%);
1620
+ transform-origin: 0 0;
1621
+ }
1622
+ }
1623
+ @keyframes antMoveUpIn {
1624
+ 0% {
1625
+ opacity: 0;
1626
+ transform: translateY(-100%);
1627
+ transform-origin: 0 0;
1628
+ }
1629
+ to {
1630
+ opacity: 1;
1631
+ transform: translateY(0);
1632
+ transform-origin: 0 0;
1633
+ }
1634
+ }
1635
+ @keyframes antMoveUpOut {
1636
+ 0% {
1637
+ opacity: 1;
1638
+ transform: translateY(0);
1639
+ transform-origin: 0 0;
1640
+ }
1641
+ to {
1642
+ opacity: 0;
1643
+ transform: translateY(-100%);
1644
+ transform-origin: 0 0;
1645
+ }
1646
+ }
1647
+ @keyframes loadingCircle {
1648
+ to {
1649
+ transform: rotate(1turn);
1650
+ }
1651
+ }
1652
+ [tntd-click-animating-without-extra-node='true'],
1653
+ [tntd-click-animating='true'] {
1654
+ position: relative;
1655
+ }
1656
+ .tntd-click-animating-node,
1657
+ [tntd-click-animating-without-extra-node='true']:after {
1658
+ animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1),
1659
+ waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
1660
+ animation-fill-mode: forwards;
1661
+ border-radius: inherit;
1662
+ bottom: 0;
1663
+ box-shadow: 0 0 0 0 #126bfb;
1664
+ content: '';
1665
+ display: block;
1666
+ left: 0;
1667
+ opacity: 0.2;
1668
+ pointer-events: none;
1669
+ position: absolute;
1670
+ right: 0;
1671
+ top: 0;
1672
+ }
1673
+ @keyframes waveEffect {
1674
+ to {
1675
+ box-shadow: 0 0 0 #126bfb;
1676
+ box-shadow: 0 0 0 6px #126bfb;
1677
+ }
1678
+ }
1679
+ @keyframes fadeEffect {
1680
+ to {
1681
+ opacity: 0;
1682
+ }
1683
+ }
1684
+ .tntd-slide-up-appear,
1685
+ .tntd-slide-up-enter,
1686
+ .tntd-slide-up-leave {
1687
+ animation-duration: 0.2s;
1688
+ animation-fill-mode: both;
1689
+ animation-play-state: paused;
1690
+ }
1691
+ .tntd-slide-up-appear.tntd-slide-up-appear-active,
1692
+ .tntd-slide-up-enter.tntd-slide-up-enter-active {
1693
+ animation-name: antSlideUpIn;
1694
+ animation-play-state: running;
1695
+ }
1696
+ .tntd-slide-up-leave.tntd-slide-up-leave-active {
1697
+ animation-name: antSlideUpOut;
1698
+ animation-play-state: running;
1699
+ pointer-events: none;
1700
+ }
1701
+ .tntd-slide-up-appear,
1702
+ .tntd-slide-up-enter {
1703
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1704
+ opacity: 0;
1705
+ }
1706
+ .tntd-slide-up-leave {
1707
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1708
+ }
1709
+ .tntd-slide-down-appear,
1710
+ .tntd-slide-down-enter,
1711
+ .tntd-slide-down-leave {
1712
+ animation-duration: 0.2s;
1713
+ animation-fill-mode: both;
1714
+ animation-play-state: paused;
1715
+ }
1716
+ .tntd-slide-down-appear.tntd-slide-down-appear-active,
1717
+ .tntd-slide-down-enter.tntd-slide-down-enter-active {
1718
+ animation-name: antSlideDownIn;
1719
+ animation-play-state: running;
1720
+ }
1721
+ .tntd-slide-down-leave.tntd-slide-down-leave-active {
1722
+ animation-name: antSlideDownOut;
1723
+ animation-play-state: running;
1724
+ pointer-events: none;
1725
+ }
1726
+ .tntd-slide-down-appear,
1727
+ .tntd-slide-down-enter {
1728
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1729
+ opacity: 0;
1730
+ }
1731
+ .tntd-slide-down-leave {
1732
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1733
+ }
1734
+ .tntd-slide-left-appear,
1735
+ .tntd-slide-left-enter,
1736
+ .tntd-slide-left-leave {
1737
+ animation-duration: 0.2s;
1738
+ animation-fill-mode: both;
1739
+ animation-play-state: paused;
1740
+ }
1741
+ .tntd-slide-left-appear.tntd-slide-left-appear-active,
1742
+ .tntd-slide-left-enter.tntd-slide-left-enter-active {
1743
+ animation-name: antSlideLeftIn;
1744
+ animation-play-state: running;
1745
+ }
1746
+ .tntd-slide-left-leave.tntd-slide-left-leave-active {
1747
+ animation-name: antSlideLeftOut;
1748
+ animation-play-state: running;
1749
+ pointer-events: none;
1750
+ }
1751
+ .tntd-slide-left-appear,
1752
+ .tntd-slide-left-enter {
1753
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1754
+ opacity: 0;
1755
+ }
1756
+ .tntd-slide-left-leave {
1757
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1758
+ }
1759
+ .tntd-slide-right-appear,
1760
+ .tntd-slide-right-enter,
1761
+ .tntd-slide-right-leave {
1762
+ animation-duration: 0.2s;
1763
+ animation-fill-mode: both;
1764
+ animation-play-state: paused;
1765
+ }
1766
+ .tntd-slide-right-appear.tntd-slide-right-appear-active,
1767
+ .tntd-slide-right-enter.tntd-slide-right-enter-active {
1768
+ animation-name: antSlideRightIn;
1769
+ animation-play-state: running;
1770
+ }
1771
+ .tntd-slide-right-leave.tntd-slide-right-leave-active {
1772
+ animation-name: antSlideRightOut;
1773
+ animation-play-state: running;
1774
+ pointer-events: none;
1775
+ }
1776
+ .tntd-slide-right-appear,
1777
+ .tntd-slide-right-enter {
1778
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1779
+ opacity: 0;
1780
+ }
1781
+ .tntd-slide-right-leave {
1782
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1783
+ }
1784
+ @keyframes antSlideUpIn {
1785
+ 0% {
1786
+ opacity: 0;
1787
+ transform: scaleY(0.8);
1788
+ transform-origin: 0 0;
1789
+ }
1790
+ to {
1791
+ opacity: 1;
1792
+ transform: scaleY(1);
1793
+ transform-origin: 0 0;
1794
+ }
1795
+ }
1796
+ @keyframes antSlideUpOut {
1797
+ 0% {
1798
+ opacity: 1;
1799
+ transform: scaleY(1);
1800
+ transform-origin: 0 0;
1801
+ }
1802
+ to {
1803
+ opacity: 0;
1804
+ transform: scaleY(0.8);
1805
+ transform-origin: 0 0;
1806
+ }
1807
+ }
1808
+ @keyframes antSlideDownIn {
1809
+ 0% {
1810
+ opacity: 0;
1811
+ transform: scaleY(0.8);
1812
+ transform-origin: 100% 100%;
1813
+ }
1814
+ to {
1815
+ opacity: 1;
1816
+ transform: scaleY(1);
1817
+ transform-origin: 100% 100%;
1818
+ }
1819
+ }
1820
+ @keyframes antSlideDownOut {
1821
+ 0% {
1822
+ opacity: 1;
1823
+ transform: scaleY(1);
1824
+ transform-origin: 100% 100%;
1825
+ }
1826
+ to {
1827
+ opacity: 0;
1828
+ transform: scaleY(0.8);
1829
+ transform-origin: 100% 100%;
1830
+ }
1831
+ }
1832
+ @keyframes antSlideLeftIn {
1833
+ 0% {
1834
+ opacity: 0;
1835
+ transform: scaleX(0.8);
1836
+ transform-origin: 0 0;
1837
+ }
1838
+ to {
1839
+ opacity: 1;
1840
+ transform: scaleX(1);
1841
+ transform-origin: 0 0;
1842
+ }
1843
+ }
1844
+ @keyframes antSlideLeftOut {
1845
+ 0% {
1846
+ opacity: 1;
1847
+ transform: scaleX(1);
1848
+ transform-origin: 0 0;
1849
+ }
1850
+ to {
1851
+ opacity: 0;
1852
+ transform: scaleX(0.8);
1853
+ transform-origin: 0 0;
1854
+ }
1855
+ }
1856
+ @keyframes antSlideRightIn {
1857
+ 0% {
1858
+ opacity: 0;
1859
+ transform: scaleX(0.8);
1860
+ transform-origin: 100% 0;
1861
+ }
1862
+ to {
1863
+ opacity: 1;
1864
+ transform: scaleX(1);
1865
+ transform-origin: 100% 0;
1866
+ }
1867
+ }
1868
+ @keyframes antSlideRightOut {
1869
+ 0% {
1870
+ opacity: 1;
1871
+ transform: scaleX(1);
1872
+ transform-origin: 100% 0;
1873
+ }
1874
+ to {
1875
+ opacity: 0;
1876
+ transform: scaleX(0.8);
1877
+ transform-origin: 100% 0;
1878
+ }
1879
+ }
1880
+ .tntd-zoom-appear,
1881
+ .tntd-zoom-enter,
1882
+ .tntd-zoom-leave {
1883
+ animation-duration: 0.2s;
1884
+ animation-fill-mode: both;
1885
+ animation-play-state: paused;
1886
+ }
1887
+ .tntd-zoom-appear.tntd-zoom-appear-active,
1888
+ .tntd-zoom-enter.tntd-zoom-enter-active {
1889
+ animation-name: antZoomIn;
1890
+ animation-play-state: running;
1891
+ }
1892
+ .tntd-zoom-leave.tntd-zoom-leave-active {
1893
+ animation-name: antZoomOut;
1894
+ animation-play-state: running;
1895
+ pointer-events: none;
1896
+ }
1897
+ .tntd-zoom-appear,
1898
+ .tntd-zoom-enter {
1899
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1900
+ opacity: 0;
1901
+ transform: scale(0);
1902
+ }
1903
+ .tntd-zoom-appear-prepare,
1904
+ .tntd-zoom-enter-prepare {
1905
+ transform: none;
1906
+ }
1907
+ .tntd-zoom-leave {
1908
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1909
+ }
1910
+ .tntd-zoom-big-appear,
1911
+ .tntd-zoom-big-enter,
1912
+ .tntd-zoom-big-leave {
1913
+ animation-duration: 0.2s;
1914
+ animation-fill-mode: both;
1915
+ animation-play-state: paused;
1916
+ }
1917
+ .tntd-zoom-big-appear.tntd-zoom-big-appear-active,
1918
+ .tntd-zoom-big-enter.tntd-zoom-big-enter-active {
1919
+ animation-name: antZoomBigIn;
1920
+ animation-play-state: running;
1921
+ }
1922
+ .tntd-zoom-big-leave.tntd-zoom-big-leave-active {
1923
+ animation-name: antZoomBigOut;
1924
+ animation-play-state: running;
1925
+ pointer-events: none;
1926
+ }
1927
+ .tntd-zoom-big-appear,
1928
+ .tntd-zoom-big-enter {
1929
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1930
+ opacity: 0;
1931
+ transform: scale(0);
1932
+ }
1933
+ .tntd-zoom-big-appear-prepare,
1934
+ .tntd-zoom-big-enter-prepare {
1935
+ transform: none;
1936
+ }
1937
+ .tntd-zoom-big-leave {
1938
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1939
+ }
1940
+ .tntd-zoom-big-fast-appear,
1941
+ .tntd-zoom-big-fast-enter,
1942
+ .tntd-zoom-big-fast-leave {
1943
+ animation-duration: 0.1s;
1944
+ animation-fill-mode: both;
1945
+ animation-play-state: paused;
1946
+ }
1947
+ .tntd-zoom-big-fast-appear.tntd-zoom-big-fast-appear-active,
1948
+ .tntd-zoom-big-fast-enter.tntd-zoom-big-fast-enter-active {
1949
+ animation-name: antZoomBigIn;
1950
+ animation-play-state: running;
1951
+ }
1952
+ .tntd-zoom-big-fast-leave.tntd-zoom-big-fast-leave-active {
1953
+ animation-name: antZoomBigOut;
1954
+ animation-play-state: running;
1955
+ pointer-events: none;
1956
+ }
1957
+ .tntd-zoom-big-fast-appear,
1958
+ .tntd-zoom-big-fast-enter {
1959
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1960
+ opacity: 0;
1961
+ transform: scale(0);
1962
+ }
1963
+ .tntd-zoom-big-fast-appear-prepare,
1964
+ .tntd-zoom-big-fast-enter-prepare {
1965
+ transform: none;
1966
+ }
1967
+ .tntd-zoom-big-fast-leave {
1968
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1969
+ }
1970
+ .tntd-zoom-up-appear,
1971
+ .tntd-zoom-up-enter,
1972
+ .tntd-zoom-up-leave {
1973
+ animation-duration: 0.2s;
1974
+ animation-fill-mode: both;
1975
+ animation-play-state: paused;
1976
+ }
1977
+ .tntd-zoom-up-appear.tntd-zoom-up-appear-active,
1978
+ .tntd-zoom-up-enter.tntd-zoom-up-enter-active {
1979
+ animation-name: antZoomUpIn;
1980
+ animation-play-state: running;
1981
+ }
1982
+ .tntd-zoom-up-leave.tntd-zoom-up-leave-active {
1983
+ animation-name: antZoomUpOut;
1984
+ animation-play-state: running;
1985
+ pointer-events: none;
1986
+ }
1987
+ .tntd-zoom-up-appear,
1988
+ .tntd-zoom-up-enter {
1989
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1990
+ opacity: 0;
1991
+ transform: scale(0);
1992
+ }
1993
+ .tntd-zoom-up-appear-prepare,
1994
+ .tntd-zoom-up-enter-prepare {
1995
+ transform: none;
1996
+ }
1997
+ .tntd-zoom-up-leave {
1998
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1999
+ }
2000
+ .tntd-zoom-down-appear,
2001
+ .tntd-zoom-down-enter,
2002
+ .tntd-zoom-down-leave {
2003
+ animation-duration: 0.2s;
2004
+ animation-fill-mode: both;
2005
+ animation-play-state: paused;
2006
+ }
2007
+ .tntd-zoom-down-appear.tntd-zoom-down-appear-active,
2008
+ .tntd-zoom-down-enter.tntd-zoom-down-enter-active {
2009
+ animation-name: antZoomDownIn;
2010
+ animation-play-state: running;
2011
+ }
2012
+ .tntd-zoom-down-leave.tntd-zoom-down-leave-active {
2013
+ animation-name: antZoomDownOut;
2014
+ animation-play-state: running;
2015
+ pointer-events: none;
2016
+ }
2017
+ .tntd-zoom-down-appear,
2018
+ .tntd-zoom-down-enter {
2019
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
2020
+ opacity: 0;
2021
+ transform: scale(0);
2022
+ }
2023
+ .tntd-zoom-down-appear-prepare,
2024
+ .tntd-zoom-down-enter-prepare {
2025
+ transform: none;
2026
+ }
2027
+ .tntd-zoom-down-leave {
2028
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
2029
+ }
2030
+ .tntd-zoom-left-appear,
2031
+ .tntd-zoom-left-enter,
2032
+ .tntd-zoom-left-leave {
2033
+ animation-duration: 0.2s;
2034
+ animation-fill-mode: both;
2035
+ animation-play-state: paused;
2036
+ }
2037
+ .tntd-zoom-left-appear.tntd-zoom-left-appear-active,
2038
+ .tntd-zoom-left-enter.tntd-zoom-left-enter-active {
2039
+ animation-name: antZoomLeftIn;
2040
+ animation-play-state: running;
2041
+ }
2042
+ .tntd-zoom-left-leave.tntd-zoom-left-leave-active {
2043
+ animation-name: antZoomLeftOut;
2044
+ animation-play-state: running;
2045
+ pointer-events: none;
2046
+ }
2047
+ .tntd-zoom-left-appear,
2048
+ .tntd-zoom-left-enter {
2049
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
2050
+ opacity: 0;
2051
+ transform: scale(0);
2052
+ }
2053
+ .tntd-zoom-left-appear-prepare,
2054
+ .tntd-zoom-left-enter-prepare {
2055
+ transform: none;
2056
+ }
2057
+ .tntd-zoom-left-leave {
2058
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
2059
+ }
2060
+ .tntd-zoom-right-appear,
2061
+ .tntd-zoom-right-enter,
2062
+ .tntd-zoom-right-leave {
2063
+ animation-duration: 0.2s;
2064
+ animation-fill-mode: both;
2065
+ animation-play-state: paused;
2066
+ }
2067
+ .tntd-zoom-right-appear.tntd-zoom-right-appear-active,
2068
+ .tntd-zoom-right-enter.tntd-zoom-right-enter-active {
2069
+ animation-name: antZoomRightIn;
2070
+ animation-play-state: running;
2071
+ }
2072
+ .tntd-zoom-right-leave.tntd-zoom-right-leave-active {
2073
+ animation-name: antZoomRightOut;
2074
+ animation-play-state: running;
2075
+ pointer-events: none;
2076
+ }
2077
+ .tntd-zoom-right-appear,
2078
+ .tntd-zoom-right-enter {
2079
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
2080
+ opacity: 0;
2081
+ transform: scale(0);
2082
+ }
2083
+ .tntd-zoom-right-appear-prepare,
2084
+ .tntd-zoom-right-enter-prepare {
2085
+ transform: none;
2086
+ }
2087
+ .tntd-zoom-right-leave {
2088
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
2089
+ }
2090
+ @keyframes antZoomIn {
2091
+ 0% {
2092
+ opacity: 0;
2093
+ transform: scale(0.2);
2094
+ }
2095
+ to {
2096
+ opacity: 1;
2097
+ transform: scale(1);
2098
+ }
2099
+ }
2100
+ @keyframes antZoomOut {
2101
+ 0% {
2102
+ transform: scale(1);
2103
+ }
2104
+ to {
2105
+ opacity: 0;
2106
+ transform: scale(0.2);
2107
+ }
2108
+ }
2109
+ @keyframes antZoomBigIn {
2110
+ 0% {
2111
+ opacity: 0;
2112
+ transform: scale(0.8);
2113
+ }
2114
+ to {
2115
+ opacity: 1;
2116
+ transform: scale(1);
2117
+ }
2118
+ }
2119
+ @keyframes antZoomBigOut {
2120
+ 0% {
2121
+ transform: scale(1);
2122
+ }
2123
+ to {
2124
+ opacity: 0;
2125
+ transform: scale(0.8);
2126
+ }
2127
+ }
2128
+ @keyframes antZoomUpIn {
2129
+ 0% {
2130
+ opacity: 0;
2131
+ transform: scale(0.8);
2132
+ transform-origin: 50% 0;
2133
+ }
2134
+ to {
2135
+ transform: scale(1);
2136
+ transform-origin: 50% 0;
2137
+ }
2138
+ }
2139
+ @keyframes antZoomUpOut {
2140
+ 0% {
2141
+ transform: scale(1);
2142
+ transform-origin: 50% 0;
2143
+ }
2144
+ to {
2145
+ opacity: 0;
2146
+ transform: scale(0.8);
2147
+ transform-origin: 50% 0;
2148
+ }
2149
+ }
2150
+ @keyframes antZoomLeftIn {
2151
+ 0% {
2152
+ opacity: 0;
2153
+ transform: scale(0.8);
2154
+ transform-origin: 0 50%;
2155
+ }
2156
+ to {
2157
+ transform: scale(1);
2158
+ transform-origin: 0 50%;
2159
+ }
2160
+ }
2161
+ @keyframes antZoomLeftOut {
2162
+ 0% {
2163
+ transform: scale(1);
2164
+ transform-origin: 0 50%;
2165
+ }
2166
+ to {
2167
+ opacity: 0;
2168
+ transform: scale(0.8);
2169
+ transform-origin: 0 50%;
2170
+ }
2171
+ }
2172
+ @keyframes antZoomRightIn {
2173
+ 0% {
2174
+ opacity: 0;
2175
+ transform: scale(0.8);
2176
+ transform-origin: 100% 50%;
2177
+ }
2178
+ to {
2179
+ transform: scale(1);
2180
+ transform-origin: 100% 50%;
2181
+ }
2182
+ }
2183
+ @keyframes antZoomRightOut {
2184
+ 0% {
2185
+ transform: scale(1);
2186
+ transform-origin: 100% 50%;
2187
+ }
2188
+ to {
2189
+ opacity: 0;
2190
+ transform: scale(0.8);
2191
+ transform-origin: 100% 50%;
2192
+ }
2193
+ }
2194
+ @keyframes antZoomDownIn {
2195
+ 0% {
2196
+ opacity: 0;
2197
+ transform: scale(0.8);
2198
+ transform-origin: 50% 100%;
2199
+ }
2200
+ to {
2201
+ transform: scale(1);
2202
+ transform-origin: 50% 100%;
2203
+ }
2204
+ }
2205
+ @keyframes antZoomDownOut {
2206
+ 0% {
2207
+ transform: scale(1);
2208
+ transform-origin: 50% 100%;
2209
+ }
2210
+ to {
2211
+ opacity: 0;
2212
+ transform: scale(0.8);
2213
+ transform-origin: 50% 100%;
2214
+ }
2215
+ }
2216
+ .tntd-motion-collapse-legacy {
2217
+ overflow: hidden;
2218
+ }
2219
+ .tntd-motion-collapse,
2220
+ .tntd-motion-collapse-legacy-active {
2221
+ transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1),
2222
+ opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
2223
+ }
2224
+ .tntd-motion-collapse {
2225
+ overflow: hidden;
2226
+ }
2227
+ @keyframes antCheckboxEffect {
2228
+ 0% {
2229
+ opacity: 0.5;
2230
+ transform: scale(1);
2231
+ }
2232
+ to {
2233
+ opacity: 0;
2234
+ transform: scale(1.6);
2235
+ }
2236
+ }
2237
+ .tntd-cascader-checkbox {
2238
+ font-feature-settings: 'tnum', 'tnum';
2239
+ box-sizing: border-box;
2240
+ color: rgba(0, 0, 0, 0.85);
2241
+ cursor: pointer;
2242
+ font-size: 14px;
2243
+ font-variant: tabular-nums;
2244
+ line-height: 1.5715;
2245
+ line-height: 1;
2246
+ list-style: none;
2247
+ margin: 0;
2248
+ outline: none;
2249
+ padding: 0;
2250
+ position: relative;
2251
+ top: 0.2em;
2252
+ white-space: nowrap;
2253
+ }
2254
+ .tntd-cascader-checkbox-input:focus + .tntd-cascader-checkbox-inner,
2255
+ .tntd-cascader-checkbox-wrapper:hover .tntd-cascader-checkbox-inner,
2256
+ .tntd-cascader-checkbox:hover .tntd-cascader-checkbox-inner {
2257
+ border-color: #126bfb;
2258
+ }
2259
+ .tntd-cascader-checkbox-checked:after {
2260
+ animation: antCheckboxEffect 0.36s ease-in-out;
2261
+ animation-fill-mode: backwards;
2262
+ border: 1px solid #126bfb;
2263
+ border-radius: 2px;
2264
+ content: '';
2265
+ height: 100%;
2266
+ left: 0;
2267
+ position: absolute;
2268
+ top: 0;
2269
+ visibility: hidden;
2270
+ width: 100%;
2271
+ }
2272
+ .tntd-cascader-checkbox-wrapper:hover .tntd-cascader-checkbox:after,
2273
+ .tntd-cascader-checkbox:hover:after {
2274
+ visibility: visible;
2275
+ }
2276
+ .tntd-cascader-checkbox-inner {
2277
+ background-color: #fff;
2278
+ border: 1px solid #b2becd;
2279
+ border-collapse: initial;
2280
+ border-radius: 2px;
2281
+ direction: ltr;
2282
+ display: block;
2283
+ height: 14px;
2284
+ left: 0;
2285
+ position: relative;
2286
+ top: 0;
2287
+ transition: all 0.3s;
2288
+ width: 14px;
2289
+ }
2290
+ .tntd-cascader-checkbox-inner:after {
2291
+ border: 1px solid #fff;
2292
+ border-left: 0;
2293
+ border-top: 0;
2294
+ content: ' ';
2295
+ display: table;
2296
+ height: 7px;
2297
+ left: 21.5%;
2298
+ opacity: 0;
2299
+ position: absolute;
2300
+ top: 50%;
2301
+ transform: rotate(45deg) scale(0) translate(-50%, -50%);
2302
+ transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
2303
+ width: 4px;
2304
+ }
2305
+ .tntd-cascader-checkbox-input {
2306
+ bottom: 0;
2307
+ cursor: pointer;
2308
+ height: 100%;
2309
+ left: 0;
2310
+ opacity: 0;
2311
+ position: absolute;
2312
+ right: 0;
2313
+ top: 0;
2314
+ width: 100%;
2315
+ z-index: 1;
2316
+ }
2317
+ .tntd-cascader-checkbox-checked .tntd-cascader-checkbox-inner:after {
2318
+ border: 1px solid #fff;
2319
+ border-left: 0;
2320
+ border-top: 0;
2321
+ content: ' ';
2322
+ display: table;
2323
+ opacity: 1;
2324
+ position: absolute;
2325
+ transform: rotate(45deg) scale(1) translate(-50%, -50%);
2326
+ transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
2327
+ }
2328
+ .tntd-cascader-checkbox-checked .tntd-cascader-checkbox-inner {
2329
+ background-color: #126bfb;
2330
+ border-color: #126bfb;
2331
+ }
2332
+ .tntd-cascader-checkbox-disabled {
2333
+ cursor: not-allowed;
2334
+ }
2335
+ .tntd-cascader-checkbox-disabled.tntd-cascader-checkbox-checked
2336
+ .tntd-cascader-checkbox-inner:after {
2337
+ animation-name: none;
2338
+ border-color: rgba(0, 0, 0, 0.25);
2339
+ }
2340
+ .tntd-cascader-checkbox-disabled .tntd-cascader-checkbox-input {
2341
+ cursor: not-allowed;
2342
+ pointer-events: none;
2343
+ }
2344
+ .tntd-cascader-checkbox-disabled .tntd-cascader-checkbox-inner {
2345
+ background-color: #f1f2f5;
2346
+ border-color: #b2becd !important;
2347
+ }
2348
+ .tntd-cascader-checkbox-disabled .tntd-cascader-checkbox-inner:after {
2349
+ animation-name: none;
2350
+ border-collapse: initial;
2351
+ border-color: #f1f2f5;
2352
+ }
2353
+ .tntd-cascader-checkbox-disabled + span {
2354
+ color: rgba(0, 0, 0, 0.25);
2355
+ cursor: not-allowed;
2356
+ }
2357
+ .tntd-cascader-checkbox-disabled:hover:after,
2358
+ .tntd-cascader-checkbox-wrapper:hover .tntd-cascader-checkbox-disabled:after {
2359
+ visibility: hidden;
2360
+ }
2361
+ .tntd-cascader-checkbox-wrapper {
2362
+ font-feature-settings: 'tnum', 'tnum';
2363
+ align-items: baseline;
2364
+ box-sizing: border-box;
2365
+ color: rgba(0, 0, 0, 0.85);
2366
+ cursor: pointer;
2367
+ display: inline-flex;
2368
+ font-size: 14px;
2369
+ font-variant: tabular-nums;
2370
+ line-height: 1.5715;
2371
+ line-height: inherit;
2372
+ list-style: none;
2373
+ margin: 0;
2374
+ padding: 0;
2375
+ }
2376
+ .tntd-cascader-checkbox-wrapper:after {
2377
+ content: '\a0';
2378
+ display: inline-block;
2379
+ overflow: hidden;
2380
+ width: 0;
2381
+ }
2382
+ .tntd-cascader-checkbox-wrapper.tntd-cascader-checkbox-wrapper-disabled {
2383
+ cursor: not-allowed;
2384
+ }
2385
+ .tntd-cascader-checkbox-wrapper + .tntd-cascader-checkbox-wrapper {
2386
+ margin-left: 8px;
2387
+ }
2388
+ .tntd-cascader-checkbox-wrapper.tntd-cascader-checkbox-wrapper-in-form-item input[type='checkbox'] {
2389
+ height: 14px;
2390
+ width: 14px;
2391
+ }
2392
+ .tntd-cascader-checkbox + span {
2393
+ padding-left: 8px;
2394
+ padding-right: 8px;
2395
+ }
2396
+ .tntd-cascader-checkbox-group {
2397
+ font-feature-settings: 'tnum', 'tnum';
2398
+ box-sizing: border-box;
2399
+ color: rgba(0, 0, 0, 0.85);
2400
+ display: inline-block;
2401
+ font-size: 14px;
2402
+ font-variant: tabular-nums;
2403
+ line-height: 1.5715;
2404
+ list-style: none;
2405
+ margin: 0;
2406
+ padding: 0;
2407
+ }
2408
+ .tntd-cascader-checkbox-group-item {
2409
+ margin-right: 8px;
2410
+ }
2411
+ .tntd-cascader-checkbox-group-item:last-child {
2412
+ margin-right: 0;
2413
+ }
2414
+ .tntd-cascader-checkbox-group-item + .tntd-cascader-checkbox-group-item {
2415
+ margin-left: 0;
2416
+ }
2417
+ .tntd-cascader-checkbox-indeterminate .tntd-cascader-checkbox-inner {
2418
+ background-color: #fff;
2419
+ border-color: #b2becd;
2420
+ }
2421
+ .tntd-cascader-checkbox-indeterminate .tntd-cascader-checkbox-inner:after {
2422
+ background-color: #126bfb;
2423
+ border: 0;
2424
+ content: ' ';
2425
+ height: 8px;
2426
+ left: 50%;
2427
+ opacity: 1;
2428
+ top: 50%;
2429
+ transform: translate(-50%, -50%) scale(1);
2430
+ width: 8px;
2431
+ }
2432
+ .tntd-cascader-checkbox-indeterminate.tntd-cascader-checkbox-disabled
2433
+ .tntd-cascader-checkbox-inner:after {
2434
+ background-color: rgba(0, 0, 0, 0.25);
2435
+ border-color: rgba(0, 0, 0, 0.25);
2436
+ }
2437
+ .tntd-cascader {
2438
+ width: 300px;
2439
+ }
2440
+ .tntd-cascader-checkbox {
2441
+ margin-right: 8px;
2442
+ top: 0;
2443
+ }
2444
+ .tntd-cascader-menus {
2445
+ align-items: flex-start;
2446
+ display: flex;
2447
+ flex-wrap: nowrap;
2448
+ }
2449
+ .tntd-cascader-menus.tntd-cascader-menu-empty .tntd-cascader-menu {
2450
+ height: auto;
2451
+ width: 100%;
2452
+ }
2453
+ .tntd-cascader-menu {
2454
+ -ms-overflow-style: -ms-autohiding-scrollbar;
2455
+ border-right: 1px solid #e1e6ee;
2456
+ flex-grow: 1;
2457
+ height: 180px;
2458
+ list-style: none;
2459
+ margin: -4px 0;
2460
+ min-width: 111px;
2461
+ overflow: hidden;
2462
+ padding: 4px 0;
2463
+ vertical-align: top;
2464
+ }
2465
+ .tntd-cascader-menu:last-child {
2466
+ border-right: 0;
2467
+ }
2468
+ .tntd-cascader-menu-item {
2469
+ align-items: center;
2470
+ cursor: pointer;
2471
+ display: flex;
2472
+ flex-wrap: nowrap;
2473
+ line-height: 26px;
2474
+ overflow: hidden;
2475
+ padding: 5px 12px;
2476
+ text-overflow: ellipsis;
2477
+ transition: all 0.3s;
2478
+ white-space: nowrap;
2479
+ }
2480
+ .tntd-cascader-menu-item:hover {
2481
+ background: #f1f2f5;
2482
+ }
2483
+ .tntd-cascader-menu-item-disabled {
2484
+ color: rgba(0, 0, 0, 0.25);
2485
+ cursor: not-allowed;
2486
+ }
2487
+ .tntd-cascader-menu-item-disabled:hover {
2488
+ background: transparent;
2489
+ }
2490
+ .tntd-cascader-menu-empty .tntd-cascader-menu-item {
2491
+ color: rgba(0, 0, 0, 0.25);
2492
+ cursor: default;
2493
+ pointer-events: none;
2494
+ }
2495
+ .tntd-cascader-menu-item-active:not(.tntd-cascader-menu-item-disabled),
2496
+ .tntd-cascader-menu-item-active:not(.tntd-cascader-menu-item-disabled):hover {
2497
+ background-color: #f3f4f6;
2498
+ }
2499
+ .tntd-cascader-menu-item-content {
2500
+ flex: auto;
2501
+ }
2502
+ .tntd-cascader-menu-item-expand .tntd-cascader-menu-item-expand-icon,
2503
+ .tntd-cascader-menu-item-loading-icon {
2504
+ color: rgba(0, 0, 0, 0.45);
2505
+ font-size: 10px;
2506
+ margin-left: 4px;
2507
+ }
2508
+ .tntd-cascader-menu-item-disabled.tntd-cascader-menu-item-expand
2509
+ .tntd-cascader-menu-item-expand-icon,
2510
+ .tntd-cascader-menu-item-disabled.tntd-cascader-menu-item-loading-icon {
2511
+ color: rgba(0, 0, 0, 0.25);
2512
+ }
2513
+ .tntd-cascader-menu-item-keyword {
2514
+ color: inherit;
2515
+ font-weight: 600;
2516
+ }
2517
+ .tntd-cascader-compact-item:not(.tntd-cascader-compact-last-item):not(.tntd-cascader-compact-item-rtl) {
2518
+ margin-right: -1px;
2519
+ }
2520
+ .tntd-cascader-compact-item:not(.tntd-cascader-compact-last-item).tntd-cascader-compact-item-rtl {
2521
+ margin-left: -1px;
2522
+ }
2523
+ .tntd-cascader-compact-item:active,
2524
+ .tntd-cascader-compact-item:focus,
2525
+ .tntd-cascader-compact-item:hover {
2526
+ z-index: 2;
2527
+ }
2528
+ .tntd-cascader-compact-item[disabled] {
2529
+ z-index: 0;
2530
+ }
2531
+ .tntd-cascader-compact-item:not(.tntd-cascader-compact-first-item):not(.tntd-cascader-compact-last-item).tntd-cascader {
2532
+ border-radius: 0;
2533
+ }
2534
+ .tntd-cascader-compact-item.tntd-cascader.tntd-cascader-compact-first-item:not(.tntd-cascader-compact-last-item):not(.tntd-cascader-compact-item-rtl) {
2535
+ border-bottom-right-radius: 0;
2536
+ border-top-right-radius: 0;
2537
+ }
2538
+ .tntd-cascader-compact-item.tntd-cascader.tntd-cascader-compact-item-rtl.tntd-cascader-compact-first-item:not(.tntd-cascader-compact-last-item),
2539
+ .tntd-cascader-compact-item.tntd-cascader.tntd-cascader-compact-last-item:not(.tntd-cascader-compact-first-item):not(.tntd-cascader-compact-item-rtl) {
2540
+ border-bottom-left-radius: 0;
2541
+ border-top-left-radius: 0;
2542
+ }
2543
+ .tntd-cascader-compact-item.tntd-cascader.tntd-cascader-compact-item-rtl.tntd-cascader-compact-last-item:not(.tntd-cascader-compact-first-item) {
2544
+ border-bottom-right-radius: 0;
2545
+ border-top-right-radius: 0;
2546
+ }
2547
+ .tntd-cascader-rtl .tntd-cascader-menu-item-expand-icon,
2548
+ .tntd-cascader-rtl .tntd-cascader-menu-item-loading-icon {
2549
+ margin-left: 0;
2550
+ margin-right: 4px;
2551
+ }
2552
+ .tntd-cascader-rtl .tntd-cascader-checkbox {
2553
+ margin-left: 8px;
2554
+ margin-right: 0;
2555
+ top: 0;
2556
+ }
2557
+ .tntd-empty {
2558
+ font-size: 14px;
2559
+ line-height: 1.5715;
2560
+ margin: 0 8px;
2561
+ text-align: center;
2562
+ }
2563
+ .tntd-empty-image {
2564
+ height: 100px;
2565
+ margin-bottom: 8px;
2566
+ }
2567
+ .tntd-empty-image img {
2568
+ height: 100%;
2569
+ }
2570
+ .tntd-empty-image svg {
2571
+ height: 100%;
2572
+ margin: auto;
2573
+ }
2574
+ .tntd-empty-footer {
2575
+ margin-top: 16px;
2576
+ }
2577
+ .tntd-empty-normal {
2578
+ color: rgba(0, 0, 0, 0.25);
2579
+ margin: 32px 0;
2580
+ }
2581
+ .tntd-empty-normal .tntd-empty-image {
2582
+ height: 40px;
2583
+ }
2584
+ .tntd-empty-small {
2585
+ color: rgba(0, 0, 0, 0.25);
2586
+ margin: 8px 0;
2587
+ }
2588
+ .tntd-empty-small .tntd-empty-image {
2589
+ height: 35px;
2590
+ }
2591
+ .tntd-empty-img-default-ellipse {
2592
+ fill: #f1f2f5;
2593
+ fill-opacity: 0.8;
2594
+ }
2595
+ .tntd-empty-img-default-path-1 {
2596
+ fill: #aeb8c2;
2597
+ }
2598
+ .tntd-empty-img-default-path-2 {
2599
+ fill: url(#linearGradient-1);
2600
+ }
2601
+ .tntd-empty-img-default-path-3 {
2602
+ fill: #f5f5f7;
2603
+ }
2604
+ .tntd-empty-img-default-path-4,
2605
+ .tntd-empty-img-default-path-5 {
2606
+ fill: #dce0e6;
2607
+ }
2608
+ .tntd-empty-img-default-g {
2609
+ fill: #fff;
2610
+ }
2611
+ .tntd-empty-img-simple-ellipse {
2612
+ fill: #f1f2f5;
2613
+ }
2614
+ .tntd-empty-img-simple-g {
2615
+ stroke: #b2becd;
2616
+ }
2617
+ .tntd-empty-img-simple-path {
2618
+ fill: #fafafa;
2619
+ }
2620
+ .tntd-empty-rtl {
2621
+ direction: rtl;
2622
+ }
2623
+ .tntd-select-single .tntd-select-selector {
2624
+ display: flex;
2625
+ }
2626
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-search {
2627
+ bottom: 0;
2628
+ left: 11px;
2629
+ position: absolute;
2630
+ right: 11px;
2631
+ top: 0;
2632
+ }
2633
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-search-input {
2634
+ width: 100%;
2635
+ }
2636
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-item,
2637
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-placeholder {
2638
+ line-height: 32px;
2639
+ padding: 0;
2640
+ transition: all 0.3s;
2641
+ }
2642
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-item {
2643
+ position: relative;
2644
+ -webkit-user-select: none;
2645
+ -moz-user-select: none;
2646
+ -ms-user-select: none;
2647
+ user-select: none;
2648
+ }
2649
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-placeholder {
2650
+ pointer-events: none;
2651
+ transition: none;
2652
+ }
2653
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-item:after,
2654
+ .tntd-select-single .tntd-select-selector .tntd-select-selection-placeholder:after,
2655
+ .tntd-select-single .tntd-select-selector:after {
2656
+ content: '\a0';
2657
+ display: inline-block;
2658
+ visibility: hidden;
2659
+ width: 0;
2660
+ }
2661
+ .tntd-select-single.tntd-select-show-arrow .tntd-select-selection-search {
2662
+ right: 25px;
2663
+ }
2664
+ .tntd-select-single.tntd-select-show-arrow .tntd-select-selection-item,
2665
+ .tntd-select-single.tntd-select-show-arrow .tntd-select-selection-placeholder {
2666
+ padding-right: 18px;
2667
+ }
2668
+ .tntd-select-single.tntd-select-open .tntd-select-selection-item {
2669
+ color: #bfbfbf;
2670
+ }
2671
+ .tntd-select-single:not(.tntd-select-customize-input) .tntd-select-selector {
2672
+ height: 32px;
2673
+ padding: 0 11px;
2674
+ width: 100%;
2675
+ }
2676
+ .tntd-select-single:not(.tntd-select-customize-input)
2677
+ .tntd-select-selector
2678
+ .tntd-select-selection-search-input {
2679
+ height: 32px;
2680
+ }
2681
+ .tntd-select-single:not(.tntd-select-customize-input) .tntd-select-selector:after {
2682
+ line-height: 32px;
2683
+ }
2684
+ .tntd-select-single.tntd-select-customize-input .tntd-select-selector:after {
2685
+ display: none;
2686
+ }
2687
+ .tntd-select-single.tntd-select-customize-input
2688
+ .tntd-select-selector
2689
+ .tntd-select-selection-search {
2690
+ position: static;
2691
+ width: 100%;
2692
+ }
2693
+ .tntd-select-single.tntd-select-customize-input
2694
+ .tntd-select-selector
2695
+ .tntd-select-selection-placeholder {
2696
+ left: 0;
2697
+ padding: 0 11px;
2698
+ position: absolute;
2699
+ right: 0;
2700
+ }
2701
+ .tntd-select-single.tntd-select-customize-input
2702
+ .tntd-select-selector
2703
+ .tntd-select-selection-placeholder:after {
2704
+ display: none;
2705
+ }
2706
+ .tntd-select-single.tntd-select-lg:not(.tntd-select-customize-input) .tntd-select-selector {
2707
+ height: 40px;
2708
+ }
2709
+ .tntd-select-single.tntd-select-lg:not(.tntd-select-customize-input)
2710
+ .tntd-select-selector
2711
+ .tntd-select-selection-item,
2712
+ .tntd-select-single.tntd-select-lg:not(.tntd-select-customize-input)
2713
+ .tntd-select-selector
2714
+ .tntd-select-selection-placeholder,
2715
+ .tntd-select-single.tntd-select-lg:not(.tntd-select-customize-input) .tntd-select-selector:after {
2716
+ line-height: 38px;
2717
+ }
2718
+ .tntd-select-single.tntd-select-lg:not(.tntd-select-customize-input):not(.tntd-select-customize-input)
2719
+ .tntd-select-selection-search-input {
2720
+ height: 38px;
2721
+ }
2722
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input) .tntd-select-selector {
2723
+ height: 24px;
2724
+ }
2725
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input)
2726
+ .tntd-select-selector
2727
+ .tntd-select-selection-item,
2728
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input)
2729
+ .tntd-select-selector
2730
+ .tntd-select-selection-placeholder,
2731
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input) .tntd-select-selector:after {
2732
+ line-height: 22px;
2733
+ }
2734
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input):not(.tntd-select-customize-input)
2735
+ .tntd-select-selection-search-input {
2736
+ height: 22px;
2737
+ }
2738
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input) .tntd-select-selection-search {
2739
+ left: 7px;
2740
+ right: 7px;
2741
+ }
2742
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input) .tntd-select-selector {
2743
+ padding: 0 7px;
2744
+ }
2745
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input).tntd-select-show-arrow
2746
+ .tntd-select-selection-search {
2747
+ right: 28px;
2748
+ }
2749
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input).tntd-select-show-arrow
2750
+ .tntd-select-selection-item,
2751
+ .tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input).tntd-select-show-arrow
2752
+ .tntd-select-selection-placeholder {
2753
+ padding-right: 21px;
2754
+ }
2755
+ .tntd-select-single.tntd-select-lg:not(.tntd-select-customize-input) .tntd-select-selector {
2756
+ padding: 0 11px;
2757
+ }
2758
+ .tntd-select-selection-overflow {
2759
+ display: flex;
2760
+ flex: auto;
2761
+ flex-wrap: wrap;
2762
+ max-width: 100%;
2763
+ position: relative;
2764
+ }
2765
+ .tntd-select-selection-overflow-item {
2766
+ align-self: center;
2767
+ flex: none;
2768
+ max-width: 100%;
2769
+ }
2770
+ .tntd-select-multiple .tntd-select-selector {
2771
+ align-items: center;
2772
+ display: flex;
2773
+ flex-wrap: wrap;
2774
+ padding: 1px 4px;
2775
+ }
2776
+ .tntd-select-show-search.tntd-select-multiple .tntd-select-selector {
2777
+ cursor: text;
2778
+ }
2779
+ .tntd-select-disabled.tntd-select-multiple .tntd-select-selector {
2780
+ background: #f1f2f5;
2781
+ cursor: not-allowed;
2782
+ }
2783
+ .tntd-select-multiple .tntd-select-selector:after {
2784
+ content: '\a0';
2785
+ display: inline-block;
2786
+ line-height: 22px;
2787
+ margin: 1px 0;
2788
+ width: 0;
2789
+ }
2790
+ .tntd-select-multiple.tntd-select-allow-clear .tntd-select-selector,
2791
+ .tntd-select-multiple.tntd-select-show-arrow .tntd-select-selector {
2792
+ padding-right: 24px;
2793
+ }
2794
+ .tntd-select-multiple .tntd-select-selection-item {
2795
+ -webkit-margin-end: 4px;
2796
+ -webkit-padding-start: 8px;
2797
+ -webkit-padding-end: 4px;
2798
+ background: #f1f2f5;
2799
+ border-radius: 2px;
2800
+ box-sizing: border-box;
2801
+ cursor: default;
2802
+ display: flex;
2803
+ flex: none;
2804
+ height: 22px;
2805
+ line-height: 22px;
2806
+ /* margin-bottom: 2px;
2807
+ margin-top: 2px; */
2808
+ margin-inline-end: 4px;
2809
+ max-width: 100%;
2810
+ padding-inline-end: 4px;
2811
+ padding-inline-start: 8px;
2812
+ position: relative;
2813
+ transition: font-size 0.3s, line-height 0.3s, height 0.3s;
2814
+ -webkit-user-select: none;
2815
+ -moz-user-select: none;
2816
+ -ms-user-select: none;
2817
+ user-select: none;
2818
+ border-radius: 16px;
2819
+ }
2820
+ .tntd-select-disabled.tntd-select-multiple .tntd-select-selection-item {
2821
+ border-color: #b2becd;
2822
+ color: #bfbfbf;
2823
+ cursor: not-allowed;
2824
+ }
2825
+ .tntd-select-multiple .tntd-select-selection-item-content {
2826
+ display: inline-block;
2827
+ margin-right: 4px;
2828
+ overflow: hidden;
2829
+ text-overflow: ellipsis;
2830
+ white-space: pre;
2831
+ font-family: PingFangSC-Regular;
2832
+ font-size: 14px;
2833
+ color: #17233d;
2834
+ }
2835
+ .tntd-select-multiple .tntd-select-selection-item-remove {
2836
+ -webkit-font-smoothing: antialiased;
2837
+ -moz-osx-font-smoothing: grayscale;
2838
+ color: inherit;
2839
+ color: rgba(0, 0, 0, 0.45);
2840
+ cursor: pointer;
2841
+ display: inline-block;
2842
+ font-size: 10px;
2843
+ font-style: normal;
2844
+ font-weight: 700;
2845
+ line-height: 0;
2846
+ line-height: inherit;
2847
+ text-align: center;
2848
+ text-rendering: optimizelegibility;
2849
+ text-transform: none;
2850
+ vertical-align: -0.125em;
2851
+ }
2852
+ .tntd-select-multiple .tntd-select-selection-item-remove > * {
2853
+ line-height: 1;
2854
+ }
2855
+ .tntd-select-multiple .tntd-select-selection-item-remove svg {
2856
+ display: inline-block;
2857
+ }
2858
+ .tntd-select-multiple .tntd-select-selection-item-remove:before {
2859
+ display: none;
2860
+ }
2861
+ .tntd-select-multiple
2862
+ .tntd-select-selection-item-remove
2863
+ .tntd-select-multiple
2864
+ .tntd-select-selection-item-remove-icon {
2865
+ display: block;
2866
+ }
2867
+ .tntd-select-multiple .tntd-select-selection-item-remove > .anticon {
2868
+ vertical-align: middle;
2869
+ }
2870
+ .tntd-select-multiple .tntd-select-selection-item-remove:hover {
2871
+ color: rgba(0, 0, 0, 0.75);
2872
+ }
2873
+ .tntd-select-multiple
2874
+ .tntd-select-selection-overflow-item
2875
+ + .tntd-select-selection-overflow-item
2876
+ .tntd-select-selection-search {
2877
+ -webkit-margin-start: 0;
2878
+ margin-inline-start: 0;
2879
+ }
2880
+ .tntd-select-multiple .tntd-select-selection-search {
2881
+ -webkit-margin-start: 7px;
2882
+ margin-inline-start: 7px;
2883
+ max-width: 100%;
2884
+ position: relative;
2885
+ }
2886
+ .tntd-select-multiple .tntd-select-selection-search-input,
2887
+ .tntd-select-multiple .tntd-select-selection-search-mirror {
2888
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
2889
+ sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
2890
+ height: 24px;
2891
+ line-height: 24px;
2892
+ transition: all 0.3s;
2893
+ }
2894
+ .tntd-select-multiple .tntd-select-selection-search-input {
2895
+ min-width: 4.1px;
2896
+ width: 100%;
2897
+ }
2898
+ .tntd-select-multiple .tntd-select-selection-search-mirror {
2899
+ left: 0;
2900
+ position: absolute;
2901
+ top: 0;
2902
+ visibility: hidden;
2903
+ white-space: pre;
2904
+ z-index: 999;
2905
+ }
2906
+ .tntd-select-multiple .tntd-select-selection-placeholder {
2907
+ left: 11px;
2908
+ position: absolute;
2909
+ right: 11px;
2910
+ top: 50%;
2911
+ transform: translateY(-50%);
2912
+ transition: all 0.3s;
2913
+ }
2914
+ .tntd-select-multiple.tntd-select-lg .tntd-select-selector:after {
2915
+ line-height: 32px;
2916
+ }
2917
+ .tntd-select-multiple.tntd-select-lg .tntd-select-selection-item {
2918
+ line-height: 32px;
2919
+ }
2920
+ .tntd-select-multiple.tntd-select-lg .tntd-select-selection-search {
2921
+ height: 32px;
2922
+ line-height: 32px;
2923
+ }
2924
+ .tntd-select-multiple.tntd-select-lg .tntd-select-selection-search-input,
2925
+ .tntd-select-multiple.tntd-select-lg .tntd-select-selection-search-mirror {
2926
+ height: 32px;
2927
+ line-height: 32px;
2928
+ }
2929
+ .tntd-select-multiple.tntd-select-sm .tntd-select-selector:after {
2930
+ line-height: 16px;
2931
+ }
2932
+ .tntd-select-multiple.tntd-select-sm .tntd-select-selection-item {
2933
+ height: 16px;
2934
+ line-height: 14px;
2935
+ }
2936
+ .tntd-select-multiple.tntd-select-sm .tntd-select-selection-search {
2937
+ height: 16px;
2938
+ line-height: 16px;
2939
+ }
2940
+ .tntd-select-multiple.tntd-select-sm .tntd-select-selection-search-input,
2941
+ .tntd-select-multiple.tntd-select-sm .tntd-select-selection-search-mirror {
2942
+ height: 16px;
2943
+ line-height: 14px;
2944
+ }
2945
+ .tntd-select-multiple.tntd-select-sm .tntd-select-selection-placeholder {
2946
+ left: 7px;
2947
+ }
2948
+ .tntd-select-multiple.tntd-select-sm .tntd-select-selection-search {
2949
+ -webkit-margin-start: 3px;
2950
+ margin-inline-start: 3px;
2951
+ }
2952
+ .tntd-select-multiple.tntd-select-lg .tntd-select-selection-item {
2953
+ height: 32px;
2954
+ line-height: 32px;
2955
+ }
2956
+ .tntd-select-disabled .tntd-select-selection-item-remove {
2957
+ display: none;
2958
+ }
2959
+ .tntd-select-status-error.tntd-select:not(.tntd-select-disabled):not(.tntd-select-customize-input):not(.tntd-pagination-size-changer)
2960
+ .tntd-select-selector {
2961
+ background-color: #fff;
2962
+ border-color: #ef4444 !important;
2963
+ }
2964
+ .tntd-select-status-error.tntd-select:not(.tntd-select-disabled):not(.tntd-select-customize-input):not(.tntd-pagination-size-changer).tntd-select-focused
2965
+ .tntd-select-selector,
2966
+ .tntd-select-status-error.tntd-select:not(.tntd-select-disabled):not(.tntd-select-customize-input):not(.tntd-pagination-size-changer).tntd-select-open
2967
+ .tntd-select-selector {
2968
+ border-color: #ef4444;
2969
+ border-right-width: 1px;
2970
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
2971
+ outline: 0;
2972
+ }
2973
+ .tntd-select-status-warning.tntd-select:not(.tntd-select-disabled):not(.tntd-select-customize-input):not(.tntd-pagination-size-changer)
2974
+ .tntd-select-selector {
2975
+ background-color: #fff;
2976
+ border-color: #f7b035 !important;
2977
+ }
2978
+ .tntd-select-status-warning.tntd-select:not(.tntd-select-disabled):not(.tntd-select-customize-input):not(.tntd-pagination-size-changer).tntd-select-focused
2979
+ .tntd-select-selector,
2980
+ .tntd-select-status-warning.tntd-select:not(.tntd-select-disabled):not(.tntd-select-customize-input):not(.tntd-pagination-size-changer).tntd-select-open
2981
+ .tntd-select-selector {
2982
+ border-color: #f7b035;
2983
+ border-right-width: 1px;
2984
+ box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
2985
+ outline: 0;
2986
+ }
2987
+ .tntd-select-status-error.tntd-select-has-feedback .tntd-select-clear,
2988
+ .tntd-select-status-success.tntd-select-has-feedback .tntd-select-clear,
2989
+ .tntd-select-status-validating.tntd-select-has-feedback .tntd-select-clear,
2990
+ .tntd-select-status-warning.tntd-select-has-feedback .tntd-select-clear {
2991
+ right: 28px;
2992
+ }
2993
+ .tntd-select-status-error.tntd-select-has-feedback .tntd-select-selection-selected-value,
2994
+ .tntd-select-status-success.tntd-select-has-feedback .tntd-select-selection-selected-value,
2995
+ .tntd-select-status-validating.tntd-select-has-feedback .tntd-select-selection-selected-value,
2996
+ .tntd-select-status-warning.tntd-select-has-feedback .tntd-select-selection-selected-value {
2997
+ padding-right: 42px;
2998
+ }
2999
+ .tntd-select {
3000
+ font-feature-settings: 'tnum', 'tnum';
3001
+ box-sizing: border-box;
3002
+ color: rgba(0, 0, 0, 0.85);
3003
+ cursor: pointer;
3004
+ display: inline-block;
3005
+ font-size: 14px;
3006
+ font-variant: tabular-nums;
3007
+ line-height: 1.5715;
3008
+ list-style: none;
3009
+ margin: 0;
3010
+ padding: 0;
3011
+ position: relative;
3012
+ }
3013
+ .tntd-select:not(.tntd-select-customize-input) .tntd-select-selector {
3014
+ background-color: #fff;
3015
+ border: 1px solid #e1e6ee;
3016
+ border-radius: 8px;
3017
+ position: relative;
3018
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
3019
+ }
3020
+ .tntd-select:not(.tntd-select-customize-input) .tntd-select-selector input {
3021
+ cursor: pointer;
3022
+ }
3023
+ .ant-input-group.ant-input-group-compact > .tntd-select > .tntd-select-selector {
3024
+ border-radius: 0;
3025
+ }
3026
+ .ant-input-group.ant-input-group-compact > .tntd-select-multiple .tntd-select-selector {
3027
+ padding-top: 3px;
3028
+ padding-bottom: 3px;
3029
+ }
3030
+ .ant-input-group.ant-input-group-compact > *:last-child,
3031
+ .ant-input-group.ant-input-group-compact > .tntd-select:last-child > .tntd-select-selector {
3032
+ border-top-right-radius: 8px;
3033
+ border-bottom-right-radius: 8px;
3034
+ }
3035
+ .tntd-select-show-search.tntd-select:not(.tntd-select-customize-input) .tntd-select-selector {
3036
+ cursor: text;
3037
+ }
3038
+ .tntd-select-show-search.tntd-select:not(.tntd-select-customize-input) .tntd-select-selector input {
3039
+ cursor: auto;
3040
+ }
3041
+ .tntd-select-focused:not(.tntd-select-disabled).tntd-select:not(.tntd-select-customize-input)
3042
+ .tntd-select-selector {
3043
+ border-color: #126bfb;
3044
+ border-right-width: 1px;
3045
+ outline: 0;
3046
+ }
3047
+ .tntd-select-disabled.tntd-select:not(.tntd-select-customize-input) .tntd-select-selector {
3048
+ background: #f1f2f5;
3049
+ color: rgba(0, 0, 0, 0.25);
3050
+ cursor: not-allowed;
3051
+ }
3052
+ .tntd-select-multiple.tntd-select-disabled.tntd-select:not(.tntd-select-customize-input)
3053
+ .tntd-select-selector {
3054
+ background: #f1f2f5;
3055
+ }
3056
+ .tntd-select-disabled.tntd-select:not(.tntd-select-customize-input) .tntd-select-selector input {
3057
+ cursor: not-allowed;
3058
+ }
3059
+ .tntd-select:not(.tntd-select-customize-input)
3060
+ .tntd-select-selector
3061
+ .tntd-select-selection-search-input {
3062
+ -webkit-appearance: none;
3063
+ -moz-appearance: none;
3064
+ appearance: none;
3065
+ background: transparent;
3066
+ border: none;
3067
+ margin: 0;
3068
+ outline: none;
3069
+ padding: 0;
3070
+ }
3071
+ .tntd-select:not(.tntd-select-customize-input)
3072
+ .tntd-select-selector
3073
+ .tntd-select-selection-search-input::-webkit-search-cancel-button {
3074
+ -webkit-appearance: none;
3075
+ display: none;
3076
+ }
3077
+ .tntd-select:not(.tntd-select-disabled):hover .tntd-select-selector {
3078
+ border-color: #126bfb;
3079
+ border-right-width: 1px;
3080
+ cursor: pointer;
3081
+ }
3082
+ .tntd-select-selection-item {
3083
+ flex: 1 1;
3084
+ font-weight: 400;
3085
+ overflow: hidden;
3086
+ text-overflow: ellipsis;
3087
+ white-space: nowrap;
3088
+ }
3089
+ @media (-ms-high-contrast: none) {
3090
+ .tntd-select-selection-item,
3091
+ .tntd-select-selection-item ::-ms-backdrop {
3092
+ flex: auto;
3093
+ }
3094
+ }
3095
+ .tntd-select-selection-placeholder {
3096
+ color: #8b919e;
3097
+ flex: 1 1;
3098
+ overflow: hidden;
3099
+ pointer-events: none;
3100
+ text-overflow: ellipsis;
3101
+ white-space: nowrap;
3102
+ }
3103
+ @media (-ms-high-contrast: none) {
3104
+ .tntd-select-selection-placeholder,
3105
+ .tntd-select-selection-placeholder ::-ms-backdrop {
3106
+ flex: auto;
3107
+ }
3108
+ }
3109
+ .tntd-select-arrow {
3110
+ -webkit-font-smoothing: antialiased;
3111
+ -moz-osx-font-smoothing: grayscale;
3112
+ align-items: center;
3113
+ color: inherit;
3114
+ color: #8b919e;
3115
+ display: inline-block;
3116
+ display: flex;
3117
+ font-size: 12px;
3118
+ font-style: normal;
3119
+ height: 12px;
3120
+ line-height: 0;
3121
+ line-height: 1;
3122
+ margin-top: -6px;
3123
+ pointer-events: none;
3124
+ position: absolute;
3125
+ right: 11px;
3126
+ text-align: center;
3127
+ text-rendering: optimizelegibility;
3128
+ text-transform: none;
3129
+ top: 50%;
3130
+ vertical-align: -0.125em;
3131
+ }
3132
+ .tntd-select-arrow > * {
3133
+ line-height: 1;
3134
+ }
3135
+ .tntd-select-arrow svg {
3136
+ display: inline-block;
3137
+ }
3138
+ .tntd-select-arrow:before {
3139
+ display: none;
3140
+ }
3141
+ .tntd-select-arrow .tntd-select-arrow-icon {
3142
+ display: block;
3143
+ }
3144
+ .tntd-select-arrow .anticon {
3145
+ transition: transform 0.3s;
3146
+ vertical-align: top;
3147
+ }
3148
+ .tntd-select-arrow .anticon > svg {
3149
+ vertical-align: top;
3150
+ }
3151
+ .tntd-select-arrow .anticon:not(.tntd-select-suffix) {
3152
+ pointer-events: auto;
3153
+ }
3154
+ .tntd-select-disabled .tntd-select-arrow {
3155
+ cursor: not-allowed;
3156
+ }
3157
+ .tntd-select-arrow > :not(:last-child) {
3158
+ -webkit-margin-end: 8px;
3159
+ margin-inline-end: 8px;
3160
+ }
3161
+ .tntd-select-clear {
3162
+ background: #fff;
3163
+ color: rgba(0, 0, 0, 0.25);
3164
+ cursor: pointer;
3165
+ display: inline-block;
3166
+ font-size: 12px;
3167
+ font-style: normal;
3168
+ height: 12px;
3169
+ line-height: 1;
3170
+ margin-top: -7px;
3171
+ opacity: 0;
3172
+ position: absolute;
3173
+ right: 13px;
3174
+ text-align: center;
3175
+ text-rendering: auto;
3176
+ text-transform: none;
3177
+ top: 50%;
3178
+ transition: color 0.3s ease, opacity 0.15s ease;
3179
+ width: 12px;
3180
+ z-index: 1;
3181
+ }
3182
+ .tntd-select-clear:before {
3183
+ display: block;
3184
+ }
3185
+ .tntd-select-clear:hover {
3186
+ color: rgba(0, 0, 0, 0.45);
3187
+ }
3188
+ .tntd-select:hover .tntd-select-clear {
3189
+ opacity: 1;
3190
+ }
3191
+ .tntd-select-dropdown {
3192
+ font-feature-settings: 'tnum', 'tnum';
3193
+ background-color: #fff;
3194
+ border-radius: 2px;
3195
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08),
3196
+ 0 9px 28px 8px rgba(0, 0, 0, 0.05);
3197
+ box-sizing: border-box;
3198
+ color: rgba(0, 0, 0, 0.85);
3199
+ font-size: 14px;
3200
+ font-variant: tabular-nums;
3201
+ font-variant: normal;
3202
+ left: -9999px;
3203
+ line-height: 1.5715;
3204
+ list-style: none;
3205
+ margin: 0;
3206
+ outline: none;
3207
+ overflow: hidden;
3208
+ padding: 4px 0;
3209
+ position: absolute;
3210
+ top: -9999px;
3211
+ z-index: 1050;
3212
+ border-radius: 16px;
3213
+ }
3214
+ .tntd-select-dropdown.tntd-slide-up-appear.tntd-slide-up-appear-active.tntd-select-dropdown-placement-bottomLeft,
3215
+ .tntd-select-dropdown.tntd-slide-up-enter.tntd-slide-up-enter-active.tntd-select-dropdown-placement-bottomLeft {
3216
+ animation-name: antSlideUpIn;
3217
+ }
3218
+ .tntd-select-dropdown.tntd-slide-up-appear.tntd-slide-up-appear-active.tntd-select-dropdown-placement-topLeft,
3219
+ .tntd-select-dropdown.tntd-slide-up-enter.tntd-slide-up-enter-active.tntd-select-dropdown-placement-topLeft {
3220
+ animation-name: antSlideDownIn;
3221
+ }
3222
+ .tntd-select-dropdown.tntd-slide-up-leave.tntd-slide-up-leave-active.tntd-select-dropdown-placement-bottomLeft {
3223
+ animation-name: antSlideUpOut;
3224
+ }
3225
+ .tntd-select-dropdown.tntd-slide-up-leave.tntd-slide-up-leave-active.tntd-select-dropdown-placement-topLeft {
3226
+ animation-name: antSlideDownOut;
3227
+ }
3228
+ .tntd-select-dropdown-hidden {
3229
+ display: none;
3230
+ }
3231
+ .tntd-select-dropdown-empty {
3232
+ color: rgba(0, 0, 0, 0.25);
3233
+ }
3234
+ .tntd-select-item-empty {
3235
+ color: rgba(0, 0, 0, 0.85);
3236
+ color: rgba(0, 0, 0, 0.25);
3237
+ }
3238
+ .tntd-select-item,
3239
+ .tntd-select-item-empty {
3240
+ display: block;
3241
+ font-size: 14px;
3242
+ font-weight: 400;
3243
+ line-height: 22px;
3244
+ min-height: 28px;
3245
+ padding: 5px 12px;
3246
+ position: relative;
3247
+ }
3248
+ .tntd-select-item {
3249
+ color: rgba(0, 0, 0, 0.85);
3250
+ cursor: pointer;
3251
+ transition: background 0.3s ease;
3252
+ }
3253
+ .tntd-select-item-group {
3254
+ color: rgba(0, 0, 0, 0.45);
3255
+ cursor: default;
3256
+ font-size: 12px;
3257
+ }
3258
+ .tntd-select-item-option {
3259
+ display: flex;
3260
+ }
3261
+ .tntd-select-item-option-content {
3262
+ flex: auto;
3263
+ overflow: hidden;
3264
+ text-overflow: ellipsis;
3265
+ white-space: nowrap;
3266
+ }
3267
+ .tntd-select-item-option-state {
3268
+ flex: none;
3269
+ }
3270
+ .tntd-select-item-option-active:not(.tntd-select-item-option-disabled) {
3271
+ background-color: #f1f2f5;
3272
+ }
3273
+ .tntd-select-item-option-selected:not(.tntd-select-item-option-disabled) {
3274
+ background-color: #f3f4f6;
3275
+ color: rgba(0, 0, 0, 0.85);
3276
+ font-weight: 600;
3277
+ }
3278
+ .tntd-select-item-option-selected:not(.tntd-select-item-option-disabled)
3279
+ .tntd-select-item-option-state {
3280
+ color: #126bfb;
3281
+ }
3282
+ .tntd-select-item-option-disabled {
3283
+ color: rgba(0, 0, 0, 0.25);
3284
+ cursor: not-allowed;
3285
+ }
3286
+ .tntd-select-item-option-disabled.tntd-select-item-option-selected {
3287
+ background-color: #f1f2f5;
3288
+ }
3289
+ .tntd-select-item-option-grouped {
3290
+ padding-left: 24px;
3291
+ }
3292
+ .tntd-select-lg {
3293
+ font-size: 16px;
3294
+ }
3295
+ .tntd-select-borderless .tntd-select-selector {
3296
+ background-color: initial !important;
3297
+ border-color: transparent !important;
3298
+ box-shadow: none !important;
3299
+ }
3300
+ .tntd-select.tntd-select-in-form-item {
3301
+ width: 100%;
3302
+ }
3303
+ .tntd-select-compact-item:not(.tntd-select-compact-last-item) {
3304
+ margin-right: -1px;
3305
+ }
3306
+ .tntd-select-compact-item:not(.tntd-select-compact-last-item).tntd-select-compact-item-rtl {
3307
+ margin-left: -1px;
3308
+ margin-right: 0;
3309
+ }
3310
+ .tntd-select-compact-item.tntd-select-focused > *,
3311
+ .tntd-select-compact-item:active > *,
3312
+ .tntd-select-compact-item:focus > *,
3313
+ .tntd-select-compact-item:hover > * {
3314
+ z-index: 2;
3315
+ }
3316
+ .tntd-select-compact-item[disabled] > * {
3317
+ z-index: 0;
3318
+ }
3319
+ .tntd-select-compact-item:not(.tntd-select-compact-first-item):not(.tntd-select-compact-last-item).tntd-select
3320
+ > .tntd-select-selector {
3321
+ border-radius: 0;
3322
+ }
3323
+ .tntd-select-compact-item.tntd-select-compact-first-item.tntd-select:not(.tntd-select-compact-last-item):not(.tntd-select-compact-item-rtl)
3324
+ > .tntd-select-selector {
3325
+ border-bottom-right-radius: 0;
3326
+ border-top-right-radius: 0;
3327
+ }
3328
+ .tntd-select-compact-item.tntd-select-compact-last-item.tntd-select:not(.tntd-select-compact-first-item):not(.tntd-select-compact-item-rtl)
3329
+ > .tntd-select-selector,
3330
+ .tntd-select-compact-item.tntd-select.tntd-select-compact-first-item.tntd-select-compact-item-rtl:not(.tntd-select-compact-last-item)
3331
+ > .tntd-select-selector {
3332
+ border-bottom-left-radius: 0;
3333
+ border-top-left-radius: 0;
3334
+ }
3335
+ .tntd-select-compact-item.tntd-select.tntd-select-compact-last-item.tntd-select-compact-item-rtl:not(.tntd-select-compact-first-item)
3336
+ > .tntd-select-selector {
3337
+ border-bottom-right-radius: 0;
3338
+ border-top-right-radius: 0;
3339
+ }
3340
+ .tntd-select-rtl {
3341
+ direction: rtl;
3342
+ }
3343
+ .tntd-select-rtl .tntd-select-arrow,
3344
+ .tntd-select-rtl .tntd-select-clear {
3345
+ left: 11px;
3346
+ right: auto;
3347
+ }
3348
+ .tntd-select-dropdown-rtl {
3349
+ direction: rtl;
3350
+ }
3351
+ .tntd-select-dropdown-rtl .tntd-select-item-option-grouped {
3352
+ padding-left: 12px;
3353
+ padding-right: 24px;
3354
+ }
3355
+ .tntd-select-rtl.tntd-select-multiple.tntd-select-allow-clear .tntd-select-selector,
3356
+ .tntd-select-rtl.tntd-select-multiple.tntd-select-show-arrow .tntd-select-selector {
3357
+ padding-left: 24px;
3358
+ padding-right: 4px;
3359
+ }
3360
+ .tntd-select-rtl.tntd-select-multiple .tntd-select-selection-item {
3361
+ text-align: right;
3362
+ }
3363
+ .tntd-select-rtl.tntd-select-multiple .tntd-select-selection-item-content {
3364
+ margin-left: 4px;
3365
+ margin-right: 0;
3366
+ text-align: right;
3367
+ }
3368
+ .tntd-select-rtl.tntd-select-multiple .tntd-select-selection-search-mirror {
3369
+ left: auto;
3370
+ right: 0;
3371
+ }
3372
+ .tntd-select-rtl.tntd-select-multiple .tntd-select-selection-placeholder {
3373
+ left: auto;
3374
+ right: 11px;
3375
+ }
3376
+ .tntd-select-rtl.tntd-select-multiple.tntd-select-sm .tntd-select-selection-placeholder {
3377
+ right: 7px;
3378
+ }
3379
+ .tntd-select-rtl.tntd-select-single .tntd-select-selector .tntd-select-selection-item,
3380
+ .tntd-select-rtl.tntd-select-single .tntd-select-selector .tntd-select-selection-placeholder {
3381
+ left: 9px;
3382
+ right: 0;
3383
+ text-align: right;
3384
+ }
3385
+ .tntd-select-rtl.tntd-select-single.tntd-select-show-arrow .tntd-select-selection-search {
3386
+ left: 25px;
3387
+ right: 11px;
3388
+ }
3389
+ .tntd-select-rtl.tntd-select-single.tntd-select-show-arrow .tntd-select-selection-item,
3390
+ .tntd-select-rtl.tntd-select-single.tntd-select-show-arrow .tntd-select-selection-placeholder {
3391
+ padding-left: 18px;
3392
+ padding-right: 0;
3393
+ }
3394
+ .tntd-select-rtl.tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input).tntd-select-show-arrow
3395
+ .tntd-select-selection-search {
3396
+ right: 6px;
3397
+ }
3398
+ .tntd-select-rtl.tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input).tntd-select-show-arrow
3399
+ .tntd-select-selection-item,
3400
+ .tntd-select-rtl.tntd-select-single.tntd-select-sm:not(.tntd-select-customize-input).tntd-select-show-arrow
3401
+ .tntd-select-selection-placeholder {
3402
+ padding-left: 21px;
3403
+ padding-right: 0;
3404
+ }
3405
+ .tntd-cascader-no-data-wrapper {
3406
+ text-align: center;
3407
+ }
3408
+ .tntd-cascader-no-data-content {
3409
+ font-family: PingFangSC-Regular;
3410
+ font-size: 14px;
3411
+ color: rgba(0, 0, 0, 0.25);
3412
+ margin-top: 6;
3413
+ }
3414
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3415
+ /* stylelint-disable no-duplicate-selectors */
3416
+ /* stylelint-disable */
3417
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
3418
+
3419
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3420
+ /* stylelint-disable no-duplicate-selectors */
3421
+ /* stylelint-disable */
3422
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
3423
+ /* 深色主题变量(通过覆盖变量实现主题切换) */
3424
+ /* 核心滚动条混合(建议添加到需要滚动的容器类) */
3425
+ .ant-tooltip {
3426
+ box-sizing: border-box;
3427
+ margin: 0;
3428
+ padding: 0;
3429
+ color: #17233d;
3430
+ font-size: 14px;
3431
+ font-variant: tabular-nums;
3432
+ line-height: 1.57142857;
3433
+ list-style: none;
3434
+ font-feature-settings: 'tnum';
3435
+ position: absolute;
3436
+ z-index: 1060;
3437
+ display: block;
3438
+ max-width: 250px;
3439
+ visibility: visible;
3440
+ }
3441
+ .ant-tooltip-hidden {
3442
+ display: none;
3443
+ }
3444
+ .ant-tooltip-placement-top,
3445
+ .ant-tooltip-placement-topLeft,
3446
+ .ant-tooltip-placement-topRight {
3447
+ padding-bottom: calc(5px - 1px + 4px);
3448
+ }
3449
+ .ant-tooltip-placement-right,
3450
+ .ant-tooltip-placement-rightTop,
3451
+ .ant-tooltip-placement-rightBottom {
3452
+ padding-left: calc(5px - 1px + 4px);
3453
+ }
3454
+ .ant-tooltip-placement-bottom,
3455
+ .ant-tooltip-placement-bottomLeft,
3456
+ .ant-tooltip-placement-bottomRight {
3457
+ padding-top: calc(5px - 1px + 4px);
3458
+ }
3459
+ .ant-tooltip-placement-left,
3460
+ .ant-tooltip-placement-leftTop,
3461
+ .ant-tooltip-placement-leftBottom {
3462
+ padding-right: calc(5px - 1px + 4px);
3463
+ }
3464
+ .ant-tooltip-inner {
3465
+ min-width: 30px;
3466
+ min-height: 32px;
3467
+ padding: 6px 8px;
3468
+ color: #fff;
3469
+ text-align: left;
3470
+ text-decoration: none;
3471
+ word-wrap: break-word;
3472
+ background-color: #17233d;
3473
+ border-radius: 8px;
3474
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
3475
+ }
3476
+ .ant-tooltip-arrow {
3477
+ position: absolute;
3478
+ display: block;
3479
+ width: 13.07106781px;
3480
+ height: 13.07106781px;
3481
+ overflow: hidden;
3482
+ background: transparent;
3483
+ pointer-events: none;
3484
+ }
3485
+ .ant-tooltip-arrow::before {
3486
+ position: absolute;
3487
+ top: 0;
3488
+ right: 0;
3489
+ bottom: 0;
3490
+ left: 0;
3491
+ display: block;
3492
+ width: 5px;
3493
+ height: 5px;
3494
+ margin: auto;
3495
+ background-color: #17233d;
3496
+ content: '';
3497
+ pointer-events: auto;
3498
+ }
3499
+ .ant-tooltip-placement-top .ant-tooltip-arrow,
3500
+ .ant-tooltip-placement-topLeft .ant-tooltip-arrow,
3501
+ .ant-tooltip-placement-topRight .ant-tooltip-arrow {
3502
+ bottom: calc(calc(5px - 1px + 4px) - 13.07106781px);
3503
+ }
3504
+ .ant-tooltip-placement-top .ant-tooltip-arrow::before,
3505
+ .ant-tooltip-placement-topLeft .ant-tooltip-arrow::before,
3506
+ .ant-tooltip-placement-topRight .ant-tooltip-arrow::before {
3507
+ box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
3508
+ transform: translateY(-6.53553391px) rotate(45deg);
3509
+ }
3510
+ .ant-tooltip-placement-top .ant-tooltip-arrow {
3511
+ left: 50%;
3512
+ transform: translateX(-50%);
3513
+ }
3514
+ .ant-tooltip-placement-topLeft .ant-tooltip-arrow {
3515
+ left: 13px;
3516
+ }
3517
+ .ant-tooltip-placement-topRight .ant-tooltip-arrow {
3518
+ right: 13px;
3519
+ }
3520
+ .ant-tooltip-placement-right .ant-tooltip-arrow,
3521
+ .ant-tooltip-placement-rightTop .ant-tooltip-arrow,
3522
+ .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
3523
+ left: calc(calc(5px - 1px + 4px) - 13.07106781px);
3524
+ }
3525
+ .ant-tooltip-placement-right .ant-tooltip-arrow::before,
3526
+ .ant-tooltip-placement-rightTop .ant-tooltip-arrow::before,
3527
+ .ant-tooltip-placement-rightBottom .ant-tooltip-arrow::before {
3528
+ box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
3529
+ transform: translateX(6.53553391px) rotate(45deg);
3530
+ }
3531
+ .ant-tooltip-placement-right .ant-tooltip-arrow {
3532
+ top: 50%;
3533
+ transform: translateY(-50%);
3534
+ }
3535
+ .ant-tooltip-placement-rightTop .ant-tooltip-arrow {
3536
+ top: 5px;
3537
+ }
3538
+ .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
3539
+ bottom: 5px;
3540
+ }
3541
+ .ant-tooltip-placement-left .ant-tooltip-arrow,
3542
+ .ant-tooltip-placement-leftTop .ant-tooltip-arrow,
3543
+ .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
3544
+ right: calc(calc(5px - 1px + 4px) - 13.07106781px);
3545
+ }
3546
+ .ant-tooltip-placement-left .ant-tooltip-arrow::before,
3547
+ .ant-tooltip-placement-leftTop .ant-tooltip-arrow::before,
3548
+ .ant-tooltip-placement-leftBottom .ant-tooltip-arrow::before {
3549
+ box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
3550
+ transform: translateX(-6.53553391px) rotate(45deg);
3551
+ }
3552
+ .ant-tooltip-placement-left .ant-tooltip-arrow {
3553
+ top: 50%;
3554
+ transform: translateY(-50%);
3555
+ }
3556
+ .ant-tooltip-placement-leftTop .ant-tooltip-arrow {
3557
+ top: 5px;
3558
+ }
3559
+ .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
3560
+ bottom: 5px;
3561
+ }
3562
+ .ant-tooltip-placement-bottom .ant-tooltip-arrow,
3563
+ .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
3564
+ .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
3565
+ top: calc(calc(5px - 1px + 4px) - 13.07106781px);
3566
+ }
3567
+ .ant-tooltip-placement-bottom .ant-tooltip-arrow::before,
3568
+ .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow::before,
3569
+ .ant-tooltip-placement-bottomRight .ant-tooltip-arrow::before {
3570
+ box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
3571
+ transform: translateY(6.53553391px) rotate(45deg);
3572
+ }
3573
+ .ant-tooltip-placement-bottom .ant-tooltip-arrow {
3574
+ left: 50%;
3575
+ transform: translateX(-50%);
3576
+ }
3577
+ .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
3578
+ left: 13px;
3579
+ }
3580
+ .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
3581
+ right: 13px;
3582
+ }
3583
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3584
+ /* stylelint-disable no-duplicate-selectors */
3585
+ /* stylelint-disable */
3586
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
3587
+
3588
+ .tnt-tooltip.ant-tooltip-light .ant-tooltip-inner {
3589
+ background-color: white;
3590
+ color: #343f54;
3591
+ }
3592
+ .tnt-tooltip.ant-tooltip-light .ant-tooltip-arrow::before {
3593
+ background-color: white;
3594
+ }
3595
+ .tnt-tooltip.ant-tooltip-arrow {
3596
+ border-radius: 1px;
3597
+ }
3598
+ .ant-tooltip-arrow-hidden .ant-tooltip-arrow {
3599
+ display: none;
3600
+ }
3601
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3602
+ /* stylelint-disable no-duplicate-selectors */
3603
+ /* stylelint-disable */
3604
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
3605
+
3606
+ .tnt-cascader-tag {
3607
+ display: inline-block;
3608
+ margin-right: 2px;
3609
+ }
3610
+ .tnt-cascader-tag > * {
3611
+ vertical-align: middle;
3612
+ }
3613
+ .tnt-cascader-tag .tag-img {
3614
+ margin-right: 2px;
3615
+ }
3616
+ .tnt-cascader-tag .array-icon {
3617
+ margin: 0 2px;
3618
+ color: #07c790;
3619
+ font-size: 14px;
3620
+ }
3621
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3622
+ /* stylelint-disable no-duplicate-selectors */
3623
+ /* stylelint-disable */
3624
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
3625
+
3626
+ .monaco-scroll-container {
3627
+ position: fixed;
3628
+ left: 0;
3629
+ top: 0;
3630
+ height: 0 !important;
3631
+ width: 0 !important;
3632
+ }
3633
+ .monaco-scroll-container > .tntd-cascader {
3634
+ height: 0;
3635
+ width: 0;
3636
+ opacity: 0;
3637
+ }
3638
+ .monaco-scroll-container > .tntd-cascader * {
3639
+ height: 0 !important;
3640
+ width: 0 !important;
3641
+ opacity: 0;
3642
+ }
3643
+ .monaco-formula-drop-cascader.tntd-select-dropdown {
3644
+ z-index: 1050 !important;
3645
+ }
3646
+ .monaco-formula-drop-cascader.more-levels .tntd-cascader-menu:nth-child(1),
3647
+ .monaco-formula-drop-cascader.more-levels .tntd-cascader-menu:nth-child(2) {
3648
+ width: 120px;
3649
+ }
3650
+ .monaco-formula-drop-cascader.more-levels .tntd-cascader-menu .rc-virtual-list {
3651
+ width: auto;
3652
+ }
3653
+ .monaco-formula-drop-cascader.tntd-cascader-dropdown .tntd-cascader-menu .rc-virtual-list {
3654
+ width: auto;
3655
+ }
3656
+ .monaco-formula-drop-cascader:not(.more-levels)
3657
+ .tntd-cascader-menus
3658
+ .tntd-cascader-menu:only-child {
3659
+ width: 280px !important;
3660
+ }
3661
+ .monaco-formula-drop-cascader .tntd-cascader-menus {
3662
+ width: auto;
3663
+ }
3664
+ .monaco-formula-drop-cascader .tntd-cascader-menus .tntd-cascader-menu {
3665
+ width: 180px !important;
3666
+ }
3667
+ .monaco-formula-drop-cascader .tntd-cascader-menus .tntd-cascader-menu .td-tag {
3668
+ overflow: hidden;
3669
+ text-overflow: ellipsis;
3670
+ white-space: nowrap;
3671
+ display: contents;
3672
+ }
3673
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
3674
+ /* stylelint-disable no-duplicate-selectors */
3675
+ /* stylelint-disable */
3676
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */