@cloudtower/eagle 0.27.1 → 0.27.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.css +1521 -1201
- package/dist/esm/index.js +1 -6
- package/dist/esm/stats1.html +1 -1
- package/dist/style.css +1355 -1035
- package/dist/umd/index.js +1 -6
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
- package/dist/components/Loading/style.d.ts +0 -4
package/dist/components.css
CHANGED
|
@@ -28320,6 +28320,102 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28320
28320
|
transform: rotate(360deg);
|
|
28321
28321
|
}
|
|
28322
28322
|
}
|
|
28323
|
+
/* // basic */
|
|
28324
|
+
/* FishEye Color Variables and Functions */
|
|
28325
|
+
/*
|
|
28326
|
+
--------------------------- Primary Color ---------------------------
|
|
28327
|
+
*/
|
|
28328
|
+
/*
|
|
28329
|
+
---------------------------When necessary to add at any time---------------------------
|
|
28330
|
+
*/
|
|
28331
|
+
/* computed */
|
|
28332
|
+
/* blue */
|
|
28333
|
+
/* green */
|
|
28334
|
+
/* yellow */
|
|
28335
|
+
/* red */
|
|
28336
|
+
/* purple */
|
|
28337
|
+
/* palette global token*/
|
|
28338
|
+
/* color opaque */
|
|
28339
|
+
/* color transparent */
|
|
28340
|
+
/* blue transparent */
|
|
28341
|
+
/* green transparent */
|
|
28342
|
+
/* yellow transparent */
|
|
28343
|
+
/* red transparent */
|
|
28344
|
+
/* gray transparent */
|
|
28345
|
+
/* white transparent */
|
|
28346
|
+
/* gradient opaque */
|
|
28347
|
+
/* blue radial gradient */
|
|
28348
|
+
/* blue linear gradient */
|
|
28349
|
+
/* green radial gradient */
|
|
28350
|
+
/* yellow radial gradient */
|
|
28351
|
+
/* red radial gradient */
|
|
28352
|
+
/* gray radial gradient */
|
|
28353
|
+
/* white to gray radial gradient */
|
|
28354
|
+
/* white to gray linear gradient */
|
|
28355
|
+
/* gradient transparent */
|
|
28356
|
+
/* secondary palette */
|
|
28357
|
+
/* purple radial gradient */
|
|
28358
|
+
/* refine alias color */
|
|
28359
|
+
/* text */
|
|
28360
|
+
/* link */
|
|
28361
|
+
/* fill */
|
|
28362
|
+
/* fill element */
|
|
28363
|
+
/* fill interaction */
|
|
28364
|
+
/* stroke */
|
|
28365
|
+
/* background */
|
|
28366
|
+
/* dim */
|
|
28367
|
+
/* box shadow */
|
|
28368
|
+
/* fisheye */
|
|
28369
|
+
/* z-index */
|
|
28370
|
+
.loading {
|
|
28371
|
+
width: 64px;
|
|
28372
|
+
height: 64px;
|
|
28373
|
+
display: flex;
|
|
28374
|
+
align-items: center;
|
|
28375
|
+
justify-content: center;
|
|
28376
|
+
position: relative;
|
|
28377
|
+
opacity: 0.2;
|
|
28378
|
+
}
|
|
28379
|
+
|
|
28380
|
+
.loading-indicator__line1 {
|
|
28381
|
+
position: absolute;
|
|
28382
|
+
width: 5px;
|
|
28383
|
+
height: 48px;
|
|
28384
|
+
left: 9.33px;
|
|
28385
|
+
top: 40.5px;
|
|
28386
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
28387
|
+
border-radius: 5px;
|
|
28388
|
+
transform: rotate(-128deg);
|
|
28389
|
+
transform-origin: top left;
|
|
28390
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
28391
|
+
}
|
|
28392
|
+
|
|
28393
|
+
.loading-indicator__line2 {
|
|
28394
|
+
position: absolute;
|
|
28395
|
+
width: 5px;
|
|
28396
|
+
height: 48px;
|
|
28397
|
+
left: 40.8px;
|
|
28398
|
+
top: 8.4px;
|
|
28399
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
28400
|
+
border-radius: 5px;
|
|
28401
|
+
transform: rotate(-8deg);
|
|
28402
|
+
transform-origin: top left;
|
|
28403
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
28404
|
+
}
|
|
28405
|
+
|
|
28406
|
+
.loading-indicator__line3 {
|
|
28407
|
+
position: absolute;
|
|
28408
|
+
width: 5px;
|
|
28409
|
+
height: 48px;
|
|
28410
|
+
left: 52.9px;
|
|
28411
|
+
top: 51.8px;
|
|
28412
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
28413
|
+
border-radius: 5px;
|
|
28414
|
+
transform: rotate(112deg);
|
|
28415
|
+
transform-origin: top left;
|
|
28416
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
28417
|
+
}
|
|
28418
|
+
|
|
28323
28419
|
@keyframes loading-indicator1 {
|
|
28324
28420
|
0% {
|
|
28325
28421
|
height: 48px;
|
|
@@ -28386,6 +28482,53 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28386
28482
|
top: 51.8px;
|
|
28387
28483
|
}
|
|
28388
28484
|
}
|
|
28485
|
+
/* // basic */
|
|
28486
|
+
/* FishEye Color Variables and Functions */
|
|
28487
|
+
/*
|
|
28488
|
+
--------------------------- Primary Color ---------------------------
|
|
28489
|
+
*/
|
|
28490
|
+
/*
|
|
28491
|
+
---------------------------When necessary to add at any time---------------------------
|
|
28492
|
+
*/
|
|
28493
|
+
/* computed */
|
|
28494
|
+
/* blue */
|
|
28495
|
+
/* green */
|
|
28496
|
+
/* yellow */
|
|
28497
|
+
/* red */
|
|
28498
|
+
/* purple */
|
|
28499
|
+
/* palette global token*/
|
|
28500
|
+
/* color opaque */
|
|
28501
|
+
/* color transparent */
|
|
28502
|
+
/* blue transparent */
|
|
28503
|
+
/* green transparent */
|
|
28504
|
+
/* yellow transparent */
|
|
28505
|
+
/* red transparent */
|
|
28506
|
+
/* gray transparent */
|
|
28507
|
+
/* white transparent */
|
|
28508
|
+
/* gradient opaque */
|
|
28509
|
+
/* blue radial gradient */
|
|
28510
|
+
/* blue linear gradient */
|
|
28511
|
+
/* green radial gradient */
|
|
28512
|
+
/* yellow radial gradient */
|
|
28513
|
+
/* red radial gradient */
|
|
28514
|
+
/* gray radial gradient */
|
|
28515
|
+
/* white to gray radial gradient */
|
|
28516
|
+
/* white to gray linear gradient */
|
|
28517
|
+
/* gradient transparent */
|
|
28518
|
+
/* secondary palette */
|
|
28519
|
+
/* purple radial gradient */
|
|
28520
|
+
/* refine alias color */
|
|
28521
|
+
/* text */
|
|
28522
|
+
/* link */
|
|
28523
|
+
/* fill */
|
|
28524
|
+
/* fill element */
|
|
28525
|
+
/* fill interaction */
|
|
28526
|
+
/* stroke */
|
|
28527
|
+
/* background */
|
|
28528
|
+
/* dim */
|
|
28529
|
+
/* box shadow */
|
|
28530
|
+
/* fisheye */
|
|
28531
|
+
/* z-index */
|
|
28389
28532
|
.ant-dropdown,
|
|
28390
28533
|
.ant-dropdown-menu-submenu {
|
|
28391
28534
|
background: #fff;
|
|
@@ -28509,71 +28652,311 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28509
28652
|
text-overflow: ellipsis;
|
|
28510
28653
|
}
|
|
28511
28654
|
|
|
28512
|
-
|
|
28513
|
-
|
|
28514
|
-
-
|
|
28515
|
-
-
|
|
28516
|
-
|
|
28517
|
-
|
|
28518
|
-
|
|
28655
|
+
#top_bar {
|
|
28656
|
+
display: flex;
|
|
28657
|
+
align-items: center;
|
|
28658
|
+
justify-content: space-between;
|
|
28659
|
+
background: #222;
|
|
28660
|
+
color: #cec17e;
|
|
28661
|
+
height: 36px;
|
|
28662
|
+
padding: 0 4px;
|
|
28519
28663
|
}
|
|
28520
28664
|
|
|
28521
|
-
|
|
28665
|
+
#shortcuts {
|
|
28666
|
+
padding: 4px 6px;
|
|
28667
|
+
color: #eee;
|
|
28668
|
+
cursor: pointer;
|
|
28669
|
+
outline: none;
|
|
28670
|
+
border-radius: 2px;
|
|
28671
|
+
border: 0;
|
|
28672
|
+
background: #525252;
|
|
28522
28673
|
position: relative;
|
|
28523
28674
|
}
|
|
28524
28675
|
|
|
28525
|
-
|
|
28676
|
+
#shortcuts ul {
|
|
28677
|
+
display: none;
|
|
28526
28678
|
position: absolute;
|
|
28527
|
-
right:
|
|
28528
|
-
top:
|
|
28529
|
-
|
|
28530
|
-
|
|
28531
|
-
height: 100%;
|
|
28532
|
-
cursor: col-resize;
|
|
28679
|
+
right: 0px;
|
|
28680
|
+
top: 30px;
|
|
28681
|
+
word-wrap: none;
|
|
28682
|
+
white-space: nowrap;
|
|
28533
28683
|
}
|
|
28534
28684
|
|
|
28535
|
-
|
|
28536
|
-
|
|
28537
|
-
}
|
|
28538
|
-
.table-wrapper.table-sticky-header .no-scroll-bar th.cell__action_ {
|
|
28539
|
-
right: 0 !important;
|
|
28540
|
-
}
|
|
28541
|
-
.table-wrapper.table-sticky-header .no-scroll-bar th.ant-table-cell-scrollbar {
|
|
28542
|
-
display: none;
|
|
28543
|
-
}
|
|
28544
|
-
.table-wrapper.table-sticky-header .ant-table-header {
|
|
28545
|
-
position: sticky;
|
|
28546
|
-
top: 0px;
|
|
28547
|
-
}
|
|
28548
|
-
.table-wrapper.table-sticky-header .ant-table-body {
|
|
28549
|
-
overflow: auto visible !important;
|
|
28685
|
+
#shortcuts:hover ul {
|
|
28686
|
+
display: inherit;
|
|
28550
28687
|
}
|
|
28551
28688
|
|
|
28552
|
-
|
|
28553
|
-
|
|
28689
|
+
#sendCtrlAltDelButton {
|
|
28690
|
+
padding: 4px 6px;
|
|
28691
|
+
color: #eee;
|
|
28692
|
+
cursor: pointer;
|
|
28693
|
+
outline: none;
|
|
28694
|
+
border-radius: 2px;
|
|
28695
|
+
border: 0;
|
|
28696
|
+
background: #525252;
|
|
28697
|
+
opacity: 0.8;
|
|
28554
28698
|
}
|
|
28555
28699
|
|
|
28556
|
-
|
|
28557
|
-
|
|
28558
|
-
border-color: rgba(211, 218, 235, 0.6);
|
|
28559
|
-
}
|
|
28560
|
-
.ant-picker.error:not(.ant-picker-disabled) {
|
|
28561
|
-
border-color: #e75a3a;
|
|
28700
|
+
#sendCtrlAltDelButton:hover {
|
|
28701
|
+
opacity: 1;
|
|
28562
28702
|
}
|
|
28563
28703
|
|
|
28564
|
-
|
|
28565
|
-
|
|
28704
|
+
#screen canvas {
|
|
28705
|
+
margin-top: 0 !important;
|
|
28566
28706
|
}
|
|
28567
28707
|
|
|
28568
|
-
|
|
28569
|
-
|
|
28570
|
-
|
|
28571
|
-
|
|
28572
|
-
|
|
28708
|
+
/* // basic */
|
|
28709
|
+
/* FishEye Color Variables and Functions */
|
|
28710
|
+
/*
|
|
28711
|
+
--------------------------- Primary Color ---------------------------
|
|
28712
|
+
*/
|
|
28713
|
+
/*
|
|
28714
|
+
---------------------------When necessary to add at any time---------------------------
|
|
28715
|
+
*/
|
|
28716
|
+
/* computed */
|
|
28717
|
+
/* blue */
|
|
28718
|
+
/* green */
|
|
28719
|
+
/* yellow */
|
|
28720
|
+
/* red */
|
|
28721
|
+
/* purple */
|
|
28722
|
+
/* palette global token*/
|
|
28723
|
+
/* color opaque */
|
|
28724
|
+
/* color transparent */
|
|
28725
|
+
/* blue transparent */
|
|
28726
|
+
/* green transparent */
|
|
28727
|
+
/* yellow transparent */
|
|
28728
|
+
/* red transparent */
|
|
28729
|
+
/* gray transparent */
|
|
28730
|
+
/* white transparent */
|
|
28731
|
+
/* gradient opaque */
|
|
28732
|
+
/* blue radial gradient */
|
|
28733
|
+
/* blue linear gradient */
|
|
28734
|
+
/* green radial gradient */
|
|
28735
|
+
/* yellow radial gradient */
|
|
28736
|
+
/* red radial gradient */
|
|
28737
|
+
/* gray radial gradient */
|
|
28738
|
+
/* white to gray radial gradient */
|
|
28739
|
+
/* white to gray linear gradient */
|
|
28740
|
+
/* gradient transparent */
|
|
28741
|
+
/* secondary palette */
|
|
28742
|
+
/* purple radial gradient */
|
|
28743
|
+
/* refine alias color */
|
|
28744
|
+
/* text */
|
|
28745
|
+
/* link */
|
|
28746
|
+
/* fill */
|
|
28747
|
+
/* fill element */
|
|
28748
|
+
/* fill interaction */
|
|
28749
|
+
/* stroke */
|
|
28750
|
+
/* background */
|
|
28751
|
+
/* dim */
|
|
28752
|
+
/* box shadow */
|
|
28753
|
+
/* fisheye */
|
|
28754
|
+
/* z-index */
|
|
28755
|
+
.ant-dropdown,
|
|
28756
|
+
.ant-dropdown-menu-submenu {
|
|
28757
|
+
background: #fff;
|
|
28758
|
+
border-radius: 3px;
|
|
28759
|
+
min-width: 130px;
|
|
28760
|
+
box-sizing: content-box !important;
|
|
28761
|
+
box-shadow: none;
|
|
28762
|
+
border: none;
|
|
28573
28763
|
}
|
|
28574
|
-
.ant-
|
|
28575
|
-
|
|
28576
|
-
|
|
28764
|
+
.ant-dropdown > .ant-dropdown-menu,
|
|
28765
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu {
|
|
28766
|
+
border: 1px solid #dfe4eb;
|
|
28767
|
+
box-shadow: 0px 8px 16px rgba(129, 138, 153, 0.18), 0px 0px 4px rgba(235, 239, 245, 0.6);
|
|
28768
|
+
}
|
|
28769
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-title,
|
|
28770
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-title {
|
|
28771
|
+
font-family: Inter;
|
|
28772
|
+
font-style: normal;
|
|
28773
|
+
font-weight: normal;
|
|
28774
|
+
text-transform: uppercase;
|
|
28775
|
+
font-feature-settings: "cpsp" on;
|
|
28776
|
+
font-size: 12px;
|
|
28777
|
+
line-height: 18px;
|
|
28778
|
+
padding: 4px 16px;
|
|
28779
|
+
color: rgba(129, 138, 153, 0.6);
|
|
28780
|
+
}
|
|
28781
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-list,
|
|
28782
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-list {
|
|
28783
|
+
margin: 0;
|
|
28784
|
+
}
|
|
28785
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
|
|
28786
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
28787
|
+
min-width: 128px;
|
|
28788
|
+
}
|
|
28789
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
|
|
28790
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title,
|
|
28791
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item,
|
|
28792
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title {
|
|
28793
|
+
display: flex;
|
|
28794
|
+
padding: 4px 22px 4px 10px;
|
|
28795
|
+
font-family: Inter;
|
|
28796
|
+
font-style: normal;
|
|
28797
|
+
font-weight: normal;
|
|
28798
|
+
font-size: 14px;
|
|
28799
|
+
line-height: 22px;
|
|
28800
|
+
color: #2d3a56;
|
|
28801
|
+
}
|
|
28802
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
|
|
28803
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover,
|
|
28804
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
|
|
28805
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover {
|
|
28806
|
+
background-color: rgba(0, 128, 255, 0.1);
|
|
28807
|
+
color: #005ed1;
|
|
28808
|
+
}
|
|
28809
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
|
|
28810
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
|
|
28811
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
|
|
28812
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled {
|
|
28813
|
+
opacity: 0.5;
|
|
28814
|
+
}
|
|
28815
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
|
|
28816
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger,
|
|
28817
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
|
|
28818
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger {
|
|
28819
|
+
color: #f0483e;
|
|
28820
|
+
}
|
|
28821
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
|
|
28822
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover,
|
|
28823
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
|
|
28824
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover {
|
|
28825
|
+
background-color: rgba(240, 72, 62, 0.1);
|
|
28826
|
+
color: #f0483e;
|
|
28827
|
+
}
|
|
28828
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
|
|
28829
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled,
|
|
28830
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
|
|
28831
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled {
|
|
28832
|
+
color: #f0483e;
|
|
28833
|
+
opacity: 0.5;
|
|
28834
|
+
}
|
|
28835
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
|
|
28836
|
+
.ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider,
|
|
28837
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
|
|
28838
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider {
|
|
28839
|
+
margin-left: 0;
|
|
28840
|
+
margin-right: 0;
|
|
28841
|
+
background: rgba(213, 219, 227, 0.6);
|
|
28842
|
+
}
|
|
28843
|
+
.ant-dropdown > .ant-dropdown-menu .icon-wrapper,
|
|
28844
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper {
|
|
28845
|
+
display: flex;
|
|
28846
|
+
width: 100%;
|
|
28847
|
+
}
|
|
28848
|
+
.ant-dropdown > .ant-dropdown-menu .icon-wrapper .icon-inner,
|
|
28849
|
+
.ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper .icon-inner {
|
|
28850
|
+
margin-right: 4px;
|
|
28851
|
+
}
|
|
28852
|
+
|
|
28853
|
+
.ant-dropdown-menu-submenu.ant-dropdown-menu {
|
|
28854
|
+
padding: 0;
|
|
28855
|
+
}
|
|
28856
|
+
.ant-dropdown-menu-submenu.ant-dropdown-menu > [role=menu] {
|
|
28857
|
+
margin: 0;
|
|
28858
|
+
}
|
|
28859
|
+
|
|
28860
|
+
.ant-dropdown.no-animation-enter {
|
|
28861
|
+
display: block;
|
|
28862
|
+
opacity: 1 !important;
|
|
28863
|
+
}
|
|
28864
|
+
|
|
28865
|
+
.ant-dropdown.no-animation-leave {
|
|
28866
|
+
display: none;
|
|
28867
|
+
}
|
|
28868
|
+
|
|
28869
|
+
.ant-message-notice-content {
|
|
28870
|
+
max-width: 800px;
|
|
28871
|
+
}
|
|
28872
|
+
.ant-message-notice-content .ant-message-custom-content {
|
|
28873
|
+
overflow: hidden;
|
|
28874
|
+
white-space: nowrap;
|
|
28875
|
+
text-overflow: ellipsis;
|
|
28876
|
+
}
|
|
28877
|
+
|
|
28878
|
+
body {
|
|
28879
|
+
font-feature-settings: normal;
|
|
28880
|
+
-webkit-font-feature-settings: normal;
|
|
28881
|
+
font-variant: normal;
|
|
28882
|
+
min-width: 1280px;
|
|
28883
|
+
overflow: hidden;
|
|
28884
|
+
}
|
|
28885
|
+
|
|
28886
|
+
p {
|
|
28887
|
+
margin: 0;
|
|
28888
|
+
}
|
|
28889
|
+
|
|
28890
|
+
#root {
|
|
28891
|
+
width: 100vw;
|
|
28892
|
+
overflow-x: auto;
|
|
28893
|
+
}
|
|
28894
|
+
|
|
28895
|
+
.disable-select {
|
|
28896
|
+
-webkit-touch-callout: none;
|
|
28897
|
+
-webkit-user-select: none;
|
|
28898
|
+
-khtml-user-select: none;
|
|
28899
|
+
-moz-user-select: none;
|
|
28900
|
+
-ms-user-select: none;
|
|
28901
|
+
user-select: none;
|
|
28902
|
+
}
|
|
28903
|
+
|
|
28904
|
+
.relative {
|
|
28905
|
+
position: relative;
|
|
28906
|
+
}
|
|
28907
|
+
|
|
28908
|
+
.drag {
|
|
28909
|
+
position: absolute;
|
|
28910
|
+
right: -4px;
|
|
28911
|
+
top: 0;
|
|
28912
|
+
width: 8px;
|
|
28913
|
+
z-index: 9;
|
|
28914
|
+
height: 100%;
|
|
28915
|
+
cursor: col-resize;
|
|
28916
|
+
}
|
|
28917
|
+
|
|
28918
|
+
.table-wrapper {
|
|
28919
|
+
position: relative;
|
|
28920
|
+
}
|
|
28921
|
+
.table-wrapper.table-sticky-header .no-scroll-bar th.cell__action_ {
|
|
28922
|
+
right: 0 !important;
|
|
28923
|
+
}
|
|
28924
|
+
.table-wrapper.table-sticky-header .no-scroll-bar th.ant-table-cell-scrollbar {
|
|
28925
|
+
display: none;
|
|
28926
|
+
}
|
|
28927
|
+
.table-wrapper.table-sticky-header .ant-table-header {
|
|
28928
|
+
position: sticky;
|
|
28929
|
+
top: 0px;
|
|
28930
|
+
}
|
|
28931
|
+
.table-wrapper.table-sticky-header .ant-table-body {
|
|
28932
|
+
overflow: auto visible !important;
|
|
28933
|
+
}
|
|
28934
|
+
|
|
28935
|
+
.table-wrapper.dragging .ant-table-column-has-sorters {
|
|
28936
|
+
pointer-events: none;
|
|
28937
|
+
}
|
|
28938
|
+
|
|
28939
|
+
.ant-picker.ant-picker-disabled {
|
|
28940
|
+
background: rgba(211, 218, 235, 0.6);
|
|
28941
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
28942
|
+
}
|
|
28943
|
+
.ant-picker.error:not(.ant-picker-disabled) {
|
|
28944
|
+
border-color: #e75a3a;
|
|
28945
|
+
}
|
|
28946
|
+
|
|
28947
|
+
.ant-picker-cell {
|
|
28948
|
+
vertical-align: middle;
|
|
28949
|
+
}
|
|
28950
|
+
|
|
28951
|
+
.ant-modal {
|
|
28952
|
+
margin: 0 auto;
|
|
28953
|
+
max-width: 100%;
|
|
28954
|
+
top: 50%;
|
|
28955
|
+
transform: translateY(-50%);
|
|
28956
|
+
}
|
|
28957
|
+
.ant-modal .ant-modal-close-x {
|
|
28958
|
+
width: 20px;
|
|
28959
|
+
height: 20px;
|
|
28577
28960
|
line-height: 20px;
|
|
28578
28961
|
font-size: 20px;
|
|
28579
28962
|
color: #3e4652;
|
|
@@ -29445,20 +29828,6 @@ input[type=submit] {
|
|
|
29445
29828
|
-webkit-appearance: button;
|
|
29446
29829
|
cursor: pointer;
|
|
29447
29830
|
}
|
|
29448
|
-
|
|
29449
|
-
/* move from override.csss */
|
|
29450
|
-
body {
|
|
29451
|
-
font-feature-settings: normal;
|
|
29452
|
-
-webkit-font-feature-settings: normal;
|
|
29453
|
-
font-variant: normal;
|
|
29454
|
-
min-width: 1280px;
|
|
29455
|
-
overflow: hidden;
|
|
29456
|
-
}
|
|
29457
|
-
|
|
29458
|
-
#root {
|
|
29459
|
-
width: 100vw;
|
|
29460
|
-
overflow-x: auto;
|
|
29461
|
-
}
|
|
29462
29831
|
/* variable font */
|
|
29463
29832
|
html body {
|
|
29464
29833
|
font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
@@ -29471,101 +29840,26 @@ html body {
|
|
|
29471
29840
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
29472
29841
|
}
|
|
29473
29842
|
}
|
|
29474
|
-
.
|
|
29475
|
-
width: 100%;
|
|
29476
|
-
height: 100%;
|
|
29477
|
-
min-height: 124px;
|
|
29478
|
-
display: flex;
|
|
29479
|
-
flex-direction: column;
|
|
29843
|
+
.buj61ew.ant-btn-icon-only {
|
|
29480
29844
|
justify-content: center;
|
|
29481
|
-
align-items: center;
|
|
29482
|
-
}
|
|
29483
|
-
.fde5mpd .error-text {
|
|
29484
|
-
color: rgba(10, 37, 85, 0.6);
|
|
29485
|
-
margin-bottom: 16px;
|
|
29486
|
-
font-size: 18px;
|
|
29487
29845
|
}
|
|
29488
|
-
|
|
29489
|
-
|
|
29490
|
-
height: 18px;
|
|
29491
|
-
line-height: 18px;
|
|
29492
|
-
padding: 0 4px;
|
|
29493
|
-
border-radius: 4px;
|
|
29494
|
-
background: rgba(235, 239, 245, 0.6);
|
|
29495
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
29496
|
-
display: flex;
|
|
29846
|
+
.buj61ew.ant-btn {
|
|
29847
|
+
display: inline-flex;
|
|
29497
29848
|
align-items: center;
|
|
29498
|
-
|
|
29499
|
-
|
|
29849
|
+
justify-content: center;
|
|
29850
|
+
height: 32px;
|
|
29851
|
+
border-radius: 6px;
|
|
29852
|
+
line-height: 22px;
|
|
29853
|
+
transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
|
|
29854
|
+
transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
|
|
29500
29855
|
}
|
|
29501
|
-
|
|
29502
|
-
|
|
29503
|
-
|
|
29856
|
+
.buj61ew.ant-btn.ant-btn-lg {
|
|
29857
|
+
height: 40px;
|
|
29858
|
+
line-height: 24px;
|
|
29504
29859
|
}
|
|
29505
|
-
|
|
29506
|
-
|
|
29507
|
-
|
|
29508
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
29509
|
-
}
|
|
29510
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
29511
|
-
--color: #0080ff;
|
|
29512
|
-
}
|
|
29513
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
29514
|
-
--color: #0080ff;
|
|
29515
|
-
}
|
|
29516
|
-
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
29517
|
-
margin-left: 1px;
|
|
29518
|
-
}
|
|
29519
|
-
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
29520
|
-
border-top-right-radius: 0;
|
|
29521
|
-
border-bottom-right-radius: 0;
|
|
29522
|
-
}
|
|
29523
|
-
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
29524
|
-
border-top-left-radius: 0;
|
|
29525
|
-
border-bottom-left-radius: 0;
|
|
29526
|
-
}
|
|
29527
|
-
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
29528
|
-
border-radius: unset;
|
|
29529
|
-
}
|
|
29530
|
-
|
|
29531
|
-
.i1mrf09m {
|
|
29532
|
-
display: inline-flex;
|
|
29533
|
-
align-items: center;
|
|
29534
|
-
}
|
|
29535
|
-
.i1mrf09m .icon-inner {
|
|
29536
|
-
display: inline-flex;
|
|
29537
|
-
align-items: center;
|
|
29538
|
-
justify-content: center;
|
|
29539
|
-
}
|
|
29540
|
-
.i1mrf09m .icon-inner + span,
|
|
29541
|
-
.i1mrf09m span + .icon-inner.suffix {
|
|
29542
|
-
margin-left: 4px;
|
|
29543
|
-
}
|
|
29544
|
-
.i1mrf09m.is-rotate img,
|
|
29545
|
-
.i1mrf09m.is-rotate svg {
|
|
29546
|
-
animation: rotate 680ms linear infinite;
|
|
29547
|
-
}
|
|
29548
|
-
|
|
29549
|
-
.buj61ew.ant-btn-icon-only {
|
|
29550
|
-
justify-content: center;
|
|
29551
|
-
}
|
|
29552
|
-
.buj61ew.ant-btn {
|
|
29553
|
-
display: inline-flex;
|
|
29554
|
-
align-items: center;
|
|
29555
|
-
justify-content: center;
|
|
29556
|
-
height: 32px;
|
|
29557
|
-
border-radius: 6px;
|
|
29558
|
-
line-height: 22px;
|
|
29559
|
-
transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
|
|
29560
|
-
transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
|
|
29561
|
-
}
|
|
29562
|
-
.buj61ew.ant-btn.ant-btn-lg {
|
|
29563
|
-
height: 40px;
|
|
29564
|
-
line-height: 24px;
|
|
29565
|
-
}
|
|
29566
|
-
.buj61ew.ant-btn.ant-btn-sm {
|
|
29567
|
-
height: 24px;
|
|
29568
|
-
line-height: 20px;
|
|
29860
|
+
.buj61ew.ant-btn.ant-btn-sm {
|
|
29861
|
+
height: 24px;
|
|
29862
|
+
line-height: 20px;
|
|
29569
29863
|
}
|
|
29570
29864
|
.buj61ew.ant-btn.ant-btn-circle, .buj61ew.ant-btn.ant-btn-circle-outline {
|
|
29571
29865
|
border-radius: 50%;
|
|
@@ -29796,6 +30090,90 @@ html body {
|
|
|
29796
30090
|
padding: 0;
|
|
29797
30091
|
}
|
|
29798
30092
|
|
|
30093
|
+
.bpq0js6 {
|
|
30094
|
+
padding: 4px 11px;
|
|
30095
|
+
}
|
|
30096
|
+
|
|
30097
|
+
.b15sn34c {
|
|
30098
|
+
white-space: nowrap;
|
|
30099
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
30100
|
+
}
|
|
30101
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
30102
|
+
--color: #0080ff;
|
|
30103
|
+
}
|
|
30104
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
30105
|
+
--color: #0080ff;
|
|
30106
|
+
}
|
|
30107
|
+
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
30108
|
+
margin-left: 1px;
|
|
30109
|
+
}
|
|
30110
|
+
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
30111
|
+
border-top-right-radius: 0;
|
|
30112
|
+
border-bottom-right-radius: 0;
|
|
30113
|
+
}
|
|
30114
|
+
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
30115
|
+
border-top-left-radius: 0;
|
|
30116
|
+
border-bottom-left-radius: 0;
|
|
30117
|
+
}
|
|
30118
|
+
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
30119
|
+
border-radius: unset;
|
|
30120
|
+
}
|
|
30121
|
+
|
|
30122
|
+
.fde5mpd {
|
|
30123
|
+
width: 100%;
|
|
30124
|
+
height: 100%;
|
|
30125
|
+
min-height: 124px;
|
|
30126
|
+
display: flex;
|
|
30127
|
+
flex-direction: column;
|
|
30128
|
+
justify-content: center;
|
|
30129
|
+
align-items: center;
|
|
30130
|
+
}
|
|
30131
|
+
.fde5mpd .error-text {
|
|
30132
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30133
|
+
margin-bottom: 16px;
|
|
30134
|
+
font-size: 18px;
|
|
30135
|
+
}
|
|
30136
|
+
|
|
30137
|
+
.i1mrf09m {
|
|
30138
|
+
display: inline-flex;
|
|
30139
|
+
align-items: center;
|
|
30140
|
+
}
|
|
30141
|
+
.i1mrf09m .icon-inner {
|
|
30142
|
+
display: inline-flex;
|
|
30143
|
+
align-items: center;
|
|
30144
|
+
justify-content: center;
|
|
30145
|
+
}
|
|
30146
|
+
.i1mrf09m .icon-inner + span,
|
|
30147
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
30148
|
+
margin-left: 4px;
|
|
30149
|
+
}
|
|
30150
|
+
.i1mrf09m.is-rotate img,
|
|
30151
|
+
.i1mrf09m.is-rotate svg {
|
|
30152
|
+
animation: rotate 680ms linear infinite;
|
|
30153
|
+
}
|
|
30154
|
+
|
|
30155
|
+
.iap75of {
|
|
30156
|
+
height: 18px;
|
|
30157
|
+
line-height: 18px;
|
|
30158
|
+
padding: 0 4px;
|
|
30159
|
+
border-radius: 4px;
|
|
30160
|
+
background: rgba(235, 239, 245, 0.6);
|
|
30161
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30162
|
+
display: flex;
|
|
30163
|
+
align-items: center;
|
|
30164
|
+
white-space: nowrap;
|
|
30165
|
+
margin-right: 4px;
|
|
30166
|
+
}
|
|
30167
|
+
|
|
30168
|
+
.obf05yr {
|
|
30169
|
+
display: inline-block;
|
|
30170
|
+
}
|
|
30171
|
+
|
|
30172
|
+
.hsms1n6 {
|
|
30173
|
+
visibility: hidden;
|
|
30174
|
+
position: absolute;
|
|
30175
|
+
}
|
|
30176
|
+
|
|
29799
30177
|
.p12gwtiw {
|
|
29800
30178
|
display: flex;
|
|
29801
30179
|
justify-content: space-between;
|
|
@@ -29999,15 +30377,6 @@ html body {
|
|
|
29999
30377
|
width: 36px;
|
|
30000
30378
|
}
|
|
30001
30379
|
|
|
30002
|
-
.obf05yr {
|
|
30003
|
-
display: inline-block;
|
|
30004
|
-
}
|
|
30005
|
-
|
|
30006
|
-
.hsms1n6 {
|
|
30007
|
-
visibility: hidden;
|
|
30008
|
-
position: absolute;
|
|
30009
|
-
}
|
|
30010
|
-
|
|
30011
30380
|
.cz04yix {
|
|
30012
30381
|
display: flex;
|
|
30013
30382
|
flex-direction: column;
|
|
@@ -30675,524 +31044,45 @@ input.rrg1fkn.ant-input {
|
|
|
30675
31044
|
margin-left: 5px;
|
|
30676
31045
|
}
|
|
30677
31046
|
|
|
30678
|
-
.
|
|
30679
|
-
|
|
31047
|
+
.t1upn1sz {
|
|
31048
|
+
height: 100%;
|
|
30680
31049
|
}
|
|
30681
31050
|
|
|
30682
|
-
.
|
|
30683
|
-
|
|
30684
|
-
font-style: normal;
|
|
30685
|
-
font-weight: bold;
|
|
30686
|
-
font-size: 32px;
|
|
30687
|
-
line-height: 40px;
|
|
31051
|
+
.tta5kd2 {
|
|
31052
|
+
height: 100%;
|
|
30688
31053
|
}
|
|
30689
|
-
|
|
30690
|
-
|
|
30691
|
-
|
|
30692
|
-
font-style: normal;
|
|
30693
|
-
font-weight: bold;
|
|
30694
|
-
font-size: 24px;
|
|
30695
|
-
line-height: 32px;
|
|
31054
|
+
.tta5kd2.empty-table .ant-table-content {
|
|
31055
|
+
overflow: visible !important;
|
|
31056
|
+
height: 100%;
|
|
30696
31057
|
}
|
|
30697
|
-
|
|
30698
|
-
|
|
30699
|
-
font-family: Inter;
|
|
30700
|
-
font-style: normal;
|
|
30701
|
-
font-weight: normal;
|
|
30702
|
-
font-size: 32px;
|
|
30703
|
-
line-height: 40px;
|
|
31058
|
+
.tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
31059
|
+
height: 100%;
|
|
30704
31060
|
}
|
|
30705
|
-
|
|
30706
|
-
|
|
30707
|
-
|
|
30708
|
-
font-style: normal;
|
|
30709
|
-
font-weight: bold;
|
|
30710
|
-
font-size: 20px;
|
|
30711
|
-
line-height: 24px;
|
|
31061
|
+
.tta5kd2.empty-table .ant-table-content table {
|
|
31062
|
+
width: 100% !important;
|
|
31063
|
+
height: 100%;
|
|
30712
31064
|
}
|
|
30713
|
-
|
|
30714
|
-
|
|
30715
|
-
font-family: Inter;
|
|
30716
|
-
font-style: normal;
|
|
30717
|
-
font-weight: normal;
|
|
30718
|
-
font-size: 20px;
|
|
30719
|
-
line-height: 24px;
|
|
31065
|
+
.tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
31066
|
+
padding: 15px 0;
|
|
30720
31067
|
}
|
|
30721
|
-
|
|
30722
|
-
|
|
30723
|
-
font-family: Inter;
|
|
30724
|
-
font-style: normal;
|
|
30725
|
-
font-weight: bold;
|
|
30726
|
-
font-size: 18px;
|
|
30727
|
-
line-height: 22px;
|
|
31068
|
+
.tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
|
|
31069
|
+
display: none;
|
|
30728
31070
|
}
|
|
30729
|
-
|
|
30730
|
-
|
|
30731
|
-
font-family: Inter;
|
|
30732
|
-
font-style: normal;
|
|
30733
|
-
font-weight: normal;
|
|
30734
|
-
font-size: 18px;
|
|
30735
|
-
line-height: 22px;
|
|
31071
|
+
.tta5kd2 .active-row td:nth-child(1) {
|
|
31072
|
+
font-weight: 700;
|
|
30736
31073
|
}
|
|
30737
|
-
|
|
30738
|
-
|
|
30739
|
-
font-family: Inter;
|
|
30740
|
-
font-style: normal;
|
|
30741
|
-
font-weight: bold;
|
|
30742
|
-
font-size: 16px;
|
|
30743
|
-
line-height: 22px;
|
|
31074
|
+
.tta5kd2.has-selection .active-row td:nth-child(2) {
|
|
31075
|
+
font-weight: 700;
|
|
30744
31076
|
}
|
|
30745
|
-
|
|
30746
|
-
|
|
30747
|
-
font-family: Inter;
|
|
30748
|
-
font-style: normal;
|
|
30749
|
-
font-weight: normal;
|
|
30750
|
-
font-size: 16px;
|
|
30751
|
-
line-height: 22px;
|
|
31077
|
+
.tta5kd2 .ant-spin-nested-loading {
|
|
31078
|
+
height: 100%;
|
|
30752
31079
|
}
|
|
30753
|
-
|
|
30754
|
-
|
|
30755
|
-
|
|
30756
|
-
font-style: normal;
|
|
30757
|
-
font-weight: bold;
|
|
30758
|
-
font-size: 14px;
|
|
30759
|
-
line-height: 20px;
|
|
31080
|
+
.tta5kd2 .ant-spin-nested-loading .ant-spin-container {
|
|
31081
|
+
height: 100%;
|
|
31082
|
+
overflow: visible;
|
|
30760
31083
|
}
|
|
30761
|
-
|
|
30762
|
-
|
|
30763
|
-
font-family: Inter;
|
|
30764
|
-
font-style: normal;
|
|
30765
|
-
font-weight: normal;
|
|
30766
|
-
font-size: 14px;
|
|
30767
|
-
line-height: 20px;
|
|
30768
|
-
}
|
|
30769
|
-
|
|
30770
|
-
.h1kd8xld {
|
|
30771
|
-
font-family: Inter;
|
|
30772
|
-
font-style: normal;
|
|
30773
|
-
font-weight: bold;
|
|
30774
|
-
font-size: 12px;
|
|
30775
|
-
line-height: 18px;
|
|
30776
|
-
}
|
|
30777
|
-
|
|
30778
|
-
.hp14fr {
|
|
30779
|
-
font-family: Inter;
|
|
30780
|
-
font-style: normal;
|
|
30781
|
-
font-weight: normal;
|
|
30782
|
-
font-size: 12px;
|
|
30783
|
-
line-height: 18px;
|
|
30784
|
-
}
|
|
30785
|
-
|
|
30786
|
-
.hgrg7mn {
|
|
30787
|
-
font-family: Inter;
|
|
30788
|
-
font-style: normal;
|
|
30789
|
-
font-weight: bold;
|
|
30790
|
-
text-transform: uppercase;
|
|
30791
|
-
font-feature-settings: "cpsp" on;
|
|
30792
|
-
font-size: 12px;
|
|
30793
|
-
line-height: 18px;
|
|
30794
|
-
}
|
|
30795
|
-
|
|
30796
|
-
.h6zme9x {
|
|
30797
|
-
font-family: Inter;
|
|
30798
|
-
font-style: normal;
|
|
30799
|
-
font-weight: normal;
|
|
30800
|
-
text-transform: uppercase;
|
|
30801
|
-
font-feature-settings: "cpsp" on;
|
|
30802
|
-
font-size: 12px;
|
|
30803
|
-
line-height: 18px;
|
|
30804
|
-
}
|
|
30805
|
-
|
|
30806
|
-
.locjvsv {
|
|
30807
|
-
font-family: Inter;
|
|
30808
|
-
font-style: normal;
|
|
30809
|
-
font-weight: normal;
|
|
30810
|
-
font-size: 16px;
|
|
30811
|
-
line-height: 24px;
|
|
30812
|
-
}
|
|
30813
|
-
|
|
30814
|
-
.l13gi131 {
|
|
30815
|
-
font-family: Inter;
|
|
30816
|
-
font-style: normal;
|
|
30817
|
-
font-weight: bold;
|
|
30818
|
-
font-size: 16px;
|
|
30819
|
-
line-height: 24px;
|
|
30820
|
-
}
|
|
30821
|
-
|
|
30822
|
-
.l1ynemsu {
|
|
30823
|
-
font-family: Inter;
|
|
30824
|
-
font-style: normal;
|
|
30825
|
-
font-weight: normal;
|
|
30826
|
-
font-size: 16px;
|
|
30827
|
-
line-height: 24px;
|
|
30828
|
-
}
|
|
30829
|
-
|
|
30830
|
-
.l1cft1cx {
|
|
30831
|
-
font-family: Inter;
|
|
30832
|
-
font-style: normal;
|
|
30833
|
-
font-weight: bold;
|
|
30834
|
-
font-size: 16px;
|
|
30835
|
-
line-height: 24px;
|
|
30836
|
-
}
|
|
30837
|
-
|
|
30838
|
-
.l17tqc8p {
|
|
30839
|
-
font-family: Inter;
|
|
30840
|
-
font-style: normal;
|
|
30841
|
-
font-weight: normal;
|
|
30842
|
-
text-transform: uppercase;
|
|
30843
|
-
font-feature-settings: "cpsp" on;
|
|
30844
|
-
font-size: 16px;
|
|
30845
|
-
line-height: 24px;
|
|
30846
|
-
}
|
|
30847
|
-
|
|
30848
|
-
.l1j1e5w7 {
|
|
30849
|
-
font-family: Inter;
|
|
30850
|
-
font-style: normal;
|
|
30851
|
-
font-weight: bold;
|
|
30852
|
-
text-transform: uppercase;
|
|
30853
|
-
font-feature-settings: "cpsp" on;
|
|
30854
|
-
font-size: 16px;
|
|
30855
|
-
line-height: 24px;
|
|
30856
|
-
}
|
|
30857
|
-
|
|
30858
|
-
.l1gf91jb {
|
|
30859
|
-
font-family: Inter;
|
|
30860
|
-
font-style: normal;
|
|
30861
|
-
font-weight: normal;
|
|
30862
|
-
font-size: 14px;
|
|
30863
|
-
line-height: 22px;
|
|
30864
|
-
}
|
|
30865
|
-
|
|
30866
|
-
.lu7hlr6 {
|
|
30867
|
-
font-family: Inter;
|
|
30868
|
-
font-style: normal;
|
|
30869
|
-
font-weight: 500;
|
|
30870
|
-
font-size: 14px;
|
|
30871
|
-
line-height: 22px;
|
|
30872
|
-
}
|
|
30873
|
-
|
|
30874
|
-
.l3l3jf0 {
|
|
30875
|
-
font-family: Inter;
|
|
30876
|
-
font-style: normal;
|
|
30877
|
-
font-weight: bold;
|
|
30878
|
-
font-size: 14px;
|
|
30879
|
-
line-height: 22px;
|
|
30880
|
-
}
|
|
30881
|
-
|
|
30882
|
-
.l12j5nqp {
|
|
30883
|
-
font-family: Inter;
|
|
30884
|
-
font-style: normal;
|
|
30885
|
-
font-weight: normal;
|
|
30886
|
-
font-size: 14px;
|
|
30887
|
-
line-height: 22px;
|
|
30888
|
-
}
|
|
30889
|
-
|
|
30890
|
-
.l1tecqht {
|
|
30891
|
-
font-family: Inter;
|
|
30892
|
-
font-style: normal;
|
|
30893
|
-
font-weight: bold;
|
|
30894
|
-
font-size: 14px;
|
|
30895
|
-
line-height: 22px;
|
|
30896
|
-
}
|
|
30897
|
-
|
|
30898
|
-
.l6sa990 {
|
|
30899
|
-
font-family: Inter;
|
|
30900
|
-
font-style: normal;
|
|
30901
|
-
font-weight: normal;
|
|
30902
|
-
text-transform: uppercase;
|
|
30903
|
-
font-feature-settings: "cpsp" on;
|
|
30904
|
-
font-size: 14px;
|
|
30905
|
-
line-height: 22px;
|
|
30906
|
-
}
|
|
30907
|
-
|
|
30908
|
-
.lckqe8j {
|
|
30909
|
-
font-family: Inter;
|
|
30910
|
-
font-style: normal;
|
|
30911
|
-
font-weight: bold;
|
|
30912
|
-
text-transform: uppercase;
|
|
30913
|
-
font-feature-settings: "cpsp" on;
|
|
30914
|
-
font-size: 14px;
|
|
30915
|
-
line-height: 22px;
|
|
30916
|
-
}
|
|
30917
|
-
|
|
30918
|
-
.l1kuminb {
|
|
30919
|
-
font-family: Inter;
|
|
30920
|
-
font-style: normal;
|
|
30921
|
-
font-weight: normal;
|
|
30922
|
-
font-size: 13px;
|
|
30923
|
-
line-height: 20px;
|
|
30924
|
-
}
|
|
30925
|
-
|
|
30926
|
-
.l1pbuf5j {
|
|
30927
|
-
font-family: Inter;
|
|
30928
|
-
font-style: normal;
|
|
30929
|
-
font-weight: 600;
|
|
30930
|
-
font-size: 13px;
|
|
30931
|
-
line-height: 20px;
|
|
30932
|
-
}
|
|
30933
|
-
|
|
30934
|
-
.l1r4ztu {
|
|
30935
|
-
font-family: Inter;
|
|
30936
|
-
font-style: normal;
|
|
30937
|
-
font-weight: bold;
|
|
30938
|
-
font-size: 13px;
|
|
30939
|
-
line-height: 20px;
|
|
30940
|
-
}
|
|
30941
|
-
|
|
30942
|
-
.ly8vzok {
|
|
30943
|
-
font-family: Inter;
|
|
30944
|
-
font-style: normal;
|
|
30945
|
-
font-weight: normal;
|
|
30946
|
-
font-size: 13px;
|
|
30947
|
-
line-height: 20px;
|
|
30948
|
-
}
|
|
30949
|
-
|
|
30950
|
-
.lumfmf {
|
|
30951
|
-
font-family: Inter;
|
|
30952
|
-
font-style: normal;
|
|
30953
|
-
font-weight: 600;
|
|
30954
|
-
font-size: 13px;
|
|
30955
|
-
line-height: 20px;
|
|
30956
|
-
}
|
|
30957
|
-
|
|
30958
|
-
.l16ujwmv {
|
|
30959
|
-
font-family: Inter;
|
|
30960
|
-
font-style: normal;
|
|
30961
|
-
font-weight: bold;
|
|
30962
|
-
font-size: 13px;
|
|
30963
|
-
line-height: 20px;
|
|
30964
|
-
}
|
|
30965
|
-
|
|
30966
|
-
.l17o1ffr {
|
|
30967
|
-
font-family: Inter;
|
|
30968
|
-
font-style: normal;
|
|
30969
|
-
font-weight: normal;
|
|
30970
|
-
text-transform: uppercase;
|
|
30971
|
-
font-feature-settings: "cpsp" on;
|
|
30972
|
-
font-size: 13px;
|
|
30973
|
-
line-height: 20px;
|
|
30974
|
-
}
|
|
30975
|
-
|
|
30976
|
-
.lngllvn {
|
|
30977
|
-
font-family: Inter;
|
|
30978
|
-
font-style: normal;
|
|
30979
|
-
font-weight: bold;
|
|
30980
|
-
text-transform: uppercase;
|
|
30981
|
-
font-feature-settings: "cpsp" on;
|
|
30982
|
-
font-size: 13px;
|
|
30983
|
-
line-height: 20px;
|
|
30984
|
-
}
|
|
30985
|
-
|
|
30986
|
-
.l2i7fo9 {
|
|
30987
|
-
font-family: Inter;
|
|
30988
|
-
font-style: normal;
|
|
30989
|
-
font-weight: normal;
|
|
30990
|
-
font-size: 12px;
|
|
30991
|
-
line-height: 18px;
|
|
30992
|
-
}
|
|
30993
|
-
|
|
30994
|
-
.l1x7hscx {
|
|
30995
|
-
font-family: Inter;
|
|
30996
|
-
font-style: normal;
|
|
30997
|
-
font-weight: 500;
|
|
30998
|
-
font-size: 12px;
|
|
30999
|
-
line-height: 18px;
|
|
31000
|
-
}
|
|
31001
|
-
|
|
31002
|
-
.le1jwan {
|
|
31003
|
-
font-family: Inter;
|
|
31004
|
-
font-style: normal;
|
|
31005
|
-
font-weight: bold;
|
|
31006
|
-
font-size: 12px;
|
|
31007
|
-
line-height: 18px;
|
|
31008
|
-
}
|
|
31009
|
-
|
|
31010
|
-
.lyxynfj {
|
|
31011
|
-
font-family: Inter;
|
|
31012
|
-
font-style: normal;
|
|
31013
|
-
font-weight: normal;
|
|
31014
|
-
font-size: 12px;
|
|
31015
|
-
line-height: 18px;
|
|
31016
|
-
}
|
|
31017
|
-
|
|
31018
|
-
.lpb2nxv {
|
|
31019
|
-
font-family: Inter;
|
|
31020
|
-
font-style: normal;
|
|
31021
|
-
font-weight: 500;
|
|
31022
|
-
font-size: 12px;
|
|
31023
|
-
line-height: 18px;
|
|
31024
|
-
}
|
|
31025
|
-
|
|
31026
|
-
.l1r8o3vv {
|
|
31027
|
-
font-family: Inter;
|
|
31028
|
-
font-style: normal;
|
|
31029
|
-
font-weight: bold;
|
|
31030
|
-
font-size: 12px;
|
|
31031
|
-
line-height: 18px;
|
|
31032
|
-
}
|
|
31033
|
-
|
|
31034
|
-
.lemnjy2 {
|
|
31035
|
-
font-family: Inter;
|
|
31036
|
-
font-style: normal;
|
|
31037
|
-
font-weight: normal;
|
|
31038
|
-
text-transform: uppercase;
|
|
31039
|
-
font-feature-settings: "cpsp" on;
|
|
31040
|
-
font-size: 12px;
|
|
31041
|
-
line-height: 18px;
|
|
31042
|
-
}
|
|
31043
|
-
|
|
31044
|
-
.lrc42gb {
|
|
31045
|
-
font-family: Inter;
|
|
31046
|
-
font-style: normal;
|
|
31047
|
-
font-weight: bold;
|
|
31048
|
-
text-transform: uppercase;
|
|
31049
|
-
font-feature-settings: "cpsp" on;
|
|
31050
|
-
font-size: 12px;
|
|
31051
|
-
line-height: 18px;
|
|
31052
|
-
}
|
|
31053
|
-
|
|
31054
|
-
.fqaz4mb {
|
|
31055
|
-
font-family: Inter;
|
|
31056
|
-
font-style: normal;
|
|
31057
|
-
font-weight: normal;
|
|
31058
|
-
font-size: 13px;
|
|
31059
|
-
line-height: 20px;
|
|
31060
|
-
}
|
|
31061
|
-
|
|
31062
|
-
.f13we5o {
|
|
31063
|
-
font-family: Inter;
|
|
31064
|
-
font-style: normal;
|
|
31065
|
-
font-weight: normal;
|
|
31066
|
-
font-size: 13px;
|
|
31067
|
-
line-height: 20px;
|
|
31068
|
-
}
|
|
31069
|
-
|
|
31070
|
-
.ffmjua2 {
|
|
31071
|
-
font-family: Inter;
|
|
31072
|
-
font-style: normal;
|
|
31073
|
-
font-weight: normal;
|
|
31074
|
-
font-size: 12px;
|
|
31075
|
-
line-height: 18px;
|
|
31076
|
-
}
|
|
31077
|
-
|
|
31078
|
-
.fz2mxw0 {
|
|
31079
|
-
font-family: Inter;
|
|
31080
|
-
font-style: normal;
|
|
31081
|
-
font-weight: normal;
|
|
31082
|
-
font-size: 12px;
|
|
31083
|
-
line-height: 18px;
|
|
31084
|
-
}
|
|
31085
|
-
|
|
31086
|
-
.t1ertzoh {
|
|
31087
|
-
font-family: Inter;
|
|
31088
|
-
font-style: normal;
|
|
31089
|
-
font-weight: normal;
|
|
31090
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31091
|
-
font-size: 13px;
|
|
31092
|
-
line-height: 20px;
|
|
31093
|
-
}
|
|
31094
|
-
|
|
31095
|
-
.t19bge8r {
|
|
31096
|
-
font-family: Inter;
|
|
31097
|
-
font-style: normal;
|
|
31098
|
-
font-weight: normal;
|
|
31099
|
-
font-feature-settings: "zero" on;
|
|
31100
|
-
font-size: 13px;
|
|
31101
|
-
line-height: 20px;
|
|
31102
|
-
}
|
|
31103
|
-
|
|
31104
|
-
.tjrzfyl {
|
|
31105
|
-
font-family: Inter;
|
|
31106
|
-
font-style: normal;
|
|
31107
|
-
font-weight: normal;
|
|
31108
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31109
|
-
font-size: 12px;
|
|
31110
|
-
line-height: 18px;
|
|
31111
|
-
}
|
|
31112
|
-
|
|
31113
|
-
.tm6s7bo {
|
|
31114
|
-
font-family: Inter;
|
|
31115
|
-
font-style: normal;
|
|
31116
|
-
font-weight: 500;
|
|
31117
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31118
|
-
font-size: 12px;
|
|
31119
|
-
line-height: 18px;
|
|
31120
|
-
}
|
|
31121
|
-
|
|
31122
|
-
.t19zq6ic {
|
|
31123
|
-
font-family: Inter;
|
|
31124
|
-
font-style: normal;
|
|
31125
|
-
font-weight: normal;
|
|
31126
|
-
font-feature-settings: "zero" on;
|
|
31127
|
-
font-size: 12px;
|
|
31128
|
-
line-height: 18px;
|
|
31129
|
-
}
|
|
31130
|
-
|
|
31131
|
-
.t1gduru8 {
|
|
31132
|
-
font-family: Inter;
|
|
31133
|
-
font-style: normal;
|
|
31134
|
-
font-weight: 500;
|
|
31135
|
-
font-feature-settings: "zero" on;
|
|
31136
|
-
font-size: 12px;
|
|
31137
|
-
line-height: 18px;
|
|
31138
|
-
}
|
|
31139
|
-
|
|
31140
|
-
.t55raab {
|
|
31141
|
-
font-family: Inter;
|
|
31142
|
-
font-style: normal;
|
|
31143
|
-
font-weight: bold;
|
|
31144
|
-
font-feature-settings: "zero" on;
|
|
31145
|
-
font-size: 16px;
|
|
31146
|
-
line-height: 24px;
|
|
31147
|
-
}
|
|
31148
|
-
|
|
31149
|
-
.u1w9abfe {
|
|
31150
|
-
font-family: Inter;
|
|
31151
|
-
font-style: normal;
|
|
31152
|
-
font-weight: normal;
|
|
31153
|
-
font-size: 10px;
|
|
31154
|
-
line-height: 12px;
|
|
31155
|
-
}
|
|
31156
|
-
|
|
31157
|
-
.t1upn1sz {
|
|
31158
|
-
height: 100%;
|
|
31159
|
-
}
|
|
31160
|
-
|
|
31161
|
-
.tta5kd2 {
|
|
31162
|
-
height: 100%;
|
|
31163
|
-
}
|
|
31164
|
-
.tta5kd2.empty-table .ant-table-content {
|
|
31165
|
-
overflow: visible !important;
|
|
31166
|
-
height: 100%;
|
|
31167
|
-
}
|
|
31168
|
-
.tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
31169
|
-
height: 100%;
|
|
31170
|
-
}
|
|
31171
|
-
.tta5kd2.empty-table .ant-table-content table {
|
|
31172
|
-
width: 100% !important;
|
|
31173
|
-
height: 100%;
|
|
31174
|
-
}
|
|
31175
|
-
.tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
31176
|
-
padding: 15px 0;
|
|
31177
|
-
}
|
|
31178
|
-
.tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
|
|
31179
|
-
display: none;
|
|
31180
|
-
}
|
|
31181
|
-
.tta5kd2 .active-row td:nth-child(1) {
|
|
31182
|
-
font-weight: 700;
|
|
31183
|
-
}
|
|
31184
|
-
.tta5kd2.has-selection .active-row td:nth-child(2) {
|
|
31185
|
-
font-weight: 700;
|
|
31186
|
-
}
|
|
31187
|
-
.tta5kd2 .ant-spin-nested-loading {
|
|
31188
|
-
height: 100%;
|
|
31189
|
-
}
|
|
31190
|
-
.tta5kd2 .ant-spin-nested-loading .ant-spin-container {
|
|
31191
|
-
height: 100%;
|
|
31192
|
-
overflow: visible;
|
|
31193
|
-
}
|
|
31194
|
-
.tta5kd2 .ant-spin-nested-loading .ant-spin {
|
|
31195
|
-
max-height: none;
|
|
31084
|
+
.tta5kd2 .ant-spin-nested-loading .ant-spin {
|
|
31085
|
+
max-height: none;
|
|
31196
31086
|
}
|
|
31197
31087
|
.tta5kd2.table-init-loading .ant-spin-blur thead,
|
|
31198
31088
|
.tta5kd2.table-init-loading .ant-spin-blur tbody {
|
|
@@ -31259,366 +31149,823 @@ input.rrg1fkn.ant-input {
|
|
|
31259
31149
|
cursor: pointer;
|
|
31260
31150
|
position: absolute;
|
|
31261
31151
|
top: 50%;
|
|
31262
|
-
right: 12px;
|
|
31263
|
-
transform: translateY(-50%);
|
|
31152
|
+
right: 12px;
|
|
31153
|
+
transform: translateY(-50%);
|
|
31154
|
+
}
|
|
31155
|
+
.tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
31156
|
+
box-shadow: none;
|
|
31157
|
+
width: 1px;
|
|
31158
|
+
background: rgba(213, 219, 227, 0.6);
|
|
31159
|
+
}
|
|
31160
|
+
.tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
|
|
31161
|
+
box-shadow: none;
|
|
31162
|
+
width: 1px;
|
|
31163
|
+
background: rgba(213, 219, 227, 0.6);
|
|
31164
|
+
}
|
|
31165
|
+
.tta5kd2 .ant-table .ant-table-tbody {
|
|
31166
|
+
position: relative;
|
|
31167
|
+
}
|
|
31168
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
|
|
31169
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31170
|
+
border-bottom: 1px solid white;
|
|
31171
|
+
height: 40px;
|
|
31172
|
+
vertical-align: middle;
|
|
31173
|
+
transition: background 0ms;
|
|
31174
|
+
color: #00122e;
|
|
31175
|
+
}
|
|
31176
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
|
|
31177
|
+
background: #f2f5fa;
|
|
31178
|
+
border-bottom-color: #f2f5fa;
|
|
31179
|
+
}
|
|
31180
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
|
|
31181
|
+
height: auto;
|
|
31182
|
+
color: #00122e;
|
|
31183
|
+
font-size: 12px;
|
|
31184
|
+
text-align: left;
|
|
31185
|
+
transition: none;
|
|
31186
|
+
overflow: hidden;
|
|
31187
|
+
text-overflow: ellipsis;
|
|
31188
|
+
white-space: nowrap;
|
|
31189
|
+
}
|
|
31190
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
|
|
31191
|
+
color: #0096ff;
|
|
31192
|
+
}
|
|
31193
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
|
|
31194
|
+
overflow: hidden;
|
|
31195
|
+
text-overflow: ellipsis;
|
|
31196
|
+
width: 100%;
|
|
31197
|
+
vertical-align: middle;
|
|
31198
|
+
}
|
|
31199
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
|
|
31200
|
+
line-height: 0px;
|
|
31201
|
+
}
|
|
31202
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.align-right {
|
|
31203
|
+
padding-right: 25px;
|
|
31204
|
+
}
|
|
31205
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
|
|
31206
|
+
border-top-color: transparent;
|
|
31207
|
+
}
|
|
31208
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
|
|
31209
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31210
|
+
border-color: transparent transparent white;
|
|
31211
|
+
}
|
|
31212
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
|
|
31213
|
+
border-radius: 8px 0 0 8px;
|
|
31214
|
+
}
|
|
31215
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
|
|
31216
|
+
border-radius: 8px 0 0 8px;
|
|
31217
|
+
}
|
|
31218
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
|
|
31219
|
+
content: "";
|
|
31220
|
+
width: 4px;
|
|
31221
|
+
top: -1px;
|
|
31222
|
+
bottom: -1px;
|
|
31223
|
+
background: white;
|
|
31224
|
+
}
|
|
31225
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
|
|
31226
|
+
border-radius: 0 8px 8px 0;
|
|
31227
|
+
}
|
|
31228
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
|
|
31229
|
+
border-radius: 0;
|
|
31230
|
+
background: white;
|
|
31231
|
+
border-top: none;
|
|
31232
|
+
}
|
|
31233
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
|
|
31234
|
+
border-top: 1px solid transparent;
|
|
31235
|
+
border-radius: 0 8px 8px 0;
|
|
31236
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31237
|
+
}
|
|
31238
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
|
|
31239
|
+
background: white;
|
|
31240
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31241
|
+
}
|
|
31242
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
31243
|
+
display: flex;
|
|
31244
|
+
align-items: center;
|
|
31245
|
+
height: 100%;
|
|
31246
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31247
|
+
}
|
|
31248
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
|
|
31249
|
+
background: white;
|
|
31250
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31251
|
+
}
|
|
31252
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
|
|
31253
|
+
display: flex;
|
|
31254
|
+
align-items: center;
|
|
31255
|
+
height: 100%;
|
|
31256
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31257
|
+
}
|
|
31258
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
|
|
31259
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
31260
|
+
}
|
|
31261
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
|
|
31262
|
+
box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
|
|
31263
|
+
border-radius: 8px;
|
|
31264
|
+
}
|
|
31265
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
|
|
31266
|
+
border-top-color: white;
|
|
31267
|
+
}
|
|
31268
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td {
|
|
31269
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31270
|
+
border-bottom-color: transparent;
|
|
31271
|
+
border-top-color: transparent;
|
|
31272
|
+
}
|
|
31273
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
|
|
31274
|
+
border-radius: 8px 0 0 8px;
|
|
31275
|
+
}
|
|
31276
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
|
|
31277
|
+
border-radius: 0 8px 8px 0;
|
|
31278
|
+
}
|
|
31279
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
|
|
31280
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31281
|
+
}
|
|
31282
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th {
|
|
31283
|
+
background: #fff;
|
|
31284
|
+
font-weight: 400;
|
|
31285
|
+
position: relative;
|
|
31286
|
+
border-bottom: none;
|
|
31287
|
+
color: #00122e;
|
|
31288
|
+
transition: none;
|
|
31289
|
+
padding: 15px 8px 15px 8px;
|
|
31290
|
+
}
|
|
31291
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:not(:last-child):after {
|
|
31292
|
+
content: "";
|
|
31293
|
+
width: 1px;
|
|
31294
|
+
top: 0;
|
|
31295
|
+
bottom: 0;
|
|
31296
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31297
|
+
position: absolute;
|
|
31298
|
+
right: 0;
|
|
31299
|
+
}
|
|
31300
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank {
|
|
31301
|
+
padding: unset;
|
|
31302
|
+
}
|
|
31303
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank:after {
|
|
31304
|
+
display: none;
|
|
31305
|
+
}
|
|
31306
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
31307
|
+
width: 100%;
|
|
31308
|
+
overflow: hidden;
|
|
31309
|
+
white-space: nowrap;
|
|
31310
|
+
text-overflow: ellipsis;
|
|
31311
|
+
}
|
|
31312
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
|
|
31313
|
+
overflow: hidden;
|
|
31314
|
+
text-overflow: ellipsis;
|
|
31315
|
+
flex: 1;
|
|
31316
|
+
}
|
|
31317
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
|
|
31318
|
+
padding: 15px 25px 15px 8px;
|
|
31319
|
+
}
|
|
31320
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
31321
|
+
padding: 0;
|
|
31322
|
+
}
|
|
31323
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
|
|
31324
|
+
position: absolute;
|
|
31325
|
+
right: 6px;
|
|
31326
|
+
top: 50%;
|
|
31327
|
+
transform: translateY(-50%);
|
|
31328
|
+
height: 16px;
|
|
31329
|
+
display: none;
|
|
31330
|
+
transition: transform 320ms ease;
|
|
31331
|
+
}
|
|
31332
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
|
|
31333
|
+
display: block;
|
|
31334
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
31335
|
+
}
|
|
31336
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
|
|
31337
|
+
display: block;
|
|
31338
|
+
}
|
|
31339
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
|
|
31340
|
+
display: none;
|
|
31341
|
+
}
|
|
31342
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
|
|
31343
|
+
transform: translateY(-50%);
|
|
31344
|
+
}
|
|
31345
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
|
|
31346
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
31347
|
+
}
|
|
31348
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
|
|
31349
|
+
background: #f2f5fa;
|
|
31350
|
+
}
|
|
31351
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
|
|
31352
|
+
display: block;
|
|
31353
|
+
}
|
|
31354
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.align-right {
|
|
31355
|
+
padding-right: 25px;
|
|
31356
|
+
}
|
|
31357
|
+
.tta5kd2 .ant-table .ant-table-selection-column {
|
|
31358
|
+
padding: 0 !important;
|
|
31359
|
+
}
|
|
31360
|
+
.tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
|
|
31361
|
+
position: absolute;
|
|
31362
|
+
left: 50%;
|
|
31363
|
+
top: 50%;
|
|
31364
|
+
transform: translate(-50%, -50%);
|
|
31264
31365
|
}
|
|
31265
|
-
.tta5kd2 .ant-table
|
|
31266
|
-
|
|
31267
|
-
width: 1px;
|
|
31268
|
-
background: rgba(213, 219, 227, 0.6);
|
|
31366
|
+
.tta5kd2 .ant-table .ant-table-selection-column:after {
|
|
31367
|
+
display: none;
|
|
31269
31368
|
}
|
|
31270
|
-
.tta5kd2 .ant-table
|
|
31271
|
-
|
|
31272
|
-
width: 1px;
|
|
31273
|
-
background: rgba(213, 219, 227, 0.6);
|
|
31369
|
+
.tta5kd2 .ant-table .ant-table-hide-scrollbar {
|
|
31370
|
+
background: #fff;
|
|
31274
31371
|
}
|
|
31275
|
-
.tta5kd2 .ant-table .ant-table-
|
|
31276
|
-
|
|
31372
|
+
.tta5kd2 .ant-table .ant-table-placeholder {
|
|
31373
|
+
background: inherit;
|
|
31277
31374
|
}
|
|
31278
|
-
.tta5kd2 .ant-table .ant-table-
|
|
31279
|
-
|
|
31280
|
-
border
|
|
31281
|
-
|
|
31375
|
+
.tta5kd2 .ant-table .ant-table-placeholder td {
|
|
31376
|
+
position: static;
|
|
31377
|
+
border: none;
|
|
31378
|
+
background: inherit !important;
|
|
31379
|
+
height: 100px;
|
|
31282
31380
|
vertical-align: middle;
|
|
31283
|
-
transition: background 0ms;
|
|
31284
|
-
color: #00122e;
|
|
31285
31381
|
}
|
|
31286
|
-
.tta5kd2 .ant-table .ant-table-
|
|
31287
|
-
|
|
31288
|
-
|
|
31382
|
+
.tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
|
|
31383
|
+
.tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
31384
|
+
font-weight: bold;
|
|
31385
|
+
font-size: 20px;
|
|
31386
|
+
color: rgba(10, 37, 85, 0.6);
|
|
31289
31387
|
}
|
|
31290
|
-
.tta5kd2 .ant-table
|
|
31291
|
-
|
|
31292
|
-
|
|
31293
|
-
|
|
31294
|
-
text-align: left;
|
|
31295
|
-
transition: none;
|
|
31296
|
-
overflow: hidden;
|
|
31297
|
-
text-overflow: ellipsis;
|
|
31298
|
-
white-space: nowrap;
|
|
31388
|
+
.tta5kd2 .ant-table td.cell__action_ {
|
|
31389
|
+
padding: 0 !important;
|
|
31390
|
+
position: relative;
|
|
31391
|
+
background: #fff;
|
|
31299
31392
|
}
|
|
31300
|
-
.tta5kd2 .ant-table .
|
|
31301
|
-
|
|
31393
|
+
.tta5kd2 .ant-table td.cell__action_ > * {
|
|
31394
|
+
height: 100%;
|
|
31395
|
+
display: flex;
|
|
31396
|
+
align-items: center;
|
|
31397
|
+
justify-content: flex-end;
|
|
31398
|
+
padding-right: 8px;
|
|
31302
31399
|
}
|
|
31303
|
-
.tta5kd2 .ant-table .
|
|
31304
|
-
|
|
31305
|
-
|
|
31306
|
-
|
|
31307
|
-
|
|
31400
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button {
|
|
31401
|
+
width: 24px;
|
|
31402
|
+
height: 24px;
|
|
31403
|
+
cursor: pointer;
|
|
31404
|
+
justify-content: center;
|
|
31405
|
+
border-radius: 4px;
|
|
31308
31406
|
}
|
|
31309
|
-
.tta5kd2 .ant-table .
|
|
31310
|
-
|
|
31407
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
|
|
31408
|
+
background: #fff;
|
|
31311
31409
|
}
|
|
31312
|
-
|
|
31313
|
-
|
|
31410
|
+
|
|
31411
|
+
.s1fc623g {
|
|
31412
|
+
width: 430px !important;
|
|
31314
31413
|
}
|
|
31315
|
-
|
|
31316
|
-
|
|
31414
|
+
|
|
31415
|
+
.da3mx0o .ant-select-item-group {
|
|
31416
|
+
padding: 8px 16px;
|
|
31417
|
+
line-height: 18px;
|
|
31418
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31419
|
+
height: 34px;
|
|
31420
|
+
min-height: 34px;
|
|
31421
|
+
box-sizing: border-box;
|
|
31422
|
+
margin-top: 8px;
|
|
31317
31423
|
}
|
|
31318
|
-
|
|
31319
|
-
|
|
31320
|
-
|
|
31424
|
+
|
|
31425
|
+
.onr9gzt {
|
|
31426
|
+
display: flex;
|
|
31427
|
+
flex-direction: column;
|
|
31428
|
+
margin: 1px 8px;
|
|
31429
|
+
padding: 8px;
|
|
31430
|
+
border-radius: 4px;
|
|
31321
31431
|
}
|
|
31322
|
-
.
|
|
31323
|
-
|
|
31432
|
+
.onr9gzt .selected-icon {
|
|
31433
|
+
display: none;
|
|
31324
31434
|
}
|
|
31325
|
-
.
|
|
31326
|
-
|
|
31435
|
+
.onr9gzt.ant-select-item-option-grouped {
|
|
31436
|
+
padding-left: 8px;
|
|
31327
31437
|
}
|
|
31328
|
-
.
|
|
31329
|
-
|
|
31330
|
-
width: 4px;
|
|
31331
|
-
top: -1px;
|
|
31332
|
-
bottom: -1px;
|
|
31333
|
-
background: white;
|
|
31438
|
+
.onr9gzt.ant-select-item-option-selected {
|
|
31439
|
+
background-color: white;
|
|
31334
31440
|
}
|
|
31335
|
-
.
|
|
31336
|
-
|
|
31441
|
+
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
31442
|
+
color: #0080ff;
|
|
31337
31443
|
}
|
|
31338
|
-
.
|
|
31339
|
-
|
|
31340
|
-
background: white;
|
|
31341
|
-
border-top: none;
|
|
31444
|
+
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
31445
|
+
display: block;
|
|
31342
31446
|
}
|
|
31343
|
-
.
|
|
31344
|
-
|
|
31345
|
-
border-radius: 0 8px 8px 0;
|
|
31346
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31447
|
+
.onr9gzt.ant-select-item-option-active {
|
|
31448
|
+
background: rgba(0, 136, 255, 0.16);
|
|
31347
31449
|
}
|
|
31348
|
-
.
|
|
31349
|
-
|
|
31350
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31450
|
+
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
31451
|
+
color: #0080ff;
|
|
31351
31452
|
}
|
|
31352
|
-
.
|
|
31453
|
+
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
31454
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31455
|
+
color: #0080ff;
|
|
31456
|
+
}
|
|
31457
|
+
|
|
31458
|
+
.oiy0apc {
|
|
31353
31459
|
display: flex;
|
|
31354
|
-
|
|
31355
|
-
height:
|
|
31356
|
-
|
|
31460
|
+
justify-content: space-between;
|
|
31461
|
+
height: 20px;
|
|
31462
|
+
line-height: 20px;
|
|
31357
31463
|
}
|
|
31358
|
-
.
|
|
31359
|
-
|
|
31360
|
-
|
|
31464
|
+
.oiy0apc .timezone-title {
|
|
31465
|
+
color: #2d3a56;
|
|
31466
|
+
overflow: hidden;
|
|
31467
|
+
text-overflow: ellipsis;
|
|
31361
31468
|
}
|
|
31362
|
-
|
|
31469
|
+
|
|
31470
|
+
.of4y382 {
|
|
31363
31471
|
display: flex;
|
|
31364
|
-
|
|
31365
|
-
|
|
31472
|
+
justify-content: space-between;
|
|
31473
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31474
|
+
height: 18px;
|
|
31475
|
+
line-height: 18px;
|
|
31476
|
+
margin-top: 2px;
|
|
31477
|
+
}
|
|
31478
|
+
|
|
31479
|
+
.t19903l9 {
|
|
31480
|
+
border: none;
|
|
31481
|
+
margin-right: 0;
|
|
31366
31482
|
background: rgba(225, 230, 241, 0.6);
|
|
31367
31483
|
}
|
|
31368
|
-
|
|
31369
|
-
|
|
31484
|
+
|
|
31485
|
+
.ohwbvxu {
|
|
31486
|
+
pointer-events: none;
|
|
31487
|
+
height: 32px;
|
|
31488
|
+
width: 100%;
|
|
31489
|
+
opacity: 0;
|
|
31370
31490
|
}
|
|
31371
|
-
|
|
31372
|
-
|
|
31373
|
-
|
|
31491
|
+
|
|
31492
|
+
.i1e4sgug {
|
|
31493
|
+
display: inline-block;
|
|
31374
31494
|
}
|
|
31375
|
-
|
|
31376
|
-
|
|
31495
|
+
|
|
31496
|
+
.d6j0lbj {
|
|
31497
|
+
font-family: Inter;
|
|
31498
|
+
font-style: normal;
|
|
31499
|
+
font-weight: bold;
|
|
31500
|
+
font-size: 32px;
|
|
31501
|
+
line-height: 40px;
|
|
31377
31502
|
}
|
|
31378
|
-
|
|
31379
|
-
|
|
31380
|
-
|
|
31381
|
-
|
|
31503
|
+
|
|
31504
|
+
.d1xhvvxe {
|
|
31505
|
+
font-family: Inter;
|
|
31506
|
+
font-style: normal;
|
|
31507
|
+
font-weight: bold;
|
|
31508
|
+
font-size: 24px;
|
|
31509
|
+
line-height: 32px;
|
|
31382
31510
|
}
|
|
31383
|
-
|
|
31384
|
-
|
|
31511
|
+
|
|
31512
|
+
.dk10mxq {
|
|
31513
|
+
font-family: Inter;
|
|
31514
|
+
font-style: normal;
|
|
31515
|
+
font-weight: normal;
|
|
31516
|
+
font-size: 32px;
|
|
31517
|
+
line-height: 40px;
|
|
31385
31518
|
}
|
|
31386
|
-
|
|
31387
|
-
|
|
31519
|
+
|
|
31520
|
+
.dxsait {
|
|
31521
|
+
font-family: Inter;
|
|
31522
|
+
font-style: normal;
|
|
31523
|
+
font-weight: bold;
|
|
31524
|
+
font-size: 20px;
|
|
31525
|
+
line-height: 24px;
|
|
31526
|
+
}
|
|
31527
|
+
|
|
31528
|
+
.dokn0h3 {
|
|
31529
|
+
font-family: Inter;
|
|
31530
|
+
font-style: normal;
|
|
31531
|
+
font-weight: normal;
|
|
31532
|
+
font-size: 20px;
|
|
31533
|
+
line-height: 24px;
|
|
31534
|
+
}
|
|
31535
|
+
|
|
31536
|
+
.dobau4p {
|
|
31537
|
+
font-family: Inter;
|
|
31538
|
+
font-style: normal;
|
|
31539
|
+
font-weight: bold;
|
|
31540
|
+
font-size: 18px;
|
|
31541
|
+
line-height: 22px;
|
|
31542
|
+
}
|
|
31543
|
+
|
|
31544
|
+
.dvolwok {
|
|
31545
|
+
font-family: Inter;
|
|
31546
|
+
font-style: normal;
|
|
31547
|
+
font-weight: normal;
|
|
31548
|
+
font-size: 18px;
|
|
31549
|
+
line-height: 22px;
|
|
31550
|
+
}
|
|
31551
|
+
|
|
31552
|
+
.h181qhg4 {
|
|
31553
|
+
font-family: Inter;
|
|
31554
|
+
font-style: normal;
|
|
31555
|
+
font-weight: bold;
|
|
31556
|
+
font-size: 16px;
|
|
31557
|
+
line-height: 22px;
|
|
31388
31558
|
}
|
|
31389
|
-
|
|
31390
|
-
|
|
31559
|
+
|
|
31560
|
+
.h1phgmcq {
|
|
31561
|
+
font-family: Inter;
|
|
31562
|
+
font-style: normal;
|
|
31563
|
+
font-weight: normal;
|
|
31564
|
+
font-size: 16px;
|
|
31565
|
+
line-height: 22px;
|
|
31391
31566
|
}
|
|
31392
|
-
|
|
31393
|
-
|
|
31394
|
-
font-
|
|
31395
|
-
|
|
31396
|
-
|
|
31397
|
-
|
|
31398
|
-
|
|
31399
|
-
padding: 15px 8px 15px 8px;
|
|
31567
|
+
|
|
31568
|
+
.h173xnl1 {
|
|
31569
|
+
font-family: Inter;
|
|
31570
|
+
font-style: normal;
|
|
31571
|
+
font-weight: bold;
|
|
31572
|
+
font-size: 14px;
|
|
31573
|
+
line-height: 20px;
|
|
31400
31574
|
}
|
|
31401
|
-
|
|
31402
|
-
|
|
31403
|
-
|
|
31404
|
-
|
|
31405
|
-
|
|
31406
|
-
|
|
31407
|
-
|
|
31408
|
-
right: 0;
|
|
31575
|
+
|
|
31576
|
+
.hedm4pz {
|
|
31577
|
+
font-family: Inter;
|
|
31578
|
+
font-style: normal;
|
|
31579
|
+
font-weight: normal;
|
|
31580
|
+
font-size: 14px;
|
|
31581
|
+
line-height: 20px;
|
|
31409
31582
|
}
|
|
31410
|
-
|
|
31411
|
-
|
|
31583
|
+
|
|
31584
|
+
.h1kd8xld {
|
|
31585
|
+
font-family: Inter;
|
|
31586
|
+
font-style: normal;
|
|
31587
|
+
font-weight: bold;
|
|
31588
|
+
font-size: 12px;
|
|
31589
|
+
line-height: 18px;
|
|
31412
31590
|
}
|
|
31413
|
-
|
|
31414
|
-
|
|
31591
|
+
|
|
31592
|
+
.hp14fr {
|
|
31593
|
+
font-family: Inter;
|
|
31594
|
+
font-style: normal;
|
|
31595
|
+
font-weight: normal;
|
|
31596
|
+
font-size: 12px;
|
|
31597
|
+
line-height: 18px;
|
|
31415
31598
|
}
|
|
31416
|
-
|
|
31417
|
-
|
|
31418
|
-
|
|
31419
|
-
|
|
31420
|
-
|
|
31599
|
+
|
|
31600
|
+
.hgrg7mn {
|
|
31601
|
+
font-family: Inter;
|
|
31602
|
+
font-style: normal;
|
|
31603
|
+
font-weight: bold;
|
|
31604
|
+
text-transform: uppercase;
|
|
31605
|
+
font-feature-settings: "cpsp" on;
|
|
31606
|
+
font-size: 12px;
|
|
31607
|
+
line-height: 18px;
|
|
31421
31608
|
}
|
|
31422
|
-
|
|
31423
|
-
|
|
31424
|
-
|
|
31425
|
-
|
|
31609
|
+
|
|
31610
|
+
.h6zme9x {
|
|
31611
|
+
font-family: Inter;
|
|
31612
|
+
font-style: normal;
|
|
31613
|
+
font-weight: normal;
|
|
31614
|
+
text-transform: uppercase;
|
|
31615
|
+
font-feature-settings: "cpsp" on;
|
|
31616
|
+
font-size: 12px;
|
|
31617
|
+
line-height: 18px;
|
|
31426
31618
|
}
|
|
31427
|
-
|
|
31428
|
-
|
|
31619
|
+
|
|
31620
|
+
.locjvsv {
|
|
31621
|
+
font-family: Inter;
|
|
31622
|
+
font-style: normal;
|
|
31623
|
+
font-weight: normal;
|
|
31624
|
+
font-size: 16px;
|
|
31625
|
+
line-height: 24px;
|
|
31429
31626
|
}
|
|
31430
|
-
|
|
31431
|
-
|
|
31627
|
+
|
|
31628
|
+
.l13gi131 {
|
|
31629
|
+
font-family: Inter;
|
|
31630
|
+
font-style: normal;
|
|
31631
|
+
font-weight: bold;
|
|
31632
|
+
font-size: 16px;
|
|
31633
|
+
line-height: 24px;
|
|
31432
31634
|
}
|
|
31433
|
-
|
|
31434
|
-
|
|
31435
|
-
|
|
31436
|
-
|
|
31437
|
-
|
|
31438
|
-
|
|
31439
|
-
|
|
31440
|
-
transition: transform 320ms ease;
|
|
31635
|
+
|
|
31636
|
+
.l1ynemsu {
|
|
31637
|
+
font-family: Inter;
|
|
31638
|
+
font-style: normal;
|
|
31639
|
+
font-weight: normal;
|
|
31640
|
+
font-size: 16px;
|
|
31641
|
+
line-height: 24px;
|
|
31441
31642
|
}
|
|
31442
|
-
|
|
31443
|
-
|
|
31444
|
-
|
|
31643
|
+
|
|
31644
|
+
.l1cft1cx {
|
|
31645
|
+
font-family: Inter;
|
|
31646
|
+
font-style: normal;
|
|
31647
|
+
font-weight: bold;
|
|
31648
|
+
font-size: 16px;
|
|
31649
|
+
line-height: 24px;
|
|
31445
31650
|
}
|
|
31446
|
-
|
|
31447
|
-
|
|
31651
|
+
|
|
31652
|
+
.l17tqc8p {
|
|
31653
|
+
font-family: Inter;
|
|
31654
|
+
font-style: normal;
|
|
31655
|
+
font-weight: normal;
|
|
31656
|
+
text-transform: uppercase;
|
|
31657
|
+
font-feature-settings: "cpsp" on;
|
|
31658
|
+
font-size: 16px;
|
|
31659
|
+
line-height: 24px;
|
|
31448
31660
|
}
|
|
31449
|
-
|
|
31450
|
-
|
|
31661
|
+
|
|
31662
|
+
.l1j1e5w7 {
|
|
31663
|
+
font-family: Inter;
|
|
31664
|
+
font-style: normal;
|
|
31665
|
+
font-weight: bold;
|
|
31666
|
+
text-transform: uppercase;
|
|
31667
|
+
font-feature-settings: "cpsp" on;
|
|
31668
|
+
font-size: 16px;
|
|
31669
|
+
line-height: 24px;
|
|
31451
31670
|
}
|
|
31452
|
-
|
|
31453
|
-
|
|
31671
|
+
|
|
31672
|
+
.l1gf91jb {
|
|
31673
|
+
font-family: Inter;
|
|
31674
|
+
font-style: normal;
|
|
31675
|
+
font-weight: normal;
|
|
31676
|
+
font-size: 14px;
|
|
31677
|
+
line-height: 22px;
|
|
31454
31678
|
}
|
|
31455
|
-
|
|
31456
|
-
|
|
31679
|
+
|
|
31680
|
+
.lu7hlr6 {
|
|
31681
|
+
font-family: Inter;
|
|
31682
|
+
font-style: normal;
|
|
31683
|
+
font-weight: 500;
|
|
31684
|
+
font-size: 14px;
|
|
31685
|
+
line-height: 22px;
|
|
31457
31686
|
}
|
|
31458
|
-
|
|
31459
|
-
|
|
31687
|
+
|
|
31688
|
+
.l3l3jf0 {
|
|
31689
|
+
font-family: Inter;
|
|
31690
|
+
font-style: normal;
|
|
31691
|
+
font-weight: bold;
|
|
31692
|
+
font-size: 14px;
|
|
31693
|
+
line-height: 22px;
|
|
31460
31694
|
}
|
|
31461
|
-
|
|
31462
|
-
|
|
31695
|
+
|
|
31696
|
+
.l12j5nqp {
|
|
31697
|
+
font-family: Inter;
|
|
31698
|
+
font-style: normal;
|
|
31699
|
+
font-weight: normal;
|
|
31700
|
+
font-size: 14px;
|
|
31701
|
+
line-height: 22px;
|
|
31463
31702
|
}
|
|
31464
|
-
|
|
31465
|
-
|
|
31703
|
+
|
|
31704
|
+
.l1tecqht {
|
|
31705
|
+
font-family: Inter;
|
|
31706
|
+
font-style: normal;
|
|
31707
|
+
font-weight: bold;
|
|
31708
|
+
font-size: 14px;
|
|
31709
|
+
line-height: 22px;
|
|
31466
31710
|
}
|
|
31467
|
-
|
|
31468
|
-
|
|
31711
|
+
|
|
31712
|
+
.l6sa990 {
|
|
31713
|
+
font-family: Inter;
|
|
31714
|
+
font-style: normal;
|
|
31715
|
+
font-weight: normal;
|
|
31716
|
+
text-transform: uppercase;
|
|
31717
|
+
font-feature-settings: "cpsp" on;
|
|
31718
|
+
font-size: 14px;
|
|
31719
|
+
line-height: 22px;
|
|
31469
31720
|
}
|
|
31470
|
-
|
|
31471
|
-
|
|
31472
|
-
|
|
31473
|
-
|
|
31474
|
-
|
|
31721
|
+
|
|
31722
|
+
.lckqe8j {
|
|
31723
|
+
font-family: Inter;
|
|
31724
|
+
font-style: normal;
|
|
31725
|
+
font-weight: bold;
|
|
31726
|
+
text-transform: uppercase;
|
|
31727
|
+
font-feature-settings: "cpsp" on;
|
|
31728
|
+
font-size: 14px;
|
|
31729
|
+
line-height: 22px;
|
|
31475
31730
|
}
|
|
31476
|
-
|
|
31477
|
-
|
|
31731
|
+
|
|
31732
|
+
.l1kuminb {
|
|
31733
|
+
font-family: Inter;
|
|
31734
|
+
font-style: normal;
|
|
31735
|
+
font-weight: normal;
|
|
31736
|
+
font-size: 13px;
|
|
31737
|
+
line-height: 20px;
|
|
31478
31738
|
}
|
|
31479
|
-
|
|
31480
|
-
|
|
31739
|
+
|
|
31740
|
+
.l1pbuf5j {
|
|
31741
|
+
font-family: Inter;
|
|
31742
|
+
font-style: normal;
|
|
31743
|
+
font-weight: 600;
|
|
31744
|
+
font-size: 13px;
|
|
31745
|
+
line-height: 20px;
|
|
31481
31746
|
}
|
|
31482
|
-
|
|
31483
|
-
|
|
31747
|
+
|
|
31748
|
+
.l1r4ztu {
|
|
31749
|
+
font-family: Inter;
|
|
31750
|
+
font-style: normal;
|
|
31751
|
+
font-weight: bold;
|
|
31752
|
+
font-size: 13px;
|
|
31753
|
+
line-height: 20px;
|
|
31484
31754
|
}
|
|
31485
|
-
|
|
31486
|
-
|
|
31487
|
-
|
|
31488
|
-
|
|
31489
|
-
|
|
31490
|
-
|
|
31755
|
+
|
|
31756
|
+
.ly8vzok {
|
|
31757
|
+
font-family: Inter;
|
|
31758
|
+
font-style: normal;
|
|
31759
|
+
font-weight: normal;
|
|
31760
|
+
font-size: 13px;
|
|
31761
|
+
line-height: 20px;
|
|
31491
31762
|
}
|
|
31492
|
-
|
|
31493
|
-
.
|
|
31494
|
-
font-
|
|
31495
|
-
font-
|
|
31496
|
-
|
|
31763
|
+
|
|
31764
|
+
.lumfmf {
|
|
31765
|
+
font-family: Inter;
|
|
31766
|
+
font-style: normal;
|
|
31767
|
+
font-weight: 600;
|
|
31768
|
+
font-size: 13px;
|
|
31769
|
+
line-height: 20px;
|
|
31497
31770
|
}
|
|
31498
|
-
|
|
31499
|
-
|
|
31500
|
-
|
|
31501
|
-
|
|
31771
|
+
|
|
31772
|
+
.l16ujwmv {
|
|
31773
|
+
font-family: Inter;
|
|
31774
|
+
font-style: normal;
|
|
31775
|
+
font-weight: bold;
|
|
31776
|
+
font-size: 13px;
|
|
31777
|
+
line-height: 20px;
|
|
31502
31778
|
}
|
|
31503
|
-
|
|
31504
|
-
|
|
31505
|
-
|
|
31506
|
-
|
|
31507
|
-
|
|
31508
|
-
|
|
31779
|
+
|
|
31780
|
+
.l17o1ffr {
|
|
31781
|
+
font-family: Inter;
|
|
31782
|
+
font-style: normal;
|
|
31783
|
+
font-weight: normal;
|
|
31784
|
+
text-transform: uppercase;
|
|
31785
|
+
font-feature-settings: "cpsp" on;
|
|
31786
|
+
font-size: 13px;
|
|
31787
|
+
line-height: 20px;
|
|
31509
31788
|
}
|
|
31510
|
-
|
|
31511
|
-
|
|
31512
|
-
|
|
31513
|
-
|
|
31514
|
-
|
|
31515
|
-
|
|
31789
|
+
|
|
31790
|
+
.lngllvn {
|
|
31791
|
+
font-family: Inter;
|
|
31792
|
+
font-style: normal;
|
|
31793
|
+
font-weight: bold;
|
|
31794
|
+
text-transform: uppercase;
|
|
31795
|
+
font-feature-settings: "cpsp" on;
|
|
31796
|
+
font-size: 13px;
|
|
31797
|
+
line-height: 20px;
|
|
31516
31798
|
}
|
|
31517
|
-
|
|
31518
|
-
|
|
31799
|
+
|
|
31800
|
+
.l2i7fo9 {
|
|
31801
|
+
font-family: Inter;
|
|
31802
|
+
font-style: normal;
|
|
31803
|
+
font-weight: normal;
|
|
31804
|
+
font-size: 12px;
|
|
31805
|
+
line-height: 18px;
|
|
31519
31806
|
}
|
|
31520
31807
|
|
|
31521
|
-
.
|
|
31522
|
-
|
|
31808
|
+
.l1x7hscx {
|
|
31809
|
+
font-family: Inter;
|
|
31810
|
+
font-style: normal;
|
|
31811
|
+
font-weight: 500;
|
|
31812
|
+
font-size: 12px;
|
|
31813
|
+
line-height: 18px;
|
|
31523
31814
|
}
|
|
31524
31815
|
|
|
31525
|
-
.
|
|
31526
|
-
|
|
31816
|
+
.le1jwan {
|
|
31817
|
+
font-family: Inter;
|
|
31818
|
+
font-style: normal;
|
|
31819
|
+
font-weight: bold;
|
|
31820
|
+
font-size: 12px;
|
|
31527
31821
|
line-height: 18px;
|
|
31528
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31529
|
-
height: 34px;
|
|
31530
|
-
min-height: 34px;
|
|
31531
|
-
box-sizing: border-box;
|
|
31532
|
-
margin-top: 8px;
|
|
31533
31822
|
}
|
|
31534
31823
|
|
|
31535
|
-
.
|
|
31536
|
-
|
|
31537
|
-
|
|
31538
|
-
|
|
31539
|
-
|
|
31540
|
-
|
|
31824
|
+
.lyxynfj {
|
|
31825
|
+
font-family: Inter;
|
|
31826
|
+
font-style: normal;
|
|
31827
|
+
font-weight: normal;
|
|
31828
|
+
font-size: 12px;
|
|
31829
|
+
line-height: 18px;
|
|
31541
31830
|
}
|
|
31542
|
-
|
|
31543
|
-
|
|
31831
|
+
|
|
31832
|
+
.lpb2nxv {
|
|
31833
|
+
font-family: Inter;
|
|
31834
|
+
font-style: normal;
|
|
31835
|
+
font-weight: 500;
|
|
31836
|
+
font-size: 12px;
|
|
31837
|
+
line-height: 18px;
|
|
31544
31838
|
}
|
|
31545
|
-
|
|
31546
|
-
|
|
31839
|
+
|
|
31840
|
+
.l1r8o3vv {
|
|
31841
|
+
font-family: Inter;
|
|
31842
|
+
font-style: normal;
|
|
31843
|
+
font-weight: bold;
|
|
31844
|
+
font-size: 12px;
|
|
31845
|
+
line-height: 18px;
|
|
31547
31846
|
}
|
|
31548
|
-
|
|
31549
|
-
|
|
31847
|
+
|
|
31848
|
+
.lemnjy2 {
|
|
31849
|
+
font-family: Inter;
|
|
31850
|
+
font-style: normal;
|
|
31851
|
+
font-weight: normal;
|
|
31852
|
+
text-transform: uppercase;
|
|
31853
|
+
font-feature-settings: "cpsp" on;
|
|
31854
|
+
font-size: 12px;
|
|
31855
|
+
line-height: 18px;
|
|
31550
31856
|
}
|
|
31551
|
-
|
|
31552
|
-
|
|
31857
|
+
|
|
31858
|
+
.lrc42gb {
|
|
31859
|
+
font-family: Inter;
|
|
31860
|
+
font-style: normal;
|
|
31861
|
+
font-weight: bold;
|
|
31862
|
+
text-transform: uppercase;
|
|
31863
|
+
font-feature-settings: "cpsp" on;
|
|
31864
|
+
font-size: 12px;
|
|
31865
|
+
line-height: 18px;
|
|
31553
31866
|
}
|
|
31554
|
-
|
|
31555
|
-
|
|
31867
|
+
|
|
31868
|
+
.fqaz4mb {
|
|
31869
|
+
font-family: Inter;
|
|
31870
|
+
font-style: normal;
|
|
31871
|
+
font-weight: normal;
|
|
31872
|
+
font-size: 13px;
|
|
31873
|
+
line-height: 20px;
|
|
31556
31874
|
}
|
|
31557
|
-
|
|
31558
|
-
|
|
31875
|
+
|
|
31876
|
+
.f13we5o {
|
|
31877
|
+
font-family: Inter;
|
|
31878
|
+
font-style: normal;
|
|
31879
|
+
font-weight: normal;
|
|
31880
|
+
font-size: 13px;
|
|
31881
|
+
line-height: 20px;
|
|
31559
31882
|
}
|
|
31560
|
-
|
|
31561
|
-
|
|
31883
|
+
|
|
31884
|
+
.ffmjua2 {
|
|
31885
|
+
font-family: Inter;
|
|
31886
|
+
font-style: normal;
|
|
31887
|
+
font-weight: normal;
|
|
31888
|
+
font-size: 12px;
|
|
31889
|
+
line-height: 18px;
|
|
31562
31890
|
}
|
|
31563
|
-
|
|
31564
|
-
|
|
31565
|
-
|
|
31891
|
+
|
|
31892
|
+
.fz2mxw0 {
|
|
31893
|
+
font-family: Inter;
|
|
31894
|
+
font-style: normal;
|
|
31895
|
+
font-weight: normal;
|
|
31896
|
+
font-size: 12px;
|
|
31897
|
+
line-height: 18px;
|
|
31566
31898
|
}
|
|
31567
31899
|
|
|
31568
|
-
.
|
|
31569
|
-
|
|
31570
|
-
|
|
31571
|
-
|
|
31900
|
+
.t1ertzoh {
|
|
31901
|
+
font-family: Inter;
|
|
31902
|
+
font-style: normal;
|
|
31903
|
+
font-weight: normal;
|
|
31904
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31905
|
+
font-size: 13px;
|
|
31572
31906
|
line-height: 20px;
|
|
31573
31907
|
}
|
|
31574
|
-
|
|
31575
|
-
|
|
31576
|
-
|
|
31577
|
-
|
|
31908
|
+
|
|
31909
|
+
.t19bge8r {
|
|
31910
|
+
font-family: Inter;
|
|
31911
|
+
font-style: normal;
|
|
31912
|
+
font-weight: normal;
|
|
31913
|
+
font-feature-settings: "zero" on;
|
|
31914
|
+
font-size: 13px;
|
|
31915
|
+
line-height: 20px;
|
|
31578
31916
|
}
|
|
31579
31917
|
|
|
31580
|
-
.
|
|
31581
|
-
|
|
31582
|
-
|
|
31583
|
-
|
|
31584
|
-
|
|
31918
|
+
.tjrzfyl {
|
|
31919
|
+
font-family: Inter;
|
|
31920
|
+
font-style: normal;
|
|
31921
|
+
font-weight: normal;
|
|
31922
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31923
|
+
font-size: 12px;
|
|
31585
31924
|
line-height: 18px;
|
|
31586
|
-
margin-top: 2px;
|
|
31587
31925
|
}
|
|
31588
31926
|
|
|
31589
|
-
.
|
|
31590
|
-
|
|
31591
|
-
|
|
31592
|
-
|
|
31927
|
+
.tm6s7bo {
|
|
31928
|
+
font-family: Inter;
|
|
31929
|
+
font-style: normal;
|
|
31930
|
+
font-weight: 500;
|
|
31931
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31932
|
+
font-size: 12px;
|
|
31933
|
+
line-height: 18px;
|
|
31593
31934
|
}
|
|
31594
31935
|
|
|
31595
|
-
.
|
|
31596
|
-
|
|
31597
|
-
|
|
31598
|
-
|
|
31599
|
-
|
|
31936
|
+
.t19zq6ic {
|
|
31937
|
+
font-family: Inter;
|
|
31938
|
+
font-style: normal;
|
|
31939
|
+
font-weight: normal;
|
|
31940
|
+
font-feature-settings: "zero" on;
|
|
31941
|
+
font-size: 12px;
|
|
31942
|
+
line-height: 18px;
|
|
31600
31943
|
}
|
|
31601
31944
|
|
|
31602
|
-
.
|
|
31603
|
-
|
|
31945
|
+
.t1gduru8 {
|
|
31946
|
+
font-family: Inter;
|
|
31947
|
+
font-style: normal;
|
|
31948
|
+
font-weight: 500;
|
|
31949
|
+
font-feature-settings: "zero" on;
|
|
31950
|
+
font-size: 12px;
|
|
31951
|
+
line-height: 18px;
|
|
31604
31952
|
}
|
|
31605
|
-
|
|
31953
|
+
|
|
31954
|
+
.t55raab {
|
|
31955
|
+
font-family: Inter;
|
|
31956
|
+
font-style: normal;
|
|
31957
|
+
font-weight: bold;
|
|
31958
|
+
font-feature-settings: "zero" on;
|
|
31606
31959
|
font-size: 16px;
|
|
31607
|
-
|
|
31608
|
-
font-weight: 700;
|
|
31609
|
-
line-height: 32px;
|
|
31610
|
-
}
|
|
31611
|
-
.c1uzzomf .card-body {
|
|
31612
|
-
padding: 24px;
|
|
31613
|
-
border-radius: 8px;
|
|
31614
|
-
background: #fff;
|
|
31960
|
+
line-height: 24px;
|
|
31615
31961
|
}
|
|
31616
|
-
|
|
31617
|
-
|
|
31618
|
-
font-
|
|
31619
|
-
|
|
31620
|
-
|
|
31621
|
-
|
|
31962
|
+
|
|
31963
|
+
.u1w9abfe {
|
|
31964
|
+
font-family: Inter;
|
|
31965
|
+
font-style: normal;
|
|
31966
|
+
font-weight: normal;
|
|
31967
|
+
font-size: 10px;
|
|
31968
|
+
line-height: 12px;
|
|
31622
31969
|
}
|
|
31623
31970
|
|
|
31624
31971
|
.c18gxmrl {
|
|
@@ -31657,11 +32004,26 @@ input.rrg1fkn.ant-input {
|
|
|
31657
32004
|
color: #005ed1;
|
|
31658
32005
|
}
|
|
31659
32006
|
|
|
31660
|
-
.
|
|
31661
|
-
|
|
31662
|
-
|
|
31663
|
-
|
|
31664
|
-
|
|
32007
|
+
.c1uzzomf {
|
|
32008
|
+
margin-bottom: 16px;
|
|
32009
|
+
}
|
|
32010
|
+
.c1uzzomf .card-title {
|
|
32011
|
+
font-size: 16px;
|
|
32012
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32013
|
+
font-weight: 700;
|
|
32014
|
+
line-height: 32px;
|
|
32015
|
+
}
|
|
32016
|
+
.c1uzzomf .card-body {
|
|
32017
|
+
padding: 24px;
|
|
32018
|
+
border-radius: 8px;
|
|
32019
|
+
background: #fff;
|
|
32020
|
+
}
|
|
32021
|
+
.c1uzzomf .empty {
|
|
32022
|
+
font-weight: 700;
|
|
32023
|
+
font-size: 14px;
|
|
32024
|
+
line-height: 22px;
|
|
32025
|
+
color: rgba(0, 21, 64, 0.3);
|
|
32026
|
+
text-align: center;
|
|
31665
32027
|
}
|
|
31666
32028
|
|
|
31667
32029
|
.m15dvk92 {
|
|
@@ -31677,6 +32039,42 @@ input.rrg1fkn.ant-input {
|
|
|
31677
32039
|
width: 100%;
|
|
31678
32040
|
}
|
|
31679
32041
|
|
|
32042
|
+
.tje3huy {
|
|
32043
|
+
width: 100%;
|
|
32044
|
+
overflow: inherit;
|
|
32045
|
+
white-space: inherit;
|
|
32046
|
+
text-overflow: ellipsis;
|
|
32047
|
+
}
|
|
32048
|
+
|
|
32049
|
+
.c10crapj {
|
|
32050
|
+
border-radius: 8px;
|
|
32051
|
+
}
|
|
32052
|
+
.c10crapj .ant-card-body {
|
|
32053
|
+
padding: 20px 24px 24px 24px;
|
|
32054
|
+
}
|
|
32055
|
+
|
|
32056
|
+
.cav9p2m .ant-collapse-item {
|
|
32057
|
+
border: 0px;
|
|
32058
|
+
background-color: #fff;
|
|
32059
|
+
}
|
|
32060
|
+
.cav9p2m .ant-collapse-item .ant-collapse-header {
|
|
32061
|
+
padding-top: 0px;
|
|
32062
|
+
padding-bottom: 0px;
|
|
32063
|
+
padding-left: 0px !important;
|
|
32064
|
+
padding-right: 24px;
|
|
32065
|
+
}
|
|
32066
|
+
.cav9p2m .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
32067
|
+
right: 0px;
|
|
32068
|
+
}
|
|
32069
|
+
.cav9p2m .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
32070
|
+
padding: 0px;
|
|
32071
|
+
}
|
|
32072
|
+
|
|
32073
|
+
.csf0p6c .ant-collapse-item .ant-collapse-header {
|
|
32074
|
+
padding-right: 0px;
|
|
32075
|
+
cursor: default;
|
|
32076
|
+
}
|
|
32077
|
+
|
|
31680
32078
|
.c198s9j3 {
|
|
31681
32079
|
color: #2d3a56;
|
|
31682
32080
|
line-height: 22px;
|
|
@@ -31748,33 +32146,13 @@ input.rrg1fkn.ant-input {
|
|
|
31748
32146
|
margin-left: 24px;
|
|
31749
32147
|
}
|
|
31750
32148
|
|
|
31751
|
-
.
|
|
31752
|
-
|
|
31753
|
-
|
|
31754
|
-
.c10crapj .ant-card-body {
|
|
31755
|
-
padding: 20px 24px 24px 24px;
|
|
31756
|
-
}
|
|
31757
|
-
|
|
31758
|
-
.cav9p2m .ant-collapse-item {
|
|
31759
|
-
border: 0px;
|
|
31760
|
-
background-color: #fff;
|
|
31761
|
-
}
|
|
31762
|
-
.cav9p2m .ant-collapse-item .ant-collapse-header {
|
|
31763
|
-
padding-top: 0px;
|
|
31764
|
-
padding-bottom: 0px;
|
|
31765
|
-
padding-left: 0px !important;
|
|
31766
|
-
padding-right: 24px;
|
|
31767
|
-
}
|
|
31768
|
-
.cav9p2m .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
31769
|
-
right: 0px;
|
|
31770
|
-
}
|
|
31771
|
-
.cav9p2m .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
31772
|
-
padding: 0px;
|
|
32149
|
+
.o8ocss1 {
|
|
32150
|
+
overflow: hidden;
|
|
32151
|
+
text-overflow: ellipsis;
|
|
31773
32152
|
}
|
|
31774
32153
|
|
|
31775
|
-
.
|
|
31776
|
-
|
|
31777
|
-
cursor: default;
|
|
32154
|
+
.n17syc35 {
|
|
32155
|
+
white-space: nowrap;
|
|
31778
32156
|
}
|
|
31779
32157
|
|
|
31780
32158
|
.n3qomhu {
|
|
@@ -31789,19 +32167,6 @@ input.rrg1fkn.ant-input {
|
|
|
31789
32167
|
word-break: break-all;
|
|
31790
32168
|
}
|
|
31791
32169
|
|
|
31792
|
-
.o8ocss1 {
|
|
31793
|
-
overflow: hidden;
|
|
31794
|
-
text-overflow: ellipsis;
|
|
31795
|
-
}
|
|
31796
|
-
|
|
31797
|
-
.n17syc35 {
|
|
31798
|
-
white-space: nowrap;
|
|
31799
|
-
}
|
|
31800
|
-
|
|
31801
|
-
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
31802
|
-
display: flex;
|
|
31803
|
-
}
|
|
31804
|
-
|
|
31805
32170
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
31806
32171
|
border-radius: 6px;
|
|
31807
32172
|
}
|
|
@@ -31859,6 +32224,10 @@ input.rrg1fkn.ant-input {
|
|
|
31859
32224
|
transform: rotate(180deg);
|
|
31860
32225
|
}
|
|
31861
32226
|
|
|
32227
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32228
|
+
display: flex;
|
|
32229
|
+
}
|
|
32230
|
+
|
|
31862
32231
|
.igz4le8 {
|
|
31863
32232
|
height: 24px;
|
|
31864
32233
|
width: 56px !important;
|
|
@@ -31947,88 +32316,6 @@ input.rrg1fkn.ant-input {
|
|
|
31947
32316
|
margin-right: 4px;
|
|
31948
32317
|
}
|
|
31949
32318
|
|
|
31950
|
-
.s1uupxds {
|
|
31951
|
-
padding: 0 8px;
|
|
31952
|
-
border-radius: 4px;
|
|
31953
|
-
}
|
|
31954
|
-
|
|
31955
|
-
.m10sqwut {
|
|
31956
|
-
padding: 2px 8px;
|
|
31957
|
-
border-radius: 3px;
|
|
31958
|
-
}
|
|
31959
|
-
|
|
31960
|
-
.l1d492wb {
|
|
31961
|
-
padding: 3px 8px;
|
|
31962
|
-
border-radius: 2px;
|
|
31963
|
-
}
|
|
31964
|
-
|
|
31965
|
-
.t1lzavmu.ant-tag:hover {
|
|
31966
|
-
opacity: unset;
|
|
31967
|
-
}
|
|
31968
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
31969
|
-
margin: 0;
|
|
31970
|
-
margin-right: 8px;
|
|
31971
|
-
display: inline-flex;
|
|
31972
|
-
align-items: center;
|
|
31973
|
-
border: none;
|
|
31974
|
-
}
|
|
31975
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
31976
|
-
width: 16px;
|
|
31977
|
-
height: 16px;
|
|
31978
|
-
color: inherit;
|
|
31979
|
-
margin-left: 4px;
|
|
31980
|
-
opacity: 0.6;
|
|
31981
|
-
display: inline-flex;
|
|
31982
|
-
}
|
|
31983
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
31984
|
-
opacity: 1;
|
|
31985
|
-
}
|
|
31986
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
31987
|
-
color: #0080ff;
|
|
31988
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
31989
|
-
}
|
|
31990
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
31991
|
-
color: #f0483e;
|
|
31992
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
31993
|
-
}
|
|
31994
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
31995
|
-
color: #e07f00;
|
|
31996
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
31997
|
-
}
|
|
31998
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
31999
|
-
color: #008f4c;
|
|
32000
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
32001
|
-
}
|
|
32002
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
32003
|
-
color: #1d326c;
|
|
32004
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
32005
|
-
}
|
|
32006
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
32007
|
-
color: #7E41FF;
|
|
32008
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
32009
|
-
}
|
|
32010
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
32011
|
-
color: #fff;
|
|
32012
|
-
}
|
|
32013
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
32014
|
-
background-color: #f0483e;
|
|
32015
|
-
}
|
|
32016
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
32017
|
-
background-color: #fea008;
|
|
32018
|
-
}
|
|
32019
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
32020
|
-
background-color: #00ba5d;
|
|
32021
|
-
}
|
|
32022
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
32023
|
-
background-color: #0080ff;
|
|
32024
|
-
}
|
|
32025
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32026
|
-
background-color: #6b7d99;
|
|
32027
|
-
}
|
|
32028
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32029
|
-
background-color: #7E41FF;
|
|
32030
|
-
}
|
|
32031
|
-
|
|
32032
32319
|
.m1thnes4 {
|
|
32033
32320
|
color: rgba(44, 56, 82, 0.6);
|
|
32034
32321
|
text-align: center;
|
|
@@ -32179,64 +32466,97 @@ input.rrg1fkn.ant-input {
|
|
|
32179
32466
|
font-size: 12px;
|
|
32180
32467
|
padding: 3px 6px;
|
|
32181
32468
|
}
|
|
32182
|
-
.t1kgldps:first-child {
|
|
32183
|
-
padding-top: 3px;
|
|
32469
|
+
.t1kgldps:first-child {
|
|
32470
|
+
padding-top: 3px;
|
|
32471
|
+
}
|
|
32472
|
+
.t1kgldps:last-child {
|
|
32473
|
+
padding-bottom: 3px;
|
|
32474
|
+
}
|
|
32475
|
+
.t1kgldps .column-value {
|
|
32476
|
+
color: #fff;
|
|
32477
|
+
margin-left: 8px;
|
|
32478
|
+
}
|
|
32479
|
+
|
|
32480
|
+
.s1uupxds {
|
|
32481
|
+
padding: 0 8px;
|
|
32482
|
+
border-radius: 4px;
|
|
32483
|
+
}
|
|
32484
|
+
|
|
32485
|
+
.m10sqwut {
|
|
32486
|
+
padding: 2px 8px;
|
|
32487
|
+
border-radius: 3px;
|
|
32488
|
+
}
|
|
32489
|
+
|
|
32490
|
+
.l1d492wb {
|
|
32491
|
+
padding: 3px 8px;
|
|
32492
|
+
border-radius: 2px;
|
|
32493
|
+
}
|
|
32494
|
+
|
|
32495
|
+
.t1lzavmu.ant-tag:hover {
|
|
32496
|
+
opacity: unset;
|
|
32497
|
+
}
|
|
32498
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
32499
|
+
margin: 0;
|
|
32500
|
+
margin-right: 8px;
|
|
32501
|
+
display: inline-flex;
|
|
32502
|
+
align-items: center;
|
|
32503
|
+
border: none;
|
|
32504
|
+
}
|
|
32505
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
32506
|
+
width: 16px;
|
|
32507
|
+
height: 16px;
|
|
32508
|
+
color: inherit;
|
|
32509
|
+
margin-left: 4px;
|
|
32510
|
+
opacity: 0.6;
|
|
32511
|
+
display: inline-flex;
|
|
32512
|
+
}
|
|
32513
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
32514
|
+
opacity: 1;
|
|
32515
|
+
}
|
|
32516
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
32517
|
+
color: #0080ff;
|
|
32518
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32519
|
+
}
|
|
32520
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
32521
|
+
color: #f0483e;
|
|
32522
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
32523
|
+
}
|
|
32524
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
32525
|
+
color: #e07f00;
|
|
32526
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
32184
32527
|
}
|
|
32185
|
-
.
|
|
32186
|
-
|
|
32528
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
32529
|
+
color: #008f4c;
|
|
32530
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
32187
32531
|
}
|
|
32188
|
-
.
|
|
32532
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
32533
|
+
color: #1d326c;
|
|
32534
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32535
|
+
}
|
|
32536
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
32537
|
+
color: #7E41FF;
|
|
32538
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
32539
|
+
}
|
|
32540
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
32189
32541
|
color: #fff;
|
|
32190
|
-
margin-left: 8px;
|
|
32191
32542
|
}
|
|
32192
|
-
|
|
32193
|
-
|
|
32194
|
-
width: 64px;
|
|
32195
|
-
height: 64px;
|
|
32196
|
-
display: flex;
|
|
32197
|
-
align-items: center;
|
|
32198
|
-
justify-content: center;
|
|
32199
|
-
position: relative;
|
|
32200
|
-
opacity: 0.2;
|
|
32543
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
32544
|
+
background-color: #f0483e;
|
|
32201
32545
|
}
|
|
32202
|
-
|
|
32203
|
-
|
|
32204
|
-
position: absolute;
|
|
32205
|
-
width: 5px;
|
|
32206
|
-
height: 48px;
|
|
32207
|
-
left: 9.33px;
|
|
32208
|
-
top: 40.5px;
|
|
32209
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32210
|
-
border-radius: 5px;
|
|
32211
|
-
transform: rotate(-128deg);
|
|
32212
|
-
transform-origin: top left;
|
|
32213
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
32546
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
32547
|
+
background-color: #fea008;
|
|
32214
32548
|
}
|
|
32215
|
-
|
|
32216
|
-
|
|
32217
|
-
position: absolute;
|
|
32218
|
-
width: 5px;
|
|
32219
|
-
height: 48px;
|
|
32220
|
-
left: 40.8px;
|
|
32221
|
-
top: 8.4px;
|
|
32222
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32223
|
-
border-radius: 5px;
|
|
32224
|
-
transform: rotate(-8deg);
|
|
32225
|
-
transform-origin: top left;
|
|
32226
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
32549
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
32550
|
+
background-color: #00ba5d;
|
|
32227
32551
|
}
|
|
32228
|
-
|
|
32229
|
-
|
|
32230
|
-
|
|
32231
|
-
|
|
32232
|
-
|
|
32233
|
-
|
|
32234
|
-
|
|
32235
|
-
background:
|
|
32236
|
-
border-radius: 5px;
|
|
32237
|
-
transform: rotate(112deg);
|
|
32238
|
-
transform-origin: top left;
|
|
32239
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
32552
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
32553
|
+
background-color: #0080ff;
|
|
32554
|
+
}
|
|
32555
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32556
|
+
background-color: #6b7d99;
|
|
32557
|
+
}
|
|
32558
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32559
|
+
background-color: #7E41FF;
|
|
32240
32560
|
}
|
|
32241
32561
|
|
|
32242
32562
|
.sq6vos1 {
|
|
@@ -32454,10 +32774,6 @@ input.rrg1fkn.ant-input {
|
|
|
32454
32774
|
background: rgba(163, 180, 204, 0.18);
|
|
32455
32775
|
}
|
|
32456
32776
|
|
|
32457
|
-
.c1k4vanq {
|
|
32458
|
-
padding: 0 12px 14px 12px;
|
|
32459
|
-
}
|
|
32460
|
-
|
|
32461
32777
|
.c1udgdh2 {
|
|
32462
32778
|
color: #2d3a56;
|
|
32463
32779
|
padding: 7px 12px;
|
|
@@ -32498,6 +32814,10 @@ input.rrg1fkn.ant-input {
|
|
|
32498
32814
|
margin-right: 2px;
|
|
32499
32815
|
}
|
|
32500
32816
|
|
|
32817
|
+
.c1k4vanq {
|
|
32818
|
+
padding: 0 12px 14px 12px;
|
|
32819
|
+
}
|
|
32820
|
+
|
|
32501
32821
|
.bab9xum {
|
|
32502
32822
|
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14), 0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447), 0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224), 0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253), 0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07), 0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747), 0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776), 0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
32503
32823
|
}
|
|
@@ -32562,6 +32882,92 @@ input.rrg1fkn.ant-input {
|
|
|
32562
32882
|
min-height: 0px;
|
|
32563
32883
|
}
|
|
32564
32884
|
|
|
32885
|
+
.at4ovwe .ant-input-number-handler-wrap {
|
|
32886
|
+
display: var(--at4ovwe-0);
|
|
32887
|
+
}
|
|
32888
|
+
.at4ovwe .ant-input-number-input-wrap {
|
|
32889
|
+
padding: 5px 12px;
|
|
32890
|
+
display: inline-flex;
|
|
32891
|
+
line-height: 1.5715;
|
|
32892
|
+
height: 100%;
|
|
32893
|
+
width: 100%;
|
|
32894
|
+
}
|
|
32895
|
+
.at4ovwe .ant-input-number-input-wrap::after {
|
|
32896
|
+
content: var(--at4ovwe-1);
|
|
32897
|
+
display: var(--at4ovwe-2);
|
|
32898
|
+
flex: none;
|
|
32899
|
+
align-items: center;
|
|
32900
|
+
margin-left: 4px;
|
|
32901
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32902
|
+
}
|
|
32903
|
+
.at4ovwe .ant-input-number-input-wrap::before {
|
|
32904
|
+
content: var(--at4ovwe-3);
|
|
32905
|
+
display: var(--at4ovwe-4);
|
|
32906
|
+
flex: none;
|
|
32907
|
+
align-items: center;
|
|
32908
|
+
margin-right: 4px;
|
|
32909
|
+
cursor: auto;
|
|
32910
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32911
|
+
}
|
|
32912
|
+
.ant-input-group.ant-input-group-compact > .at4ovwe {
|
|
32913
|
+
border-radius: 0;
|
|
32914
|
+
}
|
|
32915
|
+
.at4ovwe.ant-input-number {
|
|
32916
|
+
width: 100%;
|
|
32917
|
+
border-radius: 6px;
|
|
32918
|
+
}
|
|
32919
|
+
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
32920
|
+
border-color: #0096ff;
|
|
32921
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
32922
|
+
z-index: 1;
|
|
32923
|
+
}
|
|
32924
|
+
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
32925
|
+
border-color: #e75a3a;
|
|
32926
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
32927
|
+
}
|
|
32928
|
+
.at4ovwe .ant-input-number-input {
|
|
32929
|
+
padding: 0;
|
|
32930
|
+
margin: 0;
|
|
32931
|
+
height: auto;
|
|
32932
|
+
font-size: inherit;
|
|
32933
|
+
}
|
|
32934
|
+
|
|
32935
|
+
.iwsze0q {
|
|
32936
|
+
margin-right: 4px;
|
|
32937
|
+
height: 16px;
|
|
32938
|
+
}
|
|
32939
|
+
|
|
32940
|
+
.a6dbbkm .ant-input-number-handler-wrap {
|
|
32941
|
+
display: var(--a6dbbkm-0);
|
|
32942
|
+
}
|
|
32943
|
+
.a6dbbkm .ant-input-number-input-wrap {
|
|
32944
|
+
padding: 4px 11px;
|
|
32945
|
+
display: inline-flex;
|
|
32946
|
+
line-height: 1.5715;
|
|
32947
|
+
height: inherit;
|
|
32948
|
+
}
|
|
32949
|
+
.a6dbbkm .ant-input-number-input-wrap::after {
|
|
32950
|
+
content: var(--a6dbbkm-1);
|
|
32951
|
+
display: var(--a6dbbkm-2);
|
|
32952
|
+
flex: none;
|
|
32953
|
+
align-items: center;
|
|
32954
|
+
margin-left: 4px;
|
|
32955
|
+
}
|
|
32956
|
+
.a6dbbkm .ant-input-number-input-wrap::before {
|
|
32957
|
+
content: var(--a6dbbkm-3);
|
|
32958
|
+
display: var(--a6dbbkm-4);
|
|
32959
|
+
flex: none;
|
|
32960
|
+
align-items: center;
|
|
32961
|
+
margin-right: 4px;
|
|
32962
|
+
cursor: auto;
|
|
32963
|
+
}
|
|
32964
|
+
.a6dbbkm .ant-input-number-input {
|
|
32965
|
+
padding: 0;
|
|
32966
|
+
margin: 0;
|
|
32967
|
+
height: auto;
|
|
32968
|
+
font-size: inherit;
|
|
32969
|
+
}
|
|
32970
|
+
|
|
32565
32971
|
.tc40oxa {
|
|
32566
32972
|
margin-bottom: 4px;
|
|
32567
32973
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -32755,56 +33161,6 @@ input.rrg1fkn.ant-input {
|
|
|
32755
33161
|
margin-right: 8px;
|
|
32756
33162
|
}
|
|
32757
33163
|
|
|
32758
|
-
.at4ovwe .ant-input-number-handler-wrap {
|
|
32759
|
-
display: var(--at4ovwe-0);
|
|
32760
|
-
}
|
|
32761
|
-
.at4ovwe .ant-input-number-input-wrap {
|
|
32762
|
-
padding: 5px 12px;
|
|
32763
|
-
display: inline-flex;
|
|
32764
|
-
line-height: 1.5715;
|
|
32765
|
-
height: 100%;
|
|
32766
|
-
width: 100%;
|
|
32767
|
-
}
|
|
32768
|
-
.at4ovwe .ant-input-number-input-wrap::after {
|
|
32769
|
-
content: var(--at4ovwe-1);
|
|
32770
|
-
display: var(--at4ovwe-2);
|
|
32771
|
-
flex: none;
|
|
32772
|
-
align-items: center;
|
|
32773
|
-
margin-left: 4px;
|
|
32774
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32775
|
-
}
|
|
32776
|
-
.at4ovwe .ant-input-number-input-wrap::before {
|
|
32777
|
-
content: var(--at4ovwe-3);
|
|
32778
|
-
display: var(--at4ovwe-4);
|
|
32779
|
-
flex: none;
|
|
32780
|
-
align-items: center;
|
|
32781
|
-
margin-right: 4px;
|
|
32782
|
-
cursor: auto;
|
|
32783
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32784
|
-
}
|
|
32785
|
-
.ant-input-group.ant-input-group-compact > .at4ovwe {
|
|
32786
|
-
border-radius: 0;
|
|
32787
|
-
}
|
|
32788
|
-
.at4ovwe.ant-input-number {
|
|
32789
|
-
width: 100%;
|
|
32790
|
-
border-radius: 6px;
|
|
32791
|
-
}
|
|
32792
|
-
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
32793
|
-
border-color: #0096ff;
|
|
32794
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
32795
|
-
z-index: 1;
|
|
32796
|
-
}
|
|
32797
|
-
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
32798
|
-
border-color: #e75a3a;
|
|
32799
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
32800
|
-
}
|
|
32801
|
-
.at4ovwe .ant-input-number-input {
|
|
32802
|
-
padding: 0;
|
|
32803
|
-
margin: 0;
|
|
32804
|
-
height: auto;
|
|
32805
|
-
font-size: inherit;
|
|
32806
|
-
}
|
|
32807
|
-
|
|
32808
33164
|
.w1xcixj5.outside-tag {
|
|
32809
33165
|
padding-left: 0;
|
|
32810
33166
|
}
|
|
@@ -32814,11 +33170,6 @@ input.rrg1fkn.ant-input {
|
|
|
32814
33170
|
margin-right: 4px;
|
|
32815
33171
|
}
|
|
32816
33172
|
|
|
32817
|
-
.iwsze0q {
|
|
32818
|
-
margin-right: 4px;
|
|
32819
|
-
height: 16px;
|
|
32820
|
-
}
|
|
32821
|
-
|
|
32822
33173
|
.sut42l0 {
|
|
32823
33174
|
padding: 0 8px;
|
|
32824
33175
|
height: 18px;
|
|
@@ -32838,37 +33189,6 @@ input.rrg1fkn.ant-input {
|
|
|
32838
33189
|
height: 16px;
|
|
32839
33190
|
}
|
|
32840
33191
|
|
|
32841
|
-
.a6dbbkm .ant-input-number-handler-wrap {
|
|
32842
|
-
display: var(--a6dbbkm-0);
|
|
32843
|
-
}
|
|
32844
|
-
.a6dbbkm .ant-input-number-input-wrap {
|
|
32845
|
-
padding: 4px 11px;
|
|
32846
|
-
display: inline-flex;
|
|
32847
|
-
line-height: 1.5715;
|
|
32848
|
-
height: inherit;
|
|
32849
|
-
}
|
|
32850
|
-
.a6dbbkm .ant-input-number-input-wrap::after {
|
|
32851
|
-
content: var(--a6dbbkm-1);
|
|
32852
|
-
display: var(--a6dbbkm-2);
|
|
32853
|
-
flex: none;
|
|
32854
|
-
align-items: center;
|
|
32855
|
-
margin-left: 4px;
|
|
32856
|
-
}
|
|
32857
|
-
.a6dbbkm .ant-input-number-input-wrap::before {
|
|
32858
|
-
content: var(--a6dbbkm-3);
|
|
32859
|
-
display: var(--a6dbbkm-4);
|
|
32860
|
-
flex: none;
|
|
32861
|
-
align-items: center;
|
|
32862
|
-
margin-right: 4px;
|
|
32863
|
-
cursor: auto;
|
|
32864
|
-
}
|
|
32865
|
-
.a6dbbkm .ant-input-number-input {
|
|
32866
|
-
padding: 0;
|
|
32867
|
-
margin: 0;
|
|
32868
|
-
height: auto;
|
|
32869
|
-
font-size: inherit;
|
|
32870
|
-
}
|
|
32871
|
-
|
|
32872
33192
|
.feau332.ant-form-item {
|
|
32873
33193
|
margin-bottom: 0;
|
|
32874
33194
|
}
|