ls-pro-common 1.0.7 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/common.css CHANGED
@@ -52,3 +52,2225 @@
52
52
  width: 0;
53
53
  }
54
54
 
55
+ .pro-table-tooltip-text span {
56
+ color: #fff;
57
+ }
58
+ .ant-pro-table {
59
+ z-index: 1;
60
+ }
61
+ .ant-pro-table:not(:root):fullscreen {
62
+ min-height: 100vh;
63
+ overflow: auto;
64
+ background: #fff;
65
+ }
66
+ .ant-pro-table-extra {
67
+ margin-bottom: 10px;
68
+ }
69
+ .ant-pro-table-polling .ant-pro-table-list-toolbar-setting-item .anticon.anticon-reload {
70
+ transform: rotate(0deg);
71
+ animation: turn 1s linear infinite;
72
+ }
73
+ .ant-pro-table td.ant-table-cell > a {
74
+ font-size: 14px;
75
+ }
76
+ .ant-pro-table .ant-table .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
77
+ margin: 0;
78
+ }
79
+ .ant-pro-table .ant-table.ant-table-middle .ant-pro-table {
80
+ margin: -12px -8px;
81
+ }
82
+ .ant-pro-table .ant-card-body {
83
+ padding: 15px;
84
+ }
85
+ .ant-pro-table-srcoll {
86
+ height: 100%;
87
+ display: flex;
88
+ flex-direction: column;
89
+ }
90
+ .ant-pro-table-srcoll .ant-card {
91
+ flex: 1;
92
+ height: 0;
93
+ }
94
+ .ant-pro-table-srcoll .ant-card .ant-card-body {
95
+ height: 100%;
96
+ display: flex;
97
+ flex-direction: column;
98
+ }
99
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper {
100
+ flex: 1;
101
+ height: 0;
102
+ }
103
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-nested-loading,
104
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container {
105
+ height: 100%;
106
+ }
107
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container {
108
+ display: flex;
109
+ flex-direction: column;
110
+ }
111
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-pagination.mini.ant-table-pagination {
112
+ margin: 10px 0;
113
+ }
114
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table {
115
+ flex: 1;
116
+ height: 0;
117
+ }
118
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
119
+ height: 100%;
120
+ display: flex;
121
+ flex-direction: column;
122
+ border-right: 1px solid #f0f0f0;
123
+ border-bottom: 1px solid #f0f0f0;
124
+ }
125
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
126
+ flex: 1;
127
+ }
128
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title,
129
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer,
130
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th,
131
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td,
132
+ .ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th,
133
+ .ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td {
134
+ padding: 4px 4px;
135
+ }
136
+ .ant-pro-table-srcoll .ant-table-placeholder td {
137
+ border-bottom: none;
138
+ }
139
+ @keyframes turn {
140
+ 0% {
141
+ transform: rotate(0deg);
142
+ }
143
+ 25% {
144
+ transform: rotate(90deg);
145
+ }
146
+ 50% {
147
+ transform: rotate(180deg);
148
+ }
149
+ 75% {
150
+ transform: rotate(270deg);
151
+ }
152
+ 100% {
153
+ transform: rotate(360deg);
154
+ }
155
+ }
156
+
157
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field {
158
+ max-width: 100%;
159
+ }
160
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-xs {
161
+ width: 104px;
162
+ }
163
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-s {
164
+ width: 216px;
165
+ }
166
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-sm {
167
+ width: 216px;
168
+ }
169
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-m {
170
+ width: 328px;
171
+ }
172
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-md {
173
+ width: 328px;
174
+ }
175
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-l {
176
+ width: 440px;
177
+ }
178
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-lg {
179
+ width: 440px;
180
+ }
181
+ .ant-form > div:not(.ant-pro-form-light-filter) .pro-field-xl {
182
+ width: 552px;
183
+ }
184
+
185
+ .ant-pro-form-group-title {
186
+ margin-bottom: 16px;
187
+ font-weight: bold;
188
+ }
189
+ .ant-pro-form-group-container {
190
+ flex-wrap: wrap;
191
+ max-width: 100%;
192
+ }
193
+ .ant-pro-form-group-container > div.ant-space-item {
194
+ max-width: 100%;
195
+ }
196
+ .ant-pro-form-group-twoLine {
197
+ display: block;
198
+ width: 100%;
199
+ }
200
+ .ant-pro-form-group-twoLine .ant-pro-form-group-title {
201
+ width: 100%;
202
+ margin: 8px 0;
203
+ }
204
+ .ant-pro-form-group-twoLine .ant-pro-form-group-container {
205
+ padding-left: 16px;
206
+ }
207
+ .ant-pro-form-group-twoLine .ant-space-item,
208
+ .ant-pro-form-group-twoLine .ant-form-item {
209
+ width: 100%;
210
+ }
211
+ .ant-pro-form-group-twoLine .ant-form-item-control {
212
+ display: flex;
213
+ align-items: center;
214
+ justify-content: flex-end;
215
+ }
216
+ .ant-pro-form-group-twoLine .ant-form-item-control-input {
217
+ align-items: center;
218
+ justify-content: flex-end;
219
+ }
220
+ .ant-pro-form-group-twoLine .ant-form-item-control-input-content {
221
+ flex: none;
222
+ }
223
+
224
+ .ant-pro-core-label-tip {
225
+ display: inline-flex;
226
+ align-items: center;
227
+ max-width: 100%;
228
+ }
229
+ .ant-pro-core-label-tip-icon {
230
+ display: block;
231
+ margin-left: 4px;
232
+ cursor: pointer;
233
+ }
234
+ .ant-pro-core-label-tip-icon:hover {
235
+ color: #40a9ff;
236
+ }
237
+ .ant-pro-core-label-tip-title {
238
+ display: inline-flex;
239
+ flex: 1;
240
+ }
241
+ .ant-pro-core-label-tip-subtitle {
242
+ margin-left: 8px;
243
+ color: rgba(0, 0, 0, 0.45);
244
+ font-weight: normal;
245
+ font-size: 14px;
246
+ white-space: nowrap;
247
+ }
248
+ .ant-pro-core-label-tip-title-ellipsis {
249
+ overflow: hidden;
250
+ white-space: nowrap;
251
+ text-overflow: ellipsis;
252
+ word-break: keep-all;
253
+ }
254
+
255
+ .ant-pro-form-list {
256
+ max-width: 100%;
257
+ }
258
+ .ant-pro-form-list-item .ant-form-item-label {
259
+ display: none;
260
+ }
261
+ .ant-pro-form-list-item.ant-pro-form-list-item-show-label .ant-form-item-label {
262
+ display: inline-block;
263
+ }
264
+ .ant-pro-form-list-container {
265
+ margin-right: 8px;
266
+ }
267
+ .ant-pro-form-list-item:first-of-type div:first-of-type .ant-form-item .ant-form-item-label {
268
+ display: inline-block;
269
+ }
270
+ .ant-pro-form-list-action {
271
+ height: 32px;
272
+ margin-bottom: 24px;
273
+ line-height: 32px;
274
+ }
275
+ .ant-pro-form-list .ant-pro-card .ant-pro-card-extra .ant-pro-form-list-action {
276
+ margin-bottom: 0;
277
+ }
278
+ .ant-pro-form-list-action-icon {
279
+ margin-right: 8px;
280
+ cursor: pointer;
281
+ transition: color 0.3s ease-in-out;
282
+ }
283
+ .ant-pro-form-list-action-icon:hover {
284
+ color: #40a9ff;
285
+ }
286
+ .ant-pro-form-list-action-icon:last-child {
287
+ margin-right: 0;
288
+ }
289
+ .ant-pro-form-list-creator-button-top {
290
+ margin-bottom: 24px;
291
+ }
292
+
293
+ .ant-pro-field-light-wrapper-collapse-label {
294
+ padding: 1;
295
+ }
296
+ .ant-pro-field-light-wrapper-container .ant-form-item {
297
+ margin-bottom: 0;
298
+ }
299
+
300
+ .ant-pro-core-field-dropdown-label {
301
+ cursor: pointer;
302
+ }
303
+ .ant-pro-core-field-dropdown-overlay {
304
+ min-width: 200px;
305
+ margin-top: 4px;
306
+ background-color: #fff;
307
+ box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
308
+ }
309
+ .ant-pro-core-field-dropdown-content {
310
+ padding: 16px;
311
+ }
312
+
313
+ .ant-pro-core-dropdown-footer {
314
+ display: flex;
315
+ justify-content: space-between;
316
+ padding: 16px 16px 16px 8px;
317
+ border-top: 1px solid #f0f0f0;
318
+ }
319
+
320
+ .ant-pro-core-field-label {
321
+ display: inline-block;
322
+ height: 30px;
323
+ padding: 0 4px;
324
+ font-size: 14px;
325
+ line-height: 30px;
326
+ border-radius: 2px;
327
+ cursor: pointer;
328
+ }
329
+ .ant-pro-core-field-label:hover {
330
+ background-color: rgba(0, 0, 0, 0.1);
331
+ }
332
+ .ant-pro-core-field-label-active {
333
+ padding: 0 12px;
334
+ background-color: rgba(0, 0, 0, 0.04);
335
+ }
336
+ .ant-pro-core-field-label-active.ant-pro-core-field-label-allow-clear:hover:not(.ant-pro-core-field-label-disabled) .ant-pro-core-field-label-arrow {
337
+ display: none;
338
+ }
339
+ .ant-pro-core-field-label-active.ant-pro-core-field-label-allow-clear:hover:not(.ant-pro-core-field-label-disabled) .ant-pro-core-field-label-close {
340
+ display: inline-block;
341
+ }
342
+ .ant-pro-core-field-label-icon {
343
+ margin-top: -2px;
344
+ margin-left: 4px;
345
+ padding: 1px;
346
+ color: rgba(0, 0, 0, 0.45);
347
+ font-size: 12px;
348
+ vertical-align: middle;
349
+ }
350
+ .ant-pro-core-field-label-icon.ant-pro-core-field-label-close {
351
+ display: none;
352
+ margin-top: -4px;
353
+ padding: 3px;
354
+ color: #fff;
355
+ font-size: 8px;
356
+ background-color: rgba(0, 0, 0, 0.25);
357
+ border-radius: 50%;
358
+ }
359
+ .ant-pro-core-field-label-icon.ant-pro-core-field-label-close:hover {
360
+ background-color: rgba(0, 0, 0, 0.45);
361
+ }
362
+ .ant-pro-core-field-label-disabled {
363
+ color: rgba(0, 0, 0, 0.25);
364
+ cursor: not-allowed;
365
+ }
366
+ .ant-pro-core-field-label-disabled .ant-pro-core-field-label-icon {
367
+ color: rgba(0, 0, 0, 0.25);
368
+ }
369
+ .ant-pro-core-field-label-small {
370
+ height: 24px;
371
+ padding: 0 4px;
372
+ font-size: 12px;
373
+ line-height: 24px;
374
+ }
375
+ .ant-pro-core-field-label-small.ant-pro-core-field-label-active {
376
+ padding: 0 8px;
377
+ }
378
+ .ant-pro-core-field-label-small .ant-pro-core-field-label-icon {
379
+ padding: 0;
380
+ }
381
+ .ant-pro-core-field-label-small .ant-pro-core-field-label-close {
382
+ margin-top: -2px;
383
+ padding: 3px;
384
+ font-size: 6px;
385
+ }
386
+ .ant-pro-core-field-label-bordered {
387
+ height: 32px;
388
+ padding: 0 12px;
389
+ border: 1px solid #d9d9d9;
390
+ border-radius: 2px;
391
+ }
392
+ .ant-pro-core-field-label-bordered.ant-pro-core-field-label-small {
393
+ height: 24px;
394
+ padding: 0 8px;
395
+ }
396
+ .ant-pro-core-field-label-bordered.ant-pro-core-field-label-active {
397
+ background-color: #fff;
398
+ }
399
+
400
+ .ant-pro-field-date-picker-light .ant-calendar-picker,
401
+ .ant-pro-field-date-picker-light .ant-picker {
402
+ position: absolute;
403
+ width: 80px;
404
+ height: 28px;
405
+ overflow: hidden;
406
+ visibility: hidden;
407
+ }
408
+
409
+ .ant-pro-field-index-column {
410
+ display: inline-flex;
411
+ align-items: center;
412
+ justify-content: center;
413
+ width: 18px;
414
+ height: 18px;
415
+ }
416
+ .ant-pro-field-index-column-border {
417
+ color: #fff;
418
+ font-size: 12px;
419
+ line-height: 12px;
420
+ background-color: #314659;
421
+ border-radius: 9px;
422
+ }
423
+ .ant-pro-field-index-column-border.top-three {
424
+ background-color: #979797;
425
+ }
426
+
427
+ .ant-pro-table-dropdown {
428
+ width: auto;
429
+ }
430
+ .ant-pro-select-item-option-content-light {
431
+ color: #1890ff;
432
+ }
433
+ .ant-pro-select-item-option-content {
434
+ flex: auto;
435
+ overflow: hidden;
436
+ white-space: nowrap;
437
+ text-overflow: ellipsis;
438
+ }
439
+
440
+ .ant-pro-field-dropdown {
441
+ width: auto;
442
+ }
443
+
444
+ .ant-pro-field-select-light-select .ant-select {
445
+ position: absolute;
446
+ width: 153px;
447
+ height: 28px;
448
+ visibility: hidden;
449
+ }
450
+ .ant-pro-field-select-light-select .ant-select-selector {
451
+ height: 28px;
452
+ }
453
+ .ant-pro-field-select-light-select.ant-pro-field-select-light-select-searchable .ant-select {
454
+ width: 200px;
455
+ }
456
+ .ant-pro-field-select-light-select.ant-pro-field-select-light-select-searchable .ant-select-selector {
457
+ height: 28px;
458
+ }
459
+
460
+ .ant-pro-field-checkbox-vertical .ant-checkbox-group-item {
461
+ display: flex;
462
+ margin-right: 0;
463
+ }
464
+
465
+ .ant-pro-field-radio-vertical .ant-radio-wrapper {
466
+ display: block;
467
+ margin-right: 0;
468
+ }
469
+
470
+ .ant-pro-inline-error-form-item-multiple {
471
+ padding: 6px 8px 12px 8px;
472
+ }
473
+ .ant-pro-inline-error-form-item-progress-success .ant-progress-bg {
474
+ background-color: #52c41a;
475
+ }
476
+ .ant-pro-inline-error-form-item-progress-error .ant-progress-bg {
477
+ background-color: #ff4d4f;
478
+ }
479
+ .ant-pro-inline-error-form-item-progress-warning .ant-progress-bg {
480
+ background-color: #faad14;
481
+ }
482
+ .ant-pro-inline-error-form-item-rule {
483
+ margin: 0;
484
+ padding: 0;
485
+ list-style: none;
486
+ }
487
+ .ant-pro-inline-error-form-item-rule-content {
488
+ display: flex;
489
+ align-items: center;
490
+ }
491
+ .ant-pro-inline-error-form-item-rule-content-icon-default {
492
+ display: flex;
493
+ align-items: center;
494
+ justify-content: center;
495
+ width: 14px;
496
+ height: 22px;
497
+ }
498
+ .ant-pro-inline-error-form-item-rule-content-icon-default-circle {
499
+ width: 6px;
500
+ height: 6px;
501
+ background-color: rgba(0, 0, 0, 0.45);
502
+ border-radius: 4px;
503
+ }
504
+ .ant-pro-inline-error-form-item-rule-content-icon-loading {
505
+ color: #1890ff;
506
+ }
507
+ .ant-pro-inline-error-form-item-rule-content-icon-error {
508
+ color: #ff4d4f;
509
+ }
510
+ .ant-pro-inline-error-form-item-rule-content-icon-success {
511
+ color: #52c41a;
512
+ }
513
+ .ant-pro-inline-error-form-item-rule-content-text {
514
+ color: rgba(0, 0, 0, 0.85);
515
+ }
516
+
517
+ .ant-pro-table-search {
518
+ margin-bottom: 10px;
519
+ padding: 15px;
520
+ padding-bottom: 0;
521
+ background: #fff;
522
+ }
523
+ .ant-pro-table-search::before {
524
+ display: table;
525
+ content: '';
526
+ }
527
+ .ant-pro-table-search::after {
528
+ display: table;
529
+ clear: both;
530
+ content: '';
531
+ }
532
+ .ant-pro-table-search.ant-pro-table-form {
533
+ margin: 0;
534
+ padding: 0 16px;
535
+ overflow: unset;
536
+ }
537
+ .ant-pro-table-search-light {
538
+ margin-bottom: 0;
539
+ padding: 16px 0;
540
+ }
541
+ .ant-pro-table-search-form-option .ant-form-item {
542
+ margin: 0;
543
+ }
544
+ .ant-pro-table-search-form-option .ant-form-item-label {
545
+ opacity: 0;
546
+ }
547
+ .ant-pro-table-search-form-option .ant-form-item-control-input {
548
+ justify-content: flex-start;
549
+ }
550
+ @media (max-width: 575px) {
551
+ .ant-pro-table-search {
552
+ height: auto !important;
553
+ padding-bottom: 24px;
554
+ }
555
+ .ant-pro-table-search .ant-form-item-label {
556
+ min-width: 80px;
557
+ text-align: left;
558
+ }
559
+ }
560
+
561
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
562
+ /* stylelint-disable no-duplicate-selectors */
563
+ /* stylelint-disable */
564
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
565
+ [class^=ant-]::-ms-clear,
566
+ [class*= ant-]::-ms-clear,
567
+ [class^=ant-] input::-ms-clear,
568
+ [class*= ant-] input::-ms-clear,
569
+ [class^=ant-] input::-ms-reveal,
570
+ [class*= ant-] input::-ms-reveal {
571
+ display: none;
572
+ }
573
+ /* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */
574
+ html,
575
+ body {
576
+ width: 100%;
577
+ height: 100%;
578
+ }
579
+ input::-ms-clear,
580
+ input::-ms-reveal {
581
+ display: none;
582
+ }
583
+ *,
584
+ *::before,
585
+ *::after {
586
+ box-sizing: border-box;
587
+ }
588
+ html {
589
+ font-family: sans-serif;
590
+ line-height: 1.15;
591
+ -webkit-text-size-adjust: 100%;
592
+ -ms-text-size-adjust: 100%;
593
+ -ms-overflow-style: scrollbar;
594
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
595
+ }
596
+ @-ms-viewport {
597
+ width: device-width;
598
+ }
599
+ body {
600
+ margin: 0;
601
+ color: rgba(0, 0, 0, 0.85);
602
+ font-size: 14px;
603
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
604
+ font-variant: tabular-nums;
605
+ line-height: 1.5715;
606
+ background-color: #fff;
607
+ font-feature-settings: 'tnum';
608
+ }
609
+ [tabindex='-1']:focus {
610
+ outline: none !important;
611
+ }
612
+ hr {
613
+ box-sizing: content-box;
614
+ height: 0;
615
+ overflow: visible;
616
+ }
617
+ h1,
618
+ h2,
619
+ h3,
620
+ h4,
621
+ h5,
622
+ h6 {
623
+ margin-top: 0;
624
+ margin-bottom: 0.5em;
625
+ color: rgba(0, 0, 0, 0.85);
626
+ font-weight: 500;
627
+ }
628
+ p {
629
+ margin-top: 0;
630
+ margin-bottom: 1em;
631
+ }
632
+ abbr[title],
633
+ abbr[data-original-title] {
634
+ text-decoration: underline;
635
+ text-decoration: underline dotted;
636
+ border-bottom: 0;
637
+ cursor: help;
638
+ }
639
+ address {
640
+ margin-bottom: 1em;
641
+ font-style: normal;
642
+ line-height: inherit;
643
+ }
644
+ input[type='text'],
645
+ input[type='password'],
646
+ input[type='number'],
647
+ textarea {
648
+ -webkit-appearance: none;
649
+ }
650
+ ol,
651
+ ul,
652
+ dl {
653
+ margin-top: 0;
654
+ margin-bottom: 1em;
655
+ }
656
+ ol ol,
657
+ ul ul,
658
+ ol ul,
659
+ ul ol {
660
+ margin-bottom: 0;
661
+ }
662
+ dt {
663
+ font-weight: 500;
664
+ }
665
+ dd {
666
+ margin-bottom: 0.5em;
667
+ margin-left: 0;
668
+ }
669
+ blockquote {
670
+ margin: 0 0 1em;
671
+ }
672
+ dfn {
673
+ font-style: italic;
674
+ }
675
+ b,
676
+ strong {
677
+ font-weight: bolder;
678
+ }
679
+ small {
680
+ font-size: 80%;
681
+ }
682
+ sub,
683
+ sup {
684
+ position: relative;
685
+ font-size: 75%;
686
+ line-height: 0;
687
+ vertical-align: baseline;
688
+ }
689
+ sub {
690
+ bottom: -0.25em;
691
+ }
692
+ sup {
693
+ top: -0.5em;
694
+ }
695
+ a {
696
+ color: #1890ff;
697
+ text-decoration: none;
698
+ background-color: transparent;
699
+ outline: none;
700
+ cursor: pointer;
701
+ transition: color 0.3s;
702
+ -webkit-text-decoration-skip: objects;
703
+ }
704
+ a:hover {
705
+ color: #40a9ff;
706
+ }
707
+ a:active {
708
+ color: #096dd9;
709
+ }
710
+ a:active,
711
+ a:hover {
712
+ text-decoration: none;
713
+ outline: 0;
714
+ }
715
+ a:focus {
716
+ text-decoration: none;
717
+ outline: 0;
718
+ }
719
+ a[disabled] {
720
+ color: rgba(0, 0, 0, 0.25);
721
+ cursor: not-allowed;
722
+ }
723
+ pre,
724
+ code,
725
+ kbd,
726
+ samp {
727
+ font-size: 1em;
728
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
729
+ }
730
+ pre {
731
+ margin-top: 0;
732
+ margin-bottom: 1em;
733
+ overflow: auto;
734
+ }
735
+ figure {
736
+ margin: 0 0 1em;
737
+ }
738
+ img {
739
+ vertical-align: middle;
740
+ border-style: none;
741
+ }
742
+ a,
743
+ area,
744
+ button,
745
+ [role='button'],
746
+ input:not([type='range']),
747
+ label,
748
+ select,
749
+ summary,
750
+ textarea {
751
+ touch-action: manipulation;
752
+ }
753
+ table {
754
+ border-collapse: collapse;
755
+ }
756
+ caption {
757
+ padding-top: 0.75em;
758
+ padding-bottom: 0.3em;
759
+ color: rgba(0, 0, 0, 0.45);
760
+ text-align: left;
761
+ caption-side: bottom;
762
+ }
763
+ input,
764
+ button,
765
+ select,
766
+ optgroup,
767
+ textarea {
768
+ margin: 0;
769
+ color: inherit;
770
+ font-size: inherit;
771
+ font-family: inherit;
772
+ line-height: inherit;
773
+ }
774
+ button,
775
+ input {
776
+ overflow: visible;
777
+ }
778
+ button,
779
+ select {
780
+ text-transform: none;
781
+ }
782
+ button,
783
+ html [type="button"],
784
+ [type="reset"],
785
+ [type="submit"] {
786
+ -webkit-appearance: button;
787
+ }
788
+ button::-moz-focus-inner,
789
+ [type='button']::-moz-focus-inner,
790
+ [type='reset']::-moz-focus-inner,
791
+ [type='submit']::-moz-focus-inner {
792
+ padding: 0;
793
+ border-style: none;
794
+ }
795
+ input[type='radio'],
796
+ input[type='checkbox'] {
797
+ box-sizing: border-box;
798
+ padding: 0;
799
+ }
800
+ input[type='date'],
801
+ input[type='time'],
802
+ input[type='datetime-local'],
803
+ input[type='month'] {
804
+ -webkit-appearance: listbox;
805
+ }
806
+ textarea {
807
+ overflow: auto;
808
+ resize: vertical;
809
+ }
810
+ fieldset {
811
+ min-width: 0;
812
+ margin: 0;
813
+ padding: 0;
814
+ border: 0;
815
+ }
816
+ legend {
817
+ display: block;
818
+ width: 100%;
819
+ max-width: 100%;
820
+ margin-bottom: 0.5em;
821
+ padding: 0;
822
+ color: inherit;
823
+ font-size: 1.5em;
824
+ line-height: inherit;
825
+ white-space: normal;
826
+ }
827
+ progress {
828
+ vertical-align: baseline;
829
+ }
830
+ [type='number']::-webkit-inner-spin-button,
831
+ [type='number']::-webkit-outer-spin-button {
832
+ height: auto;
833
+ }
834
+ [type='search'] {
835
+ outline-offset: -2px;
836
+ -webkit-appearance: none;
837
+ }
838
+ [type='search']::-webkit-search-cancel-button,
839
+ [type='search']::-webkit-search-decoration {
840
+ -webkit-appearance: none;
841
+ }
842
+ ::-webkit-file-upload-button {
843
+ font: inherit;
844
+ -webkit-appearance: button;
845
+ }
846
+ output {
847
+ display: inline-block;
848
+ }
849
+ summary {
850
+ display: list-item;
851
+ }
852
+ template {
853
+ display: none;
854
+ }
855
+ [hidden] {
856
+ display: none !important;
857
+ }
858
+ mark {
859
+ padding: 0.2em;
860
+ background-color: #feffe6;
861
+ }
862
+ ::selection {
863
+ color: #fff;
864
+ background: #1890ff;
865
+ }
866
+ .clearfix::before {
867
+ display: table;
868
+ content: '';
869
+ }
870
+ .clearfix::after {
871
+ display: table;
872
+ clear: both;
873
+ content: '';
874
+ }
875
+ .anticon {
876
+ display: inline-block;
877
+ color: inherit;
878
+ font-style: normal;
879
+ line-height: 0;
880
+ text-align: center;
881
+ text-transform: none;
882
+ vertical-align: -0.125em;
883
+ text-rendering: optimizeLegibility;
884
+ -webkit-font-smoothing: antialiased;
885
+ -moz-osx-font-smoothing: grayscale;
886
+ }
887
+ .anticon > * {
888
+ line-height: 1;
889
+ }
890
+ .anticon svg {
891
+ display: inline-block;
892
+ }
893
+ .anticon::before {
894
+ display: none;
895
+ }
896
+ .anticon .anticon-icon {
897
+ display: block;
898
+ }
899
+ .anticon[tabindex] {
900
+ cursor: pointer;
901
+ }
902
+ .anticon-spin::before {
903
+ display: inline-block;
904
+ animation: loadingCircle 1s infinite linear;
905
+ }
906
+ .anticon-spin {
907
+ display: inline-block;
908
+ animation: loadingCircle 1s infinite linear;
909
+ }
910
+ .ant-fade-enter,
911
+ .ant-fade-appear {
912
+ animation-duration: 0.2s;
913
+ animation-fill-mode: both;
914
+ animation-play-state: paused;
915
+ }
916
+ .ant-fade-leave {
917
+ animation-duration: 0.2s;
918
+ animation-fill-mode: both;
919
+ animation-play-state: paused;
920
+ }
921
+ .ant-fade-enter.ant-fade-enter-active,
922
+ .ant-fade-appear.ant-fade-appear-active {
923
+ animation-name: antFadeIn;
924
+ animation-play-state: running;
925
+ }
926
+ .ant-fade-leave.ant-fade-leave-active {
927
+ animation-name: antFadeOut;
928
+ animation-play-state: running;
929
+ pointer-events: none;
930
+ }
931
+ .ant-fade-enter,
932
+ .ant-fade-appear {
933
+ opacity: 0;
934
+ animation-timing-function: linear;
935
+ }
936
+ .ant-fade-leave {
937
+ animation-timing-function: linear;
938
+ }
939
+ @keyframes antFadeIn {
940
+ 0% {
941
+ opacity: 0;
942
+ }
943
+ 100% {
944
+ opacity: 1;
945
+ }
946
+ }
947
+ @keyframes antFadeOut {
948
+ 0% {
949
+ opacity: 1;
950
+ }
951
+ 100% {
952
+ opacity: 0;
953
+ }
954
+ }
955
+ .ant-move-up-enter,
956
+ .ant-move-up-appear {
957
+ animation-duration: 0.2s;
958
+ animation-fill-mode: both;
959
+ animation-play-state: paused;
960
+ }
961
+ .ant-move-up-leave {
962
+ animation-duration: 0.2s;
963
+ animation-fill-mode: both;
964
+ animation-play-state: paused;
965
+ }
966
+ .ant-move-up-enter.ant-move-up-enter-active,
967
+ .ant-move-up-appear.ant-move-up-appear-active {
968
+ animation-name: antMoveUpIn;
969
+ animation-play-state: running;
970
+ }
971
+ .ant-move-up-leave.ant-move-up-leave-active {
972
+ animation-name: antMoveUpOut;
973
+ animation-play-state: running;
974
+ pointer-events: none;
975
+ }
976
+ .ant-move-up-enter,
977
+ .ant-move-up-appear {
978
+ opacity: 0;
979
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
980
+ }
981
+ .ant-move-up-leave {
982
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
983
+ }
984
+ .ant-move-down-enter,
985
+ .ant-move-down-appear {
986
+ animation-duration: 0.2s;
987
+ animation-fill-mode: both;
988
+ animation-play-state: paused;
989
+ }
990
+ .ant-move-down-leave {
991
+ animation-duration: 0.2s;
992
+ animation-fill-mode: both;
993
+ animation-play-state: paused;
994
+ }
995
+ .ant-move-down-enter.ant-move-down-enter-active,
996
+ .ant-move-down-appear.ant-move-down-appear-active {
997
+ animation-name: antMoveDownIn;
998
+ animation-play-state: running;
999
+ }
1000
+ .ant-move-down-leave.ant-move-down-leave-active {
1001
+ animation-name: antMoveDownOut;
1002
+ animation-play-state: running;
1003
+ pointer-events: none;
1004
+ }
1005
+ .ant-move-down-enter,
1006
+ .ant-move-down-appear {
1007
+ opacity: 0;
1008
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1009
+ }
1010
+ .ant-move-down-leave {
1011
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1012
+ }
1013
+ .ant-move-left-enter,
1014
+ .ant-move-left-appear {
1015
+ animation-duration: 0.2s;
1016
+ animation-fill-mode: both;
1017
+ animation-play-state: paused;
1018
+ }
1019
+ .ant-move-left-leave {
1020
+ animation-duration: 0.2s;
1021
+ animation-fill-mode: both;
1022
+ animation-play-state: paused;
1023
+ }
1024
+ .ant-move-left-enter.ant-move-left-enter-active,
1025
+ .ant-move-left-appear.ant-move-left-appear-active {
1026
+ animation-name: antMoveLeftIn;
1027
+ animation-play-state: running;
1028
+ }
1029
+ .ant-move-left-leave.ant-move-left-leave-active {
1030
+ animation-name: antMoveLeftOut;
1031
+ animation-play-state: running;
1032
+ pointer-events: none;
1033
+ }
1034
+ .ant-move-left-enter,
1035
+ .ant-move-left-appear {
1036
+ opacity: 0;
1037
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1038
+ }
1039
+ .ant-move-left-leave {
1040
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1041
+ }
1042
+ .ant-move-right-enter,
1043
+ .ant-move-right-appear {
1044
+ animation-duration: 0.2s;
1045
+ animation-fill-mode: both;
1046
+ animation-play-state: paused;
1047
+ }
1048
+ .ant-move-right-leave {
1049
+ animation-duration: 0.2s;
1050
+ animation-fill-mode: both;
1051
+ animation-play-state: paused;
1052
+ }
1053
+ .ant-move-right-enter.ant-move-right-enter-active,
1054
+ .ant-move-right-appear.ant-move-right-appear-active {
1055
+ animation-name: antMoveRightIn;
1056
+ animation-play-state: running;
1057
+ }
1058
+ .ant-move-right-leave.ant-move-right-leave-active {
1059
+ animation-name: antMoveRightOut;
1060
+ animation-play-state: running;
1061
+ pointer-events: none;
1062
+ }
1063
+ .ant-move-right-enter,
1064
+ .ant-move-right-appear {
1065
+ opacity: 0;
1066
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1067
+ }
1068
+ .ant-move-right-leave {
1069
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1070
+ }
1071
+ @keyframes antMoveDownIn {
1072
+ 0% {
1073
+ transform: translateY(100%);
1074
+ transform-origin: 0 0;
1075
+ opacity: 0;
1076
+ }
1077
+ 100% {
1078
+ transform: translateY(0%);
1079
+ transform-origin: 0 0;
1080
+ opacity: 1;
1081
+ }
1082
+ }
1083
+ @keyframes antMoveDownOut {
1084
+ 0% {
1085
+ transform: translateY(0%);
1086
+ transform-origin: 0 0;
1087
+ opacity: 1;
1088
+ }
1089
+ 100% {
1090
+ transform: translateY(100%);
1091
+ transform-origin: 0 0;
1092
+ opacity: 0;
1093
+ }
1094
+ }
1095
+ @keyframes antMoveLeftIn {
1096
+ 0% {
1097
+ transform: translateX(-100%);
1098
+ transform-origin: 0 0;
1099
+ opacity: 0;
1100
+ }
1101
+ 100% {
1102
+ transform: translateX(0%);
1103
+ transform-origin: 0 0;
1104
+ opacity: 1;
1105
+ }
1106
+ }
1107
+ @keyframes antMoveLeftOut {
1108
+ 0% {
1109
+ transform: translateX(0%);
1110
+ transform-origin: 0 0;
1111
+ opacity: 1;
1112
+ }
1113
+ 100% {
1114
+ transform: translateX(-100%);
1115
+ transform-origin: 0 0;
1116
+ opacity: 0;
1117
+ }
1118
+ }
1119
+ @keyframes antMoveRightIn {
1120
+ 0% {
1121
+ transform: translateX(100%);
1122
+ transform-origin: 0 0;
1123
+ opacity: 0;
1124
+ }
1125
+ 100% {
1126
+ transform: translateX(0%);
1127
+ transform-origin: 0 0;
1128
+ opacity: 1;
1129
+ }
1130
+ }
1131
+ @keyframes antMoveRightOut {
1132
+ 0% {
1133
+ transform: translateX(0%);
1134
+ transform-origin: 0 0;
1135
+ opacity: 1;
1136
+ }
1137
+ 100% {
1138
+ transform: translateX(100%);
1139
+ transform-origin: 0 0;
1140
+ opacity: 0;
1141
+ }
1142
+ }
1143
+ @keyframes antMoveUpIn {
1144
+ 0% {
1145
+ transform: translateY(-100%);
1146
+ transform-origin: 0 0;
1147
+ opacity: 0;
1148
+ }
1149
+ 100% {
1150
+ transform: translateY(0%);
1151
+ transform-origin: 0 0;
1152
+ opacity: 1;
1153
+ }
1154
+ }
1155
+ @keyframes antMoveUpOut {
1156
+ 0% {
1157
+ transform: translateY(0%);
1158
+ transform-origin: 0 0;
1159
+ opacity: 1;
1160
+ }
1161
+ 100% {
1162
+ transform: translateY(-100%);
1163
+ transform-origin: 0 0;
1164
+ opacity: 0;
1165
+ }
1166
+ }
1167
+ @keyframes loadingCircle {
1168
+ 100% {
1169
+ transform: rotate(360deg);
1170
+ }
1171
+ }
1172
+ [ant-click-animating='true'],
1173
+ [ant-click-animating-without-extra-node='true'] {
1174
+ position: relative;
1175
+ }
1176
+ html {
1177
+ --antd-wave-shadow-color: #1890ff;
1178
+ --scroll-bar: 0;
1179
+ }
1180
+ [ant-click-animating-without-extra-node='true']::after,
1181
+ .ant-click-animating-node {
1182
+ position: absolute;
1183
+ top: 0;
1184
+ right: 0;
1185
+ bottom: 0;
1186
+ left: 0;
1187
+ display: block;
1188
+ border-radius: inherit;
1189
+ box-shadow: 0 0 0 0 #1890ff;
1190
+ box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
1191
+ opacity: 0.2;
1192
+ animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
1193
+ animation-fill-mode: forwards;
1194
+ content: '';
1195
+ pointer-events: none;
1196
+ }
1197
+ @keyframes waveEffect {
1198
+ 100% {
1199
+ box-shadow: 0 0 0 #1890ff;
1200
+ box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
1201
+ }
1202
+ }
1203
+ @keyframes fadeEffect {
1204
+ 100% {
1205
+ opacity: 0;
1206
+ }
1207
+ }
1208
+ .ant-slide-up-enter,
1209
+ .ant-slide-up-appear {
1210
+ animation-duration: 0.2s;
1211
+ animation-fill-mode: both;
1212
+ animation-play-state: paused;
1213
+ }
1214
+ .ant-slide-up-leave {
1215
+ animation-duration: 0.2s;
1216
+ animation-fill-mode: both;
1217
+ animation-play-state: paused;
1218
+ }
1219
+ .ant-slide-up-enter.ant-slide-up-enter-active,
1220
+ .ant-slide-up-appear.ant-slide-up-appear-active {
1221
+ animation-name: antSlideUpIn;
1222
+ animation-play-state: running;
1223
+ }
1224
+ .ant-slide-up-leave.ant-slide-up-leave-active {
1225
+ animation-name: antSlideUpOut;
1226
+ animation-play-state: running;
1227
+ pointer-events: none;
1228
+ }
1229
+ .ant-slide-up-enter,
1230
+ .ant-slide-up-appear {
1231
+ opacity: 0;
1232
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1233
+ }
1234
+ .ant-slide-up-leave {
1235
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1236
+ }
1237
+ .ant-slide-down-enter,
1238
+ .ant-slide-down-appear {
1239
+ animation-duration: 0.2s;
1240
+ animation-fill-mode: both;
1241
+ animation-play-state: paused;
1242
+ }
1243
+ .ant-slide-down-leave {
1244
+ animation-duration: 0.2s;
1245
+ animation-fill-mode: both;
1246
+ animation-play-state: paused;
1247
+ }
1248
+ .ant-slide-down-enter.ant-slide-down-enter-active,
1249
+ .ant-slide-down-appear.ant-slide-down-appear-active {
1250
+ animation-name: antSlideDownIn;
1251
+ animation-play-state: running;
1252
+ }
1253
+ .ant-slide-down-leave.ant-slide-down-leave-active {
1254
+ animation-name: antSlideDownOut;
1255
+ animation-play-state: running;
1256
+ pointer-events: none;
1257
+ }
1258
+ .ant-slide-down-enter,
1259
+ .ant-slide-down-appear {
1260
+ opacity: 0;
1261
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1262
+ }
1263
+ .ant-slide-down-leave {
1264
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1265
+ }
1266
+ .ant-slide-left-enter,
1267
+ .ant-slide-left-appear {
1268
+ animation-duration: 0.2s;
1269
+ animation-fill-mode: both;
1270
+ animation-play-state: paused;
1271
+ }
1272
+ .ant-slide-left-leave {
1273
+ animation-duration: 0.2s;
1274
+ animation-fill-mode: both;
1275
+ animation-play-state: paused;
1276
+ }
1277
+ .ant-slide-left-enter.ant-slide-left-enter-active,
1278
+ .ant-slide-left-appear.ant-slide-left-appear-active {
1279
+ animation-name: antSlideLeftIn;
1280
+ animation-play-state: running;
1281
+ }
1282
+ .ant-slide-left-leave.ant-slide-left-leave-active {
1283
+ animation-name: antSlideLeftOut;
1284
+ animation-play-state: running;
1285
+ pointer-events: none;
1286
+ }
1287
+ .ant-slide-left-enter,
1288
+ .ant-slide-left-appear {
1289
+ opacity: 0;
1290
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1291
+ }
1292
+ .ant-slide-left-leave {
1293
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1294
+ }
1295
+ .ant-slide-right-enter,
1296
+ .ant-slide-right-appear {
1297
+ animation-duration: 0.2s;
1298
+ animation-fill-mode: both;
1299
+ animation-play-state: paused;
1300
+ }
1301
+ .ant-slide-right-leave {
1302
+ animation-duration: 0.2s;
1303
+ animation-fill-mode: both;
1304
+ animation-play-state: paused;
1305
+ }
1306
+ .ant-slide-right-enter.ant-slide-right-enter-active,
1307
+ .ant-slide-right-appear.ant-slide-right-appear-active {
1308
+ animation-name: antSlideRightIn;
1309
+ animation-play-state: running;
1310
+ }
1311
+ .ant-slide-right-leave.ant-slide-right-leave-active {
1312
+ animation-name: antSlideRightOut;
1313
+ animation-play-state: running;
1314
+ pointer-events: none;
1315
+ }
1316
+ .ant-slide-right-enter,
1317
+ .ant-slide-right-appear {
1318
+ opacity: 0;
1319
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1320
+ }
1321
+ .ant-slide-right-leave {
1322
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1323
+ }
1324
+ @keyframes antSlideUpIn {
1325
+ 0% {
1326
+ transform: scaleY(0.8);
1327
+ transform-origin: 0% 0%;
1328
+ opacity: 0;
1329
+ }
1330
+ 100% {
1331
+ transform: scaleY(1);
1332
+ transform-origin: 0% 0%;
1333
+ opacity: 1;
1334
+ }
1335
+ }
1336
+ @keyframes antSlideUpOut {
1337
+ 0% {
1338
+ transform: scaleY(1);
1339
+ transform-origin: 0% 0%;
1340
+ opacity: 1;
1341
+ }
1342
+ 100% {
1343
+ transform: scaleY(0.8);
1344
+ transform-origin: 0% 0%;
1345
+ opacity: 0;
1346
+ }
1347
+ }
1348
+ @keyframes antSlideDownIn {
1349
+ 0% {
1350
+ transform: scaleY(0.8);
1351
+ transform-origin: 100% 100%;
1352
+ opacity: 0;
1353
+ }
1354
+ 100% {
1355
+ transform: scaleY(1);
1356
+ transform-origin: 100% 100%;
1357
+ opacity: 1;
1358
+ }
1359
+ }
1360
+ @keyframes antSlideDownOut {
1361
+ 0% {
1362
+ transform: scaleY(1);
1363
+ transform-origin: 100% 100%;
1364
+ opacity: 1;
1365
+ }
1366
+ 100% {
1367
+ transform: scaleY(0.8);
1368
+ transform-origin: 100% 100%;
1369
+ opacity: 0;
1370
+ }
1371
+ }
1372
+ @keyframes antSlideLeftIn {
1373
+ 0% {
1374
+ transform: scaleX(0.8);
1375
+ transform-origin: 0% 0%;
1376
+ opacity: 0;
1377
+ }
1378
+ 100% {
1379
+ transform: scaleX(1);
1380
+ transform-origin: 0% 0%;
1381
+ opacity: 1;
1382
+ }
1383
+ }
1384
+ @keyframes antSlideLeftOut {
1385
+ 0% {
1386
+ transform: scaleX(1);
1387
+ transform-origin: 0% 0%;
1388
+ opacity: 1;
1389
+ }
1390
+ 100% {
1391
+ transform: scaleX(0.8);
1392
+ transform-origin: 0% 0%;
1393
+ opacity: 0;
1394
+ }
1395
+ }
1396
+ @keyframes antSlideRightIn {
1397
+ 0% {
1398
+ transform: scaleX(0.8);
1399
+ transform-origin: 100% 0%;
1400
+ opacity: 0;
1401
+ }
1402
+ 100% {
1403
+ transform: scaleX(1);
1404
+ transform-origin: 100% 0%;
1405
+ opacity: 1;
1406
+ }
1407
+ }
1408
+ @keyframes antSlideRightOut {
1409
+ 0% {
1410
+ transform: scaleX(1);
1411
+ transform-origin: 100% 0%;
1412
+ opacity: 1;
1413
+ }
1414
+ 100% {
1415
+ transform: scaleX(0.8);
1416
+ transform-origin: 100% 0%;
1417
+ opacity: 0;
1418
+ }
1419
+ }
1420
+ .ant-zoom-enter,
1421
+ .ant-zoom-appear {
1422
+ animation-duration: 0.2s;
1423
+ animation-fill-mode: both;
1424
+ animation-play-state: paused;
1425
+ }
1426
+ .ant-zoom-leave {
1427
+ animation-duration: 0.2s;
1428
+ animation-fill-mode: both;
1429
+ animation-play-state: paused;
1430
+ }
1431
+ .ant-zoom-enter.ant-zoom-enter-active,
1432
+ .ant-zoom-appear.ant-zoom-appear-active {
1433
+ animation-name: antZoomIn;
1434
+ animation-play-state: running;
1435
+ }
1436
+ .ant-zoom-leave.ant-zoom-leave-active {
1437
+ animation-name: antZoomOut;
1438
+ animation-play-state: running;
1439
+ pointer-events: none;
1440
+ }
1441
+ .ant-zoom-enter,
1442
+ .ant-zoom-appear {
1443
+ transform: scale(0);
1444
+ opacity: 0;
1445
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1446
+ }
1447
+ .ant-zoom-enter-prepare,
1448
+ .ant-zoom-appear-prepare {
1449
+ transform: none;
1450
+ }
1451
+ .ant-zoom-leave {
1452
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1453
+ }
1454
+ .ant-zoom-big-enter,
1455
+ .ant-zoom-big-appear {
1456
+ animation-duration: 0.2s;
1457
+ animation-fill-mode: both;
1458
+ animation-play-state: paused;
1459
+ }
1460
+ .ant-zoom-big-leave {
1461
+ animation-duration: 0.2s;
1462
+ animation-fill-mode: both;
1463
+ animation-play-state: paused;
1464
+ }
1465
+ .ant-zoom-big-enter.ant-zoom-big-enter-active,
1466
+ .ant-zoom-big-appear.ant-zoom-big-appear-active {
1467
+ animation-name: antZoomBigIn;
1468
+ animation-play-state: running;
1469
+ }
1470
+ .ant-zoom-big-leave.ant-zoom-big-leave-active {
1471
+ animation-name: antZoomBigOut;
1472
+ animation-play-state: running;
1473
+ pointer-events: none;
1474
+ }
1475
+ .ant-zoom-big-enter,
1476
+ .ant-zoom-big-appear {
1477
+ transform: scale(0);
1478
+ opacity: 0;
1479
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1480
+ }
1481
+ .ant-zoom-big-enter-prepare,
1482
+ .ant-zoom-big-appear-prepare {
1483
+ transform: none;
1484
+ }
1485
+ .ant-zoom-big-leave {
1486
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1487
+ }
1488
+ .ant-zoom-big-fast-enter,
1489
+ .ant-zoom-big-fast-appear {
1490
+ animation-duration: 0.1s;
1491
+ animation-fill-mode: both;
1492
+ animation-play-state: paused;
1493
+ }
1494
+ .ant-zoom-big-fast-leave {
1495
+ animation-duration: 0.1s;
1496
+ animation-fill-mode: both;
1497
+ animation-play-state: paused;
1498
+ }
1499
+ .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
1500
+ .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
1501
+ animation-name: antZoomBigIn;
1502
+ animation-play-state: running;
1503
+ }
1504
+ .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
1505
+ animation-name: antZoomBigOut;
1506
+ animation-play-state: running;
1507
+ pointer-events: none;
1508
+ }
1509
+ .ant-zoom-big-fast-enter,
1510
+ .ant-zoom-big-fast-appear {
1511
+ transform: scale(0);
1512
+ opacity: 0;
1513
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1514
+ }
1515
+ .ant-zoom-big-fast-enter-prepare,
1516
+ .ant-zoom-big-fast-appear-prepare {
1517
+ transform: none;
1518
+ }
1519
+ .ant-zoom-big-fast-leave {
1520
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1521
+ }
1522
+ .ant-zoom-up-enter,
1523
+ .ant-zoom-up-appear {
1524
+ animation-duration: 0.2s;
1525
+ animation-fill-mode: both;
1526
+ animation-play-state: paused;
1527
+ }
1528
+ .ant-zoom-up-leave {
1529
+ animation-duration: 0.2s;
1530
+ animation-fill-mode: both;
1531
+ animation-play-state: paused;
1532
+ }
1533
+ .ant-zoom-up-enter.ant-zoom-up-enter-active,
1534
+ .ant-zoom-up-appear.ant-zoom-up-appear-active {
1535
+ animation-name: antZoomUpIn;
1536
+ animation-play-state: running;
1537
+ }
1538
+ .ant-zoom-up-leave.ant-zoom-up-leave-active {
1539
+ animation-name: antZoomUpOut;
1540
+ animation-play-state: running;
1541
+ pointer-events: none;
1542
+ }
1543
+ .ant-zoom-up-enter,
1544
+ .ant-zoom-up-appear {
1545
+ transform: scale(0);
1546
+ opacity: 0;
1547
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1548
+ }
1549
+ .ant-zoom-up-enter-prepare,
1550
+ .ant-zoom-up-appear-prepare {
1551
+ transform: none;
1552
+ }
1553
+ .ant-zoom-up-leave {
1554
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1555
+ }
1556
+ .ant-zoom-down-enter,
1557
+ .ant-zoom-down-appear {
1558
+ animation-duration: 0.2s;
1559
+ animation-fill-mode: both;
1560
+ animation-play-state: paused;
1561
+ }
1562
+ .ant-zoom-down-leave {
1563
+ animation-duration: 0.2s;
1564
+ animation-fill-mode: both;
1565
+ animation-play-state: paused;
1566
+ }
1567
+ .ant-zoom-down-enter.ant-zoom-down-enter-active,
1568
+ .ant-zoom-down-appear.ant-zoom-down-appear-active {
1569
+ animation-name: antZoomDownIn;
1570
+ animation-play-state: running;
1571
+ }
1572
+ .ant-zoom-down-leave.ant-zoom-down-leave-active {
1573
+ animation-name: antZoomDownOut;
1574
+ animation-play-state: running;
1575
+ pointer-events: none;
1576
+ }
1577
+ .ant-zoom-down-enter,
1578
+ .ant-zoom-down-appear {
1579
+ transform: scale(0);
1580
+ opacity: 0;
1581
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1582
+ }
1583
+ .ant-zoom-down-enter-prepare,
1584
+ .ant-zoom-down-appear-prepare {
1585
+ transform: none;
1586
+ }
1587
+ .ant-zoom-down-leave {
1588
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1589
+ }
1590
+ .ant-zoom-left-enter,
1591
+ .ant-zoom-left-appear {
1592
+ animation-duration: 0.2s;
1593
+ animation-fill-mode: both;
1594
+ animation-play-state: paused;
1595
+ }
1596
+ .ant-zoom-left-leave {
1597
+ animation-duration: 0.2s;
1598
+ animation-fill-mode: both;
1599
+ animation-play-state: paused;
1600
+ }
1601
+ .ant-zoom-left-enter.ant-zoom-left-enter-active,
1602
+ .ant-zoom-left-appear.ant-zoom-left-appear-active {
1603
+ animation-name: antZoomLeftIn;
1604
+ animation-play-state: running;
1605
+ }
1606
+ .ant-zoom-left-leave.ant-zoom-left-leave-active {
1607
+ animation-name: antZoomLeftOut;
1608
+ animation-play-state: running;
1609
+ pointer-events: none;
1610
+ }
1611
+ .ant-zoom-left-enter,
1612
+ .ant-zoom-left-appear {
1613
+ transform: scale(0);
1614
+ opacity: 0;
1615
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1616
+ }
1617
+ .ant-zoom-left-enter-prepare,
1618
+ .ant-zoom-left-appear-prepare {
1619
+ transform: none;
1620
+ }
1621
+ .ant-zoom-left-leave {
1622
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1623
+ }
1624
+ .ant-zoom-right-enter,
1625
+ .ant-zoom-right-appear {
1626
+ animation-duration: 0.2s;
1627
+ animation-fill-mode: both;
1628
+ animation-play-state: paused;
1629
+ }
1630
+ .ant-zoom-right-leave {
1631
+ animation-duration: 0.2s;
1632
+ animation-fill-mode: both;
1633
+ animation-play-state: paused;
1634
+ }
1635
+ .ant-zoom-right-enter.ant-zoom-right-enter-active,
1636
+ .ant-zoom-right-appear.ant-zoom-right-appear-active {
1637
+ animation-name: antZoomRightIn;
1638
+ animation-play-state: running;
1639
+ }
1640
+ .ant-zoom-right-leave.ant-zoom-right-leave-active {
1641
+ animation-name: antZoomRightOut;
1642
+ animation-play-state: running;
1643
+ pointer-events: none;
1644
+ }
1645
+ .ant-zoom-right-enter,
1646
+ .ant-zoom-right-appear {
1647
+ transform: scale(0);
1648
+ opacity: 0;
1649
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1650
+ }
1651
+ .ant-zoom-right-enter-prepare,
1652
+ .ant-zoom-right-appear-prepare {
1653
+ transform: none;
1654
+ }
1655
+ .ant-zoom-right-leave {
1656
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1657
+ }
1658
+ @keyframes antZoomIn {
1659
+ 0% {
1660
+ transform: scale(0.2);
1661
+ opacity: 0;
1662
+ }
1663
+ 100% {
1664
+ transform: scale(1);
1665
+ opacity: 1;
1666
+ }
1667
+ }
1668
+ @keyframes antZoomOut {
1669
+ 0% {
1670
+ transform: scale(1);
1671
+ }
1672
+ 100% {
1673
+ transform: scale(0.2);
1674
+ opacity: 0;
1675
+ }
1676
+ }
1677
+ @keyframes antZoomBigIn {
1678
+ 0% {
1679
+ transform: scale(0.8);
1680
+ opacity: 0;
1681
+ }
1682
+ 100% {
1683
+ transform: scale(1);
1684
+ opacity: 1;
1685
+ }
1686
+ }
1687
+ @keyframes antZoomBigOut {
1688
+ 0% {
1689
+ transform: scale(1);
1690
+ }
1691
+ 100% {
1692
+ transform: scale(0.8);
1693
+ opacity: 0;
1694
+ }
1695
+ }
1696
+ @keyframes antZoomUpIn {
1697
+ 0% {
1698
+ transform: scale(0.8);
1699
+ transform-origin: 50% 0%;
1700
+ opacity: 0;
1701
+ }
1702
+ 100% {
1703
+ transform: scale(1);
1704
+ transform-origin: 50% 0%;
1705
+ }
1706
+ }
1707
+ @keyframes antZoomUpOut {
1708
+ 0% {
1709
+ transform: scale(1);
1710
+ transform-origin: 50% 0%;
1711
+ }
1712
+ 100% {
1713
+ transform: scale(0.8);
1714
+ transform-origin: 50% 0%;
1715
+ opacity: 0;
1716
+ }
1717
+ }
1718
+ @keyframes antZoomLeftIn {
1719
+ 0% {
1720
+ transform: scale(0.8);
1721
+ transform-origin: 0% 50%;
1722
+ opacity: 0;
1723
+ }
1724
+ 100% {
1725
+ transform: scale(1);
1726
+ transform-origin: 0% 50%;
1727
+ }
1728
+ }
1729
+ @keyframes antZoomLeftOut {
1730
+ 0% {
1731
+ transform: scale(1);
1732
+ transform-origin: 0% 50%;
1733
+ }
1734
+ 100% {
1735
+ transform: scale(0.8);
1736
+ transform-origin: 0% 50%;
1737
+ opacity: 0;
1738
+ }
1739
+ }
1740
+ @keyframes antZoomRightIn {
1741
+ 0% {
1742
+ transform: scale(0.8);
1743
+ transform-origin: 100% 50%;
1744
+ opacity: 0;
1745
+ }
1746
+ 100% {
1747
+ transform: scale(1);
1748
+ transform-origin: 100% 50%;
1749
+ }
1750
+ }
1751
+ @keyframes antZoomRightOut {
1752
+ 0% {
1753
+ transform: scale(1);
1754
+ transform-origin: 100% 50%;
1755
+ }
1756
+ 100% {
1757
+ transform: scale(0.8);
1758
+ transform-origin: 100% 50%;
1759
+ opacity: 0;
1760
+ }
1761
+ }
1762
+ @keyframes antZoomDownIn {
1763
+ 0% {
1764
+ transform: scale(0.8);
1765
+ transform-origin: 50% 100%;
1766
+ opacity: 0;
1767
+ }
1768
+ 100% {
1769
+ transform: scale(1);
1770
+ transform-origin: 50% 100%;
1771
+ }
1772
+ }
1773
+ @keyframes antZoomDownOut {
1774
+ 0% {
1775
+ transform: scale(1);
1776
+ transform-origin: 50% 100%;
1777
+ }
1778
+ 100% {
1779
+ transform: scale(0.8);
1780
+ transform-origin: 50% 100%;
1781
+ opacity: 0;
1782
+ }
1783
+ }
1784
+ .ant-motion-collapse-legacy {
1785
+ overflow: hidden;
1786
+ }
1787
+ .ant-motion-collapse-legacy-active {
1788
+ transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1789
+ }
1790
+ .ant-motion-collapse {
1791
+ overflow: hidden;
1792
+ transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1793
+ }
1794
+
1795
+ .ant-pro-form-query-filter {
1796
+ /*暂时不需要内容*/
1797
+ }
1798
+
1799
+ .ant-pro-form-light-filter {
1800
+ line-height: 30px;
1801
+ }
1802
+ .ant-pro-form-light-filter::before {
1803
+ display: block;
1804
+ height: 0;
1805
+ visibility: hidden;
1806
+ content: '.';
1807
+ }
1808
+ .ant-pro-form-light-filter-small {
1809
+ line-height: 1.5715;
1810
+ }
1811
+ .ant-pro-form-light-filter-container {
1812
+ display: flex;
1813
+ flex-wrap: wrap;
1814
+ margin-top: -8px;
1815
+ margin-right: -4px;
1816
+ }
1817
+ .ant-pro-form-light-filter-item {
1818
+ margin-top: 8px;
1819
+ white-space: nowrap;
1820
+ }
1821
+ .ant-pro-form-light-filter-item:not(:last-child) {
1822
+ margin-right: 8px;
1823
+ }
1824
+ .ant-pro-form-light-filter-formlabel {
1825
+ margin-bottom: 2px;
1826
+ }
1827
+ .ant-pro-form-light-filter-line {
1828
+ min-width: 198px;
1829
+ }
1830
+ .ant-pro-form-light-filter-line .ant-form-item {
1831
+ flex-direction: column;
1832
+ margin-bottom: 0;
1833
+ }
1834
+ .ant-pro-form-light-filter-line:not(:first-child) {
1835
+ margin-top: 16px;
1836
+ margin-bottom: 8px;
1837
+ }
1838
+ .ant-pro-form-light-filter .ant-form-item {
1839
+ margin-bottom: 0;
1840
+ }
1841
+ .ant-pro-form-light-filter-collapse-icon {
1842
+ width: 32px;
1843
+ height: 32px;
1844
+ line-height: 35px;
1845
+ border-radius: 50%;
1846
+ }
1847
+ .ant-pro-form-light-filter-effective .ant-pro-form-light-filter-collapse-icon {
1848
+ background-color: rgba(0, 0, 0, 0.04);
1849
+ }
1850
+
1851
+ .ant-pro-steps-form-container {
1852
+ width: max-content;
1853
+ min-width: 520px;
1854
+ max-width: 100%;
1855
+ margin: auto;
1856
+ }
1857
+ .ant-pro-steps-form-steps-container {
1858
+ max-width: 1160px;
1859
+ margin: auto;
1860
+ }
1861
+ .ant-pro-steps-form-step {
1862
+ display: none;
1863
+ margin-top: 32px;
1864
+ }
1865
+ .ant-pro-steps-form-step-active {
1866
+ display: block;
1867
+ }
1868
+ .ant-pro-steps-form-step > form {
1869
+ max-width: 100%;
1870
+ }
1871
+
1872
+ .pro-table-tooltip-text span {
1873
+ color: #fff;
1874
+ }
1875
+ .ant-pro-table {
1876
+ z-index: 1;
1877
+ }
1878
+ .ant-pro-table:not(:root):fullscreen {
1879
+ min-height: 100vh;
1880
+ overflow: auto;
1881
+ background: #fff;
1882
+ }
1883
+ .ant-pro-table-extra {
1884
+ margin-bottom: 10px;
1885
+ }
1886
+ .ant-pro-table-polling .ant-pro-table-list-toolbar-setting-item .anticon.anticon-reload {
1887
+ transform: rotate(0deg);
1888
+ animation: turn 1s linear infinite;
1889
+ }
1890
+ .ant-pro-table td.ant-table-cell > a {
1891
+ font-size: 14px;
1892
+ }
1893
+ .ant-pro-table .ant-table .ant-table-tbody .ant-table-wrapper:only-child .ant-table {
1894
+ margin: 0;
1895
+ }
1896
+ .ant-pro-table .ant-table.ant-table-middle .ant-pro-table {
1897
+ margin: -12px -8px;
1898
+ }
1899
+ .ant-pro-table .ant-card-body {
1900
+ padding: 15px;
1901
+ }
1902
+ .ant-pro-table-srcoll {
1903
+ height: 100%;
1904
+ display: flex;
1905
+ flex-direction: column;
1906
+ }
1907
+ .ant-pro-table-srcoll .ant-card {
1908
+ flex: 1;
1909
+ height: 0;
1910
+ }
1911
+ .ant-pro-table-srcoll .ant-card .ant-card-body {
1912
+ height: 100%;
1913
+ display: flex;
1914
+ flex-direction: column;
1915
+ }
1916
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper {
1917
+ flex: 1;
1918
+ height: 0;
1919
+ }
1920
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-nested-loading,
1921
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container {
1922
+ height: 100%;
1923
+ }
1924
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container {
1925
+ display: flex;
1926
+ flex-direction: column;
1927
+ }
1928
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-pagination.mini.ant-table-pagination {
1929
+ margin: 10px 0;
1930
+ }
1931
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table {
1932
+ flex: 1;
1933
+ height: 0;
1934
+ }
1935
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
1936
+ height: 100%;
1937
+ display: flex;
1938
+ flex-direction: column;
1939
+ border-right: 1px solid #f0f0f0;
1940
+ border-bottom: 1px solid #f0f0f0;
1941
+ }
1942
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
1943
+ flex: 1;
1944
+ }
1945
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title,
1946
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer,
1947
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th,
1948
+ .ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td,
1949
+ .ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th,
1950
+ .ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td {
1951
+ padding: 4px 4px;
1952
+ }
1953
+ .ant-pro-table-srcoll .ant-table-placeholder td {
1954
+ border-bottom: none;
1955
+ }
1956
+ @keyframes turn {
1957
+ 0% {
1958
+ transform: rotate(0deg);
1959
+ }
1960
+ 25% {
1961
+ transform: rotate(90deg);
1962
+ }
1963
+ 50% {
1964
+ transform: rotate(180deg);
1965
+ }
1966
+ 75% {
1967
+ transform: rotate(270deg);
1968
+ }
1969
+ 100% {
1970
+ transform: rotate(360deg);
1971
+ }
1972
+ }
1973
+ .ant-pro-table-toolbar {
1974
+ display: flex;
1975
+ align-items: center;
1976
+ justify-content: space-between;
1977
+ height: 64px;
1978
+ padding: 0 24px;
1979
+ }
1980
+ .ant-pro-table-toolbar-option {
1981
+ display: flex;
1982
+ align-items: center;
1983
+ justify-content: flex-end;
1984
+ }
1985
+ .ant-pro-table-toolbar-title {
1986
+ flex: 1;
1987
+ color: rgba(0, 0, 0, 0.85);
1988
+ font-weight: 500;
1989
+ font-size: 16px;
1990
+ line-height: 24px;
1991
+ opacity: 0.85;
1992
+ }
1993
+ @media (max-width: 480px) {
1994
+ .ant-pro-table .ant-table {
1995
+ width: 100%;
1996
+ overflow-x: auto;
1997
+ }
1998
+ .ant-pro-table .ant-table-thead > tr > th,
1999
+ .ant-pro-table .ant-table-tbody > tr > th,
2000
+ .ant-pro-table .ant-table-thead > tr > td,
2001
+ .ant-pro-table .ant-table-tbody > tr > td {
2002
+ white-space: pre;
2003
+ }
2004
+ .ant-pro-table .ant-table-thead > tr > th > span,
2005
+ .ant-pro-table .ant-table-tbody > tr > th > span,
2006
+ .ant-pro-table .ant-table-thead > tr > td > span,
2007
+ .ant-pro-table .ant-table-tbody > tr > td > span {
2008
+ display: block;
2009
+ }
2010
+ }
2011
+ @media (max-width: 575px) {
2012
+ .ant-pro-table-toolbar {
2013
+ flex-direction: column;
2014
+ align-items: flex-start;
2015
+ justify-content: flex-start;
2016
+ height: auto;
2017
+ margin-bottom: 16px;
2018
+ margin-left: 16px;
2019
+ padding: 8px;
2020
+ padding-top: 16px;
2021
+ line-height: normal;
2022
+ }
2023
+ .ant-pro-table-toolbar-title {
2024
+ margin-bottom: 16px;
2025
+ }
2026
+ .ant-pro-table-toolbar-option {
2027
+ display: flex;
2028
+ justify-content: space-between;
2029
+ width: 100%;
2030
+ }
2031
+ .ant-pro-table-toolbar-default-option {
2032
+ display: flex;
2033
+ flex: 1;
2034
+ align-items: center;
2035
+ justify-content: flex-end;
2036
+ }
2037
+ }
2038
+
2039
+ .ant-pro-table-column-setting {
2040
+ width: auto;
2041
+ }
2042
+ .ant-pro-table-column-setting-title {
2043
+ display: flex;
2044
+ align-items: center;
2045
+ justify-content: space-between;
2046
+ height: 32px;
2047
+ }
2048
+ .ant-pro-table-column-setting-overlay .ant-popover-inner-content {
2049
+ width: 200px;
2050
+ padding: 0px;
2051
+ padding-bottom: 8px;
2052
+ }
2053
+ .ant-pro-table-column-setting-overlay .ant-tree-node-content-wrapper:hover {
2054
+ background-color: transparent;
2055
+ }
2056
+ .ant-pro-table-column-setting-overlay .ant-tree-draggable-icon {
2057
+ cursor: grab;
2058
+ }
2059
+ .ant-pro-table-column-setting-overlay .ant-tree-treenode {
2060
+ align-items: center;
2061
+ }
2062
+ .ant-pro-table-column-setting-overlay .ant-tree-treenode:hover {
2063
+ background-color: #e6f7ff;
2064
+ }
2065
+ .ant-pro-table-column-setting-overlay .ant-tree-treenode:hover .ant-pro-table-column-setting-list-item-option {
2066
+ display: block;
2067
+ }
2068
+ .ant-pro-table-column-setting-overlay .ant-tree-treenode .ant-tree-checkbox {
2069
+ top: 0;
2070
+ margin: 0;
2071
+ margin-right: 4px;
2072
+ }
2073
+ .ant-pro-table-column-setting-list {
2074
+ display: flex;
2075
+ flex-direction: column;
2076
+ width: 100%;
2077
+ padding-top: 8px;
2078
+ }
2079
+ .ant-pro-table-column-setting-list.ant-pro-table-column-setting-list-group {
2080
+ padding-top: 0;
2081
+ }
2082
+ .ant-pro-table-column-setting-list-title {
2083
+ margin-top: 6px;
2084
+ margin-bottom: 6px;
2085
+ padding-left: 24px;
2086
+ color: rgba(0, 0, 0, 0.45);
2087
+ font-size: 12px;
2088
+ }
2089
+ .ant-pro-table-column-setting-list-item {
2090
+ display: flex;
2091
+ align-items: center;
2092
+ }
2093
+ .ant-pro-table-column-setting-list-item-title {
2094
+ flex: 1;
2095
+ }
2096
+ .ant-pro-table-column-setting-list-item-option {
2097
+ display: none;
2098
+ float: right;
2099
+ cursor: pointer;
2100
+ }
2101
+ .ant-pro-table-column-setting-list-item-option > span > span.anticon {
2102
+ color: #1890ff;
2103
+ }
2104
+ .ant-pro-table-column-setting-list-item-option > span + span {
2105
+ margin-left: 8px;
2106
+ }
2107
+
2108
+ .ant-pro-table-list-toolbar {
2109
+ line-height: 1;
2110
+ }
2111
+ .ant-pro-table-list-toolbar-container {
2112
+ display: flex;
2113
+ justify-content: space-between;
2114
+ padding: 8px 0;
2115
+ }
2116
+ .ant-pro-table-list-toolbar-container-mobile {
2117
+ flex-direction: column;
2118
+ }
2119
+ .ant-pro-table-list-toolbar-title {
2120
+ display: flex;
2121
+ align-items: center;
2122
+ justify-content: flex-start;
2123
+ color: rgba(0, 0, 0, 0.85);
2124
+ font-weight: 500;
2125
+ font-size: 16px;
2126
+ }
2127
+ .ant-pro-table-list-toolbar-search:not(:last-child) {
2128
+ display: flex;
2129
+ align-items: center;
2130
+ justify-content: flex-start;
2131
+ }
2132
+ .ant-pro-table-list-toolbar-setting-item {
2133
+ margin: 0 4px;
2134
+ color: rgba(0, 0, 0, 0.75);
2135
+ font-size: 16px;
2136
+ cursor: pointer;
2137
+ }
2138
+ .ant-pro-table-list-toolbar-setting-item > span {
2139
+ display: block;
2140
+ width: 100%;
2141
+ height: 100%;
2142
+ }
2143
+ .ant-pro-table-list-toolbar-setting-item:hover {
2144
+ color: #40a9ff;
2145
+ }
2146
+ .ant-pro-table-list-toolbar-left {
2147
+ display: flex;
2148
+ align-items: center;
2149
+ justify-content: flex-start;
2150
+ }
2151
+ .ant-pro-table-list-toolbar-right {
2152
+ display: flex;
2153
+ justify-content: flex-end;
2154
+ }
2155
+ .ant-pro-table-list-toolbar-extra-line {
2156
+ margin-bottom: 16px;
2157
+ }
2158
+ .ant-pro-table-list-toolbar-filter {
2159
+ display: flex;
2160
+ align-items: center;
2161
+ }
2162
+ .ant-pro-table-list-toolbar-filter:not(:last-child) {
2163
+ margin-right: 16px;
2164
+ }
2165
+ .ant-pro-table-list-toolbar-filter .ant-pro-table-search {
2166
+ margin: 0;
2167
+ padding: 0;
2168
+ }
2169
+ .ant-pro-table-list-toolbar-inline-menu-item {
2170
+ display: inline-block;
2171
+ margin-right: 24px;
2172
+ cursor: pointer;
2173
+ opacity: 0.75;
2174
+ }
2175
+ .ant-pro-table-list-toolbar-inline-menu-item-active {
2176
+ font-weight: bold;
2177
+ opacity: 1;
2178
+ }
2179
+ .ant-pro-table-list-toolbar-dropdownmenu-label {
2180
+ font-weight: bold;
2181
+ font-size: 16px;
2182
+ text-align: center;
2183
+ cursor: pointer;
2184
+ }
2185
+ .ant-pro-table-list-toolbar .ant-tabs-top > .ant-tabs-nav {
2186
+ margin-bottom: 0;
2187
+ }
2188
+ .ant-pro-table-list-toolbar .ant-tabs-top > .ant-tabs-nav::before {
2189
+ border-bottom: 0;
2190
+ }
2191
+ .ant-pro-table-list-toolbar .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-list {
2192
+ margin-top: 0;
2193
+ }
2194
+ .ant-pro-table-list-toolbar .ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-list .ant-tabs-tab {
2195
+ padding-top: 0;
2196
+ }
2197
+ @media (max-width: 575px) {
2198
+ .ant-pro-table-list-toolbar-container {
2199
+ display: flex;
2200
+ flex-wrap: wrap;
2201
+ }
2202
+ .ant-pro-table-list-toolbar-left {
2203
+ margin-bottom: 16px;
2204
+ }
2205
+ }
2206
+
2207
+ .ant-pro-table-alert {
2208
+ margin-bottom: 12px;
2209
+ }
2210
+ .ant-pro-table-alert-info {
2211
+ display: flex;
2212
+ align-items: center;
2213
+ transition: all 0.3s;
2214
+ }
2215
+ .ant-pro-table-alert-info-content {
2216
+ flex: 1;
2217
+ }
2218
+ .ant-pro-table-alert-info-option {
2219
+ min-width: 48px;
2220
+ padding-left: 16px;
2221
+ }
2222
+
2223
+ .table-import-body {
2224
+ margin-left: 20px;
2225
+ }
2226
+ .table-import-body .import-step {
2227
+ padding-bottom: 10px;
2228
+ }
2229
+ .table-import-body .import-step > :first-child {
2230
+ border: 1px solid #af8351;
2231
+ border-radius: 50%;
2232
+ width: 20px;
2233
+ height: 20px;
2234
+ text-align: center;
2235
+ line-height: 18px;
2236
+ display: inline-block;
2237
+ font-weight: bold;
2238
+ color: #af8351;
2239
+ }
2240
+ .table-import-body .import-step > :last-child {
2241
+ display: inline-block;
2242
+ font-weight: bold;
2243
+ margin-left: 5px;
2244
+ }
2245
+ .table-import-body .file-link {
2246
+ border: 1px #ddd;
2247
+ border-style: dashed;
2248
+ margin: 5px 20px;
2249
+ padding: 5px 10px 5px 10px;
2250
+ }
2251
+ .table-import-body .file-link .file-icon {
2252
+ display: inline-block;
2253
+ font-size: 22px;
2254
+ }
2255
+ .table-import-body .file-link .file-name {
2256
+ display: inline-block;
2257
+ margin-left: 10px;
2258
+ }
2259
+ .table-import-body .file-link .file-down {
2260
+ float: right;
2261
+ margin-top: 3px;
2262
+ }
2263
+ .table-import-body .file-link .file-down :after {
2264
+ clear: both;
2265
+ }
2266
+ .table-import-body .attention-tip-title {
2267
+ margin-left: 20px;
2268
+ font-weight: bold;
2269
+ }
2270
+ .table-import-body .attention-tip > li {
2271
+ margin-bottom: 5px;
2272
+ }
2273
+ .table-import-body .upload-btn {
2274
+ margin: 10px 50px !important;
2275
+ }
2276
+