@cloudtower/eagle 0.35.1 → 0.35.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/UIKitProvider/index.js +5 -10
- package/dist/cjs/core/ConfigProvider/index.js +3 -1
- package/dist/cjs/core/Fields/FieldsTimePicker/index.js +4 -3
- package/dist/cjs/core/ImmersiveDialog/index.js +21 -14
- package/dist/cjs/core/{Modal → LegacyModal}/index.js +7 -3
- package/dist/cjs/core/LegacySelect/index.js +4 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.hooks.js +66 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.js +103 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.style.js +13 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.widget.js +379 -0
- package/dist/cjs/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/cjs/core/SmallDialog/SmallDialog.js +7 -5
- package/dist/cjs/core/Tab/Tab.js +113 -0
- package/dist/cjs/core/Tab/Tab.style.js +17 -0
- package/dist/cjs/core/Tab/Tab.type.js +9 -0
- package/dist/cjs/core/Tab/useTabAdaptiveLayout.js +73 -0
- package/dist/cjs/core/message/message.js +24 -1
- package/dist/cjs/coreX/KubeConfigModal/index.js +4 -4
- package/dist/cjs/hooks/useAntdPatchEnLocales.js +35 -0
- package/dist/cjs/hooks/useLegacyComponentWarning.js +16 -0
- package/dist/cjs/index.js +20 -16
- package/dist/cjs/legacy-antd.js +2 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1926 -1557
- package/dist/esm/UIKitProvider/index.js +5 -10
- package/dist/esm/core/ConfigProvider/index.js +3 -1
- package/dist/esm/core/Fields/FieldsTimePicker/index.js +2 -1
- package/dist/esm/core/ImmersiveDialog/index.js +21 -14
- package/dist/esm/core/{Modal → LegacyModal}/index.js +9 -5
- package/dist/esm/core/LegacySelect/index.js +4 -0
- package/dist/esm/core/LocalUpload/LocalUpload.hooks.js +63 -0
- package/dist/esm/core/LocalUpload/LocalUpload.js +97 -0
- package/dist/esm/core/LocalUpload/LocalUpload.style.js +10 -0
- package/dist/esm/core/LocalUpload/LocalUpload.widget.js +365 -0
- package/dist/esm/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/esm/core/SmallDialog/SmallDialog.js +6 -4
- package/dist/esm/core/Tab/Tab.js +107 -0
- package/dist/esm/core/Tab/Tab.style.js +12 -0
- package/dist/esm/core/Tab/Tab.type.js +7 -0
- package/dist/esm/core/Tab/useTabAdaptiveLayout.js +71 -0
- package/dist/esm/core/message/message.js +24 -1
- package/dist/esm/coreX/KubeConfigModal/index.js +5 -5
- package/dist/esm/hooks/useAntdPatchEnLocales.js +29 -0
- package/dist/esm/hooks/useLegacyComponentWarning.js +14 -0
- package/dist/esm/index.js +3 -1
- package/dist/esm/legacy-antd.js +4 -4
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +1968 -1541
- package/dist/src/core/ImmersiveDialog/type.d.ts +2 -2
- package/dist/src/core/{Modal/modal.type.d.ts → LegacyModal/LegacyModal.type.d.ts} +12 -1
- package/dist/src/core/LegacyModal/index.d.ts +16 -0
- package/dist/src/core/LocalUpload/LocalUpload.d.ts +15 -0
- package/dist/src/core/LocalUpload/LocalUpload.hooks.d.ts +32 -0
- package/dist/src/core/LocalUpload/LocalUpload.style.d.ts +3 -0
- package/dist/src/core/LocalUpload/LocalUpload.type.d.ts +175 -0
- package/dist/src/core/LocalUpload/LocalUpload.widget.d.ts +23 -0
- package/dist/src/core/LocalUpload/index.d.ts +2 -0
- package/dist/src/core/SmallDialog/SmallDialog.type.d.ts +2 -0
- package/dist/src/core/Tab/Tab.d.ts +3 -0
- package/dist/src/core/Tab/Tab.style.d.ts +5 -0
- package/dist/src/core/Tab/Tab.type.d.ts +42 -0
- package/dist/src/core/Tab/index.d.ts +1 -0
- package/dist/src/core/Tab/useTabAdaptiveLayout.d.ts +23 -0
- package/dist/src/core/index.d.ts +4 -2
- package/dist/src/core/message/message.d.ts +5 -0
- package/dist/src/hooks/useAntdPatchEnLocales.d.ts +431 -0
- package/dist/src/hooks/useLegacyComponentWarning.d.ts +2 -0
- package/dist/src/spec/base.d.ts +2 -2
- package/dist/stories/docs/core/ImmersiveDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/LegacyModal.stories.d.ts +23 -0
- package/dist/stories/docs/core/LocalUpload.stories.d.ts +74 -0
- package/dist/stories/docs/core/MediumDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/SmallDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/Tab.stories.d.ts +65 -0
- package/dist/stories/docs/core/WizardDialog.stories.d.ts +2 -1
- package/dist/stories/docs/core/message-group.stories.d.ts +1 -0
- package/dist/style.css +1926 -1557
- package/dist/variables.scss +3 -0
- package/package.json +4 -4
- package/dist/src/core/Modal/index.d.ts +0 -5
- package/dist/stories/docs/core/Modal.stories.d.ts +0 -13
package/dist/style.css
CHANGED
|
@@ -29693,6 +29693,68 @@ body {
|
|
|
29693
29693
|
padding: 8px 12px;
|
|
29694
29694
|
}
|
|
29695
29695
|
|
|
29696
|
+
.E_m74vjol {
|
|
29697
|
+
display: flex;
|
|
29698
|
+
justify-content: space-between;
|
|
29699
|
+
width: 100%;
|
|
29700
|
+
}
|
|
29701
|
+
.E_m74vjol .action {
|
|
29702
|
+
margin-left: 16px;
|
|
29703
|
+
}
|
|
29704
|
+
|
|
29705
|
+
.E_a1o35uvh.ant-alert-closable {
|
|
29706
|
+
padding-right: 12px;
|
|
29707
|
+
}
|
|
29708
|
+
.E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
|
|
29709
|
+
height: fit-content;
|
|
29710
|
+
margin-left: 16px;
|
|
29711
|
+
}
|
|
29712
|
+
.E_a1o35uvh .ant-alert-message {
|
|
29713
|
+
flex: 1;
|
|
29714
|
+
}
|
|
29715
|
+
|
|
29716
|
+
.E_c1yyuluq {
|
|
29717
|
+
border-radius: 8px;
|
|
29718
|
+
}
|
|
29719
|
+
.E_c1yyuluq .ant-card-body {
|
|
29720
|
+
padding: 20px 24px 24px 24px;
|
|
29721
|
+
}
|
|
29722
|
+
|
|
29723
|
+
.E_ccrbeuz .ant-collapse-item {
|
|
29724
|
+
border: 0px;
|
|
29725
|
+
background-color: #fff;
|
|
29726
|
+
}
|
|
29727
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
29728
|
+
padding-top: 0px;
|
|
29729
|
+
padding-bottom: 0px;
|
|
29730
|
+
padding-left: 0px !important;
|
|
29731
|
+
padding-right: 24px;
|
|
29732
|
+
}
|
|
29733
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
29734
|
+
right: 0px;
|
|
29735
|
+
}
|
|
29736
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
29737
|
+
padding: 0px;
|
|
29738
|
+
}
|
|
29739
|
+
|
|
29740
|
+
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
29741
|
+
padding-right: 0px;
|
|
29742
|
+
cursor: default;
|
|
29743
|
+
}
|
|
29744
|
+
|
|
29745
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
29746
|
+
padding: 4px 8px 0 8px;
|
|
29747
|
+
color: rgba(44, 56, 82, 0.6);
|
|
29748
|
+
font-size: 12px;
|
|
29749
|
+
}
|
|
29750
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
29751
|
+
padding-bottom: 6px;
|
|
29752
|
+
}
|
|
29753
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
29754
|
+
padding-top: 4px;
|
|
29755
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
29756
|
+
}
|
|
29757
|
+
|
|
29696
29758
|
.E_berrcjl {
|
|
29697
29759
|
color: rgba(10, 37, 85, 0.6);
|
|
29698
29760
|
margin-bottom: 4px;
|
|
@@ -29709,24 +29771,138 @@ body {
|
|
|
29709
29771
|
color: #005ed1;
|
|
29710
29772
|
}
|
|
29711
29773
|
|
|
29712
|
-
.
|
|
29774
|
+
.E_d1bw7c5z {
|
|
29775
|
+
position: relative;
|
|
29776
|
+
max-width: 388px;
|
|
29777
|
+
min-width: 285px;
|
|
29778
|
+
}
|
|
29779
|
+
.E_d1bw7c5z .center {
|
|
29780
|
+
position: absolute;
|
|
29781
|
+
font-size: 12px;
|
|
29782
|
+
width: 80px;
|
|
29783
|
+
height: 100px;
|
|
29784
|
+
top: 0;
|
|
29785
|
+
left: 35px;
|
|
29713
29786
|
display: flex;
|
|
29714
|
-
|
|
29787
|
+
flex-direction: column;
|
|
29788
|
+
justify-content: center;
|
|
29789
|
+
align-items: center;
|
|
29790
|
+
color: #00122e;
|
|
29791
|
+
}
|
|
29792
|
+
.E_d1bw7c5z .center .number {
|
|
29793
|
+
font-size: 24px;
|
|
29794
|
+
font-weight: 700;
|
|
29795
|
+
}
|
|
29796
|
+
.E_d1bw7c5z .center .text {
|
|
29797
|
+
padding: 0 5px;
|
|
29798
|
+
font-size: 12px;
|
|
29799
|
+
width: inherit;
|
|
29800
|
+
text-align: center;
|
|
29801
|
+
}
|
|
29802
|
+
.E_d1bw7c5z .recharts-wrapper {
|
|
29803
|
+
display: flex;
|
|
29804
|
+
}
|
|
29805
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
|
|
29806
|
+
position: relative !important;
|
|
29807
|
+
min-width: calc(100% - var(--d1bw7c5z-0)) !important;
|
|
29808
|
+
left: 0 !important;
|
|
29809
|
+
bottom: 0 !important;
|
|
29810
|
+
display: flex;
|
|
29811
|
+
align-items: center;
|
|
29812
|
+
}
|
|
29813
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
|
|
29715
29814
|
width: 100%;
|
|
29716
29815
|
}
|
|
29717
|
-
.
|
|
29718
|
-
|
|
29816
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
|
|
29817
|
+
width: 100%;
|
|
29818
|
+
margin-right: 0 !important;
|
|
29819
|
+
line-height: 18px;
|
|
29820
|
+
}
|
|
29821
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
|
|
29822
|
+
border-radius: 2px;
|
|
29823
|
+
}
|
|
29824
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
|
|
29825
|
+
min-width: 75px;
|
|
29826
|
+
max-width: 198px;
|
|
29827
|
+
width: calc(100% - 20px);
|
|
29828
|
+
margin-left: 2px;
|
|
29829
|
+
color: #00122e !important;
|
|
29830
|
+
display: inline-flex;
|
|
29831
|
+
justify-content: space-between;
|
|
29832
|
+
}
|
|
29833
|
+
.E_d1bw7c5z .tooltip-text {
|
|
29834
|
+
maxwidth: calc(100% - 12px);
|
|
29835
|
+
cursor: pointer;
|
|
29836
|
+
border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
|
|
29837
|
+
overflow: hidden;
|
|
29838
|
+
text-overflow: ellipsis;
|
|
29839
|
+
white-space: nowrap;
|
|
29840
|
+
}
|
|
29841
|
+
.E_d1bw7c5z .value {
|
|
29842
|
+
color: rgba(44, 56, 82, 0.75);
|
|
29719
29843
|
}
|
|
29720
29844
|
|
|
29721
|
-
.
|
|
29722
|
-
|
|
29845
|
+
.E_t10pqbtc {
|
|
29846
|
+
width: 140px;
|
|
29723
29847
|
}
|
|
29724
|
-
.
|
|
29725
|
-
|
|
29726
|
-
|
|
29848
|
+
.E_t10pqbtc .item {
|
|
29849
|
+
margin: 6px auto;
|
|
29850
|
+
display: flex;
|
|
29851
|
+
justify-content: space-between;
|
|
29727
29852
|
}
|
|
29728
|
-
.
|
|
29729
|
-
|
|
29853
|
+
.E_t10pqbtc .item .name {
|
|
29854
|
+
width: 102px;
|
|
29855
|
+
}
|
|
29856
|
+
|
|
29857
|
+
.E_c1uzzomf {
|
|
29858
|
+
margin-bottom: 16px;
|
|
29859
|
+
}
|
|
29860
|
+
.E_c1uzzomf .card-title {
|
|
29861
|
+
font-size: 16px;
|
|
29862
|
+
color: rgba(44, 56, 82, 0.6);
|
|
29863
|
+
font-weight: 700;
|
|
29864
|
+
line-height: 32px;
|
|
29865
|
+
}
|
|
29866
|
+
.E_c1uzzomf .card-body {
|
|
29867
|
+
padding: 24px;
|
|
29868
|
+
border-radius: 8px;
|
|
29869
|
+
background: #fff;
|
|
29870
|
+
}
|
|
29871
|
+
.E_c1uzzomf .empty {
|
|
29872
|
+
font-weight: 700;
|
|
29873
|
+
font-size: 14px;
|
|
29874
|
+
line-height: 22px;
|
|
29875
|
+
color: rgba(0, 21, 64, 0.3);
|
|
29876
|
+
text-align: center;
|
|
29877
|
+
}
|
|
29878
|
+
|
|
29879
|
+
.E_b1nip9bk {
|
|
29880
|
+
padding: 4px 11px;
|
|
29881
|
+
}
|
|
29882
|
+
|
|
29883
|
+
.E_bqamoqe {
|
|
29884
|
+
white-space: nowrap;
|
|
29885
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
29886
|
+
}
|
|
29887
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
29888
|
+
--color: #0080ff;
|
|
29889
|
+
}
|
|
29890
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
29891
|
+
--color: #0080ff;
|
|
29892
|
+
}
|
|
29893
|
+
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
29894
|
+
margin-left: 1px;
|
|
29895
|
+
}
|
|
29896
|
+
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
29897
|
+
border-top-right-radius: 0;
|
|
29898
|
+
border-bottom-right-radius: 0;
|
|
29899
|
+
}
|
|
29900
|
+
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
29901
|
+
border-top-left-radius: 0;
|
|
29902
|
+
border-bottom-left-radius: 0;
|
|
29903
|
+
}
|
|
29904
|
+
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
29905
|
+
border-radius: unset;
|
|
29730
29906
|
}
|
|
29731
29907
|
|
|
29732
29908
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
@@ -29986,55 +30162,14 @@ body {
|
|
|
29986
30162
|
justify-content: center;
|
|
29987
30163
|
}
|
|
29988
30164
|
|
|
29989
|
-
.
|
|
29990
|
-
|
|
29991
|
-
|
|
29992
|
-
|
|
29993
|
-
.E_bqamoqe {
|
|
29994
|
-
white-space: nowrap;
|
|
29995
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
29996
|
-
}
|
|
29997
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
29998
|
-
--color: #0080ff;
|
|
29999
|
-
}
|
|
30000
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
30001
|
-
--color: #0080ff;
|
|
30002
|
-
}
|
|
30003
|
-
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
30004
|
-
margin-left: 1px;
|
|
30005
|
-
}
|
|
30006
|
-
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
30007
|
-
border-top-right-radius: 0;
|
|
30008
|
-
border-bottom-right-radius: 0;
|
|
30009
|
-
}
|
|
30010
|
-
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
30011
|
-
border-top-left-radius: 0;
|
|
30012
|
-
border-bottom-left-radius: 0;
|
|
30013
|
-
}
|
|
30014
|
-
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
30015
|
-
border-radius: unset;
|
|
30165
|
+
.E_ivqqkzv {
|
|
30166
|
+
height: 24px;
|
|
30167
|
+
width: 56px !important;
|
|
30168
|
+
margin-right: 4px;
|
|
30016
30169
|
}
|
|
30017
30170
|
|
|
30018
|
-
.
|
|
30019
|
-
margin-bottom: 16px;
|
|
30020
|
-
}
|
|
30021
|
-
.E_c1uzzomf .card-title {
|
|
30022
|
-
font-size: 16px;
|
|
30171
|
+
.E_c1wk4q29 {
|
|
30023
30172
|
color: rgba(44, 56, 82, 0.6);
|
|
30024
|
-
font-weight: 700;
|
|
30025
|
-
line-height: 32px;
|
|
30026
|
-
}
|
|
30027
|
-
.E_c1uzzomf .card-body {
|
|
30028
|
-
padding: 24px;
|
|
30029
|
-
border-radius: 8px;
|
|
30030
|
-
background: #fff;
|
|
30031
|
-
}
|
|
30032
|
-
.E_c1uzzomf .empty {
|
|
30033
|
-
font-weight: 700;
|
|
30034
|
-
font-size: 14px;
|
|
30035
|
-
line-height: 22px;
|
|
30036
|
-
color: rgba(0, 21, 64, 0.3);
|
|
30037
|
-
text-align: center;
|
|
30038
30173
|
}
|
|
30039
30174
|
|
|
30040
30175
|
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
@@ -30049,135 +30184,6 @@ body {
|
|
|
30049
30184
|
border-top-right-radius: 5px;
|
|
30050
30185
|
}
|
|
30051
30186
|
|
|
30052
|
-
.E_c1yyuluq {
|
|
30053
|
-
border-radius: 8px;
|
|
30054
|
-
}
|
|
30055
|
-
.E_c1yyuluq .ant-card-body {
|
|
30056
|
-
padding: 20px 24px 24px 24px;
|
|
30057
|
-
}
|
|
30058
|
-
|
|
30059
|
-
.E_ccrbeuz .ant-collapse-item {
|
|
30060
|
-
border: 0px;
|
|
30061
|
-
background-color: #fff;
|
|
30062
|
-
}
|
|
30063
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
30064
|
-
padding-top: 0px;
|
|
30065
|
-
padding-bottom: 0px;
|
|
30066
|
-
padding-left: 0px !important;
|
|
30067
|
-
padding-right: 24px;
|
|
30068
|
-
}
|
|
30069
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
30070
|
-
right: 0px;
|
|
30071
|
-
}
|
|
30072
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
30073
|
-
padding: 0px;
|
|
30074
|
-
}
|
|
30075
|
-
|
|
30076
|
-
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
30077
|
-
padding-right: 0px;
|
|
30078
|
-
cursor: default;
|
|
30079
|
-
}
|
|
30080
|
-
|
|
30081
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
30082
|
-
padding: 4px 8px 0 8px;
|
|
30083
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30084
|
-
font-size: 12px;
|
|
30085
|
-
}
|
|
30086
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
30087
|
-
padding-bottom: 6px;
|
|
30088
|
-
}
|
|
30089
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
30090
|
-
padding-top: 4px;
|
|
30091
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30092
|
-
}
|
|
30093
|
-
|
|
30094
|
-
.E_d1bw7c5z {
|
|
30095
|
-
position: relative;
|
|
30096
|
-
max-width: 388px;
|
|
30097
|
-
min-width: 285px;
|
|
30098
|
-
}
|
|
30099
|
-
.E_d1bw7c5z .center {
|
|
30100
|
-
position: absolute;
|
|
30101
|
-
font-size: 12px;
|
|
30102
|
-
width: 80px;
|
|
30103
|
-
height: 100px;
|
|
30104
|
-
top: 0;
|
|
30105
|
-
left: 35px;
|
|
30106
|
-
display: flex;
|
|
30107
|
-
flex-direction: column;
|
|
30108
|
-
justify-content: center;
|
|
30109
|
-
align-items: center;
|
|
30110
|
-
color: #00122e;
|
|
30111
|
-
}
|
|
30112
|
-
.E_d1bw7c5z .center .number {
|
|
30113
|
-
font-size: 24px;
|
|
30114
|
-
font-weight: 700;
|
|
30115
|
-
}
|
|
30116
|
-
.E_d1bw7c5z .center .text {
|
|
30117
|
-
padding: 0 5px;
|
|
30118
|
-
font-size: 12px;
|
|
30119
|
-
width: inherit;
|
|
30120
|
-
text-align: center;
|
|
30121
|
-
}
|
|
30122
|
-
.E_d1bw7c5z .recharts-wrapper {
|
|
30123
|
-
display: flex;
|
|
30124
|
-
}
|
|
30125
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
|
|
30126
|
-
position: relative !important;
|
|
30127
|
-
min-width: calc(100% - var(--d1bw7c5z-0)) !important;
|
|
30128
|
-
left: 0 !important;
|
|
30129
|
-
bottom: 0 !important;
|
|
30130
|
-
display: flex;
|
|
30131
|
-
align-items: center;
|
|
30132
|
-
}
|
|
30133
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
|
|
30134
|
-
width: 100%;
|
|
30135
|
-
}
|
|
30136
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
|
|
30137
|
-
width: 100%;
|
|
30138
|
-
margin-right: 0 !important;
|
|
30139
|
-
line-height: 18px;
|
|
30140
|
-
}
|
|
30141
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
|
|
30142
|
-
border-radius: 2px;
|
|
30143
|
-
}
|
|
30144
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
|
|
30145
|
-
min-width: 75px;
|
|
30146
|
-
max-width: 198px;
|
|
30147
|
-
width: calc(100% - 20px);
|
|
30148
|
-
margin-left: 2px;
|
|
30149
|
-
color: #00122e !important;
|
|
30150
|
-
display: inline-flex;
|
|
30151
|
-
justify-content: space-between;
|
|
30152
|
-
}
|
|
30153
|
-
.E_d1bw7c5z .tooltip-text {
|
|
30154
|
-
maxwidth: calc(100% - 12px);
|
|
30155
|
-
cursor: pointer;
|
|
30156
|
-
border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
|
|
30157
|
-
overflow: hidden;
|
|
30158
|
-
text-overflow: ellipsis;
|
|
30159
|
-
white-space: nowrap;
|
|
30160
|
-
}
|
|
30161
|
-
.E_d1bw7c5z .value {
|
|
30162
|
-
color: rgba(44, 56, 82, 0.75);
|
|
30163
|
-
}
|
|
30164
|
-
|
|
30165
|
-
.E_t10pqbtc {
|
|
30166
|
-
width: 140px;
|
|
30167
|
-
}
|
|
30168
|
-
.E_t10pqbtc .item {
|
|
30169
|
-
margin: 6px auto;
|
|
30170
|
-
display: flex;
|
|
30171
|
-
justify-content: space-between;
|
|
30172
|
-
}
|
|
30173
|
-
.E_t10pqbtc .item .name {
|
|
30174
|
-
width: 102px;
|
|
30175
|
-
}
|
|
30176
|
-
|
|
30177
|
-
.E_sx1bpnu .ant-input-sm {
|
|
30178
|
-
line-height: 18px;
|
|
30179
|
-
}
|
|
30180
|
-
|
|
30181
30187
|
.E_phljevk {
|
|
30182
30188
|
display: flex;
|
|
30183
30189
|
justify-content: space-between;
|
|
@@ -30235,32 +30241,6 @@ body {
|
|
|
30235
30241
|
line-height: 18px;
|
|
30236
30242
|
}
|
|
30237
30243
|
|
|
30238
|
-
.E_i11gg7mj .ant-input-prefix {
|
|
30239
|
-
margin-right: 8px;
|
|
30240
|
-
}
|
|
30241
|
-
.E_i11gg7mj .ant-input-suffix {
|
|
30242
|
-
margin-left: 8px;
|
|
30243
|
-
}
|
|
30244
|
-
|
|
30245
|
-
.E_cc368xp {
|
|
30246
|
-
color: #00122e;
|
|
30247
|
-
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
30248
|
-
margin-right: 8px;
|
|
30249
|
-
padding-right: 8px;
|
|
30250
|
-
}
|
|
30251
|
-
|
|
30252
|
-
.E_i11o6xqj {
|
|
30253
|
-
display: flex;
|
|
30254
|
-
gap: 4px;
|
|
30255
|
-
}
|
|
30256
|
-
.E_i11o6xqj .icon-wrapper {
|
|
30257
|
-
cursor: pointer;
|
|
30258
|
-
}
|
|
30259
|
-
|
|
30260
|
-
.E_d19ruhdj.icon-wrapper {
|
|
30261
|
-
cursor: not-allowed;
|
|
30262
|
-
}
|
|
30263
|
-
|
|
30264
30244
|
.E_rapgekc.ant-radio-wrapper {
|
|
30265
30245
|
display: inline-flex;
|
|
30266
30246
|
align-items: baseline;
|
|
@@ -30407,14 +30387,34 @@ body {
|
|
|
30407
30387
|
width: 36px;
|
|
30408
30388
|
}
|
|
30409
30389
|
|
|
30410
|
-
.
|
|
30411
|
-
height:
|
|
30412
|
-
width: 56px !important;
|
|
30413
|
-
margin-right: 4px;
|
|
30390
|
+
.E_sx1bpnu .ant-input-sm {
|
|
30391
|
+
line-height: 18px;
|
|
30414
30392
|
}
|
|
30415
30393
|
|
|
30416
|
-
.
|
|
30417
|
-
|
|
30394
|
+
.E_i11gg7mj .ant-input-prefix {
|
|
30395
|
+
margin-right: 8px;
|
|
30396
|
+
}
|
|
30397
|
+
.E_i11gg7mj .ant-input-suffix {
|
|
30398
|
+
margin-left: 8px;
|
|
30399
|
+
}
|
|
30400
|
+
|
|
30401
|
+
.E_cc368xp {
|
|
30402
|
+
color: #00122e;
|
|
30403
|
+
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
30404
|
+
margin-right: 8px;
|
|
30405
|
+
padding-right: 8px;
|
|
30406
|
+
}
|
|
30407
|
+
|
|
30408
|
+
.E_i11o6xqj {
|
|
30409
|
+
display: flex;
|
|
30410
|
+
gap: 4px;
|
|
30411
|
+
}
|
|
30412
|
+
.E_i11o6xqj .icon-wrapper {
|
|
30413
|
+
cursor: pointer;
|
|
30414
|
+
}
|
|
30415
|
+
|
|
30416
|
+
.E_d19ruhdj.icon-wrapper {
|
|
30417
|
+
cursor: not-allowed;
|
|
30418
30418
|
}
|
|
30419
30419
|
|
|
30420
30420
|
.E_c1bus5hc {
|
|
@@ -30461,6 +30461,21 @@ body {
|
|
|
30461
30461
|
margin-right: 4px;
|
|
30462
30462
|
}
|
|
30463
30463
|
|
|
30464
|
+
.E_iq1gosr {
|
|
30465
|
+
display: inline-block;
|
|
30466
|
+
}
|
|
30467
|
+
|
|
30468
|
+
.E_t1m2x205 .ant-tooltip-arrow {
|
|
30469
|
+
display: none;
|
|
30470
|
+
}
|
|
30471
|
+
.E_t1m2x205 .ant-tooltip-inner {
|
|
30472
|
+
background: rgba(23, 38, 64, 0.8);
|
|
30473
|
+
border-radius: 4px;
|
|
30474
|
+
}
|
|
30475
|
+
.E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
30476
|
+
visibility: hidden;
|
|
30477
|
+
}
|
|
30478
|
+
|
|
30464
30479
|
.E_s1dizucg.ant-switch {
|
|
30465
30480
|
min-width: 40px;
|
|
30466
30481
|
height: 24px;
|
|
@@ -30516,123 +30531,41 @@ body {
|
|
|
30516
30531
|
margin-left: 5px;
|
|
30517
30532
|
}
|
|
30518
30533
|
|
|
30519
|
-
.
|
|
30520
|
-
|
|
30521
|
-
border-radius: 4px;
|
|
30522
|
-
}
|
|
30523
|
-
|
|
30524
|
-
.E_m855nr1 {
|
|
30525
|
-
padding: 2px 8px;
|
|
30526
|
-
border-radius: 3px;
|
|
30534
|
+
.E_s1dni7lo {
|
|
30535
|
+
width: 430px !important;
|
|
30527
30536
|
}
|
|
30528
30537
|
|
|
30529
|
-
.
|
|
30530
|
-
padding:
|
|
30531
|
-
|
|
30538
|
+
.E_d1wwmmm5 .ant-select-item-group {
|
|
30539
|
+
padding: 8px 16px;
|
|
30540
|
+
line-height: 18px;
|
|
30541
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30542
|
+
height: 34px;
|
|
30543
|
+
min-height: 34px;
|
|
30544
|
+
box-sizing: border-box;
|
|
30545
|
+
margin-top: 8px;
|
|
30532
30546
|
}
|
|
30533
30547
|
|
|
30534
|
-
.
|
|
30535
|
-
|
|
30548
|
+
.E_o1ugr09p {
|
|
30549
|
+
display: flex;
|
|
30550
|
+
flex-direction: column;
|
|
30551
|
+
margin: 1px 8px;
|
|
30552
|
+
padding: 8px;
|
|
30553
|
+
border-radius: 4px;
|
|
30536
30554
|
}
|
|
30537
|
-
.
|
|
30538
|
-
|
|
30539
|
-
margin-right: 8px;
|
|
30540
|
-
display: inline-flex;
|
|
30541
|
-
align-items: center;
|
|
30542
|
-
border: none;
|
|
30555
|
+
.E_o1ugr09p .selected-icon {
|
|
30556
|
+
display: none;
|
|
30543
30557
|
}
|
|
30544
|
-
.
|
|
30545
|
-
|
|
30546
|
-
height: 16px;
|
|
30547
|
-
color: inherit;
|
|
30548
|
-
margin-left: 4px;
|
|
30549
|
-
opacity: 0.6;
|
|
30550
|
-
display: inline-flex;
|
|
30558
|
+
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
30559
|
+
padding-left: 8px;
|
|
30551
30560
|
}
|
|
30552
|
-
.
|
|
30553
|
-
|
|
30561
|
+
.E_o1ugr09p.ant-select-item-option-selected {
|
|
30562
|
+
background-color: white;
|
|
30554
30563
|
}
|
|
30555
|
-
.
|
|
30564
|
+
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
30556
30565
|
color: #0080ff;
|
|
30557
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
30558
30566
|
}
|
|
30559
|
-
.
|
|
30560
|
-
|
|
30561
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
30562
|
-
}
|
|
30563
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
30564
|
-
color: #e07f00;
|
|
30565
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
30566
|
-
}
|
|
30567
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
30568
|
-
color: #008f4c;
|
|
30569
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
30570
|
-
}
|
|
30571
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
30572
|
-
color: #1d326c;
|
|
30573
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
30574
|
-
}
|
|
30575
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
30576
|
-
color: #7E41FF;
|
|
30577
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
30578
|
-
}
|
|
30579
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
30580
|
-
color: #fff;
|
|
30581
|
-
}
|
|
30582
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
30583
|
-
background-color: #f0483e;
|
|
30584
|
-
}
|
|
30585
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
30586
|
-
background-color: #fea008;
|
|
30587
|
-
}
|
|
30588
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
30589
|
-
background-color: #00ba5d;
|
|
30590
|
-
}
|
|
30591
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
30592
|
-
background-color: #0080ff;
|
|
30593
|
-
}
|
|
30594
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
30595
|
-
background-color: #6b7d99;
|
|
30596
|
-
}
|
|
30597
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
30598
|
-
background-color: #7E41FF;
|
|
30599
|
-
}
|
|
30600
|
-
|
|
30601
|
-
.E_s1dni7lo {
|
|
30602
|
-
width: 430px !important;
|
|
30603
|
-
}
|
|
30604
|
-
|
|
30605
|
-
.E_d1wwmmm5 .ant-select-item-group {
|
|
30606
|
-
padding: 8px 16px;
|
|
30607
|
-
line-height: 18px;
|
|
30608
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30609
|
-
height: 34px;
|
|
30610
|
-
min-height: 34px;
|
|
30611
|
-
box-sizing: border-box;
|
|
30612
|
-
margin-top: 8px;
|
|
30613
|
-
}
|
|
30614
|
-
|
|
30615
|
-
.E_o1ugr09p {
|
|
30616
|
-
display: flex;
|
|
30617
|
-
flex-direction: column;
|
|
30618
|
-
margin: 1px 8px;
|
|
30619
|
-
padding: 8px;
|
|
30620
|
-
border-radius: 4px;
|
|
30621
|
-
}
|
|
30622
|
-
.E_o1ugr09p .selected-icon {
|
|
30623
|
-
display: none;
|
|
30624
|
-
}
|
|
30625
|
-
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
30626
|
-
padding-left: 8px;
|
|
30627
|
-
}
|
|
30628
|
-
.E_o1ugr09p.ant-select-item-option-selected {
|
|
30629
|
-
background-color: white;
|
|
30630
|
-
}
|
|
30631
|
-
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
30632
|
-
color: #0080ff;
|
|
30633
|
-
}
|
|
30634
|
-
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
30635
|
-
display: block;
|
|
30567
|
+
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
30568
|
+
display: block;
|
|
30636
30569
|
}
|
|
30637
30570
|
.E_o1ugr09p.ant-select-item-option-active {
|
|
30638
30571
|
background: rgba(0, 136, 255, 0.16);
|
|
@@ -30679,19 +30612,101 @@ body {
|
|
|
30679
30612
|
opacity: 0;
|
|
30680
30613
|
}
|
|
30681
30614
|
|
|
30682
|
-
.
|
|
30683
|
-
|
|
30684
|
-
}
|
|
30685
|
-
.E_t1m2x205 .ant-tooltip-inner {
|
|
30686
|
-
background: rgba(23, 38, 64, 0.8);
|
|
30615
|
+
.E_s1sck0th {
|
|
30616
|
+
padding: 0 8px;
|
|
30687
30617
|
border-radius: 4px;
|
|
30688
30618
|
}
|
|
30689
|
-
|
|
30690
|
-
|
|
30619
|
+
|
|
30620
|
+
.E_m855nr1 {
|
|
30621
|
+
padding: 2px 8px;
|
|
30622
|
+
border-radius: 3px;
|
|
30691
30623
|
}
|
|
30692
30624
|
|
|
30693
|
-
.
|
|
30694
|
-
|
|
30625
|
+
.E_l1270xpg {
|
|
30626
|
+
padding: 3px 8px;
|
|
30627
|
+
border-radius: 2px;
|
|
30628
|
+
}
|
|
30629
|
+
|
|
30630
|
+
.E_t14rextb.ant-tag:hover {
|
|
30631
|
+
opacity: unset;
|
|
30632
|
+
}
|
|
30633
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
30634
|
+
margin: 0;
|
|
30635
|
+
margin-right: 8px;
|
|
30636
|
+
display: inline-flex;
|
|
30637
|
+
align-items: center;
|
|
30638
|
+
border: none;
|
|
30639
|
+
}
|
|
30640
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
30641
|
+
width: 16px;
|
|
30642
|
+
height: 16px;
|
|
30643
|
+
color: inherit;
|
|
30644
|
+
margin-left: 4px;
|
|
30645
|
+
opacity: 0.6;
|
|
30646
|
+
display: inline-flex;
|
|
30647
|
+
}
|
|
30648
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
30649
|
+
opacity: 1;
|
|
30650
|
+
}
|
|
30651
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
30652
|
+
color: #0080ff;
|
|
30653
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
30654
|
+
}
|
|
30655
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
30656
|
+
color: #f0483e;
|
|
30657
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
30658
|
+
}
|
|
30659
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
30660
|
+
color: #e07f00;
|
|
30661
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
30662
|
+
}
|
|
30663
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
30664
|
+
color: #008f4c;
|
|
30665
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
30666
|
+
}
|
|
30667
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
30668
|
+
color: #1d326c;
|
|
30669
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
30670
|
+
}
|
|
30671
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
30672
|
+
color: #7E41FF;
|
|
30673
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
30674
|
+
}
|
|
30675
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
30676
|
+
color: #fff;
|
|
30677
|
+
}
|
|
30678
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
30679
|
+
background-color: #f0483e;
|
|
30680
|
+
}
|
|
30681
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
30682
|
+
background-color: #fea008;
|
|
30683
|
+
}
|
|
30684
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
30685
|
+
background-color: #00ba5d;
|
|
30686
|
+
}
|
|
30687
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
30688
|
+
background-color: #0080ff;
|
|
30689
|
+
}
|
|
30690
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
30691
|
+
background-color: #6b7d99;
|
|
30692
|
+
}
|
|
30693
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
30694
|
+
background-color: #7E41FF;
|
|
30695
|
+
}
|
|
30696
|
+
|
|
30697
|
+
.E_fzh9mnb {
|
|
30698
|
+
width: 100%;
|
|
30699
|
+
height: 100%;
|
|
30700
|
+
min-height: 124px;
|
|
30701
|
+
display: flex;
|
|
30702
|
+
flex-direction: column;
|
|
30703
|
+
justify-content: center;
|
|
30704
|
+
align-items: center;
|
|
30705
|
+
}
|
|
30706
|
+
.E_fzh9mnb .error-text {
|
|
30707
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30708
|
+
margin-bottom: 16px;
|
|
30709
|
+
font-size: 18px;
|
|
30695
30710
|
}
|
|
30696
30711
|
|
|
30697
30712
|
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
@@ -30754,6 +30769,24 @@ body {
|
|
|
30754
30769
|
padding: 2px 8px;
|
|
30755
30770
|
}
|
|
30756
30771
|
|
|
30772
|
+
.E_iouxfgt {
|
|
30773
|
+
display: inline-flex;
|
|
30774
|
+
align-items: center;
|
|
30775
|
+
}
|
|
30776
|
+
.E_iouxfgt .icon-inner {
|
|
30777
|
+
display: inline-flex;
|
|
30778
|
+
align-items: center;
|
|
30779
|
+
justify-content: center;
|
|
30780
|
+
}
|
|
30781
|
+
.E_iouxfgt .icon-inner + span,
|
|
30782
|
+
.E_iouxfgt span + .icon-inner.suffix {
|
|
30783
|
+
margin-left: 4px;
|
|
30784
|
+
}
|
|
30785
|
+
.E_iouxfgt.is-rotate img,
|
|
30786
|
+
.E_iouxfgt.is-rotate svg {
|
|
30787
|
+
animation: rotate 680ms linear infinite;
|
|
30788
|
+
}
|
|
30789
|
+
|
|
30757
30790
|
.E_i1inqkme {
|
|
30758
30791
|
height: 18px;
|
|
30759
30792
|
line-height: 18px;
|
|
@@ -30767,6 +30800,40 @@ body {
|
|
|
30767
30800
|
margin-right: 4px;
|
|
30768
30801
|
}
|
|
30769
30802
|
|
|
30803
|
+
.E_f7pxqmh {
|
|
30804
|
+
width: 100%;
|
|
30805
|
+
margin-bottom: 0 !important;
|
|
30806
|
+
flex-flow: nowrap !important;
|
|
30807
|
+
line-break: auto;
|
|
30808
|
+
}
|
|
30809
|
+
.E_f7pxqmh > .ant-form-item-label {
|
|
30810
|
+
text-align: left !important;
|
|
30811
|
+
padding-bottom: 0 !important;
|
|
30812
|
+
}
|
|
30813
|
+
.E_f7pxqmh > .ant-form-item-label > label {
|
|
30814
|
+
min-height: 32px;
|
|
30815
|
+
height: auto;
|
|
30816
|
+
font-size: 13px;
|
|
30817
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30818
|
+
white-space: normal;
|
|
30819
|
+
}
|
|
30820
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
30821
|
+
border-color: #ff4d4f !important;
|
|
30822
|
+
}
|
|
30823
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
30824
|
+
border-color: #ff4d4f !important;
|
|
30825
|
+
}
|
|
30826
|
+
.E_f7pxqmh .ant-form-item-explain {
|
|
30827
|
+
margin-top: 4px;
|
|
30828
|
+
font-size: 12px;
|
|
30829
|
+
min-height: 0px;
|
|
30830
|
+
}
|
|
30831
|
+
.E_f7pxqmh .ant-form-item-extra {
|
|
30832
|
+
font-size: 12px;
|
|
30833
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30834
|
+
min-height: 0px;
|
|
30835
|
+
}
|
|
30836
|
+
|
|
30770
30837
|
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
30771
30838
|
display: var(--a1wfy30z-0);
|
|
30772
30839
|
}
|
|
@@ -30805,97 +30872,21 @@ body {
|
|
|
30805
30872
|
padding: 2px 7px 2px 12px;
|
|
30806
30873
|
}
|
|
30807
30874
|
|
|
30808
|
-
.
|
|
30809
|
-
width:
|
|
30810
|
-
height: 100%;
|
|
30811
|
-
min-height: 124px;
|
|
30812
|
-
display: flex;
|
|
30813
|
-
flex-direction: column;
|
|
30814
|
-
justify-content: center;
|
|
30815
|
-
align-items: center;
|
|
30816
|
-
}
|
|
30817
|
-
.E_fzh9mnb .error-text {
|
|
30818
|
-
color: rgba(10, 37, 85, 0.6);
|
|
30819
|
-
margin-bottom: 16px;
|
|
30820
|
-
font-size: 18px;
|
|
30875
|
+
.E_m196gn1d {
|
|
30876
|
+
min-width: 1280px;
|
|
30821
30877
|
}
|
|
30822
30878
|
|
|
30823
|
-
.
|
|
30824
|
-
|
|
30825
|
-
|
|
30826
|
-
|
|
30827
|
-
|
|
30828
|
-
|
|
30829
|
-
|
|
30830
|
-
|
|
30831
|
-
|
|
30832
|
-
|
|
30833
|
-
|
|
30834
|
-
min-height: 32px;
|
|
30835
|
-
height: auto;
|
|
30836
|
-
font-size: 13px;
|
|
30837
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30838
|
-
white-space: normal;
|
|
30839
|
-
}
|
|
30840
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
30841
|
-
border-color: #ff4d4f !important;
|
|
30842
|
-
}
|
|
30843
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
30844
|
-
border-color: #ff4d4f !important;
|
|
30845
|
-
}
|
|
30846
|
-
.E_f7pxqmh .ant-form-item-explain {
|
|
30847
|
-
margin-top: 4px;
|
|
30848
|
-
font-size: 12px;
|
|
30849
|
-
min-height: 0px;
|
|
30850
|
-
}
|
|
30851
|
-
.E_f7pxqmh .ant-form-item-extra {
|
|
30852
|
-
font-size: 12px;
|
|
30853
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30854
|
-
min-height: 0px;
|
|
30855
|
-
}
|
|
30856
|
-
|
|
30857
|
-
.E_iouxfgt {
|
|
30858
|
-
display: inline-flex;
|
|
30859
|
-
align-items: center;
|
|
30860
|
-
}
|
|
30861
|
-
.E_iouxfgt .icon-inner {
|
|
30862
|
-
display: inline-flex;
|
|
30863
|
-
align-items: center;
|
|
30864
|
-
justify-content: center;
|
|
30865
|
-
}
|
|
30866
|
-
.E_iouxfgt .icon-inner + span,
|
|
30867
|
-
.E_iouxfgt span + .icon-inner.suffix {
|
|
30868
|
-
margin-left: 4px;
|
|
30869
|
-
}
|
|
30870
|
-
.E_iouxfgt.is-rotate img,
|
|
30871
|
-
.E_iouxfgt.is-rotate svg {
|
|
30872
|
-
animation: rotate 680ms linear infinite;
|
|
30873
|
-
}
|
|
30874
|
-
|
|
30875
|
-
.E_owd0kml {
|
|
30876
|
-
display: inline-block;
|
|
30877
|
-
}
|
|
30878
|
-
|
|
30879
|
-
.E_h1jsgezc {
|
|
30880
|
-
visibility: hidden;
|
|
30881
|
-
position: absolute;
|
|
30882
|
-
}
|
|
30883
|
-
|
|
30884
|
-
.E_m196gn1d {
|
|
30885
|
-
min-width: 1280px;
|
|
30886
|
-
}
|
|
30887
|
-
|
|
30888
|
-
.E_a1b5xrg3 .user-icon-inner {
|
|
30889
|
-
display: inline-flex;
|
|
30890
|
-
align-items: center;
|
|
30891
|
-
justify-content: center;
|
|
30892
|
-
color: #fff;
|
|
30893
|
-
font-weight: bold;
|
|
30894
|
-
font-size: 12px;
|
|
30895
|
-
width: 24px;
|
|
30896
|
-
height: 24px;
|
|
30897
|
-
border-radius: 50%;
|
|
30898
|
-
background: var(--a1b5xrg3-0);
|
|
30879
|
+
.E_a1b5xrg3 .user-icon-inner {
|
|
30880
|
+
display: inline-flex;
|
|
30881
|
+
align-items: center;
|
|
30882
|
+
justify-content: center;
|
|
30883
|
+
color: #fff;
|
|
30884
|
+
font-weight: bold;
|
|
30885
|
+
font-size: 12px;
|
|
30886
|
+
width: 24px;
|
|
30887
|
+
height: 24px;
|
|
30888
|
+
border-radius: 50%;
|
|
30889
|
+
background: var(--a1b5xrg3-0);
|
|
30899
30890
|
}
|
|
30900
30891
|
.E_a1b5xrg3.btn-item {
|
|
30901
30892
|
transition: all 160ms ease;
|
|
@@ -30915,6 +30906,15 @@ body {
|
|
|
30915
30906
|
transition: all 320ms ease;
|
|
30916
30907
|
}
|
|
30917
30908
|
|
|
30909
|
+
.E_owd0kml {
|
|
30910
|
+
display: inline-block;
|
|
30911
|
+
}
|
|
30912
|
+
|
|
30913
|
+
.E_h1jsgezc {
|
|
30914
|
+
visibility: hidden;
|
|
30915
|
+
position: absolute;
|
|
30916
|
+
}
|
|
30917
|
+
|
|
30918
30918
|
.E_dsnbhzf {
|
|
30919
30919
|
font-family: Inter;
|
|
30920
30920
|
font-style: normal;
|
|
@@ -32374,7 +32374,6 @@ input.E_rf8rlle.ant-input {
|
|
|
32374
32374
|
--footer-height: 96px;
|
|
32375
32375
|
--modal-content-width: 720px;
|
|
32376
32376
|
--modal-content-min-height: 200px;
|
|
32377
|
-
--modal-content-max-height: calc(100vh - 136px);
|
|
32378
32377
|
--modal-header-padding: 40px 60px 8px;
|
|
32379
32378
|
--modal-content-padding-top: 24px;
|
|
32380
32379
|
--modal-content-padding-bottom: 32px;
|
|
@@ -32619,41 +32618,6 @@ input.E_rf8rlle.ant-input {
|
|
|
32619
32618
|
font-size: 14px;
|
|
32620
32619
|
}
|
|
32621
32620
|
|
|
32622
|
-
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
32623
|
-
margin-right: 2px;
|
|
32624
|
-
}
|
|
32625
|
-
|
|
32626
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
32627
|
-
padding-left: 8px;
|
|
32628
|
-
padding-right: 8px;
|
|
32629
|
-
font-size: 12px;
|
|
32630
|
-
}
|
|
32631
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
32632
|
-
border-radius: 4px;
|
|
32633
|
-
}
|
|
32634
|
-
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32635
|
-
border-radius: 4px;
|
|
32636
|
-
}
|
|
32637
|
-
|
|
32638
|
-
.E_ma64lna .antd5-segmented-item-label {
|
|
32639
|
-
padding-left: 12px;
|
|
32640
|
-
padding-right: 12px;
|
|
32641
|
-
}
|
|
32642
|
-
|
|
32643
|
-
.E_ckld275 {
|
|
32644
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
32645
|
-
}
|
|
32646
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32647
|
-
background-color: rgba(255, 255, 255, 0.6);
|
|
32648
|
-
color: rgba(44, 56, 82, 0.75);
|
|
32649
|
-
}
|
|
32650
|
-
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32651
|
-
background-color: transparent;
|
|
32652
|
-
}
|
|
32653
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
32654
|
-
background-color: transparent;
|
|
32655
|
-
}
|
|
32656
|
-
|
|
32657
32621
|
.E_h12yihis {
|
|
32658
32622
|
height: 50px;
|
|
32659
32623
|
border-bottom: 2px solid #edf0f7;
|
|
@@ -32874,114 +32838,280 @@ input.E_rf8rlle.ant-input {
|
|
|
32874
32838
|
position: static;
|
|
32875
32839
|
}
|
|
32876
32840
|
|
|
32877
|
-
.
|
|
32878
|
-
|
|
32841
|
+
.E_ckaaqep {
|
|
32842
|
+
background: rgba(172, 186, 211, 0.6);
|
|
32843
|
+
content: "";
|
|
32844
|
+
height: 100%;
|
|
32845
|
+
margin: 0 6px;
|
|
32846
|
+
width: 1px;
|
|
32879
32847
|
}
|
|
32880
32848
|
|
|
32881
|
-
.
|
|
32882
|
-
|
|
32883
|
-
padding: 7px 12px;
|
|
32884
|
-
display: flex;
|
|
32885
|
-
justify-content: space-between;
|
|
32886
|
-
align-items: center;
|
|
32849
|
+
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
32850
|
+
margin-right: 2px;
|
|
32887
32851
|
}
|
|
32888
|
-
|
|
32889
|
-
|
|
32852
|
+
|
|
32853
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
32854
|
+
padding-left: 8px;
|
|
32855
|
+
padding-right: 8px;
|
|
32856
|
+
font-size: 12px;
|
|
32890
32857
|
}
|
|
32891
|
-
.
|
|
32892
|
-
|
|
32893
|
-
color: #00122e;
|
|
32858
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
32859
|
+
border-radius: 4px;
|
|
32894
32860
|
}
|
|
32895
|
-
.
|
|
32896
|
-
|
|
32897
|
-
font-weight: 600;
|
|
32861
|
+
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32862
|
+
border-radius: 4px;
|
|
32898
32863
|
}
|
|
32899
|
-
|
|
32900
|
-
|
|
32864
|
+
|
|
32865
|
+
.E_ma64lna .antd5-segmented-item-label {
|
|
32866
|
+
padding-left: 12px;
|
|
32867
|
+
padding-right: 12px;
|
|
32901
32868
|
}
|
|
32902
|
-
|
|
32903
|
-
|
|
32904
|
-
|
|
32869
|
+
|
|
32870
|
+
.E_ckld275 {
|
|
32871
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32905
32872
|
}
|
|
32906
|
-
.
|
|
32907
|
-
|
|
32908
|
-
|
|
32909
|
-
|
|
32910
|
-
|
|
32873
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32874
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
32875
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32876
|
+
}
|
|
32877
|
+
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32878
|
+
background-color: transparent;
|
|
32879
|
+
}
|
|
32880
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
32881
|
+
background-color: transparent;
|
|
32882
|
+
}
|
|
32883
|
+
|
|
32884
|
+
button.E_l48ei06.ant-btn,
|
|
32885
|
+
button.E_l48ei06.ant-btn.ant-btn-sm,
|
|
32886
|
+
button.E_l48ei06.ant-btn.ant-btn-lg {
|
|
32911
32887
|
font-size: 12px;
|
|
32912
32888
|
line-height: 18px;
|
|
32913
|
-
|
|
32914
|
-
font-weight: 700;
|
|
32915
|
-
}
|
|
32916
|
-
.E_c1kghdax .collapse-arrow {
|
|
32917
|
-
transition: all 50ms ease-out 0ms;
|
|
32918
|
-
margin-right: 2px;
|
|
32889
|
+
height: 18px;
|
|
32919
32890
|
}
|
|
32920
32891
|
|
|
32921
|
-
.
|
|
32922
|
-
color: #
|
|
32923
|
-
|
|
32924
|
-
display: inline-flex;
|
|
32892
|
+
button.E_l48ei06 {
|
|
32893
|
+
color: #0080FF;
|
|
32894
|
+
height: unset;
|
|
32925
32895
|
}
|
|
32926
|
-
.
|
|
32927
|
-
|
|
32928
|
-
display: flex;
|
|
32929
|
-
align-items: center;
|
|
32930
|
-
top: 0;
|
|
32896
|
+
button.E_l48ei06 .button-prefix-icon {
|
|
32897
|
+
margin-right: 4px;
|
|
32931
32898
|
}
|
|
32932
|
-
.
|
|
32933
|
-
|
|
32899
|
+
button.E_l48ei06 .button-suffix-icon {
|
|
32900
|
+
margin-left: 4px;
|
|
32934
32901
|
}
|
|
32935
|
-
.
|
|
32936
|
-
|
|
32902
|
+
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
32903
|
+
color: #009DFF;
|
|
32937
32904
|
}
|
|
32938
|
-
.
|
|
32939
|
-
|
|
32905
|
+
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
32906
|
+
color: #005ED1;
|
|
32940
32907
|
}
|
|
32941
|
-
.
|
|
32942
|
-
|
|
32908
|
+
button.E_l48ei06.ui-kit-link-disabled {
|
|
32909
|
+
color: #0080FF;
|
|
32943
32910
|
}
|
|
32944
|
-
.
|
|
32945
|
-
|
|
32911
|
+
button.E_l48ei06.ui-kit-link-primary {
|
|
32912
|
+
color: #00122E;
|
|
32946
32913
|
}
|
|
32947
|
-
.
|
|
32948
|
-
|
|
32949
|
-
height: 2px;
|
|
32950
|
-
width: 10px;
|
|
32951
|
-
border-radius: 2px;
|
|
32914
|
+
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
32915
|
+
color: #0080FF;
|
|
32952
32916
|
}
|
|
32953
|
-
.
|
|
32954
|
-
|
|
32917
|
+
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
32918
|
+
color: #005ED1;
|
|
32955
32919
|
}
|
|
32956
|
-
.
|
|
32957
|
-
|
|
32958
|
-
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
32920
|
+
button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
|
|
32921
|
+
color: #00122E;
|
|
32959
32922
|
}
|
|
32960
|
-
.
|
|
32961
|
-
|
|
32923
|
+
button.E_l48ei06.ui-kit-link-secondary {
|
|
32924
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
32962
32925
|
}
|
|
32963
|
-
.
|
|
32964
|
-
|
|
32926
|
+
button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
|
|
32927
|
+
color: #0080FF;
|
|
32965
32928
|
}
|
|
32966
|
-
.
|
|
32967
|
-
|
|
32929
|
+
button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
|
|
32930
|
+
color: #005ED1;
|
|
32968
32931
|
}
|
|
32969
|
-
.
|
|
32970
|
-
|
|
32971
|
-
margin-left: 12px;
|
|
32972
|
-
color: #2d3a56;
|
|
32932
|
+
button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
32933
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
32973
32934
|
}
|
|
32974
|
-
|
|
32975
|
-
|
|
32976
|
-
|
|
32935
|
+
|
|
32936
|
+
.E_u3l9ivi {
|
|
32937
|
+
width: 100%;
|
|
32938
|
+
position: relative;
|
|
32977
32939
|
}
|
|
32978
|
-
.
|
|
32940
|
+
.E_u3l9ivi .upload-label {
|
|
32941
|
+
color: #00122e;
|
|
32942
|
+
word-break: break-word;
|
|
32943
|
+
margin-bottom: 4px;
|
|
32944
|
+
display: block;
|
|
32945
|
+
}
|
|
32946
|
+
.E_u3l9ivi .upload-description {
|
|
32947
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32948
|
+
word-break: break-word;
|
|
32949
|
+
}
|
|
32950
|
+
.E_u3l9ivi .upload-button {
|
|
32951
|
+
display: block;
|
|
32952
|
+
}
|
|
32953
|
+
.E_u3l9ivi .upload-button:not(:first-child),
|
|
32954
|
+
.E_u3l9ivi .upload-drag:not(:first-child) {
|
|
32955
|
+
margin-top: 8px;
|
|
32956
|
+
}
|
|
32957
|
+
.E_u3l9ivi .upload-button:not(:last-child),
|
|
32958
|
+
.E_u3l9ivi .upload-drag:not(:last-child) {
|
|
32959
|
+
margin-bottom: 8px;
|
|
32960
|
+
}
|
|
32961
|
+
.E_u3l9ivi .upload-drag-area {
|
|
32962
|
+
padding: 32px 16px;
|
|
32963
|
+
border-radius: 4px;
|
|
32964
|
+
border: 1px dashed rgba(107, 128, 167, 0.6);
|
|
32965
|
+
background: rgba(237, 241, 250, 0.6);
|
|
32966
|
+
display: flex;
|
|
32967
|
+
flex-direction: column;
|
|
32968
|
+
align-items: center;
|
|
32969
|
+
}
|
|
32970
|
+
.E_u3l9ivi .upload-drag-area .upload-drag-text {
|
|
32971
|
+
text-align: center;
|
|
32972
|
+
}
|
|
32973
|
+
.E_u3l9ivi .upload-drag-area .ant-upload-drag-container {
|
|
32974
|
+
color: #00122e;
|
|
32975
|
+
}
|
|
32976
|
+
.E_u3l9ivi .upload-drag-area.has-file {
|
|
32977
|
+
padding: 16px;
|
|
32978
|
+
}
|
|
32979
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container {
|
|
32980
|
+
display: flex;
|
|
32981
|
+
flex-direction: row;
|
|
32982
|
+
justify-content: center;
|
|
32983
|
+
align-items: flex-start;
|
|
32984
|
+
}
|
|
32985
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link {
|
|
32986
|
+
height: 24px;
|
|
32987
|
+
}
|
|
32988
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link[disabled] {
|
|
32989
|
+
color: #00122e;
|
|
32990
|
+
opacity: 1;
|
|
32991
|
+
}
|
|
32992
|
+
.E_u3l9ivi .upload-drag-area.has-file .upload-drag-text {
|
|
32979
32993
|
margin-left: 8px;
|
|
32994
|
+
text-align: left;
|
|
32980
32995
|
}
|
|
32981
|
-
.
|
|
32996
|
+
.E_u3l9ivi .upload-drag-area.has-file .upload-drag-text .ant-btn.ant-btn-link {
|
|
32997
|
+
height: 24px;
|
|
32998
|
+
}
|
|
32999
|
+
.E_u3l9ivi .upload-drag-area.has-file.single {
|
|
33000
|
+
padding: 12px;
|
|
33001
|
+
line-height: 24px;
|
|
33002
|
+
}
|
|
33003
|
+
.E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container {
|
|
33004
|
+
display: flex;
|
|
33005
|
+
flex-direction: row;
|
|
33006
|
+
align-items: flex-start;
|
|
33007
|
+
justify-content: space-between;
|
|
33008
|
+
line-height: 24px;
|
|
33009
|
+
word-break: break-all;
|
|
33010
|
+
}
|
|
33011
|
+
.E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container .ant-btn.ant-btn-link {
|
|
33012
|
+
height: 24px;
|
|
33013
|
+
}
|
|
33014
|
+
.E_u3l9ivi .upload-drag-area.file-error.single {
|
|
33015
|
+
border-color: #f0483e;
|
|
33016
|
+
background: rgba(255, 74, 74, 0.1);
|
|
33017
|
+
}
|
|
33018
|
+
.E_u3l9ivi .upload-drag-area .file-info {
|
|
33019
|
+
display: flex;
|
|
33020
|
+
cursor: default;
|
|
33021
|
+
align-items: flex-start;
|
|
33022
|
+
}
|
|
33023
|
+
.E_u3l9ivi .upload-drag-area .file-info .icon-wrapper {
|
|
33024
|
+
margin: 4px 0;
|
|
33025
|
+
}
|
|
33026
|
+
.E_u3l9ivi .upload-drag-area .file-info .file-name {
|
|
33027
|
+
margin: 3px 4px;
|
|
33028
|
+
text-align: left;
|
|
33029
|
+
}
|
|
33030
|
+
.E_u3l9ivi .upload-drag-area:not(.ant-upload-disabled):not(.file-error):hover {
|
|
33031
|
+
border-color: #0080ff;
|
|
33032
|
+
background: rgba(0, 136, 255, 0.1);
|
|
33033
|
+
}
|
|
33034
|
+
.E_u3l9ivi .upload-drag-area.ant-upload-disabled {
|
|
33035
|
+
opacity: 0.5;
|
|
33036
|
+
}
|
|
33037
|
+
.E_u3l9ivi .upload-drag-area.ant-upload-disabled.reach-max-count {
|
|
33038
|
+
color: rgba(0, 21, 64, 0.3);
|
|
33039
|
+
}
|
|
33040
|
+
.E_u3l9ivi .upload-error {
|
|
33041
|
+
margin-top: 8px;
|
|
33042
|
+
color: #f0483e;
|
|
33043
|
+
}
|
|
33044
|
+
.E_u3l9ivi .upload-file-info-list {
|
|
33045
|
+
gap: 4px;
|
|
33046
|
+
display: flex;
|
|
33047
|
+
flex-direction: column;
|
|
33048
|
+
}
|
|
33049
|
+
.E_u3l9ivi .upload-file-list {
|
|
33050
|
+
width: 100%;
|
|
33051
|
+
}
|
|
33052
|
+
.E_u3l9ivi .upload-file-list .upload-file-item {
|
|
33053
|
+
padding-bottom: 4px;
|
|
33054
|
+
}
|
|
33055
|
+
.E_u3l9ivi .upload-file-list .upload-file-item:not(:last-child) {
|
|
33056
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
33057
|
+
margin-bottom: 4px;
|
|
33058
|
+
}
|
|
33059
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info {
|
|
33060
|
+
display: flex;
|
|
33061
|
+
align-items: flex-start;
|
|
33062
|
+
}
|
|
33063
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info {
|
|
33064
|
+
display: flex;
|
|
33065
|
+
align-items: flex-start;
|
|
33066
|
+
width: calc(100% - 25px);
|
|
33067
|
+
}
|
|
33068
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .validating {
|
|
33069
|
+
color: rgba(0, 21, 64, 0.3);
|
|
33070
|
+
}
|
|
33071
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .icon-wrapper {
|
|
33072
|
+
margin: 0 4px;
|
|
33073
|
+
}
|
|
33074
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .remove-button {
|
|
33075
|
+
margin-left: auto;
|
|
33076
|
+
}
|
|
33077
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-error {
|
|
33078
|
+
color: #e75a3a;
|
|
32982
33079
|
margin-left: 24px;
|
|
32983
33080
|
}
|
|
32984
33081
|
|
|
33082
|
+
.E_ftdwz1g {
|
|
33083
|
+
display: flex;
|
|
33084
|
+
width: 100%;
|
|
33085
|
+
flex-direction: row;
|
|
33086
|
+
background: rgba(237, 241, 250, 0.6);
|
|
33087
|
+
padding: 7px 8px;
|
|
33088
|
+
border-radius: 4px;
|
|
33089
|
+
gap: 4px;
|
|
33090
|
+
align-items: self-start;
|
|
33091
|
+
color: #00122e;
|
|
33092
|
+
}
|
|
33093
|
+
.E_ftdwz1g .file-size,
|
|
33094
|
+
.E_ftdwz1g .file-size-unit {
|
|
33095
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33096
|
+
}
|
|
33097
|
+
.E_ftdwz1g .file-info {
|
|
33098
|
+
flex-grow: 1;
|
|
33099
|
+
overflow: hidden;
|
|
33100
|
+
}
|
|
33101
|
+
.E_ftdwz1g .icon-wrapper {
|
|
33102
|
+
margin-top: 2px;
|
|
33103
|
+
cursor: pointer;
|
|
33104
|
+
}
|
|
33105
|
+
.E_ftdwz1g .upload-file-error {
|
|
33106
|
+
color: #f0483e;
|
|
33107
|
+
}
|
|
33108
|
+
.E_ftdwz1g.file-error-wrapper {
|
|
33109
|
+
background: rgba(255, 74, 74, 0.1);
|
|
33110
|
+
}
|
|
33111
|
+
.E_ftdwz1g.disabled {
|
|
33112
|
+
opacity: 0.5;
|
|
33113
|
+
}
|
|
33114
|
+
|
|
32985
33115
|
.E_b14q2gmw {
|
|
32986
33116
|
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);
|
|
32987
33117
|
}
|
|
@@ -32999,62 +33129,79 @@ input.E_rf8rlle.ant-input {
|
|
|
32999
33129
|
transform: translateY(-4px);
|
|
33000
33130
|
}
|
|
33001
33131
|
|
|
33002
|
-
.
|
|
33003
|
-
|
|
33004
|
-
|
|
33005
|
-
|
|
33006
|
-
|
|
33007
|
-
justify-content: center;
|
|
33008
|
-
position: relative;
|
|
33009
|
-
opacity: 0.2;
|
|
33132
|
+
.E_sddwhm6 {
|
|
33133
|
+
margin: 0;
|
|
33134
|
+
border-radius: 20px;
|
|
33135
|
+
padding: 2px 10px;
|
|
33136
|
+
height: 22px;
|
|
33010
33137
|
}
|
|
33011
|
-
|
|
33012
|
-
.
|
|
33013
|
-
position: absolute;
|
|
33014
|
-
width: 5px;
|
|
33015
|
-
height: 48px;
|
|
33016
|
-
left: 9.33px;
|
|
33017
|
-
top: 40.5px;
|
|
33018
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33019
|
-
border-radius: 5px;
|
|
33020
|
-
transform: rotate(-128deg);
|
|
33021
|
-
transform-origin: top left;
|
|
33022
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
33138
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
33139
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
33023
33140
|
}
|
|
33024
|
-
|
|
33025
|
-
.
|
|
33026
|
-
position: absolute;
|
|
33027
|
-
width: 5px;
|
|
33028
|
-
height: 48px;
|
|
33029
|
-
left: 40.8px;
|
|
33030
|
-
top: 8.4px;
|
|
33031
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33032
|
-
border-radius: 5px;
|
|
33033
|
-
transform: rotate(-8deg);
|
|
33034
|
-
transform-origin: top left;
|
|
33035
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
33141
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
|
|
33142
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
33036
33143
|
}
|
|
33037
|
-
|
|
33038
|
-
|
|
33039
|
-
position: absolute;
|
|
33040
|
-
width: 5px;
|
|
33041
|
-
height: 48px;
|
|
33042
|
-
left: 52.9px;
|
|
33043
|
-
top: 51.8px;
|
|
33044
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33045
|
-
border-radius: 5px;
|
|
33046
|
-
transform: rotate(112deg);
|
|
33047
|
-
transform-origin: top left;
|
|
33048
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
33144
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
33145
|
+
color: #00122e;
|
|
33049
33146
|
}
|
|
33050
|
-
|
|
33051
|
-
|
|
33052
|
-
padding-left: 0;
|
|
33147
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
33148
|
+
margin-right: 6px;
|
|
33053
33149
|
}
|
|
33054
|
-
.
|
|
33055
|
-
|
|
33056
|
-
|
|
33057
|
-
|
|
33150
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
33151
|
+
margin-left: 8px;
|
|
33152
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33153
|
+
}
|
|
33154
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
33155
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
33156
|
+
}
|
|
33157
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
33158
|
+
background-color: #0080ff;
|
|
33159
|
+
}
|
|
33160
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.__pseudo-states-hover {
|
|
33161
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
33162
|
+
}
|
|
33163
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
33164
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
33165
|
+
}
|
|
33166
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
33167
|
+
background-color: #f0483e;
|
|
33168
|
+
}
|
|
33169
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
33170
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
33171
|
+
}
|
|
33172
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
33173
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
33174
|
+
}
|
|
33175
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
33176
|
+
background-color: #fea008;
|
|
33177
|
+
}
|
|
33178
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
33179
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
33180
|
+
}
|
|
33181
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
33182
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
33183
|
+
}
|
|
33184
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
33185
|
+
background-color: #00ba5d;
|
|
33186
|
+
}
|
|
33187
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.__pseudo-states-hover {
|
|
33188
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
33189
|
+
}
|
|
33190
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
33191
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
33192
|
+
}
|
|
33193
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
33194
|
+
background-color: #6b7d99;
|
|
33195
|
+
}
|
|
33196
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.__pseudo-states-hover {
|
|
33197
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
33198
|
+
}
|
|
33199
|
+
|
|
33200
|
+
.E_satwmqm {
|
|
33201
|
+
width: 8px;
|
|
33202
|
+
height: 8px;
|
|
33203
|
+
border-radius: 50%;
|
|
33204
|
+
display: inline-block;
|
|
33058
33205
|
}
|
|
33059
33206
|
|
|
33060
33207
|
.E_tc97u5y {
|
|
@@ -33428,133 +33575,649 @@ input.E_rf8rlle.ant-input {
|
|
|
33428
33575
|
background: #fff;
|
|
33429
33576
|
}
|
|
33430
33577
|
|
|
33431
|
-
|
|
33432
|
-
|
|
33433
|
-
|
|
33434
|
-
|
|
33435
|
-
|
|
33436
|
-
|
|
33578
|
+
.E_c1kghdax {
|
|
33579
|
+
color: #2d3a56;
|
|
33580
|
+
padding: 7px 12px;
|
|
33581
|
+
display: flex;
|
|
33582
|
+
justify-content: space-between;
|
|
33583
|
+
align-items: center;
|
|
33437
33584
|
}
|
|
33438
|
-
|
|
33439
|
-
|
|
33440
|
-
|
|
33441
|
-
|
|
33585
|
+
.E_c1kghdax.has-arrow {
|
|
33586
|
+
padding-left: 10px;
|
|
33587
|
+
}
|
|
33588
|
+
.E_c1kghdax.has-arrow .title-wrapper {
|
|
33589
|
+
cursor: pointer;
|
|
33590
|
+
color: #00122e;
|
|
33591
|
+
}
|
|
33592
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
33593
|
+
color: #2d3a56;
|
|
33594
|
+
font-weight: 600;
|
|
33595
|
+
}
|
|
33596
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
33597
|
+
transform: rotate(90deg);
|
|
33598
|
+
}
|
|
33599
|
+
.E_c1kghdax .sub-info {
|
|
33600
|
+
font-size: 12px;
|
|
33601
|
+
line-height: 18px;
|
|
33602
|
+
}
|
|
33603
|
+
.E_c1kghdax .title-wrapper {
|
|
33604
|
+
display: flex;
|
|
33605
|
+
align-items: center;
|
|
33606
|
+
user-select: none;
|
|
33607
|
+
flex-grow: 1;
|
|
33608
|
+
font-size: 12px;
|
|
33609
|
+
line-height: 18px;
|
|
33610
|
+
color: #2d3a56;
|
|
33611
|
+
font-weight: 700;
|
|
33612
|
+
}
|
|
33613
|
+
.E_c1kghdax .collapse-arrow {
|
|
33614
|
+
transition: all 50ms ease-out 0ms;
|
|
33615
|
+
margin-right: 2px;
|
|
33616
|
+
}
|
|
33617
|
+
|
|
33618
|
+
.E_ckui4s7 {
|
|
33619
|
+
color: #2d3a56;
|
|
33620
|
+
line-height: 22px;
|
|
33621
|
+
display: inline-flex;
|
|
33622
|
+
}
|
|
33623
|
+
.E_ckui4s7 .ant-checkbox {
|
|
33624
|
+
height: 22px;
|
|
33625
|
+
display: flex;
|
|
33626
|
+
align-items: center;
|
|
33627
|
+
top: 0;
|
|
33628
|
+
}
|
|
33629
|
+
.E_ckui4s7 .ant-checkbox-checked::after {
|
|
33630
|
+
border: none;
|
|
33631
|
+
}
|
|
33632
|
+
.E_ckui4s7.ant-checkbox-wrapper:hover .ant-checkbox-inner, .E_ckui4s7.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox:hover .ant-checkbox-inner {
|
|
33633
|
+
border-color: #0080ff;
|
|
33634
|
+
}
|
|
33635
|
+
.E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
|
|
33636
|
+
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
33637
|
+
}
|
|
33638
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
33639
|
+
border: 1px solid #0080ff;
|
|
33640
|
+
}
|
|
33641
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
33642
|
+
background: #0080ff;
|
|
33643
|
+
}
|
|
33644
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
33645
|
+
background-color: #fff;
|
|
33646
|
+
height: 2px;
|
|
33647
|
+
width: 10px;
|
|
33648
|
+
border-radius: 2px;
|
|
33649
|
+
}
|
|
33650
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled {
|
|
33651
|
+
opacity: 0.5;
|
|
33652
|
+
}
|
|
33653
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
33654
|
+
background: rgba(211, 218, 235, 0.6);
|
|
33655
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
33656
|
+
}
|
|
33657
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
33658
|
+
border-color: #2d3a56;
|
|
33659
|
+
}
|
|
33660
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
33661
|
+
background: #2d3a56;
|
|
33662
|
+
}
|
|
33663
|
+
.E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
|
|
33664
|
+
padding: 0;
|
|
33665
|
+
}
|
|
33666
|
+
.E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
|
|
33667
|
+
display: inline-block;
|
|
33668
|
+
margin-left: 12px;
|
|
33669
|
+
color: #2d3a56;
|
|
33670
|
+
}
|
|
33671
|
+
.E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
|
|
33672
|
+
margin-left: 28px;
|
|
33673
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33674
|
+
}
|
|
33675
|
+
.E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
|
|
33676
|
+
margin-left: 8px;
|
|
33677
|
+
}
|
|
33678
|
+
.E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
|
|
33679
|
+
margin-left: 24px;
|
|
33680
|
+
}
|
|
33681
|
+
|
|
33682
|
+
.E_c1yd35n {
|
|
33683
|
+
padding: 0 12px 14px 12px;
|
|
33684
|
+
}
|
|
33685
|
+
|
|
33686
|
+
.E_lht19u8 {
|
|
33687
|
+
width: 64px;
|
|
33688
|
+
height: 64px;
|
|
33689
|
+
display: flex;
|
|
33690
|
+
align-items: center;
|
|
33691
|
+
justify-content: center;
|
|
33692
|
+
position: relative;
|
|
33693
|
+
opacity: 0.2;
|
|
33694
|
+
}
|
|
33695
|
+
|
|
33696
|
+
.E_lk3gkp4 {
|
|
33697
|
+
position: absolute;
|
|
33698
|
+
width: 5px;
|
|
33699
|
+
height: 48px;
|
|
33700
|
+
left: 9.33px;
|
|
33701
|
+
top: 40.5px;
|
|
33702
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33703
|
+
border-radius: 5px;
|
|
33704
|
+
transform: rotate(-128deg);
|
|
33705
|
+
transform-origin: top left;
|
|
33706
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
33707
|
+
}
|
|
33708
|
+
|
|
33709
|
+
.E_ll4n94n {
|
|
33710
|
+
position: absolute;
|
|
33711
|
+
width: 5px;
|
|
33712
|
+
height: 48px;
|
|
33713
|
+
left: 40.8px;
|
|
33714
|
+
top: 8.4px;
|
|
33715
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33716
|
+
border-radius: 5px;
|
|
33717
|
+
transform: rotate(-8deg);
|
|
33718
|
+
transform-origin: top left;
|
|
33719
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
33720
|
+
}
|
|
33721
|
+
|
|
33722
|
+
.E_l17lbdo6 {
|
|
33723
|
+
position: absolute;
|
|
33724
|
+
width: 5px;
|
|
33725
|
+
height: 48px;
|
|
33726
|
+
left: 52.9px;
|
|
33727
|
+
top: 51.8px;
|
|
33728
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33729
|
+
border-radius: 5px;
|
|
33730
|
+
transform: rotate(112deg);
|
|
33731
|
+
transform-origin: top left;
|
|
33732
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
33733
|
+
}
|
|
33734
|
+
|
|
33735
|
+
.E_t1tbywr9 {
|
|
33736
|
+
width: 100%;
|
|
33737
|
+
flex: 1;
|
|
33738
|
+
display: flex;
|
|
33739
|
+
flex-direction: column;
|
|
33740
|
+
}
|
|
33741
|
+
.E_t1tbywr9.medium .tab-bar {
|
|
33742
|
+
height: 32px;
|
|
33743
|
+
}
|
|
33744
|
+
.E_t1tbywr9.medium .tab-bar .common-tab-bar {
|
|
33745
|
+
height: 32px;
|
|
33746
|
+
}
|
|
33747
|
+
.E_t1tbywr9.medium .tab-bar .common-tab-bar .tab-item-title {
|
|
33748
|
+
height: 32px;
|
|
33749
|
+
border-top-left-radius: 6px;
|
|
33750
|
+
border-top-right-radius: 6px;
|
|
33751
|
+
padding-right: 16px;
|
|
33752
|
+
padding-left: 16px;
|
|
33753
|
+
font-size: 16px;
|
|
33754
|
+
}
|
|
33755
|
+
.E_t1tbywr9.small .tab-bar {
|
|
33756
|
+
height: 24px;
|
|
33757
|
+
}
|
|
33758
|
+
.E_t1tbywr9.small .tab-bar .common-tab-bar {
|
|
33759
|
+
height: 24px;
|
|
33760
|
+
}
|
|
33761
|
+
.E_t1tbywr9.small .tab-bar .common-tab-bar .tab-item-title {
|
|
33762
|
+
height: 24px;
|
|
33763
|
+
border-top-left-radius: 4px;
|
|
33764
|
+
border-top-right-radius: 4px;
|
|
33765
|
+
padding-right: 12px;
|
|
33766
|
+
padding-left: 12px;
|
|
33767
|
+
font-size: 14px;
|
|
33768
|
+
}
|
|
33769
|
+
.E_t1tbywr9 .tab-bar {
|
|
33770
|
+
max-width: 100%;
|
|
33771
|
+
display: flex;
|
|
33772
|
+
place-items: center;
|
|
33773
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
33774
|
+
}
|
|
33775
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar {
|
|
33776
|
+
overflow: hidden;
|
|
33777
|
+
display: flex;
|
|
33778
|
+
place-items: center;
|
|
33779
|
+
}
|
|
33780
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar .tab-item-title:first-child:not(.__selected):not(:hover) {
|
|
33781
|
+
padding-left: 0px;
|
|
33782
|
+
}
|
|
33783
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar + .tab-item-title {
|
|
33784
|
+
margin-left: 12px;
|
|
33785
|
+
position: relative;
|
|
33786
|
+
}
|
|
33787
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar + .tab-item-title::before {
|
|
33788
|
+
content: "";
|
|
33789
|
+
width: 1px;
|
|
33790
|
+
height: 24px;
|
|
33791
|
+
background: rgba(172, 186, 211, 0.6);
|
|
33792
|
+
position: absolute;
|
|
33793
|
+
left: -6px;
|
|
33794
|
+
top: 50%;
|
|
33795
|
+
transform: translateY(-50%);
|
|
33796
|
+
}
|
|
33797
|
+
.E_t1tbywr9 .tab-bar .tab-item-title {
|
|
33798
|
+
flex-shrink: 0;
|
|
33799
|
+
display: flex;
|
|
33800
|
+
place-items: center;
|
|
33801
|
+
cursor: pointer;
|
|
33802
|
+
color: rgba(44, 56, 82, 0.75);
|
|
33803
|
+
transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
|
|
33804
|
+
}
|
|
33805
|
+
.E_t1tbywr9 .tab-bar .tab-item-title:hover {
|
|
33806
|
+
padding-left: 16px;
|
|
33807
|
+
color: #0080ff;
|
|
33808
|
+
background: rgba(0, 136, 255, 0.1607843137);
|
|
33809
|
+
}
|
|
33810
|
+
.E_t1tbywr9 .tab-bar .tab-item-title + .tab-item-title {
|
|
33811
|
+
margin-left: 2px;
|
|
33812
|
+
}
|
|
33813
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.more:not(.__selected) {
|
|
33814
|
+
width: 16px;
|
|
33815
|
+
height: 16px;
|
|
33816
|
+
padding: 0;
|
|
33817
|
+
border-radius: 2px;
|
|
33818
|
+
margin-left: 8px;
|
|
33819
|
+
}
|
|
33820
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.more.__selected.tab-title-text {
|
|
33821
|
+
margin-left: 8px;
|
|
33822
|
+
}
|
|
33823
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.__selected {
|
|
33824
|
+
padding-left: 16px;
|
|
33825
|
+
background: rgba(0, 136, 255, 0.1);
|
|
33826
|
+
color: #0080ff;
|
|
33827
|
+
}
|
|
33828
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.__hidden {
|
|
33829
|
+
display: none;
|
|
33830
|
+
}
|
|
33831
|
+
|
|
33832
|
+
.E_ti12z2.ant-dropdown-open {
|
|
33833
|
+
color: #0080ff;
|
|
33834
|
+
background: rgba(211, 218, 235, 0.6);
|
|
33835
|
+
}
|
|
33836
|
+
|
|
33837
|
+
.E_m19lu3v {
|
|
33838
|
+
cursor: default;
|
|
33839
|
+
}
|
|
33840
|
+
.E_m19lu3v .menu-wrapper {
|
|
33841
|
+
min-width: 160px;
|
|
33842
|
+
max-width: 400px;
|
|
33843
|
+
padding: 6px;
|
|
33844
|
+
background: #fff;
|
|
33845
|
+
box-shadow: 0px 0px 10px rgba(107, 125, 153, 0.18), 0px 12px 40px rgba(45, 58, 86, 0.3);
|
|
33846
|
+
border-radius: 8px;
|
|
33847
|
+
max-height: calc(100vh - 250px);
|
|
33848
|
+
overflow: auto;
|
|
33849
|
+
}
|
|
33850
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item {
|
|
33851
|
+
display: flex;
|
|
33852
|
+
place-items: center;
|
|
33853
|
+
width: var(--itemWidth);
|
|
33854
|
+
}
|
|
33855
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item + .tab-menu-item {
|
|
33856
|
+
margin-top: 8px;
|
|
33857
|
+
}
|
|
33858
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.__selected {
|
|
33859
|
+
padding: 6px;
|
|
33860
|
+
background: rgba(0, 136, 255, 0.1);
|
|
33861
|
+
color: #0080ff;
|
|
33862
|
+
}
|
|
33863
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.__selectedE_l1fbkbzo {
|
|
33864
|
+
font-family: Inter;
|
|
33865
|
+
font-style: normal;
|
|
33866
|
+
font-weight: bold !important;
|
|
33867
|
+
}
|
|
33868
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item {
|
|
33869
|
+
padding: 5px 12px;
|
|
33870
|
+
border-radius: 4px;
|
|
33871
|
+
}
|
|
33872
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover {
|
|
33873
|
+
color: #0080ff;
|
|
33874
|
+
background: rgba(211, 218, 235, 0.6);
|
|
33875
|
+
}
|
|
33876
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item-text {
|
|
33877
|
+
text-align: left;
|
|
33878
|
+
flex: 1;
|
|
33879
|
+
overflow: hidden;
|
|
33880
|
+
text-overflow: ellipsis;
|
|
33881
|
+
white-space: nowrap;
|
|
33882
|
+
}
|
|
33883
|
+
|
|
33884
|
+
.E_i1bmwe2m {
|
|
33885
|
+
margin: auto;
|
|
33886
|
+
cursor: pointer;
|
|
33887
|
+
line-height: normal;
|
|
33888
|
+
height: 16px;
|
|
33889
|
+
margin-right: 3px;
|
|
33890
|
+
}
|
|
33891
|
+
.E_i1bmwe2m .icon-inner {
|
|
33892
|
+
display: block;
|
|
33893
|
+
height: 16px;
|
|
33894
|
+
}
|
|
33895
|
+
|
|
33896
|
+
.E_w7ob4th.outside-tag {
|
|
33897
|
+
padding-left: 0;
|
|
33898
|
+
}
|
|
33899
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
33900
|
+
border-radius: 4px 0 0 4px;
|
|
33901
|
+
padding-right: 4px;
|
|
33902
|
+
margin-right: 4px;
|
|
33903
|
+
}
|
|
33904
|
+
|
|
33905
|
+
.E_sjob3jg {
|
|
33906
|
+
--item-min-width: 60px;
|
|
33907
|
+
}
|
|
33908
|
+
.E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
|
|
33909
|
+
display: none !important;
|
|
33910
|
+
}
|
|
33911
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active {
|
|
33912
|
+
flex-shrink: 0 !important;
|
|
33913
|
+
}
|
|
33914
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
33915
|
+
color: #0080ff;
|
|
33916
|
+
}
|
|
33917
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
33918
|
+
color: #0080ff;
|
|
33919
|
+
font-weight: normal;
|
|
33920
|
+
}
|
|
33921
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title, .E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container:hover .ant-steps-item-content .ant-steps-item-title {
|
|
33922
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33923
|
+
}
|
|
33924
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
33925
|
+
color: #00122e;
|
|
33926
|
+
}
|
|
33927
|
+
.E_sjob3jg .step-item-text {
|
|
33928
|
+
display: inline-block;
|
|
33929
|
+
}
|
|
33930
|
+
.E_sjob3jg .step-item-title {
|
|
33931
|
+
overflow: hidden;
|
|
33932
|
+
white-space: nowrap;
|
|
33933
|
+
text-overflow: ellipsis;
|
|
33442
33934
|
}
|
|
33443
|
-
|
|
33935
|
+
|
|
33936
|
+
.E_hjvj6s6 .ant-steps-item-container {
|
|
33937
|
+
min-width: var(--item-min-width);
|
|
33938
|
+
}
|
|
33939
|
+
.E_hjvj6s6 .ant-steps-item-disabled {
|
|
33940
|
+
cursor: not-allowed !important;
|
|
33941
|
+
}
|
|
33942
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
33943
|
+
flex-direction: row;
|
|
33944
|
+
justify-content: stretch;
|
|
33945
|
+
}
|
|
33946
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
33947
|
+
padding: 0;
|
|
33444
33948
|
margin-right: 4px;
|
|
33949
|
+
flex: 1;
|
|
33950
|
+
overflow: visible;
|
|
33445
33951
|
}
|
|
33446
|
-
|
|
33447
|
-
|
|
33952
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
33953
|
+
width: 100%;
|
|
33954
|
+
min-height: unset;
|
|
33448
33955
|
}
|
|
33449
|
-
|
|
33450
|
-
|
|
33956
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
33957
|
+
height: 26px;
|
|
33958
|
+
line-height: 26px;
|
|
33959
|
+
width: 100%;
|
|
33960
|
+
padding: 0;
|
|
33961
|
+
font-size: 12px;
|
|
33451
33962
|
}
|
|
33452
|
-
|
|
33453
|
-
|
|
33963
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
33964
|
+
margin-right: 10px;
|
|
33454
33965
|
}
|
|
33455
|
-
|
|
33456
|
-
|
|
33966
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
33967
|
+
display: none;
|
|
33457
33968
|
}
|
|
33458
|
-
|
|
33459
|
-
|
|
33969
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
33970
|
+
padding-left: 8px;
|
|
33971
|
+
padding-right: 4px;
|
|
33972
|
+
border-radius: 4px 0 0 4px;
|
|
33460
33973
|
}
|
|
33461
|
-
|
|
33462
|
-
|
|
33974
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
33975
|
+
margin-right: 0;
|
|
33463
33976
|
}
|
|
33464
|
-
|
|
33465
|
-
|
|
33977
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
33978
|
+
padding-right: 8px;
|
|
33979
|
+
padding-left: 12px;
|
|
33980
|
+
border-radius: 0 4px 4px 0;
|
|
33466
33981
|
}
|
|
33467
|
-
|
|
33468
|
-
|
|
33982
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
33983
|
+
content: "";
|
|
33984
|
+
width: 0;
|
|
33985
|
+
height: 0;
|
|
33986
|
+
border: 13px solid transparent;
|
|
33987
|
+
position: absolute;
|
|
33988
|
+
top: 0;
|
|
33989
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
33990
|
+
z-index: 2;
|
|
33991
|
+
position: relative;
|
|
33992
|
+
top: -50%;
|
|
33993
|
+
right: -100%;
|
|
33469
33994
|
}
|
|
33470
|
-
|
|
33471
|
-
|
|
33995
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
33996
|
+
padding: 0 4px 0 12px;
|
|
33472
33997
|
}
|
|
33473
|
-
|
|
33474
|
-
|
|
33998
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
33999
|
+
content: "";
|
|
34000
|
+
width: 0;
|
|
34001
|
+
height: 0;
|
|
34002
|
+
border: 13px solid transparent;
|
|
34003
|
+
position: absolute;
|
|
34004
|
+
top: 0;
|
|
34005
|
+
border-left: 8px solid #fff;
|
|
34006
|
+
left: 0;
|
|
33475
34007
|
}
|
|
33476
|
-
|
|
33477
|
-
|
|
34008
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
34009
|
+
max-width: calc(100% - var(--item-min-width) * 2);
|
|
33478
34010
|
}
|
|
33479
|
-
|
|
33480
|
-
color: rgba(
|
|
34011
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
34012
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
34013
|
+
}
|
|
34014
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
34015
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
34016
|
+
}
|
|
34017
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
34018
|
+
cursor: pointer;
|
|
34019
|
+
min-width: var(--item-min-width);
|
|
34020
|
+
}
|
|
34021
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
34022
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
34023
|
+
min-width: var(--item-min-width);
|
|
34024
|
+
}
|
|
34025
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
34026
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
34027
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
34028
|
+
}
|
|
34029
|
+
.E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
34030
|
+
padding: 0;
|
|
33481
34031
|
}
|
|
33482
34032
|
|
|
33483
|
-
.
|
|
33484
|
-
|
|
33485
|
-
|
|
33486
|
-
padding: 2px 10px;
|
|
33487
|
-
height: 22px;
|
|
34033
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical {
|
|
34034
|
+
width: 192px;
|
|
34035
|
+
row-gap: 2px;
|
|
33488
34036
|
}
|
|
33489
|
-
.
|
|
33490
|
-
background-color: rgba(
|
|
34037
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
|
|
34038
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
33491
34039
|
}
|
|
33492
|
-
.
|
|
33493
|
-
|
|
34040
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
|
|
34041
|
+
color: #00122e !important;
|
|
33494
34042
|
}
|
|
33495
|
-
.
|
|
33496
|
-
color:
|
|
34043
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-disabled) .ant-steps-item-container:hover {
|
|
34044
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
33497
34045
|
}
|
|
33498
|
-
.
|
|
33499
|
-
|
|
34046
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
|
|
34047
|
+
padding: 0 8px;
|
|
34048
|
+
border-radius: 4px;
|
|
34049
|
+
height: 32px;
|
|
34050
|
+
display: flex;
|
|
34051
|
+
align-items: center;
|
|
33500
34052
|
}
|
|
33501
|
-
.
|
|
33502
|
-
|
|
33503
|
-
|
|
34053
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
34054
|
+
min-height: auto;
|
|
34055
|
+
white-space: nowrap;
|
|
33504
34056
|
}
|
|
33505
|
-
.
|
|
33506
|
-
|
|
34057
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
34058
|
+
font-size: 13px;
|
|
34059
|
+
line-height: 20px;
|
|
34060
|
+
max-width: 100%;
|
|
34061
|
+
padding-right: 0;
|
|
33507
34062
|
}
|
|
33508
|
-
.
|
|
33509
|
-
background
|
|
34063
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
|
|
34064
|
+
background: rgba(0, 128, 255, 0.1);
|
|
33510
34065
|
}
|
|
33511
|
-
|
|
33512
|
-
|
|
34066
|
+
|
|
34067
|
+
.E_h6l1tj4 {
|
|
34068
|
+
width: 100%;
|
|
34069
|
+
display: inline-flex;
|
|
34070
|
+
align-items: center;
|
|
34071
|
+
justify-content: center;
|
|
34072
|
+
column-gap: 4px;
|
|
33513
34073
|
}
|
|
33514
|
-
.
|
|
33515
|
-
|
|
34074
|
+
.E_h6l1tj4 .step-item-prefix-container {
|
|
34075
|
+
display: inline-flex;
|
|
34076
|
+
align-items: center;
|
|
34077
|
+
width: 18px;
|
|
34078
|
+
height: 18px;
|
|
34079
|
+
color: rgba(44, 56, 82, 0.75);
|
|
34080
|
+
justify-content: center;
|
|
33516
34081
|
}
|
|
33517
|
-
|
|
33518
|
-
|
|
34082
|
+
|
|
34083
|
+
.E_v18frne8 {
|
|
34084
|
+
width: 100%;
|
|
34085
|
+
display: flex;
|
|
34086
|
+
align-items: center;
|
|
34087
|
+
justify-content: center;
|
|
34088
|
+
column-gap: 6px;
|
|
34089
|
+
font-size: 13px;
|
|
33519
34090
|
}
|
|
33520
|
-
.
|
|
33521
|
-
|
|
34091
|
+
.E_v18frne8 .step-item-prefix-container {
|
|
34092
|
+
display: inline-flex;
|
|
34093
|
+
align-items: center;
|
|
34094
|
+
min-width: 20px;
|
|
34095
|
+
min-height: 20px;
|
|
34096
|
+
color: rgba(44, 56, 82, 0.75);
|
|
34097
|
+
justify-content: center;
|
|
33522
34098
|
}
|
|
33523
|
-
|
|
33524
|
-
|
|
34099
|
+
|
|
34100
|
+
.E_slr2ynn {
|
|
34101
|
+
padding: 0 8px;
|
|
34102
|
+
height: 18px;
|
|
33525
34103
|
}
|
|
33526
|
-
|
|
33527
|
-
|
|
34104
|
+
|
|
34105
|
+
.E_m140wbb6 {
|
|
34106
|
+
padding: 2px 8px;
|
|
34107
|
+
height: 24px;
|
|
33528
34108
|
}
|
|
33529
|
-
|
|
33530
|
-
|
|
34109
|
+
|
|
34110
|
+
.E_t1fozc1i {
|
|
34111
|
+
margin: 0;
|
|
33531
34112
|
}
|
|
33532
|
-
|
|
33533
|
-
|
|
34113
|
+
|
|
34114
|
+
.E_i1vxv4ln {
|
|
34115
|
+
margin-right: 4px;
|
|
34116
|
+
height: 16px;
|
|
34117
|
+
}
|
|
34118
|
+
|
|
34119
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
34120
|
+
font-weight: 700;
|
|
34121
|
+
color: #00122e;
|
|
34122
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
34123
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
34124
|
+
word-break: break-all;
|
|
34125
|
+
display: inline;
|
|
34126
|
+
white-space: normal;
|
|
34127
|
+
}
|
|
34128
|
+
|
|
34129
|
+
.E_l1ucdodl {
|
|
34130
|
+
margin: 0;
|
|
34131
|
+
border-radius: 20px;
|
|
34132
|
+
padding: 2px 10px;
|
|
34133
|
+
height: 22px;
|
|
34134
|
+
display: flex;
|
|
34135
|
+
align-items: center;
|
|
34136
|
+
}
|
|
34137
|
+
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
34138
|
+
color: #FFFFFF;
|
|
34139
|
+
}
|
|
34140
|
+
.E_l1ucdodl.tag-hover {
|
|
34141
|
+
cursor: pointer;
|
|
34142
|
+
}
|
|
34143
|
+
.E_l1ucdodl.ui-kit-status-legend {
|
|
34144
|
+
color: #00122e;
|
|
34145
|
+
}
|
|
34146
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
34147
|
+
margin-right: 6px;
|
|
34148
|
+
}
|
|
34149
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
34150
|
+
margin-left: 8px;
|
|
34151
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34152
|
+
}
|
|
34153
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
34154
|
+
color: #FFFFFF;
|
|
34155
|
+
}
|
|
34156
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
34157
|
+
background-color: #0080ff;
|
|
33534
34158
|
}
|
|
33535
|
-
.
|
|
33536
|
-
background-color: #
|
|
34159
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
34160
|
+
background-color: #f0483e;
|
|
33537
34161
|
}
|
|
33538
|
-
.
|
|
33539
|
-
background-color:
|
|
34162
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
34163
|
+
background-color: #fea008;
|
|
33540
34164
|
}
|
|
33541
|
-
.
|
|
33542
|
-
background-color:
|
|
34165
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
34166
|
+
background-color: #00ba5d;
|
|
33543
34167
|
}
|
|
33544
|
-
.
|
|
34168
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
33545
34169
|
background-color: #6b7d99;
|
|
33546
34170
|
}
|
|
33547
|
-
.
|
|
33548
|
-
background-color:
|
|
34171
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
34172
|
+
background-color: #7E41FF;
|
|
33549
34173
|
}
|
|
33550
34174
|
|
|
33551
|
-
.
|
|
34175
|
+
.E_s1qj66nc {
|
|
33552
34176
|
width: 8px;
|
|
33553
34177
|
height: 8px;
|
|
33554
34178
|
border-radius: 50%;
|
|
33555
34179
|
display: inline-block;
|
|
33556
34180
|
}
|
|
33557
34181
|
|
|
34182
|
+
.E_s5x1boq {
|
|
34183
|
+
width: 8px;
|
|
34184
|
+
height: 8px;
|
|
34185
|
+
border-radius: 2px;
|
|
34186
|
+
display: inline-block;
|
|
34187
|
+
}
|
|
34188
|
+
|
|
34189
|
+
.E_c1xm185 {
|
|
34190
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34191
|
+
}
|
|
34192
|
+
|
|
34193
|
+
.E_c1x5l5qc {
|
|
34194
|
+
flex: 1;
|
|
34195
|
+
}
|
|
34196
|
+
|
|
34197
|
+
.E_r77hffu {
|
|
34198
|
+
display: flex;
|
|
34199
|
+
align-items: center;
|
|
34200
|
+
justify-content: space-between;
|
|
34201
|
+
column-gap: 6px;
|
|
34202
|
+
}
|
|
34203
|
+
|
|
34204
|
+
.E_p1cmxsf7 {
|
|
34205
|
+
display: flex;
|
|
34206
|
+
flex-direction: column;
|
|
34207
|
+
justify-content: center;
|
|
34208
|
+
row-gap: var(--p1cmxsf7-0);
|
|
34209
|
+
}
|
|
34210
|
+
.E_p1cmxsf7 .antd5-progress-line {
|
|
34211
|
+
font-size: 0;
|
|
34212
|
+
margin-bottom: unset;
|
|
34213
|
+
margin-inline-end: unset;
|
|
34214
|
+
}
|
|
34215
|
+
|
|
34216
|
+
.E_i1g85yz3 {
|
|
34217
|
+
margin-right: 4px;
|
|
34218
|
+
height: 16px;
|
|
34219
|
+
}
|
|
34220
|
+
|
|
33558
34221
|
.E_t1dtlqs1 {
|
|
33559
34222
|
margin-bottom: 4px;
|
|
33560
34223
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -33687,297 +34350,68 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
33687
34350
|
.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 > * {
|
|
33688
34351
|
text-align: right;
|
|
33689
34352
|
}
|
|
33690
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
33691
|
-
margin-right: 8px;
|
|
33692
|
-
}
|
|
33693
|
-
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
33694
|
-
padding: 4px;
|
|
33695
|
-
width: 24px;
|
|
33696
|
-
height: 24px;
|
|
33697
|
-
overflow: hidden;
|
|
33698
|
-
}
|
|
33699
|
-
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
33700
|
-
padding: 0;
|
|
33701
|
-
}
|
|
33702
|
-
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
33703
|
-
cursor: not-allowed;
|
|
33704
|
-
opacity: 0.5;
|
|
33705
|
-
}
|
|
33706
|
-
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
33707
|
-
margin: 0;
|
|
33708
|
-
}
|
|
33709
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
33710
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
33711
|
-
border-radius: 5px;
|
|
33712
|
-
font-size: 12px;
|
|
33713
|
-
}
|
|
33714
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
33715
|
-
font-size: inherit;
|
|
33716
|
-
}
|
|
33717
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
33718
|
-
min-height: 24px;
|
|
33719
|
-
font-size: 12px;
|
|
33720
|
-
position: relative;
|
|
33721
|
-
}
|
|
33722
|
-
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
33723
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
33724
|
-
}
|
|
33725
|
-
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
33726
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
33727
|
-
}
|
|
33728
|
-
|
|
33729
|
-
.E_a138syjm {
|
|
33730
|
-
display: flex;
|
|
33731
|
-
align-items: center;
|
|
33732
|
-
margin-top: 8px;
|
|
33733
|
-
gap: 8px;
|
|
33734
|
-
}
|
|
33735
|
-
.E_a138syjm button.ant-btn {
|
|
33736
|
-
padding: 2px 8px;
|
|
33737
|
-
height: 24px;
|
|
33738
|
-
}
|
|
33739
|
-
.E_a138syjm > span.maximum-desc {
|
|
33740
|
-
display: none;
|
|
33741
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33742
|
-
}
|
|
33743
|
-
.E_a138syjm > span.maximum-desc.disabled {
|
|
33744
|
-
display: inline;
|
|
33745
|
-
}
|
|
33746
|
-
|
|
33747
|
-
.E_d77i8u0 {
|
|
33748
|
-
width: 24px;
|
|
33749
|
-
height: 24px;
|
|
33750
|
-
padding: 4px;
|
|
33751
|
-
margin-right: 8px;
|
|
33752
|
-
}
|
|
33753
|
-
|
|
33754
|
-
.E_sjob3jg {
|
|
33755
|
-
--item-min-width: 60px;
|
|
33756
|
-
}
|
|
33757
|
-
.E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
|
|
33758
|
-
display: none !important;
|
|
33759
|
-
}
|
|
33760
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-active {
|
|
33761
|
-
flex-shrink: 0 !important;
|
|
33762
|
-
}
|
|
33763
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
33764
|
-
color: #0080ff;
|
|
33765
|
-
}
|
|
33766
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
33767
|
-
color: #0080ff;
|
|
33768
|
-
font-weight: normal;
|
|
33769
|
-
}
|
|
33770
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title, .E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container:hover .ant-steps-item-content .ant-steps-item-title {
|
|
33771
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33772
|
-
}
|
|
33773
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
33774
|
-
color: #00122e;
|
|
33775
|
-
}
|
|
33776
|
-
.E_sjob3jg .step-item-text {
|
|
33777
|
-
display: inline-block;
|
|
33778
|
-
}
|
|
33779
|
-
.E_sjob3jg .step-item-title {
|
|
33780
|
-
overflow: hidden;
|
|
33781
|
-
white-space: nowrap;
|
|
33782
|
-
text-overflow: ellipsis;
|
|
33783
|
-
}
|
|
33784
|
-
|
|
33785
|
-
.E_hjvj6s6 .ant-steps-item-container {
|
|
33786
|
-
min-width: var(--item-min-width);
|
|
33787
|
-
}
|
|
33788
|
-
.E_hjvj6s6 .ant-steps-item-disabled {
|
|
33789
|
-
cursor: not-allowed !important;
|
|
33790
|
-
}
|
|
33791
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
33792
|
-
flex-direction: row;
|
|
33793
|
-
justify-content: stretch;
|
|
33794
|
-
}
|
|
33795
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
33796
|
-
padding: 0;
|
|
33797
|
-
margin-right: 4px;
|
|
33798
|
-
flex: 1;
|
|
33799
|
-
overflow: visible;
|
|
33800
|
-
}
|
|
33801
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
33802
|
-
width: 100%;
|
|
33803
|
-
min-height: unset;
|
|
33804
|
-
}
|
|
33805
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
33806
|
-
height: 26px;
|
|
33807
|
-
line-height: 26px;
|
|
33808
|
-
width: 100%;
|
|
33809
|
-
padding: 0;
|
|
33810
|
-
font-size: 12px;
|
|
33811
|
-
}
|
|
33812
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
33813
|
-
margin-right: 10px;
|
|
33814
|
-
}
|
|
33815
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
33816
|
-
display: none;
|
|
33817
|
-
}
|
|
33818
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
33819
|
-
padding-left: 8px;
|
|
33820
|
-
padding-right: 4px;
|
|
33821
|
-
border-radius: 4px 0 0 4px;
|
|
33822
|
-
}
|
|
33823
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
33824
|
-
margin-right: 0;
|
|
33825
|
-
}
|
|
33826
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
33827
|
-
padding-right: 8px;
|
|
33828
|
-
padding-left: 12px;
|
|
33829
|
-
border-radius: 0 4px 4px 0;
|
|
33830
|
-
}
|
|
33831
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
33832
|
-
content: "";
|
|
33833
|
-
width: 0;
|
|
33834
|
-
height: 0;
|
|
33835
|
-
border: 13px solid transparent;
|
|
33836
|
-
position: absolute;
|
|
33837
|
-
top: 0;
|
|
33838
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
33839
|
-
z-index: 2;
|
|
33840
|
-
position: relative;
|
|
33841
|
-
top: -50%;
|
|
33842
|
-
right: -100%;
|
|
33843
|
-
}
|
|
33844
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
33845
|
-
padding: 0 4px 0 12px;
|
|
33846
|
-
}
|
|
33847
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
33848
|
-
content: "";
|
|
33849
|
-
width: 0;
|
|
33850
|
-
height: 0;
|
|
33851
|
-
border: 13px solid transparent;
|
|
33852
|
-
position: absolute;
|
|
33853
|
-
top: 0;
|
|
33854
|
-
border-left: 8px solid #fff;
|
|
33855
|
-
left: 0;
|
|
33856
|
-
}
|
|
33857
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
33858
|
-
max-width: calc(100% - var(--item-min-width) * 2);
|
|
33859
|
-
}
|
|
33860
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
33861
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
33862
|
-
}
|
|
33863
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
33864
|
-
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
33865
|
-
}
|
|
33866
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
33867
|
-
cursor: pointer;
|
|
33868
|
-
min-width: var(--item-min-width);
|
|
33869
|
-
}
|
|
33870
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
33871
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
33872
|
-
min-width: var(--item-min-width);
|
|
33873
|
-
}
|
|
33874
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
33875
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
33876
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
33877
|
-
}
|
|
33878
|
-
.E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
33879
|
-
padding: 0;
|
|
33880
|
-
}
|
|
33881
|
-
|
|
33882
|
-
.E_v4tv3mf .ant-steps.ant-steps-vertical {
|
|
33883
|
-
width: 192px;
|
|
33884
|
-
row-gap: 2px;
|
|
34353
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
34354
|
+
margin-right: 8px;
|
|
33885
34355
|
}
|
|
33886
|
-
.
|
|
33887
|
-
|
|
34356
|
+
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
34357
|
+
padding: 4px;
|
|
34358
|
+
width: 24px;
|
|
34359
|
+
height: 24px;
|
|
34360
|
+
overflow: hidden;
|
|
33888
34361
|
}
|
|
33889
|
-
.
|
|
33890
|
-
|
|
34362
|
+
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
34363
|
+
padding: 0;
|
|
33891
34364
|
}
|
|
33892
|
-
.
|
|
33893
|
-
|
|
34365
|
+
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
34366
|
+
cursor: not-allowed;
|
|
34367
|
+
opacity: 0.5;
|
|
33894
34368
|
}
|
|
33895
|
-
.
|
|
33896
|
-
|
|
33897
|
-
border-radius: 4px;
|
|
33898
|
-
height: 32px;
|
|
33899
|
-
display: flex;
|
|
33900
|
-
align-items: center;
|
|
34369
|
+
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
34370
|
+
margin: 0;
|
|
33901
34371
|
}
|
|
33902
|
-
.
|
|
33903
|
-
|
|
33904
|
-
|
|
34372
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
34373
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
34374
|
+
border-radius: 5px;
|
|
34375
|
+
font-size: 12px;
|
|
33905
34376
|
}
|
|
33906
|
-
.
|
|
33907
|
-
font-size:
|
|
33908
|
-
line-height: 20px;
|
|
33909
|
-
max-width: 100%;
|
|
33910
|
-
padding-right: 0;
|
|
34377
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
34378
|
+
font-size: inherit;
|
|
33911
34379
|
}
|
|
33912
|
-
.
|
|
33913
|
-
|
|
34380
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
34381
|
+
min-height: 24px;
|
|
34382
|
+
font-size: 12px;
|
|
34383
|
+
position: relative;
|
|
33914
34384
|
}
|
|
33915
|
-
|
|
33916
|
-
.
|
|
33917
|
-
width: 100%;
|
|
33918
|
-
display: inline-flex;
|
|
33919
|
-
align-items: center;
|
|
33920
|
-
justify-content: center;
|
|
33921
|
-
column-gap: 4px;
|
|
34385
|
+
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
34386
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
33922
34387
|
}
|
|
33923
|
-
.
|
|
33924
|
-
|
|
33925
|
-
align-items: center;
|
|
33926
|
-
width: 18px;
|
|
33927
|
-
height: 18px;
|
|
33928
|
-
color: rgba(44, 56, 82, 0.75);
|
|
33929
|
-
justify-content: center;
|
|
34388
|
+
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
34389
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
33930
34390
|
}
|
|
33931
34391
|
|
|
33932
|
-
.
|
|
33933
|
-
width: 100%;
|
|
34392
|
+
.E_a138syjm {
|
|
33934
34393
|
display: flex;
|
|
33935
34394
|
align-items: center;
|
|
33936
|
-
|
|
33937
|
-
|
|
33938
|
-
font-size: 13px;
|
|
33939
|
-
}
|
|
33940
|
-
.E_v18frne8 .step-item-prefix-container {
|
|
33941
|
-
display: inline-flex;
|
|
33942
|
-
align-items: center;
|
|
33943
|
-
min-width: 20px;
|
|
33944
|
-
min-height: 20px;
|
|
33945
|
-
color: rgba(44, 56, 82, 0.75);
|
|
33946
|
-
justify-content: center;
|
|
33947
|
-
}
|
|
33948
|
-
|
|
33949
|
-
.E_i1g85yz3 {
|
|
33950
|
-
margin-right: 4px;
|
|
33951
|
-
height: 16px;
|
|
33952
|
-
}
|
|
33953
|
-
|
|
33954
|
-
.E_slr2ynn {
|
|
33955
|
-
padding: 0 8px;
|
|
33956
|
-
height: 18px;
|
|
34395
|
+
margin-top: 8px;
|
|
34396
|
+
gap: 8px;
|
|
33957
34397
|
}
|
|
33958
|
-
|
|
33959
|
-
.E_m140wbb6 {
|
|
34398
|
+
.E_a138syjm button.ant-btn {
|
|
33960
34399
|
padding: 2px 8px;
|
|
33961
34400
|
height: 24px;
|
|
33962
34401
|
}
|
|
33963
|
-
|
|
33964
|
-
|
|
33965
|
-
|
|
34402
|
+
.E_a138syjm > span.maximum-desc {
|
|
34403
|
+
display: none;
|
|
34404
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33966
34405
|
}
|
|
33967
|
-
|
|
33968
|
-
|
|
33969
|
-
margin-right: 4px;
|
|
33970
|
-
height: 16px;
|
|
34406
|
+
.E_a138syjm > span.maximum-desc.disabled {
|
|
34407
|
+
display: inline;
|
|
33971
34408
|
}
|
|
33972
34409
|
|
|
33973
|
-
.
|
|
33974
|
-
|
|
33975
|
-
|
|
33976
|
-
|
|
33977
|
-
|
|
33978
|
-
word-break: break-all;
|
|
33979
|
-
display: inline;
|
|
33980
|
-
white-space: normal;
|
|
34410
|
+
.E_d77i8u0 {
|
|
34411
|
+
width: 24px;
|
|
34412
|
+
height: 24px;
|
|
34413
|
+
padding: 4px;
|
|
34414
|
+
margin-right: 8px;
|
|
33981
34415
|
}
|
|
33982
34416
|
|
|
33983
34417
|
.E_t13ef470 {
|
|
@@ -34010,93 +34444,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34010
34444
|
background: rgba(163, 180, 204, 0.18);
|
|
34011
34445
|
}
|
|
34012
34446
|
|
|
34013
|
-
.E_l1ucdodl {
|
|
34014
|
-
margin: 0;
|
|
34015
|
-
border-radius: 20px;
|
|
34016
|
-
padding: 2px 10px;
|
|
34017
|
-
height: 22px;
|
|
34018
|
-
display: flex;
|
|
34019
|
-
align-items: center;
|
|
34020
|
-
}
|
|
34021
|
-
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
34022
|
-
color: #FFFFFF;
|
|
34023
|
-
}
|
|
34024
|
-
.E_l1ucdodl.tag-hover {
|
|
34025
|
-
cursor: pointer;
|
|
34026
|
-
}
|
|
34027
|
-
.E_l1ucdodl.ui-kit-status-legend {
|
|
34028
|
-
color: #00122e;
|
|
34029
|
-
}
|
|
34030
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
34031
|
-
margin-right: 6px;
|
|
34032
|
-
}
|
|
34033
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
34034
|
-
margin-left: 8px;
|
|
34035
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34036
|
-
}
|
|
34037
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
34038
|
-
color: #FFFFFF;
|
|
34039
|
-
}
|
|
34040
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
34041
|
-
background-color: #0080ff;
|
|
34042
|
-
}
|
|
34043
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
34044
|
-
background-color: #f0483e;
|
|
34045
|
-
}
|
|
34046
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
34047
|
-
background-color: #fea008;
|
|
34048
|
-
}
|
|
34049
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
34050
|
-
background-color: #00ba5d;
|
|
34051
|
-
}
|
|
34052
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
34053
|
-
background-color: #6b7d99;
|
|
34054
|
-
}
|
|
34055
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
34056
|
-
background-color: #7E41FF;
|
|
34057
|
-
}
|
|
34058
|
-
|
|
34059
|
-
.E_s1qj66nc {
|
|
34060
|
-
width: 8px;
|
|
34061
|
-
height: 8px;
|
|
34062
|
-
border-radius: 50%;
|
|
34063
|
-
display: inline-block;
|
|
34064
|
-
}
|
|
34065
|
-
|
|
34066
|
-
.E_s5x1boq {
|
|
34067
|
-
width: 8px;
|
|
34068
|
-
height: 8px;
|
|
34069
|
-
border-radius: 2px;
|
|
34070
|
-
display: inline-block;
|
|
34071
|
-
}
|
|
34072
|
-
|
|
34073
|
-
.E_c1xm185 {
|
|
34074
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34075
|
-
}
|
|
34076
|
-
|
|
34077
|
-
.E_c1x5l5qc {
|
|
34078
|
-
flex: 1;
|
|
34079
|
-
}
|
|
34080
|
-
|
|
34081
|
-
.E_r77hffu {
|
|
34082
|
-
display: flex;
|
|
34083
|
-
align-items: center;
|
|
34084
|
-
justify-content: space-between;
|
|
34085
|
-
column-gap: 6px;
|
|
34086
|
-
}
|
|
34087
|
-
|
|
34088
|
-
.E_p1cmxsf7 {
|
|
34089
|
-
display: flex;
|
|
34090
|
-
flex-direction: column;
|
|
34091
|
-
justify-content: center;
|
|
34092
|
-
row-gap: var(--p1cmxsf7-0);
|
|
34093
|
-
}
|
|
34094
|
-
.E_p1cmxsf7 .antd5-progress-line {
|
|
34095
|
-
font-size: 0;
|
|
34096
|
-
margin-bottom: unset;
|
|
34097
|
-
margin-inline-end: unset;
|
|
34098
|
-
}
|
|
34099
|
-
|
|
34100
34447
|
.E_msn7nxt {
|
|
34101
34448
|
color: rgba(44, 56, 82, 0.6);
|
|
34102
34449
|
text-align: center;
|
|
@@ -34499,63 +34846,16 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34499
34846
|
.E_wujsnt4 {
|
|
34500
34847
|
background-color: #E07F00;
|
|
34501
34848
|
}
|
|
34502
|
-
|
|
34503
|
-
.E_b1jaupqb {
|
|
34504
|
-
color: #F0483E;
|
|
34505
|
-
}
|
|
34506
|
-
|
|
34507
|
-
.E_t59qhqp {
|
|
34508
|
-
padding: 0px;
|
|
34509
|
-
padding-top: 5px;
|
|
34510
|
-
padding-left: 5px;
|
|
34511
|
-
}
|
|
34512
|
-
.E_t59qhqp .ant-timeline-item {
|
|
34513
|
-
margin-bottom: 16px;
|
|
34514
|
-
padding-bottom: 0px;
|
|
34515
|
-
}
|
|
34516
|
-
.E_t59qhqp .ant-timeline-item-last,
|
|
34517
|
-
.E_t59qhqp .compact.ant-timeline-item-last {
|
|
34518
|
-
margin-bottom: 0;
|
|
34519
|
-
}
|
|
34520
|
-
.E_t59qhqp .compact.ant-timeline-item {
|
|
34521
|
-
margin-bottom: 12px;
|
|
34522
|
-
}
|
|
34523
|
-
.E_t59qhqp .info-action {
|
|
34524
|
-
align-self: baseline;
|
|
34525
|
-
}
|
|
34526
|
-
|
|
34527
|
-
.E_t2e44lg .ant-timeline-item-content {
|
|
34528
|
-
margin-left: 18px;
|
|
34529
|
-
}
|
|
34530
|
-
.E_t2e44lg .item-time {
|
|
34531
|
-
display: flex;
|
|
34532
|
-
flex-direction: column;
|
|
34533
|
-
gap: 4px;
|
|
34534
|
-
margin-top: 4px;
|
|
34535
|
-
}
|
|
34536
|
-
.E_t2e44lg:last-child .ant-timeline-item-content {
|
|
34537
|
-
padding-bottom: 0;
|
|
34538
|
-
}
|
|
34539
|
-
|
|
34540
|
-
.E_e14ua30y {
|
|
34541
|
-
display: flex;
|
|
34542
|
-
flex-direction: column;
|
|
34543
|
-
align-items: center;
|
|
34544
|
-
justify-content: center;
|
|
34545
|
-
}
|
|
34546
|
-
|
|
34547
|
-
.E_s1ikqzph {
|
|
34548
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
34549
|
-
}
|
|
34550
|
-
|
|
34551
|
-
.E_i15astnl {
|
|
34552
|
-
color: #00122E;
|
|
34849
|
+
|
|
34850
|
+
.E_b1jaupqb {
|
|
34851
|
+
color: #F0483E;
|
|
34553
34852
|
}
|
|
34554
34853
|
|
|
34555
34854
|
.E_icab5o7 {
|
|
34556
34855
|
--modal-to-viewport-margin: 10px;
|
|
34557
34856
|
--modal-body-padding-bottom: 40px;
|
|
34558
34857
|
--modal-footer-height: 124px;
|
|
34858
|
+
--modal-empty-footer-height: 40px;
|
|
34559
34859
|
}
|
|
34560
34860
|
.E_icab5o7.ant-modal {
|
|
34561
34861
|
height: calc(100% - var(--modal-to-viewport-margin) * 2);
|
|
@@ -34615,6 +34915,18 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34615
34915
|
height: var(--modal-footer-height);
|
|
34616
34916
|
padding: 24px 0 60px 0;
|
|
34617
34917
|
}
|
|
34918
|
+
.E_icab5o7.ant-modal.no-footer .ant-modal-body {
|
|
34919
|
+
padding-bottom: 0;
|
|
34920
|
+
}
|
|
34921
|
+
.E_icab5o7.ant-modal.no-footer .ant-modal-body .middle {
|
|
34922
|
+
padding-bottom: 0;
|
|
34923
|
+
}
|
|
34924
|
+
.E_icab5o7.ant-modal.no-footer .ant-modal-footer {
|
|
34925
|
+
padding: 0;
|
|
34926
|
+
border-top: none;
|
|
34927
|
+
height: var(--modal-empty-footer-height);
|
|
34928
|
+
content: "";
|
|
34929
|
+
}
|
|
34618
34930
|
|
|
34619
34931
|
.E_msiso3p.ant-modal .ant-modal-header {
|
|
34620
34932
|
padding: 60px 0 40px 0;
|
|
@@ -34736,6 +35048,54 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34736
35048
|
font-weight: bold;
|
|
34737
35049
|
}
|
|
34738
35050
|
|
|
35051
|
+
.E_t59qhqp {
|
|
35052
|
+
padding: 0px;
|
|
35053
|
+
padding-top: 5px;
|
|
35054
|
+
padding-left: 5px;
|
|
35055
|
+
}
|
|
35056
|
+
.E_t59qhqp .ant-timeline-item {
|
|
35057
|
+
margin-bottom: 16px;
|
|
35058
|
+
padding-bottom: 0px;
|
|
35059
|
+
}
|
|
35060
|
+
.E_t59qhqp .ant-timeline-item-last,
|
|
35061
|
+
.E_t59qhqp .compact.ant-timeline-item-last {
|
|
35062
|
+
margin-bottom: 0;
|
|
35063
|
+
}
|
|
35064
|
+
.E_t59qhqp .compact.ant-timeline-item {
|
|
35065
|
+
margin-bottom: 12px;
|
|
35066
|
+
}
|
|
35067
|
+
.E_t59qhqp .info-action {
|
|
35068
|
+
align-self: baseline;
|
|
35069
|
+
}
|
|
35070
|
+
|
|
35071
|
+
.E_t2e44lg .ant-timeline-item-content {
|
|
35072
|
+
margin-left: 18px;
|
|
35073
|
+
}
|
|
35074
|
+
.E_t2e44lg .item-time {
|
|
35075
|
+
display: flex;
|
|
35076
|
+
flex-direction: column;
|
|
35077
|
+
gap: 4px;
|
|
35078
|
+
margin-top: 4px;
|
|
35079
|
+
}
|
|
35080
|
+
.E_t2e44lg:last-child .ant-timeline-item-content {
|
|
35081
|
+
padding-bottom: 0;
|
|
35082
|
+
}
|
|
35083
|
+
|
|
35084
|
+
.E_e14ua30y {
|
|
35085
|
+
display: flex;
|
|
35086
|
+
flex-direction: column;
|
|
35087
|
+
align-items: center;
|
|
35088
|
+
justify-content: center;
|
|
35089
|
+
}
|
|
35090
|
+
|
|
35091
|
+
.E_s1ikqzph {
|
|
35092
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
35093
|
+
}
|
|
35094
|
+
|
|
35095
|
+
.E_i15astnl {
|
|
35096
|
+
color: #00122E;
|
|
35097
|
+
}
|
|
35098
|
+
|
|
34739
35099
|
.E_s20iney.skeleton-box {
|
|
34740
35100
|
display: flex;
|
|
34741
35101
|
align-items: center;
|
|
@@ -34765,18 +35125,53 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34765
35125
|
}
|
|
34766
35126
|
}
|
|
34767
35127
|
|
|
35128
|
+
.E_sqv6dmy {
|
|
35129
|
+
display: flex;
|
|
35130
|
+
justify-content: flex-end;
|
|
35131
|
+
}
|
|
35132
|
+
|
|
35133
|
+
.E_p1rm8wzb {
|
|
35134
|
+
margin-right: 8px;
|
|
35135
|
+
}
|
|
35136
|
+
|
|
35137
|
+
.E_sd7qcf4 {
|
|
35138
|
+
height: 100%;
|
|
35139
|
+
width: 100%;
|
|
35140
|
+
overflow: auto;
|
|
35141
|
+
}
|
|
35142
|
+
|
|
35143
|
+
.E_r1fxc9gq.right {
|
|
35144
|
+
overflow: auto;
|
|
35145
|
+
padding-right: 2px;
|
|
35146
|
+
width: 200px;
|
|
35147
|
+
height: fit-content;
|
|
35148
|
+
max-height: calc(100vh - var(--modal-to-viewport-margin) * 2 - var(--side-panel-margin-top) - var(--modal-body-padding-bottom) - var(--modal-footer-height));
|
|
35149
|
+
scrollbar-gutter: stable;
|
|
35150
|
+
}
|
|
35151
|
+
.E_r1fxc9gq.right::-webkit-scrollbar {
|
|
35152
|
+
width: 6px;
|
|
35153
|
+
}
|
|
35154
|
+
.E_r1fxc9gq.right::-webkit-scrollbar-track {
|
|
35155
|
+
background: rgba(225, 230, 241, 0.6);
|
|
35156
|
+
}
|
|
35157
|
+
.E_r1fxc9gq.right::-webkit-scrollbar-thumb {
|
|
35158
|
+
background: rgba(172, 186, 211, 0.6);
|
|
35159
|
+
border-radius: 8px;
|
|
35160
|
+
}
|
|
35161
|
+
|
|
34768
35162
|
.E_dxyv8bv {
|
|
34769
35163
|
--footer-height: 80px;
|
|
34770
35164
|
--modal-content-width: 492px;
|
|
34771
35165
|
--modal-content-min-height: 160px;
|
|
34772
35166
|
--modal-content-max-height: calc(
|
|
34773
|
-
100vh -
|
|
35167
|
+
100vh - 80px
|
|
34774
35168
|
);
|
|
34775
35169
|
--modal-header-padding: 32px 40px 0;
|
|
34776
35170
|
--modal-content-padding-top: 32px;
|
|
34777
35171
|
--modal-content-padding-bottom: 32px;
|
|
34778
35172
|
--modal-content-padding-x: 40px;
|
|
34779
35173
|
--modal-footer-padding: 0 40px;
|
|
35174
|
+
--modal-empty-footer-height: 32px;
|
|
34780
35175
|
padding-bottom: 0;
|
|
34781
35176
|
}
|
|
34782
35177
|
.E_dxyv8bv .ant-modal-content {
|
|
@@ -34839,6 +35234,14 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34839
35234
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
34840
35235
|
font-weight: 700;
|
|
34841
35236
|
}
|
|
35237
|
+
.E_dxyv8bv.no-footer .ant-modal-body {
|
|
35238
|
+
padding-bottom: 0;
|
|
35239
|
+
}
|
|
35240
|
+
.E_dxyv8bv.no-footer .ant-modal-footer {
|
|
35241
|
+
box-shadow: none;
|
|
35242
|
+
height: var(--modal-empty-footer-height);
|
|
35243
|
+
content: "";
|
|
35244
|
+
}
|
|
34842
35245
|
|
|
34843
35246
|
.E_fbgo4wr {
|
|
34844
35247
|
display: flex;
|
|
@@ -34893,40 +35296,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34893
35296
|
color: rgba(0, 21, 64, 0.3019607843);
|
|
34894
35297
|
}
|
|
34895
35298
|
|
|
34896
|
-
.E_sqv6dmy {
|
|
34897
|
-
display: flex;
|
|
34898
|
-
justify-content: flex-end;
|
|
34899
|
-
}
|
|
34900
|
-
|
|
34901
|
-
.E_p1rm8wzb {
|
|
34902
|
-
margin-right: 8px;
|
|
34903
|
-
}
|
|
34904
|
-
|
|
34905
|
-
.E_sd7qcf4 {
|
|
34906
|
-
height: 100%;
|
|
34907
|
-
width: 100%;
|
|
34908
|
-
overflow: auto;
|
|
34909
|
-
}
|
|
34910
|
-
|
|
34911
|
-
.E_r1fxc9gq.right {
|
|
34912
|
-
overflow: auto;
|
|
34913
|
-
padding-right: 2px;
|
|
34914
|
-
width: 200px;
|
|
34915
|
-
height: fit-content;
|
|
34916
|
-
max-height: calc(100vh - var(--modal-to-viewport-margin) * 2 - var(--side-panel-margin-top) - var(--modal-body-padding-bottom) - var(--modal-footer-height));
|
|
34917
|
-
scrollbar-gutter: stable;
|
|
34918
|
-
}
|
|
34919
|
-
.E_r1fxc9gq.right::-webkit-scrollbar {
|
|
34920
|
-
width: 6px;
|
|
34921
|
-
}
|
|
34922
|
-
.E_r1fxc9gq.right::-webkit-scrollbar-track {
|
|
34923
|
-
background: rgba(225, 230, 241, 0.6);
|
|
34924
|
-
}
|
|
34925
|
-
.E_r1fxc9gq.right::-webkit-scrollbar-thumb {
|
|
34926
|
-
background: rgba(172, 186, 211, 0.6);
|
|
34927
|
-
border-radius: 8px;
|
|
34928
|
-
}
|
|
34929
|
-
|
|
34930
35299
|
.E_t1g36k2w {
|
|
34931
35300
|
overflow: hidden;
|
|
34932
35301
|
height: 100%;
|
|
@@ -34956,25 +35325,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34956
35325
|
background: rgba(225, 230, 241, 0.6);
|
|
34957
35326
|
}
|
|
34958
35327
|
|
|
34959
|
-
.E_f16blduf.ant-form-item {
|
|
34960
|
-
margin-bottom: 0;
|
|
34961
|
-
}
|
|
34962
|
-
.E_f16blduf .ant-form-item-explain {
|
|
34963
|
-
display: none;
|
|
34964
|
-
min-height: 18px;
|
|
34965
|
-
margin-top: 5px;
|
|
34966
|
-
font-family: "Inter";
|
|
34967
|
-
font-weight: 400;
|
|
34968
|
-
font-size: 12px;
|
|
34969
|
-
line-height: 18px;
|
|
34970
|
-
}
|
|
34971
|
-
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
34972
|
-
white-space: pre-wrap;
|
|
34973
|
-
}
|
|
34974
|
-
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
34975
|
-
display: block;
|
|
34976
|
-
}
|
|
34977
|
-
|
|
34978
35328
|
.E_t1gvlxt5 {
|
|
34979
35329
|
min-width: 0;
|
|
34980
35330
|
flex: 1;
|
|
@@ -35002,173 +35352,88 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35002
35352
|
color: #fff;
|
|
35003
35353
|
}
|
|
35004
35354
|
|
|
35005
|
-
.
|
|
35006
|
-
margin-
|
|
35007
|
-
}
|
|
35008
|
-
|
|
35009
|
-
.E_a1njc627 {
|
|
35010
|
-
font-size: 12px;
|
|
35011
|
-
color: #00122e;
|
|
35012
|
-
}
|
|
35013
|
-
|
|
35014
|
-
.E_d1u4ndxc {
|
|
35015
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
35016
|
-
font-size: 12px;
|
|
35017
|
-
}
|
|
35018
|
-
|
|
35019
|
-
.E_f6xb0iv {
|
|
35020
|
-
min-width: 0;
|
|
35021
|
-
flex: 1;
|
|
35022
|
-
}
|
|
35023
|
-
|
|
35024
|
-
.E_b1dhu7ov.antd5-progress {
|
|
35025
|
-
width: 220px;
|
|
35026
|
-
}
|
|
35027
|
-
|
|
35028
|
-
.E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
|
|
35029
|
-
content: "";
|
|
35030
|
-
display: block;
|
|
35031
|
-
height: 8px;
|
|
35032
|
-
background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
|
|
35033
|
-
animation: loading 1600ms ease-out infinite;
|
|
35034
|
-
opacity: 1;
|
|
35035
|
-
}
|
|
35036
|
-
@keyframes loading {
|
|
35037
|
-
from {
|
|
35038
|
-
transform: translateX(-100%);
|
|
35039
|
-
}
|
|
35040
|
-
to {
|
|
35041
|
-
transform: translateX(100%);
|
|
35042
|
-
}
|
|
35043
|
-
}
|
|
35044
|
-
|
|
35045
|
-
.E_i14c7jc8 {
|
|
35046
|
-
color: var(--i14c7jc8-0);
|
|
35047
|
-
}
|
|
35048
|
-
|
|
35049
|
-
.E_i1ibuolf {
|
|
35050
|
-
display: flex;
|
|
35051
|
-
align-items: center;
|
|
35052
|
-
column-gap: 4px;
|
|
35053
|
-
font-size: 12px;
|
|
35054
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
35055
|
-
}
|
|
35056
|
-
|
|
35057
|
-
.E_ou7iq30 {
|
|
35058
|
-
overflow: hidden;
|
|
35059
|
-
text-overflow: ellipsis;
|
|
35060
|
-
}
|
|
35061
|
-
|
|
35062
|
-
.E_s1tui002 {
|
|
35063
|
-
white-space: nowrap;
|
|
35064
|
-
}
|
|
35065
|
-
|
|
35066
|
-
.E_mxrc2zg {
|
|
35067
|
-
display: -webkit-box;
|
|
35068
|
-
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
35069
|
-
-webkit-box-orient: vertical;
|
|
35070
|
-
word-break: break-all;
|
|
35355
|
+
.E_f16blduf.ant-form-item {
|
|
35356
|
+
margin-bottom: 0;
|
|
35071
35357
|
}
|
|
35072
|
-
|
|
35073
|
-
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
35358
|
+
.E_f16blduf .ant-form-item-explain {
|
|
35074
35359
|
display: none;
|
|
35360
|
+
min-height: 18px;
|
|
35361
|
+
margin-top: 5px;
|
|
35362
|
+
font-family: "Inter";
|
|
35363
|
+
font-weight: 400;
|
|
35364
|
+
font-size: 12px;
|
|
35365
|
+
line-height: 18px;
|
|
35075
35366
|
}
|
|
35076
|
-
.
|
|
35077
|
-
|
|
35078
|
-
border-radius: 4px;
|
|
35079
|
-
}
|
|
35080
|
-
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
35081
|
-
visibility: hidden;
|
|
35082
|
-
}
|
|
35083
|
-
|
|
35084
|
-
.E_t1sqg15u {
|
|
35085
|
-
background: white;
|
|
35086
|
-
}
|
|
35087
|
-
.E_t1sqg15u.inline .table-row {
|
|
35088
|
-
flex-direction: column;
|
|
35089
|
-
}
|
|
35090
|
-
.E_t1sqg15u.inline .table-row > label {
|
|
35091
|
-
padding: 0 16px 7px 0;
|
|
35092
|
-
}
|
|
35093
|
-
.E_t1sqg15u.has-border .table-header {
|
|
35094
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35095
|
-
}
|
|
35096
|
-
.E_t1sqg15u.has-border .hiddenBorder {
|
|
35097
|
-
border-top: none !important;
|
|
35098
|
-
}
|
|
35099
|
-
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
35100
|
-
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
35101
|
-
}
|
|
35102
|
-
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
35103
|
-
padding-bottom: 0;
|
|
35104
|
-
}
|
|
35105
|
-
.E_t1sqg15u.align-right .content {
|
|
35106
|
-
text-align: right;
|
|
35107
|
-
}
|
|
35108
|
-
.E_t1sqg15u .uuid-row {
|
|
35109
|
-
display: flex;
|
|
35110
|
-
justify-content: space-between;
|
|
35367
|
+
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
35368
|
+
white-space: pre-wrap;
|
|
35111
35369
|
}
|
|
35112
|
-
.
|
|
35113
|
-
|
|
35114
|
-
overflow: hidden;
|
|
35115
|
-
text-overflow: ellipsis;
|
|
35370
|
+
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
35371
|
+
display: block;
|
|
35116
35372
|
}
|
|
35117
35373
|
|
|
35118
|
-
.
|
|
35119
|
-
|
|
35120
|
-
justify-content: space-between;
|
|
35121
|
-
align-items: center;
|
|
35122
|
-
padding: 8px;
|
|
35123
|
-
min-height: 32px;
|
|
35374
|
+
.E_a9y3flr {
|
|
35375
|
+
margin-left: 8px;
|
|
35124
35376
|
}
|
|
35125
|
-
|
|
35126
|
-
|
|
35127
|
-
font-weight: 600;
|
|
35377
|
+
|
|
35378
|
+
.E_a1njc627 {
|
|
35128
35379
|
font-size: 12px;
|
|
35129
|
-
|
|
35130
|
-
}
|
|
35131
|
-
.E_t4zczcp .edit-icon {
|
|
35132
|
-
font-size: 16px;
|
|
35133
|
-
color: rgba(10, 37, 85, 0.6);
|
|
35134
|
-
cursor: pointer;
|
|
35380
|
+
color: #00122e;
|
|
35135
35381
|
}
|
|
35136
35382
|
|
|
35137
|
-
.
|
|
35383
|
+
.E_d1u4ndxc {
|
|
35384
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
35138
35385
|
font-size: 12px;
|
|
35139
|
-
line-height: 18px;
|
|
35140
35386
|
}
|
|
35141
35387
|
|
|
35142
|
-
.
|
|
35143
|
-
|
|
35144
|
-
|
|
35145
|
-
color: #2d3a56;
|
|
35388
|
+
.E_f6xb0iv {
|
|
35389
|
+
min-width: 0;
|
|
35390
|
+
flex: 1;
|
|
35146
35391
|
}
|
|
35147
|
-
|
|
35148
|
-
|
|
35392
|
+
|
|
35393
|
+
.E_b1dhu7ov.antd5-progress {
|
|
35394
|
+
width: 220px;
|
|
35149
35395
|
}
|
|
35150
|
-
|
|
35151
|
-
|
|
35396
|
+
|
|
35397
|
+
.E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
|
|
35398
|
+
content: "";
|
|
35399
|
+
display: block;
|
|
35400
|
+
height: 8px;
|
|
35401
|
+
background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
|
|
35402
|
+
animation: loading 1600ms ease-out infinite;
|
|
35403
|
+
opacity: 1;
|
|
35152
35404
|
}
|
|
35153
|
-
|
|
35154
|
-
|
|
35155
|
-
|
|
35156
|
-
|
|
35157
|
-
|
|
35405
|
+
@keyframes loading {
|
|
35406
|
+
from {
|
|
35407
|
+
transform: translateX(-100%);
|
|
35408
|
+
}
|
|
35409
|
+
to {
|
|
35410
|
+
transform: translateX(100%);
|
|
35411
|
+
}
|
|
35158
35412
|
}
|
|
35159
|
-
|
|
35160
|
-
|
|
35161
|
-
|
|
35413
|
+
|
|
35414
|
+
.E_i14c7jc8 {
|
|
35415
|
+
color: var(--i14c7jc8-0);
|
|
35162
35416
|
}
|
|
35163
|
-
|
|
35164
|
-
|
|
35417
|
+
|
|
35418
|
+
.E_i1ibuolf {
|
|
35419
|
+
display: flex;
|
|
35420
|
+
align-items: center;
|
|
35421
|
+
column-gap: 4px;
|
|
35422
|
+
font-size: 12px;
|
|
35423
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
35165
35424
|
}
|
|
35166
35425
|
|
|
35167
|
-
.
|
|
35168
|
-
|
|
35169
|
-
|
|
35170
|
-
|
|
35171
|
-
|
|
35426
|
+
.E_skwah65 {
|
|
35427
|
+
height: 8px;
|
|
35428
|
+
box-sizing: border-box;
|
|
35429
|
+
border-radius: 2px;
|
|
35430
|
+
background: #f5f7fa;
|
|
35431
|
+
display: flex;
|
|
35432
|
+
width: 100%;
|
|
35433
|
+
overflow: hidden;
|
|
35434
|
+
}
|
|
35435
|
+
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
35436
|
+
margin-left: 1px;
|
|
35172
35437
|
}
|
|
35173
35438
|
|
|
35174
35439
|
.E_c18bcrac {
|
|
@@ -35221,122 +35486,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35221
35486
|
margin-right: 4px;
|
|
35222
35487
|
}
|
|
35223
35488
|
|
|
35224
|
-
span.E_tqjc4ui {
|
|
35225
|
-
margin: 0 2px;
|
|
35226
|
-
}
|
|
35227
|
-
|
|
35228
|
-
.E_n12mqh7z {
|
|
35229
|
-
display: flex;
|
|
35230
|
-
align-items: center;
|
|
35231
|
-
font-size: 12px;
|
|
35232
|
-
line-height: 18px;
|
|
35233
|
-
}
|
|
35234
|
-
.E_n12mqh7z:not(:last-child) {
|
|
35235
|
-
margin-bottom: 4px;
|
|
35236
|
-
}
|
|
35237
|
-
|
|
35238
|
-
.E_tf5bynu {
|
|
35239
|
-
margin: 0 3px;
|
|
35240
|
-
}
|
|
35241
|
-
|
|
35242
|
-
.E_tcckoz1 {
|
|
35243
|
-
max-height: 400px;
|
|
35244
|
-
overflow: auto;
|
|
35245
|
-
}
|
|
35246
|
-
|
|
35247
|
-
.E_clm1wy1 {
|
|
35248
|
-
width: 192px;
|
|
35249
|
-
height: 246px;
|
|
35250
|
-
border-radius: 4px;
|
|
35251
|
-
}
|
|
35252
|
-
.E_clm1wy1 > .ant-picker-calendar,
|
|
35253
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
35254
|
-
width: 100%;
|
|
35255
|
-
background-color: rgba(245, 247, 250, 0.6);
|
|
35256
|
-
border-top: none;
|
|
35257
|
-
}
|
|
35258
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
35259
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
35260
|
-
padding: 0 16px;
|
|
35261
|
-
}
|
|
35262
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
35263
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
35264
|
-
width: 100%;
|
|
35265
|
-
height: 180px;
|
|
35266
|
-
border-spacing: 0;
|
|
35267
|
-
}
|
|
35268
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
35269
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
35270
|
-
margin-bottom: 8px;
|
|
35271
|
-
}
|
|
35272
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
35273
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
35274
|
-
width: 22px;
|
|
35275
|
-
}
|
|
35276
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
35277
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
35278
|
-
padding: 0;
|
|
35279
|
-
}
|
|
35280
|
-
.E_clm1wy1 .ant-picker-cell {
|
|
35281
|
-
color: rgba(62, 70, 82, 0.6);
|
|
35282
|
-
opacity: 0.4;
|
|
35283
|
-
}
|
|
35284
|
-
.E_clm1wy1 .ant-picker-cell-in-view {
|
|
35285
|
-
color: rgba(62, 70, 82, 0.6);
|
|
35286
|
-
opacity: 1;
|
|
35287
|
-
}
|
|
35288
|
-
.E_clm1wy1 .ant-picker-cell-in-view > .active {
|
|
35289
|
-
color: #3e4652;
|
|
35290
|
-
}
|
|
35291
|
-
.E_clm1wy1 .ant-picker-cell::before {
|
|
35292
|
-
pointer-events: none;
|
|
35293
|
-
}
|
|
35294
|
-
|
|
35295
|
-
.E_t1tsm00v {
|
|
35296
|
-
color: rgba(129, 138, 153, 0.6);
|
|
35297
|
-
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
35298
|
-
backdrop-filter: blur(10px);
|
|
35299
|
-
padding: 7px 10px;
|
|
35300
|
-
}
|
|
35301
|
-
|
|
35302
|
-
.E_c167wnad {
|
|
35303
|
-
color: rgba(62, 70, 82, 0.6);
|
|
35304
|
-
display: flex;
|
|
35305
|
-
justify-content: space-between;
|
|
35306
|
-
align-items: center;
|
|
35307
|
-
padding: 8px 16px;
|
|
35308
|
-
}
|
|
35309
|
-
.E_c167wnad .anticon {
|
|
35310
|
-
cursor: pointer;
|
|
35311
|
-
}
|
|
35312
|
-
.E_c167wnad .anticon:hover {
|
|
35313
|
-
color: #0096ff;
|
|
35314
|
-
}
|
|
35315
|
-
|
|
35316
|
-
.E_cxhf7dh {
|
|
35317
|
-
text-align: center;
|
|
35318
|
-
}
|
|
35319
|
-
.E_cxhf7dh .dots {
|
|
35320
|
-
display: flex;
|
|
35321
|
-
justify-content: center;
|
|
35322
|
-
}
|
|
35323
|
-
.E_cxhf7dh .dot {
|
|
35324
|
-
display: inline-block;
|
|
35325
|
-
width: 2px;
|
|
35326
|
-
height: 2px;
|
|
35327
|
-
border-radius: 1px;
|
|
35328
|
-
background: #0096ff;
|
|
35329
|
-
}
|
|
35330
|
-
.E_cxhf7dh .dot:not(:last-child) {
|
|
35331
|
-
margin-right: 2px;
|
|
35332
|
-
}
|
|
35333
|
-
.E_cxhf7dh .bar {
|
|
35334
|
-
width: 9px;
|
|
35335
|
-
height: 2px;
|
|
35336
|
-
background: #0096ff;
|
|
35337
|
-
border-radius: 2px;
|
|
35338
|
-
}
|
|
35339
|
-
|
|
35340
35489
|
.E_s1ebs0ra {
|
|
35341
35490
|
display: flex;
|
|
35342
35491
|
align-items: center;
|
|
@@ -35394,49 +35543,115 @@ span.E_tqjc4ui {
|
|
|
35394
35543
|
justify-content: center;
|
|
35395
35544
|
border-radius: 50%;
|
|
35396
35545
|
}
|
|
35397
|
-
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
35398
|
-
background: #fff;
|
|
35546
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
35547
|
+
background: #fff;
|
|
35548
|
+
}
|
|
35549
|
+
|
|
35550
|
+
.E_clm1wy1 {
|
|
35551
|
+
width: 192px;
|
|
35552
|
+
height: 246px;
|
|
35553
|
+
border-radius: 4px;
|
|
35554
|
+
}
|
|
35555
|
+
.E_clm1wy1 > .ant-picker-calendar,
|
|
35556
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
35557
|
+
width: 100%;
|
|
35558
|
+
background-color: rgba(245, 247, 250, 0.6);
|
|
35559
|
+
border-top: none;
|
|
35560
|
+
}
|
|
35561
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
35562
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
35563
|
+
padding: 0 16px;
|
|
35564
|
+
}
|
|
35565
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
35566
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
35567
|
+
width: 100%;
|
|
35568
|
+
height: 180px;
|
|
35569
|
+
border-spacing: 0;
|
|
35570
|
+
}
|
|
35571
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
35572
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
35573
|
+
margin-bottom: 8px;
|
|
35574
|
+
}
|
|
35575
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
35576
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
35577
|
+
width: 22px;
|
|
35578
|
+
}
|
|
35579
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
35580
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
35581
|
+
padding: 0;
|
|
35582
|
+
}
|
|
35583
|
+
.E_clm1wy1 .ant-picker-cell {
|
|
35584
|
+
color: rgba(62, 70, 82, 0.6);
|
|
35585
|
+
opacity: 0.4;
|
|
35399
35586
|
}
|
|
35400
|
-
|
|
35401
|
-
.
|
|
35402
|
-
|
|
35587
|
+
.E_clm1wy1 .ant-picker-cell-in-view {
|
|
35588
|
+
color: rgba(62, 70, 82, 0.6);
|
|
35589
|
+
opacity: 1;
|
|
35403
35590
|
}
|
|
35404
|
-
.
|
|
35405
|
-
color:
|
|
35591
|
+
.E_clm1wy1 .ant-picker-cell-in-view > .active {
|
|
35592
|
+
color: #3e4652;
|
|
35406
35593
|
}
|
|
35407
|
-
.
|
|
35408
|
-
|
|
35594
|
+
.E_clm1wy1 .ant-picker-cell::before {
|
|
35595
|
+
pointer-events: none;
|
|
35409
35596
|
}
|
|
35410
35597
|
|
|
35411
|
-
.
|
|
35412
|
-
|
|
35413
|
-
|
|
35414
|
-
|
|
35415
|
-
|
|
35416
|
-
margin-right: 8px;
|
|
35598
|
+
.E_t1tsm00v {
|
|
35599
|
+
color: rgba(129, 138, 153, 0.6);
|
|
35600
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
35601
|
+
backdrop-filter: blur(10px);
|
|
35602
|
+
padding: 7px 10px;
|
|
35417
35603
|
}
|
|
35418
35604
|
|
|
35419
|
-
.
|
|
35605
|
+
.E_c167wnad {
|
|
35606
|
+
color: rgba(62, 70, 82, 0.6);
|
|
35420
35607
|
display: flex;
|
|
35608
|
+
justify-content: space-between;
|
|
35421
35609
|
align-items: center;
|
|
35422
|
-
|
|
35610
|
+
padding: 8px 16px;
|
|
35611
|
+
}
|
|
35612
|
+
.E_c167wnad .anticon {
|
|
35613
|
+
cursor: pointer;
|
|
35614
|
+
}
|
|
35615
|
+
.E_c167wnad .anticon:hover {
|
|
35616
|
+
color: #0096ff;
|
|
35423
35617
|
}
|
|
35424
35618
|
|
|
35425
|
-
.
|
|
35619
|
+
.E_cxhf7dh {
|
|
35620
|
+
text-align: center;
|
|
35621
|
+
}
|
|
35622
|
+
.E_cxhf7dh .dots {
|
|
35426
35623
|
display: flex;
|
|
35427
|
-
|
|
35428
|
-
width: calc(100% - 40px);
|
|
35624
|
+
justify-content: center;
|
|
35429
35625
|
}
|
|
35430
|
-
.
|
|
35626
|
+
.E_cxhf7dh .dot {
|
|
35431
35627
|
display: inline-block;
|
|
35432
|
-
width:
|
|
35628
|
+
width: 2px;
|
|
35629
|
+
height: 2px;
|
|
35630
|
+
border-radius: 1px;
|
|
35631
|
+
background: #0096ff;
|
|
35632
|
+
}
|
|
35633
|
+
.E_cxhf7dh .dot:not(:last-child) {
|
|
35634
|
+
margin-right: 2px;
|
|
35635
|
+
}
|
|
35636
|
+
.E_cxhf7dh .bar {
|
|
35637
|
+
width: 9px;
|
|
35638
|
+
height: 2px;
|
|
35639
|
+
background: #0096ff;
|
|
35640
|
+
border-radius: 2px;
|
|
35433
35641
|
}
|
|
35434
35642
|
|
|
35435
|
-
.
|
|
35436
|
-
|
|
35643
|
+
span.E_tqjc4ui {
|
|
35644
|
+
margin: 0 2px;
|
|
35437
35645
|
}
|
|
35438
|
-
|
|
35439
|
-
|
|
35646
|
+
|
|
35647
|
+
.E_gmyahx3 {
|
|
35648
|
+
cursor: pointer;
|
|
35649
|
+
}
|
|
35650
|
+
.E_gmyahx3 .link-text {
|
|
35651
|
+
color: rgba(0, 21, 64, 0.3);
|
|
35652
|
+
}
|
|
35653
|
+
.E_gmyahx3:hover .link-text {
|
|
35654
|
+
color: #0080ff;
|
|
35440
35655
|
}
|
|
35441
35656
|
|
|
35442
35657
|
.E_c1up1pdz {
|
|
@@ -35527,69 +35742,231 @@ span.E_tqjc4ui {
|
|
|
35527
35742
|
color: rgba(62, 70, 82, 0.6);
|
|
35528
35743
|
border-radius: 4px;
|
|
35529
35744
|
}
|
|
35530
|
-
.E_m126spxy .ant-btn.ant-btn-link.active {
|
|
35531
|
-
background: rgba(0, 128, 255, 0.1);
|
|
35532
|
-
color: #0096ff;
|
|
35745
|
+
.E_m126spxy .ant-btn.ant-btn-link.active {
|
|
35746
|
+
background: rgba(0, 128, 255, 0.1);
|
|
35747
|
+
color: #0096ff;
|
|
35748
|
+
}
|
|
35749
|
+
|
|
35750
|
+
.E_wpbf4pq {
|
|
35751
|
+
padding: 10px 0;
|
|
35752
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
35753
|
+
}
|
|
35754
|
+
.E_wpbf4pq .ant-input,
|
|
35755
|
+
.E_wpbf4pq .ant-picker {
|
|
35756
|
+
width: 80px;
|
|
35757
|
+
margin: 0 9px;
|
|
35758
|
+
text-align: center;
|
|
35759
|
+
}
|
|
35760
|
+
.E_wpbf4pq .options {
|
|
35761
|
+
padding: 12px 0 12px 16px;
|
|
35762
|
+
border-left: 2px solid rgba(129, 138, 153, 0.6);
|
|
35763
|
+
margin: 5px 0 5px 8px;
|
|
35764
|
+
}
|
|
35765
|
+
.E_wpbf4pq .week-day-option,
|
|
35766
|
+
.E_wpbf4pq .month-day-option {
|
|
35767
|
+
background: #f5f7fa;
|
|
35768
|
+
box-sizing: border-box;
|
|
35769
|
+
border-radius: 16px;
|
|
35770
|
+
margin-right: 8px;
|
|
35771
|
+
}
|
|
35772
|
+
.E_wpbf4pq .week-day-option:focus,
|
|
35773
|
+
.E_wpbf4pq .month-day-option:focus {
|
|
35774
|
+
color: inherit;
|
|
35775
|
+
border-color: #d9d9d9;
|
|
35776
|
+
}
|
|
35777
|
+
.E_wpbf4pq .week-day-option.active {
|
|
35778
|
+
background-color: #0096ff;
|
|
35779
|
+
border-color: #0096ff;
|
|
35780
|
+
color: #fff;
|
|
35781
|
+
}
|
|
35782
|
+
.E_wpbf4pq .week-day-option.en-text {
|
|
35783
|
+
width: 110px;
|
|
35784
|
+
margin-top: 4px;
|
|
35785
|
+
}
|
|
35786
|
+
.E_wpbf4pq .month-day-option {
|
|
35787
|
+
width: 32px;
|
|
35788
|
+
padding: 0;
|
|
35789
|
+
margin-bottom: 8px;
|
|
35790
|
+
}
|
|
35791
|
+
.E_wpbf4pq .month-day-option.active {
|
|
35792
|
+
background-color: #0096ff;
|
|
35793
|
+
border-color: #0096ff;
|
|
35794
|
+
color: #fff;
|
|
35795
|
+
}
|
|
35796
|
+
|
|
35797
|
+
.E_n12mqh7z {
|
|
35798
|
+
display: flex;
|
|
35799
|
+
align-items: center;
|
|
35800
|
+
font-size: 12px;
|
|
35801
|
+
line-height: 18px;
|
|
35802
|
+
}
|
|
35803
|
+
.E_n12mqh7z:not(:last-child) {
|
|
35804
|
+
margin-bottom: 4px;
|
|
35805
|
+
}
|
|
35806
|
+
|
|
35807
|
+
.E_tf5bynu {
|
|
35808
|
+
margin: 0 3px;
|
|
35809
|
+
}
|
|
35810
|
+
|
|
35811
|
+
.E_tcckoz1 {
|
|
35812
|
+
max-height: 400px;
|
|
35813
|
+
overflow: auto;
|
|
35814
|
+
}
|
|
35815
|
+
|
|
35816
|
+
.E_wg1tsps {
|
|
35817
|
+
display: flex;
|
|
35818
|
+
align-items: center;
|
|
35819
|
+
justify-content: flex-end;
|
|
35820
|
+
}
|
|
35821
|
+
|
|
35822
|
+
.E_b1ctd5xy {
|
|
35823
|
+
display: flex;
|
|
35824
|
+
align-items: center;
|
|
35825
|
+
width: calc(100% - 40px);
|
|
35826
|
+
}
|
|
35827
|
+
.E_b1ctd5xy .chart {
|
|
35828
|
+
display: inline-block;
|
|
35829
|
+
width: 100%;
|
|
35830
|
+
}
|
|
35831
|
+
|
|
35832
|
+
.E_u1p8acpn {
|
|
35833
|
+
min-width: 40px;
|
|
35834
|
+
}
|
|
35835
|
+
.E_u1p8acpn .unit {
|
|
35836
|
+
color: #00122e !important;
|
|
35837
|
+
}
|
|
35838
|
+
|
|
35839
|
+
.E_t1sqg15u {
|
|
35840
|
+
background: white;
|
|
35841
|
+
}
|
|
35842
|
+
.E_t1sqg15u.inline .table-row {
|
|
35843
|
+
flex-direction: column;
|
|
35844
|
+
}
|
|
35845
|
+
.E_t1sqg15u.inline .table-row > label {
|
|
35846
|
+
padding: 0 16px 7px 0;
|
|
35847
|
+
}
|
|
35848
|
+
.E_t1sqg15u.has-border .table-header {
|
|
35849
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35850
|
+
}
|
|
35851
|
+
.E_t1sqg15u.has-border .hiddenBorder {
|
|
35852
|
+
border-top: none !important;
|
|
35853
|
+
}
|
|
35854
|
+
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
35855
|
+
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
35856
|
+
}
|
|
35857
|
+
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
35858
|
+
padding-bottom: 0;
|
|
35859
|
+
}
|
|
35860
|
+
.E_t1sqg15u.align-right .content {
|
|
35861
|
+
text-align: right;
|
|
35862
|
+
}
|
|
35863
|
+
.E_t1sqg15u .uuid-row {
|
|
35864
|
+
display: flex;
|
|
35865
|
+
justify-content: space-between;
|
|
35866
|
+
}
|
|
35867
|
+
.E_t1sqg15u .uuid-row .id-text {
|
|
35868
|
+
white-space: nowrap;
|
|
35869
|
+
overflow: hidden;
|
|
35870
|
+
text-overflow: ellipsis;
|
|
35871
|
+
}
|
|
35872
|
+
|
|
35873
|
+
.E_t4zczcp {
|
|
35874
|
+
display: flex;
|
|
35875
|
+
justify-content: space-between;
|
|
35876
|
+
align-items: center;
|
|
35877
|
+
padding: 8px;
|
|
35878
|
+
min-height: 32px;
|
|
35879
|
+
}
|
|
35880
|
+
.E_t4zczcp .table-title {
|
|
35881
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35882
|
+
font-weight: 600;
|
|
35883
|
+
font-size: 12px;
|
|
35884
|
+
line-height: 8px;
|
|
35885
|
+
}
|
|
35886
|
+
.E_t4zczcp .edit-icon {
|
|
35887
|
+
font-size: 16px;
|
|
35888
|
+
color: rgba(10, 37, 85, 0.6);
|
|
35889
|
+
cursor: pointer;
|
|
35890
|
+
}
|
|
35891
|
+
|
|
35892
|
+
.E_t1s7goww {
|
|
35893
|
+
font-size: 12px;
|
|
35894
|
+
line-height: 18px;
|
|
35895
|
+
}
|
|
35896
|
+
|
|
35897
|
+
.E_t93e4cf {
|
|
35898
|
+
display: flex;
|
|
35899
|
+
padding: 8px 0;
|
|
35900
|
+
color: #2d3a56;
|
|
35901
|
+
}
|
|
35902
|
+
.E_t93e4cf .hidden {
|
|
35903
|
+
display: none;
|
|
35904
|
+
}
|
|
35905
|
+
.E_t93e4cf .ant-btn.ant-btn-link {
|
|
35906
|
+
height: auto;
|
|
35907
|
+
}
|
|
35908
|
+
.E_t93e4cf .content {
|
|
35909
|
+
overflow: hidden;
|
|
35910
|
+
overflow-x: auto;
|
|
35911
|
+
width: 100%;
|
|
35912
|
+
white-space: pre-wrap;
|
|
35913
|
+
}
|
|
35914
|
+
.E_t93e4cf .content .ant-btn {
|
|
35915
|
+
white-space: pre-wrap;
|
|
35916
|
+
text-align: left;
|
|
35917
|
+
}
|
|
35918
|
+
.E_t93e4cf .content .unit-chart {
|
|
35919
|
+
justify-content: flex-start;
|
|
35920
|
+
}
|
|
35921
|
+
|
|
35922
|
+
.E_rhz2uv5 {
|
|
35923
|
+
width: var(--rhz2uv5-0);
|
|
35924
|
+
flex-shrink: 0;
|
|
35925
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35926
|
+
padding-right: 12px;
|
|
35533
35927
|
}
|
|
35534
35928
|
|
|
35535
|
-
.
|
|
35536
|
-
|
|
35537
|
-
|
|
35929
|
+
.E_ou7iq30 {
|
|
35930
|
+
overflow: hidden;
|
|
35931
|
+
text-overflow: ellipsis;
|
|
35538
35932
|
}
|
|
35539
|
-
|
|
35540
|
-
.
|
|
35541
|
-
|
|
35542
|
-
margin: 0 9px;
|
|
35543
|
-
text-align: center;
|
|
35933
|
+
|
|
35934
|
+
.E_s1tui002 {
|
|
35935
|
+
white-space: nowrap;
|
|
35544
35936
|
}
|
|
35545
|
-
|
|
35546
|
-
|
|
35547
|
-
|
|
35548
|
-
|
|
35937
|
+
|
|
35938
|
+
.E_mxrc2zg {
|
|
35939
|
+
display: -webkit-box;
|
|
35940
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
35941
|
+
-webkit-box-orient: vertical;
|
|
35942
|
+
word-break: break-all;
|
|
35549
35943
|
}
|
|
35550
|
-
|
|
35551
|
-
.
|
|
35552
|
-
|
|
35553
|
-
box-sizing: border-box;
|
|
35554
|
-
border-radius: 16px;
|
|
35555
|
-
margin-right: 8px;
|
|
35944
|
+
|
|
35945
|
+
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
35946
|
+
display: none;
|
|
35556
35947
|
}
|
|
35557
|
-
.
|
|
35558
|
-
|
|
35559
|
-
|
|
35560
|
-
border-color: #d9d9d9;
|
|
35948
|
+
.E_t1vv6d68 .ant-tooltip-inner {
|
|
35949
|
+
background: rgba(23, 38, 64, 0.8);
|
|
35950
|
+
border-radius: 4px;
|
|
35561
35951
|
}
|
|
35562
|
-
.
|
|
35563
|
-
|
|
35564
|
-
border-color: #0096ff;
|
|
35565
|
-
color: #fff;
|
|
35952
|
+
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
35953
|
+
visibility: hidden;
|
|
35566
35954
|
}
|
|
35567
|
-
|
|
35568
|
-
|
|
35569
|
-
|
|
35955
|
+
|
|
35956
|
+
.E_u15heuvq.content {
|
|
35957
|
+
cursor: default !important;
|
|
35570
35958
|
}
|
|
35571
|
-
.
|
|
35572
|
-
|
|
35573
|
-
padding: 0;
|
|
35574
|
-
margin-bottom: 8px;
|
|
35959
|
+
.E_u15heuvq.content.link {
|
|
35960
|
+
cursor: pointer !important;
|
|
35575
35961
|
}
|
|
35576
|
-
.
|
|
35577
|
-
|
|
35578
|
-
border-color: #0096ff;
|
|
35579
|
-
color: #fff;
|
|
35962
|
+
.E_u15heuvq.content.link:hover {
|
|
35963
|
+
color: #0080ff;
|
|
35580
35964
|
}
|
|
35581
|
-
|
|
35582
|
-
|
|
35583
|
-
height: 8px;
|
|
35584
|
-
box-sizing: border-box;
|
|
35585
|
-
border-radius: 2px;
|
|
35586
|
-
background: #f5f7fa;
|
|
35587
|
-
display: flex;
|
|
35588
|
-
width: 100%;
|
|
35589
|
-
overflow: hidden;
|
|
35965
|
+
.E_u15heuvq.content.black {
|
|
35966
|
+
color: #00122e;
|
|
35590
35967
|
}
|
|
35591
|
-
.
|
|
35592
|
-
|
|
35968
|
+
.E_u15heuvq.content.gray {
|
|
35969
|
+
color: rgba(44, 56, 82, 0.75);
|
|
35593
35970
|
}
|
|
35594
35971
|
|
|
35595
35972
|
.E_s1at6qmn.ant-layout-sider {
|
|
@@ -35705,20 +36082,12 @@ span.E_tqjc4ui {
|
|
|
35705
36082
|
text-align: left;
|
|
35706
36083
|
}
|
|
35707
36084
|
|
|
35708
|
-
.
|
|
35709
|
-
|
|
35710
|
-
|
|
35711
|
-
.E_u15heuvq.content.link {
|
|
35712
|
-
cursor: pointer !important;
|
|
35713
|
-
}
|
|
35714
|
-
.E_u15heuvq.content.link:hover {
|
|
35715
|
-
color: #0080ff;
|
|
35716
|
-
}
|
|
35717
|
-
.E_u15heuvq.content.black {
|
|
35718
|
-
color: #00122e;
|
|
36085
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
36086
|
+
display: flex;
|
|
36087
|
+
align-items: center;
|
|
35719
36088
|
}
|
|
35720
|
-
.
|
|
35721
|
-
|
|
36089
|
+
.E_s1iv0tp1 .enabled-text {
|
|
36090
|
+
margin-right: 8px;
|
|
35722
36091
|
}
|
|
35723
36092
|
|
|
35724
36093
|
.E_t160l1cm {
|
|
@@ -35985,6 +36354,12 @@ span.E_tqjc4ui {
|
|
|
35985
36354
|
justify-content: center;
|
|
35986
36355
|
}
|
|
35987
36356
|
|
|
36357
|
+
.E_h1ol2wl7 {
|
|
36358
|
+
font-weight: bold;
|
|
36359
|
+
background-color: unset;
|
|
36360
|
+
padding: unset;
|
|
36361
|
+
}
|
|
36362
|
+
|
|
35988
36363
|
.E_kr6am0s .ant-modal-body {
|
|
35989
36364
|
padding: 60px 128px;
|
|
35990
36365
|
}
|
|
@@ -36089,10 +36464,28 @@ span.E_tqjc4ui {
|
|
|
36089
36464
|
color: rgba(0, 21, 64, 0.3);
|
|
36090
36465
|
}
|
|
36091
36466
|
|
|
36092
|
-
.
|
|
36093
|
-
|
|
36094
|
-
|
|
36095
|
-
|
|
36467
|
+
.E_l12xdkhl {
|
|
36468
|
+
width: 64px;
|
|
36469
|
+
height: 64px;
|
|
36470
|
+
max-width: 64px;
|
|
36471
|
+
max-height: 64px;
|
|
36472
|
+
overflow: hidden;
|
|
36473
|
+
display: flex;
|
|
36474
|
+
align-items: center;
|
|
36475
|
+
justify-content: center;
|
|
36476
|
+
position: relative;
|
|
36477
|
+
opacity: 0.6;
|
|
36478
|
+
}
|
|
36479
|
+
.E_l12xdkhl .icon-wrapper {
|
|
36480
|
+
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
36481
|
+
}
|
|
36482
|
+
@keyframes rotate {
|
|
36483
|
+
from {
|
|
36484
|
+
transform: rotate(0deg);
|
|
36485
|
+
}
|
|
36486
|
+
to {
|
|
36487
|
+
transform: rotate(360deg);
|
|
36488
|
+
}
|
|
36096
36489
|
}
|
|
36097
36490
|
|
|
36098
36491
|
.E_cevhqx7 {
|
|
@@ -36104,57 +36497,6 @@ span.E_tqjc4ui {
|
|
|
36104
36497
|
color: rgba(44, 56, 82, 0.6);
|
|
36105
36498
|
}
|
|
36106
36499
|
|
|
36107
|
-
.E_c1ss4prm {
|
|
36108
|
-
color: rgba(44, 56, 82, 0.6);
|
|
36109
|
-
}
|
|
36110
|
-
.E_c1ss4prm:is(ul, ol) {
|
|
36111
|
-
padding-inline-start: 12px;
|
|
36112
|
-
}
|
|
36113
|
-
.E_c1ss4prm li {
|
|
36114
|
-
margin-bottom: 4px;
|
|
36115
|
-
}
|
|
36116
|
-
.E_c1ss4prm li:last-child {
|
|
36117
|
-
margin-bottom: 0;
|
|
36118
|
-
}
|
|
36119
|
-
|
|
36120
|
-
.E_ms3tlei {
|
|
36121
|
-
background: rgba(225, 230, 241, 0.6);
|
|
36122
|
-
padding: 8px;
|
|
36123
|
-
border-radius: 6px;
|
|
36124
|
-
color: rgba(44, 56, 82, 0.6);
|
|
36125
|
-
}
|
|
36126
|
-
.E_ms3tlei .icon-wrapper {
|
|
36127
|
-
margin-top: 1px;
|
|
36128
|
-
margin-right: 4px;
|
|
36129
|
-
}
|
|
36130
|
-
.E_ms3tlei li {
|
|
36131
|
-
margin-bottom: 4px;
|
|
36132
|
-
display: flex;
|
|
36133
|
-
align-items: flex-start;
|
|
36134
|
-
}
|
|
36135
|
-
.E_ms3tlei li:last-child {
|
|
36136
|
-
margin-bottom: 0;
|
|
36137
|
-
}
|
|
36138
|
-
|
|
36139
|
-
.E_du44iy7 {
|
|
36140
|
-
margin-bottom: 4px;
|
|
36141
|
-
}
|
|
36142
|
-
|
|
36143
|
-
.E_p1qmhanr {
|
|
36144
|
-
margin-bottom: 8px;
|
|
36145
|
-
}
|
|
36146
|
-
|
|
36147
|
-
.E_srje1h0 {
|
|
36148
|
-
color: rgba(44, 56, 82, 0.6);
|
|
36149
|
-
margin-bottom: 8px;
|
|
36150
|
-
}
|
|
36151
|
-
|
|
36152
|
-
.E_di3zi7v {
|
|
36153
|
-
height: 1px;
|
|
36154
|
-
background: #e4e9f2;
|
|
36155
|
-
margin: 16px 0;
|
|
36156
|
-
}
|
|
36157
|
-
|
|
36158
36500
|
.E_c14ouk5o {
|
|
36159
36501
|
width: 100%;
|
|
36160
36502
|
height: 100%;
|
|
@@ -36691,26 +37033,53 @@ span.E_tqjc4ui {
|
|
|
36691
37033
|
padding: 0;
|
|
36692
37034
|
}
|
|
36693
37035
|
|
|
36694
|
-
.
|
|
36695
|
-
|
|
36696
|
-
|
|
36697
|
-
|
|
36698
|
-
|
|
36699
|
-
|
|
37036
|
+
.E_c1ss4prm {
|
|
37037
|
+
color: rgba(44, 56, 82, 0.6);
|
|
37038
|
+
}
|
|
37039
|
+
.E_c1ss4prm:is(ul, ol) {
|
|
37040
|
+
padding-inline-start: 12px;
|
|
37041
|
+
}
|
|
37042
|
+
.E_c1ss4prm li {
|
|
37043
|
+
margin-bottom: 4px;
|
|
37044
|
+
}
|
|
37045
|
+
.E_c1ss4prm li:last-child {
|
|
37046
|
+
margin-bottom: 0;
|
|
37047
|
+
}
|
|
37048
|
+
|
|
37049
|
+
.E_ms3tlei {
|
|
37050
|
+
background: rgba(225, 230, 241, 0.6);
|
|
37051
|
+
padding: 8px;
|
|
37052
|
+
border-radius: 6px;
|
|
37053
|
+
color: rgba(44, 56, 82, 0.6);
|
|
37054
|
+
}
|
|
37055
|
+
.E_ms3tlei .icon-wrapper {
|
|
37056
|
+
margin-top: 1px;
|
|
37057
|
+
margin-right: 4px;
|
|
37058
|
+
}
|
|
37059
|
+
.E_ms3tlei li {
|
|
37060
|
+
margin-bottom: 4px;
|
|
36700
37061
|
display: flex;
|
|
36701
|
-
align-items:
|
|
36702
|
-
justify-content: center;
|
|
36703
|
-
position: relative;
|
|
36704
|
-
opacity: 0.6;
|
|
37062
|
+
align-items: flex-start;
|
|
36705
37063
|
}
|
|
36706
|
-
.
|
|
36707
|
-
|
|
37064
|
+
.E_ms3tlei li:last-child {
|
|
37065
|
+
margin-bottom: 0;
|
|
36708
37066
|
}
|
|
36709
|
-
|
|
36710
|
-
|
|
36711
|
-
|
|
36712
|
-
|
|
36713
|
-
|
|
36714
|
-
|
|
36715
|
-
|
|
37067
|
+
|
|
37068
|
+
.E_du44iy7 {
|
|
37069
|
+
margin-bottom: 4px;
|
|
37070
|
+
}
|
|
37071
|
+
|
|
37072
|
+
.E_p1qmhanr {
|
|
37073
|
+
margin-bottom: 8px;
|
|
37074
|
+
}
|
|
37075
|
+
|
|
37076
|
+
.E_srje1h0 {
|
|
37077
|
+
color: rgba(44, 56, 82, 0.6);
|
|
37078
|
+
margin-bottom: 8px;
|
|
37079
|
+
}
|
|
37080
|
+
|
|
37081
|
+
.E_di3zi7v {
|
|
37082
|
+
height: 1px;
|
|
37083
|
+
background: #e4e9f2;
|
|
37084
|
+
margin: 16px 0;
|
|
36716
37085
|
}
|