synos-helena 21.13.1-beta.0 → 21.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/lib/dark.css +25703 -0
  2. package/lib/dark.css.map +1 -0
  3. package/lib/dark.js +2 -0
  4. package/lib/dark.js.map +1 -0
  5. package/lib/helena.css +25706 -0
  6. package/lib/helena.css.map +1 -0
  7. package/lib/helena.js +2 -0
  8. package/lib/helena.js.map +1 -0
  9. package/lib/helena.less +1 -0
  10. package/lib/icons/export.svg +3 -0
  11. package/lib/icons/field-time.svg +4 -0
  12. package/lib/icons/file-calculator.svg +13 -0
  13. package/lib/icons/hand-service.svg +5 -0
  14. package/lib/icons/import.svg +4 -0
  15. package/lib/icons/package.svg +3 -0
  16. package/lib/icons/process-config.svg +8 -0
  17. package/lib/icons/transmission.svg +6 -0
  18. package/lib/images/empty-notification.svg +17 -0
  19. package/lib/images/synchro-logo.svg +11 -0
  20. package/lib/index.css +4373 -0
  21. package/lib/index.css.map +1 -0
  22. package/lib/index.d.ts +1369 -0
  23. package/lib/index.js +3 -0
  24. package/lib/index.js.LICENSE.txt +70 -0
  25. package/lib/index.js.map +1 -0
  26. package/lib/light.css +25703 -0
  27. package/lib/light.css.map +1 -0
  28. package/lib/light.js +2 -0
  29. package/lib/light.js.map +1 -0
  30. package/lib/themes/colors/ant-blues.less +17 -0
  31. package/lib/themes/colors/ant-yellows.less +17 -0
  32. package/lib/themes/colors/blues.less +17 -0
  33. package/lib/themes/colors/dark-olive-greens.less +17 -0
  34. package/lib/themes/colors/gray.less +19 -0
  35. package/lib/themes/colors/greens.less +17 -0
  36. package/lib/themes/colors/pinks.less +17 -0
  37. package/lib/themes/colors/purples.less +17 -0
  38. package/lib/themes/colors/reds.less +17 -0
  39. package/lib/themes/colors/yellows.less +17 -0
  40. package/lib/themes/dark.less +38 -0
  41. package/lib/themes/default.less +46 -0
  42. package/lib/themes/general_custom.less +25 -0
  43. package/lib/themes/light.less +38 -0
  44. package/package.json +1 -1
