@cloudtower/eagle 0.31.16 → 0.31.17
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/cjs/core/Fields/FieldsEnum/index.js +1 -1
- package/dist/cjs/core/LegacySelect/index.js +185 -0
- package/dist/cjs/core/LegacySelect/select.style.js +5 -0
- package/dist/cjs/core/Select/index.js +106 -117
- package/dist/cjs/core/Select/select.style.js +11 -0
- package/dist/cjs/core/Select/select.widgets.js +63 -0
- package/dist/cjs/core/TimeZoneSelect/index.js +1 -1
- package/dist/cjs/core/index.js +9 -9
- package/dist/cjs/index.js +185 -181
- package/dist/cjs/legacy-antd.js +137 -135
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1582 -1399
- package/dist/esm/core/Fields/FieldsEnum/index.js +4 -4
- package/dist/esm/core/LegacySelect/index.js +177 -0
- package/dist/esm/core/LegacySelect/select.style.js +3 -0
- package/dist/esm/core/Select/index.js +104 -116
- package/dist/esm/core/Select/select.style.js +6 -0
- package/dist/esm/core/Select/select.widgets.js +57 -0
- package/dist/esm/core/TimeZoneSelect/index.js +2 -2
- package/dist/esm/index.js +5 -3
- package/dist/esm/legacy-antd.js +2 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/LegacySelect/index.d.ts +4 -0
- package/dist/src/core/LegacySelect/select.style.d.ts +1 -0
- package/dist/src/core/LegacySelect/select.type.d.ts +31 -0
- package/dist/src/core/Select/index.d.ts +1 -0
- package/dist/src/core/Select/select.style.d.ts +4 -0
- package/dist/src/core/Select/select.type.d.ts +6 -30
- package/dist/src/core/Select/select.widgets.d.ts +7 -0
- package/dist/src/core/index.d.ts +4 -2
- package/dist/src/spec/base.d.ts +2 -1
- package/dist/stories/docs/core/{Select.Simple.stories.d.ts → LegacySelect.Simple.stories.d.ts} +3 -3
- package/dist/stories/docs/core/LegacySelect.stories.d.ts +16 -0
- package/dist/style.css +1358 -1206
- package/package.json +4 -4
package/dist/style.css
CHANGED
|
@@ -29558,6 +29558,19 @@ html body {
|
|
|
29558
29558
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
29559
29559
|
}
|
|
29560
29560
|
}
|
|
29561
|
+
.E_skwah65 {
|
|
29562
|
+
height: 8px;
|
|
29563
|
+
box-sizing: border-box;
|
|
29564
|
+
border-radius: 2px;
|
|
29565
|
+
background: #f5f7fa;
|
|
29566
|
+
display: flex;
|
|
29567
|
+
width: 100%;
|
|
29568
|
+
overflow: hidden;
|
|
29569
|
+
}
|
|
29570
|
+
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
29571
|
+
margin-left: 1px;
|
|
29572
|
+
}
|
|
29573
|
+
|
|
29561
29574
|
.E_c18bcrac {
|
|
29562
29575
|
display: inline-block;
|
|
29563
29576
|
width: 100%;
|
|
@@ -29605,130 +29618,6 @@ html body {
|
|
|
29605
29618
|
margin-right: 4px;
|
|
29606
29619
|
}
|
|
29607
29620
|
|
|
29608
|
-
.E_s1ebs0ra {
|
|
29609
|
-
display: flex;
|
|
29610
|
-
align-items: center;
|
|
29611
|
-
justify-content: space-between;
|
|
29612
|
-
background: #edf0f7;
|
|
29613
|
-
padding: 8px 12px;
|
|
29614
|
-
position: sticky;
|
|
29615
|
-
top: 0;
|
|
29616
|
-
z-index: 1;
|
|
29617
|
-
margin-bottom: -52px;
|
|
29618
|
-
}
|
|
29619
|
-
.E_s1ebs0ra .select-total {
|
|
29620
|
-
display: flex;
|
|
29621
|
-
align-items: center;
|
|
29622
|
-
font-weight: 700;
|
|
29623
|
-
flex-shrink: 0;
|
|
29624
|
-
}
|
|
29625
|
-
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
29626
|
-
cursor: pointer;
|
|
29627
|
-
margin-left: 8px;
|
|
29628
|
-
width: 32px;
|
|
29629
|
-
height: 32px;
|
|
29630
|
-
border-radius: 50%;
|
|
29631
|
-
justify-content: center;
|
|
29632
|
-
}
|
|
29633
|
-
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
29634
|
-
background: rgba(225, 230, 241, 0.6);
|
|
29635
|
-
}
|
|
29636
|
-
.E_s1ebs0ra .action-group {
|
|
29637
|
-
flex: 1;
|
|
29638
|
-
margin-left: 88px;
|
|
29639
|
-
white-space: nowrap;
|
|
29640
|
-
text-align: right;
|
|
29641
|
-
position: relative;
|
|
29642
|
-
padding: 4px 0;
|
|
29643
|
-
margin-top: -4px;
|
|
29644
|
-
overflow: hidden;
|
|
29645
|
-
}
|
|
29646
|
-
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
29647
|
-
transform: translateY(-4px);
|
|
29648
|
-
}
|
|
29649
|
-
.E_s1ebs0ra .action-group button {
|
|
29650
|
-
border: none;
|
|
29651
|
-
}
|
|
29652
|
-
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
29653
|
-
margin-right: 8px;
|
|
29654
|
-
}
|
|
29655
|
-
.E_s1ebs0ra .action-group > button:last-child {
|
|
29656
|
-
margin-right: 4px;
|
|
29657
|
-
}
|
|
29658
|
-
.E_s1ebs0ra .action-group .more-btn {
|
|
29659
|
-
cursor: pointer;
|
|
29660
|
-
width: 32px;
|
|
29661
|
-
height: 32px;
|
|
29662
|
-
justify-content: center;
|
|
29663
|
-
border-radius: 50%;
|
|
29664
|
-
}
|
|
29665
|
-
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
29666
|
-
background: #fff;
|
|
29667
|
-
}
|
|
29668
|
-
|
|
29669
|
-
span.E_tqjc4ui {
|
|
29670
|
-
margin: 0 2px;
|
|
29671
|
-
}
|
|
29672
|
-
|
|
29673
|
-
.E_n12mqh7z {
|
|
29674
|
-
display: flex;
|
|
29675
|
-
align-items: center;
|
|
29676
|
-
font-size: 12px;
|
|
29677
|
-
line-height: 18px;
|
|
29678
|
-
}
|
|
29679
|
-
.E_n12mqh7z:not(:last-child) {
|
|
29680
|
-
margin-bottom: 4px;
|
|
29681
|
-
}
|
|
29682
|
-
|
|
29683
|
-
.E_tf5bynu {
|
|
29684
|
-
margin: 0 3px;
|
|
29685
|
-
}
|
|
29686
|
-
|
|
29687
|
-
.E_tcckoz1 {
|
|
29688
|
-
max-height: 400px;
|
|
29689
|
-
overflow: auto;
|
|
29690
|
-
}
|
|
29691
|
-
|
|
29692
|
-
.E_ou7iq30 {
|
|
29693
|
-
overflow: hidden;
|
|
29694
|
-
text-overflow: ellipsis;
|
|
29695
|
-
}
|
|
29696
|
-
|
|
29697
|
-
.E_s1tui002 {
|
|
29698
|
-
white-space: nowrap;
|
|
29699
|
-
}
|
|
29700
|
-
|
|
29701
|
-
.E_mxrc2zg {
|
|
29702
|
-
display: -webkit-box;
|
|
29703
|
-
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
29704
|
-
-webkit-box-orient: vertical;
|
|
29705
|
-
word-break: break-all;
|
|
29706
|
-
}
|
|
29707
|
-
|
|
29708
|
-
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
29709
|
-
display: none;
|
|
29710
|
-
}
|
|
29711
|
-
.E_t1vv6d68 .ant-tooltip-inner {
|
|
29712
|
-
background: rgba(23, 38, 64, 0.8);
|
|
29713
|
-
border-radius: 4px;
|
|
29714
|
-
}
|
|
29715
|
-
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
29716
|
-
visibility: hidden;
|
|
29717
|
-
}
|
|
29718
|
-
|
|
29719
|
-
.E_skwah65 {
|
|
29720
|
-
height: 8px;
|
|
29721
|
-
box-sizing: border-box;
|
|
29722
|
-
border-radius: 2px;
|
|
29723
|
-
background: #f5f7fa;
|
|
29724
|
-
display: flex;
|
|
29725
|
-
width: 100%;
|
|
29726
|
-
overflow: hidden;
|
|
29727
|
-
}
|
|
29728
|
-
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
29729
|
-
margin-left: 1px;
|
|
29730
|
-
}
|
|
29731
|
-
|
|
29732
29621
|
.E_gmyahx3 {
|
|
29733
29622
|
cursor: pointer;
|
|
29734
29623
|
}
|
|
@@ -29832,6 +29721,113 @@ span.E_tqjc4ui {
|
|
|
29832
29721
|
border-radius: 2px;
|
|
29833
29722
|
}
|
|
29834
29723
|
|
|
29724
|
+
.E_n12mqh7z {
|
|
29725
|
+
display: flex;
|
|
29726
|
+
align-items: center;
|
|
29727
|
+
font-size: 12px;
|
|
29728
|
+
line-height: 18px;
|
|
29729
|
+
}
|
|
29730
|
+
.E_n12mqh7z:not(:last-child) {
|
|
29731
|
+
margin-bottom: 4px;
|
|
29732
|
+
}
|
|
29733
|
+
|
|
29734
|
+
.E_tf5bynu {
|
|
29735
|
+
margin: 0 3px;
|
|
29736
|
+
}
|
|
29737
|
+
|
|
29738
|
+
.E_tcckoz1 {
|
|
29739
|
+
max-height: 400px;
|
|
29740
|
+
overflow: auto;
|
|
29741
|
+
}
|
|
29742
|
+
|
|
29743
|
+
.E_ou7iq30 {
|
|
29744
|
+
overflow: hidden;
|
|
29745
|
+
text-overflow: ellipsis;
|
|
29746
|
+
}
|
|
29747
|
+
|
|
29748
|
+
.E_s1tui002 {
|
|
29749
|
+
white-space: nowrap;
|
|
29750
|
+
}
|
|
29751
|
+
|
|
29752
|
+
.E_mxrc2zg {
|
|
29753
|
+
display: -webkit-box;
|
|
29754
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
29755
|
+
-webkit-box-orient: vertical;
|
|
29756
|
+
word-break: break-all;
|
|
29757
|
+
}
|
|
29758
|
+
|
|
29759
|
+
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
29760
|
+
display: none;
|
|
29761
|
+
}
|
|
29762
|
+
.E_t1vv6d68 .ant-tooltip-inner {
|
|
29763
|
+
background: rgba(23, 38, 64, 0.8);
|
|
29764
|
+
border-radius: 4px;
|
|
29765
|
+
}
|
|
29766
|
+
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
29767
|
+
visibility: hidden;
|
|
29768
|
+
}
|
|
29769
|
+
|
|
29770
|
+
.E_s1ebs0ra {
|
|
29771
|
+
display: flex;
|
|
29772
|
+
align-items: center;
|
|
29773
|
+
justify-content: space-between;
|
|
29774
|
+
background: #edf0f7;
|
|
29775
|
+
padding: 8px 12px;
|
|
29776
|
+
position: sticky;
|
|
29777
|
+
top: 0;
|
|
29778
|
+
z-index: 1;
|
|
29779
|
+
margin-bottom: -52px;
|
|
29780
|
+
}
|
|
29781
|
+
.E_s1ebs0ra .select-total {
|
|
29782
|
+
display: flex;
|
|
29783
|
+
align-items: center;
|
|
29784
|
+
font-weight: 700;
|
|
29785
|
+
flex-shrink: 0;
|
|
29786
|
+
}
|
|
29787
|
+
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
29788
|
+
cursor: pointer;
|
|
29789
|
+
margin-left: 8px;
|
|
29790
|
+
width: 32px;
|
|
29791
|
+
height: 32px;
|
|
29792
|
+
border-radius: 50%;
|
|
29793
|
+
justify-content: center;
|
|
29794
|
+
}
|
|
29795
|
+
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
29796
|
+
background: rgba(225, 230, 241, 0.6);
|
|
29797
|
+
}
|
|
29798
|
+
.E_s1ebs0ra .action-group {
|
|
29799
|
+
flex: 1;
|
|
29800
|
+
margin-left: 88px;
|
|
29801
|
+
white-space: nowrap;
|
|
29802
|
+
text-align: right;
|
|
29803
|
+
position: relative;
|
|
29804
|
+
padding: 4px 0;
|
|
29805
|
+
margin-top: -4px;
|
|
29806
|
+
overflow: hidden;
|
|
29807
|
+
}
|
|
29808
|
+
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
29809
|
+
transform: translateY(-4px);
|
|
29810
|
+
}
|
|
29811
|
+
.E_s1ebs0ra .action-group button {
|
|
29812
|
+
border: none;
|
|
29813
|
+
}
|
|
29814
|
+
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
29815
|
+
margin-right: 8px;
|
|
29816
|
+
}
|
|
29817
|
+
.E_s1ebs0ra .action-group > button:last-child {
|
|
29818
|
+
margin-right: 4px;
|
|
29819
|
+
}
|
|
29820
|
+
.E_s1ebs0ra .action-group .more-btn {
|
|
29821
|
+
cursor: pointer;
|
|
29822
|
+
width: 32px;
|
|
29823
|
+
height: 32px;
|
|
29824
|
+
justify-content: center;
|
|
29825
|
+
border-radius: 50%;
|
|
29826
|
+
}
|
|
29827
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
29828
|
+
background: #fff;
|
|
29829
|
+
}
|
|
29830
|
+
|
|
29835
29831
|
.E_c1up1pdz {
|
|
29836
29832
|
width: 648px;
|
|
29837
29833
|
}
|
|
@@ -29972,123 +29968,14 @@ span.E_tqjc4ui {
|
|
|
29972
29968
|
color: #fff;
|
|
29973
29969
|
}
|
|
29974
29970
|
|
|
29975
|
-
.
|
|
29976
|
-
|
|
29971
|
+
span.E_tqjc4ui {
|
|
29972
|
+
margin: 0 2px;
|
|
29977
29973
|
}
|
|
29978
|
-
|
|
29979
|
-
|
|
29980
|
-
|
|
29981
|
-
|
|
29982
|
-
|
|
29983
|
-
}
|
|
29984
|
-
.E_t1sqg15u.has-border .table-header {
|
|
29985
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
29986
|
-
}
|
|
29987
|
-
.E_t1sqg15u.has-border .hiddenBorder {
|
|
29988
|
-
border-top: none !important;
|
|
29989
|
-
}
|
|
29990
|
-
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
29991
|
-
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
29992
|
-
}
|
|
29993
|
-
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
29994
|
-
padding-bottom: 0;
|
|
29995
|
-
}
|
|
29996
|
-
.E_t1sqg15u.align-right .content {
|
|
29997
|
-
text-align: right;
|
|
29998
|
-
}
|
|
29999
|
-
.E_t1sqg15u .uuid-row {
|
|
30000
|
-
display: flex;
|
|
30001
|
-
justify-content: space-between;
|
|
30002
|
-
}
|
|
30003
|
-
.E_t1sqg15u .uuid-row .id-text {
|
|
30004
|
-
white-space: nowrap;
|
|
30005
|
-
overflow: hidden;
|
|
30006
|
-
text-overflow: ellipsis;
|
|
30007
|
-
}
|
|
30008
|
-
|
|
30009
|
-
.E_t4zczcp {
|
|
30010
|
-
display: flex;
|
|
30011
|
-
justify-content: space-between;
|
|
30012
|
-
align-items: center;
|
|
30013
|
-
padding: 8px;
|
|
30014
|
-
min-height: 32px;
|
|
30015
|
-
}
|
|
30016
|
-
.E_t4zczcp .table-title {
|
|
30017
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30018
|
-
font-weight: 600;
|
|
30019
|
-
font-size: 12px;
|
|
30020
|
-
line-height: 8px;
|
|
30021
|
-
}
|
|
30022
|
-
.E_t4zczcp .edit-icon {
|
|
30023
|
-
font-size: 16px;
|
|
30024
|
-
color: rgba(10, 37, 85, 0.6);
|
|
30025
|
-
cursor: pointer;
|
|
30026
|
-
}
|
|
30027
|
-
|
|
30028
|
-
.E_t1s7goww {
|
|
30029
|
-
font-size: 12px;
|
|
30030
|
-
line-height: 18px;
|
|
30031
|
-
}
|
|
30032
|
-
|
|
30033
|
-
.E_t93e4cf {
|
|
30034
|
-
display: flex;
|
|
30035
|
-
padding: 8px 0;
|
|
30036
|
-
color: #2d3a56;
|
|
30037
|
-
}
|
|
30038
|
-
.E_t93e4cf .hidden {
|
|
30039
|
-
display: none;
|
|
30040
|
-
}
|
|
30041
|
-
.E_t93e4cf .ant-btn-link {
|
|
30042
|
-
height: auto;
|
|
30043
|
-
}
|
|
30044
|
-
.E_t93e4cf .content {
|
|
30045
|
-
overflow: hidden;
|
|
30046
|
-
overflow-x: auto;
|
|
30047
|
-
width: 100%;
|
|
30048
|
-
white-space: pre-wrap;
|
|
30049
|
-
}
|
|
30050
|
-
.E_t93e4cf .content .ant-btn {
|
|
30051
|
-
white-space: pre-wrap;
|
|
30052
|
-
text-align: left;
|
|
30053
|
-
}
|
|
30054
|
-
.E_t93e4cf .content .unit-chart {
|
|
30055
|
-
justify-content: flex-start;
|
|
30056
|
-
}
|
|
30057
|
-
|
|
30058
|
-
.E_rhz2uv5 {
|
|
30059
|
-
width: var(--rhz2uv5-0);
|
|
30060
|
-
flex-shrink: 0;
|
|
30061
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30062
|
-
padding-right: 12px;
|
|
30063
|
-
}
|
|
30064
|
-
|
|
30065
|
-
.E_wg1tsps {
|
|
30066
|
-
display: flex;
|
|
30067
|
-
align-items: center;
|
|
30068
|
-
justify-content: flex-end;
|
|
30069
|
-
}
|
|
30070
|
-
|
|
30071
|
-
.E_b1ctd5xy {
|
|
30072
|
-
display: flex;
|
|
30073
|
-
align-items: center;
|
|
30074
|
-
width: calc(100% - 40px);
|
|
30075
|
-
}
|
|
30076
|
-
.E_b1ctd5xy .chart {
|
|
30077
|
-
display: inline-block;
|
|
30078
|
-
width: 100%;
|
|
30079
|
-
}
|
|
30080
|
-
|
|
30081
|
-
.E_u1p8acpn {
|
|
30082
|
-
min-width: 40px;
|
|
30083
|
-
}
|
|
30084
|
-
.E_u1p8acpn .unit {
|
|
30085
|
-
color: #00122e !important;
|
|
30086
|
-
}
|
|
30087
|
-
|
|
30088
|
-
.E_s1at6qmn.ant-layout-sider {
|
|
30089
|
-
background: #edf0f7;
|
|
30090
|
-
padding: 32px 8px;
|
|
30091
|
-
overflow: auto;
|
|
29974
|
+
|
|
29975
|
+
.E_s1at6qmn.ant-layout-sider {
|
|
29976
|
+
background: #edf0f7;
|
|
29977
|
+
padding: 32px 8px;
|
|
29978
|
+
overflow: auto;
|
|
30092
29979
|
}
|
|
30093
29980
|
.E_s1at6qmn .ant-layout-sider-children {
|
|
30094
29981
|
display: flex;
|
|
@@ -30401,6 +30288,96 @@ span.E_tqjc4ui {
|
|
|
30401
30288
|
background: transparent;
|
|
30402
30289
|
}
|
|
30403
30290
|
|
|
30291
|
+
.E_t1sqg15u {
|
|
30292
|
+
background: white;
|
|
30293
|
+
}
|
|
30294
|
+
.E_t1sqg15u.inline .table-row {
|
|
30295
|
+
flex-direction: column;
|
|
30296
|
+
}
|
|
30297
|
+
.E_t1sqg15u.inline .table-row > label {
|
|
30298
|
+
padding: 0 16px 7px 0;
|
|
30299
|
+
}
|
|
30300
|
+
.E_t1sqg15u.has-border .table-header {
|
|
30301
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
30302
|
+
}
|
|
30303
|
+
.E_t1sqg15u.has-border .hiddenBorder {
|
|
30304
|
+
border-top: none !important;
|
|
30305
|
+
}
|
|
30306
|
+
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
30307
|
+
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
30308
|
+
}
|
|
30309
|
+
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
30310
|
+
padding-bottom: 0;
|
|
30311
|
+
}
|
|
30312
|
+
.E_t1sqg15u.align-right .content {
|
|
30313
|
+
text-align: right;
|
|
30314
|
+
}
|
|
30315
|
+
.E_t1sqg15u .uuid-row {
|
|
30316
|
+
display: flex;
|
|
30317
|
+
justify-content: space-between;
|
|
30318
|
+
}
|
|
30319
|
+
.E_t1sqg15u .uuid-row .id-text {
|
|
30320
|
+
white-space: nowrap;
|
|
30321
|
+
overflow: hidden;
|
|
30322
|
+
text-overflow: ellipsis;
|
|
30323
|
+
}
|
|
30324
|
+
|
|
30325
|
+
.E_t4zczcp {
|
|
30326
|
+
display: flex;
|
|
30327
|
+
justify-content: space-between;
|
|
30328
|
+
align-items: center;
|
|
30329
|
+
padding: 8px;
|
|
30330
|
+
min-height: 32px;
|
|
30331
|
+
}
|
|
30332
|
+
.E_t4zczcp .table-title {
|
|
30333
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30334
|
+
font-weight: 600;
|
|
30335
|
+
font-size: 12px;
|
|
30336
|
+
line-height: 8px;
|
|
30337
|
+
}
|
|
30338
|
+
.E_t4zczcp .edit-icon {
|
|
30339
|
+
font-size: 16px;
|
|
30340
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30341
|
+
cursor: pointer;
|
|
30342
|
+
}
|
|
30343
|
+
|
|
30344
|
+
.E_t1s7goww {
|
|
30345
|
+
font-size: 12px;
|
|
30346
|
+
line-height: 18px;
|
|
30347
|
+
}
|
|
30348
|
+
|
|
30349
|
+
.E_t93e4cf {
|
|
30350
|
+
display: flex;
|
|
30351
|
+
padding: 8px 0;
|
|
30352
|
+
color: #2d3a56;
|
|
30353
|
+
}
|
|
30354
|
+
.E_t93e4cf .hidden {
|
|
30355
|
+
display: none;
|
|
30356
|
+
}
|
|
30357
|
+
.E_t93e4cf .ant-btn-link {
|
|
30358
|
+
height: auto;
|
|
30359
|
+
}
|
|
30360
|
+
.E_t93e4cf .content {
|
|
30361
|
+
overflow: hidden;
|
|
30362
|
+
overflow-x: auto;
|
|
30363
|
+
width: 100%;
|
|
30364
|
+
white-space: pre-wrap;
|
|
30365
|
+
}
|
|
30366
|
+
.E_t93e4cf .content .ant-btn {
|
|
30367
|
+
white-space: pre-wrap;
|
|
30368
|
+
text-align: left;
|
|
30369
|
+
}
|
|
30370
|
+
.E_t93e4cf .content .unit-chart {
|
|
30371
|
+
justify-content: flex-start;
|
|
30372
|
+
}
|
|
30373
|
+
|
|
30374
|
+
.E_rhz2uv5 {
|
|
30375
|
+
width: var(--rhz2uv5-0);
|
|
30376
|
+
flex-shrink: 0;
|
|
30377
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30378
|
+
padding-right: 12px;
|
|
30379
|
+
}
|
|
30380
|
+
|
|
30404
30381
|
.E_s1iv0tp1 .enabled-switch {
|
|
30405
30382
|
display: flex;
|
|
30406
30383
|
align-items: center;
|
|
@@ -30409,24 +30386,27 @@ span.E_tqjc4ui {
|
|
|
30409
30386
|
margin-right: 8px;
|
|
30410
30387
|
}
|
|
30411
30388
|
|
|
30412
|
-
.
|
|
30413
|
-
|
|
30414
|
-
|
|
30415
|
-
|
|
30416
|
-
.E_c18gxmrl + .E_c18gxmrl {
|
|
30417
|
-
margin-top: 8px;
|
|
30389
|
+
.E_wg1tsps {
|
|
30390
|
+
display: flex;
|
|
30391
|
+
align-items: center;
|
|
30392
|
+
justify-content: flex-end;
|
|
30418
30393
|
}
|
|
30419
|
-
|
|
30420
|
-
|
|
30394
|
+
|
|
30395
|
+
.E_b1ctd5xy {
|
|
30396
|
+
display: flex;
|
|
30397
|
+
align-items: center;
|
|
30398
|
+
width: calc(100% - 40px);
|
|
30421
30399
|
}
|
|
30422
|
-
.
|
|
30423
|
-
|
|
30400
|
+
.E_b1ctd5xy .chart {
|
|
30401
|
+
display: inline-block;
|
|
30402
|
+
width: 100%;
|
|
30424
30403
|
}
|
|
30425
|
-
|
|
30426
|
-
|
|
30404
|
+
|
|
30405
|
+
.E_u1p8acpn {
|
|
30406
|
+
min-width: 40px;
|
|
30427
30407
|
}
|
|
30428
|
-
.
|
|
30429
|
-
|
|
30408
|
+
.E_u1p8acpn .unit {
|
|
30409
|
+
color: #00122e !important;
|
|
30430
30410
|
}
|
|
30431
30411
|
|
|
30432
30412
|
.E_m74vjol {
|
|
@@ -30471,6 +30451,22 @@ span.E_tqjc4ui {
|
|
|
30471
30451
|
border-radius: unset;
|
|
30472
30452
|
}
|
|
30473
30453
|
|
|
30454
|
+
.E_berrcjl {
|
|
30455
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30456
|
+
margin-bottom: 4px;
|
|
30457
|
+
}
|
|
30458
|
+
.E_berrcjl .breadcrumb-link {
|
|
30459
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30460
|
+
cursor: pointer;
|
|
30461
|
+
transition: color 160ms ease;
|
|
30462
|
+
}
|
|
30463
|
+
.E_berrcjl .breadcrumb-link:hover {
|
|
30464
|
+
color: #0080ff;
|
|
30465
|
+
}
|
|
30466
|
+
.E_berrcjl .breadcrumb-link:active {
|
|
30467
|
+
color: #005ed1;
|
|
30468
|
+
}
|
|
30469
|
+
|
|
30474
30470
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
30475
30471
|
justify-content: center;
|
|
30476
30472
|
}
|
|
@@ -30725,20 +30721,53 @@ button.E_n7k2c6r {
|
|
|
30725
30721
|
padding: 0;
|
|
30726
30722
|
}
|
|
30727
30723
|
|
|
30728
|
-
.
|
|
30729
|
-
|
|
30730
|
-
|
|
30724
|
+
.E_c18gxmrl {
|
|
30725
|
+
border: 1px solid #d8deeb;
|
|
30726
|
+
border-radius: 4px;
|
|
30731
30727
|
}
|
|
30732
|
-
.
|
|
30733
|
-
|
|
30734
|
-
cursor: pointer;
|
|
30735
|
-
transition: color 160ms ease;
|
|
30728
|
+
.E_c18gxmrl + .E_c18gxmrl {
|
|
30729
|
+
margin-top: 8px;
|
|
30736
30730
|
}
|
|
30737
|
-
.
|
|
30738
|
-
color: #0080ff;
|
|
30731
|
+
.E_c18gxmrl:hover {
|
|
30732
|
+
border-color: #0080ff;
|
|
30739
30733
|
}
|
|
30740
|
-
.
|
|
30741
|
-
|
|
30734
|
+
.E_c18gxmrl:hover > header {
|
|
30735
|
+
background: rgba(0, 128, 255, 0.1);
|
|
30736
|
+
}
|
|
30737
|
+
.E_c18gxmrl.active header {
|
|
30738
|
+
border-bottom: 1px solid #d8deeb;
|
|
30739
|
+
}
|
|
30740
|
+
.E_c18gxmrl > header {
|
|
30741
|
+
padding: 8px 12px;
|
|
30742
|
+
}
|
|
30743
|
+
|
|
30744
|
+
.E_ccrbeuz .ant-collapse-item {
|
|
30745
|
+
border: 0px;
|
|
30746
|
+
background-color: #fff;
|
|
30747
|
+
}
|
|
30748
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
30749
|
+
padding-top: 0px;
|
|
30750
|
+
padding-bottom: 0px;
|
|
30751
|
+
padding-left: 0px !important;
|
|
30752
|
+
padding-right: 24px;
|
|
30753
|
+
}
|
|
30754
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
30755
|
+
right: 0px;
|
|
30756
|
+
}
|
|
30757
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
30758
|
+
padding: 0px;
|
|
30759
|
+
}
|
|
30760
|
+
|
|
30761
|
+
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
30762
|
+
padding-right: 0px;
|
|
30763
|
+
cursor: default;
|
|
30764
|
+
}
|
|
30765
|
+
|
|
30766
|
+
.E_c1yyuluq {
|
|
30767
|
+
border-radius: 8px;
|
|
30768
|
+
}
|
|
30769
|
+
.E_c1yyuluq .ant-card-body {
|
|
30770
|
+
padding: 20px 24px 24px 24px;
|
|
30742
30771
|
}
|
|
30743
30772
|
|
|
30744
30773
|
.E_c1uzzomf {
|
|
@@ -30763,19 +30792,6 @@ button.E_n7k2c6r {
|
|
|
30763
30792
|
text-align: center;
|
|
30764
30793
|
}
|
|
30765
30794
|
|
|
30766
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
30767
|
-
padding: 4px 8px 0 8px;
|
|
30768
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30769
|
-
font-size: 12px;
|
|
30770
|
-
}
|
|
30771
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
30772
|
-
padding-bottom: 6px;
|
|
30773
|
-
}
|
|
30774
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
30775
|
-
padding-top: 4px;
|
|
30776
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30777
|
-
}
|
|
30778
|
-
|
|
30779
30795
|
.E_d1bw7c5z {
|
|
30780
30796
|
position: relative;
|
|
30781
30797
|
max-width: 388px;
|
|
@@ -30859,134 +30875,25 @@ button.E_n7k2c6r {
|
|
|
30859
30875
|
width: 102px;
|
|
30860
30876
|
}
|
|
30861
30877
|
|
|
30862
|
-
.
|
|
30863
|
-
|
|
30864
|
-
|
|
30865
|
-
|
|
30866
|
-
padding: 20px 24px 24px 24px;
|
|
30867
|
-
}
|
|
30868
|
-
|
|
30869
|
-
.E_ccrbeuz .ant-collapse-item {
|
|
30870
|
-
border: 0px;
|
|
30871
|
-
background-color: #fff;
|
|
30872
|
-
}
|
|
30873
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
30874
|
-
padding-top: 0px;
|
|
30875
|
-
padding-bottom: 0px;
|
|
30876
|
-
padding-left: 0px !important;
|
|
30877
|
-
padding-right: 24px;
|
|
30878
|
-
}
|
|
30879
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
30880
|
-
right: 0px;
|
|
30881
|
-
}
|
|
30882
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
30883
|
-
padding: 0px;
|
|
30878
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
30879
|
+
padding: 4px 8px 0 8px;
|
|
30880
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30881
|
+
font-size: 12px;
|
|
30884
30882
|
}
|
|
30885
|
-
|
|
30886
|
-
|
|
30887
|
-
padding-right: 0px;
|
|
30888
|
-
cursor: default;
|
|
30883
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
30884
|
+
padding-bottom: 6px;
|
|
30889
30885
|
}
|
|
30890
|
-
|
|
30891
|
-
|
|
30892
|
-
|
|
30886
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
30887
|
+
padding-top: 4px;
|
|
30888
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30893
30889
|
}
|
|
30894
30890
|
|
|
30895
30891
|
.E_sx1bpnu .ant-input-sm {
|
|
30896
30892
|
line-height: 18px;
|
|
30897
30893
|
}
|
|
30898
30894
|
|
|
30899
|
-
.
|
|
30900
|
-
margin-right: 8px;
|
|
30901
|
-
}
|
|
30902
|
-
.E_i11gg7mj .ant-input-suffix {
|
|
30903
|
-
margin-left: 8px;
|
|
30904
|
-
}
|
|
30905
|
-
|
|
30906
|
-
.E_cc368xp {
|
|
30907
|
-
color: #00122e;
|
|
30908
|
-
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
30909
|
-
margin-right: 8px;
|
|
30910
|
-
padding-right: 8px;
|
|
30911
|
-
}
|
|
30912
|
-
|
|
30913
|
-
.E_i11o6xqj {
|
|
30895
|
+
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
30914
30896
|
display: flex;
|
|
30915
|
-
gap: 4px;
|
|
30916
|
-
}
|
|
30917
|
-
.E_i11o6xqj .icon-wrapper {
|
|
30918
|
-
cursor: pointer;
|
|
30919
|
-
}
|
|
30920
|
-
|
|
30921
|
-
.E_d19ruhdj.icon-wrapper {
|
|
30922
|
-
cursor: not-allowed;
|
|
30923
|
-
}
|
|
30924
|
-
|
|
30925
|
-
.E_s177mls5.ant-select, .E_s177mls5.ant-select .ant-select-selector {
|
|
30926
|
-
border-radius: 6px;
|
|
30927
|
-
}
|
|
30928
|
-
.E_s177mls5.ant-select.ant-select-single {
|
|
30929
|
-
width: 100%;
|
|
30930
|
-
color: #2d3a56;
|
|
30931
|
-
border-color: rgba(211, 218, 235, 0.6);
|
|
30932
|
-
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
30933
|
-
font-size: 13px;
|
|
30934
|
-
}
|
|
30935
|
-
.E_s177mls5.ant-select.ant-select-single[data-size=middle] {
|
|
30936
|
-
height: 30px;
|
|
30937
|
-
}
|
|
30938
|
-
.E_s177mls5.ant-select.ant-select-single.ant-select-lg {
|
|
30939
|
-
height: 38px;
|
|
30940
|
-
font-size: 13px;
|
|
30941
|
-
}
|
|
30942
|
-
.E_s177mls5.ant-select.ant-select-single .ant-select-arrow,
|
|
30943
|
-
.E_s177mls5.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
30944
|
-
transition: 160ms ease;
|
|
30945
|
-
}
|
|
30946
|
-
.E_s177mls5.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
30947
|
-
color: #0080ff;
|
|
30948
|
-
}
|
|
30949
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
30950
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
30951
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
30952
|
-
}
|
|
30953
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
30954
|
-
color: #0080ff;
|
|
30955
|
-
}
|
|
30956
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
30957
|
-
border-color: #0080ff;
|
|
30958
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
30959
|
-
}
|
|
30960
|
-
.E_s177mls5.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
30961
|
-
transform: rotate(180deg);
|
|
30962
|
-
}
|
|
30963
|
-
.E_s177mls5.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
30964
|
-
background: rgba(211, 218, 235, 0.6);
|
|
30965
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
30966
|
-
cursor: "not-allowed";
|
|
30967
|
-
}
|
|
30968
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
30969
|
-
border-color: #f0483e !important;
|
|
30970
|
-
}
|
|
30971
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
30972
|
-
color: #1d326c;
|
|
30973
|
-
}
|
|
30974
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s177mls5.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
30975
|
-
border-color: #0080ff;
|
|
30976
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
30977
|
-
}
|
|
30978
|
-
.E_s177mls5.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
30979
|
-
transform: rotate(180deg);
|
|
30980
|
-
}
|
|
30981
|
-
|
|
30982
|
-
.E_ivqqkzv {
|
|
30983
|
-
height: 24px;
|
|
30984
|
-
width: 56px !important;
|
|
30985
|
-
margin-right: 4px;
|
|
30986
|
-
}
|
|
30987
|
-
|
|
30988
|
-
.E_c1wk4q29 {
|
|
30989
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30990
30897
|
}
|
|
30991
30898
|
|
|
30992
30899
|
.E_phljevk {
|
|
@@ -31046,235 +30953,59 @@ button.E_n7k2c6r {
|
|
|
31046
30953
|
line-height: 18px;
|
|
31047
30954
|
}
|
|
31048
30955
|
|
|
31049
|
-
.
|
|
31050
|
-
|
|
31051
|
-
|
|
31052
|
-
|
|
30956
|
+
.E_ivqqkzv {
|
|
30957
|
+
height: 24px;
|
|
30958
|
+
width: 56px !important;
|
|
30959
|
+
margin-right: 4px;
|
|
31053
30960
|
}
|
|
31054
|
-
|
|
31055
|
-
|
|
31056
|
-
|
|
30961
|
+
|
|
30962
|
+
.E_c1wk4q29 {
|
|
30963
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31057
30964
|
}
|
|
31058
|
-
|
|
31059
|
-
|
|
30965
|
+
|
|
30966
|
+
.E_s1dizucg.ant-switch {
|
|
30967
|
+
min-width: 40px;
|
|
30968
|
+
height: 24px;
|
|
30969
|
+
background: rgba(172, 186, 211, 0.6);
|
|
30970
|
+
overflow: hidden;
|
|
31060
30971
|
}
|
|
31061
|
-
.
|
|
31062
|
-
|
|
30972
|
+
.E_s1dizucg.ant-switch:focus {
|
|
30973
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
31063
30974
|
}
|
|
31064
|
-
.
|
|
31065
|
-
|
|
31066
|
-
|
|
30975
|
+
.E_s1dizucg.ant-switch-small {
|
|
30976
|
+
min-width: 26px;
|
|
30977
|
+
height: 16px;
|
|
31067
30978
|
}
|
|
31068
|
-
.
|
|
31069
|
-
|
|
31070
|
-
|
|
31071
|
-
width: 6px;
|
|
31072
|
-
height: 6px;
|
|
31073
|
-
background: #fff;
|
|
30979
|
+
.E_s1dizucg.ant-switch-large {
|
|
30980
|
+
min-width: 52px;
|
|
30981
|
+
height: 32px;
|
|
31074
30982
|
}
|
|
31075
|
-
.
|
|
31076
|
-
|
|
30983
|
+
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
30984
|
+
height: 20px;
|
|
30985
|
+
width: 20px;
|
|
31077
30986
|
}
|
|
31078
|
-
.
|
|
31079
|
-
border-
|
|
31080
|
-
|
|
30987
|
+
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
30988
|
+
border-radius: 10px;
|
|
30989
|
+
transition-delay: 120ms;
|
|
31081
30990
|
}
|
|
31082
|
-
.
|
|
31083
|
-
|
|
30991
|
+
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
30992
|
+
height: 14px;
|
|
30993
|
+
width: 14px;
|
|
30994
|
+
top: 1px;
|
|
30995
|
+
left: 1px;
|
|
31084
30996
|
}
|
|
31085
|
-
.
|
|
31086
|
-
|
|
31087
|
-
|
|
30997
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
30998
|
+
height: 28px;
|
|
30999
|
+
width: 28px;
|
|
31088
31000
|
}
|
|
31089
|
-
.
|
|
31090
|
-
|
|
31001
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
31002
|
+
border-radius: 14px;
|
|
31091
31003
|
}
|
|
31092
|
-
.
|
|
31093
|
-
|
|
31094
|
-
padding: 0;
|
|
31095
|
-
padding-left: 12px;
|
|
31004
|
+
.E_s1dizucg.ant-switch-checked {
|
|
31005
|
+
background-color: #00ba5d;
|
|
31096
31006
|
}
|
|
31097
|
-
.
|
|
31098
|
-
|
|
31099
|
-
white-space: pre-wrap;
|
|
31100
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31101
|
-
}
|
|
31102
|
-
.E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
31103
|
-
padding-left: 8px;
|
|
31104
|
-
}
|
|
31105
|
-
|
|
31106
|
-
.E_rp906go .ant-radio-button-wrapper:first-child {
|
|
31107
|
-
border-radius: 5px 0 0 5px;
|
|
31108
|
-
}
|
|
31109
|
-
.E_rp906go .ant-radio-button-wrapper:last-child {
|
|
31110
|
-
border-radius: 0 5px 5px 0;
|
|
31111
|
-
}
|
|
31112
|
-
|
|
31113
|
-
.E_rcc63c8 {
|
|
31114
|
-
color: #00122e;
|
|
31115
|
-
border-color: #ccd4e3;
|
|
31116
|
-
}
|
|
31117
|
-
.E_rcc63c8:first-child {
|
|
31118
|
-
border-color: #a3b4cc;
|
|
31119
|
-
}
|
|
31120
|
-
.E_rcc63c8.ant-radio-button-wrapper {
|
|
31121
|
-
padding: 0 12px;
|
|
31122
|
-
line-height: 32px;
|
|
31123
|
-
height: 32px;
|
|
31124
|
-
}
|
|
31125
|
-
.E_rcc63c8.ant-radio-button-wrapper > span + span {
|
|
31126
|
-
white-space: nowrap;
|
|
31127
|
-
}
|
|
31128
|
-
.ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
|
|
31129
|
-
height: 22px;
|
|
31130
|
-
padding: 0 7px;
|
|
31131
|
-
line-height: 20px;
|
|
31132
|
-
}
|
|
31133
|
-
.E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
|
|
31134
|
-
background: #ccd4e3;
|
|
31135
|
-
}
|
|
31136
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
31137
|
-
background: #0080ff;
|
|
31138
|
-
}
|
|
31139
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
31140
|
-
background: #ccd4e3;
|
|
31141
|
-
opacity: 0.5;
|
|
31142
|
-
}
|
|
31143
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
31144
|
-
border-right-color: #0080ff;
|
|
31145
|
-
}
|
|
31146
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
31147
|
-
border-color: #0080ff;
|
|
31148
|
-
}
|
|
31149
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked {
|
|
31150
|
-
background: rgba(0, 136, 255, 0.1);
|
|
31151
|
-
}
|
|
31152
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled {
|
|
31153
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31154
|
-
border-color: #ccd4e3;
|
|
31155
|
-
opacity: 0.5;
|
|
31156
|
-
}
|
|
31157
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
|
|
31158
|
-
color: #00122e;
|
|
31159
|
-
border-color: #ccd4e3;
|
|
31160
|
-
}
|
|
31161
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
31162
|
-
color: #00122e;
|
|
31163
|
-
border-color: #ccd4e3;
|
|
31164
|
-
background: rgba(172, 186, 211, 0.6);
|
|
31165
|
-
}
|
|
31166
|
-
.E_rcc63c8 .ant-radio-button-input {
|
|
31167
|
-
margin-right: 8px;
|
|
31168
|
-
display: inline;
|
|
31169
|
-
border: none;
|
|
31170
|
-
padding: 0;
|
|
31171
|
-
width: 36px;
|
|
31172
|
-
background: transparent;
|
|
31173
|
-
}
|
|
31174
|
-
.E_rcc63c8 .ant-radio-button-input:focus {
|
|
31175
|
-
box-shadow: none;
|
|
31176
|
-
}
|
|
31177
|
-
.E_rcc63c8 .ant-radio-button-input.ant-input-number {
|
|
31178
|
-
margin-right: 0;
|
|
31179
|
-
width: initial;
|
|
31180
|
-
box-shadow: none;
|
|
31181
|
-
}
|
|
31182
|
-
.E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
31183
|
-
display: none;
|
|
31184
|
-
}
|
|
31185
|
-
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
|
|
31186
|
-
display: inline;
|
|
31187
|
-
}
|
|
31188
|
-
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
|
|
31189
|
-
display: inline;
|
|
31190
|
-
margin-right: 8px;
|
|
31191
|
-
padding: 0;
|
|
31192
|
-
width: 36px;
|
|
31193
|
-
}
|
|
31194
|
-
|
|
31195
|
-
.E_c1bus5hc {
|
|
31196
|
-
--color: white;
|
|
31197
|
-
height: 14px;
|
|
31198
|
-
width: 14px;
|
|
31199
|
-
border-radius: 50%;
|
|
31200
|
-
flex-shrink: 0;
|
|
31201
|
-
display: flex;
|
|
31202
|
-
align-items: center;
|
|
31203
|
-
justify-content: center;
|
|
31204
|
-
border: 1px solid var(--color);
|
|
31205
|
-
}
|
|
31206
|
-
.E_c1bus5hc .circle-inner {
|
|
31207
|
-
position: relative;
|
|
31208
|
-
height: 10px;
|
|
31209
|
-
width: 10px;
|
|
31210
|
-
border-radius: 50%;
|
|
31211
|
-
overflow: hidden;
|
|
31212
|
-
}
|
|
31213
|
-
.E_c1bus5hc .circle-content {
|
|
31214
|
-
position: absolute;
|
|
31215
|
-
height: 100%;
|
|
31216
|
-
width: 100%;
|
|
31217
|
-
left: 0;
|
|
31218
|
-
top: 0;
|
|
31219
|
-
border-radius: 50%;
|
|
31220
|
-
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
31221
|
-
transform: rotate(180deg);
|
|
31222
|
-
}
|
|
31223
|
-
.E_c1bus5hc .circle-child {
|
|
31224
|
-
position: absolute;
|
|
31225
|
-
height: 100%;
|
|
31226
|
-
width: 100%;
|
|
31227
|
-
left: 0;
|
|
31228
|
-
top: 0;
|
|
31229
|
-
margin-left: 50%;
|
|
31230
|
-
transform-origin: left;
|
|
31231
|
-
background: white;
|
|
31232
|
-
transform: rotate(0deg);
|
|
31233
|
-
}
|
|
31234
|
-
|
|
31235
|
-
.E_s1dizucg.ant-switch {
|
|
31236
|
-
min-width: 40px;
|
|
31237
|
-
height: 24px;
|
|
31238
|
-
background: rgba(172, 186, 211, 0.6);
|
|
31239
|
-
overflow: hidden;
|
|
31240
|
-
}
|
|
31241
|
-
.E_s1dizucg.ant-switch:focus {
|
|
31242
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
31243
|
-
}
|
|
31244
|
-
.E_s1dizucg.ant-switch-small {
|
|
31245
|
-
min-width: 26px;
|
|
31246
|
-
height: 16px;
|
|
31247
|
-
}
|
|
31248
|
-
.E_s1dizucg.ant-switch-large {
|
|
31249
|
-
min-width: 52px;
|
|
31250
|
-
height: 32px;
|
|
31251
|
-
}
|
|
31252
|
-
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
31253
|
-
height: 20px;
|
|
31254
|
-
width: 20px;
|
|
31255
|
-
}
|
|
31256
|
-
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
31257
|
-
border-radius: 10px;
|
|
31258
|
-
transition-delay: 120ms;
|
|
31259
|
-
}
|
|
31260
|
-
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
31261
|
-
height: 14px;
|
|
31262
|
-
width: 14px;
|
|
31263
|
-
top: 1px;
|
|
31264
|
-
left: 1px;
|
|
31265
|
-
}
|
|
31266
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
31267
|
-
height: 28px;
|
|
31268
|
-
width: 28px;
|
|
31269
|
-
}
|
|
31270
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
31271
|
-
border-radius: 14px;
|
|
31272
|
-
}
|
|
31273
|
-
.E_s1dizucg.ant-switch-checked {
|
|
31274
|
-
background-color: #00ba5d;
|
|
31275
|
-
}
|
|
31276
|
-
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
31277
|
-
left: calc(100% - 20px - 2px);
|
|
31007
|
+
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
31008
|
+
left: calc(100% - 20px - 2px);
|
|
31278
31009
|
}
|
|
31279
31010
|
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
31280
31011
|
left: calc(100% - 14px - 1px);
|
|
@@ -31287,17 +31018,6 @@ button.E_n7k2c6r {
|
|
|
31287
31018
|
margin-left: 5px;
|
|
31288
31019
|
}
|
|
31289
31020
|
|
|
31290
|
-
.E_tju3gfj .date {
|
|
31291
|
-
margin-right: 4px;
|
|
31292
|
-
}
|
|
31293
|
-
|
|
31294
|
-
.E_atcz0kf .ant-input-suffix {
|
|
31295
|
-
margin-left: 8px;
|
|
31296
|
-
}
|
|
31297
|
-
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
31298
|
-
padding: 2px 7px 2px 12px;
|
|
31299
|
-
}
|
|
31300
|
-
|
|
31301
31021
|
.E_s1dni7lo {
|
|
31302
31022
|
width: 430px !important;
|
|
31303
31023
|
}
|
|
@@ -31379,156 +31099,49 @@ button.E_n7k2c6r {
|
|
|
31379
31099
|
opacity: 0;
|
|
31380
31100
|
}
|
|
31381
31101
|
|
|
31382
|
-
.
|
|
31383
|
-
|
|
31384
|
-
|
|
31385
|
-
|
|
31386
|
-
|
|
31387
|
-
|
|
31388
|
-
|
|
31389
|
-
width: 100%;
|
|
31390
|
-
}
|
|
31391
|
-
.E_ai7qkf2 .ant-input-number-input-wrap::after {
|
|
31392
|
-
content: var(--ai7qkf2-1);
|
|
31393
|
-
display: var(--ai7qkf2-2);
|
|
31394
|
-
flex: none;
|
|
31102
|
+
.E_c1bus5hc {
|
|
31103
|
+
--color: white;
|
|
31104
|
+
height: 14px;
|
|
31105
|
+
width: 14px;
|
|
31106
|
+
border-radius: 50%;
|
|
31107
|
+
flex-shrink: 0;
|
|
31108
|
+
display: flex;
|
|
31395
31109
|
align-items: center;
|
|
31396
|
-
|
|
31397
|
-
|
|
31398
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31110
|
+
justify-content: center;
|
|
31111
|
+
border: 1px solid var(--color);
|
|
31399
31112
|
}
|
|
31400
|
-
.
|
|
31401
|
-
|
|
31402
|
-
|
|
31403
|
-
|
|
31404
|
-
|
|
31405
|
-
|
|
31406
|
-
cursor: auto;
|
|
31407
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31113
|
+
.E_c1bus5hc .circle-inner {
|
|
31114
|
+
position: relative;
|
|
31115
|
+
height: 10px;
|
|
31116
|
+
width: 10px;
|
|
31117
|
+
border-radius: 50%;
|
|
31118
|
+
overflow: hidden;
|
|
31408
31119
|
}
|
|
31409
|
-
.
|
|
31410
|
-
|
|
31120
|
+
.E_c1bus5hc .circle-content {
|
|
31121
|
+
position: absolute;
|
|
31122
|
+
height: 100%;
|
|
31123
|
+
width: 100%;
|
|
31124
|
+
left: 0;
|
|
31125
|
+
top: 0;
|
|
31126
|
+
border-radius: 50%;
|
|
31127
|
+
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
31128
|
+
transform: rotate(180deg);
|
|
31411
31129
|
}
|
|
31412
|
-
.
|
|
31130
|
+
.E_c1bus5hc .circle-child {
|
|
31131
|
+
position: absolute;
|
|
31132
|
+
height: 100%;
|
|
31413
31133
|
width: 100%;
|
|
31414
|
-
|
|
31134
|
+
left: 0;
|
|
31135
|
+
top: 0;
|
|
31136
|
+
margin-left: 50%;
|
|
31137
|
+
transform-origin: left;
|
|
31138
|
+
background: white;
|
|
31139
|
+
transform: rotate(0deg);
|
|
31415
31140
|
}
|
|
31416
|
-
|
|
31417
|
-
|
|
31418
|
-
|
|
31419
|
-
|
|
31420
|
-
}
|
|
31421
|
-
.E_ai7qkf2.ant-input-number.error:not([disabled]):hover, .E_ai7qkf2.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
31422
|
-
border-color: #e75a3a;
|
|
31423
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31424
|
-
}
|
|
31425
|
-
.E_ai7qkf2 .ant-input-number-input {
|
|
31426
|
-
height: 30px;
|
|
31427
|
-
border: 1px;
|
|
31428
|
-
padding: 5px 12px;
|
|
31429
|
-
font-size: inherit;
|
|
31430
|
-
}
|
|
31431
|
-
.E_ai7qkf2.ant-input-number-lg input {
|
|
31432
|
-
height: 38px;
|
|
31433
|
-
border: 1px;
|
|
31434
|
-
padding: 8px 16px;
|
|
31435
|
-
}
|
|
31436
|
-
.E_ai7qkf2.ant-input-number-sm input {
|
|
31437
|
-
height: 22px;
|
|
31438
|
-
border: 1px;
|
|
31439
|
-
padding: 2px 8px;
|
|
31440
|
-
}
|
|
31441
|
-
|
|
31442
|
-
.E_f7pxqmh {
|
|
31443
|
-
width: 100%;
|
|
31444
|
-
margin-bottom: 0 !important;
|
|
31445
|
-
flex-flow: nowrap !important;
|
|
31446
|
-
line-break: auto;
|
|
31447
|
-
}
|
|
31448
|
-
.E_f7pxqmh > .ant-form-item-label {
|
|
31449
|
-
text-align: left !important;
|
|
31450
|
-
padding-bottom: 0 !important;
|
|
31451
|
-
}
|
|
31452
|
-
.E_f7pxqmh > .ant-form-item-label > label {
|
|
31453
|
-
min-height: 32px;
|
|
31454
|
-
height: auto;
|
|
31455
|
-
font-size: 13px;
|
|
31456
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31457
|
-
white-space: normal;
|
|
31458
|
-
}
|
|
31459
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
31460
|
-
border-color: #ff4d4f !important;
|
|
31461
|
-
}
|
|
31462
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
31463
|
-
border-color: #ff4d4f !important;
|
|
31464
|
-
}
|
|
31465
|
-
.E_f7pxqmh .ant-form-item-explain {
|
|
31466
|
-
margin-top: 4px;
|
|
31467
|
-
font-size: 12px;
|
|
31468
|
-
min-height: 0px;
|
|
31469
|
-
}
|
|
31470
|
-
.E_f7pxqmh .ant-form-item-extra {
|
|
31471
|
-
font-size: 12px;
|
|
31472
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31473
|
-
min-height: 0px;
|
|
31474
|
-
}
|
|
31475
|
-
|
|
31476
|
-
.E_iouxfgt {
|
|
31477
|
-
display: inline-flex;
|
|
31478
|
-
align-items: center;
|
|
31479
|
-
}
|
|
31480
|
-
.E_iouxfgt .icon-inner {
|
|
31481
|
-
display: inline-flex;
|
|
31482
|
-
align-items: center;
|
|
31483
|
-
justify-content: center;
|
|
31484
|
-
}
|
|
31485
|
-
.E_iouxfgt .icon-inner + span,
|
|
31486
|
-
.E_iouxfgt span + .icon-inner.suffix {
|
|
31487
|
-
margin-left: 4px;
|
|
31488
|
-
}
|
|
31489
|
-
.E_iouxfgt.is-rotate img,
|
|
31490
|
-
.E_iouxfgt.is-rotate svg {
|
|
31491
|
-
animation: rotate 680ms linear infinite;
|
|
31492
|
-
}
|
|
31493
|
-
|
|
31494
|
-
.E_iq1gosr {
|
|
31495
|
-
display: inline-block;
|
|
31496
|
-
}
|
|
31497
|
-
|
|
31498
|
-
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
31499
|
-
display: var(--a1wfy30z-0);
|
|
31500
|
-
}
|
|
31501
|
-
.E_a1wfy30z .ant-input-number-input-wrap {
|
|
31502
|
-
padding: 4px 11px;
|
|
31503
|
-
display: inline-flex;
|
|
31504
|
-
line-height: 1.5715;
|
|
31505
|
-
height: inherit;
|
|
31506
|
-
}
|
|
31507
|
-
.E_a1wfy30z .ant-input-number-input-wrap::after {
|
|
31508
|
-
content: var(--a1wfy30z-1);
|
|
31509
|
-
display: var(--a1wfy30z-2);
|
|
31510
|
-
flex: none;
|
|
31511
|
-
align-items: center;
|
|
31512
|
-
margin-left: 4px;
|
|
31513
|
-
}
|
|
31514
|
-
.E_a1wfy30z .ant-input-number-input-wrap::before {
|
|
31515
|
-
content: var(--a1wfy30z-3);
|
|
31516
|
-
display: var(--a1wfy30z-4);
|
|
31517
|
-
flex: none;
|
|
31518
|
-
align-items: center;
|
|
31519
|
-
margin-right: 4px;
|
|
31520
|
-
cursor: auto;
|
|
31521
|
-
}
|
|
31522
|
-
.E_a1wfy30z .ant-input-number-input {
|
|
31523
|
-
padding: 0;
|
|
31524
|
-
margin: 0;
|
|
31525
|
-
height: auto;
|
|
31526
|
-
font-size: inherit;
|
|
31527
|
-
}
|
|
31528
|
-
|
|
31529
|
-
.E_s1sck0th {
|
|
31530
|
-
padding: 0 8px;
|
|
31531
|
-
border-radius: 4px;
|
|
31141
|
+
|
|
31142
|
+
.E_s1sck0th {
|
|
31143
|
+
padding: 0 8px;
|
|
31144
|
+
border-radius: 4px;
|
|
31532
31145
|
}
|
|
31533
31146
|
|
|
31534
31147
|
.E_m855nr1 {
|
|
@@ -31598,29 +31211,352 @@ button.E_n7k2c6r {
|
|
|
31598
31211
|
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
31599
31212
|
background-color: #00ba5d;
|
|
31600
31213
|
}
|
|
31601
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
31602
|
-
background-color: #0080ff;
|
|
31214
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
31215
|
+
background-color: #0080ff;
|
|
31216
|
+
}
|
|
31217
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
31218
|
+
background-color: #6b7d99;
|
|
31219
|
+
}
|
|
31220
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
31221
|
+
background-color: #7E41FF;
|
|
31222
|
+
}
|
|
31223
|
+
|
|
31224
|
+
.E_rapgekc.ant-radio-wrapper {
|
|
31225
|
+
display: inline-flex;
|
|
31226
|
+
align-items: baseline;
|
|
31227
|
+
white-space: pre-wrap;
|
|
31228
|
+
}
|
|
31229
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio {
|
|
31230
|
+
position: relative;
|
|
31231
|
+
top: 3px;
|
|
31232
|
+
}
|
|
31233
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
31234
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31235
|
+
}
|
|
31236
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
31237
|
+
border-color: #0080ff;
|
|
31238
|
+
}
|
|
31239
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
31240
|
+
border-color: #0080ff;
|
|
31241
|
+
background: #0080ff;
|
|
31242
|
+
}
|
|
31243
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
31244
|
+
top: 4px;
|
|
31245
|
+
left: 4px;
|
|
31246
|
+
width: 6px;
|
|
31247
|
+
height: 6px;
|
|
31248
|
+
background: #fff;
|
|
31249
|
+
}
|
|
31250
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
31251
|
+
opacity: 0.5;
|
|
31252
|
+
}
|
|
31253
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
31254
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31255
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31256
|
+
}
|
|
31257
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
31258
|
+
background: #00122e;
|
|
31259
|
+
}
|
|
31260
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
31261
|
+
color: #00122e;
|
|
31262
|
+
opacity: 0.5;
|
|
31263
|
+
}
|
|
31264
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
31265
|
+
color: #00122e;
|
|
31266
|
+
}
|
|
31267
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span {
|
|
31268
|
+
display: inline-block;
|
|
31269
|
+
padding: 0;
|
|
31270
|
+
padding-left: 12px;
|
|
31271
|
+
}
|
|
31272
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
31273
|
+
margin-bottom: 0;
|
|
31274
|
+
white-space: pre-wrap;
|
|
31275
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31276
|
+
}
|
|
31277
|
+
.E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
31278
|
+
padding-left: 8px;
|
|
31279
|
+
}
|
|
31280
|
+
|
|
31281
|
+
.E_rp906go .ant-radio-button-wrapper:first-child {
|
|
31282
|
+
border-radius: 5px 0 0 5px;
|
|
31283
|
+
}
|
|
31284
|
+
.E_rp906go .ant-radio-button-wrapper:last-child {
|
|
31285
|
+
border-radius: 0 5px 5px 0;
|
|
31286
|
+
}
|
|
31287
|
+
|
|
31288
|
+
.E_rcc63c8 {
|
|
31289
|
+
color: #00122e;
|
|
31290
|
+
border-color: #ccd4e3;
|
|
31291
|
+
}
|
|
31292
|
+
.E_rcc63c8:first-child {
|
|
31293
|
+
border-color: #a3b4cc;
|
|
31294
|
+
}
|
|
31295
|
+
.E_rcc63c8.ant-radio-button-wrapper {
|
|
31296
|
+
padding: 0 12px;
|
|
31297
|
+
line-height: 32px;
|
|
31298
|
+
height: 32px;
|
|
31299
|
+
}
|
|
31300
|
+
.E_rcc63c8.ant-radio-button-wrapper > span + span {
|
|
31301
|
+
white-space: nowrap;
|
|
31302
|
+
}
|
|
31303
|
+
.ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
|
|
31304
|
+
height: 22px;
|
|
31305
|
+
padding: 0 7px;
|
|
31306
|
+
line-height: 20px;
|
|
31307
|
+
}
|
|
31308
|
+
.E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
|
|
31309
|
+
background: #ccd4e3;
|
|
31310
|
+
}
|
|
31311
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
31312
|
+
background: #0080ff;
|
|
31313
|
+
}
|
|
31314
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
31315
|
+
background: #ccd4e3;
|
|
31316
|
+
opacity: 0.5;
|
|
31317
|
+
}
|
|
31318
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
31319
|
+
border-right-color: #0080ff;
|
|
31320
|
+
}
|
|
31321
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
31322
|
+
border-color: #0080ff;
|
|
31323
|
+
}
|
|
31324
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked {
|
|
31325
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31326
|
+
}
|
|
31327
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled {
|
|
31328
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31329
|
+
border-color: #ccd4e3;
|
|
31330
|
+
opacity: 0.5;
|
|
31331
|
+
}
|
|
31332
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
|
|
31333
|
+
color: #00122e;
|
|
31334
|
+
border-color: #ccd4e3;
|
|
31335
|
+
}
|
|
31336
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
31337
|
+
color: #00122e;
|
|
31338
|
+
border-color: #ccd4e3;
|
|
31339
|
+
background: rgba(172, 186, 211, 0.6);
|
|
31340
|
+
}
|
|
31341
|
+
.E_rcc63c8 .ant-radio-button-input {
|
|
31342
|
+
margin-right: 8px;
|
|
31343
|
+
display: inline;
|
|
31344
|
+
border: none;
|
|
31345
|
+
padding: 0;
|
|
31346
|
+
width: 36px;
|
|
31347
|
+
background: transparent;
|
|
31348
|
+
}
|
|
31349
|
+
.E_rcc63c8 .ant-radio-button-input:focus {
|
|
31350
|
+
box-shadow: none;
|
|
31351
|
+
}
|
|
31352
|
+
.E_rcc63c8 .ant-radio-button-input.ant-input-number {
|
|
31353
|
+
margin-right: 0;
|
|
31354
|
+
width: initial;
|
|
31355
|
+
box-shadow: none;
|
|
31356
|
+
}
|
|
31357
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
31358
|
+
display: none;
|
|
31359
|
+
}
|
|
31360
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
|
|
31361
|
+
display: inline;
|
|
31362
|
+
}
|
|
31363
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
|
|
31364
|
+
display: inline;
|
|
31365
|
+
margin-right: 8px;
|
|
31366
|
+
padding: 0;
|
|
31367
|
+
width: 36px;
|
|
31368
|
+
}
|
|
31369
|
+
|
|
31370
|
+
.E_tju3gfj .date {
|
|
31371
|
+
margin-right: 4px;
|
|
31372
|
+
}
|
|
31373
|
+
|
|
31374
|
+
.E_i11gg7mj .ant-input-prefix {
|
|
31375
|
+
margin-right: 8px;
|
|
31376
|
+
}
|
|
31377
|
+
.E_i11gg7mj .ant-input-suffix {
|
|
31378
|
+
margin-left: 8px;
|
|
31379
|
+
}
|
|
31380
|
+
|
|
31381
|
+
.E_cc368xp {
|
|
31382
|
+
color: #00122e;
|
|
31383
|
+
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
31384
|
+
margin-right: 8px;
|
|
31385
|
+
padding-right: 8px;
|
|
31386
|
+
}
|
|
31387
|
+
|
|
31388
|
+
.E_i11o6xqj {
|
|
31389
|
+
display: flex;
|
|
31390
|
+
gap: 4px;
|
|
31391
|
+
}
|
|
31392
|
+
.E_i11o6xqj .icon-wrapper {
|
|
31393
|
+
cursor: pointer;
|
|
31394
|
+
}
|
|
31395
|
+
|
|
31396
|
+
.E_d19ruhdj.icon-wrapper {
|
|
31397
|
+
cursor: not-allowed;
|
|
31398
|
+
}
|
|
31399
|
+
|
|
31400
|
+
.E_iq1gosr {
|
|
31401
|
+
display: inline-block;
|
|
31402
|
+
}
|
|
31403
|
+
|
|
31404
|
+
.E_fzh9mnb {
|
|
31405
|
+
width: 100%;
|
|
31406
|
+
height: 100%;
|
|
31407
|
+
min-height: 124px;
|
|
31408
|
+
display: flex;
|
|
31409
|
+
flex-direction: column;
|
|
31410
|
+
justify-content: center;
|
|
31411
|
+
align-items: center;
|
|
31412
|
+
}
|
|
31413
|
+
.E_fzh9mnb .error-text {
|
|
31414
|
+
color: rgba(10, 37, 85, 0.6);
|
|
31415
|
+
margin-bottom: 16px;
|
|
31416
|
+
font-size: 18px;
|
|
31417
|
+
}
|
|
31418
|
+
|
|
31419
|
+
.E_f7pxqmh {
|
|
31420
|
+
width: 100%;
|
|
31421
|
+
margin-bottom: 0 !important;
|
|
31422
|
+
flex-flow: nowrap !important;
|
|
31423
|
+
line-break: auto;
|
|
31424
|
+
}
|
|
31425
|
+
.E_f7pxqmh > .ant-form-item-label {
|
|
31426
|
+
text-align: left !important;
|
|
31427
|
+
padding-bottom: 0 !important;
|
|
31428
|
+
}
|
|
31429
|
+
.E_f7pxqmh > .ant-form-item-label > label {
|
|
31430
|
+
min-height: 32px;
|
|
31431
|
+
height: auto;
|
|
31432
|
+
font-size: 13px;
|
|
31433
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31434
|
+
white-space: normal;
|
|
31435
|
+
}
|
|
31436
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
31437
|
+
border-color: #ff4d4f !important;
|
|
31438
|
+
}
|
|
31439
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
31440
|
+
border-color: #ff4d4f !important;
|
|
31441
|
+
}
|
|
31442
|
+
.E_f7pxqmh .ant-form-item-explain {
|
|
31443
|
+
margin-top: 4px;
|
|
31444
|
+
font-size: 12px;
|
|
31445
|
+
min-height: 0px;
|
|
31446
|
+
}
|
|
31447
|
+
.E_f7pxqmh .ant-form-item-extra {
|
|
31448
|
+
font-size: 12px;
|
|
31449
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31450
|
+
min-height: 0px;
|
|
31451
|
+
}
|
|
31452
|
+
|
|
31453
|
+
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
31454
|
+
display: var(--ai7qkf2-0);
|
|
31455
|
+
}
|
|
31456
|
+
.E_ai7qkf2 .ant-input-number-input-wrap {
|
|
31457
|
+
display: inline-flex;
|
|
31458
|
+
line-height: 1.5715;
|
|
31459
|
+
height: 100%;
|
|
31460
|
+
width: 100%;
|
|
31461
|
+
}
|
|
31462
|
+
.E_ai7qkf2 .ant-input-number-input-wrap::after {
|
|
31463
|
+
content: var(--ai7qkf2-1);
|
|
31464
|
+
display: var(--ai7qkf2-2);
|
|
31465
|
+
flex: none;
|
|
31466
|
+
align-items: center;
|
|
31467
|
+
margin-left: 4px;
|
|
31468
|
+
padding: 5px 12px 5px 0;
|
|
31469
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31470
|
+
}
|
|
31471
|
+
.E_ai7qkf2 .ant-input-number-input-wrap::before {
|
|
31472
|
+
content: var(--ai7qkf2-3);
|
|
31473
|
+
display: var(--ai7qkf2-4);
|
|
31474
|
+
flex: none;
|
|
31475
|
+
align-items: center;
|
|
31476
|
+
margin-right: 4px;
|
|
31477
|
+
cursor: auto;
|
|
31478
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31479
|
+
}
|
|
31480
|
+
.ant-input-group.ant-input-group-compact > .E_ai7qkf2 {
|
|
31481
|
+
border-radius: 0;
|
|
31482
|
+
}
|
|
31483
|
+
.E_ai7qkf2.ant-input-number {
|
|
31484
|
+
width: 100%;
|
|
31485
|
+
border-radius: 6px;
|
|
31486
|
+
}
|
|
31487
|
+
.E_ai7qkf2.ant-input-number:not([disabled]):focus, .E_ai7qkf2.ant-input-number:not([disabled]):active, .E_ai7qkf2.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
31488
|
+
border-color: #0096ff;
|
|
31489
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31490
|
+
z-index: 1;
|
|
31491
|
+
}
|
|
31492
|
+
.E_ai7qkf2.ant-input-number.error:not([disabled]):hover, .E_ai7qkf2.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
31493
|
+
border-color: #e75a3a;
|
|
31494
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31495
|
+
}
|
|
31496
|
+
.E_ai7qkf2 .ant-input-number-input {
|
|
31497
|
+
height: 30px;
|
|
31498
|
+
border: 1px;
|
|
31499
|
+
padding: 5px 12px;
|
|
31500
|
+
font-size: inherit;
|
|
31501
|
+
}
|
|
31502
|
+
.E_ai7qkf2.ant-input-number-lg input {
|
|
31503
|
+
height: 38px;
|
|
31504
|
+
border: 1px;
|
|
31505
|
+
padding: 8px 16px;
|
|
31506
|
+
}
|
|
31507
|
+
.E_ai7qkf2.ant-input-number-sm input {
|
|
31508
|
+
height: 22px;
|
|
31509
|
+
border: 1px;
|
|
31510
|
+
padding: 2px 8px;
|
|
31511
|
+
}
|
|
31512
|
+
|
|
31513
|
+
.E_iouxfgt {
|
|
31514
|
+
display: inline-flex;
|
|
31515
|
+
align-items: center;
|
|
31516
|
+
}
|
|
31517
|
+
.E_iouxfgt .icon-inner {
|
|
31518
|
+
display: inline-flex;
|
|
31519
|
+
align-items: center;
|
|
31520
|
+
justify-content: center;
|
|
31521
|
+
}
|
|
31522
|
+
.E_iouxfgt .icon-inner + span,
|
|
31523
|
+
.E_iouxfgt span + .icon-inner.suffix {
|
|
31524
|
+
margin-left: 4px;
|
|
31525
|
+
}
|
|
31526
|
+
.E_iouxfgt.is-rotate img,
|
|
31527
|
+
.E_iouxfgt.is-rotate svg {
|
|
31528
|
+
animation: rotate 680ms linear infinite;
|
|
31603
31529
|
}
|
|
31604
|
-
|
|
31605
|
-
|
|
31530
|
+
|
|
31531
|
+
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
31532
|
+
display: var(--a1wfy30z-0);
|
|
31606
31533
|
}
|
|
31607
|
-
.
|
|
31608
|
-
|
|
31534
|
+
.E_a1wfy30z .ant-input-number-input-wrap {
|
|
31535
|
+
padding: 4px 11px;
|
|
31536
|
+
display: inline-flex;
|
|
31537
|
+
line-height: 1.5715;
|
|
31538
|
+
height: inherit;
|
|
31609
31539
|
}
|
|
31610
|
-
|
|
31611
|
-
|
|
31612
|
-
|
|
31613
|
-
|
|
31614
|
-
min-height: 124px;
|
|
31615
|
-
display: flex;
|
|
31616
|
-
flex-direction: column;
|
|
31617
|
-
justify-content: center;
|
|
31540
|
+
.E_a1wfy30z .ant-input-number-input-wrap::after {
|
|
31541
|
+
content: var(--a1wfy30z-1);
|
|
31542
|
+
display: var(--a1wfy30z-2);
|
|
31543
|
+
flex: none;
|
|
31618
31544
|
align-items: center;
|
|
31545
|
+
margin-left: 4px;
|
|
31619
31546
|
}
|
|
31620
|
-
.
|
|
31621
|
-
|
|
31622
|
-
|
|
31623
|
-
|
|
31547
|
+
.E_a1wfy30z .ant-input-number-input-wrap::before {
|
|
31548
|
+
content: var(--a1wfy30z-3);
|
|
31549
|
+
display: var(--a1wfy30z-4);
|
|
31550
|
+
flex: none;
|
|
31551
|
+
align-items: center;
|
|
31552
|
+
margin-right: 4px;
|
|
31553
|
+
cursor: auto;
|
|
31554
|
+
}
|
|
31555
|
+
.E_a1wfy30z .ant-input-number-input {
|
|
31556
|
+
padding: 0;
|
|
31557
|
+
margin: 0;
|
|
31558
|
+
height: auto;
|
|
31559
|
+
font-size: inherit;
|
|
31624
31560
|
}
|
|
31625
31561
|
|
|
31626
31562
|
.E_i1inqkme {
|
|
@@ -31647,13 +31583,41 @@ button.E_n7k2c6r {
|
|
|
31647
31583
|
visibility: hidden;
|
|
31648
31584
|
}
|
|
31649
31585
|
|
|
31650
|
-
.
|
|
31651
|
-
|
|
31586
|
+
.E_atcz0kf .ant-input-suffix {
|
|
31587
|
+
margin-left: 8px;
|
|
31588
|
+
}
|
|
31589
|
+
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
31590
|
+
padding: 2px 7px 2px 12px;
|
|
31652
31591
|
}
|
|
31653
31592
|
|
|
31654
|
-
.
|
|
31655
|
-
|
|
31656
|
-
|
|
31593
|
+
.E_a1b5xrg3 .user-icon-inner {
|
|
31594
|
+
display: inline-flex;
|
|
31595
|
+
align-items: center;
|
|
31596
|
+
justify-content: center;
|
|
31597
|
+
color: #fff;
|
|
31598
|
+
font-weight: bold;
|
|
31599
|
+
font-size: 12px;
|
|
31600
|
+
width: 24px;
|
|
31601
|
+
height: 24px;
|
|
31602
|
+
border-radius: 50%;
|
|
31603
|
+
background: var(--a1b5xrg3-0);
|
|
31604
|
+
}
|
|
31605
|
+
.E_a1b5xrg3.btn-item {
|
|
31606
|
+
transition: all 160ms ease;
|
|
31607
|
+
cursor: pointer;
|
|
31608
|
+
width: 56px;
|
|
31609
|
+
height: 40px;
|
|
31610
|
+
display: inline-flex;
|
|
31611
|
+
align-items: center;
|
|
31612
|
+
justify-content: center;
|
|
31613
|
+
border-radius: 6px;
|
|
31614
|
+
}
|
|
31615
|
+
.E_a1b5xrg3.btn-item:hover {
|
|
31616
|
+
box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
|
|
31617
|
+
}
|
|
31618
|
+
.E_a1b5xrg3.btn-item:active {
|
|
31619
|
+
transform: translateY(2px);
|
|
31620
|
+
transition: all 320ms ease;
|
|
31657
31621
|
}
|
|
31658
31622
|
|
|
31659
31623
|
.E_dsnbhzf {
|
|
@@ -32131,34 +32095,13 @@ button.E_n7k2c6r {
|
|
|
32131
32095
|
line-height: 12px;
|
|
32132
32096
|
}
|
|
32133
32097
|
|
|
32134
|
-
.
|
|
32135
|
-
display: inline-
|
|
32136
|
-
align-items: center;
|
|
32137
|
-
justify-content: center;
|
|
32138
|
-
color: #fff;
|
|
32139
|
-
font-weight: bold;
|
|
32140
|
-
font-size: 12px;
|
|
32141
|
-
width: 24px;
|
|
32142
|
-
height: 24px;
|
|
32143
|
-
border-radius: 50%;
|
|
32144
|
-
background: var(--a1b5xrg3-0);
|
|
32145
|
-
}
|
|
32146
|
-
.E_a1b5xrg3.btn-item {
|
|
32147
|
-
transition: all 160ms ease;
|
|
32148
|
-
cursor: pointer;
|
|
32149
|
-
width: 56px;
|
|
32150
|
-
height: 40px;
|
|
32151
|
-
display: inline-flex;
|
|
32152
|
-
align-items: center;
|
|
32153
|
-
justify-content: center;
|
|
32154
|
-
border-radius: 6px;
|
|
32155
|
-
}
|
|
32156
|
-
.E_a1b5xrg3.btn-item:hover {
|
|
32157
|
-
box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
|
|
32098
|
+
.E_owd0kml {
|
|
32099
|
+
display: inline-block;
|
|
32158
32100
|
}
|
|
32159
|
-
|
|
32160
|
-
|
|
32161
|
-
|
|
32101
|
+
|
|
32102
|
+
.E_h1jsgezc {
|
|
32103
|
+
visibility: hidden;
|
|
32104
|
+
position: absolute;
|
|
32162
32105
|
}
|
|
32163
32106
|
|
|
32164
32107
|
.E_m196gn1d {
|
|
@@ -32767,12 +32710,12 @@ input.E_rf8rlle.ant-input {
|
|
|
32767
32710
|
border-bottom-left-radius: 0;
|
|
32768
32711
|
}
|
|
32769
32712
|
|
|
32770
|
-
.E_llt2k48.ant-select, .E_llt2k48.ant-select .ant-select-selector {
|
|
32713
|
+
.E_llt2k48.ant-select.select, .E_llt2k48.ant-select.select .ant-select-selector {
|
|
32771
32714
|
border-top-right-radius: 0;
|
|
32772
32715
|
border-bottom-right-radius: 0;
|
|
32773
32716
|
}
|
|
32774
32717
|
|
|
32775
|
-
.E_rdwz7eh.ant-select, .E_rdwz7eh.ant-select .ant-select-selector {
|
|
32718
|
+
.E_rdwz7eh.ant-select.select, .E_rdwz7eh.ant-select.select .ant-select-selector {
|
|
32776
32719
|
border-top-left-radius: 0;
|
|
32777
32720
|
border-bottom-left-radius: 0;
|
|
32778
32721
|
}
|
|
@@ -32842,22 +32785,231 @@ input.E_rf8rlle.ant-input {
|
|
|
32842
32785
|
line-height: 20px;
|
|
32843
32786
|
display: flex;
|
|
32844
32787
|
align-items: center;
|
|
32845
|
-
word-break: break-all;
|
|
32788
|
+
word-break: break-all;
|
|
32789
|
+
}
|
|
32790
|
+
.E_c3cobmo .title {
|
|
32791
|
+
font-weight: 700;
|
|
32792
|
+
line-height: 18px;
|
|
32793
|
+
margin: 4px 0;
|
|
32794
|
+
}
|
|
32795
|
+
|
|
32796
|
+
.E_uqv57uv {
|
|
32797
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
32798
|
+
}
|
|
32799
|
+
|
|
32800
|
+
.E_h1ol2wl7 {
|
|
32801
|
+
font-weight: bold;
|
|
32802
|
+
background-color: unset;
|
|
32803
|
+
padding: unset;
|
|
32804
|
+
}
|
|
32805
|
+
|
|
32806
|
+
.E_s17wv897.ant-select, .E_s17wv897.ant-select .ant-select-selector {
|
|
32807
|
+
border-radius: 6px;
|
|
32808
|
+
}
|
|
32809
|
+
.E_s17wv897.ant-select.ant-select-single {
|
|
32810
|
+
width: 100%;
|
|
32811
|
+
color: #2d3a56;
|
|
32812
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
32813
|
+
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
32814
|
+
font-size: 13px;
|
|
32815
|
+
}
|
|
32816
|
+
.E_s17wv897.ant-select.ant-select-single[data-size=middle] {
|
|
32817
|
+
height: 30px;
|
|
32818
|
+
}
|
|
32819
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-lg {
|
|
32820
|
+
height: 38px;
|
|
32821
|
+
font-size: 13px;
|
|
32822
|
+
}
|
|
32823
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
|
|
32824
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
32825
|
+
transition: 160ms ease;
|
|
32826
|
+
}
|
|
32827
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
32828
|
+
color: #0080ff;
|
|
32829
|
+
}
|
|
32830
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
32831
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
32832
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
32833
|
+
}
|
|
32834
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
32835
|
+
color: #0080ff;
|
|
32836
|
+
}
|
|
32837
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
32838
|
+
border-color: #0080ff;
|
|
32839
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
32840
|
+
}
|
|
32841
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
32842
|
+
transform: rotate(180deg);
|
|
32843
|
+
}
|
|
32844
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
32845
|
+
background: rgba(211, 218, 235, 0.6);
|
|
32846
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
32847
|
+
cursor: "not-allowed";
|
|
32848
|
+
}
|
|
32849
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
32850
|
+
border-color: #f0483e !important;
|
|
32851
|
+
}
|
|
32852
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
32853
|
+
color: #1d326c;
|
|
32854
|
+
}
|
|
32855
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
32856
|
+
border-color: #0080ff;
|
|
32857
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
32858
|
+
}
|
|
32859
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
32860
|
+
transform: rotate(180deg);
|
|
32861
|
+
}
|
|
32862
|
+
|
|
32863
|
+
.E_s4ivdfu.ant-select .ant-select-selection-placeholder {
|
|
32864
|
+
opacity: 1;
|
|
32865
|
+
}
|
|
32866
|
+
.E_s4ivdfu.ant-select.select-loading-value {
|
|
32867
|
+
pointer-events: none;
|
|
32868
|
+
}
|
|
32869
|
+
|
|
32870
|
+
.E_sks9xr8.ant-select .select-hover-suffix,
|
|
32871
|
+
.E_sks9xr8.ant-select .select-active-suffix,
|
|
32872
|
+
.E_sks9xr8.ant-select .select-expanded-suffix,
|
|
32873
|
+
.E_sks9xr8.ant-select .select-expanded-search-suffix,
|
|
32874
|
+
.E_sks9xr8.ant-select .select-focus-suffix,
|
|
32875
|
+
.E_sks9xr8.ant-select .select-error-suffix,
|
|
32876
|
+
.E_sks9xr8.ant-select .select-error-hover-suffix,
|
|
32877
|
+
.E_sks9xr8.ant-select .select-error-active-suffix,
|
|
32878
|
+
.E_sks9xr8.ant-select .select-error-expanded-suffix,
|
|
32879
|
+
.E_sks9xr8.ant-select .select-error-expanded-search-suffix,
|
|
32880
|
+
.E_sks9xr8.ant-select .select-error-focus-suffix {
|
|
32881
|
+
display: none;
|
|
32882
|
+
width: 16px;
|
|
32883
|
+
height: 16px;
|
|
32884
|
+
}
|
|
32885
|
+
.E_sks9xr8.ant-select.ant-select-disabled .select-suffix {
|
|
32886
|
+
opacity: 0.5;
|
|
32887
|
+
}
|
|
32888
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-suffix {
|
|
32889
|
+
display: none;
|
|
32890
|
+
}
|
|
32891
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-expanded-search-suffix {
|
|
32892
|
+
display: inline;
|
|
32893
|
+
}
|
|
32894
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-suffix {
|
|
32895
|
+
display: none;
|
|
32896
|
+
}
|
|
32897
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-expanded-suffix {
|
|
32898
|
+
display: inline;
|
|
32899
|
+
}
|
|
32900
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-suffix {
|
|
32901
|
+
display: none;
|
|
32902
|
+
}
|
|
32903
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-hover-suffix {
|
|
32904
|
+
display: inline;
|
|
32905
|
+
}
|
|
32906
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-suffix {
|
|
32907
|
+
display: none;
|
|
32908
|
+
}
|
|
32909
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-active-suffix {
|
|
32910
|
+
display: inline;
|
|
32911
|
+
}
|
|
32912
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-suffix {
|
|
32913
|
+
display: none;
|
|
32914
|
+
}
|
|
32915
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-focus-suffix {
|
|
32916
|
+
display: inline;
|
|
32917
|
+
}
|
|
32918
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-suffix {
|
|
32919
|
+
display: none;
|
|
32920
|
+
}
|
|
32921
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-error-expanded-search-suffix {
|
|
32922
|
+
display: inline;
|
|
32923
|
+
}
|
|
32924
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-suffix {
|
|
32925
|
+
display: none;
|
|
32926
|
+
}
|
|
32927
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-error-expanded-suffix {
|
|
32928
|
+
display: inline;
|
|
32929
|
+
}
|
|
32930
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-suffix {
|
|
32931
|
+
display: none;
|
|
32932
|
+
}
|
|
32933
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-error-suffix {
|
|
32934
|
+
display: inline;
|
|
32935
|
+
}
|
|
32936
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-suffix,
|
|
32937
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-suffix {
|
|
32938
|
+
display: none;
|
|
32939
|
+
}
|
|
32940
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-hover-suffix {
|
|
32941
|
+
display: inline;
|
|
32942
|
+
}
|
|
32943
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-suffix,
|
|
32944
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-suffix {
|
|
32945
|
+
display: none;
|
|
32946
|
+
}
|
|
32947
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-active-suffix {
|
|
32948
|
+
display: inline;
|
|
32949
|
+
}
|
|
32950
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-suffix,
|
|
32951
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-suffix {
|
|
32952
|
+
display: none;
|
|
32953
|
+
}
|
|
32954
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
|
|
32955
|
+
display: inline;
|
|
32956
|
+
}
|
|
32957
|
+
|
|
32958
|
+
.E_swwhohx.ant-select .ant-select-selector {
|
|
32959
|
+
padding: 0 7px 0 12px;
|
|
32960
|
+
}
|
|
32961
|
+
.E_swwhohx.ant-select .ant-select-arrow {
|
|
32962
|
+
right: 8px;
|
|
32963
|
+
top: 50%;
|
|
32964
|
+
margin-top: -8px;
|
|
32965
|
+
width: 16px;
|
|
32966
|
+
height: 16px;
|
|
32967
|
+
display: flex;
|
|
32968
|
+
align-items: center;
|
|
32969
|
+
}
|
|
32970
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
|
|
32971
|
+
padding: 0 11px 0 16px;
|
|
32972
|
+
}
|
|
32973
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
|
|
32974
|
+
right: 12px;
|
|
32975
|
+
}
|
|
32976
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
|
|
32977
|
+
padding: 0 3px 0 8px;
|
|
32978
|
+
}
|
|
32979
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
|
|
32980
|
+
right: 4px;
|
|
32981
|
+
}
|
|
32982
|
+
.E_swwhohx.ant-select .ant-select-selection-item {
|
|
32983
|
+
padding-right: 24px;
|
|
32984
|
+
}
|
|
32985
|
+
|
|
32986
|
+
.E_p2sxmsl {
|
|
32987
|
+
color: rgba(0, 21, 64, 0.3);
|
|
32988
|
+
}
|
|
32989
|
+
|
|
32990
|
+
.E_oa99sl3 {
|
|
32991
|
+
display: flex;
|
|
32992
|
+
justify-content: space-between;
|
|
32993
|
+
align-items: center;
|
|
32994
|
+
gap: 8px;
|
|
32846
32995
|
}
|
|
32847
|
-
.
|
|
32848
|
-
|
|
32849
|
-
line-height:
|
|
32850
|
-
margin: 4px 0;
|
|
32996
|
+
.E_oa99sl3,
|
|
32997
|
+
.E_oa99sl3 :first-child {
|
|
32998
|
+
line-height: inherit !important;
|
|
32851
32999
|
}
|
|
32852
33000
|
|
|
32853
|
-
.
|
|
32854
|
-
|
|
33001
|
+
.E_lvp5pj7 {
|
|
33002
|
+
display: flex;
|
|
33003
|
+
justify-content: space-between;
|
|
33004
|
+
align-items: center;
|
|
33005
|
+
gap: 8px;
|
|
33006
|
+
min-width: 0;
|
|
32855
33007
|
}
|
|
32856
33008
|
|
|
32857
|
-
.
|
|
32858
|
-
|
|
32859
|
-
|
|
32860
|
-
|
|
33009
|
+
.E_s1io1lws {
|
|
33010
|
+
display: flex;
|
|
33011
|
+
align-items: center;
|
|
33012
|
+
flex-shrink: 0;
|
|
32861
33013
|
}
|
|
32862
33014
|
|
|
32863
33015
|
.E_suhck3k {
|
|
@@ -32889,6 +33041,21 @@ input.E_rf8rlle.ant-input {
|
|
|
32889
33041
|
margin-right: 6px;
|
|
32890
33042
|
}
|
|
32891
33043
|
|
|
33044
|
+
.E_w1dxz879 {
|
|
33045
|
+
display: flex;
|
|
33046
|
+
flex-direction: column;
|
|
33047
|
+
gap: 6px;
|
|
33048
|
+
}
|
|
33049
|
+
.E_w1dxz879 .ellipsis-tooltip {
|
|
33050
|
+
max-height: var(--w1dxz879-0);
|
|
33051
|
+
text-overflow: clip;
|
|
33052
|
+
overflow: hidden;
|
|
33053
|
+
}
|
|
33054
|
+
.E_w1dxz879 .tips {
|
|
33055
|
+
color: #fff;
|
|
33056
|
+
opacity: 0.8;
|
|
33057
|
+
}
|
|
33058
|
+
|
|
32892
33059
|
.E_hrhfj7c {
|
|
32893
33060
|
display: none;
|
|
32894
33061
|
}
|
|
@@ -33108,21 +33275,6 @@ input.E_rf8rlle.ant-input {
|
|
|
33108
33275
|
font-size: 14px;
|
|
33109
33276
|
}
|
|
33110
33277
|
|
|
33111
|
-
.E_w1dxz879 {
|
|
33112
|
-
display: flex;
|
|
33113
|
-
flex-direction: column;
|
|
33114
|
-
gap: 6px;
|
|
33115
|
-
}
|
|
33116
|
-
.E_w1dxz879 .ellipsis-tooltip {
|
|
33117
|
-
max-height: var(--w1dxz879-0);
|
|
33118
|
-
text-overflow: clip;
|
|
33119
|
-
overflow: hidden;
|
|
33120
|
-
}
|
|
33121
|
-
.E_w1dxz879 .tips {
|
|
33122
|
-
color: #fff;
|
|
33123
|
-
opacity: 0.8;
|
|
33124
|
-
}
|
|
33125
|
-
|
|
33126
33278
|
.E_h12yihis {
|
|
33127
33279
|
height: 50px;
|
|
33128
33280
|
border-bottom: 2px solid #edf0f7;
|
|
@@ -33820,114 +33972,6 @@ input.E_rf8rlle.ant-input {
|
|
|
33820
33972
|
padding: 0;
|
|
33821
33973
|
}
|
|
33822
33974
|
|
|
33823
|
-
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
33824
|
-
margin-right: 2px;
|
|
33825
|
-
}
|
|
33826
|
-
|
|
33827
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
33828
|
-
padding-left: 8px;
|
|
33829
|
-
padding-right: 8px;
|
|
33830
|
-
}
|
|
33831
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
33832
|
-
border-radius: 4px;
|
|
33833
|
-
}
|
|
33834
|
-
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
33835
|
-
border-radius: 4px;
|
|
33836
|
-
}
|
|
33837
|
-
|
|
33838
|
-
.E_ma64lna .antd5-segmented-item-label {
|
|
33839
|
-
padding-left: 12px;
|
|
33840
|
-
padding-right: 12px;
|
|
33841
|
-
}
|
|
33842
|
-
|
|
33843
|
-
.E_ckld275 {
|
|
33844
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
33845
|
-
}
|
|
33846
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
33847
|
-
background-color: rgba(255, 255, 255, 0.6);
|
|
33848
|
-
color: rgba(44, 56, 82, 0.75);
|
|
33849
|
-
}
|
|
33850
|
-
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
33851
|
-
background-color: transparent;
|
|
33852
|
-
}
|
|
33853
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
33854
|
-
background-color: transparent;
|
|
33855
|
-
}
|
|
33856
|
-
|
|
33857
|
-
.E_l12xdkhl {
|
|
33858
|
-
width: 64px;
|
|
33859
|
-
height: 64px;
|
|
33860
|
-
max-width: 64px;
|
|
33861
|
-
max-height: 64px;
|
|
33862
|
-
overflow: hidden;
|
|
33863
|
-
display: flex;
|
|
33864
|
-
align-items: center;
|
|
33865
|
-
justify-content: center;
|
|
33866
|
-
position: relative;
|
|
33867
|
-
opacity: 0.6;
|
|
33868
|
-
}
|
|
33869
|
-
.E_l12xdkhl .icon-wrapper {
|
|
33870
|
-
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
33871
|
-
}
|
|
33872
|
-
@keyframes rotate {
|
|
33873
|
-
from {
|
|
33874
|
-
transform: rotate(0deg);
|
|
33875
|
-
}
|
|
33876
|
-
to {
|
|
33877
|
-
transform: rotate(360deg);
|
|
33878
|
-
}
|
|
33879
|
-
}
|
|
33880
|
-
|
|
33881
|
-
button.E_l48ei06.ant-btn {
|
|
33882
|
-
font-size: 12px;
|
|
33883
|
-
line-height: 18px;
|
|
33884
|
-
height: 18px;
|
|
33885
|
-
}
|
|
33886
|
-
|
|
33887
|
-
button.E_l48ei06 {
|
|
33888
|
-
color: #0080FF;
|
|
33889
|
-
height: unset;
|
|
33890
|
-
}
|
|
33891
|
-
button.E_l48ei06 .button-prefix-icon {
|
|
33892
|
-
margin-right: 4px;
|
|
33893
|
-
}
|
|
33894
|
-
button.E_l48ei06 .button-suffix-icon {
|
|
33895
|
-
margin-left: 4px;
|
|
33896
|
-
}
|
|
33897
|
-
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
33898
|
-
color: #009DFF;
|
|
33899
|
-
}
|
|
33900
|
-
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
33901
|
-
color: #005ED1;
|
|
33902
|
-
}
|
|
33903
|
-
button.E_l48ei06.ui-kit-link-disabled {
|
|
33904
|
-
color: #0080FF;
|
|
33905
|
-
}
|
|
33906
|
-
button.E_l48ei06.ui-kit-link-primary {
|
|
33907
|
-
color: #00122E;
|
|
33908
|
-
}
|
|
33909
|
-
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
33910
|
-
color: #0080FF;
|
|
33911
|
-
}
|
|
33912
|
-
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
33913
|
-
color: #005ED1;
|
|
33914
|
-
}
|
|
33915
|
-
button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
|
|
33916
|
-
color: #00122E;
|
|
33917
|
-
}
|
|
33918
|
-
button.E_l48ei06.ui-kit-link-secondary {
|
|
33919
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
33920
|
-
}
|
|
33921
|
-
button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
|
|
33922
|
-
color: #0080FF;
|
|
33923
|
-
}
|
|
33924
|
-
button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
|
|
33925
|
-
color: #005ED1;
|
|
33926
|
-
}
|
|
33927
|
-
button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
33928
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
33929
|
-
}
|
|
33930
|
-
|
|
33931
33975
|
.E_c1yd35n {
|
|
33932
33976
|
padding: 0 12px 14px 12px;
|
|
33933
33977
|
}
|
|
@@ -33972,6 +34016,57 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
33972
34016
|
margin-right: 2px;
|
|
33973
34017
|
}
|
|
33974
34018
|
|
|
34019
|
+
.E_b14q2gmw {
|
|
34020
|
+
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);
|
|
34021
|
+
}
|
|
34022
|
+
|
|
34023
|
+
.E_c1eym6el {
|
|
34024
|
+
border-radius: 8px;
|
|
34025
|
+
background-color: white;
|
|
34026
|
+
}
|
|
34027
|
+
.E_c1eym6el.hoverable {
|
|
34028
|
+
cursor: pointer;
|
|
34029
|
+
}
|
|
34030
|
+
.E_c1eym6el.hoverable:hover {
|
|
34031
|
+
transition: all 200ms ease;
|
|
34032
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
34033
|
+
transform: translateY(-4px);
|
|
34034
|
+
}
|
|
34035
|
+
|
|
34036
|
+
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
34037
|
+
margin-right: 2px;
|
|
34038
|
+
}
|
|
34039
|
+
|
|
34040
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
34041
|
+
padding-left: 8px;
|
|
34042
|
+
padding-right: 8px;
|
|
34043
|
+
}
|
|
34044
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
34045
|
+
border-radius: 4px;
|
|
34046
|
+
}
|
|
34047
|
+
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34048
|
+
border-radius: 4px;
|
|
34049
|
+
}
|
|
34050
|
+
|
|
34051
|
+
.E_ma64lna .antd5-segmented-item-label {
|
|
34052
|
+
padding-left: 12px;
|
|
34053
|
+
padding-right: 12px;
|
|
34054
|
+
}
|
|
34055
|
+
|
|
34056
|
+
.E_ckld275 {
|
|
34057
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
34058
|
+
}
|
|
34059
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34060
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
34061
|
+
color: rgba(44, 56, 82, 0.75);
|
|
34062
|
+
}
|
|
34063
|
+
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34064
|
+
background-color: transparent;
|
|
34065
|
+
}
|
|
34066
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
34067
|
+
background-color: transparent;
|
|
34068
|
+
}
|
|
34069
|
+
|
|
33975
34070
|
.E_ckui4s7 {
|
|
33976
34071
|
color: #2d3a56;
|
|
33977
34072
|
line-height: 22px;
|
|
@@ -34085,21 +34180,78 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34085
34180
|
animation: loading-indicator3 1100ms ease-out infinite;
|
|
34086
34181
|
}
|
|
34087
34182
|
|
|
34088
|
-
.
|
|
34089
|
-
|
|
34183
|
+
button.E_l48ei06.ant-btn {
|
|
34184
|
+
font-size: 12px;
|
|
34185
|
+
line-height: 18px;
|
|
34186
|
+
height: 18px;
|
|
34187
|
+
}
|
|
34188
|
+
|
|
34189
|
+
button.E_l48ei06 {
|
|
34190
|
+
color: #0080FF;
|
|
34191
|
+
height: unset;
|
|
34192
|
+
}
|
|
34193
|
+
button.E_l48ei06 .button-prefix-icon {
|
|
34194
|
+
margin-right: 4px;
|
|
34195
|
+
}
|
|
34196
|
+
button.E_l48ei06 .button-suffix-icon {
|
|
34197
|
+
margin-left: 4px;
|
|
34198
|
+
}
|
|
34199
|
+
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
34200
|
+
color: #009DFF;
|
|
34201
|
+
}
|
|
34202
|
+
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
34203
|
+
color: #005ED1;
|
|
34204
|
+
}
|
|
34205
|
+
button.E_l48ei06.ui-kit-link-disabled {
|
|
34206
|
+
color: #0080FF;
|
|
34207
|
+
}
|
|
34208
|
+
button.E_l48ei06.ui-kit-link-primary {
|
|
34209
|
+
color: #00122E;
|
|
34210
|
+
}
|
|
34211
|
+
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
34212
|
+
color: #0080FF;
|
|
34213
|
+
}
|
|
34214
|
+
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
34215
|
+
color: #005ED1;
|
|
34216
|
+
}
|
|
34217
|
+
button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
|
|
34218
|
+
color: #00122E;
|
|
34219
|
+
}
|
|
34220
|
+
button.E_l48ei06.ui-kit-link-secondary {
|
|
34221
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
34222
|
+
}
|
|
34223
|
+
button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
|
|
34224
|
+
color: #0080FF;
|
|
34225
|
+
}
|
|
34226
|
+
button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
|
|
34227
|
+
color: #005ED1;
|
|
34228
|
+
}
|
|
34229
|
+
button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
34230
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
34090
34231
|
}
|
|
34091
34232
|
|
|
34092
|
-
.
|
|
34093
|
-
|
|
34094
|
-
|
|
34233
|
+
.E_l12xdkhl {
|
|
34234
|
+
width: 64px;
|
|
34235
|
+
height: 64px;
|
|
34236
|
+
max-width: 64px;
|
|
34237
|
+
max-height: 64px;
|
|
34238
|
+
overflow: hidden;
|
|
34239
|
+
display: flex;
|
|
34240
|
+
align-items: center;
|
|
34241
|
+
justify-content: center;
|
|
34242
|
+
position: relative;
|
|
34243
|
+
opacity: 0.6;
|
|
34095
34244
|
}
|
|
34096
|
-
.
|
|
34097
|
-
|
|
34245
|
+
.E_l12xdkhl .icon-wrapper {
|
|
34246
|
+
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
34098
34247
|
}
|
|
34099
|
-
|
|
34100
|
-
|
|
34101
|
-
|
|
34102
|
-
|
|
34248
|
+
@keyframes rotate {
|
|
34249
|
+
from {
|
|
34250
|
+
transform: rotate(0deg);
|
|
34251
|
+
}
|
|
34252
|
+
to {
|
|
34253
|
+
transform: rotate(360deg);
|
|
34254
|
+
}
|
|
34103
34255
|
}
|
|
34104
34256
|
|
|
34105
34257
|
.E_tc97u5y {
|
|
@@ -34547,59 +34699,260 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34547
34699
|
display: inline-block;
|
|
34548
34700
|
}
|
|
34549
34701
|
|
|
34702
|
+
.E_r77hffu {
|
|
34703
|
+
display: flex;
|
|
34704
|
+
align-items: center;
|
|
34705
|
+
justify-content: space-between;
|
|
34706
|
+
column-gap: 6px;
|
|
34707
|
+
}
|
|
34708
|
+
|
|
34709
|
+
.E_p1cmxsf7 {
|
|
34710
|
+
display: flex;
|
|
34711
|
+
flex-direction: column;
|
|
34712
|
+
justify-content: center;
|
|
34713
|
+
row-gap: var(--p1cmxsf7-0);
|
|
34714
|
+
}
|
|
34715
|
+
.E_p1cmxsf7 .antd5-progress-line {
|
|
34716
|
+
font-size: 0;
|
|
34717
|
+
}
|
|
34718
|
+
|
|
34550
34719
|
.E_w7ob4th.outside-tag {
|
|
34551
34720
|
padding-left: 0;
|
|
34552
34721
|
}
|
|
34553
|
-
.E_w7ob4th.outside-tag .inside-tag {
|
|
34554
|
-
border-radius: 4px 0 0 4px;
|
|
34555
|
-
padding-right: 4px;
|
|
34556
|
-
margin-right: 4px;
|
|
34722
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
34723
|
+
border-radius: 4px 0 0 4px;
|
|
34724
|
+
padding-right: 4px;
|
|
34725
|
+
margin-right: 4px;
|
|
34726
|
+
}
|
|
34727
|
+
|
|
34728
|
+
.E_slr2ynn {
|
|
34729
|
+
padding: 0 8px;
|
|
34730
|
+
height: 18px;
|
|
34731
|
+
}
|
|
34732
|
+
|
|
34733
|
+
.E_m140wbb6 {
|
|
34734
|
+
padding: 2px 8px;
|
|
34735
|
+
height: 24px;
|
|
34736
|
+
}
|
|
34737
|
+
|
|
34738
|
+
.E_t1fozc1i {
|
|
34739
|
+
margin: 0;
|
|
34740
|
+
}
|
|
34741
|
+
|
|
34742
|
+
.E_i1vxv4ln {
|
|
34743
|
+
margin-right: 4px;
|
|
34744
|
+
height: 16px;
|
|
34745
|
+
}
|
|
34746
|
+
|
|
34747
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
34748
|
+
font-weight: 700;
|
|
34749
|
+
color: #00122e;
|
|
34750
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
34751
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
34752
|
+
word-break: break-all;
|
|
34753
|
+
display: inline;
|
|
34754
|
+
white-space: normal;
|
|
34755
|
+
}
|
|
34756
|
+
|
|
34757
|
+
.E_i1g85yz3 {
|
|
34758
|
+
margin-right: 4px;
|
|
34759
|
+
height: 16px;
|
|
34760
|
+
}
|
|
34761
|
+
|
|
34762
|
+
.E_t1dtlqs1 {
|
|
34763
|
+
margin-bottom: 4px;
|
|
34764
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34765
|
+
}
|
|
34766
|
+
|
|
34767
|
+
.E_s1ese5oy {
|
|
34768
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34769
|
+
line-height: 32px;
|
|
34770
|
+
height: 32px;
|
|
34771
|
+
margin-bottom: 0;
|
|
34772
|
+
}
|
|
34773
|
+
.E_s1ese5oy.primary, .E_s1ese5oy.info {
|
|
34774
|
+
color: #0080ff;
|
|
34775
|
+
}
|
|
34776
|
+
.E_s1ese5oy.warning {
|
|
34777
|
+
color: #ffa500;
|
|
34778
|
+
}
|
|
34779
|
+
.E_s1ese5oy.success {
|
|
34780
|
+
color: #00ba5d;
|
|
34781
|
+
}
|
|
34782
|
+
.E_s1ese5oy.danger, .E_s1ese5oy.error {
|
|
34783
|
+
color: #f0483e;
|
|
34784
|
+
}
|
|
34785
|
+
.E_s1ese5oy.normal {
|
|
34786
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34787
|
+
}
|
|
34788
|
+
|
|
34789
|
+
.E_b1ibis43 {
|
|
34790
|
+
margin-bottom: 0;
|
|
34791
|
+
color: #00122e;
|
|
34792
|
+
}
|
|
34793
|
+
|
|
34794
|
+
.E_b11xxjd2 {
|
|
34795
|
+
line-height: 32px;
|
|
34796
|
+
margin-right: 6px;
|
|
34797
|
+
}
|
|
34798
|
+
|
|
34799
|
+
.E_bsub5bw.with-description {
|
|
34800
|
+
height: 24px;
|
|
34801
|
+
flex: 1;
|
|
34802
|
+
position: relative;
|
|
34803
|
+
top: -7px;
|
|
34804
|
+
}
|
|
34805
|
+
.E_bsub5bw p {
|
|
34806
|
+
width: 100%;
|
|
34807
|
+
overflow: hidden;
|
|
34808
|
+
text-overflow: ellipsis;
|
|
34809
|
+
white-space: nowrap;
|
|
34810
|
+
}
|
|
34811
|
+
|
|
34812
|
+
.E_tmoyoag {
|
|
34813
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
34814
|
+
border-radius: 8px;
|
|
34815
|
+
overflow: auto;
|
|
34816
|
+
}
|
|
34817
|
+
.E_tmoyoag .ant-list {
|
|
34818
|
+
position: relative;
|
|
34819
|
+
}
|
|
34820
|
+
.E_tmoyoag .ant-list .ant-list-item:last-child {
|
|
34821
|
+
border-bottom: none;
|
|
34822
|
+
}
|
|
34823
|
+
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
34824
|
+
position: sticky;
|
|
34825
|
+
top: 0;
|
|
34826
|
+
z-index: 2;
|
|
34827
|
+
display: flex;
|
|
34828
|
+
padding: 8px;
|
|
34829
|
+
flex-wrap: nowrap;
|
|
34830
|
+
justify-content: flex-start;
|
|
34831
|
+
background: #f2f5fa;
|
|
34832
|
+
font-size: 14px;
|
|
34833
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34834
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
34835
|
+
}
|
|
34836
|
+
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
34837
|
+
align-items: inherit;
|
|
34838
|
+
}
|
|
34839
|
+
.E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
|
|
34840
|
+
margin-bottom: 0;
|
|
34841
|
+
}
|
|
34842
|
+
.E_tmoyoag .ant-list .eagle-table-form-row {
|
|
34843
|
+
display: flex;
|
|
34844
|
+
justify-content: flex-start;
|
|
34845
|
+
align-items: flex-start;
|
|
34846
|
+
flex-wrap: wrap;
|
|
34847
|
+
padding: 8px;
|
|
34848
|
+
border: none;
|
|
34849
|
+
}
|
|
34850
|
+
.E_tmoyoag .ant-list .eagle-table-form-row .row-description {
|
|
34851
|
+
flex-basis: 100%;
|
|
34852
|
+
margin: 12px 0 0;
|
|
34853
|
+
order: 99;
|
|
34854
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34855
|
+
}
|
|
34856
|
+
.E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
|
|
34857
|
+
color: #f0483e;
|
|
34858
|
+
flex-basis: 100%;
|
|
34859
|
+
order: 98;
|
|
34860
|
+
margin: 12px 0 0;
|
|
34861
|
+
}
|
|
34862
|
+
.E_tmoyoag .ant-list .eagle-table-form-row:hover {
|
|
34863
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
34864
|
+
}
|
|
34865
|
+
.E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
|
|
34866
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
34867
|
+
}
|
|
34868
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell {
|
|
34869
|
+
flex: 1 0 0;
|
|
34870
|
+
overflow: hidden;
|
|
34871
|
+
}
|
|
34872
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
|
|
34873
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34874
|
+
margin: 0;
|
|
34875
|
+
}
|
|
34876
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
|
|
34877
|
+
text-align: center;
|
|
34878
|
+
}
|
|
34879
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
|
|
34880
|
+
text-align: center;
|
|
34881
|
+
}
|
|
34882
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
|
|
34883
|
+
text-align: left;
|
|
34884
|
+
}
|
|
34885
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content > * {
|
|
34886
|
+
text-align: left;
|
|
34887
|
+
}
|
|
34888
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
|
|
34889
|
+
text-align: right;
|
|
34890
|
+
}
|
|
34891
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content > * {
|
|
34892
|
+
text-align: right;
|
|
34893
|
+
}
|
|
34894
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
34895
|
+
margin-right: 8px;
|
|
34896
|
+
}
|
|
34897
|
+
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
34898
|
+
padding: 4px;
|
|
34899
|
+
width: 24px;
|
|
34900
|
+
height: 24px;
|
|
34901
|
+
overflow: hidden;
|
|
34902
|
+
}
|
|
34903
|
+
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
34904
|
+
padding: 0;
|
|
34905
|
+
}
|
|
34906
|
+
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
34907
|
+
cursor: not-allowed;
|
|
34908
|
+
opacity: 0.5;
|
|
34909
|
+
}
|
|
34910
|
+
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
34911
|
+
margin: 0;
|
|
34912
|
+
}
|
|
34913
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
34914
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
34915
|
+
border-radius: 5px;
|
|
34916
|
+
font-size: 12px;
|
|
34917
|
+
}
|
|
34918
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
34919
|
+
font-size: inherit;
|
|
34920
|
+
}
|
|
34921
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
34922
|
+
min-height: 24px;
|
|
34923
|
+
font-size: 12px;
|
|
34924
|
+
position: relative;
|
|
34925
|
+
}
|
|
34926
|
+
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
34927
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
34928
|
+
}
|
|
34929
|
+
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
34930
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
34557
34931
|
}
|
|
34558
34932
|
|
|
34559
|
-
.
|
|
34933
|
+
.E_a138syjm {
|
|
34560
34934
|
display: flex;
|
|
34561
34935
|
align-items: center;
|
|
34562
|
-
|
|
34563
|
-
column-gap: 6px;
|
|
34564
|
-
}
|
|
34565
|
-
|
|
34566
|
-
.E_p1cmxsf7 {
|
|
34567
|
-
display: flex;
|
|
34568
|
-
flex-direction: column;
|
|
34569
|
-
justify-content: center;
|
|
34570
|
-
row-gap: var(--p1cmxsf7-0);
|
|
34571
|
-
}
|
|
34572
|
-
.E_p1cmxsf7 .antd5-progress-line {
|
|
34573
|
-
font-size: 0;
|
|
34574
|
-
}
|
|
34575
|
-
|
|
34576
|
-
.E_slr2ynn {
|
|
34577
|
-
padding: 0 8px;
|
|
34578
|
-
height: 18px;
|
|
34936
|
+
margin-top: 8px;
|
|
34579
34937
|
}
|
|
34580
|
-
|
|
34581
|
-
.E_m140wbb6 {
|
|
34938
|
+
.E_a138syjm button.ant-btn {
|
|
34582
34939
|
padding: 2px 8px;
|
|
34583
34940
|
height: 24px;
|
|
34584
34941
|
}
|
|
34585
|
-
|
|
34586
|
-
|
|
34587
|
-
margin:
|
|
34942
|
+
.E_a138syjm > span.maximum-desc {
|
|
34943
|
+
display: none;
|
|
34944
|
+
margin-left: 8px;
|
|
34945
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34588
34946
|
}
|
|
34589
|
-
|
|
34590
|
-
|
|
34591
|
-
margin-right: 4px;
|
|
34592
|
-
height: 16px;
|
|
34947
|
+
.E_a138syjm > span.maximum-desc.disabled {
|
|
34948
|
+
display: inline;
|
|
34593
34949
|
}
|
|
34594
34950
|
|
|
34595
|
-
.
|
|
34596
|
-
|
|
34597
|
-
|
|
34598
|
-
|
|
34599
|
-
|
|
34600
|
-
word-break: break-all;
|
|
34601
|
-
display: inline;
|
|
34602
|
-
white-space: normal;
|
|
34951
|
+
.E_d77i8u0 {
|
|
34952
|
+
width: 24px;
|
|
34953
|
+
height: 24px;
|
|
34954
|
+
padding: 4px;
|
|
34955
|
+
margin-right: 8px;
|
|
34603
34956
|
}
|
|
34604
34957
|
|
|
34605
34958
|
.E_sjob3jg {
|
|
@@ -34797,202 +35150,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34797
35150
|
justify-content: center;
|
|
34798
35151
|
}
|
|
34799
35152
|
|
|
34800
|
-
.E_t1dtlqs1 {
|
|
34801
|
-
margin-bottom: 4px;
|
|
34802
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34803
|
-
}
|
|
34804
|
-
|
|
34805
|
-
.E_s1ese5oy {
|
|
34806
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34807
|
-
line-height: 32px;
|
|
34808
|
-
height: 32px;
|
|
34809
|
-
margin-bottom: 0;
|
|
34810
|
-
}
|
|
34811
|
-
.E_s1ese5oy.primary, .E_s1ese5oy.info {
|
|
34812
|
-
color: #0080ff;
|
|
34813
|
-
}
|
|
34814
|
-
.E_s1ese5oy.warning {
|
|
34815
|
-
color: #ffa500;
|
|
34816
|
-
}
|
|
34817
|
-
.E_s1ese5oy.success {
|
|
34818
|
-
color: #00ba5d;
|
|
34819
|
-
}
|
|
34820
|
-
.E_s1ese5oy.danger, .E_s1ese5oy.error {
|
|
34821
|
-
color: #f0483e;
|
|
34822
|
-
}
|
|
34823
|
-
.E_s1ese5oy.normal {
|
|
34824
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34825
|
-
}
|
|
34826
|
-
|
|
34827
|
-
.E_b1ibis43 {
|
|
34828
|
-
margin-bottom: 0;
|
|
34829
|
-
color: #00122e;
|
|
34830
|
-
}
|
|
34831
|
-
|
|
34832
|
-
.E_b11xxjd2 {
|
|
34833
|
-
line-height: 32px;
|
|
34834
|
-
margin-right: 6px;
|
|
34835
|
-
}
|
|
34836
|
-
|
|
34837
|
-
.E_bsub5bw.with-description {
|
|
34838
|
-
height: 24px;
|
|
34839
|
-
flex: 1;
|
|
34840
|
-
position: relative;
|
|
34841
|
-
top: -7px;
|
|
34842
|
-
}
|
|
34843
|
-
.E_bsub5bw p {
|
|
34844
|
-
width: 100%;
|
|
34845
|
-
overflow: hidden;
|
|
34846
|
-
text-overflow: ellipsis;
|
|
34847
|
-
white-space: nowrap;
|
|
34848
|
-
}
|
|
34849
|
-
|
|
34850
|
-
.E_tmoyoag {
|
|
34851
|
-
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
34852
|
-
border-radius: 8px;
|
|
34853
|
-
overflow: auto;
|
|
34854
|
-
}
|
|
34855
|
-
.E_tmoyoag .ant-list {
|
|
34856
|
-
position: relative;
|
|
34857
|
-
}
|
|
34858
|
-
.E_tmoyoag .ant-list .ant-list-item:last-child {
|
|
34859
|
-
border-bottom: none;
|
|
34860
|
-
}
|
|
34861
|
-
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
34862
|
-
position: sticky;
|
|
34863
|
-
top: 0;
|
|
34864
|
-
z-index: 2;
|
|
34865
|
-
display: flex;
|
|
34866
|
-
padding: 8px;
|
|
34867
|
-
flex-wrap: nowrap;
|
|
34868
|
-
justify-content: flex-start;
|
|
34869
|
-
background: #f2f5fa;
|
|
34870
|
-
font-size: 14px;
|
|
34871
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34872
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
34873
|
-
}
|
|
34874
|
-
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
34875
|
-
align-items: inherit;
|
|
34876
|
-
}
|
|
34877
|
-
.E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
|
|
34878
|
-
margin-bottom: 0;
|
|
34879
|
-
}
|
|
34880
|
-
.E_tmoyoag .ant-list .eagle-table-form-row {
|
|
34881
|
-
display: flex;
|
|
34882
|
-
justify-content: flex-start;
|
|
34883
|
-
align-items: flex-start;
|
|
34884
|
-
flex-wrap: wrap;
|
|
34885
|
-
padding: 8px;
|
|
34886
|
-
border: none;
|
|
34887
|
-
}
|
|
34888
|
-
.E_tmoyoag .ant-list .eagle-table-form-row .row-description {
|
|
34889
|
-
flex-basis: 100%;
|
|
34890
|
-
margin: 12px 0 0;
|
|
34891
|
-
order: 99;
|
|
34892
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34893
|
-
}
|
|
34894
|
-
.E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
|
|
34895
|
-
color: #f0483e;
|
|
34896
|
-
flex-basis: 100%;
|
|
34897
|
-
order: 98;
|
|
34898
|
-
margin: 12px 0 0;
|
|
34899
|
-
}
|
|
34900
|
-
.E_tmoyoag .ant-list .eagle-table-form-row:hover {
|
|
34901
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
34902
|
-
}
|
|
34903
|
-
.E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
|
|
34904
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
34905
|
-
}
|
|
34906
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell {
|
|
34907
|
-
flex: 1 0 0;
|
|
34908
|
-
overflow: hidden;
|
|
34909
|
-
}
|
|
34910
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
|
|
34911
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34912
|
-
margin: 0;
|
|
34913
|
-
}
|
|
34914
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
|
|
34915
|
-
text-align: center;
|
|
34916
|
-
}
|
|
34917
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
|
|
34918
|
-
text-align: center;
|
|
34919
|
-
}
|
|
34920
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
|
|
34921
|
-
text-align: left;
|
|
34922
|
-
}
|
|
34923
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content > * {
|
|
34924
|
-
text-align: left;
|
|
34925
|
-
}
|
|
34926
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
|
|
34927
|
-
text-align: right;
|
|
34928
|
-
}
|
|
34929
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content > * {
|
|
34930
|
-
text-align: right;
|
|
34931
|
-
}
|
|
34932
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
34933
|
-
margin-right: 8px;
|
|
34934
|
-
}
|
|
34935
|
-
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
34936
|
-
padding: 4px;
|
|
34937
|
-
width: 24px;
|
|
34938
|
-
height: 24px;
|
|
34939
|
-
overflow: hidden;
|
|
34940
|
-
}
|
|
34941
|
-
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
34942
|
-
padding: 0;
|
|
34943
|
-
}
|
|
34944
|
-
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
34945
|
-
cursor: not-allowed;
|
|
34946
|
-
opacity: 0.5;
|
|
34947
|
-
}
|
|
34948
|
-
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
34949
|
-
margin: 0;
|
|
34950
|
-
}
|
|
34951
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
34952
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
34953
|
-
border-radius: 5px;
|
|
34954
|
-
font-size: 12px;
|
|
34955
|
-
}
|
|
34956
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
34957
|
-
font-size: inherit;
|
|
34958
|
-
}
|
|
34959
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
34960
|
-
min-height: 24px;
|
|
34961
|
-
font-size: 12px;
|
|
34962
|
-
position: relative;
|
|
34963
|
-
}
|
|
34964
|
-
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
34965
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
34966
|
-
}
|
|
34967
|
-
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
34968
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
34969
|
-
}
|
|
34970
|
-
|
|
34971
|
-
.E_a138syjm {
|
|
34972
|
-
display: flex;
|
|
34973
|
-
align-items: center;
|
|
34974
|
-
margin-top: 8px;
|
|
34975
|
-
}
|
|
34976
|
-
.E_a138syjm button.ant-btn {
|
|
34977
|
-
padding: 2px 8px;
|
|
34978
|
-
height: 24px;
|
|
34979
|
-
}
|
|
34980
|
-
.E_a138syjm > span.maximum-desc {
|
|
34981
|
-
display: none;
|
|
34982
|
-
margin-left: 8px;
|
|
34983
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34984
|
-
}
|
|
34985
|
-
.E_a138syjm > span.maximum-desc.disabled {
|
|
34986
|
-
display: inline;
|
|
34987
|
-
}
|
|
34988
|
-
|
|
34989
|
-
.E_d77i8u0 {
|
|
34990
|
-
width: 24px;
|
|
34991
|
-
height: 24px;
|
|
34992
|
-
padding: 4px;
|
|
34993
|
-
margin-right: 8px;
|
|
34994
|
-
}
|
|
34995
|
-
|
|
34996
35153
|
.E_t13ef470 {
|
|
34997
35154
|
height: 100%;
|
|
34998
35155
|
}
|
|
@@ -35023,11 +35180,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35023
35180
|
background: rgba(163, 180, 204, 0.18);
|
|
35024
35181
|
}
|
|
35025
35182
|
|
|
35026
|
-
.E_i1g85yz3 {
|
|
35027
|
-
margin-right: 4px;
|
|
35028
|
-
height: 16px;
|
|
35029
|
-
}
|
|
35030
|
-
|
|
35031
35183
|
.E_t1gvlxt5 {
|
|
35032
35184
|
min-width: 0;
|
|
35033
35185
|
flex: 1;
|