package/lib/index.css ADDED
@@ -0,0 +1,4373 @@
1
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2
+ /* stylelint-disable no-duplicate-selectors */
3
+ /* stylelint-disable */
4
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5
+ .ant-picker {
6
+ box-sizing: border-box;
7
+ margin: 0;
8
+ padding: 0;
9
+ color: rgba(0, 0, 0, 0.85);
10
+ font-size: 14px;
11
+ font-variant: tabular-nums;
12
+ line-height: 1.5715;
13
+ list-style: none;
14
+ font-feature-settings: 'tnum';
15
+ padding: 4px 11px 4px;
16
+ position: relative;
17
+ display: inline-flex;
18
+ align-items: center;
19
+ background: #fff;
20
+ border: 1px solid #d9d9d9;
21
+ border-radius: 2px;
22
+ transition: border 0.3s, box-shadow 0.3s;
23
+ }
24
+ .ant-picker:hover,
25
+ .ant-picker-focused {
26
+ border-color: #40a9ff;
27
+ border-right-width: 1px !important;
28
+ }
29
+ .ant-picker-focused {
30
+ border-color: #40a9ff;
31
+ box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
32
+ border-right-width: 1px !important;
33
+ outline: 0;
34
+ }
35
+ .ant-picker.ant-picker-disabled {
36
+ background: #f5f5f5;
37
+ border-color: #d9d9d9;
38
+ cursor: not-allowed;
39
+ }
40
+ .ant-picker.ant-picker-disabled .ant-picker-suffix {
41
+ color: rgba(0, 0, 0, 0.25);
42
+ }
43
+ .ant-picker.ant-picker-borderless {
44
+ background-color: transparent !important;
45
+ border-color: transparent !important;
46
+ box-shadow: none !important;
47
+ }
48
+ .ant-picker-input {
49
+ position: relative;
50
+ display: inline-flex;
51
+ align-items: center;
52
+ width: 100%;
53
+ }
54
+ .ant-picker-input > input {
55
+ position: relative;
56
+ display: inline-block;
57
+ width: 100%;
58
+ min-width: 0;
59
+ padding: 4px 11px;
60
+ color: rgba(0, 0, 0, 0.85);
61
+ font-size: 14px;
62
+ line-height: 1.5715;
63
+ background-color: #fff;
64
+ background-image: none;
65
+ border: 1px solid #d9d9d9;
66
+ border-radius: 2px;
67
+ transition: all 0.3s;
68
+ /* stylelint-disable-next-line selector-no-vendor-prefix */
69
+ flex: auto;
70
+ min-width: 1px;
71
+ height: auto;
72
+ padding: 0;
73
+ background: transparent;
74
+ border: 0;
75
+ }
76
+ .ant-picker-input > input::-moz-placeholder {
77
+ opacity: 1;
78
+ }
79
+ .ant-picker-input > input::placeholder {
80
+ color: #bfbfbf;
81
+ user-select: none;
82
+ }
83
+ .ant-picker-input > input:placeholder-shown {
84
+ text-overflow: ellipsis;
85
+ }
86
+ .ant-picker-input > input:hover {
87
+ border-color: #40a9ff;
88
+ border-right-width: 1px !important;
89
+ }
90
+ .ant-picker-input > input:focus,
91
+ .ant-picker-input > input-focused {
92
+ border-color: #40a9ff;
93
+ box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
94
+ border-right-width: 1px !important;
95
+ outline: 0;
96
+ }
97
+ .ant-picker-input > input-disabled {
98
+ color: rgba(0, 0, 0, 0.25);
99
+ background-color: #f5f5f5;
100
+ border-color: #d9d9d9;
101
+ box-shadow: none;
102
+ cursor: not-allowed;
103
+ opacity: 1;
104
+ }
105
+ .ant-picker-input > input-disabled:hover {
106
+ border-color: #d9d9d9;
107
+ border-right-width: 1px !important;
108
+ }
109
+ .ant-picker-input > input[disabled] {
110
+ color: rgba(0, 0, 0, 0.25);
111
+ background-color: #f5f5f5;
112
+ border-color: #d9d9d9;
113
+ box-shadow: none;
114
+ cursor: not-allowed;
115
+ opacity: 1;
116
+ }
117
+ .ant-picker-input > input[disabled]:hover {
118
+ border-color: #d9d9d9;
119
+ border-right-width: 1px !important;
120
+ }
121
+ .ant-picker-input > input-borderless,
122
+ .ant-picker-input > input-borderless:hover,
123
+ .ant-picker-input > input-borderless:focus,
124
+ .ant-picker-input > input-borderless-focused,
125
+ .ant-picker-input > input-borderless-disabled,
126
+ .ant-picker-input > input-borderless[disabled] {
127
+ background-color: transparent;
128
+ border: none;
129
+ box-shadow: none;
130
+ }
131
+ textarea.ant-picker-input > input {
132
+ max-width: 100%;
133
+ height: auto;
134
+ min-height: 32px;
135
+ line-height: 1.5715;
136
+ vertical-align: bottom;
137
+ transition: all 0.3s, height 0s;
138
+ }
139
+ .ant-picker-input > input-lg {
140
+ padding: 6.5px 11px;
141
+ font-size: 16px;
142
+ }
143
+ .ant-picker-input > input-sm {
144
+ padding: 0px 7px;
145
+ }
146
+ .ant-picker-input > input:focus {
147
+ box-shadow: none;
148
+ }
149
+ .ant-picker-input > input[disabled] {
150
+ background: transparent;
151
+ }
152
+ .ant-picker-input:hover .ant-picker-clear {
153
+ opacity: 1;
154
+ }
155
+ .ant-picker-input-placeholder > input {
156
+ color: #bfbfbf;
157
+ }
158
+ .ant-picker-large {
159
+ padding: 6.5px 11px 6.5px;
160
+ }
161
+ .ant-picker-large .ant-picker-input > input {
162
+ font-size: 16px;
163
+ }
164
+ .ant-picker-small {
165
+ padding: 0px 7px 0px;
166
+ }
167
+ .ant-picker-suffix {
168
+ align-self: center;
169
+ margin-left: 4px;
170
+ color: rgba(0, 0, 0, 0.25);
171
+ line-height: 1;
172
+ pointer-events: none;
173
+ }
174
+ .ant-picker-suffix > * {
175
+ vertical-align: top;
176
+ }
177
+ .ant-picker-clear {
178
+ position: absolute;
179
+ top: 50%;
180
+ right: 0;
181
+ color: rgba(0, 0, 0, 0.25);
182
+ line-height: 1;
183
+ background: #fff;
184
+ transform: translateY(-50%);
185
+ cursor: pointer;
186
+ opacity: 0;
187
+ transition: opacity 0.3s, color 0.3s;
188
+ }
189
+ .ant-picker-clear > * {
190
+ vertical-align: top;
191
+ }
192
+ .ant-picker-clear:hover {
193
+ color: rgba(0, 0, 0, 0.45);
194
+ }
195
+ .ant-picker-separator {
196
+ position: relative;
197
+ display: inline-block;
198
+ width: 1em;
199
+ height: 16px;
200
+ color: rgba(0, 0, 0, 0.25);
201
+ font-size: 16px;
202
+ vertical-align: top;
203
+ cursor: default;
204
+ }
205
+ .ant-picker-focused .ant-picker-separator {
206
+ color: rgba(0, 0, 0, 0.45);
207
+ }
208
+ .ant-picker-disabled .ant-picker-range-separator .ant-picker-separator {
209
+ cursor: not-allowed;
210
+ }
211
+ .ant-picker-range {
212
+ position: relative;
213
+ display: inline-flex;
214
+ }
215
+ .ant-picker-range .ant-picker-clear {
216
+ right: 11px;
217
+ }
218
+ .ant-picker-range:hover .ant-picker-clear {
219
+ opacity: 1;
220
+ }
221
+ .ant-picker-range .ant-picker-active-bar {
222
+ bottom: -1px;
223
+ height: 2px;
224
+ margin-left: 11px;
225
+ background: #1890ff;
226
+ opacity: 0;
227
+ transition: all 0.3s ease-out;
228
+ pointer-events: none;
229
+ }
230
+ .ant-picker-range.ant-picker-focused .ant-picker-active-bar {
231
+ opacity: 1;
232
+ }
233
+ .ant-picker-range-separator {
234
+ align-items: center;
235
+ padding: 0 8px;
236
+ line-height: 1;
237
+ }
238
+ .ant-picker-range.ant-picker-small .ant-picker-clear {
239
+ right: 7px;
240
+ }
241
+ .ant-picker-range.ant-picker-small .ant-picker-active-bar {
242
+ margin-left: 7px;
243
+ }
244
+ .ant-picker-dropdown {
245
+ box-sizing: border-box;
246
+ margin: 0;
247
+ padding: 0;
248
+ color: rgba(0, 0, 0, 0.85);
249
+ font-size: 14px;
250
+ font-variant: tabular-nums;
251
+ line-height: 1.5715;
252
+ list-style: none;
253
+ font-feature-settings: 'tnum';
254
+ position: absolute;
255
+ z-index: 1050;
256
+ }
257
+ .ant-picker-dropdown-hidden {
258
+ display: none;
259
+ }
260
+ .ant-picker-dropdown-placement-bottomLeft .ant-picker-range-arrow {
261
+ top: 1.66666667px;
262
+ display: block;
263
+ transform: rotate(-45deg);
264
+ }
265
+ .ant-picker-dropdown-placement-topLeft .ant-picker-range-arrow {
266
+ bottom: 1.66666667px;
267
+ display: block;
268
+ transform: rotate(135deg);
269
+ }
270
+ .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topLeft,
271
+ .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topRight,
272
+ .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topLeft,
273
+ .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topRight {
274
+ animation-name: antSlideDownIn;
275
+ }
276
+ .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomLeft,
277
+ .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomRight,
278
+ .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomLeft,
279
+ .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomRight {
280
+ animation-name: antSlideUpIn;
281
+ }
282
+ .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topLeft,
283
+ .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topRight {
284
+ animation-name: antSlideDownOut;
285
+ }
286
+ .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomLeft,
287
+ .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomRight {
288
+ animation-name: antSlideUpOut;
289
+ }
290
+ .ant-picker-dropdown-range {
291
+ padding: 6.66666667px 0;
292
+ }
293
+ .ant-picker-dropdown-range-hidden {
294
+ display: none;
295
+ }
296
+ .ant-picker-dropdown .ant-picker-panel > .ant-picker-time-panel {
297
+ padding-top: 4px;
298
+ }
299
+ .ant-picker-ranges {
300
+ margin-bottom: 0;
301
+ padding: 4px 12px;
302
+ overflow: hidden;
303
+ line-height: 34px;
304
+ text-align: left;
305
+ list-style: none;
306
+ }
307
+ .ant-picker-ranges > li {
308
+ display: inline-block;
309
+ }
310
+ .ant-picker-ranges .ant-picker-preset > .ant-tag-blue {
311
+ color: #1890ff;
312
+ background: #e6f7ff;
313
+ border-color: #91d5ff;
314
+ cursor: pointer;
315
+ }
316
+ .ant-picker-ranges .ant-picker-ok {
317
+ float: right;
318
+ margin-left: 8px;
319
+ }
320
+ .ant-picker-range-wrapper {
321
+ display: flex;
322
+ }
323
+ .ant-picker-range-arrow {
324
+ position: absolute;
325
+ z-index: 1;
326
+ display: none;
327
+ width: 10px;
328
+ height: 10px;
329
+ margin-left: 16.5px;
330
+ box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.06);
331
+ transition: left 0.3s ease-out;
332
+ }
333
+ .ant-picker-range-arrow::after {
334
+ position: absolute;
335
+ top: 1px;
336
+ right: 1px;
337
+ width: 10px;
338
+ height: 10px;
339
+ border: 5px solid #f0f0f0;
340
+ border-color: #fff #fff transparent transparent;
341
+ content: '';
342
+ }
343
+ .ant-picker-panel-container {
344
+ overflow: hidden;
345
+ vertical-align: top;
346
+ background: #fff;
347
+ border-radius: 2px;
348
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
349
+ transition: margin 0.3s;
350
+ }
351
+ .ant-picker-panel-container .ant-picker-panels {
352
+ display: inline-flex;
353
+ flex-wrap: nowrap;
354
+ direction: ltr;
355
+ }
356
+ .ant-picker-panel-container .ant-picker-panel {
357
+ vertical-align: top;
358
+ background: transparent;
359
+ border-width: 0 0 1px 0;
360
+ border-radius: 0;
361
+ }
362
+ .ant-picker-panel-container .ant-picker-panel .ant-picker-content,
363
+ .ant-picker-panel-container .ant-picker-panel table {
364
+ text-align: center;
365
+ }
366
+ .ant-picker-panel-container .ant-picker-panel-focused {
367
+ border-color: #f0f0f0;
368
+ }
369
+ .ant-picker-panel {
370
+ display: inline-flex;
371
+ flex-direction: column;
372
+ text-align: center;
373
+ background: #fff;
374
+ border: 1px solid #f0f0f0;
375
+ border-radius: 2px;
376
+ outline: none;
377
+ }
378
+ .ant-picker-panel-focused {
379
+ border-color: #1890ff;
380
+ }
381
+ .ant-picker-decade-panel,
382
+ .ant-picker-year-panel,
383
+ .ant-picker-quarter-panel,
384
+ .ant-picker-month-panel,
385
+ .ant-picker-week-panel,
386
+ .ant-picker-date-panel,
387
+ .ant-picker-time-panel {
388
+ display: flex;
389
+ flex-direction: column;
390
+ width: 280px;
391
+ }
392
+ .ant-picker-header {
393
+ display: flex;
394
+ padding: 0 8px;
395
+ color: rgba(0, 0, 0, 0.85);
396
+ border-bottom: 1px solid #f0f0f0;
397
+ }
398
+ .ant-picker-header > * {
399
+ flex: none;
400
+ }
401
+ .ant-picker-header button {
402
+ padding: 0;
403
+ color: rgba(0, 0, 0, 0.25);
404
+ line-height: 40px;
405
+ background: transparent;
406
+ border: 0;
407
+ cursor: pointer;
408
+ transition: color 0.3s;
409
+ }
410
+ .ant-picker-header > button {
411
+ min-width: 1.6em;
412
+ font-size: 14px;
413
+ }
414
+ .ant-picker-header > button:hover {
415
+ color: rgba(0, 0, 0, 0.85);
416
+ }
417
+ .ant-picker-header-view {
418
+ flex: auto;
419
+ font-weight: 500;
420
+ line-height: 40px;
421
+ }
422
+ .ant-picker-header-view button {
423
+ color: inherit;
424
+ font-weight: inherit;
425
+ }
426
+ .ant-picker-header-view button:not(:first-child) {
427
+ margin-left: 8px;
428
+ }
429
+ .ant-picker-header-view button:hover {
430
+ color: #1890ff;
431
+ }
432
+ .ant-picker-prev-icon,
433
+ .ant-picker-next-icon,
434
+ .ant-picker-super-prev-icon,
435
+ .ant-picker-super-next-icon {
436
+ position: relative;
437
+ display: inline-block;
438
+ width: 7px;
439
+ height: 7px;
440
+ }
441
+ .ant-picker-prev-icon::before,
442
+ .ant-picker-next-icon::before,
443
+ .ant-picker-super-prev-icon::before,
444
+ .ant-picker-super-next-icon::before {
445
+ position: absolute;
446
+ top: 0;
447
+ left: 0;
448
+ display: inline-block;
449
+ width: 7px;
450
+ height: 7px;
451
+ border: 0 solid currentColor;
452
+ border-width: 1.5px 0 0 1.5px;
453
+ content: '';
454
+ }
455
+ .ant-picker-super-prev-icon::after,
456
+ .ant-picker-super-next-icon::after {
457
+ position: absolute;
458
+ top: 4px;
459
+ left: 4px;
460
+ display: inline-block;
461
+ width: 7px;
462
+ height: 7px;
463
+ border: 0 solid currentColor;
464
+ border-width: 1.5px 0 0 1.5px;
465
+ content: '';
466
+ }
467
+ .ant-picker-prev-icon,
468
+ .ant-picker-super-prev-icon {
469
+ transform: rotate(-45deg);
470
+ }
471
+ .ant-picker-next-icon,
472
+ .ant-picker-super-next-icon {
473
+ transform: rotate(135deg);
474
+ }
475
+ .ant-picker-content {
476
+ width: 100%;
477
+ table-layout: fixed;
478
+ border-collapse: collapse;
479
+ }
480
+ .ant-picker-content th,
481
+ .ant-picker-content td {
482
+ position: relative;
483
+ min-width: 24px;
484
+ font-weight: 400;
485
+ }
486
+ .ant-picker-content th {
487
+ height: 30px;
488
+ color: rgba(0, 0, 0, 0.85);
489
+ line-height: 30px;
490
+ }
491
+ .ant-picker-cell {
492
+ padding: 3px 0;
493
+ color: rgba(0, 0, 0, 0.25);
494
+ cursor: pointer;
495
+ }
496
+ .ant-picker-cell-in-view {
497
+ color: rgba(0, 0, 0, 0.85);
498
+ }
499
+ .ant-picker-cell::before {
500
+ position: absolute;
501
+ top: 50%;
502
+ right: 0;
503
+ left: 0;
504
+ z-index: 1;
505
+ height: 24px;
506
+ transform: translateY(-50%);
507
+ transition: all 0.3s;
508
+ content: '';
509
+ }
510
+ .ant-picker-cell .ant-picker-cell-inner {
511
+ position: relative;
512
+ z-index: 2;
513
+ display: inline-block;
514
+ min-width: 24px;
515
+ height: 24px;
516
+ line-height: 24px;
517
+ border-radius: 2px;
518
+ transition: background 0.3s, border 0.3s;
519
+ }
520
+ .ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner,
521
+ .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner {
522
+ background: #f5f5f5;
523
+ }
524
+ .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before {
525
+ position: absolute;
526
+ top: 0;
527
+ right: 0;
528
+ bottom: 0;
529
+ left: 0;
530
+ z-index: 1;
531
+ border: 1px solid #1890ff;
532
+ border-radius: 2px;
533
+ content: '';
534
+ }
535
+ .ant-picker-cell-in-view.ant-picker-cell-in-range {
536
+ position: relative;
537
+ }
538
+ .ant-picker-cell-in-view.ant-picker-cell-in-range::before {
539
+ background: #e6f7ff;
540
+ }
541
+ .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner,
542
+ .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,
543
+ .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner {
544
+ color: #fff;
545
+ background: #1890ff;
546
+ }
547
+ .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single)::before,
548
+ .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single)::before {
549
+ background: #e6f7ff;
550
+ }
551
+ .ant-picker-cell-in-view.ant-picker-cell-range-start::before {
552
+ left: 50%;
553
+ }
554
+ .ant-picker-cell-in-view.ant-picker-cell-range-end::before {
555
+ right: 50%;
556
+ }
557
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end)::after,
558
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:not(.ant-picker-cell-in-range):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end)::after,
559
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start-single::after,
560
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-start.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-end-near-hover::after,
561
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-start.ant-picker-cell-range-end.ant-picker-cell-range-start-near-hover::after,
562
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-end.ant-picker-cell-range-end-single::after,
563
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-in-range)::after {
564
+ position: absolute;
565
+ top: 50%;
566
+ z-index: 0;
567
+ height: 24px;
568
+ border-top: 1px dashed #7ec1ff;
569
+ border-bottom: 1px dashed #7ec1ff;
570
+ transform: translateY(-50%);
571
+ transition: all 0.3s;
572
+ content: '';
573
+ }
574
+ .ant-picker-cell-range-hover-start::after,
575
+ .ant-picker-cell-range-hover-end::after,
576
+ .ant-picker-cell-range-hover::after {
577
+ right: 0;
578
+ left: 2px;
579
+ }
580
+ .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover::before,
581
+ .ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-hover::before,
582
+ .ant-picker-cell-in-view.ant-picker-cell-range-end.ant-picker-cell-range-hover::before,
583
+ .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single).ant-picker-cell-range-hover-start::before,
584
+ .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single).ant-picker-cell-range-hover-end::before,
585
+ .ant-picker-panel > :not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start::before,
586
+ .ant-picker-panel > :not(.ant-picker-date-panel) .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end::before {
587
+ background: #cbe6ff;
588
+ }
589
+ .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner {
590
+ border-radius: 2px 0 0 2px;
591
+ }
592
+ .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner {
593
+ border-radius: 0 2px 2px 0;
594
+ }
595
+ .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner::after,
596
+ .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner::after {
597
+ position: absolute;
598
+ top: 0;
599
+ bottom: 0;
600
+ z-index: -1;
601
+ background: #cbe6ff;
602
+ transition: all 0.3s;
603
+ content: '';
604
+ }
605
+ .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner::after {
606
+ right: -6px;
607
+ left: 0;
608
+ }
609
+ .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner::after {
610
+ right: 0;
611
+ left: -6px;
612
+ }
613
+ .ant-picker-cell-range-hover.ant-picker-cell-range-start::after {
614
+ right: 50%;
615
+ }
616
+ .ant-picker-cell-range-hover.ant-picker-cell-range-end::after {
617
+ left: 50%;
618
+ }
619
+ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:first-child::after,
620
+ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::after,
621
+ .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range::after,
622
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range)::after,
623
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-start::after {
624
+ left: 6px;
625
+ border-left: 1px dashed #7ec1ff;
626
+ border-top-left-radius: 2px;
627
+ border-bottom-left-radius: 2px;
628
+ }
629
+ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:last-child::after,
630
+ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after,
631
+ .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range::after,
632
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range)::after,
633
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-end::after {
634
+ right: 6px;
635
+ border-right: 1px dashed #7ec1ff;
636
+ border-top-right-radius: 2px;
637
+ border-bottom-right-radius: 2px;
638
+ }
639
+ .ant-picker-cell-disabled {
640
+ color: rgba(0, 0, 0, 0.25);
641
+ pointer-events: none;
642
+ }
643
+ .ant-picker-cell-disabled .ant-picker-cell-inner {
644
+ background: transparent;
645
+ }
646
+ .ant-picker-cell-disabled::before {
647
+ background: rgba(0, 0, 0, 0.04);
648
+ }
649
+ .ant-picker-cell-disabled.ant-picker-cell-today .ant-picker-cell-inner::before {
650
+ border-color: rgba(0, 0, 0, 0.25);
651
+ }
652
+ .ant-picker-decade-panel .ant-picker-content,
653
+ .ant-picker-year-panel .ant-picker-content,
654
+ .ant-picker-quarter-panel .ant-picker-content,
655
+ .ant-picker-month-panel .ant-picker-content {
656
+ height: 264px;
657
+ }
658
+ .ant-picker-decade-panel .ant-picker-cell-inner,
659
+ .ant-picker-year-panel .ant-picker-cell-inner,
660
+ .ant-picker-quarter-panel .ant-picker-cell-inner,
661
+ .ant-picker-month-panel .ant-picker-cell-inner {
662
+ padding: 0 8px;
663
+ }
664
+ .ant-picker-quarter-panel .ant-picker-content {
665
+ height: 56px;
666
+ }
667
+ .ant-picker-footer {
668
+ width: min-content;
669
+ min-width: 100%;
670
+ line-height: 38px;
671
+ text-align: center;
672
+ border-bottom: 1px solid transparent;
673
+ }
674
+ .ant-picker-panel .ant-picker-footer {
675
+ border-top: 1px solid #f0f0f0;
676
+ }
677
+ .ant-picker-footer-extra {
678
+ padding: 0 12px;
679
+ line-height: 38px;
680
+ text-align: left;
681
+ }
682
+ .ant-picker-footer-extra:not(:last-child) {
683
+ border-bottom: 1px solid #f0f0f0;
684
+ }
685
+ .ant-picker-now {
686
+ text-align: left;
687
+ }
688
+ .ant-picker-today-btn {
689
+ color: #1890ff;
690
+ }
691
+ .ant-picker-today-btn:hover {
692
+ color: #40a9ff;
693
+ }
694
+ .ant-picker-today-btn:active {
695
+ color: #096dd9;
696
+ }
697
+ .ant-picker-today-btn.ant-picker-today-btn-disabled {
698
+ color: rgba(0, 0, 0, 0.25);
699
+ cursor: not-allowed;
700
+ }
701
+ .ant-picker-decade-panel .ant-picker-cell-inner {
702
+ padding: 0 4px;
703
+ }
704
+ .ant-picker-decade-panel .ant-picker-cell::before {
705
+ display: none;
706
+ }
707
+ .ant-picker-year-panel .ant-picker-body,
708
+ .ant-picker-quarter-panel .ant-picker-body,
709
+ .ant-picker-month-panel .ant-picker-body {
710
+ padding: 0 8px;
711
+ }
712
+ .ant-picker-year-panel .ant-picker-cell-inner,
713
+ .ant-picker-quarter-panel .ant-picker-cell-inner,
714
+ .ant-picker-month-panel .ant-picker-cell-inner {
715
+ width: 60px;
716
+ }
717
+ .ant-picker-year-panel .ant-picker-cell-range-hover-start::after,
718
+ .ant-picker-quarter-panel .ant-picker-cell-range-hover-start::after,
719
+ .ant-picker-month-panel .ant-picker-cell-range-hover-start::after {
720
+ left: 14px;
721
+ border-left: 1px dashed #7ec1ff;
722
+ border-radius: 2px 0 0 2px;
723
+ }
724
+ .ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-start::after,
725
+ .ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-start::after,
726
+ .ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-start::after {
727
+ right: 14px;
728
+ border-right: 1px dashed #7ec1ff;
729
+ border-radius: 0 2px 2px 0;
730
+ }
731
+ .ant-picker-year-panel .ant-picker-cell-range-hover-end::after,
732
+ .ant-picker-quarter-panel .ant-picker-cell-range-hover-end::after,
733
+ .ant-picker-month-panel .ant-picker-cell-range-hover-end::after {
734
+ right: 14px;
735
+ border-right: 1px dashed #7ec1ff;
736
+ border-radius: 0 2px 2px 0;
737
+ }
738
+ .ant-picker-panel-rtl .ant-picker-year-panel .ant-picker-cell-range-hover-end::after,
739
+ .ant-picker-panel-rtl .ant-picker-quarter-panel .ant-picker-cell-range-hover-end::after,
740
+ .ant-picker-panel-rtl .ant-picker-month-panel .ant-picker-cell-range-hover-end::after {
741
+ left: 14px;
742
+ border-left: 1px dashed #7ec1ff;
743
+ border-radius: 2px 0 0 2px;
744
+ }
745
+ .ant-picker-week-panel .ant-picker-body {
746
+ padding: 8px 12px;
747
+ }
748
+ .ant-picker-week-panel .ant-picker-cell:hover .ant-picker-cell-inner,
749
+ .ant-picker-week-panel .ant-picker-cell-selected .ant-picker-cell-inner,
750
+ .ant-picker-week-panel .ant-picker-cell .ant-picker-cell-inner {
751
+ background: transparent !important;
752
+ }
753
+ .ant-picker-week-panel-row td {
754
+ transition: background 0.3s;
755
+ }
756
+ .ant-picker-week-panel-row:hover td {
757
+ background: #f5f5f5;
758
+ }
759
+ .ant-picker-week-panel-row-selected td,
760
+ .ant-picker-week-panel-row-selected:hover td {
761
+ background: #1890ff;
762
+ }
763
+ .ant-picker-week-panel-row-selected td.ant-picker-cell-week,
764
+ .ant-picker-week-panel-row-selected:hover td.ant-picker-cell-week {
765
+ color: rgba(255, 255, 255, 0.5);
766
+ }
767
+ .ant-picker-week-panel-row-selected td.ant-picker-cell-today .ant-picker-cell-inner::before,
768
+ .ant-picker-week-panel-row-selected:hover td.ant-picker-cell-today .ant-picker-cell-inner::before {
769
+ border-color: #fff;
770
+ }
771
+ .ant-picker-week-panel-row-selected td .ant-picker-cell-inner,
772
+ .ant-picker-week-panel-row-selected:hover td .ant-picker-cell-inner {
773
+ color: #fff;
774
+ }
775
+ .ant-picker-date-panel .ant-picker-body {
776
+ padding: 8px 12px;
777
+ }
778
+ .ant-picker-date-panel .ant-picker-content {
779
+ width: 252px;
780
+ }
781
+ .ant-picker-date-panel .ant-picker-content th {
782
+ width: 36px;
783
+ }
784
+ .ant-picker-datetime-panel {
785
+ display: flex;
786
+ }
787
+ .ant-picker-datetime-panel .ant-picker-time-panel {
788
+ border-left: 1px solid #f0f0f0;
789
+ }
790
+ .ant-picker-datetime-panel .ant-picker-date-panel,
791
+ .ant-picker-datetime-panel .ant-picker-time-panel {
792
+ transition: opacity 0.3s;
793
+ }
794
+ .ant-picker-datetime-panel-active .ant-picker-date-panel,
795
+ .ant-picker-datetime-panel-active .ant-picker-time-panel {
796
+ opacity: 0.3;
797
+ }
798
+ .ant-picker-datetime-panel-active .ant-picker-date-panel-active,
799
+ .ant-picker-datetime-panel-active .ant-picker-time-panel-active {
800
+ opacity: 1;
801
+ }
802
+ .ant-picker-time-panel {
803
+ width: auto;
804
+ min-width: auto;
805
+ }
806
+ .ant-picker-time-panel .ant-picker-content {
807
+ display: flex;
808
+ flex: auto;
809
+ height: 224px;
810
+ }
811
+ .ant-picker-time-panel-column {
812
+ flex: 1 0 auto;
813
+ width: 56px;
814
+ margin: 0;
815
+ padding: 0;
816
+ overflow-y: hidden;
817
+ text-align: left;
818
+ list-style: none;
819
+ transition: background 0.3s;
820
+ }
821
+ .ant-picker-time-panel-column::after {
822
+ display: block;
823
+ height: 196px;
824
+ content: '';
825
+ }
826
+ .ant-picker-datetime-panel .ant-picker-time-panel-column::after {
827
+ height: 198px;
828
+ }
829
+ .ant-picker-time-panel-column:not(:first-child) {
830
+ border-left: 1px solid #f0f0f0;
831
+ }
832
+ .ant-picker-time-panel-column-active {
833
+ background: rgba(230, 247, 255, 0.2);
834
+ }
835
+ .ant-picker-time-panel-column:hover {
836
+ overflow-y: auto;
837
+ }
838
+ .ant-picker-time-panel-column > li {
839
+ margin: 0;
840
+ padding: 0;
841
+ }
842
+ .ant-picker-time-panel-column > li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner {
843
+ display: block;
844
+ width: 100%;
845
+ height: 28px;
846
+ margin: 0;
847
+ padding: 0 0 0 14px;
848
+ color: rgba(0, 0, 0, 0.85);
849
+ line-height: 28px;
850
+ border-radius: 0;
851
+ cursor: pointer;
852
+ transition: background 0.3s;
853
+ }
854
+ .ant-picker-time-panel-column > li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner:hover {
855
+ background: #f5f5f5;
856
+ }
857
+ .ant-picker-time-panel-column > li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner {
858
+ background: #e6f7ff;
859
+ }
860
+ .ant-picker-time-panel-column > li.ant-picker-time-panel-cell-disabled .ant-picker-time-panel-cell-inner {
861
+ color: rgba(0, 0, 0, 0.25);
862
+ background: transparent;
863
+ cursor: not-allowed;
864
+ }
865
+ /* stylelint-disable-next-line selector-type-no-unknown,selector-no-vendor-prefix */
866
+ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
867
+ :root .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
868
+ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell,
869
+ :root .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell {
870
+ padding: 21px 0;
871
+ }
872
+ .ant-picker-rtl {
873
+ direction: rtl;
874
+ }
875
+ .ant-picker-rtl .ant-picker-suffix {
876
+ margin-right: 4px;
877
+ margin-left: 0;
878
+ }
879
+ .ant-picker-rtl .ant-picker-clear {
880
+ right: auto;
881
+ left: 0;
882
+ }
883
+ .ant-picker-rtl .ant-picker-separator {
884
+ transform: rotate(180deg);
885
+ }
886
+ .ant-picker-panel-rtl .ant-picker-header-view button:not(:first-child) {
887
+ margin-right: 8px;
888
+ margin-left: 0;
889
+ }
890
+ .ant-picker-rtl.ant-picker-range .ant-picker-clear {
891
+ right: auto;
892
+ left: 11px;
893
+ }
894
+ .ant-picker-rtl.ant-picker-range .ant-picker-active-bar {
895
+ margin-right: 11px;
896
+ margin-left: 0;
897
+ }
898
+ .ant-picker-rtl.ant-picker-range.ant-picker-small .ant-picker-active-bar {
899
+ margin-right: 7px;
900
+ }
901
+ .ant-picker-dropdown-rtl .ant-picker-ranges {
902
+ text-align: right;
903
+ }
904
+ .ant-picker-dropdown-rtl .ant-picker-ranges .ant-picker-ok {
905
+ float: left;
906
+ margin-right: 8px;
907
+ margin-left: 0;
908
+ }
909
+ .ant-picker-panel-rtl {
910
+ direction: rtl;
911
+ }
912
+ .ant-picker-panel-rtl .ant-picker-prev-icon,
913
+ .ant-picker-panel-rtl .ant-picker-super-prev-icon {
914
+ transform: rotate(135deg);
915
+ }
916
+ .ant-picker-panel-rtl .ant-picker-next-icon,
917
+ .ant-picker-panel-rtl .ant-picker-super-next-icon {
918
+ transform: rotate(-45deg);
919
+ }
920
+ .ant-picker-cell .ant-picker-cell-inner {
921
+ position: relative;
922
+ z-index: 2;
923
+ display: inline-block;
924
+ min-width: 24px;
925
+ height: 24px;
926
+ line-height: 24px;
927
+ border-radius: 2px;
928
+ transition: background 0.3s, border 0.3s;
929
+ }
930
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start::before {
931
+ right: 50%;
932
+ left: 0;
933
+ }
934
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end::before {
935
+ right: 0;
936
+ left: 50%;
937
+ }
938
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start.ant-picker-cell-range-end::before {
939
+ right: 50%;
940
+ left: 50%;
941
+ }
942
+ .ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner::after {
943
+ right: 0;
944
+ left: -6px;
945
+ }
946
+ .ant-picker-panel-rtl .ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-end .ant-picker-cell-inner::after {
947
+ right: -6px;
948
+ left: 0;
949
+ }
950
+ .ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-start::after {
951
+ right: 0;
952
+ left: 50%;
953
+ }
954
+ .ant-picker-panel-rtl .ant-picker-cell-range-hover.ant-picker-cell-range-end::after {
955
+ right: 50%;
956
+ left: 0;
957
+ }
958
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-start:not(.ant-picker-cell-range-start-single):not(.ant-picker-cell-range-end) .ant-picker-cell-inner {
959
+ border-radius: 0 2px 2px 0;
960
+ }
961
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-end:not(.ant-picker-cell-range-end-single):not(.ant-picker-cell-range-start) .ant-picker-cell-inner {
962
+ border-radius: 2px 0 0 2px;
963
+ }
964
+ .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):first-child::after,
965
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start.ant-picker-cell-range-hover-edge-start-near-range::after,
966
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover-edge-start-near-range)::after,
967
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-start::after {
968
+ right: 6px;
969
+ left: 0;
970
+ border-right: 1px dashed #7ec1ff;
971
+ border-left: none;
972
+ border-radius: 0 2px 2px 0;
973
+ }
974
+ .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):last-child::after,
975
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range::after,
976
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover-edge-end-near-range)::after,
977
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-range-hover-end::after {
978
+ right: 0;
979
+ left: 6px;
980
+ border-right: none;
981
+ border-left: 1px dashed #7ec1ff;
982
+ border-radius: 2px 0 0 2px;
983
+ }
984
+ .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after,
985
+ .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::after,
986
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover)::after,
987
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover-end.ant-picker-cell-range-hover-edge-start:not(.ant-picker-cell-range-hover)::after,
988
+ .ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-start.ant-picker-cell-range-hover-edge-end:not(.ant-picker-cell-range-hover)::after,
989
+ .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-start.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-start:last-child::after,
990
+ .ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover.ant-picker-cell-range-hover-edge-end:first-child::after {
991
+ right: 6px;
992
+ left: 6px;
993
+ border-right: 1px dashed #7ec1ff;
994
+ border-left: 1px dashed #7ec1ff;
995
+ border-radius: 2px;
996
+ }
997
+ .ant-picker-dropdown-rtl .ant-picker-footer-extra {
998
+ direction: rtl;
999
+ text-align: right;
1000
+ }
1001
+ .ant-picker-panel-rtl .ant-picker-time-panel {
1002
+ direction: ltr;
1003
+ }
1004
+
1005
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1006
+ /* stylelint-disable no-duplicate-selectors */
1007
+ /* stylelint-disable */
1008
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1009
+ [class^=ant-]::-ms-clear,
1010
+ [class*= ant-]::-ms-clear,
1011
+ [class^=ant-] input::-ms-clear,
1012
+ [class*= ant-] input::-ms-clear,
1013
+ [class^=ant-] input::-ms-reveal,
1014
+ [class*= ant-] input::-ms-reveal {
1015
+ display: none;
1016
+ }
1017
+ /* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */
1018
+ html,
1019
+ body {
1020
+ width: 100%;
1021
+ height: 100%;
1022
+ }
1023
+ input::-ms-clear,
1024
+ input::-ms-reveal {
1025
+ display: none;
1026
+ }
1027
+ *,
1028
+ *::before,
1029
+ *::after {
1030
+ box-sizing: border-box;
1031
+ }
1032
+ html {
1033
+ font-family: sans-serif;
1034
+ line-height: 1.15;
1035
+ -webkit-text-size-adjust: 100%;
1036
+ -ms-text-size-adjust: 100%;
1037
+ -ms-overflow-style: scrollbar;
1038
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1039
+ }
1040
+ @-ms-viewport {
1041
+ width: device-width;
1042
+ }
1043
+ body {
1044
+ margin: 0;
1045
+ color: rgba(0, 0, 0, 0.85);
1046
+ font-size: 14px;
1047
+ 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';
1048
+ font-variant: tabular-nums;
1049
+ line-height: 1.5715;
1050
+ background-color: #fff;
1051
+ font-feature-settings: 'tnum';
1052
+ }
1053
+ [tabindex='-1']:focus {
1054
+ outline: none !important;
1055
+ }
1056
+ hr {
1057
+ box-sizing: content-box;
1058
+ height: 0;
1059
+ overflow: visible;
1060
+ }
1061
+ h1,
1062
+ h2,
1063
+ h3,
1064
+ h4,
1065
+ h5,
1066
+ h6 {
1067
+ margin-top: 0;
1068
+ margin-bottom: 0.5em;
1069
+ color: rgba(0, 0, 0, 0.85);
1070
+ font-weight: 500;
1071
+ }
1072
+ p {
1073
+ margin-top: 0;
1074
+ margin-bottom: 1em;
1075
+ }
1076
+ abbr[title],
1077
+ abbr[data-original-title] {
1078
+ text-decoration: underline;
1079
+ text-decoration: underline dotted;
1080
+ border-bottom: 0;
1081
+ cursor: help;
1082
+ }
1083
+ address {
1084
+ margin-bottom: 1em;
1085
+ font-style: normal;
1086
+ line-height: inherit;
1087
+ }
1088
+ input[type='text'],
1089
+ input[type='password'],
1090
+ input[type='number'],
1091
+ textarea {
1092
+ -webkit-appearance: none;
1093
+ }
1094
+ ol,
1095
+ ul,
1096
+ dl {
1097
+ margin-top: 0;
1098
+ margin-bottom: 1em;
1099
+ }
1100
+ ol ol,
1101
+ ul ul,
1102
+ ol ul,
1103
+ ul ol {
1104
+ margin-bottom: 0;
1105
+ }
1106
+ dt {
1107
+ font-weight: 500;
1108
+ }
1109
+ dd {
1110
+ margin-bottom: 0.5em;
1111
+ margin-left: 0;
1112
+ }
1113
+ blockquote {
1114
+ margin: 0 0 1em;
1115
+ }
1116
+ dfn {
1117
+ font-style: italic;
1118
+ }
1119
+ b,
1120
+ strong {
1121
+ font-weight: bolder;
1122
+ }
1123
+ small {
1124
+ font-size: 80%;
1125
+ }
1126
+ sub,
1127
+ sup {
1128
+ position: relative;
1129
+ font-size: 75%;
1130
+ line-height: 0;
1131
+ vertical-align: baseline;
1132
+ }
1133
+ sub {
1134
+ bottom: -0.25em;
1135
+ }
1136
+ sup {
1137
+ top: -0.5em;
1138
+ }
1139
+ a {
1140
+ color: #1890ff;
1141
+ text-decoration: none;
1142
+ background-color: transparent;
1143
+ outline: none;
1144
+ cursor: pointer;
1145
+ transition: color 0.3s;
1146
+ -webkit-text-decoration-skip: objects;
1147
+ }
1148
+ a:hover {
1149
+ color: #40a9ff;
1150
+ }
1151
+ a:active {
1152
+ color: #096dd9;
1153
+ }
1154
+ a:active,
1155
+ a:hover {
1156
+ text-decoration: none;
1157
+ outline: 0;
1158
+ }
1159
+ a:focus {
1160
+ text-decoration: none;
1161
+ outline: 0;
1162
+ }
1163
+ a[disabled] {
1164
+ color: rgba(0, 0, 0, 0.25);
1165
+ cursor: not-allowed;
1166
+ }
1167
+ pre,
1168
+ code,
1169
+ kbd,
1170
+ samp {
1171
+ font-size: 1em;
1172
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
1173
+ }
1174
+ pre {
1175
+ margin-top: 0;
1176
+ margin-bottom: 1em;
1177
+ overflow: auto;
1178
+ }
1179
+ figure {
1180
+ margin: 0 0 1em;
1181
+ }
1182
+ img {
1183
+ vertical-align: middle;
1184
+ border-style: none;
1185
+ }
1186
+ svg:not(:root) {
1187
+ overflow: hidden;
1188
+ }
1189
+ a,
1190
+ area,
1191
+ button,
1192
+ [role='button'],
1193
+ input:not([type='range']),
1194
+ label,
1195
+ select,
1196
+ summary,
1197
+ textarea {
1198
+ touch-action: manipulation;
1199
+ }
1200
+ table {
1201
+ border-collapse: collapse;
1202
+ }
1203
+ caption {
1204
+ padding-top: 0.75em;
1205
+ padding-bottom: 0.3em;
1206
+ color: rgba(0, 0, 0, 0.45);
1207
+ text-align: left;
1208
+ caption-side: bottom;
1209
+ }
1210
+ input,
1211
+ button,
1212
+ select,
1213
+ optgroup,
1214
+ textarea {
1215
+ margin: 0;
1216
+ color: inherit;
1217
+ font-size: inherit;
1218
+ font-family: inherit;
1219
+ line-height: inherit;
1220
+ }
1221
+ button,
1222
+ input {
1223
+ overflow: visible;
1224
+ }
1225
+ button,
1226
+ select {
1227
+ text-transform: none;
1228
+ }
1229
+ button,
1230
+ html [type="button"],
1231
+ [type="reset"],
1232
+ [type="submit"] {
1233
+ -webkit-appearance: button;
1234
+ }
1235
+ button::-moz-focus-inner,
1236
+ [type='button']::-moz-focus-inner,
1237
+ [type='reset']::-moz-focus-inner,
1238
+ [type='submit']::-moz-focus-inner {
1239
+ padding: 0;
1240
+ border-style: none;
1241
+ }
1242
+ input[type='radio'],
1243
+ input[type='checkbox'] {
1244
+ box-sizing: border-box;
1245
+ padding: 0;
1246
+ }
1247
+ input[type='date'],
1248
+ input[type='time'],
1249
+ input[type='datetime-local'],
1250
+ input[type='month'] {
1251
+ -webkit-appearance: listbox;
1252
+ }
1253
+ textarea {
1254
+ overflow: auto;
1255
+ resize: vertical;
1256
+ }
1257
+ fieldset {
1258
+ min-width: 0;
1259
+ margin: 0;
1260
+ padding: 0;
1261
+ border: 0;
1262
+ }
1263
+ legend {
1264
+ display: block;
1265
+ width: 100%;
1266
+ max-width: 100%;
1267
+ margin-bottom: 0.5em;
1268
+ padding: 0;
1269
+ color: inherit;
1270
+ font-size: 1.5em;
1271
+ line-height: inherit;
1272
+ white-space: normal;
1273
+ }
1274
+ progress {
1275
+ vertical-align: baseline;
1276
+ }
1277
+ [type='number']::-webkit-inner-spin-button,
1278
+ [type='number']::-webkit-outer-spin-button {
1279
+ height: auto;
1280
+ }
1281
+ [type='search'] {
1282
+ outline-offset: -2px;
1283
+ -webkit-appearance: none;
1284
+ }
1285
+ [type='search']::-webkit-search-cancel-button,
1286
+ [type='search']::-webkit-search-decoration {
1287
+ -webkit-appearance: none;
1288
+ }
1289
+ ::-webkit-file-upload-button {
1290
+ font: inherit;
1291
+ -webkit-appearance: button;
1292
+ }
1293
+ output {
1294
+ display: inline-block;
1295
+ }
1296
+ summary {
1297
+ display: list-item;
1298
+ }
1299
+ template {
1300
+ display: none;
1301
+ }
1302
+ [hidden] {
1303
+ display: none !important;
1304
+ }
1305
+ mark {
1306
+ padding: 0.2em;
1307
+ background-color: #feffe6;
1308
+ }
1309
+ ::selection {
1310
+ color: #fff;
1311
+ background: #1890ff;
1312
+ }
1313
+ .clearfix::before {
1314
+ display: table;
1315
+ content: '';
1316
+ }
1317
+ .clearfix::after {
1318
+ display: table;
1319
+ clear: both;
1320
+ content: '';
1321
+ }
1322
+ .anticon {
1323
+ display: inline-block;
1324
+ color: inherit;
1325
+ font-style: normal;
1326
+ line-height: 0;
1327
+ text-align: center;
1328
+ text-transform: none;
1329
+ vertical-align: -0.125em;
1330
+ text-rendering: optimizeLegibility;
1331
+ -webkit-font-smoothing: antialiased;
1332
+ -moz-osx-font-smoothing: grayscale;
1333
+ }
1334
+ .anticon > * {
1335
+ line-height: 1;
1336
+ }
1337
+ .anticon svg {
1338
+ display: inline-block;
1339
+ }
1340
+ .anticon::before {
1341
+ display: none;
1342
+ }
1343
+ .anticon .anticon-icon {
1344
+ display: block;
1345
+ }
1346
+ .anticon[tabindex] {
1347
+ cursor: pointer;
1348
+ }
1349
+ .anticon-spin::before {
1350
+ display: inline-block;
1351
+ animation: loadingCircle 1s infinite linear;
1352
+ }
1353
+ .anticon-spin {
1354
+ display: inline-block;
1355
+ animation: loadingCircle 1s infinite linear;
1356
+ }
1357
+ .ant-fade-enter,
1358
+ .ant-fade-appear {
1359
+ animation-duration: 0.2s;
1360
+ animation-fill-mode: both;
1361
+ animation-play-state: paused;
1362
+ }
1363
+ .ant-fade-leave {
1364
+ animation-duration: 0.2s;
1365
+ animation-fill-mode: both;
1366
+ animation-play-state: paused;
1367
+ }
1368
+ .ant-fade-enter.ant-fade-enter-active,
1369
+ .ant-fade-appear.ant-fade-appear-active {
1370
+ animation-name: antFadeIn;
1371
+ animation-play-state: running;
1372
+ }
1373
+ .ant-fade-leave.ant-fade-leave-active {
1374
+ animation-name: antFadeOut;
1375
+ animation-play-state: running;
1376
+ pointer-events: none;
1377
+ }
1378
+ .ant-fade-enter,
1379
+ .ant-fade-appear {
1380
+ opacity: 0;
1381
+ animation-timing-function: linear;
1382
+ }
1383
+ .ant-fade-leave {
1384
+ animation-timing-function: linear;
1385
+ }
1386
+ @keyframes antFadeIn {
1387
+ 0% {
1388
+ opacity: 0;
1389
+ }
1390
+ 100% {
1391
+ opacity: 1;
1392
+ }
1393
+ }
1394
+ @keyframes antFadeOut {
1395
+ 0% {
1396
+ opacity: 1;
1397
+ }
1398
+ 100% {
1399
+ opacity: 0;
1400
+ }
1401
+ }
1402
+ .ant-move-up-enter,
1403
+ .ant-move-up-appear {
1404
+ animation-duration: 0.2s;
1405
+ animation-fill-mode: both;
1406
+ animation-play-state: paused;
1407
+ }
1408
+ .ant-move-up-leave {
1409
+ animation-duration: 0.2s;
1410
+ animation-fill-mode: both;
1411
+ animation-play-state: paused;
1412
+ }
1413
+ .ant-move-up-enter.ant-move-up-enter-active,
1414
+ .ant-move-up-appear.ant-move-up-appear-active {
1415
+ animation-name: antMoveUpIn;
1416
+ animation-play-state: running;
1417
+ }
1418
+ .ant-move-up-leave.ant-move-up-leave-active {
1419
+ animation-name: antMoveUpOut;
1420
+ animation-play-state: running;
1421
+ pointer-events: none;
1422
+ }
1423
+ .ant-move-up-enter,
1424
+ .ant-move-up-appear {
1425
+ opacity: 0;
1426
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1427
+ }
1428
+ .ant-move-up-leave {
1429
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1430
+ }
1431
+ .ant-move-down-enter,
1432
+ .ant-move-down-appear {
1433
+ animation-duration: 0.2s;
1434
+ animation-fill-mode: both;
1435
+ animation-play-state: paused;
1436
+ }
1437
+ .ant-move-down-leave {
1438
+ animation-duration: 0.2s;
1439
+ animation-fill-mode: both;
1440
+ animation-play-state: paused;
1441
+ }
1442
+ .ant-move-down-enter.ant-move-down-enter-active,
1443
+ .ant-move-down-appear.ant-move-down-appear-active {
1444
+ animation-name: antMoveDownIn;
1445
+ animation-play-state: running;
1446
+ }
1447
+ .ant-move-down-leave.ant-move-down-leave-active {
1448
+ animation-name: antMoveDownOut;
1449
+ animation-play-state: running;
1450
+ pointer-events: none;
1451
+ }
1452
+ .ant-move-down-enter,
1453
+ .ant-move-down-appear {
1454
+ opacity: 0;
1455
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1456
+ }
1457
+ .ant-move-down-leave {
1458
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1459
+ }
1460
+ .ant-move-left-enter,
1461
+ .ant-move-left-appear {
1462
+ animation-duration: 0.2s;
1463
+ animation-fill-mode: both;
1464
+ animation-play-state: paused;
1465
+ }
1466
+ .ant-move-left-leave {
1467
+ animation-duration: 0.2s;
1468
+ animation-fill-mode: both;
1469
+ animation-play-state: paused;
1470
+ }
1471
+ .ant-move-left-enter.ant-move-left-enter-active,
1472
+ .ant-move-left-appear.ant-move-left-appear-active {
1473
+ animation-name: antMoveLeftIn;
1474
+ animation-play-state: running;
1475
+ }
1476
+ .ant-move-left-leave.ant-move-left-leave-active {
1477
+ animation-name: antMoveLeftOut;
1478
+ animation-play-state: running;
1479
+ pointer-events: none;
1480
+ }
1481
+ .ant-move-left-enter,
1482
+ .ant-move-left-appear {
1483
+ opacity: 0;
1484
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1485
+ }
1486
+ .ant-move-left-leave {
1487
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1488
+ }
1489
+ .ant-move-right-enter,
1490
+ .ant-move-right-appear {
1491
+ animation-duration: 0.2s;
1492
+ animation-fill-mode: both;
1493
+ animation-play-state: paused;
1494
+ }
1495
+ .ant-move-right-leave {
1496
+ animation-duration: 0.2s;
1497
+ animation-fill-mode: both;
1498
+ animation-play-state: paused;
1499
+ }
1500
+ .ant-move-right-enter.ant-move-right-enter-active,
1501
+ .ant-move-right-appear.ant-move-right-appear-active {
1502
+ animation-name: antMoveRightIn;
1503
+ animation-play-state: running;
1504
+ }
1505
+ .ant-move-right-leave.ant-move-right-leave-active {
1506
+ animation-name: antMoveRightOut;
1507
+ animation-play-state: running;
1508
+ pointer-events: none;
1509
+ }
1510
+ .ant-move-right-enter,
1511
+ .ant-move-right-appear {
1512
+ opacity: 0;
1513
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1514
+ }
1515
+ .ant-move-right-leave {
1516
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
1517
+ }
1518
+ @keyframes antMoveDownIn {
1519
+ 0% {
1520
+ transform: translateY(100%);
1521
+ transform-origin: 0 0;
1522
+ opacity: 0;
1523
+ }
1524
+ 100% {
1525
+ transform: translateY(0%);
1526
+ transform-origin: 0 0;
1527
+ opacity: 1;
1528
+ }
1529
+ }
1530
+ @keyframes antMoveDownOut {
1531
+ 0% {
1532
+ transform: translateY(0%);
1533
+ transform-origin: 0 0;
1534
+ opacity: 1;
1535
+ }
1536
+ 100% {
1537
+ transform: translateY(100%);
1538
+ transform-origin: 0 0;
1539
+ opacity: 0;
1540
+ }
1541
+ }
1542
+ @keyframes antMoveLeftIn {
1543
+ 0% {
1544
+ transform: translateX(-100%);
1545
+ transform-origin: 0 0;
1546
+ opacity: 0;
1547
+ }
1548
+ 100% {
1549
+ transform: translateX(0%);
1550
+ transform-origin: 0 0;
1551
+ opacity: 1;
1552
+ }
1553
+ }
1554
+ @keyframes antMoveLeftOut {
1555
+ 0% {
1556
+ transform: translateX(0%);
1557
+ transform-origin: 0 0;
1558
+ opacity: 1;
1559
+ }
1560
+ 100% {
1561
+ transform: translateX(-100%);
1562
+ transform-origin: 0 0;
1563
+ opacity: 0;
1564
+ }
1565
+ }
1566
+ @keyframes antMoveRightIn {
1567
+ 0% {
1568
+ transform: translateX(100%);
1569
+ transform-origin: 0 0;
1570
+ opacity: 0;
1571
+ }
1572
+ 100% {
1573
+ transform: translateX(0%);
1574
+ transform-origin: 0 0;
1575
+ opacity: 1;
1576
+ }
1577
+ }
1578
+ @keyframes antMoveRightOut {
1579
+ 0% {
1580
+ transform: translateX(0%);
1581
+ transform-origin: 0 0;
1582
+ opacity: 1;
1583
+ }
1584
+ 100% {
1585
+ transform: translateX(100%);
1586
+ transform-origin: 0 0;
1587
+ opacity: 0;
1588
+ }
1589
+ }
1590
+ @keyframes antMoveUpIn {
1591
+ 0% {
1592
+ transform: translateY(-100%);
1593
+ transform-origin: 0 0;
1594
+ opacity: 0;
1595
+ }
1596
+ 100% {
1597
+ transform: translateY(0%);
1598
+ transform-origin: 0 0;
1599
+ opacity: 1;
1600
+ }
1601
+ }
1602
+ @keyframes antMoveUpOut {
1603
+ 0% {
1604
+ transform: translateY(0%);
1605
+ transform-origin: 0 0;
1606
+ opacity: 1;
1607
+ }
1608
+ 100% {
1609
+ transform: translateY(-100%);
1610
+ transform-origin: 0 0;
1611
+ opacity: 0;
1612
+ }
1613
+ }
1614
+ @keyframes loadingCircle {
1615
+ 100% {
1616
+ transform: rotate(360deg);
1617
+ }
1618
+ }
1619
+ [ant-click-animating='true'],
1620
+ [ant-click-animating-without-extra-node='true'] {
1621
+ position: relative;
1622
+ }
1623
+ html {
1624
+ --antd-wave-shadow-color: #1890ff;
1625
+ --scroll-bar: 0;
1626
+ }
1627
+ [ant-click-animating-without-extra-node='true']::after,
1628
+ .ant-click-animating-node {
1629
+ position: absolute;
1630
+ top: 0;
1631
+ right: 0;
1632
+ bottom: 0;
1633
+ left: 0;
1634
+ display: block;
1635
+ border-radius: inherit;
1636
+ box-shadow: 0 0 0 0 #1890ff;
1637
+ box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
1638
+ opacity: 0.2;
1639
+ animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
1640
+ animation-fill-mode: forwards;
1641
+ content: '';
1642
+ pointer-events: none;
1643
+ }
1644
+ @keyframes waveEffect {
1645
+ 100% {
1646
+ box-shadow: 0 0 0 #1890ff;
1647
+ box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
1648
+ }
1649
+ }
1650
+ @keyframes fadeEffect {
1651
+ 100% {
1652
+ opacity: 0;
1653
+ }
1654
+ }
1655
+ .ant-slide-up-enter,
1656
+ .ant-slide-up-appear {
1657
+ animation-duration: 0.2s;
1658
+ animation-fill-mode: both;
1659
+ animation-play-state: paused;
1660
+ }
1661
+ .ant-slide-up-leave {
1662
+ animation-duration: 0.2s;
1663
+ animation-fill-mode: both;
1664
+ animation-play-state: paused;
1665
+ }
1666
+ .ant-slide-up-enter.ant-slide-up-enter-active,
1667
+ .ant-slide-up-appear.ant-slide-up-appear-active {
1668
+ animation-name: antSlideUpIn;
1669
+ animation-play-state: running;
1670
+ }
1671
+ .ant-slide-up-leave.ant-slide-up-leave-active {
1672
+ animation-name: antSlideUpOut;
1673
+ animation-play-state: running;
1674
+ pointer-events: none;
1675
+ }
1676
+ .ant-slide-up-enter,
1677
+ .ant-slide-up-appear {
1678
+ opacity: 0;
1679
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1680
+ }
1681
+ .ant-slide-up-leave {
1682
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1683
+ }
1684
+ .ant-slide-down-enter,
1685
+ .ant-slide-down-appear {
1686
+ animation-duration: 0.2s;
1687
+ animation-fill-mode: both;
1688
+ animation-play-state: paused;
1689
+ }
1690
+ .ant-slide-down-leave {
1691
+ animation-duration: 0.2s;
1692
+ animation-fill-mode: both;
1693
+ animation-play-state: paused;
1694
+ }
1695
+ .ant-slide-down-enter.ant-slide-down-enter-active,
1696
+ .ant-slide-down-appear.ant-slide-down-appear-active {
1697
+ animation-name: antSlideDownIn;
1698
+ animation-play-state: running;
1699
+ }
1700
+ .ant-slide-down-leave.ant-slide-down-leave-active {
1701
+ animation-name: antSlideDownOut;
1702
+ animation-play-state: running;
1703
+ pointer-events: none;
1704
+ }
1705
+ .ant-slide-down-enter,
1706
+ .ant-slide-down-appear {
1707
+ opacity: 0;
1708
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1709
+ }
1710
+ .ant-slide-down-leave {
1711
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1712
+ }
1713
+ .ant-slide-left-enter,
1714
+ .ant-slide-left-appear {
1715
+ animation-duration: 0.2s;
1716
+ animation-fill-mode: both;
1717
+ animation-play-state: paused;
1718
+ }
1719
+ .ant-slide-left-leave {
1720
+ animation-duration: 0.2s;
1721
+ animation-fill-mode: both;
1722
+ animation-play-state: paused;
1723
+ }
1724
+ .ant-slide-left-enter.ant-slide-left-enter-active,
1725
+ .ant-slide-left-appear.ant-slide-left-appear-active {
1726
+ animation-name: antSlideLeftIn;
1727
+ animation-play-state: running;
1728
+ }
1729
+ .ant-slide-left-leave.ant-slide-left-leave-active {
1730
+ animation-name: antSlideLeftOut;
1731
+ animation-play-state: running;
1732
+ pointer-events: none;
1733
+ }
1734
+ .ant-slide-left-enter,
1735
+ .ant-slide-left-appear {
1736
+ opacity: 0;
1737
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1738
+ }
1739
+ .ant-slide-left-leave {
1740
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1741
+ }
1742
+ .ant-slide-right-enter,
1743
+ .ant-slide-right-appear {
1744
+ animation-duration: 0.2s;
1745
+ animation-fill-mode: both;
1746
+ animation-play-state: paused;
1747
+ }
1748
+ .ant-slide-right-leave {
1749
+ animation-duration: 0.2s;
1750
+ animation-fill-mode: both;
1751
+ animation-play-state: paused;
1752
+ }
1753
+ .ant-slide-right-enter.ant-slide-right-enter-active,
1754
+ .ant-slide-right-appear.ant-slide-right-appear-active {
1755
+ animation-name: antSlideRightIn;
1756
+ animation-play-state: running;
1757
+ }
1758
+ .ant-slide-right-leave.ant-slide-right-leave-active {
1759
+ animation-name: antSlideRightOut;
1760
+ animation-play-state: running;
1761
+ pointer-events: none;
1762
+ }
1763
+ .ant-slide-right-enter,
1764
+ .ant-slide-right-appear {
1765
+ opacity: 0;
1766
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1767
+ }
1768
+ .ant-slide-right-leave {
1769
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1770
+ }
1771
+ @keyframes antSlideUpIn {
1772
+ 0% {
1773
+ transform: scaleY(0.8);
1774
+ transform-origin: 0% 0%;
1775
+ opacity: 0;
1776
+ }
1777
+ 100% {
1778
+ transform: scaleY(1);
1779
+ transform-origin: 0% 0%;
1780
+ opacity: 1;
1781
+ }
1782
+ }
1783
+ @keyframes antSlideUpOut {
1784
+ 0% {
1785
+ transform: scaleY(1);
1786
+ transform-origin: 0% 0%;
1787
+ opacity: 1;
1788
+ }
1789
+ 100% {
1790
+ transform: scaleY(0.8);
1791
+ transform-origin: 0% 0%;
1792
+ opacity: 0;
1793
+ }
1794
+ }
1795
+ @keyframes antSlideDownIn {
1796
+ 0% {
1797
+ transform: scaleY(0.8);
1798
+ transform-origin: 100% 100%;
1799
+ opacity: 0;
1800
+ }
1801
+ 100% {
1802
+ transform: scaleY(1);
1803
+ transform-origin: 100% 100%;
1804
+ opacity: 1;
1805
+ }
1806
+ }
1807
+ @keyframes antSlideDownOut {
1808
+ 0% {
1809
+ transform: scaleY(1);
1810
+ transform-origin: 100% 100%;
1811
+ opacity: 1;
1812
+ }
1813
+ 100% {
1814
+ transform: scaleY(0.8);
1815
+ transform-origin: 100% 100%;
1816
+ opacity: 0;
1817
+ }
1818
+ }
1819
+ @keyframes antSlideLeftIn {
1820
+ 0% {
1821
+ transform: scaleX(0.8);
1822
+ transform-origin: 0% 0%;
1823
+ opacity: 0;
1824
+ }
1825
+ 100% {
1826
+ transform: scaleX(1);
1827
+ transform-origin: 0% 0%;
1828
+ opacity: 1;
1829
+ }
1830
+ }
1831
+ @keyframes antSlideLeftOut {
1832
+ 0% {
1833
+ transform: scaleX(1);
1834
+ transform-origin: 0% 0%;
1835
+ opacity: 1;
1836
+ }
1837
+ 100% {
1838
+ transform: scaleX(0.8);
1839
+ transform-origin: 0% 0%;
1840
+ opacity: 0;
1841
+ }
1842
+ }
1843
+ @keyframes antSlideRightIn {
1844
+ 0% {
1845
+ transform: scaleX(0.8);
1846
+ transform-origin: 100% 0%;
1847
+ opacity: 0;
1848
+ }
1849
+ 100% {
1850
+ transform: scaleX(1);
1851
+ transform-origin: 100% 0%;
1852
+ opacity: 1;
1853
+ }
1854
+ }
1855
+ @keyframes antSlideRightOut {
1856
+ 0% {
1857
+ transform: scaleX(1);
1858
+ transform-origin: 100% 0%;
1859
+ opacity: 1;
1860
+ }
1861
+ 100% {
1862
+ transform: scaleX(0.8);
1863
+ transform-origin: 100% 0%;
1864
+ opacity: 0;
1865
+ }
1866
+ }
1867
+ .ant-zoom-enter,
1868
+ .ant-zoom-appear {
1869
+ animation-duration: 0.2s;
1870
+ animation-fill-mode: both;
1871
+ animation-play-state: paused;
1872
+ }
1873
+ .ant-zoom-leave {
1874
+ animation-duration: 0.2s;
1875
+ animation-fill-mode: both;
1876
+ animation-play-state: paused;
1877
+ }
1878
+ .ant-zoom-enter.ant-zoom-enter-active,
1879
+ .ant-zoom-appear.ant-zoom-appear-active {
1880
+ animation-name: antZoomIn;
1881
+ animation-play-state: running;
1882
+ }
1883
+ .ant-zoom-leave.ant-zoom-leave-active {
1884
+ animation-name: antZoomOut;
1885
+ animation-play-state: running;
1886
+ pointer-events: none;
1887
+ }
1888
+ .ant-zoom-enter,
1889
+ .ant-zoom-appear {
1890
+ transform: scale(0);
1891
+ opacity: 0;
1892
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1893
+ }
1894
+ .ant-zoom-enter-prepare,
1895
+ .ant-zoom-appear-prepare {
1896
+ transform: none;
1897
+ }
1898
+ .ant-zoom-leave {
1899
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1900
+ }
1901
+ .ant-zoom-big-enter,
1902
+ .ant-zoom-big-appear {
1903
+ animation-duration: 0.2s;
1904
+ animation-fill-mode: both;
1905
+ animation-play-state: paused;
1906
+ }
1907
+ .ant-zoom-big-leave {
1908
+ animation-duration: 0.2s;
1909
+ animation-fill-mode: both;
1910
+ animation-play-state: paused;
1911
+ }
1912
+ .ant-zoom-big-enter.ant-zoom-big-enter-active,
1913
+ .ant-zoom-big-appear.ant-zoom-big-appear-active {
1914
+ animation-name: antZoomBigIn;
1915
+ animation-play-state: running;
1916
+ }
1917
+ .ant-zoom-big-leave.ant-zoom-big-leave-active {
1918
+ animation-name: antZoomBigOut;
1919
+ animation-play-state: running;
1920
+ pointer-events: none;
1921
+ }
1922
+ .ant-zoom-big-enter,
1923
+ .ant-zoom-big-appear {
1924
+ transform: scale(0);
1925
+ opacity: 0;
1926
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1927
+ }
1928
+ .ant-zoom-big-enter-prepare,
1929
+ .ant-zoom-big-appear-prepare {
1930
+ transform: none;
1931
+ }
1932
+ .ant-zoom-big-leave {
1933
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1934
+ }
1935
+ .ant-zoom-big-fast-enter,
1936
+ .ant-zoom-big-fast-appear {
1937
+ animation-duration: 0.1s;
1938
+ animation-fill-mode: both;
1939
+ animation-play-state: paused;
1940
+ }
1941
+ .ant-zoom-big-fast-leave {
1942
+ animation-duration: 0.1s;
1943
+ animation-fill-mode: both;
1944
+ animation-play-state: paused;
1945
+ }
1946
+ .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
1947
+ .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
1948
+ animation-name: antZoomBigIn;
1949
+ animation-play-state: running;
1950
+ }
1951
+ .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
1952
+ animation-name: antZoomBigOut;
1953
+ animation-play-state: running;
1954
+ pointer-events: none;
1955
+ }
1956
+ .ant-zoom-big-fast-enter,
1957
+ .ant-zoom-big-fast-appear {
1958
+ transform: scale(0);
1959
+ opacity: 0;
1960
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1961
+ }
1962
+ .ant-zoom-big-fast-enter-prepare,
1963
+ .ant-zoom-big-fast-appear-prepare {
1964
+ transform: none;
1965
+ }
1966
+ .ant-zoom-big-fast-leave {
1967
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1968
+ }
1969
+ .ant-zoom-up-enter,
1970
+ .ant-zoom-up-appear {
1971
+ animation-duration: 0.2s;
1972
+ animation-fill-mode: both;
1973
+ animation-play-state: paused;
1974
+ }
1975
+ .ant-zoom-up-leave {
1976
+ animation-duration: 0.2s;
1977
+ animation-fill-mode: both;
1978
+ animation-play-state: paused;
1979
+ }
1980
+ .ant-zoom-up-enter.ant-zoom-up-enter-active,
1981
+ .ant-zoom-up-appear.ant-zoom-up-appear-active {
1982
+ animation-name: antZoomUpIn;
1983
+ animation-play-state: running;
1984
+ }
1985
+ .ant-zoom-up-leave.ant-zoom-up-leave-active {
1986
+ animation-name: antZoomUpOut;
1987
+ animation-play-state: running;
1988
+ pointer-events: none;
1989
+ }
1990
+ .ant-zoom-up-enter,
1991
+ .ant-zoom-up-appear {
1992
+ transform: scale(0);
1993
+ opacity: 0;
1994
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1995
+ }
1996
+ .ant-zoom-up-enter-prepare,
1997
+ .ant-zoom-up-appear-prepare {
1998
+ transform: none;
1999
+ }
2000
+ .ant-zoom-up-leave {
2001
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
2002
+ }
2003
+ .ant-zoom-down-enter,
2004
+ .ant-zoom-down-appear {
2005
+ animation-duration: 0.2s;
2006
+ animation-fill-mode: both;
2007
+ animation-play-state: paused;
2008
+ }
2009
+ .ant-zoom-down-leave {
2010
+ animation-duration: 0.2s;
2011
+ animation-fill-mode: both;
2012
+ animation-play-state: paused;
2013
+ }
2014
+ .ant-zoom-down-enter.ant-zoom-down-enter-active,
2015
+ .ant-zoom-down-appear.ant-zoom-down-appear-active {
2016
+ animation-name: antZoomDownIn;
2017
+ animation-play-state: running;
2018
+ }
2019
+ .ant-zoom-down-leave.ant-zoom-down-leave-active {
2020
+ animation-name: antZoomDownOut;
2021
+ animation-play-state: running;
2022
+ pointer-events: none;
2023
+ }
2024
+ .ant-zoom-down-enter,
2025
+ .ant-zoom-down-appear {
2026
+ transform: scale(0);
2027
+ opacity: 0;
2028
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
2029
+ }
2030
+ .ant-zoom-down-enter-prepare,
2031
+ .ant-zoom-down-appear-prepare {
2032
+ transform: none;
2033
+ }
2034
+ .ant-zoom-down-leave {
2035
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
2036
+ }
2037
+ .ant-zoom-left-enter,
2038
+ .ant-zoom-left-appear {
2039
+ animation-duration: 0.2s;
2040
+ animation-fill-mode: both;
2041
+ animation-play-state: paused;
2042
+ }
2043
+ .ant-zoom-left-leave {
2044
+ animation-duration: 0.2s;
2045
+ animation-fill-mode: both;
2046
+ animation-play-state: paused;
2047
+ }
2048
+ .ant-zoom-left-enter.ant-zoom-left-enter-active,
2049
+ .ant-zoom-left-appear.ant-zoom-left-appear-active {
2050
+ animation-name: antZoomLeftIn;
2051
+ animation-play-state: running;
2052
+ }
2053
+ .ant-zoom-left-leave.ant-zoom-left-leave-active {
2054
+ animation-name: antZoomLeftOut;
2055
+ animation-play-state: running;
2056
+ pointer-events: none;
2057
+ }
2058
+ .ant-zoom-left-enter,
2059
+ .ant-zoom-left-appear {
2060
+ transform: scale(0);
2061
+ opacity: 0;
2062
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
2063
+ }
2064
+ .ant-zoom-left-enter-prepare,
2065
+ .ant-zoom-left-appear-prepare {
2066
+ transform: none;
2067
+ }
2068
+ .ant-zoom-left-leave {
2069
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
2070
+ }
2071
+ .ant-zoom-right-enter,
2072
+ .ant-zoom-right-appear {
2073
+ animation-duration: 0.2s;
2074
+ animation-fill-mode: both;
2075
+ animation-play-state: paused;
2076
+ }
2077
+ .ant-zoom-right-leave {
2078
+ animation-duration: 0.2s;
2079
+ animation-fill-mode: both;
2080
+ animation-play-state: paused;
2081
+ }
2082
+ .ant-zoom-right-enter.ant-zoom-right-enter-active,
2083
+ .ant-zoom-right-appear.ant-zoom-right-appear-active {
2084
+ animation-name: antZoomRightIn;
2085
+ animation-play-state: running;
2086
+ }
2087
+ .ant-zoom-right-leave.ant-zoom-right-leave-active {
2088
+ animation-name: antZoomRightOut;
2089
+ animation-play-state: running;
2090
+ pointer-events: none;
2091
+ }
2092
+ .ant-zoom-right-enter,
2093
+ .ant-zoom-right-appear {
2094
+ transform: scale(0);
2095
+ opacity: 0;
2096
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
2097
+ }
2098
+ .ant-zoom-right-enter-prepare,
2099
+ .ant-zoom-right-appear-prepare {
2100
+ transform: none;
2101
+ }
2102
+ .ant-zoom-right-leave {
2103
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
2104
+ }
2105
+ @keyframes antZoomIn {
2106
+ 0% {
2107
+ transform: scale(0.2);
2108
+ opacity: 0;
2109
+ }
2110
+ 100% {
2111
+ transform: scale(1);
2112
+ opacity: 1;
2113
+ }
2114
+ }
2115
+ @keyframes antZoomOut {
2116
+ 0% {
2117
+ transform: scale(1);
2118
+ }
2119
+ 100% {
2120
+ transform: scale(0.2);
2121
+ opacity: 0;
2122
+ }
2123
+ }
2124
+ @keyframes antZoomBigIn {
2125
+ 0% {
2126
+ transform: scale(0.8);
2127
+ opacity: 0;
2128
+ }
2129
+ 100% {
2130
+ transform: scale(1);
2131
+ opacity: 1;
2132
+ }
2133
+ }
2134
+ @keyframes antZoomBigOut {
2135
+ 0% {
2136
+ transform: scale(1);
2137
+ }
2138
+ 100% {
2139
+ transform: scale(0.8);
2140
+ opacity: 0;
2141
+ }
2142
+ }
2143
+ @keyframes antZoomUpIn {
2144
+ 0% {
2145
+ transform: scale(0.8);
2146
+ transform-origin: 50% 0%;
2147
+ opacity: 0;
2148
+ }
2149
+ 100% {
2150
+ transform: scale(1);
2151
+ transform-origin: 50% 0%;
2152
+ }
2153
+ }
2154
+ @keyframes antZoomUpOut {
2155
+ 0% {
2156
+ transform: scale(1);
2157
+ transform-origin: 50% 0%;
2158
+ }
2159
+ 100% {
2160
+ transform: scale(0.8);
2161
+ transform-origin: 50% 0%;
2162
+ opacity: 0;
2163
+ }
2164
+ }
2165
+ @keyframes antZoomLeftIn {
2166
+ 0% {
2167
+ transform: scale(0.8);
2168
+ transform-origin: 0% 50%;
2169
+ opacity: 0;
2170
+ }
2171
+ 100% {
2172
+ transform: scale(1);
2173
+ transform-origin: 0% 50%;
2174
+ }
2175
+ }
2176
+ @keyframes antZoomLeftOut {
2177
+ 0% {
2178
+ transform: scale(1);
2179
+ transform-origin: 0% 50%;
2180
+ }
2181
+ 100% {
2182
+ transform: scale(0.8);
2183
+ transform-origin: 0% 50%;
2184
+ opacity: 0;
2185
+ }
2186
+ }
2187
+ @keyframes antZoomRightIn {
2188
+ 0% {
2189
+ transform: scale(0.8);
2190
+ transform-origin: 100% 50%;
2191
+ opacity: 0;
2192
+ }
2193
+ 100% {
2194
+ transform: scale(1);
2195
+ transform-origin: 100% 50%;
2196
+ }
2197
+ }
2198
+ @keyframes antZoomRightOut {
2199
+ 0% {
2200
+ transform: scale(1);
2201
+ transform-origin: 100% 50%;
2202
+ }
2203
+ 100% {
2204
+ transform: scale(0.8);
2205
+ transform-origin: 100% 50%;
2206
+ opacity: 0;
2207
+ }
2208
+ }
2209
+ @keyframes antZoomDownIn {
2210
+ 0% {
2211
+ transform: scale(0.8);
2212
+ transform-origin: 50% 100%;
2213
+ opacity: 0;
2214
+ }
2215
+ 100% {
2216
+ transform: scale(1);
2217
+ transform-origin: 50% 100%;
2218
+ }
2219
+ }
2220
+ @keyframes antZoomDownOut {
2221
+ 0% {
2222
+ transform: scale(1);
2223
+ transform-origin: 50% 100%;
2224
+ }
2225
+ 100% {
2226
+ transform: scale(0.8);
2227
+ transform-origin: 50% 100%;
2228
+ opacity: 0;
2229
+ }
2230
+ }
2231
+ .ant-motion-collapse-legacy {
2232
+ overflow: hidden;
2233
+ }
2234
+ .ant-motion-collapse-legacy-active {
2235
+ 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;
2236
+ }
2237
+ .ant-motion-collapse {
2238
+ overflow: hidden;
2239
+ 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;
2240
+ }
2241
+
2242
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2243
+ /* stylelint-disable no-duplicate-selectors */
2244
+ /* stylelint-disable */
2245
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
2246
+ .ant-tag {
2247
+ box-sizing: border-box;
2248
+ margin: 0;
2249
+ padding: 0;
2250
+ color: rgba(0, 0, 0, 0.85);
2251
+ font-size: 14px;
2252
+ font-variant: tabular-nums;
2253
+ line-height: 1.5715;
2254
+ list-style: none;
2255
+ font-feature-settings: 'tnum';
2256
+ display: inline-block;
2257
+ height: auto;
2258
+ margin-right: 8px;
2259
+ padding: 0 7px;
2260
+ font-size: 12px;
2261
+ line-height: 20px;
2262
+ white-space: nowrap;
2263
+ background: #fafafa;
2264
+ border: 1px solid #d9d9d9;
2265
+ border-radius: 2px;
2266
+ opacity: 1;
2267
+ transition: all 0.3s;
2268
+ }
2269
+ .ant-tag,
2270
+ .ant-tag a,
2271
+ .ant-tag a:hover {
2272
+ color: rgba(0, 0, 0, 0.85);
2273
+ }
2274
+ .ant-tag > a:first-child:last-child {
2275
+ display: inline-block;
2276
+ margin: 0 -8px;
2277
+ padding: 0 8px;
2278
+ }
2279
+ .ant-tag-close-icon {
2280
+ margin-left: 3px;
2281
+ color: rgba(0, 0, 0, 0.45);
2282
+ font-size: 10px;
2283
+ cursor: pointer;
2284
+ transition: all 0.3s;
2285
+ }
2286
+ .ant-tag-close-icon:hover {
2287
+ color: rgba(0, 0, 0, 0.85);
2288
+ }
2289
+ .ant-tag-has-color {
2290
+ border-color: transparent;
2291
+ }
2292
+ .ant-tag-has-color,
2293
+ .ant-tag-has-color a,
2294
+ .ant-tag-has-color a:hover,
2295
+ .ant-tag-has-color .anticon-close,
2296
+ .ant-tag-has-color .anticon-close:hover {
2297
+ color: #fff;
2298
+ }
2299
+ .ant-tag-checkable {
2300
+ background-color: transparent;
2301
+ border-color: transparent;
2302
+ cursor: pointer;
2303
+ }
2304
+ .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
2305
+ color: #1890ff;
2306
+ }
2307
+ .ant-tag-checkable:active,
2308
+ .ant-tag-checkable-checked {
2309
+ color: #fff;
2310
+ }
2311
+ .ant-tag-checkable-checked {
2312
+ background-color: #1890ff;
2313
+ }
2314
+ .ant-tag-checkable:active {
2315
+ background-color: #096dd9;
2316
+ }
2317
+ .ant-tag-hidden {
2318
+ display: none;
2319
+ }
2320
+ .ant-tag-pink {
2321
+ color: #c41d7f;
2322
+ background: #fff0f6;
2323
+ border-color: #ffadd2;
2324
+ }
2325
+ .ant-tag-pink-inverse {
2326
+ color: #fff;
2327
+ background: #eb2f96;
2328
+ border-color: #eb2f96;
2329
+ }
2330
+ .ant-tag-magenta {
2331
+ color: #c41d7f;
2332
+ background: #fff0f6;
2333
+ border-color: #ffadd2;
2334
+ }
2335
+ .ant-tag-magenta-inverse {
2336
+ color: #fff;
2337
+ background: #eb2f96;
2338
+ border-color: #eb2f96;
2339
+ }
2340
+ .ant-tag-red {
2341
+ color: #cf1322;
2342
+ background: #fff1f0;
2343
+ border-color: #ffa39e;
2344
+ }
2345
+ .ant-tag-red-inverse {
2346
+ color: #fff;
2347
+ background: #f5222d;
2348
+ border-color: #f5222d;
2349
+ }
2350
+ .ant-tag-volcano {
2351
+ color: #d4380d;
2352
+ background: #fff2e8;
2353
+ border-color: #ffbb96;
2354
+ }
2355
+ .ant-tag-volcano-inverse {
2356
+ color: #fff;
2357
+ background: #fa541c;
2358
+ border-color: #fa541c;
2359
+ }
2360
+ .ant-tag-orange {
2361
+ color: #d46b08;
2362
+ background: #fff7e6;
2363
+ border-color: #ffd591;
2364
+ }
2365
+ .ant-tag-orange-inverse {
2366
+ color: #fff;
2367
+ background: #fa8c16;
2368
+ border-color: #fa8c16;
2369
+ }
2370
+ .ant-tag-yellow {
2371
+ color: #d4b106;
2372
+ background: #feffe6;
2373
+ border-color: #fffb8f;
2374
+ }
2375
+ .ant-tag-yellow-inverse {
2376
+ color: #fff;
2377
+ background: #fadb14;
2378
+ border-color: #fadb14;
2379
+ }
2380
+ .ant-tag-gold {
2381
+ color: #d48806;
2382
+ background: #fffbe6;
2383
+ border-color: #ffe58f;
2384
+ }
2385
+ .ant-tag-gold-inverse {
2386
+ color: #fff;
2387
+ background: #faad14;
2388
+ border-color: #faad14;
2389
+ }
2390
+ .ant-tag-cyan {
2391
+ color: #08979c;
2392
+ background: #e6fffb;
2393
+ border-color: #87e8de;
2394
+ }
2395
+ .ant-tag-cyan-inverse {
2396
+ color: #fff;
2397
+ background: #13c2c2;
2398
+ border-color: #13c2c2;
2399
+ }
2400
+ .ant-tag-lime {
2401
+ color: #7cb305;
2402
+ background: #fcffe6;
2403
+ border-color: #eaff8f;
2404
+ }
2405
+ .ant-tag-lime-inverse {
2406
+ color: #fff;
2407
+ background: #a0d911;
2408
+ border-color: #a0d911;
2409
+ }
2410
+ .ant-tag-green {
2411
+ color: #389e0d;
2412
+ background: #f6ffed;
2413
+ border-color: #b7eb8f;
2414
+ }
2415
+ .ant-tag-green-inverse {
2416
+ color: #fff;
2417
+ background: #52c41a;
2418
+ border-color: #52c41a;
2419
+ }
2420
+ .ant-tag-blue {
2421
+ color: #096dd9;
2422
+ background: #e6f7ff;
2423
+ border-color: #91d5ff;
2424
+ }
2425
+ .ant-tag-blue-inverse {
2426
+ color: #fff;
2427
+ background: #1890ff;
2428
+ border-color: #1890ff;
2429
+ }
2430
+ .ant-tag-geekblue {
2431
+ color: #1d39c4;
2432
+ background: #f0f5ff;
2433
+ border-color: #adc6ff;
2434
+ }
2435
+ .ant-tag-geekblue-inverse {
2436
+ color: #fff;
2437
+ background: #2f54eb;
2438
+ border-color: #2f54eb;
2439
+ }
2440
+ .ant-tag-purple {
2441
+ color: #531dab;
2442
+ background: #f9f0ff;
2443
+ border-color: #d3adf7;
2444
+ }
2445
+ .ant-tag-purple-inverse {
2446
+ color: #fff;
2447
+ background: #722ed1;
2448
+ border-color: #722ed1;
2449
+ }
2450
+ .ant-tag-success {
2451
+ color: #52c41a;
2452
+ background: #f6ffed;
2453
+ border-color: #b7eb8f;
2454
+ }
2455
+ .ant-tag-processing {
2456
+ color: #1890ff;
2457
+ background: #e6f7ff;
2458
+ border-color: #91d5ff;
2459
+ }
2460
+ .ant-tag-error {
2461
+ color: #ff4d4f;
2462
+ background: #fff2f0;
2463
+ border-color: #ffccc7;
2464
+ }
2465
+ .ant-tag-warning {
2466
+ color: #faad14;
2467
+ background: #fffbe6;
2468
+ border-color: #ffe58f;
2469
+ }
2470
+ .ant-tag > .anticon + span,
2471
+ .ant-tag > span + .anticon {
2472
+ margin-left: 7px;
2473
+ }
2474
+ .ant-tag.ant-tag-rtl {
2475
+ margin-right: 0;
2476
+ margin-left: 8px;
2477
+ direction: rtl;
2478
+ text-align: right;
2479
+ }
2480
+ .ant-tag-rtl .ant-tag-close-icon {
2481
+ margin-right: 3px;
2482
+ margin-left: 0;
2483
+ }
2484
+ .ant-tag-rtl.ant-tag > .anticon + span,
2485
+ .ant-tag-rtl.ant-tag > span + .anticon {
2486
+ margin-right: 7px;
2487
+ margin-left: 0;
2488
+ }
2489
+
2490
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2491
+ /* stylelint-disable no-duplicate-selectors */
2492
+ /* stylelint-disable */
2493
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
2494
+ .ant-btn {
2495
+ line-height: 1.5715;
2496
+ position: relative;
2497
+ display: inline-block;
2498
+ font-weight: 400;
2499
+ white-space: nowrap;
2500
+ text-align: center;
2501
+ background-image: none;
2502
+ border: 1px solid transparent;
2503
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
2504
+ cursor: pointer;
2505
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
2506
+ user-select: none;
2507
+ touch-action: manipulation;
2508
+ height: 32px;
2509
+ padding: 4px 15px;
2510
+ font-size: 14px;
2511
+ border-radius: 2px;
2512
+ color: rgba(0, 0, 0, 0.85);
2513
+ border-color: #d9d9d9;
2514
+ background: #fff;
2515
+ }
2516
+ .ant-btn > .anticon {
2517
+ line-height: 1;
2518
+ }
2519
+ .ant-btn,
2520
+ .ant-btn:active,
2521
+ .ant-btn:focus {
2522
+ outline: 0;
2523
+ }
2524
+ .ant-btn:not([disabled]):hover {
2525
+ text-decoration: none;
2526
+ }
2527
+ .ant-btn:not([disabled]):active {
2528
+ outline: 0;
2529
+ box-shadow: none;
2530
+ }
2531
+ .ant-btn[disabled] {
2532
+ cursor: not-allowed;
2533
+ }
2534
+ .ant-btn[disabled] > * {
2535
+ pointer-events: none;
2536
+ }
2537
+ .ant-btn-lg {
2538
+ height: 40px;
2539
+ padding: 6.4px 15px;
2540
+ font-size: 16px;
2541
+ border-radius: 2px;
2542
+ }
2543
+ .ant-btn-sm {
2544
+ height: 24px;
2545
+ padding: 0px 7px;
2546
+ font-size: 14px;
2547
+ border-radius: 2px;
2548
+ }
2549
+ .ant-btn > a:only-child {
2550
+ color: currentColor;
2551
+ }
2552
+ .ant-btn > a:only-child::after {
2553
+ position: absolute;
2554
+ top: 0;
2555
+ right: 0;
2556
+ bottom: 0;
2557
+ left: 0;
2558
+ background: transparent;
2559
+ content: '';
2560
+ }
2561
+ .ant-btn:hover,
2562
+ .ant-btn:focus {
2563
+ color: #40a9ff;
2564
+ border-color: #40a9ff;
2565
+ background: #fff;
2566
+ }
2567
+ .ant-btn:hover > a:only-child,
2568
+ .ant-btn:focus > a:only-child {
2569
+ color: currentColor;
2570
+ }
2571
+ .ant-btn:hover > a:only-child::after,
2572
+ .ant-btn:focus > a:only-child::after {
2573
+ position: absolute;
2574
+ top: 0;
2575
+ right: 0;
2576
+ bottom: 0;
2577
+ left: 0;
2578
+ background: transparent;
2579
+ content: '';
2580
+ }
2581
+ .ant-btn:active {
2582
+ color: #096dd9;
2583
+ border-color: #096dd9;
2584
+ background: #fff;
2585
+ }
2586
+ .ant-btn:active > a:only-child {
2587
+ color: currentColor;
2588
+ }
2589
+ .ant-btn:active > a:only-child::after {
2590
+ position: absolute;
2591
+ top: 0;
2592
+ right: 0;
2593
+ bottom: 0;
2594
+ left: 0;
2595
+ background: transparent;
2596
+ content: '';
2597
+ }
2598
+ .ant-btn[disabled],
2599
+ .ant-btn[disabled]:hover,
2600
+ .ant-btn[disabled]:focus,
2601
+ .ant-btn[disabled]:active {
2602
+ color: rgba(0, 0, 0, 0.25);
2603
+ border-color: #d9d9d9;
2604
+ background: #f5f5f5;
2605
+ text-shadow: none;
2606
+ box-shadow: none;
2607
+ }
2608
+ .ant-btn[disabled] > a:only-child,
2609
+ .ant-btn[disabled]:hover > a:only-child,
2610
+ .ant-btn[disabled]:focus > a:only-child,
2611
+ .ant-btn[disabled]:active > a:only-child {
2612
+ color: currentColor;
2613
+ }
2614
+ .ant-btn[disabled] > a:only-child::after,
2615
+ .ant-btn[disabled]:hover > a:only-child::after,
2616
+ .ant-btn[disabled]:focus > a:only-child::after,
2617
+ .ant-btn[disabled]:active > a:only-child::after {
2618
+ position: absolute;
2619
+ top: 0;
2620
+ right: 0;
2621
+ bottom: 0;
2622
+ left: 0;
2623
+ background: transparent;
2624
+ content: '';
2625
+ }
2626
+ .ant-btn:hover,
2627
+ .ant-btn:focus,
2628
+ .ant-btn:active {
2629
+ text-decoration: none;
2630
+ background: #fff;
2631
+ }
2632
+ .ant-btn > span {
2633
+ display: inline-block;
2634
+ }
2635
+ .ant-btn-primary {
2636
+ color: #fff;
2637
+ border-color: #1890ff;
2638
+ background: #1890ff;
2639
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
2640
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
2641
+ }
2642
+ .ant-btn-primary > a:only-child {
2643
+ color: currentColor;
2644
+ }
2645
+ .ant-btn-primary > a:only-child::after {
2646
+ position: absolute;
2647
+ top: 0;
2648
+ right: 0;
2649
+ bottom: 0;
2650
+ left: 0;
2651
+ background: transparent;
2652
+ content: '';
2653
+ }
2654
+ .ant-btn-primary:hover,
2655
+ .ant-btn-primary:focus {
2656
+ color: #fff;
2657
+ border-color: #40a9ff;
2658
+ background: #40a9ff;
2659
+ }
2660
+ .ant-btn-primary:hover > a:only-child,
2661
+ .ant-btn-primary:focus > a:only-child {
2662
+ color: currentColor;
2663
+ }
2664
+ .ant-btn-primary:hover > a:only-child::after,
2665
+ .ant-btn-primary:focus > a:only-child::after {
2666
+ position: absolute;
2667
+ top: 0;
2668
+ right: 0;
2669
+ bottom: 0;
2670
+ left: 0;
2671
+ background: transparent;
2672
+ content: '';
2673
+ }
2674
+ .ant-btn-primary:active {
2675
+ color: #fff;
2676
+ border-color: #096dd9;
2677
+ background: #096dd9;
2678
+ }
2679
+ .ant-btn-primary:active > a:only-child {
2680
+ color: currentColor;
2681
+ }
2682
+ .ant-btn-primary:active > a:only-child::after {
2683
+ position: absolute;
2684
+ top: 0;
2685
+ right: 0;
2686
+ bottom: 0;
2687
+ left: 0;
2688
+ background: transparent;
2689
+ content: '';
2690
+ }
2691
+ .ant-btn-primary[disabled],
2692
+ .ant-btn-primary[disabled]:hover,
2693
+ .ant-btn-primary[disabled]:focus,
2694
+ .ant-btn-primary[disabled]:active {
2695
+ color: rgba(0, 0, 0, 0.25);
2696
+ border-color: #d9d9d9;
2697
+ background: #f5f5f5;
2698
+ text-shadow: none;
2699
+ box-shadow: none;
2700
+ }
2701
+ .ant-btn-primary[disabled] > a:only-child,
2702
+ .ant-btn-primary[disabled]:hover > a:only-child,
2703
+ .ant-btn-primary[disabled]:focus > a:only-child,
2704
+ .ant-btn-primary[disabled]:active > a:only-child {
2705
+ color: currentColor;
2706
+ }
2707
+ .ant-btn-primary[disabled] > a:only-child::after,
2708
+ .ant-btn-primary[disabled]:hover > a:only-child::after,
2709
+ .ant-btn-primary[disabled]:focus > a:only-child::after,
2710
+ .ant-btn-primary[disabled]:active > a:only-child::after {
2711
+ position: absolute;
2712
+ top: 0;
2713
+ right: 0;
2714
+ bottom: 0;
2715
+ left: 0;
2716
+ background: transparent;
2717
+ content: '';
2718
+ }
2719
+ .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
2720
+ border-right-color: #40a9ff;
2721
+ border-left-color: #40a9ff;
2722
+ }
2723
+ .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
2724
+ border-color: #d9d9d9;
2725
+ }
2726
+ .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
2727
+ border-right-color: #40a9ff;
2728
+ }
2729
+ .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
2730
+ border-right-color: #d9d9d9;
2731
+ }
2732
+ .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
2733
+ .ant-btn-group .ant-btn-primary + .ant-btn-primary {
2734
+ border-left-color: #40a9ff;
2735
+ }
2736
+ .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
2737
+ .ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
2738
+ border-left-color: #d9d9d9;
2739
+ }
2740
+ .ant-btn-ghost {
2741
+ color: rgba(0, 0, 0, 0.85);
2742
+ border-color: #d9d9d9;
2743
+ background: transparent;
2744
+ }
2745
+ .ant-btn-ghost > a:only-child {
2746
+ color: currentColor;
2747
+ }
2748
+ .ant-btn-ghost > a:only-child::after {
2749
+ position: absolute;
2750
+ top: 0;
2751
+ right: 0;
2752
+ bottom: 0;
2753
+ left: 0;
2754
+ background: transparent;
2755
+ content: '';
2756
+ }
2757
+ .ant-btn-ghost:hover,
2758
+ .ant-btn-ghost:focus {
2759
+ color: #40a9ff;
2760
+ border-color: #40a9ff;
2761
+ background: transparent;
2762
+ }
2763
+ .ant-btn-ghost:hover > a:only-child,
2764
+ .ant-btn-ghost:focus > a:only-child {
2765
+ color: currentColor;
2766
+ }
2767
+ .ant-btn-ghost:hover > a:only-child::after,
2768
+ .ant-btn-ghost:focus > a:only-child::after {
2769
+ position: absolute;
2770
+ top: 0;
2771
+ right: 0;
2772
+ bottom: 0;
2773
+ left: 0;
2774
+ background: transparent;
2775
+ content: '';
2776
+ }
2777
+ .ant-btn-ghost:active {
2778
+ color: #096dd9;
2779
+ border-color: #096dd9;
2780
+ background: transparent;
2781
+ }
2782
+ .ant-btn-ghost:active > a:only-child {
2783
+ color: currentColor;
2784
+ }
2785
+ .ant-btn-ghost:active > a:only-child::after {
2786
+ position: absolute;
2787
+ top: 0;
2788
+ right: 0;
2789
+ bottom: 0;
2790
+ left: 0;
2791
+ background: transparent;
2792
+ content: '';
2793
+ }
2794
+ .ant-btn-ghost[disabled],
2795
+ .ant-btn-ghost[disabled]:hover,
2796
+ .ant-btn-ghost[disabled]:focus,
2797
+ .ant-btn-ghost[disabled]:active {
2798
+ color: rgba(0, 0, 0, 0.25);
2799
+ border-color: #d9d9d9;
2800
+ background: #f5f5f5;
2801
+ text-shadow: none;
2802
+ box-shadow: none;
2803
+ }
2804
+ .ant-btn-ghost[disabled] > a:only-child,
2805
+ .ant-btn-ghost[disabled]:hover > a:only-child,
2806
+ .ant-btn-ghost[disabled]:focus > a:only-child,
2807
+ .ant-btn-ghost[disabled]:active > a:only-child {
2808
+ color: currentColor;
2809
+ }
2810
+ .ant-btn-ghost[disabled] > a:only-child::after,
2811
+ .ant-btn-ghost[disabled]:hover > a:only-child::after,
2812
+ .ant-btn-ghost[disabled]:focus > a:only-child::after,
2813
+ .ant-btn-ghost[disabled]:active > a:only-child::after {
2814
+ position: absolute;
2815
+ top: 0;
2816
+ right: 0;
2817
+ bottom: 0;
2818
+ left: 0;
2819
+ background: transparent;
2820
+ content: '';
2821
+ }
2822
+ .ant-btn-dashed {
2823
+ color: rgba(0, 0, 0, 0.85);
2824
+ border-color: #d9d9d9;
2825
+ background: #fff;
2826
+ border-style: dashed;
2827
+ }
2828
+ .ant-btn-dashed > a:only-child {
2829
+ color: currentColor;
2830
+ }
2831
+ .ant-btn-dashed > a:only-child::after {
2832
+ position: absolute;
2833
+ top: 0;
2834
+ right: 0;
2835
+ bottom: 0;
2836
+ left: 0;
2837
+ background: transparent;
2838
+ content: '';
2839
+ }
2840
+ .ant-btn-dashed:hover,
2841
+ .ant-btn-dashed:focus {
2842
+ color: #40a9ff;
2843
+ border-color: #40a9ff;
2844
+ background: #fff;
2845
+ }
2846
+ .ant-btn-dashed:hover > a:only-child,
2847
+ .ant-btn-dashed:focus > a:only-child {
2848
+ color: currentColor;
2849
+ }
2850
+ .ant-btn-dashed:hover > a:only-child::after,
2851
+ .ant-btn-dashed:focus > a:only-child::after {
2852
+ position: absolute;
2853
+ top: 0;
2854
+ right: 0;
2855
+ bottom: 0;
2856
+ left: 0;
2857
+ background: transparent;
2858
+ content: '';
2859
+ }
2860
+ .ant-btn-dashed:active {
2861
+ color: #096dd9;
2862
+ border-color: #096dd9;
2863
+ background: #fff;
2864
+ }
2865
+ .ant-btn-dashed:active > a:only-child {
2866
+ color: currentColor;
2867
+ }
2868
+ .ant-btn-dashed:active > a:only-child::after {
2869
+ position: absolute;
2870
+ top: 0;
2871
+ right: 0;
2872
+ bottom: 0;
2873
+ left: 0;
2874
+ background: transparent;
2875
+ content: '';
2876
+ }
2877
+ .ant-btn-dashed[disabled],
2878
+ .ant-btn-dashed[disabled]:hover,
2879
+ .ant-btn-dashed[disabled]:focus,
2880
+ .ant-btn-dashed[disabled]:active {
2881
+ color: rgba(0, 0, 0, 0.25);
2882
+ border-color: #d9d9d9;
2883
+ background: #f5f5f5;
2884
+ text-shadow: none;
2885
+ box-shadow: none;
2886
+ }
2887
+ .ant-btn-dashed[disabled] > a:only-child,
2888
+ .ant-btn-dashed[disabled]:hover > a:only-child,
2889
+ .ant-btn-dashed[disabled]:focus > a:only-child,
2890
+ .ant-btn-dashed[disabled]:active > a:only-child {
2891
+ color: currentColor;
2892
+ }
2893
+ .ant-btn-dashed[disabled] > a:only-child::after,
2894
+ .ant-btn-dashed[disabled]:hover > a:only-child::after,
2895
+ .ant-btn-dashed[disabled]:focus > a:only-child::after,
2896
+ .ant-btn-dashed[disabled]:active > a:only-child::after {
2897
+ position: absolute;
2898
+ top: 0;
2899
+ right: 0;
2900
+ bottom: 0;
2901
+ left: 0;
2902
+ background: transparent;
2903
+ content: '';
2904
+ }
2905
+ .ant-btn-danger {
2906
+ color: #fff;
2907
+ border-color: #ff4d4f;
2908
+ background: #ff4d4f;
2909
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
2910
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
2911
+ }
2912
+ .ant-btn-danger > a:only-child {
2913
+ color: currentColor;
2914
+ }
2915
+ .ant-btn-danger > a:only-child::after {
2916
+ position: absolute;
2917
+ top: 0;
2918
+ right: 0;
2919
+ bottom: 0;
2920
+ left: 0;
2921
+ background: transparent;
2922
+ content: '';
2923
+ }
2924
+ .ant-btn-danger:hover,
2925
+ .ant-btn-danger:focus {
2926
+ color: #fff;
2927
+ border-color: #ff7875;
2928
+ background: #ff7875;
2929
+ }
2930
+ .ant-btn-danger:hover > a:only-child,
2931
+ .ant-btn-danger:focus > a:only-child {
2932
+ color: currentColor;
2933
+ }
2934
+ .ant-btn-danger:hover > a:only-child::after,
2935
+ .ant-btn-danger:focus > a:only-child::after {
2936
+ position: absolute;
2937
+ top: 0;
2938
+ right: 0;
2939
+ bottom: 0;
2940
+ left: 0;
2941
+ background: transparent;
2942
+ content: '';
2943
+ }
2944
+ .ant-btn-danger:active {
2945
+ color: #fff;
2946
+ border-color: #d9363e;
2947
+ background: #d9363e;
2948
+ }
2949
+ .ant-btn-danger:active > a:only-child {
2950
+ color: currentColor;
2951
+ }
2952
+ .ant-btn-danger:active > a:only-child::after {
2953
+ position: absolute;
2954
+ top: 0;
2955
+ right: 0;
2956
+ bottom: 0;
2957
+ left: 0;
2958
+ background: transparent;
2959
+ content: '';
2960
+ }
2961
+ .ant-btn-danger[disabled],
2962
+ .ant-btn-danger[disabled]:hover,
2963
+ .ant-btn-danger[disabled]:focus,
2964
+ .ant-btn-danger[disabled]:active {
2965
+ color: rgba(0, 0, 0, 0.25);
2966
+ border-color: #d9d9d9;
2967
+ background: #f5f5f5;
2968
+ text-shadow: none;
2969
+ box-shadow: none;
2970
+ }
2971
+ .ant-btn-danger[disabled] > a:only-child,
2972
+ .ant-btn-danger[disabled]:hover > a:only-child,
2973
+ .ant-btn-danger[disabled]:focus > a:only-child,
2974
+ .ant-btn-danger[disabled]:active > a:only-child {
2975
+ color: currentColor;
2976
+ }
2977
+ .ant-btn-danger[disabled] > a:only-child::after,
2978
+ .ant-btn-danger[disabled]:hover > a:only-child::after,
2979
+ .ant-btn-danger[disabled]:focus > a:only-child::after,
2980
+ .ant-btn-danger[disabled]:active > a:only-child::after {
2981
+ position: absolute;
2982
+ top: 0;
2983
+ right: 0;
2984
+ bottom: 0;
2985
+ left: 0;
2986
+ background: transparent;
2987
+ content: '';
2988
+ }
2989
+ .ant-btn-link {
2990
+ color: #1890ff;
2991
+ border-color: transparent;
2992
+ background: transparent;
2993
+ box-shadow: none;
2994
+ }
2995
+ .ant-btn-link > a:only-child {
2996
+ color: currentColor;
2997
+ }
2998
+ .ant-btn-link > a:only-child::after {
2999
+ position: absolute;
3000
+ top: 0;
3001
+ right: 0;
3002
+ bottom: 0;
3003
+ left: 0;
3004
+ background: transparent;
3005
+ content: '';
3006
+ }
3007
+ .ant-btn-link:hover,
3008
+ .ant-btn-link:focus {
3009
+ color: #40a9ff;
3010
+ border-color: #40a9ff;
3011
+ background: transparent;
3012
+ }
3013
+ .ant-btn-link:hover > a:only-child,
3014
+ .ant-btn-link:focus > a:only-child {
3015
+ color: currentColor;
3016
+ }
3017
+ .ant-btn-link:hover > a:only-child::after,
3018
+ .ant-btn-link:focus > a:only-child::after {
3019
+ position: absolute;
3020
+ top: 0;
3021
+ right: 0;
3022
+ bottom: 0;
3023
+ left: 0;
3024
+ background: transparent;
3025
+ content: '';
3026
+ }
3027
+ .ant-btn-link:active {
3028
+ color: #096dd9;
3029
+ border-color: #096dd9;
3030
+ background: transparent;
3031
+ }
3032
+ .ant-btn-link:active > a:only-child {
3033
+ color: currentColor;
3034
+ }
3035
+ .ant-btn-link:active > a:only-child::after {
3036
+ position: absolute;
3037
+ top: 0;
3038
+ right: 0;
3039
+ bottom: 0;
3040
+ left: 0;
3041
+ background: transparent;
3042
+ content: '';
3043
+ }
3044
+ .ant-btn-link[disabled],
3045
+ .ant-btn-link[disabled]:hover,
3046
+ .ant-btn-link[disabled]:focus,
3047
+ .ant-btn-link[disabled]:active {
3048
+ color: rgba(0, 0, 0, 0.25);
3049
+ border-color: #d9d9d9;
3050
+ background: #f5f5f5;
3051
+ text-shadow: none;
3052
+ box-shadow: none;
3053
+ }
3054
+ .ant-btn-link[disabled] > a:only-child,
3055
+ .ant-btn-link[disabled]:hover > a:only-child,
3056
+ .ant-btn-link[disabled]:focus > a:only-child,
3057
+ .ant-btn-link[disabled]:active > a:only-child {
3058
+ color: currentColor;
3059
+ }
3060
+ .ant-btn-link[disabled] > a:only-child::after,
3061
+ .ant-btn-link[disabled]:hover > a:only-child::after,
3062
+ .ant-btn-link[disabled]:focus > a:only-child::after,
3063
+ .ant-btn-link[disabled]:active > a:only-child::after {
3064
+ position: absolute;
3065
+ top: 0;
3066
+ right: 0;
3067
+ bottom: 0;
3068
+ left: 0;
3069
+ background: transparent;
3070
+ content: '';
3071
+ }
3072
+ .ant-btn-link:hover {
3073
+ background: transparent;
3074
+ }
3075
+ .ant-btn-link:hover,
3076
+ .ant-btn-link:focus,
3077
+ .ant-btn-link:active {
3078
+ border-color: transparent;
3079
+ }
3080
+ .ant-btn-link[disabled],
3081
+ .ant-btn-link[disabled]:hover,
3082
+ .ant-btn-link[disabled]:focus,
3083
+ .ant-btn-link[disabled]:active {
3084
+ color: rgba(0, 0, 0, 0.25);
3085
+ border-color: transparent;
3086
+ background: transparent;
3087
+ text-shadow: none;
3088
+ box-shadow: none;
3089
+ }
3090
+ .ant-btn-link[disabled] > a:only-child,
3091
+ .ant-btn-link[disabled]:hover > a:only-child,
3092
+ .ant-btn-link[disabled]:focus > a:only-child,
3093
+ .ant-btn-link[disabled]:active > a:only-child {
3094
+ color: currentColor;
3095
+ }
3096
+ .ant-btn-link[disabled] > a:only-child::after,
3097
+ .ant-btn-link[disabled]:hover > a:only-child::after,
3098
+ .ant-btn-link[disabled]:focus > a:only-child::after,
3099
+ .ant-btn-link[disabled]:active > a:only-child::after {
3100
+ position: absolute;
3101
+ top: 0;
3102
+ right: 0;
3103
+ bottom: 0;
3104
+ left: 0;
3105
+ background: transparent;
3106
+ content: '';
3107
+ }
3108
+ .ant-btn-text {
3109
+ color: rgba(0, 0, 0, 0.85);
3110
+ border-color: transparent;
3111
+ background: transparent;
3112
+ box-shadow: none;
3113
+ }
3114
+ .ant-btn-text > a:only-child {
3115
+ color: currentColor;
3116
+ }
3117
+ .ant-btn-text > a:only-child::after {
3118
+ position: absolute;
3119
+ top: 0;
3120
+ right: 0;
3121
+ bottom: 0;
3122
+ left: 0;
3123
+ background: transparent;
3124
+ content: '';
3125
+ }
3126
+ .ant-btn-text:hover,
3127
+ .ant-btn-text:focus {
3128
+ color: #40a9ff;
3129
+ border-color: #40a9ff;
3130
+ background: transparent;
3131
+ }
3132
+ .ant-btn-text:hover > a:only-child,
3133
+ .ant-btn-text:focus > a:only-child {
3134
+ color: currentColor;
3135
+ }
3136
+ .ant-btn-text:hover > a:only-child::after,
3137
+ .ant-btn-text:focus > a:only-child::after {
3138
+ position: absolute;
3139
+ top: 0;
3140
+ right: 0;
3141
+ bottom: 0;
3142
+ left: 0;
3143
+ background: transparent;
3144
+ content: '';
3145
+ }
3146
+ .ant-btn-text:active {
3147
+ color: #096dd9;
3148
+ border-color: #096dd9;
3149
+ background: transparent;
3150
+ }
3151
+ .ant-btn-text:active > a:only-child {
3152
+ color: currentColor;
3153
+ }
3154
+ .ant-btn-text:active > a:only-child::after {
3155
+ position: absolute;
3156
+ top: 0;
3157
+ right: 0;
3158
+ bottom: 0;
3159
+ left: 0;
3160
+ background: transparent;
3161
+ content: '';
3162
+ }
3163
+ .ant-btn-text[disabled],
3164
+ .ant-btn-text[disabled]:hover,
3165
+ .ant-btn-text[disabled]:focus,
3166
+ .ant-btn-text[disabled]:active {
3167
+ color: rgba(0, 0, 0, 0.25);
3168
+ border-color: #d9d9d9;
3169
+ background: #f5f5f5;
3170
+ text-shadow: none;
3171
+ box-shadow: none;
3172
+ }
3173
+ .ant-btn-text[disabled] > a:only-child,
3174
+ .ant-btn-text[disabled]:hover > a:only-child,
3175
+ .ant-btn-text[disabled]:focus > a:only-child,
3176
+ .ant-btn-text[disabled]:active > a:only-child {
3177
+ color: currentColor;
3178
+ }
3179
+ .ant-btn-text[disabled] > a:only-child::after,
3180
+ .ant-btn-text[disabled]:hover > a:only-child::after,
3181
+ .ant-btn-text[disabled]:focus > a:only-child::after,
3182
+ .ant-btn-text[disabled]:active > a:only-child::after {
3183
+ position: absolute;
3184
+ top: 0;
3185
+ right: 0;
3186
+ bottom: 0;
3187
+ left: 0;
3188
+ background: transparent;
3189
+ content: '';
3190
+ }
3191
+ .ant-btn-text:hover,
3192
+ .ant-btn-text:focus {
3193
+ color: rgba(0, 0, 0, 0.85);
3194
+ background: rgba(0, 0, 0, 0.018);
3195
+ border-color: transparent;
3196
+ }
3197
+ .ant-btn-text:active {
3198
+ color: rgba(0, 0, 0, 0.85);
3199
+ background: rgba(0, 0, 0, 0.028);
3200
+ border-color: transparent;
3201
+ }
3202
+ .ant-btn-text[disabled],
3203
+ .ant-btn-text[disabled]:hover,
3204
+ .ant-btn-text[disabled]:focus,
3205
+ .ant-btn-text[disabled]:active {
3206
+ color: rgba(0, 0, 0, 0.25);
3207
+ border-color: transparent;
3208
+ background: transparent;
3209
+ text-shadow: none;
3210
+ box-shadow: none;
3211
+ }
3212
+ .ant-btn-text[disabled] > a:only-child,
3213
+ .ant-btn-text[disabled]:hover > a:only-child,
3214
+ .ant-btn-text[disabled]:focus > a:only-child,
3215
+ .ant-btn-text[disabled]:active > a:only-child {
3216
+ color: currentColor;
3217
+ }
3218
+ .ant-btn-text[disabled] > a:only-child::after,
3219
+ .ant-btn-text[disabled]:hover > a:only-child::after,
3220
+ .ant-btn-text[disabled]:focus > a:only-child::after,
3221
+ .ant-btn-text[disabled]:active > a:only-child::after {
3222
+ position: absolute;
3223
+ top: 0;
3224
+ right: 0;
3225
+ bottom: 0;
3226
+ left: 0;
3227
+ background: transparent;
3228
+ content: '';
3229
+ }
3230
+ .ant-btn-dangerous {
3231
+ color: #ff4d4f;
3232
+ border-color: #ff4d4f;
3233
+ background: #fff;
3234
+ }
3235
+ .ant-btn-dangerous > a:only-child {
3236
+ color: currentColor;
3237
+ }
3238
+ .ant-btn-dangerous > a:only-child::after {
3239
+ position: absolute;
3240
+ top: 0;
3241
+ right: 0;
3242
+ bottom: 0;
3243
+ left: 0;
3244
+ background: transparent;
3245
+ content: '';
3246
+ }
3247
+ .ant-btn-dangerous:hover,
3248
+ .ant-btn-dangerous:focus {
3249
+ color: #ff7875;
3250
+ border-color: #ff7875;
3251
+ background: #fff;
3252
+ }
3253
+ .ant-btn-dangerous:hover > a:only-child,
3254
+ .ant-btn-dangerous:focus > a:only-child {
3255
+ color: currentColor;
3256
+ }
3257
+ .ant-btn-dangerous:hover > a:only-child::after,
3258
+ .ant-btn-dangerous:focus > a:only-child::after {
3259
+ position: absolute;
3260
+ top: 0;
3261
+ right: 0;
3262
+ bottom: 0;
3263
+ left: 0;
3264
+ background: transparent;
3265
+ content: '';
3266
+ }
3267
+ .ant-btn-dangerous:active {
3268
+ color: #d9363e;
3269
+ border-color: #d9363e;
3270
+ background: #fff;
3271
+ }
3272
+ .ant-btn-dangerous:active > a:only-child {
3273
+ color: currentColor;
3274
+ }
3275
+ .ant-btn-dangerous:active > a:only-child::after {
3276
+ position: absolute;
3277
+ top: 0;
3278
+ right: 0;
3279
+ bottom: 0;
3280
+ left: 0;
3281
+ background: transparent;
3282
+ content: '';
3283
+ }
3284
+ .ant-btn-dangerous[disabled],
3285
+ .ant-btn-dangerous[disabled]:hover,
3286
+ .ant-btn-dangerous[disabled]:focus,
3287
+ .ant-btn-dangerous[disabled]:active {
3288
+ color: rgba(0, 0, 0, 0.25);
3289
+ border-color: #d9d9d9;
3290
+ background: #f5f5f5;
3291
+ text-shadow: none;
3292
+ box-shadow: none;
3293
+ }
3294
+ .ant-btn-dangerous[disabled] > a:only-child,
3295
+ .ant-btn-dangerous[disabled]:hover > a:only-child,
3296
+ .ant-btn-dangerous[disabled]:focus > a:only-child,
3297
+ .ant-btn-dangerous[disabled]:active > a:only-child {
3298
+ color: currentColor;
3299
+ }
3300
+ .ant-btn-dangerous[disabled] > a:only-child::after,
3301
+ .ant-btn-dangerous[disabled]:hover > a:only-child::after,
3302
+ .ant-btn-dangerous[disabled]:focus > a:only-child::after,
3303
+ .ant-btn-dangerous[disabled]:active > a:only-child::after {
3304
+ position: absolute;
3305
+ top: 0;
3306
+ right: 0;
3307
+ bottom: 0;
3308
+ left: 0;
3309
+ background: transparent;
3310
+ content: '';
3311
+ }
3312
+ .ant-btn-dangerous.ant-btn-primary {
3313
+ color: #fff;
3314
+ border-color: #ff4d4f;
3315
+ background: #ff4d4f;
3316
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
3317
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
3318
+ }
3319
+ .ant-btn-dangerous.ant-btn-primary > a:only-child {
3320
+ color: currentColor;
3321
+ }
3322
+ .ant-btn-dangerous.ant-btn-primary > a:only-child::after {
3323
+ position: absolute;
3324
+ top: 0;
3325
+ right: 0;
3326
+ bottom: 0;
3327
+ left: 0;
3328
+ background: transparent;
3329
+ content: '';
3330
+ }
3331
+ .ant-btn-dangerous.ant-btn-primary:hover,
3332
+ .ant-btn-dangerous.ant-btn-primary:focus {
3333
+ color: #fff;
3334
+ border-color: #ff7875;
3335
+ background: #ff7875;
3336
+ }
3337
+ .ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
3338
+ .ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
3339
+ color: currentColor;
3340
+ }
3341
+ .ant-btn-dangerous.ant-btn-primary:hover > a:only-child::after,
3342
+ .ant-btn-dangerous.ant-btn-primary:focus > a:only-child::after {
3343
+ position: absolute;
3344
+ top: 0;
3345
+ right: 0;
3346
+ bottom: 0;
3347
+ left: 0;
3348
+ background: transparent;
3349
+ content: '';
3350
+ }
3351
+ .ant-btn-dangerous.ant-btn-primary:active {
3352
+ color: #fff;
3353
+ border-color: #d9363e;
3354
+ background: #d9363e;
3355
+ }
3356
+ .ant-btn-dangerous.ant-btn-primary:active > a:only-child {
3357
+ color: currentColor;
3358
+ }
3359
+ .ant-btn-dangerous.ant-btn-primary:active > a:only-child::after {
3360
+ position: absolute;
3361
+ top: 0;
3362
+ right: 0;
3363
+ bottom: 0;
3364
+ left: 0;
3365
+ background: transparent;
3366
+ content: '';
3367
+ }
3368
+ .ant-btn-dangerous.ant-btn-primary[disabled],
3369
+ .ant-btn-dangerous.ant-btn-primary[disabled]:hover,
3370
+ .ant-btn-dangerous.ant-btn-primary[disabled]:focus,
3371
+ .ant-btn-dangerous.ant-btn-primary[disabled]:active {
3372
+ color: rgba(0, 0, 0, 0.25);
3373
+ border-color: #d9d9d9;
3374
+ background: #f5f5f5;
3375
+ text-shadow: none;
3376
+ box-shadow: none;
3377
+ }
3378
+ .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child,
3379
+ .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child,
3380
+ .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child,
3381
+ .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child {
3382
+ color: currentColor;
3383
+ }
3384
+ .ant-btn-dangerous.ant-btn-primary[disabled] > a:only-child::after,
3385
+ .ant-btn-dangerous.ant-btn-primary[disabled]:hover > a:only-child::after,
3386
+ .ant-btn-dangerous.ant-btn-primary[disabled]:focus > a:only-child::after,
3387
+ .ant-btn-dangerous.ant-btn-primary[disabled]:active > a:only-child::after {
3388
+ position: absolute;
3389
+ top: 0;
3390
+ right: 0;
3391
+ bottom: 0;
3392
+ left: 0;
3393
+ background: transparent;
3394
+ content: '';
3395
+ }
3396
+ .ant-btn-dangerous.ant-btn-link {
3397
+ color: #ff4d4f;
3398
+ border-color: transparent;
3399
+ background: transparent;
3400
+ box-shadow: none;
3401
+ }
3402
+ .ant-btn-dangerous.ant-btn-link > a:only-child {
3403
+ color: currentColor;
3404
+ }
3405
+ .ant-btn-dangerous.ant-btn-link > a:only-child::after {
3406
+ position: absolute;
3407
+ top: 0;
3408
+ right: 0;
3409
+ bottom: 0;
3410
+ left: 0;
3411
+ background: transparent;
3412
+ content: '';
3413
+ }
3414
+ .ant-btn-dangerous.ant-btn-link:hover,
3415
+ .ant-btn-dangerous.ant-btn-link:focus {
3416
+ color: #40a9ff;
3417
+ border-color: #40a9ff;
3418
+ background: transparent;
3419
+ }
3420
+ .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
3421
+ .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
3422
+ color: currentColor;
3423
+ }
3424
+ .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
3425
+ .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
3426
+ position: absolute;
3427
+ top: 0;
3428
+ right: 0;
3429
+ bottom: 0;
3430
+ left: 0;
3431
+ background: transparent;
3432
+ content: '';
3433
+ }
3434
+ .ant-btn-dangerous.ant-btn-link:active {
3435
+ color: #096dd9;
3436
+ border-color: #096dd9;
3437
+ background: transparent;
3438
+ }
3439
+ .ant-btn-dangerous.ant-btn-link:active > a:only-child {
3440
+ color: currentColor;
3441
+ }
3442
+ .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
3443
+ position: absolute;
3444
+ top: 0;
3445
+ right: 0;
3446
+ bottom: 0;
3447
+ left: 0;
3448
+ background: transparent;
3449
+ content: '';
3450
+ }
3451
+ .ant-btn-dangerous.ant-btn-link[disabled],
3452
+ .ant-btn-dangerous.ant-btn-link[disabled]:hover,
3453
+ .ant-btn-dangerous.ant-btn-link[disabled]:focus,
3454
+ .ant-btn-dangerous.ant-btn-link[disabled]:active {
3455
+ color: rgba(0, 0, 0, 0.25);
3456
+ border-color: #d9d9d9;
3457
+ background: #f5f5f5;
3458
+ text-shadow: none;
3459
+ box-shadow: none;
3460
+ }
3461
+ .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
3462
+ .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
3463
+ .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
3464
+ .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
3465
+ color: currentColor;
3466
+ }
3467
+ .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
3468
+ .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
3469
+ .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
3470
+ .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
3471
+ position: absolute;
3472
+ top: 0;
3473
+ right: 0;
3474
+ bottom: 0;
3475
+ left: 0;
3476
+ background: transparent;
3477
+ content: '';
3478
+ }
3479
+ .ant-btn-dangerous.ant-btn-link:hover,
3480
+ .ant-btn-dangerous.ant-btn-link:focus {
3481
+ color: #ff7875;
3482
+ border-color: transparent;
3483
+ background: transparent;
3484
+ }
3485
+ .ant-btn-dangerous.ant-btn-link:hover > a:only-child,
3486
+ .ant-btn-dangerous.ant-btn-link:focus > a:only-child {
3487
+ color: currentColor;
3488
+ }
3489
+ .ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
3490
+ .ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
3491
+ position: absolute;
3492
+ top: 0;
3493
+ right: 0;
3494
+ bottom: 0;
3495
+ left: 0;
3496
+ background: transparent;
3497
+ content: '';
3498
+ }
3499
+ .ant-btn-dangerous.ant-btn-link:active {
3500
+ color: #d9363e;
3501
+ border-color: transparent;
3502
+ background: transparent;
3503
+ }
3504
+ .ant-btn-dangerous.ant-btn-link:active > a:only-child {
3505
+ color: currentColor;
3506
+ }
3507
+ .ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
3508
+ position: absolute;
3509
+ top: 0;
3510
+ right: 0;
3511
+ bottom: 0;
3512
+ left: 0;
3513
+ background: transparent;
3514
+ content: '';
3515
+ }
3516
+ .ant-btn-dangerous.ant-btn-link[disabled],
3517
+ .ant-btn-dangerous.ant-btn-link[disabled]:hover,
3518
+ .ant-btn-dangerous.ant-btn-link[disabled]:focus,
3519
+ .ant-btn-dangerous.ant-btn-link[disabled]:active {
3520
+ color: rgba(0, 0, 0, 0.25);
3521
+ border-color: transparent;
3522
+ background: transparent;
3523
+ text-shadow: none;
3524
+ box-shadow: none;
3525
+ }
3526
+ .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
3527
+ .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
3528
+ .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
3529
+ .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
3530
+ color: currentColor;
3531
+ }
3532
+ .ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
3533
+ .ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
3534
+ .ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
3535
+ .ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
3536
+ position: absolute;
3537
+ top: 0;
3538
+ right: 0;
3539
+ bottom: 0;
3540
+ left: 0;
3541
+ background: transparent;
3542
+ content: '';
3543
+ }
3544
+ .ant-btn-dangerous.ant-btn-text {
3545
+ color: #ff4d4f;
3546
+ border-color: transparent;
3547
+ background: transparent;
3548
+ box-shadow: none;
3549
+ }
3550
+ .ant-btn-dangerous.ant-btn-text > a:only-child {
3551
+ color: currentColor;
3552
+ }
3553
+ .ant-btn-dangerous.ant-btn-text > a:only-child::after {
3554
+ position: absolute;
3555
+ top: 0;
3556
+ right: 0;
3557
+ bottom: 0;
3558
+ left: 0;
3559
+ background: transparent;
3560
+ content: '';
3561
+ }
3562
+ .ant-btn-dangerous.ant-btn-text:hover,
3563
+ .ant-btn-dangerous.ant-btn-text:focus {
3564
+ color: #40a9ff;
3565
+ border-color: #40a9ff;
3566
+ background: transparent;
3567
+ }
3568
+ .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
3569
+ .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
3570
+ color: currentColor;
3571
+ }
3572
+ .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
3573
+ .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
3574
+ position: absolute;
3575
+ top: 0;
3576
+ right: 0;
3577
+ bottom: 0;
3578
+ left: 0;
3579
+ background: transparent;
3580
+ content: '';
3581
+ }
3582
+ .ant-btn-dangerous.ant-btn-text:active {
3583
+ color: #096dd9;
3584
+ border-color: #096dd9;
3585
+ background: transparent;
3586
+ }
3587
+ .ant-btn-dangerous.ant-btn-text:active > a:only-child {
3588
+ color: currentColor;
3589
+ }
3590
+ .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
3591
+ position: absolute;
3592
+ top: 0;
3593
+ right: 0;
3594
+ bottom: 0;
3595
+ left: 0;
3596
+ background: transparent;
3597
+ content: '';
3598
+ }
3599
+ .ant-btn-dangerous.ant-btn-text[disabled],
3600
+ .ant-btn-dangerous.ant-btn-text[disabled]:hover,
3601
+ .ant-btn-dangerous.ant-btn-text[disabled]:focus,
3602
+ .ant-btn-dangerous.ant-btn-text[disabled]:active {
3603
+ color: rgba(0, 0, 0, 0.25);
3604
+ border-color: #d9d9d9;
3605
+ background: #f5f5f5;
3606
+ text-shadow: none;
3607
+ box-shadow: none;
3608
+ }
3609
+ .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
3610
+ .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
3611
+ .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
3612
+ .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
3613
+ color: currentColor;
3614
+ }
3615
+ .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
3616
+ .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
3617
+ .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
3618
+ .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
3619
+ position: absolute;
3620
+ top: 0;
3621
+ right: 0;
3622
+ bottom: 0;
3623
+ left: 0;
3624
+ background: transparent;
3625
+ content: '';
3626
+ }
3627
+ .ant-btn-dangerous.ant-btn-text:hover,
3628
+ .ant-btn-dangerous.ant-btn-text:focus {
3629
+ color: #ff7875;
3630
+ border-color: transparent;
3631
+ background: rgba(0, 0, 0, 0.018);
3632
+ }
3633
+ .ant-btn-dangerous.ant-btn-text:hover > a:only-child,
3634
+ .ant-btn-dangerous.ant-btn-text:focus > a:only-child {
3635
+ color: currentColor;
3636
+ }
3637
+ .ant-btn-dangerous.ant-btn-text:hover > a:only-child::after,
3638
+ .ant-btn-dangerous.ant-btn-text:focus > a:only-child::after {
3639
+ position: absolute;
3640
+ top: 0;
3641
+ right: 0;
3642
+ bottom: 0;
3643
+ left: 0;
3644
+ background: transparent;
3645
+ content: '';
3646
+ }
3647
+ .ant-btn-dangerous.ant-btn-text:active {
3648
+ color: #d9363e;
3649
+ border-color: transparent;
3650
+ background: rgba(0, 0, 0, 0.028);
3651
+ }
3652
+ .ant-btn-dangerous.ant-btn-text:active > a:only-child {
3653
+ color: currentColor;
3654
+ }
3655
+ .ant-btn-dangerous.ant-btn-text:active > a:only-child::after {
3656
+ position: absolute;
3657
+ top: 0;
3658
+ right: 0;
3659
+ bottom: 0;
3660
+ left: 0;
3661
+ background: transparent;
3662
+ content: '';
3663
+ }
3664
+ .ant-btn-dangerous.ant-btn-text[disabled],
3665
+ .ant-btn-dangerous.ant-btn-text[disabled]:hover,
3666
+ .ant-btn-dangerous.ant-btn-text[disabled]:focus,
3667
+ .ant-btn-dangerous.ant-btn-text[disabled]:active {
3668
+ color: rgba(0, 0, 0, 0.25);
3669
+ border-color: transparent;
3670
+ background: transparent;
3671
+ text-shadow: none;
3672
+ box-shadow: none;
3673
+ }
3674
+ .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child,
3675
+ .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child,
3676
+ .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child,
3677
+ .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child {
3678
+ color: currentColor;
3679
+ }
3680
+ .ant-btn-dangerous.ant-btn-text[disabled] > a:only-child::after,
3681
+ .ant-btn-dangerous.ant-btn-text[disabled]:hover > a:only-child::after,
3682
+ .ant-btn-dangerous.ant-btn-text[disabled]:focus > a:only-child::after,
3683
+ .ant-btn-dangerous.ant-btn-text[disabled]:active > a:only-child::after {
3684
+ position: absolute;
3685
+ top: 0;
3686
+ right: 0;
3687
+ bottom: 0;
3688
+ left: 0;
3689
+ background: transparent;
3690
+ content: '';
3691
+ }
3692
+ .ant-btn-icon-only {
3693
+ width: 32px;
3694
+ height: 32px;
3695
+ padding: 2.4px 0;
3696
+ font-size: 16px;
3697
+ border-radius: 2px;
3698
+ vertical-align: -3px;
3699
+ }
3700
+ .ant-btn-icon-only > * {
3701
+ font-size: 16px;
3702
+ }
3703
+ .ant-btn-icon-only.ant-btn-lg {
3704
+ width: 40px;
3705
+ height: 40px;
3706
+ padding: 4.9px 0;
3707
+ font-size: 18px;
3708
+ border-radius: 2px;
3709
+ }
3710
+ .ant-btn-icon-only.ant-btn-lg > * {
3711
+ font-size: 18px;
3712
+ }
3713
+ .ant-btn-icon-only.ant-btn-sm {
3714
+ width: 24px;
3715
+ height: 24px;
3716
+ padding: 0px 0;
3717
+ font-size: 14px;
3718
+ border-radius: 2px;
3719
+ }
3720
+ .ant-btn-icon-only.ant-btn-sm > * {
3721
+ font-size: 14px;
3722
+ }
3723
+ .ant-btn-icon-only > .anticon {
3724
+ display: flex;
3725
+ justify-content: center;
3726
+ }
3727
+ a.ant-btn-icon-only {
3728
+ vertical-align: -1px;
3729
+ }
3730
+ a.ant-btn-icon-only > .anticon {
3731
+ display: inline;
3732
+ }
3733
+ .ant-btn-round {
3734
+ height: 32px;
3735
+ padding: 4px 16px;
3736
+ font-size: 14px;
3737
+ border-radius: 32px;
3738
+ }
3739
+ .ant-btn-round.ant-btn-lg {
3740
+ height: 40px;
3741
+ padding: 6.4px 20px;
3742
+ font-size: 16px;
3743
+ border-radius: 40px;
3744
+ }
3745
+ .ant-btn-round.ant-btn-sm {
3746
+ height: 24px;
3747
+ padding: 0px 12px;
3748
+ font-size: 14px;
3749
+ border-radius: 24px;
3750
+ }
3751
+ .ant-btn-round.ant-btn-icon-only {
3752
+ width: auto;
3753
+ }
3754
+ .ant-btn-circle {
3755
+ min-width: 32px;
3756
+ padding-right: 0;
3757
+ padding-left: 0;
3758
+ text-align: center;
3759
+ border-radius: 50%;
3760
+ }
3761
+ .ant-btn-circle.ant-btn-lg {
3762
+ min-width: 40px;
3763
+ border-radius: 50%;
3764
+ }
3765
+ .ant-btn-circle.ant-btn-sm {
3766
+ min-width: 24px;
3767
+ border-radius: 50%;
3768
+ }
3769
+ .ant-btn::before {
3770
+ position: absolute;
3771
+ top: -1px;
3772
+ right: -1px;
3773
+ bottom: -1px;
3774
+ left: -1px;
3775
+ z-index: 1;
3776
+ display: none;
3777
+ background: #fff;
3778
+ border-radius: inherit;
3779
+ opacity: 0.35;
3780
+ transition: opacity 0.2s;
3781
+ content: '';
3782
+ pointer-events: none;
3783
+ }
3784
+ .ant-btn .anticon {
3785
+ transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
3786
+ }
3787
+ .ant-btn .anticon.anticon-plus > svg,
3788
+ .ant-btn .anticon.anticon-minus > svg {
3789
+ shape-rendering: optimizeSpeed;
3790
+ }
3791
+ .ant-btn.ant-btn-loading {
3792
+ position: relative;
3793
+ cursor: default;
3794
+ }
3795
+ .ant-btn.ant-btn-loading::before {
3796
+ display: block;
3797
+ }
3798
+ .ant-btn > .ant-btn-loading-icon {
3799
+ transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
3800
+ }
3801
+ .ant-btn > .ant-btn-loading-icon .anticon {
3802
+ padding-right: 8px;
3803
+ animation: none;
3804
+ }
3805
+ .ant-btn > .ant-btn-loading-icon .anticon svg {
3806
+ animation: loadingCircle 1s infinite linear;
3807
+ }
3808
+ .ant-btn > .ant-btn-loading-icon:only-child .anticon {
3809
+ padding-right: 0;
3810
+ }
3811
+ .ant-btn-group {
3812
+ position: relative;
3813
+ display: inline-flex;
3814
+ }
3815
+ .ant-btn-group > .ant-btn,
3816
+ .ant-btn-group > span > .ant-btn {
3817
+ position: relative;
3818
+ }
3819
+ .ant-btn-group > .ant-btn:hover,
3820
+ .ant-btn-group > span > .ant-btn:hover,
3821
+ .ant-btn-group > .ant-btn:focus,
3822
+ .ant-btn-group > span > .ant-btn:focus,
3823
+ .ant-btn-group > .ant-btn:active,
3824
+ .ant-btn-group > span > .ant-btn:active {
3825
+ z-index: 2;
3826
+ }
3827
+ .ant-btn-group > .ant-btn[disabled],
3828
+ .ant-btn-group > span > .ant-btn[disabled] {
3829
+ z-index: 0;
3830
+ }
3831
+ .ant-btn-group .ant-btn-icon-only {
3832
+ font-size: 14px;
3833
+ }
3834
+ .ant-btn-group-lg > .ant-btn,
3835
+ .ant-btn-group-lg > span > .ant-btn {
3836
+ height: 40px;
3837
+ padding: 6.4px 15px;
3838
+ font-size: 16px;
3839
+ border-radius: 0;
3840
+ }
3841
+ .ant-btn-group-lg .ant-btn.ant-btn-icon-only {
3842
+ width: 40px;
3843
+ height: 40px;
3844
+ padding-right: 0;
3845
+ padding-left: 0;
3846
+ }
3847
+ .ant-btn-group-sm > .ant-btn,
3848
+ .ant-btn-group-sm > span > .ant-btn {
3849
+ height: 24px;
3850
+ padding: 0px 7px;
3851
+ font-size: 14px;
3852
+ border-radius: 0;
3853
+ }
3854
+ .ant-btn-group-sm > .ant-btn > .anticon,
3855
+ .ant-btn-group-sm > span > .ant-btn > .anticon {
3856
+ font-size: 14px;
3857
+ }
3858
+ .ant-btn-group-sm .ant-btn.ant-btn-icon-only {
3859
+ width: 24px;
3860
+ height: 24px;
3861
+ padding-right: 0;
3862
+ padding-left: 0;
3863
+ }
3864
+ .ant-btn-group .ant-btn + .ant-btn,
3865
+ .ant-btn + .ant-btn-group,
3866
+ .ant-btn-group span + .ant-btn,
3867
+ .ant-btn-group .ant-btn + span,
3868
+ .ant-btn-group > span + span,
3869
+ .ant-btn-group + .ant-btn,
3870
+ .ant-btn-group + .ant-btn-group {
3871
+ margin-left: -1px;
3872
+ }
3873
+ .ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) {
3874
+ border-left-color: transparent;
3875
+ }
3876
+ .ant-btn-group .ant-btn {
3877
+ border-radius: 0;
3878
+ }
3879
+ .ant-btn-group > .ant-btn:first-child,
3880
+ .ant-btn-group > span:first-child > .ant-btn {
3881
+ margin-left: 0;
3882
+ }
3883
+ .ant-btn-group > .ant-btn:only-child {
3884
+ border-radius: 2px;
3885
+ }
3886
+ .ant-btn-group > span:only-child > .ant-btn {
3887
+ border-radius: 2px;
3888
+ }
3889
+ .ant-btn-group > .ant-btn:first-child:not(:last-child),
3890
+ .ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
3891
+ border-top-left-radius: 2px;
3892
+ border-bottom-left-radius: 2px;
3893
+ }
3894
+ .ant-btn-group > .ant-btn:last-child:not(:first-child),
3895
+ .ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
3896
+ border-top-right-radius: 2px;
3897
+ border-bottom-right-radius: 2px;
3898
+ }
3899
+ .ant-btn-group-sm > .ant-btn:only-child {
3900
+ border-radius: 2px;
3901
+ }
3902
+ .ant-btn-group-sm > span:only-child > .ant-btn {
3903
+ border-radius: 2px;
3904
+ }
3905
+ .ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
3906
+ .ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
3907
+ border-top-left-radius: 2px;
3908
+ border-bottom-left-radius: 2px;
3909
+ }
3910
+ .ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
3911
+ .ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
3912
+ border-top-right-radius: 2px;
3913
+ border-bottom-right-radius: 2px;
3914
+ }
3915
+ .ant-btn-group > .ant-btn-group {
3916
+ float: left;
3917
+ }
3918
+ .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
3919
+ border-radius: 0;
3920
+ }
3921
+ .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
3922
+ padding-right: 8px;
3923
+ border-top-right-radius: 0;
3924
+ border-bottom-right-radius: 0;
3925
+ }
3926
+ .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
3927
+ padding-left: 8px;
3928
+ border-top-left-radius: 0;
3929
+ border-bottom-left-radius: 0;
3930
+ }
3931
+ .ant-btn-rtl.ant-btn-group .ant-btn + .ant-btn,
3932
+ .ant-btn-rtl.ant-btn + .ant-btn-group,
3933
+ .ant-btn-rtl.ant-btn-group span + .ant-btn,
3934
+ .ant-btn-rtl.ant-btn-group .ant-btn + span,
3935
+ .ant-btn-rtl.ant-btn-group > span + span,
3936
+ .ant-btn-rtl.ant-btn-group + .ant-btn,
3937
+ .ant-btn-rtl.ant-btn-group + .ant-btn-group,
3938
+ .ant-btn-group-rtl.ant-btn-group .ant-btn + .ant-btn,
3939
+ .ant-btn-group-rtl.ant-btn + .ant-btn-group,
3940
+ .ant-btn-group-rtl.ant-btn-group span + .ant-btn,
3941
+ .ant-btn-group-rtl.ant-btn-group .ant-btn + span,
3942
+ .ant-btn-group-rtl.ant-btn-group > span + span,
3943
+ .ant-btn-group-rtl.ant-btn-group + .ant-btn,
3944
+ .ant-btn-group-rtl.ant-btn-group + .ant-btn-group {
3945
+ margin-right: -1px;
3946
+ margin-left: auto;
3947
+ }
3948
+ .ant-btn-group.ant-btn-group-rtl {
3949
+ direction: rtl;
3950
+ }
3951
+ .ant-btn-group-rtl.ant-btn-group > .ant-btn:first-child:not(:last-child),
3952
+ .ant-btn-group-rtl.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
3953
+ border-radius: 0 2px 2px 0;
3954
+ }
3955
+ .ant-btn-group-rtl.ant-btn-group > .ant-btn:last-child:not(:first-child),
3956
+ .ant-btn-group-rtl.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
3957
+ border-radius: 2px 0 0 2px;
3958
+ }
3959
+ .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
3960
+ .ant-btn-group-rtl.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
3961
+ border-radius: 0 2px 2px 0;
3962
+ }
3963
+ .ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
3964
+ .ant-btn-group-rtl.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
3965
+ border-radius: 2px 0 0 2px;
3966
+ }
3967
+ .ant-btn:focus > span,
3968
+ .ant-btn:active > span {
3969
+ position: relative;
3970
+ }
3971
+ .ant-btn > .anticon + span,
3972
+ .ant-btn > span + .anticon {
3973
+ margin-left: 8px;
3974
+ }
3975
+ .ant-btn.ant-btn-background-ghost {
3976
+ color: #fff;
3977
+ border-color: #fff;
3978
+ }
3979
+ .ant-btn.ant-btn-background-ghost,
3980
+ .ant-btn.ant-btn-background-ghost:hover,
3981
+ .ant-btn.ant-btn-background-ghost:active,
3982
+ .ant-btn.ant-btn-background-ghost:focus {
3983
+ background: transparent;
3984
+ }
3985
+ .ant-btn.ant-btn-background-ghost:hover,
3986
+ .ant-btn.ant-btn-background-ghost:focus {
3987
+ color: #40a9ff;
3988
+ border-color: #40a9ff;
3989
+ }
3990
+ .ant-btn.ant-btn-background-ghost:active {
3991
+ color: #096dd9;
3992
+ border-color: #096dd9;
3993
+ }
3994
+ .ant-btn.ant-btn-background-ghost[disabled] {
3995
+ color: rgba(0, 0, 0, 0.25);
3996
+ background: transparent;
3997
+ border-color: #d9d9d9;
3998
+ }
3999
+ .ant-btn-background-ghost.ant-btn-primary {
4000
+ color: #1890ff;
4001
+ border-color: #1890ff;
4002
+ text-shadow: none;
4003
+ }
4004
+ .ant-btn-background-ghost.ant-btn-primary > a:only-child {
4005
+ color: currentColor;
4006
+ }
4007
+ .ant-btn-background-ghost.ant-btn-primary > a:only-child::after {
4008
+ position: absolute;
4009
+ top: 0;
4010
+ right: 0;
4011
+ bottom: 0;
4012
+ left: 0;
4013
+ background: transparent;
4014
+ content: '';
4015
+ }
4016
+ .ant-btn-background-ghost.ant-btn-primary:hover,
4017
+ .ant-btn-background-ghost.ant-btn-primary:focus {
4018
+ color: #40a9ff;
4019
+ border-color: #40a9ff;
4020
+ }
4021
+ .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
4022
+ .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child {
4023
+ color: currentColor;
4024
+ }
4025
+ .ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after,
4026
+ .ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after {
4027
+ position: absolute;
4028
+ top: 0;
4029
+ right: 0;
4030
+ bottom: 0;
4031
+ left: 0;
4032
+ background: transparent;
4033
+ content: '';
4034
+ }
4035
+ .ant-btn-background-ghost.ant-btn-primary:active {
4036
+ color: #096dd9;
4037
+ border-color: #096dd9;
4038
+ }
4039
+ .ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
4040
+ color: currentColor;
4041
+ }
4042
+ .ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after {
4043
+ position: absolute;
4044
+ top: 0;
4045
+ right: 0;
4046
+ bottom: 0;
4047
+ left: 0;
4048
+ background: transparent;
4049
+ content: '';
4050
+ }
4051
+ .ant-btn-background-ghost.ant-btn-primary[disabled],
4052
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:hover,
4053
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
4054
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:active {
4055
+ color: rgba(0, 0, 0, 0.25);
4056
+ border-color: #d9d9d9;
4057
+ background: #f5f5f5;
4058
+ text-shadow: none;
4059
+ box-shadow: none;
4060
+ }
4061
+ .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child,
4062
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child,
4063
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child,
4064
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child {
4065
+ color: currentColor;
4066
+ }
4067
+ .ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after,
4068
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after,
4069
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after,
4070
+ .ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child::after {
4071
+ position: absolute;
4072
+ top: 0;
4073
+ right: 0;
4074
+ bottom: 0;
4075
+ left: 0;
4076
+ background: transparent;
4077
+ content: '';
4078
+ }
4079
+ .ant-btn-background-ghost.ant-btn-danger {
4080
+ color: #ff4d4f;
4081
+ border-color: #ff4d4f;
4082
+ text-shadow: none;
4083
+ }
4084
+ .ant-btn-background-ghost.ant-btn-danger > a:only-child {
4085
+ color: currentColor;
4086
+ }
4087
+ .ant-btn-background-ghost.ant-btn-danger > a:only-child::after {
4088
+ position: absolute;
4089
+ top: 0;
4090
+ right: 0;
4091
+ bottom: 0;
4092
+ left: 0;
4093
+ background: transparent;
4094
+ content: '';
4095
+ }
4096
+ .ant-btn-background-ghost.ant-btn-danger:hover,
4097
+ .ant-btn-background-ghost.ant-btn-danger:focus {
4098
+ color: #ff7875;
4099
+ border-color: #ff7875;
4100
+ }
4101
+ .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
4102
+ .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child {
4103
+ color: currentColor;
4104
+ }
4105
+ .ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after,
4106
+ .ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after {
4107
+ position: absolute;
4108
+ top: 0;
4109
+ right: 0;
4110
+ bottom: 0;
4111
+ left: 0;
4112
+ background: transparent;
4113
+ content: '';
4114
+ }
4115
+ .ant-btn-background-ghost.ant-btn-danger:active {
4116
+ color: #d9363e;
4117
+ border-color: #d9363e;
4118
+ }
4119
+ .ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
4120
+ color: currentColor;
4121
+ }
4122
+ .ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after {
4123
+ position: absolute;
4124
+ top: 0;
4125
+ right: 0;
4126
+ bottom: 0;
4127
+ left: 0;
4128
+ background: transparent;
4129
+ content: '';
4130
+ }
4131
+ .ant-btn-background-ghost.ant-btn-danger[disabled],
4132
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:hover,
4133
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
4134
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:active {
4135
+ color: rgba(0, 0, 0, 0.25);
4136
+ border-color: #d9d9d9;
4137
+ background: #f5f5f5;
4138
+ text-shadow: none;
4139
+ box-shadow: none;
4140
+ }
4141
+ .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child,
4142
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child,
4143
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child,
4144
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child {
4145
+ color: currentColor;
4146
+ }
4147
+ .ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after,
4148
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after,
4149
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after,
4150
+ .ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after {
4151
+ position: absolute;
4152
+ top: 0;
4153
+ right: 0;
4154
+ bottom: 0;
4155
+ left: 0;
4156
+ background: transparent;
4157
+ content: '';
4158
+ }
4159
+ .ant-btn-background-ghost.ant-btn-dangerous {
4160
+ color: #ff4d4f;
4161
+ border-color: #ff4d4f;
4162
+ text-shadow: none;
4163
+ }
4164
+ .ant-btn-background-ghost.ant-btn-dangerous > a:only-child {
4165
+ color: currentColor;
4166
+ }
4167
+ .ant-btn-background-ghost.ant-btn-dangerous > a:only-child::after {
4168
+ position: absolute;
4169
+ top: 0;
4170
+ right: 0;
4171
+ bottom: 0;
4172
+ left: 0;
4173
+ background: transparent;
4174
+ content: '';
4175
+ }
4176
+ .ant-btn-background-ghost.ant-btn-dangerous:hover,
4177
+ .ant-btn-background-ghost.ant-btn-dangerous:focus {
4178
+ color: #ff7875;
4179
+ border-color: #ff7875;
4180
+ }
4181
+ .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
4182
+ .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child {
4183
+ color: currentColor;
4184
+ }
4185
+ .ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child::after,
4186
+ .ant-btn-background-ghost.ant-btn-dangerous:focus > a:only-child::after {
4187
+ position: absolute;
4188
+ top: 0;
4189
+ right: 0;
4190
+ bottom: 0;
4191
+ left: 0;
4192
+ background: transparent;
4193
+ content: '';
4194
+ }
4195
+ .ant-btn-background-ghost.ant-btn-dangerous:active {
4196
+ color: #d9363e;
4197
+ border-color: #d9363e;
4198
+ }
4199
+ .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
4200
+ color: currentColor;
4201
+ }
4202
+ .ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child::after {
4203
+ position: absolute;
4204
+ top: 0;
4205
+ right: 0;
4206
+ bottom: 0;
4207
+ left: 0;
4208
+ background: transparent;
4209
+ content: '';
4210
+ }
4211
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled],
4212
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover,
4213
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,
4214
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
4215
+ color: rgba(0, 0, 0, 0.25);
4216
+ border-color: #d9d9d9;
4217
+ background: #f5f5f5;
4218
+ text-shadow: none;
4219
+ box-shadow: none;
4220
+ }
4221
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child,
4222
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child,
4223
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child,
4224
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child {
4225
+ color: currentColor;
4226
+ }
4227
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled] > a:only-child::after,
4228
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:hover > a:only-child::after,
4229
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus > a:only-child::after,
4230
+ .ant-btn-background-ghost.ant-btn-dangerous[disabled]:active > a:only-child::after {
4231
+ position: absolute;
4232
+ top: 0;
4233
+ right: 0;
4234
+ bottom: 0;
4235
+ left: 0;
4236
+ background: transparent;
4237
+ content: '';
4238
+ }
4239
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link {
4240
+ color: #ff4d4f;
4241
+ border-color: transparent;
4242
+ text-shadow: none;
4243
+ }
4244
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child {
4245
+ color: currentColor;
4246
+ }
4247
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link > a:only-child::after {
4248
+ position: absolute;
4249
+ top: 0;
4250
+ right: 0;
4251
+ bottom: 0;
4252
+ left: 0;
4253
+ background: transparent;
4254
+ content: '';
4255
+ }
4256
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover,
4257
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus {
4258
+ color: #ff7875;
4259
+ border-color: transparent;
4260
+ }
4261
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
4262
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
4263
+ color: currentColor;
4264
+ }
4265
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child::after,
4266
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus > a:only-child::after {
4267
+ position: absolute;
4268
+ top: 0;
4269
+ right: 0;
4270
+ bottom: 0;
4271
+ left: 0;
4272
+ background: transparent;
4273
+ content: '';
4274
+ }
4275
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active {
4276
+ color: #d9363e;
4277
+ border-color: transparent;
4278
+ }
4279
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child {
4280
+ color: currentColor;
4281
+ }
4282
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child::after {
4283
+ position: absolute;
4284
+ top: 0;
4285
+ right: 0;
4286
+ bottom: 0;
4287
+ left: 0;
4288
+ background: transparent;
4289
+ content: '';
4290
+ }
4291
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled],
4292
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover,
4293
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,
4294
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
4295
+ color: rgba(0, 0, 0, 0.25);
4296
+ border-color: #d9d9d9;
4297
+ background: #f5f5f5;
4298
+ text-shadow: none;
4299
+ box-shadow: none;
4300
+ }
4301
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child,
4302
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child,
4303
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child,
4304
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {
4305
+ color: currentColor;
4306
+ }
4307
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after,
4308
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after,
4309
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after,
4310
+ .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {
4311
+ position: absolute;
4312
+ top: 0;
4313
+ right: 0;
4314
+ bottom: 0;
4315
+ left: 0;
4316
+ background: transparent;
4317
+ content: '';
4318
+ }
4319
+ .ant-btn-two-chinese-chars::first-letter {
4320
+ letter-spacing: 0.34em;
4321
+ }
4322
+ .ant-btn-two-chinese-chars > *:not(.anticon) {
4323
+ margin-right: -0.34em;
4324
+ letter-spacing: 0.34em;
4325
+ }
4326
+ .ant-btn-block {
4327
+ width: 100%;
4328
+ }
4329
+ .ant-btn:empty {
4330
+ display: inline-block;
4331
+ width: 0;
4332
+ visibility: hidden;
4333
+ content: '\a0';
4334
+ }
4335
+ a.ant-btn {
4336
+ padding-top: 0.01px !important;
4337
+ line-height: 30px;
4338
+ }
4339
+ a.ant-btn-lg {
4340
+ line-height: 38px;
4341
+ }
4342
+ a.ant-btn-sm {
4343
+ line-height: 22px;
4344
+ }
4345
+ .ant-btn-rtl {
4346
+ direction: rtl;
4347
+ }
4348
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child),
4349
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {
4350
+ border-right-color: #40a9ff;
4351
+ border-left-color: #d9d9d9;
4352
+ }
4353
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
4354
+ .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {
4355
+ border-right-color: #d9d9d9;
4356
+ border-left-color: #40a9ff;
4357
+ }
4358
+ .ant-btn-rtl.ant-btn > .ant-btn-loading-icon .anticon {
4359
+ padding-right: 0;
4360
+ padding-left: 8px;
4361
+ }
4362
+ .ant-btn > .ant-btn-loading-icon:only-child .anticon {
4363
+ padding-right: 0;
4364
+ padding-left: 0;
4365
+ }
4366
+ .ant-btn-rtl.ant-btn > .anticon + span,
4367
+ .ant-btn-rtl.ant-btn > span + .anticon {
4368
+ margin-right: 8px;
4369
+ margin-left: 0;
4370
+ }
4371
+
4372
+
4373
+ /*# sourceMappingURL=index.css.map*/