@cloudtower/eagle 0.33.35 → 0.33.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/core/MediumDialog/MediumDialog.js +54 -0
- package/dist/cjs/core/SmallDialog/SmallDialog.js +144 -0
- package/dist/cjs/core/SmallDialog/SmallDialog.style.js +11 -0
- package/dist/cjs/coreX/Dialogs/DeleteDialog/DeleteDialog.js +5 -3
- package/dist/cjs/coreX/Dialogs/RejectDialog/RejectDialog.js +1 -1
- package/dist/cjs/index.js +9 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2393 -2324
- package/dist/esm/core/MediumDialog/MediumDialog.js +48 -0
- package/dist/esm/core/SmallDialog/SmallDialog.js +137 -0
- package/dist/esm/core/SmallDialog/SmallDialog.style.js +6 -0
- package/dist/esm/coreX/Dialogs/DeleteDialog/DeleteDialog.js +5 -3
- package/dist/esm/coreX/Dialogs/RejectDialog/RejectDialog.js +1 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +2875 -2807
- package/dist/src/core/MediumDialog/MediumDialog.d.ts +3 -0
- package/dist/src/core/MediumDialog/index.d.ts +1 -0
- package/dist/src/core/SmallDialog/SmallDialog.d.ts +3 -0
- package/dist/src/core/SmallDialog/SmallDialog.style.d.ts +4 -0
- package/dist/src/{coreX/Dialogs/SmallDialog.d.ts → core/SmallDialog/SmallDialog.type.d.ts} +12 -4
- package/dist/src/core/SmallDialog/index.d.ts +3 -0
- package/dist/src/core/index.d.ts +2 -0
- package/dist/src/coreX/Dialogs/DeleteDialog/DeleteDialog.type.d.ts +2 -0
- package/dist/src/coreX/Dialogs/index.d.ts +0 -1
- package/dist/stories/docs/core/MediumDialog.stories.d.ts +35 -0
- package/dist/stories/docs/core/SmallDialog.stories.d.ts +37 -0
- package/dist/stories/docs/coreX/Dialogs/DeleteDialog.stories.d.ts +5 -0
- package/dist/style.css +2193 -2124
- package/package.json +4 -4
- package/dist/cjs/coreX/Dialogs/SmallDialog.js +0 -86
- package/dist/esm/coreX/Dialogs/SmallDialog.js +0 -80
package/dist/style.css
CHANGED
|
@@ -29672,26 +29672,6 @@ html body {
|
|
|
29672
29672
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
29673
29673
|
}
|
|
29674
29674
|
}
|
|
29675
|
-
.E_c18gxmrl {
|
|
29676
|
-
border: 1px solid #d8deeb;
|
|
29677
|
-
border-radius: 4px;
|
|
29678
|
-
}
|
|
29679
|
-
.E_c18gxmrl + .E_c18gxmrl {
|
|
29680
|
-
margin-top: 8px;
|
|
29681
|
-
}
|
|
29682
|
-
.E_c18gxmrl:hover {
|
|
29683
|
-
border-color: #0080ff;
|
|
29684
|
-
}
|
|
29685
|
-
.E_c18gxmrl:hover > header {
|
|
29686
|
-
background: rgba(0, 128, 255, 0.1);
|
|
29687
|
-
}
|
|
29688
|
-
.E_c18gxmrl.active header {
|
|
29689
|
-
border-bottom: 1px solid #d8deeb;
|
|
29690
|
-
}
|
|
29691
|
-
.E_c18gxmrl > header {
|
|
29692
|
-
padding: 8px 12px;
|
|
29693
|
-
}
|
|
29694
|
-
|
|
29695
29675
|
.E_m74vjol {
|
|
29696
29676
|
display: flex;
|
|
29697
29677
|
justify-content: space-between;
|
|
@@ -29712,6 +29692,26 @@ html body {
|
|
|
29712
29692
|
flex: 1;
|
|
29713
29693
|
}
|
|
29714
29694
|
|
|
29695
|
+
.E_c18gxmrl {
|
|
29696
|
+
border: 1px solid #d8deeb;
|
|
29697
|
+
border-radius: 4px;
|
|
29698
|
+
}
|
|
29699
|
+
.E_c18gxmrl + .E_c18gxmrl {
|
|
29700
|
+
margin-top: 8px;
|
|
29701
|
+
}
|
|
29702
|
+
.E_c18gxmrl:hover {
|
|
29703
|
+
border-color: #0080ff;
|
|
29704
|
+
}
|
|
29705
|
+
.E_c18gxmrl:hover > header {
|
|
29706
|
+
background: rgba(0, 128, 255, 0.1);
|
|
29707
|
+
}
|
|
29708
|
+
.E_c18gxmrl.active header {
|
|
29709
|
+
border-bottom: 1px solid #d8deeb;
|
|
29710
|
+
}
|
|
29711
|
+
.E_c18gxmrl > header {
|
|
29712
|
+
padding: 8px 12px;
|
|
29713
|
+
}
|
|
29714
|
+
|
|
29715
29715
|
.E_berrcjl {
|
|
29716
29716
|
color: rgba(10, 37, 85, 0.6);
|
|
29717
29717
|
margin-bottom: 4px;
|
|
@@ -29728,64 +29728,6 @@ html body {
|
|
|
29728
29728
|
color: #005ed1;
|
|
29729
29729
|
}
|
|
29730
29730
|
|
|
29731
|
-
.E_b1nip9bk {
|
|
29732
|
-
padding: 4px 11px;
|
|
29733
|
-
}
|
|
29734
|
-
|
|
29735
|
-
.E_bqamoqe {
|
|
29736
|
-
white-space: nowrap;
|
|
29737
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
29738
|
-
}
|
|
29739
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
29740
|
-
--color: #0080ff;
|
|
29741
|
-
}
|
|
29742
|
-
.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] {
|
|
29743
|
-
--color: #0080ff;
|
|
29744
|
-
}
|
|
29745
|
-
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
29746
|
-
margin-left: 1px;
|
|
29747
|
-
}
|
|
29748
|
-
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
29749
|
-
border-top-right-radius: 0;
|
|
29750
|
-
border-bottom-right-radius: 0;
|
|
29751
|
-
}
|
|
29752
|
-
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
29753
|
-
border-top-left-radius: 0;
|
|
29754
|
-
border-bottom-left-radius: 0;
|
|
29755
|
-
}
|
|
29756
|
-
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
29757
|
-
border-radius: unset;
|
|
29758
|
-
}
|
|
29759
|
-
|
|
29760
|
-
.E_c1yyuluq {
|
|
29761
|
-
border-radius: 8px;
|
|
29762
|
-
}
|
|
29763
|
-
.E_c1yyuluq .ant-card-body {
|
|
29764
|
-
padding: 20px 24px 24px 24px;
|
|
29765
|
-
}
|
|
29766
|
-
|
|
29767
|
-
.E_ccrbeuz .ant-collapse-item {
|
|
29768
|
-
border: 0px;
|
|
29769
|
-
background-color: #fff;
|
|
29770
|
-
}
|
|
29771
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
29772
|
-
padding-top: 0px;
|
|
29773
|
-
padding-bottom: 0px;
|
|
29774
|
-
padding-left: 0px !important;
|
|
29775
|
-
padding-right: 24px;
|
|
29776
|
-
}
|
|
29777
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
29778
|
-
right: 0px;
|
|
29779
|
-
}
|
|
29780
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
29781
|
-
padding: 0px;
|
|
29782
|
-
}
|
|
29783
|
-
|
|
29784
|
-
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
29785
|
-
padding-right: 0px;
|
|
29786
|
-
cursor: default;
|
|
29787
|
-
}
|
|
29788
|
-
|
|
29789
29731
|
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
29790
29732
|
padding: 4px 8px 0 8px;
|
|
29791
29733
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -29799,32 +29741,6 @@ html body {
|
|
|
29799
29741
|
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
29800
29742
|
}
|
|
29801
29743
|
|
|
29802
|
-
.E_c1uzzomf {
|
|
29803
|
-
margin-bottom: 16px;
|
|
29804
|
-
}
|
|
29805
|
-
.E_c1uzzomf .card-title {
|
|
29806
|
-
font-size: 16px;
|
|
29807
|
-
color: rgba(44, 56, 82, 0.6);
|
|
29808
|
-
font-weight: 700;
|
|
29809
|
-
line-height: 32px;
|
|
29810
|
-
}
|
|
29811
|
-
.E_c1uzzomf .card-body {
|
|
29812
|
-
padding: 24px;
|
|
29813
|
-
border-radius: 8px;
|
|
29814
|
-
background: #fff;
|
|
29815
|
-
}
|
|
29816
|
-
.E_c1uzzomf .empty {
|
|
29817
|
-
font-weight: 700;
|
|
29818
|
-
font-size: 14px;
|
|
29819
|
-
line-height: 22px;
|
|
29820
|
-
color: rgba(0, 21, 64, 0.3);
|
|
29821
|
-
text-align: center;
|
|
29822
|
-
}
|
|
29823
|
-
|
|
29824
|
-
.E_sx1bpnu .ant-input-sm {
|
|
29825
|
-
line-height: 18px;
|
|
29826
|
-
}
|
|
29827
|
-
|
|
29828
29744
|
.E_d1bw7c5z {
|
|
29829
29745
|
position: relative;
|
|
29830
29746
|
max-width: 388px;
|
|
@@ -29908,6 +29824,90 @@ html body {
|
|
|
29908
29824
|
width: 102px;
|
|
29909
29825
|
}
|
|
29910
29826
|
|
|
29827
|
+
.E_c1uzzomf {
|
|
29828
|
+
margin-bottom: 16px;
|
|
29829
|
+
}
|
|
29830
|
+
.E_c1uzzomf .card-title {
|
|
29831
|
+
font-size: 16px;
|
|
29832
|
+
color: rgba(44, 56, 82, 0.6);
|
|
29833
|
+
font-weight: 700;
|
|
29834
|
+
line-height: 32px;
|
|
29835
|
+
}
|
|
29836
|
+
.E_c1uzzomf .card-body {
|
|
29837
|
+
padding: 24px;
|
|
29838
|
+
border-radius: 8px;
|
|
29839
|
+
background: #fff;
|
|
29840
|
+
}
|
|
29841
|
+
.E_c1uzzomf .empty {
|
|
29842
|
+
font-weight: 700;
|
|
29843
|
+
font-size: 14px;
|
|
29844
|
+
line-height: 22px;
|
|
29845
|
+
color: rgba(0, 21, 64, 0.3);
|
|
29846
|
+
text-align: center;
|
|
29847
|
+
}
|
|
29848
|
+
|
|
29849
|
+
.E_b1nip9bk {
|
|
29850
|
+
padding: 4px 11px;
|
|
29851
|
+
}
|
|
29852
|
+
|
|
29853
|
+
.E_bqamoqe {
|
|
29854
|
+
white-space: nowrap;
|
|
29855
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
29856
|
+
}
|
|
29857
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
29858
|
+
--color: #0080ff;
|
|
29859
|
+
}
|
|
29860
|
+
.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] {
|
|
29861
|
+
--color: #0080ff;
|
|
29862
|
+
}
|
|
29863
|
+
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
29864
|
+
margin-left: 1px;
|
|
29865
|
+
}
|
|
29866
|
+
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
29867
|
+
border-top-right-radius: 0;
|
|
29868
|
+
border-bottom-right-radius: 0;
|
|
29869
|
+
}
|
|
29870
|
+
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
29871
|
+
border-top-left-radius: 0;
|
|
29872
|
+
border-bottom-left-radius: 0;
|
|
29873
|
+
}
|
|
29874
|
+
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
29875
|
+
border-radius: unset;
|
|
29876
|
+
}
|
|
29877
|
+
|
|
29878
|
+
.E_iouxfgt {
|
|
29879
|
+
display: inline-flex;
|
|
29880
|
+
align-items: center;
|
|
29881
|
+
}
|
|
29882
|
+
.E_iouxfgt .icon-inner {
|
|
29883
|
+
display: inline-flex;
|
|
29884
|
+
align-items: center;
|
|
29885
|
+
justify-content: center;
|
|
29886
|
+
}
|
|
29887
|
+
.E_iouxfgt .icon-inner + span,
|
|
29888
|
+
.E_iouxfgt span + .icon-inner.suffix {
|
|
29889
|
+
margin-left: 4px;
|
|
29890
|
+
}
|
|
29891
|
+
.E_iouxfgt.is-rotate img,
|
|
29892
|
+
.E_iouxfgt.is-rotate svg {
|
|
29893
|
+
animation: rotate 680ms linear infinite;
|
|
29894
|
+
}
|
|
29895
|
+
|
|
29896
|
+
.E_fzh9mnb {
|
|
29897
|
+
width: 100%;
|
|
29898
|
+
height: 100%;
|
|
29899
|
+
min-height: 124px;
|
|
29900
|
+
display: flex;
|
|
29901
|
+
flex-direction: column;
|
|
29902
|
+
justify-content: center;
|
|
29903
|
+
align-items: center;
|
|
29904
|
+
}
|
|
29905
|
+
.E_fzh9mnb .error-text {
|
|
29906
|
+
color: rgba(10, 37, 85, 0.6);
|
|
29907
|
+
margin-bottom: 16px;
|
|
29908
|
+
font-size: 18px;
|
|
29909
|
+
}
|
|
29910
|
+
|
|
29911
29911
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
29912
29912
|
justify-content: center;
|
|
29913
29913
|
}
|
|
@@ -30165,6 +30165,40 @@ html body {
|
|
|
30165
30165
|
justify-content: center;
|
|
30166
30166
|
}
|
|
30167
30167
|
|
|
30168
|
+
.E_f7pxqmh {
|
|
30169
|
+
width: 100%;
|
|
30170
|
+
margin-bottom: 0 !important;
|
|
30171
|
+
flex-flow: nowrap !important;
|
|
30172
|
+
line-break: auto;
|
|
30173
|
+
}
|
|
30174
|
+
.E_f7pxqmh > .ant-form-item-label {
|
|
30175
|
+
text-align: left !important;
|
|
30176
|
+
padding-bottom: 0 !important;
|
|
30177
|
+
}
|
|
30178
|
+
.E_f7pxqmh > .ant-form-item-label > label {
|
|
30179
|
+
min-height: 32px;
|
|
30180
|
+
height: auto;
|
|
30181
|
+
font-size: 13px;
|
|
30182
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30183
|
+
white-space: normal;
|
|
30184
|
+
}
|
|
30185
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
30186
|
+
border-color: #ff4d4f !important;
|
|
30187
|
+
}
|
|
30188
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
30189
|
+
border-color: #ff4d4f !important;
|
|
30190
|
+
}
|
|
30191
|
+
.E_f7pxqmh .ant-form-item-explain {
|
|
30192
|
+
margin-top: 4px;
|
|
30193
|
+
font-size: 12px;
|
|
30194
|
+
min-height: 0px;
|
|
30195
|
+
}
|
|
30196
|
+
.E_f7pxqmh .ant-form-item-extra {
|
|
30197
|
+
font-size: 12px;
|
|
30198
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30199
|
+
min-height: 0px;
|
|
30200
|
+
}
|
|
30201
|
+
|
|
30168
30202
|
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
30169
30203
|
display: flex;
|
|
30170
30204
|
}
|
|
@@ -30177,19 +30211,143 @@ html body {
|
|
|
30177
30211
|
border-top-right-radius: 5px;
|
|
30178
30212
|
}
|
|
30179
30213
|
|
|
30180
|
-
.
|
|
30181
|
-
|
|
30182
|
-
justify-content: space-between;
|
|
30183
|
-
align-items: center;
|
|
30184
|
-
padding: 10px 0;
|
|
30185
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30186
|
-
font-size: 12px;
|
|
30187
|
-
line-height: 24px;
|
|
30188
|
-
}
|
|
30189
|
-
.E_phljevk .pagination-left {
|
|
30190
|
-
padding: 2px 8px;
|
|
30214
|
+
.E_sx1bpnu .ant-input-sm {
|
|
30215
|
+
line-height: 18px;
|
|
30191
30216
|
}
|
|
30192
|
-
|
|
30217
|
+
|
|
30218
|
+
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
30219
|
+
display: var(--ai7qkf2-0);
|
|
30220
|
+
}
|
|
30221
|
+
.E_ai7qkf2 .ant-input-number-input-wrap {
|
|
30222
|
+
display: inline-flex;
|
|
30223
|
+
line-height: 1.5715;
|
|
30224
|
+
height: 100%;
|
|
30225
|
+
width: 100%;
|
|
30226
|
+
}
|
|
30227
|
+
.E_ai7qkf2 .ant-input-number-input-wrap::after {
|
|
30228
|
+
content: var(--ai7qkf2-1);
|
|
30229
|
+
display: var(--ai7qkf2-2);
|
|
30230
|
+
flex: none;
|
|
30231
|
+
align-items: center;
|
|
30232
|
+
margin-left: 4px;
|
|
30233
|
+
padding: 5px 12px 5px 0;
|
|
30234
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30235
|
+
}
|
|
30236
|
+
.E_ai7qkf2 .ant-input-number-input-wrap::before {
|
|
30237
|
+
content: var(--ai7qkf2-3);
|
|
30238
|
+
display: var(--ai7qkf2-4);
|
|
30239
|
+
flex: none;
|
|
30240
|
+
align-items: center;
|
|
30241
|
+
margin-right: 4px;
|
|
30242
|
+
cursor: auto;
|
|
30243
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30244
|
+
}
|
|
30245
|
+
.ant-input-group.ant-input-group-compact > .E_ai7qkf2 {
|
|
30246
|
+
border-radius: 0;
|
|
30247
|
+
}
|
|
30248
|
+
.E_ai7qkf2.ant-input-number {
|
|
30249
|
+
width: 100%;
|
|
30250
|
+
border-radius: 6px;
|
|
30251
|
+
}
|
|
30252
|
+
.E_ai7qkf2.ant-input-number:not([disabled]):focus.ant-input-number, .E_ai7qkf2.ant-input-number:not([disabled]):active.ant-input-number, .E_ai7qkf2.ant-input-number:not([disabled]).ant-input-number-focused.ant-input-number {
|
|
30253
|
+
border-color: #0096ff;
|
|
30254
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
30255
|
+
z-index: 1;
|
|
30256
|
+
}
|
|
30257
|
+
.E_ai7qkf2.ant-input-number:not([disabled]).error:hover.ant-input-number, .E_ai7qkf2.ant-input-number:not([disabled]).error.ant-input-number-focused.ant-input-number {
|
|
30258
|
+
border-color: #e75a3a;
|
|
30259
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
30260
|
+
}
|
|
30261
|
+
.E_ai7qkf2 .ant-input-number-input {
|
|
30262
|
+
height: 30px;
|
|
30263
|
+
border: 1px;
|
|
30264
|
+
padding: 5px 12px;
|
|
30265
|
+
font-size: inherit;
|
|
30266
|
+
}
|
|
30267
|
+
.E_ai7qkf2.ant-input-number-lg input {
|
|
30268
|
+
height: 38px;
|
|
30269
|
+
border: 1px;
|
|
30270
|
+
padding: 8px 16px;
|
|
30271
|
+
}
|
|
30272
|
+
.E_ai7qkf2.ant-input-number-sm input {
|
|
30273
|
+
height: 22px;
|
|
30274
|
+
border: 1px;
|
|
30275
|
+
padding: 2px 8px;
|
|
30276
|
+
}
|
|
30277
|
+
|
|
30278
|
+
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
30279
|
+
display: var(--a1wfy30z-0);
|
|
30280
|
+
}
|
|
30281
|
+
.E_a1wfy30z .ant-input-number-input-wrap {
|
|
30282
|
+
padding: 4px 11px;
|
|
30283
|
+
display: inline-flex;
|
|
30284
|
+
line-height: 1.5715;
|
|
30285
|
+
height: inherit;
|
|
30286
|
+
}
|
|
30287
|
+
.E_a1wfy30z .ant-input-number-input-wrap::after {
|
|
30288
|
+
content: var(--a1wfy30z-1);
|
|
30289
|
+
display: var(--a1wfy30z-2);
|
|
30290
|
+
flex: none;
|
|
30291
|
+
align-items: center;
|
|
30292
|
+
margin-left: 4px;
|
|
30293
|
+
}
|
|
30294
|
+
.E_a1wfy30z .ant-input-number-input-wrap::before {
|
|
30295
|
+
content: var(--a1wfy30z-3);
|
|
30296
|
+
display: var(--a1wfy30z-4);
|
|
30297
|
+
flex: none;
|
|
30298
|
+
align-items: center;
|
|
30299
|
+
margin-right: 4px;
|
|
30300
|
+
cursor: auto;
|
|
30301
|
+
}
|
|
30302
|
+
.E_a1wfy30z .ant-input-number-input {
|
|
30303
|
+
padding: 0;
|
|
30304
|
+
margin: 0;
|
|
30305
|
+
height: auto;
|
|
30306
|
+
font-size: inherit;
|
|
30307
|
+
}
|
|
30308
|
+
|
|
30309
|
+
.E_atcz0kf .ant-input-suffix {
|
|
30310
|
+
margin-left: 8px;
|
|
30311
|
+
}
|
|
30312
|
+
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
30313
|
+
padding: 2px 7px 2px 12px;
|
|
30314
|
+
}
|
|
30315
|
+
|
|
30316
|
+
.E_i1inqkme {
|
|
30317
|
+
height: 18px;
|
|
30318
|
+
line-height: 18px;
|
|
30319
|
+
padding: 0 4px;
|
|
30320
|
+
border-radius: 4px;
|
|
30321
|
+
background: rgba(235, 239, 245, 0.6);
|
|
30322
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30323
|
+
display: flex;
|
|
30324
|
+
align-items: center;
|
|
30325
|
+
white-space: nowrap;
|
|
30326
|
+
margin-right: 4px;
|
|
30327
|
+
}
|
|
30328
|
+
|
|
30329
|
+
.E_owd0kml {
|
|
30330
|
+
display: inline-block;
|
|
30331
|
+
}
|
|
30332
|
+
|
|
30333
|
+
.E_h1jsgezc {
|
|
30334
|
+
visibility: hidden;
|
|
30335
|
+
position: absolute;
|
|
30336
|
+
}
|
|
30337
|
+
|
|
30338
|
+
.E_phljevk {
|
|
30339
|
+
display: flex;
|
|
30340
|
+
justify-content: space-between;
|
|
30341
|
+
align-items: center;
|
|
30342
|
+
padding: 10px 0;
|
|
30343
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30344
|
+
font-size: 12px;
|
|
30345
|
+
line-height: 24px;
|
|
30346
|
+
}
|
|
30347
|
+
.E_phljevk .pagination-left {
|
|
30348
|
+
padding: 2px 8px;
|
|
30349
|
+
}
|
|
30350
|
+
.E_phljevk .dropdown-trigger {
|
|
30193
30351
|
display: flex;
|
|
30194
30352
|
align-items: center;
|
|
30195
30353
|
border-radius: 6px;
|
|
@@ -30234,111 +30392,6 @@ html body {
|
|
|
30234
30392
|
line-height: 18px;
|
|
30235
30393
|
}
|
|
30236
30394
|
|
|
30237
|
-
.E_s1dizucg.ant-switch {
|
|
30238
|
-
min-width: 40px;
|
|
30239
|
-
height: 24px;
|
|
30240
|
-
background: rgba(172, 186, 211, 0.6);
|
|
30241
|
-
overflow: hidden;
|
|
30242
|
-
}
|
|
30243
|
-
.E_s1dizucg.ant-switch:focus {
|
|
30244
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
30245
|
-
}
|
|
30246
|
-
.E_s1dizucg.ant-switch-small {
|
|
30247
|
-
min-width: 26px;
|
|
30248
|
-
height: 16px;
|
|
30249
|
-
}
|
|
30250
|
-
.E_s1dizucg.ant-switch-large {
|
|
30251
|
-
min-width: 52px;
|
|
30252
|
-
height: 32px;
|
|
30253
|
-
}
|
|
30254
|
-
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
30255
|
-
height: 20px;
|
|
30256
|
-
width: 20px;
|
|
30257
|
-
}
|
|
30258
|
-
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
30259
|
-
border-radius: 10px;
|
|
30260
|
-
transition-delay: 120ms;
|
|
30261
|
-
}
|
|
30262
|
-
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
30263
|
-
height: 14px;
|
|
30264
|
-
width: 14px;
|
|
30265
|
-
top: 1px;
|
|
30266
|
-
left: 1px;
|
|
30267
|
-
}
|
|
30268
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
30269
|
-
height: 28px;
|
|
30270
|
-
width: 28px;
|
|
30271
|
-
}
|
|
30272
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
30273
|
-
border-radius: 14px;
|
|
30274
|
-
}
|
|
30275
|
-
.E_s1dizucg.ant-switch-checked {
|
|
30276
|
-
background-color: #00ba5d;
|
|
30277
|
-
}
|
|
30278
|
-
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
30279
|
-
left: calc(100% - 20px - 2px);
|
|
30280
|
-
}
|
|
30281
|
-
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
30282
|
-
left: calc(100% - 14px - 1px);
|
|
30283
|
-
}
|
|
30284
|
-
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
30285
|
-
left: calc(100% - 28px - 2px);
|
|
30286
|
-
}
|
|
30287
|
-
|
|
30288
|
-
.E_c1up6e3y {
|
|
30289
|
-
margin-left: 5px;
|
|
30290
|
-
}
|
|
30291
|
-
|
|
30292
|
-
.E_ivqqkzv {
|
|
30293
|
-
height: 24px;
|
|
30294
|
-
width: 56px !important;
|
|
30295
|
-
margin-right: 4px;
|
|
30296
|
-
}
|
|
30297
|
-
|
|
30298
|
-
.E_c1wk4q29 {
|
|
30299
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30300
|
-
}
|
|
30301
|
-
|
|
30302
|
-
.E_c1bus5hc {
|
|
30303
|
-
--color: white;
|
|
30304
|
-
height: 14px;
|
|
30305
|
-
width: 14px;
|
|
30306
|
-
border-radius: 50%;
|
|
30307
|
-
flex-shrink: 0;
|
|
30308
|
-
display: flex;
|
|
30309
|
-
align-items: center;
|
|
30310
|
-
justify-content: center;
|
|
30311
|
-
border: 1px solid var(--color);
|
|
30312
|
-
}
|
|
30313
|
-
.E_c1bus5hc .circle-inner {
|
|
30314
|
-
position: relative;
|
|
30315
|
-
height: 10px;
|
|
30316
|
-
width: 10px;
|
|
30317
|
-
border-radius: 50%;
|
|
30318
|
-
overflow: hidden;
|
|
30319
|
-
}
|
|
30320
|
-
.E_c1bus5hc .circle-content {
|
|
30321
|
-
position: absolute;
|
|
30322
|
-
height: 100%;
|
|
30323
|
-
width: 100%;
|
|
30324
|
-
left: 0;
|
|
30325
|
-
top: 0;
|
|
30326
|
-
border-radius: 50%;
|
|
30327
|
-
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
30328
|
-
transform: rotate(180deg);
|
|
30329
|
-
}
|
|
30330
|
-
.E_c1bus5hc .circle-child {
|
|
30331
|
-
position: absolute;
|
|
30332
|
-
height: 100%;
|
|
30333
|
-
width: 100%;
|
|
30334
|
-
left: 0;
|
|
30335
|
-
top: 0;
|
|
30336
|
-
margin-left: 50%;
|
|
30337
|
-
transform-origin: left;
|
|
30338
|
-
background: white;
|
|
30339
|
-
transform: rotate(0deg);
|
|
30340
|
-
}
|
|
30341
|
-
|
|
30342
30395
|
.E_rapgekc.ant-radio-wrapper {
|
|
30343
30396
|
display: inline-flex;
|
|
30344
30397
|
align-items: baseline;
|
|
@@ -30511,643 +30564,369 @@ html body {
|
|
|
30511
30564
|
cursor: not-allowed;
|
|
30512
30565
|
}
|
|
30513
30566
|
|
|
30514
|
-
.
|
|
30515
|
-
|
|
30516
|
-
|
|
30517
|
-
|
|
30518
|
-
|
|
30519
|
-
|
|
30520
|
-
|
|
30567
|
+
.E_c1bus5hc {
|
|
30568
|
+
--color: white;
|
|
30569
|
+
height: 14px;
|
|
30570
|
+
width: 14px;
|
|
30571
|
+
border-radius: 50%;
|
|
30572
|
+
flex-shrink: 0;
|
|
30573
|
+
display: flex;
|
|
30574
|
+
align-items: center;
|
|
30575
|
+
justify-content: center;
|
|
30576
|
+
border: 1px solid var(--color);
|
|
30521
30577
|
}
|
|
30522
|
-
|
|
30523
|
-
|
|
30524
|
-
|
|
30525
|
-
|
|
30578
|
+
.E_c1bus5hc .circle-inner {
|
|
30579
|
+
position: relative;
|
|
30580
|
+
height: 10px;
|
|
30581
|
+
width: 10px;
|
|
30582
|
+
border-radius: 50%;
|
|
30583
|
+
overflow: hidden;
|
|
30526
30584
|
}
|
|
30527
|
-
|
|
30528
|
-
|
|
30529
|
-
|
|
30530
|
-
|
|
30585
|
+
.E_c1bus5hc .circle-content {
|
|
30586
|
+
position: absolute;
|
|
30587
|
+
height: 100%;
|
|
30588
|
+
width: 100%;
|
|
30589
|
+
left: 0;
|
|
30590
|
+
top: 0;
|
|
30591
|
+
border-radius: 50%;
|
|
30592
|
+
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
30593
|
+
transform: rotate(180deg);
|
|
30594
|
+
}
|
|
30595
|
+
.E_c1bus5hc .circle-child {
|
|
30596
|
+
position: absolute;
|
|
30597
|
+
height: 100%;
|
|
30598
|
+
width: 100%;
|
|
30599
|
+
left: 0;
|
|
30600
|
+
top: 0;
|
|
30601
|
+
margin-left: 50%;
|
|
30602
|
+
transform-origin: left;
|
|
30603
|
+
background: white;
|
|
30604
|
+
transform: rotate(0deg);
|
|
30531
30605
|
}
|
|
30532
30606
|
|
|
30533
|
-
.
|
|
30534
|
-
|
|
30607
|
+
.E_s1dizucg.ant-switch {
|
|
30608
|
+
min-width: 40px;
|
|
30609
|
+
height: 24px;
|
|
30610
|
+
background: rgba(172, 186, 211, 0.6);
|
|
30611
|
+
overflow: hidden;
|
|
30535
30612
|
}
|
|
30536
|
-
.
|
|
30537
|
-
|
|
30538
|
-
margin-right: 8px;
|
|
30539
|
-
display: inline-flex;
|
|
30540
|
-
align-items: center;
|
|
30541
|
-
border: none;
|
|
30613
|
+
.E_s1dizucg.ant-switch:focus {
|
|
30614
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
30542
30615
|
}
|
|
30543
|
-
.
|
|
30544
|
-
width:
|
|
30616
|
+
.E_s1dizucg.ant-switch-small {
|
|
30617
|
+
min-width: 26px;
|
|
30545
30618
|
height: 16px;
|
|
30546
|
-
color: inherit;
|
|
30547
|
-
margin-left: 4px;
|
|
30548
|
-
opacity: 0.6;
|
|
30549
|
-
display: inline-flex;
|
|
30550
|
-
}
|
|
30551
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
30552
|
-
opacity: 1;
|
|
30553
|
-
}
|
|
30554
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
30555
|
-
color: #0080ff;
|
|
30556
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
30557
30619
|
}
|
|
30558
|
-
.
|
|
30559
|
-
|
|
30560
|
-
|
|
30561
|
-
}
|
|
30562
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
30563
|
-
color: #e07f00;
|
|
30564
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
30565
|
-
}
|
|
30566
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
30567
|
-
color: #008f4c;
|
|
30568
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
30620
|
+
.E_s1dizucg.ant-switch-large {
|
|
30621
|
+
min-width: 52px;
|
|
30622
|
+
height: 32px;
|
|
30569
30623
|
}
|
|
30570
|
-
.
|
|
30571
|
-
|
|
30572
|
-
|
|
30624
|
+
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
30625
|
+
height: 20px;
|
|
30626
|
+
width: 20px;
|
|
30573
30627
|
}
|
|
30574
|
-
.
|
|
30575
|
-
|
|
30576
|
-
|
|
30628
|
+
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
30629
|
+
border-radius: 10px;
|
|
30630
|
+
transition-delay: 120ms;
|
|
30577
30631
|
}
|
|
30578
|
-
.
|
|
30579
|
-
|
|
30632
|
+
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
30633
|
+
height: 14px;
|
|
30634
|
+
width: 14px;
|
|
30635
|
+
top: 1px;
|
|
30636
|
+
left: 1px;
|
|
30580
30637
|
}
|
|
30581
|
-
.
|
|
30582
|
-
|
|
30638
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
30639
|
+
height: 28px;
|
|
30640
|
+
width: 28px;
|
|
30583
30641
|
}
|
|
30584
|
-
.
|
|
30585
|
-
|
|
30642
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
30643
|
+
border-radius: 14px;
|
|
30586
30644
|
}
|
|
30587
|
-
.
|
|
30645
|
+
.E_s1dizucg.ant-switch-checked {
|
|
30588
30646
|
background-color: #00ba5d;
|
|
30589
30647
|
}
|
|
30590
|
-
.
|
|
30591
|
-
|
|
30648
|
+
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
30649
|
+
left: calc(100% - 20px - 2px);
|
|
30592
30650
|
}
|
|
30593
|
-
.
|
|
30594
|
-
|
|
30651
|
+
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
30652
|
+
left: calc(100% - 14px - 1px);
|
|
30595
30653
|
}
|
|
30596
|
-
.
|
|
30597
|
-
|
|
30654
|
+
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
30655
|
+
left: calc(100% - 28px - 2px);
|
|
30598
30656
|
}
|
|
30599
30657
|
|
|
30600
|
-
.
|
|
30601
|
-
|
|
30658
|
+
.E_c1up6e3y {
|
|
30659
|
+
margin-left: 5px;
|
|
30602
30660
|
}
|
|
30603
30661
|
|
|
30604
|
-
.
|
|
30605
|
-
|
|
30662
|
+
.E_cnujxq2 {
|
|
30663
|
+
display: flex;
|
|
30664
|
+
flex-direction: column;
|
|
30606
30665
|
}
|
|
30607
30666
|
|
|
30608
|
-
.
|
|
30609
|
-
|
|
30610
|
-
|
|
30611
|
-
|
|
30612
|
-
height:
|
|
30613
|
-
min-height: 34px;
|
|
30614
|
-
box-sizing: border-box;
|
|
30615
|
-
margin-top: 8px;
|
|
30667
|
+
.E_m7s48ia {
|
|
30668
|
+
max-width: 1120px;
|
|
30669
|
+
width: 100%;
|
|
30670
|
+
margin: 0 auto;
|
|
30671
|
+
height: 100%;
|
|
30616
30672
|
}
|
|
30617
30673
|
|
|
30618
|
-
.
|
|
30674
|
+
.E_wt5zbg6 {
|
|
30675
|
+
max-width: 1120px;
|
|
30676
|
+
width: 100%;
|
|
30677
|
+
margin: 0 auto;
|
|
30619
30678
|
display: flex;
|
|
30620
|
-
flex-direction: column;
|
|
30621
|
-
margin: 1px 8px;
|
|
30622
|
-
padding: 8px;
|
|
30623
|
-
border-radius: 4px;
|
|
30624
|
-
}
|
|
30625
|
-
.E_o1ugr09p .selected-icon {
|
|
30626
|
-
display: none;
|
|
30627
|
-
}
|
|
30628
|
-
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
30629
|
-
padding-left: 8px;
|
|
30630
30679
|
}
|
|
30631
|
-
.
|
|
30632
|
-
|
|
30680
|
+
.E_wt5zbg6 .left,
|
|
30681
|
+
.E_wt5zbg6 .right {
|
|
30682
|
+
flex-grow: 0;
|
|
30683
|
+
flex-shrink: 0;
|
|
30684
|
+
flex-basis: 21%;
|
|
30633
30685
|
}
|
|
30634
|
-
.
|
|
30635
|
-
|
|
30686
|
+
.E_wt5zbg6 .left {
|
|
30687
|
+
display: flex;
|
|
30688
|
+
justify-content: flex-end;
|
|
30689
|
+
padding-right: 44px;
|
|
30636
30690
|
}
|
|
30637
|
-
.
|
|
30638
|
-
|
|
30691
|
+
.E_wt5zbg6 .right {
|
|
30692
|
+
padding-left: 44px;
|
|
30639
30693
|
}
|
|
30640
|
-
.
|
|
30641
|
-
|
|
30694
|
+
.E_wt5zbg6 .middle {
|
|
30695
|
+
margin-bottom: 40px;
|
|
30696
|
+
flex-grow: 0;
|
|
30697
|
+
flex-shrink: 0;
|
|
30698
|
+
flex-basis: 58%;
|
|
30699
|
+
overflow: hidden;
|
|
30642
30700
|
}
|
|
30643
|
-
.
|
|
30644
|
-
|
|
30701
|
+
.E_wt5zbg6 .middle .form-base-field {
|
|
30702
|
+
width: 100%;
|
|
30645
30703
|
}
|
|
30646
|
-
.
|
|
30647
|
-
|
|
30648
|
-
color: #0080ff;
|
|
30704
|
+
.E_wt5zbg6 .middle .form-base-field .form-base-field {
|
|
30705
|
+
width: auto;
|
|
30649
30706
|
}
|
|
30650
30707
|
|
|
30651
|
-
.
|
|
30652
|
-
|
|
30653
|
-
|
|
30654
|
-
|
|
30655
|
-
line-height: 20px;
|
|
30708
|
+
.E_h18jprzg .ant-modal-header {
|
|
30709
|
+
margin: 0 auto;
|
|
30710
|
+
width: 100%;
|
|
30711
|
+
max-width: 648px;
|
|
30656
30712
|
}
|
|
30657
|
-
.
|
|
30658
|
-
|
|
30713
|
+
.E_h18jprzg .ant-modal-header .ant-modal-title {
|
|
30714
|
+
margin-left: 0;
|
|
30715
|
+
}
|
|
30716
|
+
.E_h18jprzg .ant-modal-body {
|
|
30717
|
+
margin: 0 auto;
|
|
30718
|
+
padding: 0;
|
|
30719
|
+
width: 100%;
|
|
30720
|
+
max-width: 648px;
|
|
30659
30721
|
overflow: hidden;
|
|
30660
|
-
text-overflow: ellipsis;
|
|
30661
30722
|
}
|
|
30662
|
-
|
|
30663
|
-
|
|
30664
|
-
display: flex;
|
|
30665
|
-
justify-content: space-between;
|
|
30666
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30667
|
-
height: 18px;
|
|
30668
|
-
line-height: 18px;
|
|
30669
|
-
margin-top: 2px;
|
|
30723
|
+
.E_h18jprzg .ant-modal-body .horizontal-steps-wrapper {
|
|
30724
|
+
margin-bottom: 40px;
|
|
30670
30725
|
}
|
|
30671
|
-
|
|
30672
|
-
|
|
30673
|
-
|
|
30674
|
-
margin-right: 0;
|
|
30675
|
-
background: rgba(225, 230, 241, 0.6);
|
|
30726
|
+
.E_h18jprzg .ant-modal-body .horizontal-content-wrapper {
|
|
30727
|
+
height: calc(100vh - 225px);
|
|
30728
|
+
overflow-y: auto;
|
|
30676
30729
|
}
|
|
30677
|
-
|
|
30678
|
-
|
|
30679
|
-
|
|
30680
|
-
height: 32px;
|
|
30681
|
-
width: 100%;
|
|
30682
|
-
opacity: 0;
|
|
30730
|
+
.E_h18jprzg .ant-modal-footer .footer-content {
|
|
30731
|
+
margin: 0 auto;
|
|
30732
|
+
max-width: 648px;
|
|
30683
30733
|
}
|
|
30684
30734
|
|
|
30685
|
-
.
|
|
30735
|
+
.E_h16z9xgz .ant-modal-header {
|
|
30736
|
+
margin: 0 auto;
|
|
30686
30737
|
width: 100%;
|
|
30687
|
-
|
|
30688
|
-
flex-flow: nowrap !important;
|
|
30689
|
-
line-break: auto;
|
|
30738
|
+
max-width: 1024px;
|
|
30690
30739
|
}
|
|
30691
|
-
.
|
|
30692
|
-
|
|
30693
|
-
padding-bottom: 0 !important;
|
|
30740
|
+
.E_h16z9xgz .ant-modal-header .ant-modal-title {
|
|
30741
|
+
margin-left: 0;
|
|
30694
30742
|
}
|
|
30695
|
-
.
|
|
30696
|
-
|
|
30697
|
-
|
|
30698
|
-
|
|
30699
|
-
|
|
30700
|
-
|
|
30743
|
+
.E_h16z9xgz .ant-modal-body {
|
|
30744
|
+
margin: 0 auto;
|
|
30745
|
+
padding: 0;
|
|
30746
|
+
width: 100%;
|
|
30747
|
+
max-width: 1024px;
|
|
30748
|
+
overflow: hidden;
|
|
30701
30749
|
}
|
|
30702
|
-
.
|
|
30703
|
-
|
|
30750
|
+
.E_h16z9xgz .ant-modal-body .horizontal-steps-wrapper {
|
|
30751
|
+
margin-bottom: 40px;
|
|
30704
30752
|
}
|
|
30705
|
-
.
|
|
30706
|
-
|
|
30753
|
+
.E_h16z9xgz .ant-modal-body .horizontal-content-wrapper {
|
|
30754
|
+
height: calc(100vh - 225px);
|
|
30755
|
+
overflow-y: auto;
|
|
30707
30756
|
}
|
|
30708
|
-
.
|
|
30709
|
-
margin
|
|
30710
|
-
|
|
30711
|
-
min-height: 0px;
|
|
30757
|
+
.E_h16z9xgz .ant-modal-footer .footer-content {
|
|
30758
|
+
margin: 0 auto;
|
|
30759
|
+
max-width: 1024px;
|
|
30712
30760
|
}
|
|
30713
|
-
|
|
30714
|
-
|
|
30761
|
+
|
|
30762
|
+
.E_f1lrhghm {
|
|
30763
|
+
flex: 1;
|
|
30764
|
+
}
|
|
30765
|
+
.E_f1lrhghm label {
|
|
30766
|
+
font-size: 13px;
|
|
30767
|
+
line-height: 20px;
|
|
30715
30768
|
color: rgba(44, 56, 82, 0.6);
|
|
30716
|
-
|
|
30769
|
+
}
|
|
30770
|
+
.E_f1lrhghm .title {
|
|
30771
|
+
font-size: 14px;
|
|
30772
|
+
line-height: 20px;
|
|
30773
|
+
color: #2d3a56;
|
|
30774
|
+
margin-bottom: 12px;
|
|
30775
|
+
}
|
|
30776
|
+
.E_f1lrhghm.connect-cluster .title {
|
|
30777
|
+
padding-bottom: 26px;
|
|
30717
30778
|
}
|
|
30718
30779
|
|
|
30719
|
-
.
|
|
30720
|
-
|
|
30721
|
-
|
|
30780
|
+
.E_f18ot8em {
|
|
30781
|
+
padding: 25px 0 15px 0;
|
|
30782
|
+
border-bottom: 1px solid #e1e5eb;
|
|
30783
|
+
margin-bottom: 16px;
|
|
30722
30784
|
}
|
|
30723
|
-
|
|
30724
|
-
|
|
30785
|
+
|
|
30786
|
+
.E_f1l1g2k0 {
|
|
30787
|
+
display: flex;
|
|
30725
30788
|
align-items: center;
|
|
30726
|
-
|
|
30789
|
+
margin-bottom: 8px;
|
|
30727
30790
|
}
|
|
30728
|
-
.
|
|
30729
|
-
|
|
30730
|
-
margin-left: 4px;
|
|
30791
|
+
.E_f1l1g2k0 > label {
|
|
30792
|
+
width: 216px;
|
|
30731
30793
|
}
|
|
30732
|
-
.
|
|
30733
|
-
|
|
30734
|
-
|
|
30794
|
+
.E_f1l1g2k0 > label + * {
|
|
30795
|
+
width: 100%;
|
|
30796
|
+
}
|
|
30797
|
+
.E_f1l1g2k0 .ant-select {
|
|
30798
|
+
width: 100%;
|
|
30735
30799
|
}
|
|
30736
30800
|
|
|
30737
|
-
.
|
|
30738
|
-
|
|
30739
|
-
|
|
30740
|
-
padding: 0 4px;
|
|
30741
|
-
border-radius: 4px;
|
|
30742
|
-
background: rgba(235, 239, 245, 0.6);
|
|
30743
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30744
|
-
display: flex;
|
|
30745
|
-
align-items: center;
|
|
30746
|
-
white-space: nowrap;
|
|
30747
|
-
margin-right: 4px;
|
|
30801
|
+
.E_e1k89cwg {
|
|
30802
|
+
color: #e75a3a;
|
|
30803
|
+
margin-right: 10px;
|
|
30748
30804
|
}
|
|
30749
30805
|
|
|
30750
|
-
.
|
|
30751
|
-
|
|
30806
|
+
.E_d1oui1gf {
|
|
30807
|
+
width: 100%;
|
|
30808
|
+
height: 1px;
|
|
30809
|
+
background: rgba(213, 219, 227, 0.6);
|
|
30810
|
+
margin: 24px 0;
|
|
30752
30811
|
}
|
|
30753
|
-
|
|
30754
|
-
|
|
30812
|
+
|
|
30813
|
+
.E_l15itdbb {
|
|
30814
|
+
display: flex;
|
|
30815
|
+
justify-content: center;
|
|
30816
|
+
align-items: center;
|
|
30817
|
+
height: 100%;
|
|
30755
30818
|
}
|
|
30756
30819
|
|
|
30757
|
-
.
|
|
30820
|
+
.E_d1y3z4w {
|
|
30758
30821
|
display: inline-block;
|
|
30822
|
+
width: 4px;
|
|
30823
|
+
height: 4px;
|
|
30824
|
+
background: #8e9aa9;
|
|
30825
|
+
opacity: 0.4;
|
|
30826
|
+
border-radius: 50%;
|
|
30827
|
+
margin: 0 4px;
|
|
30759
30828
|
}
|
|
30760
30829
|
|
|
30761
|
-
.
|
|
30762
|
-
|
|
30763
|
-
|
|
30830
|
+
.E_m177r7a3 .ant-modal-header,
|
|
30831
|
+
.E_m177r7a3 .ant-modal-footer .footer-content {
|
|
30832
|
+
width: 648px;
|
|
30833
|
+
margin: 0 auto;
|
|
30764
30834
|
}
|
|
30765
|
-
|
|
30766
|
-
|
|
30767
|
-
|
|
30835
|
+
.E_m177r7a3 .ant-modal-header {
|
|
30836
|
+
padding: 35px 0 24px;
|
|
30837
|
+
border: none;
|
|
30768
30838
|
}
|
|
30769
|
-
.
|
|
30770
|
-
|
|
30839
|
+
.E_m177r7a3 .ant-modal-header .ant-modal-title {
|
|
30840
|
+
font-size: 30px;
|
|
30841
|
+
}
|
|
30842
|
+
.E_m177r7a3 .ant-modal-body {
|
|
30843
|
+
padding: 4px 0 2px;
|
|
30844
|
+
}
|
|
30845
|
+
.E_m177r7a3 .ant-modal-footer {
|
|
30846
|
+
border: none;
|
|
30847
|
+
}
|
|
30848
|
+
|
|
30849
|
+
.E_t1wwio3v {
|
|
30850
|
+
font-size: 12px;
|
|
30851
|
+
line-height: 18px;
|
|
30852
|
+
font-weight: bold;
|
|
30853
|
+
color: #fff;
|
|
30854
|
+
padding: 0 4px;
|
|
30771
30855
|
border-radius: 4px;
|
|
30856
|
+
display: inline-block;
|
|
30857
|
+
background: var(--t1wwio3v-0);
|
|
30772
30858
|
}
|
|
30773
|
-
.
|
|
30774
|
-
|
|
30859
|
+
.E_t1wwio3v:not(:first-child) {
|
|
30860
|
+
margin-left: 4px;
|
|
30775
30861
|
}
|
|
30776
30862
|
|
|
30777
|
-
.
|
|
30863
|
+
.E_f17jvtfk {
|
|
30778
30864
|
width: 100%;
|
|
30779
30865
|
height: 100%;
|
|
30780
|
-
min-height: 124px;
|
|
30781
30866
|
display: flex;
|
|
30782
|
-
flex-direction: column;
|
|
30783
|
-
justify-content: center;
|
|
30784
30867
|
align-items: center;
|
|
30868
|
+
justify-content: center;
|
|
30785
30869
|
}
|
|
30786
|
-
|
|
30787
|
-
|
|
30788
|
-
|
|
30789
|
-
font-
|
|
30870
|
+
|
|
30871
|
+
.E_nzppkea {
|
|
30872
|
+
font-size: 90%;
|
|
30873
|
+
font-weight: bold;
|
|
30874
|
+
background-color: rgba(240, 243, 247, 0.6);
|
|
30875
|
+
padding: 1px 4px 1px;
|
|
30876
|
+
margin-left: 2px;
|
|
30877
|
+
margin-right: 2px;
|
|
30878
|
+
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
30879
|
+
border-radius: 4px;
|
|
30790
30880
|
}
|
|
30791
30881
|
|
|
30792
|
-
.
|
|
30793
|
-
|
|
30882
|
+
.E_f4mi9eq.form-item-general {
|
|
30883
|
+
width: 640px;
|
|
30794
30884
|
}
|
|
30795
|
-
.
|
|
30796
|
-
|
|
30797
|
-
display: inline-flex;
|
|
30798
|
-
line-height: 1.5715;
|
|
30799
|
-
height: inherit;
|
|
30885
|
+
.E_f4mi9eq.form-item-general.form-item + .E_f4mi9eq.form-item-general.form-item {
|
|
30886
|
+
margin-top: 16px;
|
|
30800
30887
|
}
|
|
30801
|
-
.
|
|
30802
|
-
|
|
30803
|
-
display: var(--a1wfy30z-2);
|
|
30804
|
-
flex: none;
|
|
30805
|
-
align-items: center;
|
|
30806
|
-
margin-left: 4px;
|
|
30888
|
+
.E_f4mi9eq.form-item-compact {
|
|
30889
|
+
width: 412px;
|
|
30807
30890
|
}
|
|
30808
|
-
.
|
|
30809
|
-
|
|
30810
|
-
display: var(--a1wfy30z-4);
|
|
30811
|
-
flex: none;
|
|
30812
|
-
align-items: center;
|
|
30813
|
-
margin-right: 4px;
|
|
30814
|
-
cursor: auto;
|
|
30891
|
+
.E_f4mi9eq.form-item-compact.form-item + .E_f4mi9eq.form-item-compact.form-item {
|
|
30892
|
+
margin-top: 8px;
|
|
30815
30893
|
}
|
|
30816
|
-
.
|
|
30817
|
-
|
|
30818
|
-
margin: 0;
|
|
30819
|
-
height: auto;
|
|
30820
|
-
font-size: inherit;
|
|
30894
|
+
.E_f4mi9eq .form-item {
|
|
30895
|
+
width: auto;
|
|
30821
30896
|
}
|
|
30822
|
-
|
|
30823
|
-
|
|
30824
|
-
display:
|
|
30897
|
+
.E_f4mi9eq .form-item-main {
|
|
30898
|
+
position: relative;
|
|
30899
|
+
display: flex;
|
|
30825
30900
|
}
|
|
30826
|
-
.
|
|
30827
|
-
|
|
30828
|
-
line-height: 1.5715;
|
|
30829
|
-
height: 100%;
|
|
30901
|
+
.E_f4mi9eq .form-item-extra {
|
|
30902
|
+
margin-top: 4px;
|
|
30830
30903
|
width: 100%;
|
|
30904
|
+
padding: 14px;
|
|
30905
|
+
background: #f2f4f6;
|
|
30906
|
+
font-size: 13px;
|
|
30907
|
+
line-height: 1.8;
|
|
30908
|
+
color: #8e9aa9;
|
|
30831
30909
|
}
|
|
30832
|
-
.
|
|
30833
|
-
|
|
30834
|
-
|
|
30835
|
-
flex: none;
|
|
30836
|
-
align-items: center;
|
|
30837
|
-
margin-left: 4px;
|
|
30838
|
-
padding: 5px 12px 5px 0;
|
|
30910
|
+
.E_f4mi9eq .form-item-label {
|
|
30911
|
+
padding-right: 12px;
|
|
30912
|
+
font-size: 13px;
|
|
30839
30913
|
color: rgba(44, 56, 82, 0.6);
|
|
30840
30914
|
}
|
|
30841
|
-
.
|
|
30842
|
-
|
|
30843
|
-
display: var(--ai7qkf2-4);
|
|
30844
|
-
flex: none;
|
|
30845
|
-
align-items: center;
|
|
30846
|
-
margin-right: 4px;
|
|
30847
|
-
cursor: auto;
|
|
30848
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30915
|
+
.E_f4mi9eq .form-item-label.label-right {
|
|
30916
|
+
text-align: right;
|
|
30849
30917
|
}
|
|
30850
|
-
.
|
|
30851
|
-
|
|
30918
|
+
.E_f4mi9eq .form-item-label,
|
|
30919
|
+
.E_f4mi9eq .form-item-control {
|
|
30920
|
+
line-height: 32px;
|
|
30852
30921
|
}
|
|
30853
|
-
.
|
|
30854
|
-
|
|
30855
|
-
border-radius: 6px;
|
|
30922
|
+
.E_f4mi9eq .form-item-control .form-item-error {
|
|
30923
|
+
line-height: 18px;
|
|
30856
30924
|
}
|
|
30857
|
-
.
|
|
30858
|
-
|
|
30859
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
30860
|
-
z-index: 1;
|
|
30925
|
+
.E_f4mi9eq .form-item-children {
|
|
30926
|
+
width: 100%;
|
|
30861
30927
|
}
|
|
30862
|
-
.
|
|
30863
|
-
|
|
30864
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
30865
|
-
}
|
|
30866
|
-
.E_ai7qkf2 .ant-input-number-input {
|
|
30867
|
-
height: 30px;
|
|
30868
|
-
border: 1px;
|
|
30869
|
-
padding: 5px 12px;
|
|
30870
|
-
font-size: inherit;
|
|
30871
|
-
}
|
|
30872
|
-
.E_ai7qkf2.ant-input-number-lg input {
|
|
30873
|
-
height: 38px;
|
|
30874
|
-
border: 1px;
|
|
30875
|
-
padding: 8px 16px;
|
|
30876
|
-
}
|
|
30877
|
-
.E_ai7qkf2.ant-input-number-sm input {
|
|
30878
|
-
height: 22px;
|
|
30879
|
-
border: 1px;
|
|
30880
|
-
padding: 2px 8px;
|
|
30881
|
-
}
|
|
30882
|
-
|
|
30883
|
-
.E_cnujxq2 {
|
|
30884
|
-
display: flex;
|
|
30885
|
-
flex-direction: column;
|
|
30886
|
-
}
|
|
30887
|
-
|
|
30888
|
-
.E_m7s48ia {
|
|
30889
|
-
max-width: 1120px;
|
|
30890
|
-
width: 100%;
|
|
30891
|
-
margin: 0 auto;
|
|
30892
|
-
height: 100%;
|
|
30893
|
-
}
|
|
30894
|
-
|
|
30895
|
-
.E_wt5zbg6 {
|
|
30896
|
-
max-width: 1120px;
|
|
30897
|
-
width: 100%;
|
|
30898
|
-
margin: 0 auto;
|
|
30899
|
-
display: flex;
|
|
30900
|
-
}
|
|
30901
|
-
.E_wt5zbg6 .left,
|
|
30902
|
-
.E_wt5zbg6 .right {
|
|
30903
|
-
flex-grow: 0;
|
|
30904
|
-
flex-shrink: 0;
|
|
30905
|
-
flex-basis: 21%;
|
|
30906
|
-
}
|
|
30907
|
-
.E_wt5zbg6 .left {
|
|
30908
|
-
display: flex;
|
|
30909
|
-
justify-content: flex-end;
|
|
30910
|
-
padding-right: 44px;
|
|
30911
|
-
}
|
|
30912
|
-
.E_wt5zbg6 .right {
|
|
30913
|
-
padding-left: 44px;
|
|
30914
|
-
}
|
|
30915
|
-
.E_wt5zbg6 .middle {
|
|
30916
|
-
margin-bottom: 40px;
|
|
30917
|
-
flex-grow: 0;
|
|
30918
|
-
flex-shrink: 0;
|
|
30919
|
-
flex-basis: 58%;
|
|
30920
|
-
overflow: hidden;
|
|
30921
|
-
}
|
|
30922
|
-
.E_wt5zbg6 .middle .form-base-field {
|
|
30923
|
-
width: 100%;
|
|
30924
|
-
}
|
|
30925
|
-
.E_wt5zbg6 .middle .form-base-field .form-base-field {
|
|
30926
|
-
width: auto;
|
|
30927
|
-
}
|
|
30928
|
-
|
|
30929
|
-
.E_h18jprzg .ant-modal-header {
|
|
30930
|
-
margin: 0 auto;
|
|
30931
|
-
width: 100%;
|
|
30932
|
-
max-width: 648px;
|
|
30933
|
-
}
|
|
30934
|
-
.E_h18jprzg .ant-modal-header .ant-modal-title {
|
|
30935
|
-
margin-left: 0;
|
|
30936
|
-
}
|
|
30937
|
-
.E_h18jprzg .ant-modal-body {
|
|
30938
|
-
margin: 0 auto;
|
|
30939
|
-
padding: 0;
|
|
30940
|
-
width: 100%;
|
|
30941
|
-
max-width: 648px;
|
|
30942
|
-
overflow: hidden;
|
|
30943
|
-
}
|
|
30944
|
-
.E_h18jprzg .ant-modal-body .horizontal-steps-wrapper {
|
|
30945
|
-
margin-bottom: 40px;
|
|
30946
|
-
}
|
|
30947
|
-
.E_h18jprzg .ant-modal-body .horizontal-content-wrapper {
|
|
30948
|
-
height: calc(100vh - 225px);
|
|
30949
|
-
overflow-y: auto;
|
|
30950
|
-
}
|
|
30951
|
-
.E_h18jprzg .ant-modal-footer .footer-content {
|
|
30952
|
-
margin: 0 auto;
|
|
30953
|
-
max-width: 648px;
|
|
30954
|
-
}
|
|
30955
|
-
|
|
30956
|
-
.E_h16z9xgz .ant-modal-header {
|
|
30957
|
-
margin: 0 auto;
|
|
30958
|
-
width: 100%;
|
|
30959
|
-
max-width: 1024px;
|
|
30960
|
-
}
|
|
30961
|
-
.E_h16z9xgz .ant-modal-header .ant-modal-title {
|
|
30962
|
-
margin-left: 0;
|
|
30963
|
-
}
|
|
30964
|
-
.E_h16z9xgz .ant-modal-body {
|
|
30965
|
-
margin: 0 auto;
|
|
30966
|
-
padding: 0;
|
|
30967
|
-
width: 100%;
|
|
30968
|
-
max-width: 1024px;
|
|
30969
|
-
overflow: hidden;
|
|
30970
|
-
}
|
|
30971
|
-
.E_h16z9xgz .ant-modal-body .horizontal-steps-wrapper {
|
|
30972
|
-
margin-bottom: 40px;
|
|
30973
|
-
}
|
|
30974
|
-
.E_h16z9xgz .ant-modal-body .horizontal-content-wrapper {
|
|
30975
|
-
height: calc(100vh - 225px);
|
|
30976
|
-
overflow-y: auto;
|
|
30977
|
-
}
|
|
30978
|
-
.E_h16z9xgz .ant-modal-footer .footer-content {
|
|
30979
|
-
margin: 0 auto;
|
|
30980
|
-
max-width: 1024px;
|
|
30981
|
-
}
|
|
30982
|
-
|
|
30983
|
-
.E_f1lrhghm {
|
|
30984
|
-
flex: 1;
|
|
30985
|
-
}
|
|
30986
|
-
.E_f1lrhghm label {
|
|
30987
|
-
font-size: 13px;
|
|
30988
|
-
line-height: 20px;
|
|
30989
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30990
|
-
}
|
|
30991
|
-
.E_f1lrhghm .title {
|
|
30992
|
-
font-size: 14px;
|
|
30993
|
-
line-height: 20px;
|
|
30994
|
-
color: #2d3a56;
|
|
30995
|
-
margin-bottom: 12px;
|
|
30996
|
-
}
|
|
30997
|
-
.E_f1lrhghm.connect-cluster .title {
|
|
30998
|
-
padding-bottom: 26px;
|
|
30999
|
-
}
|
|
31000
|
-
|
|
31001
|
-
.E_f18ot8em {
|
|
31002
|
-
padding: 25px 0 15px 0;
|
|
31003
|
-
border-bottom: 1px solid #e1e5eb;
|
|
31004
|
-
margin-bottom: 16px;
|
|
31005
|
-
}
|
|
31006
|
-
|
|
31007
|
-
.E_f1l1g2k0 {
|
|
31008
|
-
display: flex;
|
|
31009
|
-
align-items: center;
|
|
31010
|
-
margin-bottom: 8px;
|
|
31011
|
-
}
|
|
31012
|
-
.E_f1l1g2k0 > label {
|
|
31013
|
-
width: 216px;
|
|
31014
|
-
}
|
|
31015
|
-
.E_f1l1g2k0 > label + * {
|
|
31016
|
-
width: 100%;
|
|
31017
|
-
}
|
|
31018
|
-
.E_f1l1g2k0 .ant-select {
|
|
31019
|
-
width: 100%;
|
|
31020
|
-
}
|
|
31021
|
-
|
|
31022
|
-
.E_e1k89cwg {
|
|
31023
|
-
color: #e75a3a;
|
|
31024
|
-
margin-right: 10px;
|
|
31025
|
-
}
|
|
31026
|
-
|
|
31027
|
-
.E_d1oui1gf {
|
|
31028
|
-
width: 100%;
|
|
31029
|
-
height: 1px;
|
|
31030
|
-
background: rgba(213, 219, 227, 0.6);
|
|
31031
|
-
margin: 24px 0;
|
|
31032
|
-
}
|
|
31033
|
-
|
|
31034
|
-
.E_l15itdbb {
|
|
31035
|
-
display: flex;
|
|
31036
|
-
justify-content: center;
|
|
31037
|
-
align-items: center;
|
|
31038
|
-
height: 100%;
|
|
31039
|
-
}
|
|
31040
|
-
|
|
31041
|
-
.E_d1y3z4w {
|
|
31042
|
-
display: inline-block;
|
|
31043
|
-
width: 4px;
|
|
31044
|
-
height: 4px;
|
|
31045
|
-
background: #8e9aa9;
|
|
31046
|
-
opacity: 0.4;
|
|
31047
|
-
border-radius: 50%;
|
|
31048
|
-
margin: 0 4px;
|
|
31049
|
-
}
|
|
31050
|
-
|
|
31051
|
-
.E_m177r7a3 .ant-modal-header,
|
|
31052
|
-
.E_m177r7a3 .ant-modal-footer .footer-content {
|
|
31053
|
-
width: 648px;
|
|
31054
|
-
margin: 0 auto;
|
|
31055
|
-
}
|
|
31056
|
-
.E_m177r7a3 .ant-modal-header {
|
|
31057
|
-
padding: 35px 0 24px;
|
|
31058
|
-
border: none;
|
|
31059
|
-
}
|
|
31060
|
-
.E_m177r7a3 .ant-modal-header .ant-modal-title {
|
|
31061
|
-
font-size: 30px;
|
|
31062
|
-
}
|
|
31063
|
-
.E_m177r7a3 .ant-modal-body {
|
|
31064
|
-
padding: 4px 0 2px;
|
|
31065
|
-
}
|
|
31066
|
-
.E_m177r7a3 .ant-modal-footer {
|
|
31067
|
-
border: none;
|
|
31068
|
-
}
|
|
31069
|
-
|
|
31070
|
-
.E_t1wwio3v {
|
|
31071
|
-
font-size: 12px;
|
|
31072
|
-
line-height: 18px;
|
|
31073
|
-
font-weight: bold;
|
|
31074
|
-
color: #fff;
|
|
31075
|
-
padding: 0 4px;
|
|
31076
|
-
border-radius: 4px;
|
|
31077
|
-
display: inline-block;
|
|
31078
|
-
background: var(--t1wwio3v-0);
|
|
31079
|
-
}
|
|
31080
|
-
.E_t1wwio3v:not(:first-child) {
|
|
31081
|
-
margin-left: 4px;
|
|
31082
|
-
}
|
|
31083
|
-
|
|
31084
|
-
.E_f17jvtfk {
|
|
31085
|
-
width: 100%;
|
|
31086
|
-
height: 100%;
|
|
31087
|
-
display: flex;
|
|
31088
|
-
align-items: center;
|
|
31089
|
-
justify-content: center;
|
|
31090
|
-
}
|
|
31091
|
-
|
|
31092
|
-
.E_nzppkea {
|
|
31093
|
-
font-size: 90%;
|
|
31094
|
-
font-weight: bold;
|
|
31095
|
-
background-color: rgba(240, 243, 247, 0.6);
|
|
31096
|
-
padding: 1px 4px 1px;
|
|
31097
|
-
margin-left: 2px;
|
|
31098
|
-
margin-right: 2px;
|
|
31099
|
-
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
31100
|
-
border-radius: 4px;
|
|
31101
|
-
}
|
|
31102
|
-
|
|
31103
|
-
.E_f4mi9eq.form-item-general {
|
|
31104
|
-
width: 640px;
|
|
31105
|
-
}
|
|
31106
|
-
.E_f4mi9eq.form-item-general.form-item + .E_f4mi9eq.form-item-general.form-item {
|
|
31107
|
-
margin-top: 16px;
|
|
31108
|
-
}
|
|
31109
|
-
.E_f4mi9eq.form-item-compact {
|
|
31110
|
-
width: 412px;
|
|
31111
|
-
}
|
|
31112
|
-
.E_f4mi9eq.form-item-compact.form-item + .E_f4mi9eq.form-item-compact.form-item {
|
|
31113
|
-
margin-top: 8px;
|
|
31114
|
-
}
|
|
31115
|
-
.E_f4mi9eq .form-item {
|
|
31116
|
-
width: auto;
|
|
31117
|
-
}
|
|
31118
|
-
.E_f4mi9eq .form-item-main {
|
|
31119
|
-
position: relative;
|
|
31120
|
-
display: flex;
|
|
31121
|
-
}
|
|
31122
|
-
.E_f4mi9eq .form-item-extra {
|
|
31123
|
-
margin-top: 4px;
|
|
31124
|
-
width: 100%;
|
|
31125
|
-
padding: 14px;
|
|
31126
|
-
background: #f2f4f6;
|
|
31127
|
-
font-size: 13px;
|
|
31128
|
-
line-height: 1.8;
|
|
31129
|
-
color: #8e9aa9;
|
|
31130
|
-
}
|
|
31131
|
-
.E_f4mi9eq .form-item-label {
|
|
31132
|
-
padding-right: 12px;
|
|
31133
|
-
font-size: 13px;
|
|
31134
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31135
|
-
}
|
|
31136
|
-
.E_f4mi9eq .form-item-label.label-right {
|
|
31137
|
-
text-align: right;
|
|
31138
|
-
}
|
|
31139
|
-
.E_f4mi9eq .form-item-label,
|
|
31140
|
-
.E_f4mi9eq .form-item-control {
|
|
31141
|
-
line-height: 32px;
|
|
31142
|
-
}
|
|
31143
|
-
.E_f4mi9eq .form-item-control .form-item-error {
|
|
31144
|
-
line-height: 18px;
|
|
31145
|
-
}
|
|
31146
|
-
.E_f4mi9eq .form-item-children {
|
|
31147
|
-
width: 100%;
|
|
31148
|
-
}
|
|
31149
|
-
.E_f4mi9eq .form-item-children > *:only-child.ant-select, .E_f4mi9eq .form-item-children > *:only-child.ant-radio-group, .E_f4mi9eq .form-item-children > *:only-child.ant-checkbox-group {
|
|
31150
|
-
width: 100%;
|
|
30928
|
+
.E_f4mi9eq .form-item-children > *:only-child.ant-select, .E_f4mi9eq .form-item-children > *:only-child.ant-radio-group, .E_f4mi9eq .form-item-children > *:only-child.ant-checkbox-group {
|
|
30929
|
+
width: 100%;
|
|
31151
30930
|
}
|
|
31152
30931
|
.E_f4mi9eq .form-item-error {
|
|
31153
30932
|
color: #e75a3a;
|
|
@@ -31570,34 +31349,25 @@ input.E_rf8rlle.ant-input {
|
|
|
31570
31349
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
31571
31350
|
}
|
|
31572
31351
|
|
|
31573
|
-
.
|
|
31574
|
-
display: inline-flex;
|
|
31575
|
-
align-items: center;
|
|
31576
|
-
justify-content: center;
|
|
31577
|
-
color: #fff;
|
|
31578
|
-
font-weight: bold;
|
|
31579
|
-
font-size: 12px;
|
|
31580
|
-
width: 24px;
|
|
31352
|
+
.E_ivqqkzv {
|
|
31581
31353
|
height: 24px;
|
|
31582
|
-
|
|
31583
|
-
|
|
31354
|
+
width: 56px !important;
|
|
31355
|
+
margin-right: 4px;
|
|
31584
31356
|
}
|
|
31585
|
-
|
|
31586
|
-
|
|
31587
|
-
|
|
31588
|
-
width: 56px;
|
|
31589
|
-
height: 40px;
|
|
31590
|
-
display: inline-flex;
|
|
31591
|
-
align-items: center;
|
|
31592
|
-
justify-content: center;
|
|
31593
|
-
border-radius: 6px;
|
|
31357
|
+
|
|
31358
|
+
.E_c1wk4q29 {
|
|
31359
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31594
31360
|
}
|
|
31595
|
-
|
|
31596
|
-
|
|
31361
|
+
|
|
31362
|
+
.E_tju3gfj .date {
|
|
31363
|
+
margin-right: 4px;
|
|
31597
31364
|
}
|
|
31598
|
-
|
|
31599
|
-
|
|
31600
|
-
|
|
31365
|
+
|
|
31366
|
+
.E_c1yyuluq {
|
|
31367
|
+
border-radius: 8px;
|
|
31368
|
+
}
|
|
31369
|
+
.E_c1yyuluq .ant-card-body {
|
|
31370
|
+
padding: 20px 24px 24px 24px;
|
|
31601
31371
|
}
|
|
31602
31372
|
|
|
31603
31373
|
.E_dsnbhzf {
|
|
@@ -32075,217 +31845,267 @@ input.E_rf8rlle.ant-input {
|
|
|
32075
31845
|
line-height: 12px;
|
|
32076
31846
|
}
|
|
32077
31847
|
|
|
32078
|
-
.
|
|
32079
|
-
|
|
31848
|
+
.E_s1dni7lo {
|
|
31849
|
+
width: 430px !important;
|
|
32080
31850
|
}
|
|
32081
31851
|
|
|
32082
|
-
.
|
|
32083
|
-
|
|
31852
|
+
.E_d1wwmmm5 .ant-select-item-group {
|
|
31853
|
+
padding: 8px 16px;
|
|
31854
|
+
line-height: 18px;
|
|
31855
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31856
|
+
height: 34px;
|
|
31857
|
+
min-height: 34px;
|
|
31858
|
+
box-sizing: border-box;
|
|
31859
|
+
margin-top: 8px;
|
|
32084
31860
|
}
|
|
32085
|
-
|
|
32086
|
-
|
|
32087
|
-
|
|
32088
|
-
|
|
32089
|
-
|
|
32090
|
-
|
|
31861
|
+
|
|
31862
|
+
.E_o1ugr09p {
|
|
31863
|
+
display: flex;
|
|
31864
|
+
flex-direction: column;
|
|
31865
|
+
margin: 1px 8px;
|
|
31866
|
+
padding: 8px;
|
|
31867
|
+
border-radius: 4px;
|
|
32091
31868
|
}
|
|
32092
|
-
.
|
|
32093
|
-
|
|
31869
|
+
.E_o1ugr09p .selected-icon {
|
|
31870
|
+
display: none;
|
|
32094
31871
|
}
|
|
32095
|
-
.
|
|
32096
|
-
|
|
32097
|
-
font-size: 13px;
|
|
31872
|
+
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
31873
|
+
padding-left: 8px;
|
|
32098
31874
|
}
|
|
32099
|
-
.
|
|
32100
|
-
|
|
32101
|
-
transition: 160ms ease;
|
|
31875
|
+
.E_o1ugr09p.ant-select-item-option-selected {
|
|
31876
|
+
background-color: white;
|
|
32102
31877
|
}
|
|
32103
|
-
.
|
|
31878
|
+
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
32104
31879
|
color: #0080ff;
|
|
32105
31880
|
}
|
|
32106
|
-
.
|
|
32107
|
-
|
|
32108
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31881
|
+
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
31882
|
+
display: block;
|
|
32109
31883
|
}
|
|
32110
|
-
.
|
|
31884
|
+
.E_o1ugr09p.ant-select-item-option-active {
|
|
31885
|
+
background: rgba(0, 136, 255, 0.16);
|
|
31886
|
+
}
|
|
31887
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
32111
31888
|
color: #0080ff;
|
|
32112
31889
|
}
|
|
32113
|
-
.
|
|
32114
|
-
|
|
32115
|
-
|
|
31890
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
31891
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31892
|
+
color: #0080ff;
|
|
32116
31893
|
}
|
|
32117
|
-
|
|
32118
|
-
|
|
31894
|
+
|
|
31895
|
+
.E_o1ifxsq4 {
|
|
31896
|
+
display: flex;
|
|
31897
|
+
justify-content: space-between;
|
|
31898
|
+
height: 20px;
|
|
31899
|
+
line-height: 20px;
|
|
32119
31900
|
}
|
|
32120
|
-
.
|
|
32121
|
-
|
|
32122
|
-
|
|
32123
|
-
|
|
31901
|
+
.E_o1ifxsq4 .timezone-title {
|
|
31902
|
+
color: #2d3a56;
|
|
31903
|
+
overflow: hidden;
|
|
31904
|
+
text-overflow: ellipsis;
|
|
31905
|
+
}
|
|
31906
|
+
|
|
31907
|
+
.E_o1zue7 {
|
|
31908
|
+
display: flex;
|
|
31909
|
+
justify-content: space-between;
|
|
31910
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31911
|
+
height: 18px;
|
|
31912
|
+
line-height: 18px;
|
|
31913
|
+
margin-top: 2px;
|
|
32124
31914
|
}
|
|
32125
|
-
|
|
32126
|
-
|
|
31915
|
+
|
|
31916
|
+
.E_tyfmlxg {
|
|
31917
|
+
border: none;
|
|
31918
|
+
margin-right: 0;
|
|
31919
|
+
background: rgba(225, 230, 241, 0.6);
|
|
32127
31920
|
}
|
|
32128
|
-
|
|
32129
|
-
|
|
31921
|
+
|
|
31922
|
+
.E_o18uybox {
|
|
31923
|
+
pointer-events: none;
|
|
31924
|
+
height: 32px;
|
|
31925
|
+
width: 100%;
|
|
31926
|
+
opacity: 0;
|
|
32130
31927
|
}
|
|
32131
|
-
|
|
32132
|
-
|
|
32133
|
-
|
|
31928
|
+
|
|
31929
|
+
.E_iq1gosr {
|
|
31930
|
+
display: inline-block;
|
|
32134
31931
|
}
|
|
32135
|
-
|
|
32136
|
-
|
|
31932
|
+
|
|
31933
|
+
.E_s1sck0th {
|
|
31934
|
+
padding: 0 8px;
|
|
31935
|
+
border-radius: 4px;
|
|
32137
31936
|
}
|
|
32138
31937
|
|
|
32139
|
-
.
|
|
32140
|
-
|
|
31938
|
+
.E_m855nr1 {
|
|
31939
|
+
padding: 2px 8px;
|
|
31940
|
+
border-radius: 3px;
|
|
32141
31941
|
}
|
|
32142
|
-
|
|
32143
|
-
|
|
31942
|
+
|
|
31943
|
+
.E_l1270xpg {
|
|
31944
|
+
padding: 3px 8px;
|
|
31945
|
+
border-radius: 2px;
|
|
32144
31946
|
}
|
|
32145
31947
|
|
|
32146
|
-
.
|
|
32147
|
-
|
|
32148
|
-
|
|
32149
|
-
.
|
|
32150
|
-
|
|
32151
|
-
|
|
32152
|
-
|
|
32153
|
-
|
|
32154
|
-
|
|
32155
|
-
|
|
32156
|
-
.
|
|
32157
|
-
display: none;
|
|
31948
|
+
.E_t14rextb.ant-tag:hover {
|
|
31949
|
+
opacity: unset;
|
|
31950
|
+
}
|
|
31951
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
31952
|
+
margin: 0;
|
|
31953
|
+
margin-right: 8px;
|
|
31954
|
+
display: inline-flex;
|
|
31955
|
+
align-items: center;
|
|
31956
|
+
border: none;
|
|
31957
|
+
}
|
|
31958
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
32158
31959
|
width: 16px;
|
|
32159
31960
|
height: 16px;
|
|
31961
|
+
color: inherit;
|
|
31962
|
+
margin-left: 4px;
|
|
31963
|
+
opacity: 0.6;
|
|
31964
|
+
display: inline-flex;
|
|
32160
31965
|
}
|
|
32161
|
-
.
|
|
32162
|
-
opacity:
|
|
31966
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
31967
|
+
opacity: 1;
|
|
32163
31968
|
}
|
|
32164
|
-
.
|
|
32165
|
-
|
|
31969
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
31970
|
+
color: #0080ff;
|
|
31971
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32166
31972
|
}
|
|
32167
|
-
.
|
|
32168
|
-
|
|
31973
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
31974
|
+
color: #f0483e;
|
|
31975
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
32169
31976
|
}
|
|
32170
|
-
.
|
|
32171
|
-
|
|
31977
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
31978
|
+
color: #e07f00;
|
|
31979
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
32172
31980
|
}
|
|
32173
|
-
.
|
|
32174
|
-
|
|
31981
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
31982
|
+
color: #008f4c;
|
|
31983
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
32175
31984
|
}
|
|
32176
|
-
.
|
|
32177
|
-
|
|
31985
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
31986
|
+
color: #1d326c;
|
|
31987
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32178
31988
|
}
|
|
32179
|
-
.
|
|
32180
|
-
|
|
31989
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
31990
|
+
color: #7E41FF;
|
|
31991
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
32181
31992
|
}
|
|
32182
|
-
.
|
|
32183
|
-
|
|
31993
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
31994
|
+
color: #fff;
|
|
32184
31995
|
}
|
|
32185
|
-
.
|
|
32186
|
-
|
|
31996
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
31997
|
+
background-color: #f0483e;
|
|
32187
31998
|
}
|
|
32188
|
-
.
|
|
32189
|
-
|
|
31999
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
32000
|
+
background-color: #fea008;
|
|
32190
32001
|
}
|
|
32191
|
-
.
|
|
32192
|
-
|
|
32002
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
32003
|
+
background-color: #00ba5d;
|
|
32193
32004
|
}
|
|
32194
|
-
.
|
|
32195
|
-
|
|
32005
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
32006
|
+
background-color: #0080ff;
|
|
32196
32007
|
}
|
|
32197
|
-
.
|
|
32198
|
-
|
|
32008
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32009
|
+
background-color: #6b7d99;
|
|
32199
32010
|
}
|
|
32200
|
-
.
|
|
32201
|
-
|
|
32011
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32012
|
+
background-color: #7E41FF;
|
|
32202
32013
|
}
|
|
32203
|
-
|
|
32204
|
-
|
|
32014
|
+
|
|
32015
|
+
.E_a1b5xrg3 .user-icon-inner {
|
|
32016
|
+
display: inline-flex;
|
|
32017
|
+
align-items: center;
|
|
32018
|
+
justify-content: center;
|
|
32019
|
+
color: #fff;
|
|
32020
|
+
font-weight: bold;
|
|
32021
|
+
font-size: 12px;
|
|
32022
|
+
width: 24px;
|
|
32023
|
+
height: 24px;
|
|
32024
|
+
border-radius: 50%;
|
|
32025
|
+
background: var(--a1b5xrg3-0);
|
|
32205
32026
|
}
|
|
32206
|
-
.
|
|
32207
|
-
|
|
32027
|
+
.E_a1b5xrg3.btn-item {
|
|
32028
|
+
transition: all 160ms ease;
|
|
32029
|
+
cursor: pointer;
|
|
32030
|
+
width: 56px;
|
|
32031
|
+
height: 40px;
|
|
32032
|
+
display: inline-flex;
|
|
32033
|
+
align-items: center;
|
|
32034
|
+
justify-content: center;
|
|
32035
|
+
border-radius: 6px;
|
|
32208
32036
|
}
|
|
32209
|
-
.
|
|
32210
|
-
|
|
32037
|
+
.E_a1b5xrg3.btn-item:hover {
|
|
32038
|
+
box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
|
|
32211
32039
|
}
|
|
32212
|
-
.
|
|
32213
|
-
|
|
32214
|
-
|
|
32040
|
+
.E_a1b5xrg3.btn-item:active {
|
|
32041
|
+
transform: translateY(2px);
|
|
32042
|
+
transition: all 320ms ease;
|
|
32215
32043
|
}
|
|
32216
|
-
|
|
32217
|
-
|
|
32044
|
+
|
|
32045
|
+
.E_m196gn1d {
|
|
32046
|
+
min-width: 1280px;
|
|
32218
32047
|
}
|
|
32219
|
-
|
|
32220
|
-
.
|
|
32221
|
-
|
|
32048
|
+
|
|
32049
|
+
.E_ccrbeuz .ant-collapse-item {
|
|
32050
|
+
border: 0px;
|
|
32051
|
+
background-color: #fff;
|
|
32222
32052
|
}
|
|
32223
|
-
.
|
|
32224
|
-
|
|
32053
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
32054
|
+
padding-top: 0px;
|
|
32055
|
+
padding-bottom: 0px;
|
|
32056
|
+
padding-left: 0px !important;
|
|
32057
|
+
padding-right: 24px;
|
|
32225
32058
|
}
|
|
32226
|
-
.
|
|
32227
|
-
|
|
32228
|
-
display: none;
|
|
32059
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
32060
|
+
right: 0px;
|
|
32229
32061
|
}
|
|
32230
|
-
.
|
|
32231
|
-
|
|
32062
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
32063
|
+
padding: 0px;
|
|
32232
32064
|
}
|
|
32233
32065
|
|
|
32234
|
-
.
|
|
32235
|
-
padding:
|
|
32236
|
-
|
|
32237
|
-
.E_swwhohx.ant-select .ant-select-arrow {
|
|
32238
|
-
right: 8px;
|
|
32239
|
-
top: 50%;
|
|
32240
|
-
margin-top: -8px;
|
|
32241
|
-
width: 16px;
|
|
32242
|
-
height: 16px;
|
|
32243
|
-
display: flex;
|
|
32244
|
-
align-items: center;
|
|
32245
|
-
}
|
|
32246
|
-
.E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
|
|
32247
|
-
padding: 0 11px 0 16px;
|
|
32248
|
-
}
|
|
32249
|
-
.E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
|
|
32250
|
-
right: 12px;
|
|
32066
|
+
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
32067
|
+
padding-right: 0px;
|
|
32068
|
+
cursor: default;
|
|
32251
32069
|
}
|
|
32252
|
-
|
|
32253
|
-
|
|
32070
|
+
|
|
32071
|
+
.E_t1m2x205 .ant-tooltip-arrow {
|
|
32072
|
+
display: none;
|
|
32254
32073
|
}
|
|
32255
|
-
.
|
|
32256
|
-
|
|
32074
|
+
.E_t1m2x205 .ant-tooltip-inner {
|
|
32075
|
+
background: rgba(23, 38, 64, 0.8);
|
|
32076
|
+
border-radius: 4px;
|
|
32257
32077
|
}
|
|
32258
|
-
.
|
|
32259
|
-
|
|
32078
|
+
.E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
32079
|
+
visibility: hidden;
|
|
32260
32080
|
}
|
|
32261
32081
|
|
|
32262
|
-
.
|
|
32263
|
-
|
|
32082
|
+
.E_suhck3k {
|
|
32083
|
+
height: 24px;
|
|
32084
|
+
width: 24px;
|
|
32085
|
+
border-radius: 6px;
|
|
32086
|
+
padding: 4px;
|
|
32264
32087
|
}
|
|
32265
|
-
|
|
32266
|
-
.
|
|
32267
|
-
display: flex;
|
|
32268
|
-
justify-content: space-between;
|
|
32269
|
-
align-items: center;
|
|
32270
|
-
gap: 8px;
|
|
32088
|
+
.E_suhck3k:hover {
|
|
32089
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32271
32090
|
}
|
|
32272
|
-
.
|
|
32273
|
-
|
|
32274
|
-
line-height: inherit !important;
|
|
32091
|
+
.E_suhck3k:hover svg path {
|
|
32092
|
+
fill: blue;
|
|
32275
32093
|
}
|
|
32276
32094
|
|
|
32277
|
-
.
|
|
32095
|
+
.E_ryby9ds {
|
|
32278
32096
|
display: flex;
|
|
32279
|
-
justify-content: space-between;
|
|
32280
32097
|
align-items: center;
|
|
32281
|
-
gap: 8px;
|
|
32282
|
-
min-width: 0;
|
|
32283
32098
|
}
|
|
32284
|
-
|
|
32285
|
-
|
|
32099
|
+
.E_ryby9ds .order {
|
|
32100
|
+
height: 24px;
|
|
32101
|
+
width: 24px;
|
|
32102
|
+
border-radius: 20px;
|
|
32103
|
+
color: #0080ff;
|
|
32104
|
+
background: rgba(0, 136, 255, 0.1);
|
|
32286
32105
|
display: flex;
|
|
32287
32106
|
align-items: center;
|
|
32288
|
-
|
|
32107
|
+
justify-content: center;
|
|
32108
|
+
margin-right: 6px;
|
|
32289
32109
|
}
|
|
32290
32110
|
|
|
32291
32111
|
.E_hrhfj7c {
|
|
@@ -32507,33 +32327,227 @@ input.E_rf8rlle.ant-input {
|
|
|
32507
32327
|
font-size: 14px;
|
|
32508
32328
|
}
|
|
32509
32329
|
|
|
32510
|
-
.
|
|
32511
|
-
height: 24px;
|
|
32512
|
-
width: 24px;
|
|
32330
|
+
.E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
|
|
32513
32331
|
border-radius: 6px;
|
|
32514
|
-
padding: 4px;
|
|
32515
32332
|
}
|
|
32516
|
-
.
|
|
32517
|
-
|
|
32333
|
+
.E_s17wv897.ant-select.ant-select-single {
|
|
32334
|
+
width: 100%;
|
|
32335
|
+
color: #2d3a56;
|
|
32336
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
32337
|
+
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
32338
|
+
font-size: 13px;
|
|
32518
32339
|
}
|
|
32519
|
-
.
|
|
32520
|
-
|
|
32340
|
+
.E_s17wv897.ant-select.ant-select-single[data-size=middle] {
|
|
32341
|
+
height: 30px;
|
|
32342
|
+
}
|
|
32343
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-lg {
|
|
32344
|
+
height: 38px;
|
|
32345
|
+
font-size: 13px;
|
|
32346
|
+
}
|
|
32347
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
|
|
32348
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
32349
|
+
transition: 160ms ease;
|
|
32350
|
+
}
|
|
32351
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
32352
|
+
color: #0080ff;
|
|
32353
|
+
}
|
|
32354
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
32355
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
32356
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
32357
|
+
}
|
|
32358
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
32359
|
+
color: #0080ff;
|
|
32360
|
+
}
|
|
32361
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
32362
|
+
border-color: #0080ff;
|
|
32363
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
32364
|
+
}
|
|
32365
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
32366
|
+
transform: rotate(180deg);
|
|
32367
|
+
}
|
|
32368
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
32369
|
+
background: rgba(211, 218, 235, 0.6);
|
|
32370
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
32371
|
+
cursor: "not-allowed";
|
|
32372
|
+
}
|
|
32373
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
32374
|
+
border-color: #f0483e !important;
|
|
32375
|
+
}
|
|
32376
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
32377
|
+
color: #1d326c;
|
|
32378
|
+
}
|
|
32379
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
32380
|
+
border-color: #0080ff;
|
|
32381
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
32382
|
+
}
|
|
32383
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
32384
|
+
transform: rotate(180deg);
|
|
32521
32385
|
}
|
|
32522
32386
|
|
|
32523
|
-
.
|
|
32387
|
+
.E_oa99sl3 {
|
|
32524
32388
|
display: flex;
|
|
32389
|
+
justify-content: space-between;
|
|
32525
32390
|
align-items: center;
|
|
32391
|
+
gap: 8px;
|
|
32526
32392
|
}
|
|
32527
|
-
.
|
|
32528
|
-
|
|
32529
|
-
|
|
32530
|
-
|
|
32531
|
-
|
|
32532
|
-
|
|
32393
|
+
.E_oa99sl3,
|
|
32394
|
+
.E_oa99sl3 :first-child {
|
|
32395
|
+
line-height: inherit !important;
|
|
32396
|
+
}
|
|
32397
|
+
|
|
32398
|
+
.E_lvp5pj7 {
|
|
32533
32399
|
display: flex;
|
|
32400
|
+
justify-content: space-between;
|
|
32534
32401
|
align-items: center;
|
|
32535
|
-
|
|
32536
|
-
|
|
32402
|
+
gap: 8px;
|
|
32403
|
+
min-width: 0;
|
|
32404
|
+
}
|
|
32405
|
+
|
|
32406
|
+
.E_s1io1lws {
|
|
32407
|
+
display: flex;
|
|
32408
|
+
align-items: center;
|
|
32409
|
+
flex-shrink: 0;
|
|
32410
|
+
}
|
|
32411
|
+
|
|
32412
|
+
.E_s4ivdfu.ant-select .ant-select-selection-placeholder {
|
|
32413
|
+
opacity: 1;
|
|
32414
|
+
}
|
|
32415
|
+
.E_s4ivdfu.ant-select.select-loading-value {
|
|
32416
|
+
pointer-events: none;
|
|
32417
|
+
}
|
|
32418
|
+
|
|
32419
|
+
.E_sks9xr8.ant-select .select-hover-suffix,
|
|
32420
|
+
.E_sks9xr8.ant-select .select-active-suffix,
|
|
32421
|
+
.E_sks9xr8.ant-select .select-expanded-suffix,
|
|
32422
|
+
.E_sks9xr8.ant-select .select-expanded-search-suffix,
|
|
32423
|
+
.E_sks9xr8.ant-select .select-focus-suffix,
|
|
32424
|
+
.E_sks9xr8.ant-select .select-error-suffix,
|
|
32425
|
+
.E_sks9xr8.ant-select .select-error-hover-suffix,
|
|
32426
|
+
.E_sks9xr8.ant-select .select-error-active-suffix,
|
|
32427
|
+
.E_sks9xr8.ant-select .select-error-expanded-suffix,
|
|
32428
|
+
.E_sks9xr8.ant-select .select-error-expanded-search-suffix,
|
|
32429
|
+
.E_sks9xr8.ant-select .select-error-focus-suffix {
|
|
32430
|
+
display: none;
|
|
32431
|
+
width: 16px;
|
|
32432
|
+
height: 16px;
|
|
32433
|
+
}
|
|
32434
|
+
.E_sks9xr8.ant-select.ant-select-disabled .select-suffix {
|
|
32435
|
+
opacity: 0.5;
|
|
32436
|
+
}
|
|
32437
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-suffix {
|
|
32438
|
+
display: none;
|
|
32439
|
+
}
|
|
32440
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-expanded-search-suffix {
|
|
32441
|
+
display: inline;
|
|
32442
|
+
}
|
|
32443
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-suffix {
|
|
32444
|
+
display: none;
|
|
32445
|
+
}
|
|
32446
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-expanded-suffix {
|
|
32447
|
+
display: inline;
|
|
32448
|
+
}
|
|
32449
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-suffix {
|
|
32450
|
+
display: none;
|
|
32451
|
+
}
|
|
32452
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-hover-suffix {
|
|
32453
|
+
display: inline;
|
|
32454
|
+
}
|
|
32455
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-suffix {
|
|
32456
|
+
display: none;
|
|
32457
|
+
}
|
|
32458
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-active-suffix {
|
|
32459
|
+
display: inline;
|
|
32460
|
+
}
|
|
32461
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-suffix {
|
|
32462
|
+
display: none;
|
|
32463
|
+
}
|
|
32464
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-focus-suffix {
|
|
32465
|
+
display: inline;
|
|
32466
|
+
}
|
|
32467
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-suffix {
|
|
32468
|
+
display: none;
|
|
32469
|
+
}
|
|
32470
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-error-expanded-search-suffix {
|
|
32471
|
+
display: inline;
|
|
32472
|
+
}
|
|
32473
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-suffix {
|
|
32474
|
+
display: none;
|
|
32475
|
+
}
|
|
32476
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-error-expanded-suffix {
|
|
32477
|
+
display: inline;
|
|
32478
|
+
}
|
|
32479
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-suffix {
|
|
32480
|
+
display: none;
|
|
32481
|
+
}
|
|
32482
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-error-suffix {
|
|
32483
|
+
display: inline;
|
|
32484
|
+
}
|
|
32485
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-suffix,
|
|
32486
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-suffix {
|
|
32487
|
+
display: none;
|
|
32488
|
+
}
|
|
32489
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-hover-suffix {
|
|
32490
|
+
display: inline;
|
|
32491
|
+
}
|
|
32492
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-suffix,
|
|
32493
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-suffix {
|
|
32494
|
+
display: none;
|
|
32495
|
+
}
|
|
32496
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-active-suffix {
|
|
32497
|
+
display: inline;
|
|
32498
|
+
}
|
|
32499
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-suffix,
|
|
32500
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-suffix {
|
|
32501
|
+
display: none;
|
|
32502
|
+
}
|
|
32503
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
|
|
32504
|
+
display: inline;
|
|
32505
|
+
}
|
|
32506
|
+
|
|
32507
|
+
.E_swwhohx.ant-select .ant-select-selector {
|
|
32508
|
+
padding: 0 7px 0 12px;
|
|
32509
|
+
}
|
|
32510
|
+
.E_swwhohx.ant-select .ant-select-arrow {
|
|
32511
|
+
right: 8px;
|
|
32512
|
+
top: 50%;
|
|
32513
|
+
margin-top: -8px;
|
|
32514
|
+
width: 16px;
|
|
32515
|
+
height: 16px;
|
|
32516
|
+
display: flex;
|
|
32517
|
+
align-items: center;
|
|
32518
|
+
}
|
|
32519
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
|
|
32520
|
+
padding: 0 11px 0 16px;
|
|
32521
|
+
}
|
|
32522
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
|
|
32523
|
+
right: 12px;
|
|
32524
|
+
}
|
|
32525
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
|
|
32526
|
+
padding: 0 3px 0 8px;
|
|
32527
|
+
}
|
|
32528
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
|
|
32529
|
+
right: 4px;
|
|
32530
|
+
}
|
|
32531
|
+
.E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
|
|
32532
|
+
padding-right: 24px;
|
|
32533
|
+
}
|
|
32534
|
+
|
|
32535
|
+
.E_p2sxmsl {
|
|
32536
|
+
color: rgba(0, 21, 64, 0.3);
|
|
32537
|
+
}
|
|
32538
|
+
|
|
32539
|
+
.E_m5foqp8 {
|
|
32540
|
+
--footer-height: 96px;
|
|
32541
|
+
--header-height: 80px;
|
|
32542
|
+
--modal-content-width: 720px;
|
|
32543
|
+
--modal-content-min-height: 200px;
|
|
32544
|
+
--modal-content-max-height: calc(
|
|
32545
|
+
100vh - 136px - var(--header-height) - var(--footer-height)
|
|
32546
|
+
);
|
|
32547
|
+
--modal-header-padding: 36px 60px 0;
|
|
32548
|
+
--modal-content-padding-y: 36px;
|
|
32549
|
+
--modal-content-padding-x: 60px;
|
|
32550
|
+
--modal-footer-padding: 0 60px;
|
|
32537
32551
|
}
|
|
32538
32552
|
|
|
32539
32553
|
.E_w1dxz879 {
|
|
@@ -32771,6 +32785,25 @@ input.E_rf8rlle.ant-input {
|
|
|
32771
32785
|
position: static;
|
|
32772
32786
|
}
|
|
32773
32787
|
|
|
32788
|
+
.E_r77hffu {
|
|
32789
|
+
display: flex;
|
|
32790
|
+
align-items: center;
|
|
32791
|
+
justify-content: space-between;
|
|
32792
|
+
column-gap: 6px;
|
|
32793
|
+
}
|
|
32794
|
+
|
|
32795
|
+
.E_p1cmxsf7 {
|
|
32796
|
+
display: flex;
|
|
32797
|
+
flex-direction: column;
|
|
32798
|
+
justify-content: center;
|
|
32799
|
+
row-gap: var(--p1cmxsf7-0);
|
|
32800
|
+
}
|
|
32801
|
+
.E_p1cmxsf7 .antd5-progress-line {
|
|
32802
|
+
font-size: 0;
|
|
32803
|
+
margin-bottom: unset;
|
|
32804
|
+
margin-inline-end: unset;
|
|
32805
|
+
}
|
|
32806
|
+
|
|
32774
32807
|
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
32775
32808
|
margin-right: 2px;
|
|
32776
32809
|
}
|
|
@@ -32797,30 +32830,13 @@ input.E_rf8rlle.ant-input {
|
|
|
32797
32830
|
}
|
|
32798
32831
|
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32799
32832
|
background-color: rgba(255, 255, 255, 0.6);
|
|
32800
|
-
color: rgba(44, 56, 82, 0.75);
|
|
32801
|
-
}
|
|
32802
|
-
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32803
|
-
background-color: transparent;
|
|
32804
|
-
}
|
|
32805
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
32806
|
-
background-color: transparent;
|
|
32807
|
-
}
|
|
32808
|
-
|
|
32809
|
-
.E_b14q2gmw {
|
|
32810
|
-
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);
|
|
32811
|
-
}
|
|
32812
|
-
|
|
32813
|
-
.E_c1eym6el {
|
|
32814
|
-
border-radius: 8px;
|
|
32815
|
-
background-color: white;
|
|
32833
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32816
32834
|
}
|
|
32817
|
-
.
|
|
32818
|
-
|
|
32835
|
+
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
32836
|
+
background-color: transparent;
|
|
32819
32837
|
}
|
|
32820
|
-
.
|
|
32821
|
-
|
|
32822
|
-
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
32823
|
-
transform: translateY(-4px);
|
|
32838
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
32839
|
+
background-color: transparent;
|
|
32824
32840
|
}
|
|
32825
32841
|
|
|
32826
32842
|
.E_ckui4s7 {
|
|
@@ -32887,438 +32903,622 @@ input.E_rf8rlle.ant-input {
|
|
|
32887
32903
|
margin-left: 24px;
|
|
32888
32904
|
}
|
|
32889
32905
|
|
|
32890
|
-
.
|
|
32891
|
-
|
|
32892
|
-
|
|
32893
|
-
|
|
32894
|
-
|
|
32895
|
-
|
|
32896
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
32897
|
-
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
32906
|
+
.E_c1kghdax {
|
|
32907
|
+
color: #2d3a56;
|
|
32908
|
+
padding: 7px 12px;
|
|
32909
|
+
display: flex;
|
|
32910
|
+
justify-content: space-between;
|
|
32911
|
+
align-items: center;
|
|
32898
32912
|
}
|
|
32899
|
-
.
|
|
32900
|
-
|
|
32913
|
+
.E_c1kghdax.has-arrow {
|
|
32914
|
+
padding-left: 10px;
|
|
32901
32915
|
}
|
|
32902
|
-
.
|
|
32916
|
+
.E_c1kghdax.has-arrow .title-wrapper {
|
|
32917
|
+
cursor: pointer;
|
|
32903
32918
|
color: #00122e;
|
|
32904
32919
|
}
|
|
32905
|
-
.
|
|
32906
|
-
|
|
32920
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
32921
|
+
color: #2d3a56;
|
|
32922
|
+
font-weight: 600;
|
|
32907
32923
|
}
|
|
32908
|
-
.
|
|
32909
|
-
|
|
32924
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
32925
|
+
transform: rotate(90deg);
|
|
32926
|
+
}
|
|
32927
|
+
.E_c1kghdax .sub-info {
|
|
32928
|
+
font-size: 12px;
|
|
32929
|
+
line-height: 18px;
|
|
32930
|
+
}
|
|
32931
|
+
.E_c1kghdax .title-wrapper {
|
|
32932
|
+
display: flex;
|
|
32933
|
+
align-items: center;
|
|
32934
|
+
user-select: none;
|
|
32935
|
+
flex-grow: 1;
|
|
32936
|
+
font-size: 12px;
|
|
32937
|
+
line-height: 18px;
|
|
32938
|
+
color: #2d3a56;
|
|
32939
|
+
font-weight: 700;
|
|
32940
|
+
}
|
|
32941
|
+
.E_c1kghdax .collapse-arrow {
|
|
32942
|
+
transition: all 50ms ease-out 0ms;
|
|
32943
|
+
margin-right: 2px;
|
|
32944
|
+
}
|
|
32945
|
+
|
|
32946
|
+
.E_c1yd35n {
|
|
32947
|
+
padding: 0 12px 14px 12px;
|
|
32948
|
+
}
|
|
32949
|
+
|
|
32950
|
+
.E_b14q2gmw {
|
|
32951
|
+
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);
|
|
32952
|
+
}
|
|
32953
|
+
|
|
32954
|
+
.E_c1eym6el {
|
|
32955
|
+
border-radius: 8px;
|
|
32956
|
+
background-color: white;
|
|
32957
|
+
}
|
|
32958
|
+
.E_c1eym6el.hoverable {
|
|
32959
|
+
cursor: pointer;
|
|
32960
|
+
}
|
|
32961
|
+
.E_c1eym6el.hoverable:hover {
|
|
32962
|
+
transition: all 200ms ease;
|
|
32963
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
32964
|
+
transform: translateY(-4px);
|
|
32965
|
+
}
|
|
32966
|
+
|
|
32967
|
+
.E_msn7nxt {
|
|
32910
32968
|
color: rgba(44, 56, 82, 0.6);
|
|
32969
|
+
text-align: center;
|
|
32970
|
+
display: flex;
|
|
32971
|
+
align-items: center;
|
|
32972
|
+
justify-content: center;
|
|
32973
|
+
flex-direction: column;
|
|
32974
|
+
height: 100%;
|
|
32911
32975
|
}
|
|
32912
|
-
.
|
|
32913
|
-
|
|
32976
|
+
.E_msn7nxt .link {
|
|
32977
|
+
color: #0080ff;
|
|
32978
|
+
cursor: pointer;
|
|
32914
32979
|
}
|
|
32915
|
-
|
|
32916
|
-
|
|
32980
|
+
|
|
32981
|
+
.E_mp64wfi {
|
|
32982
|
+
width: 100%;
|
|
32983
|
+
height: 100%;
|
|
32984
|
+
display: flex;
|
|
32985
|
+
flex-direction: column;
|
|
32917
32986
|
}
|
|
32918
|
-
.
|
|
32919
|
-
|
|
32987
|
+
.E_mp64wfi .name-toolbar {
|
|
32988
|
+
width: 100%;
|
|
32989
|
+
display: flex;
|
|
32990
|
+
line-height: 30px;
|
|
32991
|
+
padding: 0 16px;
|
|
32992
|
+
justify-content: space-between;
|
|
32920
32993
|
}
|
|
32921
|
-
.
|
|
32922
|
-
|
|
32994
|
+
.E_mp64wfi .name-toolbar .metric-extra {
|
|
32995
|
+
display: flex;
|
|
32996
|
+
font-size: 12px;
|
|
32997
|
+
align-items: center;
|
|
32923
32998
|
}
|
|
32924
|
-
.
|
|
32925
|
-
|
|
32999
|
+
.E_mp64wfi .name-toolbar .metric-extra .info-item {
|
|
33000
|
+
color: #a3b4cc;
|
|
32926
33001
|
}
|
|
32927
|
-
.
|
|
32928
|
-
|
|
33002
|
+
.E_mp64wfi .name-toolbar .metric-extra .info-item + .info-item {
|
|
33003
|
+
margin-left: 10px;
|
|
33004
|
+
}
|
|
33005
|
+
.E_mp64wfi .name-toolbar .metric-extra .menu-trigger {
|
|
33006
|
+
margin-left: 10px;
|
|
33007
|
+
cursor: pointer;
|
|
33008
|
+
}
|
|
33009
|
+
.E_mp64wfi .content {
|
|
33010
|
+
flex: 1;
|
|
33011
|
+
width: 100%;
|
|
33012
|
+
display: flex;
|
|
33013
|
+
justify-content: center;
|
|
33014
|
+
align-items: center;
|
|
33015
|
+
}
|
|
33016
|
+
.E_mp64wfi .single-content {
|
|
33017
|
+
height: 65px;
|
|
33018
|
+
}
|
|
33019
|
+
|
|
33020
|
+
.E_l1oyigan {
|
|
33021
|
+
display: flex;
|
|
33022
|
+
align-items: center;
|
|
33023
|
+
white-space: nowrap;
|
|
33024
|
+
overflow: hidden;
|
|
33025
|
+
width: 100%;
|
|
33026
|
+
}
|
|
33027
|
+
.E_l1oyigan .ant-dropdown-trigger {
|
|
33028
|
+
margin-left: auto;
|
|
33029
|
+
font-size: 12px;
|
|
33030
|
+
}
|
|
33031
|
+
|
|
33032
|
+
.E_l1noi4n1 {
|
|
33033
|
+
display: flex;
|
|
33034
|
+
justify-content: flex-start;
|
|
33035
|
+
align-items: center;
|
|
33036
|
+
font-size: 12px;
|
|
33037
|
+
cursor: pointer;
|
|
33038
|
+
}
|
|
33039
|
+
.E_l1noi4n1:not(:last-child) {
|
|
33040
|
+
margin-right: 20px;
|
|
33041
|
+
}
|
|
33042
|
+
.E_l1noi4n1.deselected {
|
|
33043
|
+
opacity: 0.4;
|
|
33044
|
+
}
|
|
33045
|
+
.E_l1noi4n1.deselected .color-block {
|
|
33046
|
+
background: #b4beca !important;
|
|
33047
|
+
}
|
|
33048
|
+
|
|
33049
|
+
.E_cz19rz6 {
|
|
33050
|
+
display: inline-block;
|
|
33051
|
+
height: 8px;
|
|
33052
|
+
width: 8px;
|
|
33053
|
+
margin-right: 8px;
|
|
33054
|
+
}
|
|
33055
|
+
|
|
33056
|
+
.E_e17r5r9c .ant-dropdown-menu-item {
|
|
33057
|
+
display: flex;
|
|
33058
|
+
align-items: center;
|
|
33059
|
+
font-size: 12px;
|
|
33060
|
+
margin: 0;
|
|
33061
|
+
}
|
|
33062
|
+
|
|
33063
|
+
.E_m1y1hhnr {
|
|
33064
|
+
position: relative;
|
|
33065
|
+
}
|
|
33066
|
+
.E_m1y1hhnr.hidden-xaxis .pointer-wrapper {
|
|
33067
|
+
bottom: -12px;
|
|
33068
|
+
}
|
|
33069
|
+
.E_m1y1hhnr .metric-toolbar {
|
|
33070
|
+
display: flex;
|
|
33071
|
+
justify-content: space-between;
|
|
33072
|
+
line-height: 30px;
|
|
33073
|
+
margin: 0 16px;
|
|
33074
|
+
}
|
|
33075
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra {
|
|
33076
|
+
display: flex;
|
|
33077
|
+
font-size: 12px;
|
|
33078
|
+
align-items: center;
|
|
33079
|
+
}
|
|
33080
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra .info-item {
|
|
33081
|
+
color: #a3b4cc;
|
|
33082
|
+
}
|
|
33083
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra .info-item + .info-item {
|
|
33084
|
+
margin-left: 10px;
|
|
33085
|
+
}
|
|
33086
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra .menu-trigger {
|
|
33087
|
+
margin-left: 10px;
|
|
33088
|
+
cursor: pointer;
|
|
33089
|
+
}
|
|
33090
|
+
.E_m1y1hhnr .recharts-xAxis {
|
|
33091
|
+
font-size: 12px;
|
|
33092
|
+
}
|
|
33093
|
+
.E_m1y1hhnr .pointer-wrapper {
|
|
33094
|
+
position: absolute;
|
|
33095
|
+
bottom: 10px;
|
|
33096
|
+
padding: 0 8px;
|
|
33097
|
+
border-radius: 4px;
|
|
33098
|
+
font-size: 12px;
|
|
33099
|
+
color: #fff;
|
|
33100
|
+
background: rgba(0, 0, 0, 0.75);
|
|
33101
|
+
transform: translateX(-50%);
|
|
33102
|
+
}
|
|
33103
|
+
|
|
33104
|
+
.E_tnvijvs {
|
|
33105
|
+
min-width: 200px;
|
|
33106
|
+
}
|
|
33107
|
+
|
|
33108
|
+
.E_t1ub2aex {
|
|
33109
|
+
display: flex;
|
|
33110
|
+
align-items: center;
|
|
33111
|
+
justify-content: space-between;
|
|
33112
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
33113
|
+
color: #b4beca;
|
|
33114
|
+
font-size: 12px;
|
|
33115
|
+
padding: 3px 6px;
|
|
33116
|
+
}
|
|
33117
|
+
.E_t1ub2aex:first-child {
|
|
33118
|
+
padding-top: 3px;
|
|
33119
|
+
}
|
|
33120
|
+
.E_t1ub2aex:last-child {
|
|
33121
|
+
padding-bottom: 3px;
|
|
33122
|
+
}
|
|
33123
|
+
.E_t1ub2aex .column-value {
|
|
33124
|
+
color: #fff;
|
|
33125
|
+
margin-left: 8px;
|
|
33126
|
+
}
|
|
33127
|
+
|
|
33128
|
+
.E_m11nzl2x {
|
|
33129
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33130
|
+
text-align: center;
|
|
33131
|
+
display: flex;
|
|
33132
|
+
align-items: center;
|
|
33133
|
+
justify-content: center;
|
|
33134
|
+
flex-direction: column;
|
|
33135
|
+
height: 100%;
|
|
32929
33136
|
}
|
|
32930
|
-
.
|
|
32931
|
-
|
|
33137
|
+
.E_m11nzl2x .link {
|
|
33138
|
+
color: #0080ff;
|
|
33139
|
+
cursor: pointer;
|
|
32932
33140
|
}
|
|
32933
|
-
|
|
32934
|
-
|
|
33141
|
+
|
|
33142
|
+
.E_mn7joto {
|
|
33143
|
+
width: 100%;
|
|
33144
|
+
height: 100%;
|
|
33145
|
+
display: flex;
|
|
33146
|
+
flex-direction: column;
|
|
32935
33147
|
}
|
|
32936
|
-
.
|
|
32937
|
-
|
|
33148
|
+
.E_mn7joto .name-toolbar {
|
|
33149
|
+
width: 100%;
|
|
33150
|
+
display: flex;
|
|
33151
|
+
line-height: 30px;
|
|
33152
|
+
justify-content: space-between;
|
|
32938
33153
|
}
|
|
32939
|
-
.
|
|
32940
|
-
|
|
33154
|
+
.E_mn7joto .name-toolbar .metric-extra {
|
|
33155
|
+
display: flex;
|
|
33156
|
+
font-size: 12px;
|
|
33157
|
+
align-items: center;
|
|
32941
33158
|
}
|
|
32942
|
-
.
|
|
32943
|
-
|
|
33159
|
+
.E_mn7joto .name-toolbar .metric-extra .info-item {
|
|
33160
|
+
color: #a3b4cc;
|
|
32944
33161
|
}
|
|
32945
|
-
.
|
|
32946
|
-
|
|
33162
|
+
.E_mn7joto .name-toolbar .metric-extra .info-item + .info-item {
|
|
33163
|
+
margin-left: 10px;
|
|
32947
33164
|
}
|
|
32948
|
-
.
|
|
32949
|
-
|
|
33165
|
+
.E_mn7joto .name-toolbar .metric-extra .menu-trigger {
|
|
33166
|
+
margin-left: 10px;
|
|
33167
|
+
cursor: pointer;
|
|
32950
33168
|
}
|
|
32951
|
-
.
|
|
32952
|
-
|
|
33169
|
+
.E_mn7joto .content {
|
|
33170
|
+
flex: 1;
|
|
33171
|
+
width: 100%;
|
|
33172
|
+
display: flex;
|
|
33173
|
+
justify-content: center;
|
|
33174
|
+
align-items: center;
|
|
32953
33175
|
}
|
|
32954
|
-
.
|
|
32955
|
-
|
|
33176
|
+
.E_mn7joto .single-content {
|
|
33177
|
+
height: 65px;
|
|
32956
33178
|
}
|
|
32957
33179
|
|
|
32958
|
-
.
|
|
32959
|
-
|
|
32960
|
-
|
|
32961
|
-
|
|
32962
|
-
|
|
33180
|
+
.E_l1bifhon {
|
|
33181
|
+
display: flex;
|
|
33182
|
+
align-items: center;
|
|
33183
|
+
white-space: nowrap;
|
|
33184
|
+
overflow: hidden;
|
|
33185
|
+
width: 100%;
|
|
32963
33186
|
}
|
|
32964
|
-
|
|
32965
|
-
button.E_l48ei06.ant-btn,
|
|
32966
|
-
button.E_l48ei06.ant-btn.ant-btn-sm,
|
|
32967
|
-
button.E_l48ei06.ant-btn.ant-btn-lg {
|
|
33187
|
+
.E_l1bifhon .ant-dropdown-trigger {
|
|
32968
33188
|
font-size: 12px;
|
|
32969
|
-
|
|
32970
|
-
height: 18px;
|
|
33189
|
+
margin-left: 8px;
|
|
32971
33190
|
}
|
|
32972
33191
|
|
|
32973
|
-
|
|
32974
|
-
|
|
32975
|
-
|
|
32976
|
-
|
|
32977
|
-
|
|
32978
|
-
|
|
33192
|
+
.E_ltthzck {
|
|
33193
|
+
display: flex;
|
|
33194
|
+
justify-content: flex-start;
|
|
33195
|
+
align-items: center;
|
|
33196
|
+
font-size: 12px;
|
|
33197
|
+
cursor: pointer;
|
|
32979
33198
|
}
|
|
32980
|
-
|
|
32981
|
-
margin-left:
|
|
33199
|
+
.E_ltthzck:not(:first-child) {
|
|
33200
|
+
margin-left: 8px;
|
|
32982
33201
|
}
|
|
32983
|
-
|
|
32984
|
-
|
|
33202
|
+
.E_ltthzck.deselected, .E_ltthzck.hovering {
|
|
33203
|
+
opacity: 0.3;
|
|
32985
33204
|
}
|
|
32986
|
-
|
|
32987
|
-
|
|
33205
|
+
.E_ltthzck.deselected:not(.hoverering-self) .color-block, .E_ltthzck.hovering:not(.hoverering-self) .color-block {
|
|
33206
|
+
background: #b4beca !important;
|
|
33207
|
+
border-radius: 2px;
|
|
32988
33208
|
}
|
|
32989
|
-
|
|
32990
|
-
|
|
33209
|
+
.E_ltthzck.hoverering-self {
|
|
33210
|
+
opacity: 1;
|
|
32991
33211
|
}
|
|
32992
|
-
|
|
32993
|
-
|
|
33212
|
+
.E_ltthzck .dropdown-trigger {
|
|
33213
|
+
margin-left: 12px;
|
|
32994
33214
|
}
|
|
32995
|
-
|
|
32996
|
-
color: #
|
|
33215
|
+
.E_ltthzck .legend-name {
|
|
33216
|
+
color: #00122e;
|
|
32997
33217
|
}
|
|
32998
|
-
|
|
32999
|
-
|
|
33218
|
+
|
|
33219
|
+
.E_l1mumj7o {
|
|
33220
|
+
display: flex;
|
|
33221
|
+
justify-content: flex-start;
|
|
33222
|
+
align-items: center;
|
|
33223
|
+
font-size: 12px;
|
|
33224
|
+
cursor: pointer;
|
|
33000
33225
|
}
|
|
33001
|
-
|
|
33002
|
-
|
|
33226
|
+
.E_l1mumj7o.deselected, .E_l1mumj7o.hovering {
|
|
33227
|
+
opacity: 0.3;
|
|
33003
33228
|
}
|
|
33004
|
-
|
|
33005
|
-
|
|
33229
|
+
.E_l1mumj7o.deselected:not(.hoverering-self) .color-block, .E_l1mumj7o.hovering:not(.hoverering-self) .color-block {
|
|
33230
|
+
background: #b4beca !important;
|
|
33231
|
+
border-radius: 2px;
|
|
33006
33232
|
}
|
|
33007
|
-
|
|
33008
|
-
color: #
|
|
33233
|
+
.E_l1mumj7o .legend-name {
|
|
33234
|
+
color: #00122e;
|
|
33009
33235
|
}
|
|
33010
|
-
|
|
33011
|
-
|
|
33236
|
+
.E_l1mumj7o.hoverering-self {
|
|
33237
|
+
opacity: 1;
|
|
33012
33238
|
}
|
|
33013
|
-
|
|
33014
|
-
|
|
33239
|
+
|
|
33240
|
+
.E_c14rn6j5 {
|
|
33241
|
+
display: inline-block;
|
|
33242
|
+
height: 8px;
|
|
33243
|
+
width: 8px;
|
|
33244
|
+
margin-right: 6px;
|
|
33245
|
+
border-radius: 2px;
|
|
33015
33246
|
}
|
|
33016
33247
|
|
|
33017
|
-
.
|
|
33018
|
-
|
|
33248
|
+
.E_e45tc5l .ant-dropdown-menu-item {
|
|
33249
|
+
display: flex;
|
|
33250
|
+
align-items: center;
|
|
33251
|
+
font-size: 12px;
|
|
33252
|
+
margin: 0;
|
|
33019
33253
|
}
|
|
33020
33254
|
|
|
33021
|
-
.
|
|
33022
|
-
|
|
33023
|
-
|
|
33255
|
+
.E_lqeaosa {
|
|
33256
|
+
position: relative;
|
|
33257
|
+
}
|
|
33258
|
+
.E_lqeaosa.hidden-xaxis .pointer-wrapper {
|
|
33259
|
+
bottom: -12px;
|
|
33260
|
+
}
|
|
33261
|
+
.E_lqeaosa .metric-toolbar {
|
|
33024
33262
|
display: flex;
|
|
33025
33263
|
justify-content: space-between;
|
|
33026
|
-
|
|
33264
|
+
line-height: 30px;
|
|
33027
33265
|
}
|
|
33028
|
-
.
|
|
33029
|
-
|
|
33266
|
+
.E_lqeaosa .metric-toolbar .metric-extra {
|
|
33267
|
+
display: flex;
|
|
33268
|
+
flex-shrink: 0;
|
|
33269
|
+
font-size: 12px;
|
|
33270
|
+
align-items: center;
|
|
33030
33271
|
}
|
|
33031
|
-
.
|
|
33032
|
-
|
|
33033
|
-
color: #00122e;
|
|
33272
|
+
.E_lqeaosa .metric-toolbar .metric-extra .info-item {
|
|
33273
|
+
color: #a3b4cc;
|
|
33034
33274
|
}
|
|
33035
|
-
.
|
|
33036
|
-
|
|
33037
|
-
font-weight: 600;
|
|
33275
|
+
.E_lqeaosa .metric-toolbar .metric-extra .info-item + .info-item {
|
|
33276
|
+
margin-left: 10px;
|
|
33038
33277
|
}
|
|
33039
|
-
.
|
|
33040
|
-
|
|
33278
|
+
.E_lqeaosa .metric-toolbar .metric-extra .menu-trigger {
|
|
33279
|
+
margin-left: 10px;
|
|
33280
|
+
cursor: pointer;
|
|
33041
33281
|
}
|
|
33042
|
-
.
|
|
33282
|
+
.E_lqeaosa .recharts-xAxis {
|
|
33043
33283
|
font-size: 12px;
|
|
33044
|
-
line-height: 18px;
|
|
33045
33284
|
}
|
|
33046
|
-
.
|
|
33047
|
-
|
|
33048
|
-
|
|
33049
|
-
|
|
33050
|
-
flex-grow: 1;
|
|
33285
|
+
.E_lqeaosa .pointer-wrapper {
|
|
33286
|
+
position: absolute;
|
|
33287
|
+
bottom: 10px;
|
|
33288
|
+
padding: 0 8px;
|
|
33051
33289
|
font-size: 12px;
|
|
33052
|
-
|
|
33053
|
-
|
|
33054
|
-
font-weight: 700;
|
|
33290
|
+
color: #fff;
|
|
33291
|
+
transform: translateX(-50%);
|
|
33055
33292
|
}
|
|
33056
|
-
|
|
33057
|
-
|
|
33058
|
-
|
|
33293
|
+
|
|
33294
|
+
.E_t2pr38p {
|
|
33295
|
+
min-width: 200px;
|
|
33296
|
+
background-color: rgba(23, 38, 64, 0.8);
|
|
33297
|
+
border-radius: 4px;
|
|
33298
|
+
box-shadow: 0px 1px 4px 0px rgba(29, 50, 108, 0.6);
|
|
33299
|
+
padding: 8px;
|
|
33059
33300
|
}
|
|
33060
33301
|
|
|
33061
|
-
.
|
|
33302
|
+
.E_tecdsj7 {
|
|
33062
33303
|
display: flex;
|
|
33063
33304
|
align-items: center;
|
|
33305
|
+
background-color: unset;
|
|
33306
|
+
color: #FFFFFF;
|
|
33064
33307
|
justify-content: space-between;
|
|
33065
|
-
|
|
33066
|
-
|
|
33067
|
-
|
|
33068
|
-
.E_p1cmxsf7 {
|
|
33069
|
-
display: flex;
|
|
33070
|
-
flex-direction: column;
|
|
33071
|
-
justify-content: center;
|
|
33072
|
-
row-gap: var(--p1cmxsf7-0);
|
|
33073
|
-
}
|
|
33074
|
-
.E_p1cmxsf7 .antd5-progress-line {
|
|
33075
|
-
font-size: 0;
|
|
33076
|
-
margin-bottom: unset;
|
|
33077
|
-
margin-inline-end: unset;
|
|
33308
|
+
font-size: 12px;
|
|
33309
|
+
padding-top: 6px;
|
|
33078
33310
|
}
|
|
33079
|
-
|
|
33080
|
-
|
|
33081
|
-
--item-min-width: 60px;
|
|
33311
|
+
.E_tecdsj7:first-child {
|
|
33312
|
+
padding-top: 3px;
|
|
33082
33313
|
}
|
|
33083
|
-
.
|
|
33084
|
-
|
|
33314
|
+
.E_tecdsj7:last-child {
|
|
33315
|
+
padding-bottom: 3px;
|
|
33085
33316
|
}
|
|
33086
|
-
.
|
|
33087
|
-
|
|
33317
|
+
.E_tecdsj7 .column-value {
|
|
33318
|
+
color: #FFFFFF;
|
|
33319
|
+
margin-left: 8px;
|
|
33088
33320
|
}
|
|
33089
|
-
|
|
33090
|
-
|
|
33321
|
+
|
|
33322
|
+
.E_ljhvvia {
|
|
33323
|
+
display: inline-block;
|
|
33324
|
+
height: 8px;
|
|
33325
|
+
width: 8px;
|
|
33326
|
+
margin-right: 8px;
|
|
33327
|
+
border-radius: 2px;
|
|
33091
33328
|
}
|
|
33092
|
-
.
|
|
33093
|
-
|
|
33094
|
-
font-weight: normal;
|
|
33329
|
+
.E_ljhvvia.borderd {
|
|
33330
|
+
border: 1px solid #fff;
|
|
33095
33331
|
}
|
|
33096
|
-
|
|
33097
|
-
|
|
33332
|
+
|
|
33333
|
+
.E_lht19u8 {
|
|
33334
|
+
width: 64px;
|
|
33335
|
+
height: 64px;
|
|
33336
|
+
display: flex;
|
|
33337
|
+
align-items: center;
|
|
33338
|
+
justify-content: center;
|
|
33339
|
+
position: relative;
|
|
33340
|
+
opacity: 0.2;
|
|
33098
33341
|
}
|
|
33099
|
-
|
|
33100
|
-
|
|
33342
|
+
|
|
33343
|
+
.E_lk3gkp4 {
|
|
33344
|
+
position: absolute;
|
|
33345
|
+
width: 5px;
|
|
33346
|
+
height: 48px;
|
|
33347
|
+
left: 9.33px;
|
|
33348
|
+
top: 40.5px;
|
|
33349
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33350
|
+
border-radius: 5px;
|
|
33351
|
+
transform: rotate(-128deg);
|
|
33352
|
+
transform-origin: top left;
|
|
33353
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
33101
33354
|
}
|
|
33102
|
-
|
|
33103
|
-
|
|
33355
|
+
|
|
33356
|
+
.E_ll4n94n {
|
|
33357
|
+
position: absolute;
|
|
33358
|
+
width: 5px;
|
|
33359
|
+
height: 48px;
|
|
33360
|
+
left: 40.8px;
|
|
33361
|
+
top: 8.4px;
|
|
33362
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33363
|
+
border-radius: 5px;
|
|
33364
|
+
transform: rotate(-8deg);
|
|
33365
|
+
transform-origin: top left;
|
|
33366
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
33104
33367
|
}
|
|
33105
|
-
|
|
33106
|
-
|
|
33107
|
-
|
|
33108
|
-
|
|
33368
|
+
|
|
33369
|
+
.E_l17lbdo6 {
|
|
33370
|
+
position: absolute;
|
|
33371
|
+
width: 5px;
|
|
33372
|
+
height: 48px;
|
|
33373
|
+
left: 52.9px;
|
|
33374
|
+
top: 51.8px;
|
|
33375
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33376
|
+
border-radius: 5px;
|
|
33377
|
+
transform: rotate(112deg);
|
|
33378
|
+
transform-origin: top left;
|
|
33379
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
33109
33380
|
}
|
|
33110
33381
|
|
|
33111
|
-
.
|
|
33112
|
-
min-width:
|
|
33382
|
+
.E_t1gvlxt5 {
|
|
33383
|
+
min-width: 0;
|
|
33384
|
+
flex: 1;
|
|
33113
33385
|
}
|
|
33114
|
-
.
|
|
33115
|
-
|
|
33386
|
+
.E_t1gvlxt5 .tag {
|
|
33387
|
+
flex: 0 0 auto;
|
|
33116
33388
|
}
|
|
33117
|
-
.
|
|
33118
|
-
flex
|
|
33119
|
-
|
|
33389
|
+
.E_t1gvlxt5 .progress-title {
|
|
33390
|
+
flex: 2;
|
|
33391
|
+
max-width: fit-content;
|
|
33120
33392
|
}
|
|
33121
|
-
.
|
|
33122
|
-
padding: 0;
|
|
33123
|
-
margin-right: 4px;
|
|
33393
|
+
.E_t1gvlxt5 .progress-desc {
|
|
33124
33394
|
flex: 1;
|
|
33125
|
-
|
|
33126
|
-
}
|
|
33127
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
33128
|
-
width: 100%;
|
|
33129
|
-
min-height: unset;
|
|
33395
|
+
max-width: fit-content;
|
|
33130
33396
|
}
|
|
33131
|
-
|
|
33132
|
-
|
|
33133
|
-
|
|
33134
|
-
|
|
33135
|
-
|
|
33136
|
-
font-size: 12px;
|
|
33397
|
+
|
|
33398
|
+
.E_a1ji6r68 {
|
|
33399
|
+
display: flex;
|
|
33400
|
+
align-items: center;
|
|
33401
|
+
column-gap: var(--a1ji6r68-0);
|
|
33137
33402
|
}
|
|
33138
|
-
|
|
33139
|
-
|
|
33403
|
+
|
|
33404
|
+
.E_l1ucdodl {
|
|
33405
|
+
margin: 0;
|
|
33406
|
+
border-radius: 20px;
|
|
33407
|
+
padding: 2px 10px;
|
|
33408
|
+
height: 22px;
|
|
33409
|
+
display: flex;
|
|
33410
|
+
align-items: center;
|
|
33140
33411
|
}
|
|
33141
|
-
.
|
|
33142
|
-
|
|
33412
|
+
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
33413
|
+
color: #FFFFFF;
|
|
33143
33414
|
}
|
|
33144
|
-
.
|
|
33145
|
-
|
|
33146
|
-
padding-right: 4px;
|
|
33147
|
-
border-radius: 4px 0 0 4px;
|
|
33415
|
+
.E_l1ucdodl.tag-hover {
|
|
33416
|
+
cursor: pointer;
|
|
33148
33417
|
}
|
|
33149
|
-
.
|
|
33150
|
-
|
|
33418
|
+
.E_l1ucdodl.ui-kit-status-legend {
|
|
33419
|
+
color: #00122e;
|
|
33151
33420
|
}
|
|
33152
|
-
.
|
|
33153
|
-
|
|
33154
|
-
padding-left: 12px;
|
|
33155
|
-
border-radius: 0 4px 4px 0;
|
|
33421
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
33422
|
+
margin-right: 6px;
|
|
33156
33423
|
}
|
|
33157
|
-
.
|
|
33158
|
-
|
|
33159
|
-
|
|
33160
|
-
height: 0;
|
|
33161
|
-
border: 13px solid transparent;
|
|
33162
|
-
position: absolute;
|
|
33163
|
-
top: 0;
|
|
33164
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
33165
|
-
z-index: 2;
|
|
33166
|
-
position: relative;
|
|
33167
|
-
top: -50%;
|
|
33168
|
-
right: -100%;
|
|
33424
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
33425
|
+
margin-left: 8px;
|
|
33426
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33169
33427
|
}
|
|
33170
|
-
.
|
|
33171
|
-
|
|
33428
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
33429
|
+
color: #FFFFFF;
|
|
33172
33430
|
}
|
|
33173
|
-
.
|
|
33174
|
-
|
|
33175
|
-
width: 0;
|
|
33176
|
-
height: 0;
|
|
33177
|
-
border: 13px solid transparent;
|
|
33178
|
-
position: absolute;
|
|
33179
|
-
top: 0;
|
|
33180
|
-
border-left: 8px solid #fff;
|
|
33181
|
-
left: 0;
|
|
33431
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
33432
|
+
background-color: #0080ff;
|
|
33182
33433
|
}
|
|
33183
|
-
.
|
|
33184
|
-
|
|
33434
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
33435
|
+
background-color: #f0483e;
|
|
33185
33436
|
}
|
|
33186
|
-
.
|
|
33187
|
-
background-color:
|
|
33437
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
33438
|
+
background-color: #fea008;
|
|
33188
33439
|
}
|
|
33189
|
-
.
|
|
33190
|
-
|
|
33440
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
33441
|
+
background-color: #00ba5d;
|
|
33191
33442
|
}
|
|
33192
|
-
.
|
|
33193
|
-
|
|
33194
|
-
min-width: var(--item-min-width);
|
|
33443
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
33444
|
+
background-color: #6b7d99;
|
|
33195
33445
|
}
|
|
33196
|
-
.
|
|
33197
|
-
|
|
33198
|
-
min-width: var(--item-min-width);
|
|
33446
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
33447
|
+
background-color: #7E41FF;
|
|
33199
33448
|
}
|
|
33200
|
-
|
|
33201
|
-
.
|
|
33202
|
-
|
|
33449
|
+
|
|
33450
|
+
.E_s1qj66nc {
|
|
33451
|
+
width: 8px;
|
|
33452
|
+
height: 8px;
|
|
33453
|
+
border-radius: 50%;
|
|
33454
|
+
display: inline-block;
|
|
33203
33455
|
}
|
|
33204
|
-
|
|
33205
|
-
|
|
33456
|
+
|
|
33457
|
+
.E_s5x1boq {
|
|
33458
|
+
width: 8px;
|
|
33459
|
+
height: 8px;
|
|
33460
|
+
border-radius: 2px;
|
|
33461
|
+
display: inline-block;
|
|
33206
33462
|
}
|
|
33207
33463
|
|
|
33208
|
-
.
|
|
33209
|
-
|
|
33210
|
-
row-gap: 2px;
|
|
33464
|
+
.E_c1xm185 {
|
|
33465
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33211
33466
|
}
|
|
33212
|
-
|
|
33213
|
-
|
|
33467
|
+
|
|
33468
|
+
.E_c1x5l5qc {
|
|
33469
|
+
flex: 1;
|
|
33214
33470
|
}
|
|
33215
|
-
|
|
33216
|
-
|
|
33471
|
+
|
|
33472
|
+
button.E_l48ei06.ant-btn,
|
|
33473
|
+
button.E_l48ei06.ant-btn.ant-btn-sm,
|
|
33474
|
+
button.E_l48ei06.ant-btn.ant-btn-lg {
|
|
33475
|
+
font-size: 12px;
|
|
33476
|
+
line-height: 18px;
|
|
33477
|
+
height: 18px;
|
|
33217
33478
|
}
|
|
33218
|
-
|
|
33219
|
-
|
|
33479
|
+
|
|
33480
|
+
button.E_l48ei06 {
|
|
33481
|
+
color: #0080FF;
|
|
33482
|
+
height: unset;
|
|
33220
33483
|
}
|
|
33221
|
-
.
|
|
33222
|
-
|
|
33223
|
-
border-radius: 4px;
|
|
33224
|
-
height: 32px;
|
|
33225
|
-
display: flex;
|
|
33226
|
-
align-items: center;
|
|
33484
|
+
button.E_l48ei06 .button-prefix-icon {
|
|
33485
|
+
margin-right: 4px;
|
|
33227
33486
|
}
|
|
33228
|
-
.
|
|
33229
|
-
|
|
33230
|
-
white-space: nowrap;
|
|
33487
|
+
button.E_l48ei06 .button-suffix-icon {
|
|
33488
|
+
margin-left: 4px;
|
|
33231
33489
|
}
|
|
33232
|
-
.
|
|
33233
|
-
|
|
33234
|
-
line-height: 20px;
|
|
33235
|
-
max-width: 100%;
|
|
33236
|
-
padding-right: 0;
|
|
33490
|
+
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
33491
|
+
color: #009DFF;
|
|
33237
33492
|
}
|
|
33238
|
-
.
|
|
33239
|
-
|
|
33493
|
+
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
33494
|
+
color: #005ED1;
|
|
33240
33495
|
}
|
|
33241
|
-
|
|
33242
|
-
|
|
33243
|
-
width: 100%;
|
|
33244
|
-
display: inline-flex;
|
|
33245
|
-
align-items: center;
|
|
33246
|
-
justify-content: center;
|
|
33247
|
-
column-gap: 4px;
|
|
33496
|
+
button.E_l48ei06.ui-kit-link-disabled {
|
|
33497
|
+
color: #0080FF;
|
|
33248
33498
|
}
|
|
33249
|
-
.
|
|
33250
|
-
|
|
33251
|
-
align-items: center;
|
|
33252
|
-
width: 18px;
|
|
33253
|
-
height: 18px;
|
|
33254
|
-
color: rgba(44, 56, 82, 0.75);
|
|
33255
|
-
justify-content: center;
|
|
33499
|
+
button.E_l48ei06.ui-kit-link-primary {
|
|
33500
|
+
color: #00122E;
|
|
33256
33501
|
}
|
|
33257
|
-
|
|
33258
|
-
|
|
33259
|
-
width: 100%;
|
|
33260
|
-
display: flex;
|
|
33261
|
-
align-items: center;
|
|
33262
|
-
justify-content: center;
|
|
33263
|
-
column-gap: 6px;
|
|
33264
|
-
font-size: 13px;
|
|
33502
|
+
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
33503
|
+
color: #0080FF;
|
|
33265
33504
|
}
|
|
33266
|
-
.
|
|
33267
|
-
|
|
33268
|
-
align-items: center;
|
|
33269
|
-
min-width: 20px;
|
|
33270
|
-
min-height: 20px;
|
|
33271
|
-
color: rgba(44, 56, 82, 0.75);
|
|
33272
|
-
justify-content: center;
|
|
33505
|
+
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
33506
|
+
color: #005ED1;
|
|
33273
33507
|
}
|
|
33274
|
-
|
|
33275
|
-
|
|
33276
|
-
width: 64px;
|
|
33277
|
-
height: 64px;
|
|
33278
|
-
display: flex;
|
|
33279
|
-
align-items: center;
|
|
33280
|
-
justify-content: center;
|
|
33281
|
-
position: relative;
|
|
33282
|
-
opacity: 0.2;
|
|
33508
|
+
button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
|
|
33509
|
+
color: #00122E;
|
|
33283
33510
|
}
|
|
33284
|
-
|
|
33285
|
-
.
|
|
33286
|
-
position: absolute;
|
|
33287
|
-
width: 5px;
|
|
33288
|
-
height: 48px;
|
|
33289
|
-
left: 9.33px;
|
|
33290
|
-
top: 40.5px;
|
|
33291
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33292
|
-
border-radius: 5px;
|
|
33293
|
-
transform: rotate(-128deg);
|
|
33294
|
-
transform-origin: top left;
|
|
33295
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
33511
|
+
button.E_l48ei06.ui-kit-link-secondary {
|
|
33512
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
33296
33513
|
}
|
|
33297
|
-
|
|
33298
|
-
|
|
33299
|
-
position: absolute;
|
|
33300
|
-
width: 5px;
|
|
33301
|
-
height: 48px;
|
|
33302
|
-
left: 40.8px;
|
|
33303
|
-
top: 8.4px;
|
|
33304
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33305
|
-
border-radius: 5px;
|
|
33306
|
-
transform: rotate(-8deg);
|
|
33307
|
-
transform-origin: top left;
|
|
33308
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
33514
|
+
button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
|
|
33515
|
+
color: #0080FF;
|
|
33309
33516
|
}
|
|
33310
|
-
|
|
33311
|
-
|
|
33312
|
-
|
|
33313
|
-
|
|
33314
|
-
|
|
33315
|
-
left: 52.9px;
|
|
33316
|
-
top: 51.8px;
|
|
33317
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
33318
|
-
border-radius: 5px;
|
|
33319
|
-
transform: rotate(112deg);
|
|
33320
|
-
transform-origin: top left;
|
|
33321
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
33517
|
+
button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
|
|
33518
|
+
color: #005ED1;
|
|
33519
|
+
}
|
|
33520
|
+
button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
33521
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
33322
33522
|
}
|
|
33323
33523
|
|
|
33324
33524
|
.E_tc97u5y {
|
|
@@ -33672,318 +33872,108 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
33672
33872
|
.E_t1fisho6 div.ant-table td.cell__action_ {
|
|
33673
33873
|
padding: 0 !important;
|
|
33674
33874
|
position: relative;
|
|
33675
|
-
background: #fff;
|
|
33676
|
-
}
|
|
33677
|
-
.E_t1fisho6 div.ant-table td.cell__action_ > * {
|
|
33678
|
-
height: 100%;
|
|
33679
|
-
display: flex;
|
|
33680
|
-
align-items: center;
|
|
33681
|
-
justify-content: flex-end;
|
|
33682
|
-
padding-right: 8px;
|
|
33683
|
-
}
|
|
33684
|
-
.E_t1fisho6 div.ant-table td.cell__action_ .menu-button {
|
|
33685
|
-
width: 24px;
|
|
33686
|
-
height: 24px;
|
|
33687
|
-
cursor: pointer;
|
|
33688
|
-
justify-content: center;
|
|
33689
|
-
border-radius: 4px;
|
|
33690
|
-
}
|
|
33691
|
-
.E_t1fisho6 div.ant-table td.cell__action_ .menu-button:hover {
|
|
33692
|
-
background: #fff;
|
|
33693
|
-
}
|
|
33694
|
-
|
|
33695
|
-
.E_l1ucdodl {
|
|
33696
|
-
margin: 0;
|
|
33697
|
-
border-radius: 20px;
|
|
33698
|
-
padding: 2px 10px;
|
|
33699
|
-
height: 22px;
|
|
33700
|
-
display: flex;
|
|
33701
|
-
align-items: center;
|
|
33702
|
-
}
|
|
33703
|
-
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
33704
|
-
color: #FFFFFF;
|
|
33705
|
-
}
|
|
33706
|
-
.E_l1ucdodl.tag-hover {
|
|
33707
|
-
cursor: pointer;
|
|
33708
|
-
}
|
|
33709
|
-
.E_l1ucdodl.ui-kit-status-legend {
|
|
33710
|
-
color: #00122e;
|
|
33711
|
-
}
|
|
33712
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
33713
|
-
margin-right: 6px;
|
|
33714
|
-
}
|
|
33715
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
33716
|
-
margin-left: 8px;
|
|
33717
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33718
|
-
}
|
|
33719
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
33720
|
-
color: #FFFFFF;
|
|
33721
|
-
}
|
|
33722
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
33723
|
-
background-color: #0080ff;
|
|
33724
|
-
}
|
|
33725
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
33726
|
-
background-color: #f0483e;
|
|
33727
|
-
}
|
|
33728
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
33729
|
-
background-color: #fea008;
|
|
33730
|
-
}
|
|
33731
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
33732
|
-
background-color: #00ba5d;
|
|
33733
|
-
}
|
|
33734
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
33735
|
-
background-color: #6b7d99;
|
|
33736
|
-
}
|
|
33737
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
33738
|
-
background-color: #7E41FF;
|
|
33739
|
-
}
|
|
33740
|
-
|
|
33741
|
-
.E_s1qj66nc {
|
|
33742
|
-
width: 8px;
|
|
33743
|
-
height: 8px;
|
|
33744
|
-
border-radius: 50%;
|
|
33745
|
-
display: inline-block;
|
|
33746
|
-
}
|
|
33747
|
-
|
|
33748
|
-
.E_s5x1boq {
|
|
33749
|
-
width: 8px;
|
|
33750
|
-
height: 8px;
|
|
33751
|
-
border-radius: 2px;
|
|
33752
|
-
display: inline-block;
|
|
33753
|
-
}
|
|
33754
|
-
|
|
33755
|
-
.E_c1xm185 {
|
|
33756
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33757
|
-
}
|
|
33758
|
-
|
|
33759
|
-
.E_c1x5l5qc {
|
|
33760
|
-
flex: 1;
|
|
33761
|
-
}
|
|
33762
|
-
|
|
33763
|
-
.E_t1gvlxt5 {
|
|
33764
|
-
min-width: 0;
|
|
33765
|
-
flex: 1;
|
|
33766
|
-
}
|
|
33767
|
-
.E_t1gvlxt5 .tag {
|
|
33768
|
-
flex: 0 0 auto;
|
|
33769
|
-
}
|
|
33770
|
-
.E_t1gvlxt5 .progress-title {
|
|
33771
|
-
flex: 2;
|
|
33772
|
-
max-width: fit-content;
|
|
33773
|
-
}
|
|
33774
|
-
.E_t1gvlxt5 .progress-desc {
|
|
33775
|
-
flex: 1;
|
|
33776
|
-
max-width: fit-content;
|
|
33777
|
-
}
|
|
33778
|
-
|
|
33779
|
-
.E_a1ji6r68 {
|
|
33780
|
-
display: flex;
|
|
33781
|
-
align-items: center;
|
|
33782
|
-
column-gap: var(--a1ji6r68-0);
|
|
33783
|
-
}
|
|
33784
|
-
|
|
33785
|
-
.E_w7ob4th.outside-tag {
|
|
33786
|
-
padding-left: 0;
|
|
33787
|
-
}
|
|
33788
|
-
.E_w7ob4th.outside-tag .inside-tag {
|
|
33789
|
-
border-radius: 4px 0 0 4px;
|
|
33790
|
-
padding-right: 4px;
|
|
33791
|
-
margin-right: 4px;
|
|
33792
|
-
}
|
|
33793
|
-
|
|
33794
|
-
.E_i1g85yz3 {
|
|
33795
|
-
margin-right: 4px;
|
|
33796
|
-
height: 16px;
|
|
33797
|
-
}
|
|
33798
|
-
|
|
33799
|
-
.E_slr2ynn {
|
|
33800
|
-
padding: 0 8px;
|
|
33801
|
-
height: 18px;
|
|
33802
|
-
}
|
|
33803
|
-
|
|
33804
|
-
.E_m140wbb6 {
|
|
33805
|
-
padding: 2px 8px;
|
|
33806
|
-
height: 24px;
|
|
33807
|
-
}
|
|
33808
|
-
|
|
33809
|
-
.E_t1fozc1i {
|
|
33810
|
-
margin: 0;
|
|
33811
|
-
}
|
|
33812
|
-
|
|
33813
|
-
.E_i1vxv4ln {
|
|
33814
|
-
margin-right: 4px;
|
|
33815
|
-
height: 16px;
|
|
33816
|
-
}
|
|
33817
|
-
|
|
33818
|
-
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
33819
|
-
font-weight: 700;
|
|
33820
|
-
color: #00122e;
|
|
33821
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
33822
|
-
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
33823
|
-
word-break: break-all;
|
|
33824
|
-
display: inline;
|
|
33825
|
-
white-space: normal;
|
|
33826
|
-
}
|
|
33827
|
-
|
|
33828
|
-
.E_msn7nxt {
|
|
33829
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33830
|
-
text-align: center;
|
|
33831
|
-
display: flex;
|
|
33832
|
-
align-items: center;
|
|
33833
|
-
justify-content: center;
|
|
33834
|
-
flex-direction: column;
|
|
33835
|
-
height: 100%;
|
|
33836
|
-
}
|
|
33837
|
-
.E_msn7nxt .link {
|
|
33838
|
-
color: #0080ff;
|
|
33839
|
-
cursor: pointer;
|
|
33840
|
-
}
|
|
33841
|
-
|
|
33842
|
-
.E_mp64wfi {
|
|
33843
|
-
width: 100%;
|
|
33844
|
-
height: 100%;
|
|
33845
|
-
display: flex;
|
|
33846
|
-
flex-direction: column;
|
|
33847
|
-
}
|
|
33848
|
-
.E_mp64wfi .name-toolbar {
|
|
33849
|
-
width: 100%;
|
|
33850
|
-
display: flex;
|
|
33851
|
-
line-height: 30px;
|
|
33852
|
-
padding: 0 16px;
|
|
33853
|
-
justify-content: space-between;
|
|
33875
|
+
background: #fff;
|
|
33854
33876
|
}
|
|
33855
|
-
.
|
|
33877
|
+
.E_t1fisho6 div.ant-table td.cell__action_ > * {
|
|
33878
|
+
height: 100%;
|
|
33856
33879
|
display: flex;
|
|
33857
|
-
font-size: 12px;
|
|
33858
33880
|
align-items: center;
|
|
33881
|
+
justify-content: flex-end;
|
|
33882
|
+
padding-right: 8px;
|
|
33859
33883
|
}
|
|
33860
|
-
.
|
|
33861
|
-
|
|
33862
|
-
|
|
33863
|
-
.E_mp64wfi .name-toolbar .metric-extra .info-item + .info-item {
|
|
33864
|
-
margin-left: 10px;
|
|
33865
|
-
}
|
|
33866
|
-
.E_mp64wfi .name-toolbar .metric-extra .menu-trigger {
|
|
33867
|
-
margin-left: 10px;
|
|
33884
|
+
.E_t1fisho6 div.ant-table td.cell__action_ .menu-button {
|
|
33885
|
+
width: 24px;
|
|
33886
|
+
height: 24px;
|
|
33868
33887
|
cursor: pointer;
|
|
33869
|
-
}
|
|
33870
|
-
.E_mp64wfi .content {
|
|
33871
|
-
flex: 1;
|
|
33872
|
-
width: 100%;
|
|
33873
|
-
display: flex;
|
|
33874
33888
|
justify-content: center;
|
|
33875
|
-
|
|
33889
|
+
border-radius: 4px;
|
|
33876
33890
|
}
|
|
33877
|
-
.
|
|
33878
|
-
|
|
33891
|
+
.E_t1fisho6 div.ant-table td.cell__action_ .menu-button:hover {
|
|
33892
|
+
background: #fff;
|
|
33879
33893
|
}
|
|
33880
33894
|
|
|
33881
|
-
.
|
|
33882
|
-
|
|
33883
|
-
|
|
33884
|
-
|
|
33885
|
-
|
|
33886
|
-
width: 100%;
|
|
33895
|
+
.E_sddwhm6 {
|
|
33896
|
+
margin: 0;
|
|
33897
|
+
border-radius: 20px;
|
|
33898
|
+
padding: 2px 10px;
|
|
33899
|
+
height: 22px;
|
|
33887
33900
|
}
|
|
33888
|
-
.
|
|
33889
|
-
|
|
33890
|
-
font-size: 12px;
|
|
33901
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
33902
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
33891
33903
|
}
|
|
33892
|
-
|
|
33893
|
-
.
|
|
33894
|
-
display: flex;
|
|
33895
|
-
justify-content: flex-start;
|
|
33896
|
-
align-items: center;
|
|
33897
|
-
font-size: 12px;
|
|
33898
|
-
cursor: pointer;
|
|
33904
|
+
.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 {
|
|
33905
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
33899
33906
|
}
|
|
33900
|
-
.
|
|
33901
|
-
|
|
33907
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
33908
|
+
color: #00122e;
|
|
33902
33909
|
}
|
|
33903
|
-
.
|
|
33904
|
-
|
|
33910
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
33911
|
+
margin-right: 6px;
|
|
33905
33912
|
}
|
|
33906
|
-
.
|
|
33907
|
-
|
|
33913
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
33914
|
+
margin-left: 8px;
|
|
33915
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33908
33916
|
}
|
|
33909
|
-
|
|
33910
|
-
.
|
|
33911
|
-
display: inline-block;
|
|
33912
|
-
height: 8px;
|
|
33913
|
-
width: 8px;
|
|
33914
|
-
margin-right: 8px;
|
|
33917
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
33918
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
33915
33919
|
}
|
|
33916
|
-
|
|
33917
|
-
|
|
33918
|
-
display: flex;
|
|
33919
|
-
align-items: center;
|
|
33920
|
-
font-size: 12px;
|
|
33921
|
-
margin: 0;
|
|
33920
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
33921
|
+
background-color: #0080ff;
|
|
33922
33922
|
}
|
|
33923
|
-
|
|
33924
|
-
.
|
|
33925
|
-
position: relative;
|
|
33923
|
+
.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 {
|
|
33924
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
33926
33925
|
}
|
|
33927
|
-
.
|
|
33928
|
-
|
|
33926
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
33927
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
33929
33928
|
}
|
|
33930
|
-
.
|
|
33931
|
-
|
|
33932
|
-
justify-content: space-between;
|
|
33933
|
-
line-height: 30px;
|
|
33934
|
-
margin: 0 16px;
|
|
33929
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
33930
|
+
background-color: #f0483e;
|
|
33935
33931
|
}
|
|
33936
|
-
.
|
|
33937
|
-
|
|
33938
|
-
font-size: 12px;
|
|
33939
|
-
align-items: center;
|
|
33932
|
+
.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 {
|
|
33933
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
33940
33934
|
}
|
|
33941
|
-
.
|
|
33942
|
-
color:
|
|
33935
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
33936
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
33943
33937
|
}
|
|
33944
|
-
.
|
|
33945
|
-
|
|
33938
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
33939
|
+
background-color: #fea008;
|
|
33946
33940
|
}
|
|
33947
|
-
.
|
|
33948
|
-
|
|
33949
|
-
cursor: pointer;
|
|
33941
|
+
.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 {
|
|
33942
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
33950
33943
|
}
|
|
33951
|
-
.
|
|
33952
|
-
|
|
33944
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
33945
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
33953
33946
|
}
|
|
33954
|
-
.
|
|
33955
|
-
|
|
33956
|
-
bottom: 10px;
|
|
33957
|
-
padding: 0 8px;
|
|
33958
|
-
border-radius: 4px;
|
|
33959
|
-
font-size: 12px;
|
|
33960
|
-
color: #fff;
|
|
33961
|
-
background: rgba(0, 0, 0, 0.75);
|
|
33962
|
-
transform: translateX(-50%);
|
|
33947
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
33948
|
+
background-color: #00ba5d;
|
|
33963
33949
|
}
|
|
33964
|
-
|
|
33965
|
-
.
|
|
33966
|
-
min-width: 200px;
|
|
33950
|
+
.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 {
|
|
33951
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
33967
33952
|
}
|
|
33968
|
-
|
|
33969
|
-
.
|
|
33970
|
-
display: flex;
|
|
33971
|
-
align-items: center;
|
|
33972
|
-
justify-content: space-between;
|
|
33973
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
33974
|
-
color: #b4beca;
|
|
33975
|
-
font-size: 12px;
|
|
33976
|
-
padding: 3px 6px;
|
|
33953
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
33954
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
33977
33955
|
}
|
|
33978
|
-
.
|
|
33979
|
-
|
|
33956
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
33957
|
+
background-color: #6b7d99;
|
|
33980
33958
|
}
|
|
33981
|
-
.
|
|
33982
|
-
|
|
33959
|
+
.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 {
|
|
33960
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
33983
33961
|
}
|
|
33984
|
-
|
|
33985
|
-
|
|
33986
|
-
|
|
33962
|
+
|
|
33963
|
+
.E_satwmqm {
|
|
33964
|
+
width: 8px;
|
|
33965
|
+
height: 8px;
|
|
33966
|
+
border-radius: 50%;
|
|
33967
|
+
display: inline-block;
|
|
33968
|
+
}
|
|
33969
|
+
|
|
33970
|
+
.E_w7ob4th.outside-tag {
|
|
33971
|
+
padding-left: 0;
|
|
33972
|
+
}
|
|
33973
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
33974
|
+
border-radius: 4px 0 0 4px;
|
|
33975
|
+
padding-right: 4px;
|
|
33976
|
+
margin-right: 4px;
|
|
33987
33977
|
}
|
|
33988
33978
|
|
|
33989
33979
|
.E_t1dtlqs1 {
|
|
@@ -34182,209 +34172,260 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34182
34172
|
margin-right: 8px;
|
|
34183
34173
|
}
|
|
34184
34174
|
|
|
34185
|
-
.
|
|
34186
|
-
|
|
34187
|
-
|
|
34188
|
-
display: flex;
|
|
34189
|
-
align-items: center;
|
|
34190
|
-
justify-content: center;
|
|
34191
|
-
flex-direction: column;
|
|
34192
|
-
height: 100%;
|
|
34175
|
+
.E_slr2ynn {
|
|
34176
|
+
padding: 0 8px;
|
|
34177
|
+
height: 18px;
|
|
34193
34178
|
}
|
|
34194
|
-
|
|
34195
|
-
|
|
34196
|
-
|
|
34179
|
+
|
|
34180
|
+
.E_m140wbb6 {
|
|
34181
|
+
padding: 2px 8px;
|
|
34182
|
+
height: 24px;
|
|
34197
34183
|
}
|
|
34198
34184
|
|
|
34199
|
-
.
|
|
34200
|
-
|
|
34201
|
-
height: 100%;
|
|
34202
|
-
display: flex;
|
|
34203
|
-
flex-direction: column;
|
|
34185
|
+
.E_t1fozc1i {
|
|
34186
|
+
margin: 0;
|
|
34204
34187
|
}
|
|
34205
|
-
|
|
34206
|
-
|
|
34207
|
-
|
|
34208
|
-
|
|
34209
|
-
justify-content: space-between;
|
|
34188
|
+
|
|
34189
|
+
.E_i1vxv4ln {
|
|
34190
|
+
margin-right: 4px;
|
|
34191
|
+
height: 16px;
|
|
34210
34192
|
}
|
|
34211
|
-
|
|
34212
|
-
|
|
34213
|
-
font-
|
|
34214
|
-
|
|
34193
|
+
|
|
34194
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
34195
|
+
font-weight: 700;
|
|
34196
|
+
color: #00122e;
|
|
34197
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
34198
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
34199
|
+
word-break: break-all;
|
|
34200
|
+
display: inline;
|
|
34201
|
+
white-space: normal;
|
|
34215
34202
|
}
|
|
34216
|
-
|
|
34217
|
-
|
|
34203
|
+
|
|
34204
|
+
.E_sjob3jg {
|
|
34205
|
+
--item-min-width: 60px;
|
|
34206
|
+
}
|
|
34207
|
+
.E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
|
|
34208
|
+
display: none !important;
|
|
34209
|
+
}
|
|
34210
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active {
|
|
34211
|
+
flex-shrink: 0 !important;
|
|
34212
|
+
}
|
|
34213
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
34214
|
+
color: #0080ff;
|
|
34215
|
+
}
|
|
34216
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
34217
|
+
color: #0080ff;
|
|
34218
|
+
font-weight: normal;
|
|
34219
|
+
}
|
|
34220
|
+
.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 {
|
|
34221
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34222
|
+
}
|
|
34223
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
34224
|
+
color: #00122e;
|
|
34225
|
+
}
|
|
34226
|
+
.E_sjob3jg .step-item-text {
|
|
34227
|
+
display: inline-block;
|
|
34228
|
+
}
|
|
34229
|
+
.E_sjob3jg .step-item-title {
|
|
34230
|
+
overflow: hidden;
|
|
34231
|
+
white-space: nowrap;
|
|
34232
|
+
text-overflow: ellipsis;
|
|
34233
|
+
}
|
|
34234
|
+
|
|
34235
|
+
.E_hjvj6s6 .ant-steps-item-container {
|
|
34236
|
+
min-width: var(--item-min-width);
|
|
34218
34237
|
}
|
|
34219
|
-
.
|
|
34220
|
-
|
|
34238
|
+
.E_hjvj6s6 .ant-steps-item-disabled {
|
|
34239
|
+
cursor: not-allowed !important;
|
|
34221
34240
|
}
|
|
34222
|
-
.
|
|
34223
|
-
|
|
34224
|
-
|
|
34241
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
34242
|
+
flex-direction: row;
|
|
34243
|
+
justify-content: stretch;
|
|
34225
34244
|
}
|
|
34226
|
-
.
|
|
34245
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
34246
|
+
padding: 0;
|
|
34247
|
+
margin-right: 4px;
|
|
34227
34248
|
flex: 1;
|
|
34228
|
-
|
|
34229
|
-
display: flex;
|
|
34230
|
-
justify-content: center;
|
|
34231
|
-
align-items: center;
|
|
34232
|
-
}
|
|
34233
|
-
.E_mn7joto .single-content {
|
|
34234
|
-
height: 65px;
|
|
34249
|
+
overflow: visible;
|
|
34235
34250
|
}
|
|
34236
|
-
|
|
34237
|
-
.E_l1bifhon {
|
|
34238
|
-
display: flex;
|
|
34239
|
-
align-items: center;
|
|
34240
|
-
white-space: nowrap;
|
|
34241
|
-
overflow: hidden;
|
|
34251
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
34242
34252
|
width: 100%;
|
|
34253
|
+
min-height: unset;
|
|
34243
34254
|
}
|
|
34244
|
-
.
|
|
34255
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
34256
|
+
height: 26px;
|
|
34257
|
+
line-height: 26px;
|
|
34258
|
+
width: 100%;
|
|
34259
|
+
padding: 0;
|
|
34245
34260
|
font-size: 12px;
|
|
34246
|
-
margin-left: 8px;
|
|
34247
34261
|
}
|
|
34248
|
-
|
|
34249
|
-
|
|
34250
|
-
display: flex;
|
|
34251
|
-
justify-content: flex-start;
|
|
34252
|
-
align-items: center;
|
|
34253
|
-
font-size: 12px;
|
|
34254
|
-
cursor: pointer;
|
|
34262
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
34263
|
+
margin-right: 10px;
|
|
34255
34264
|
}
|
|
34256
|
-
.
|
|
34257
|
-
|
|
34265
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
34266
|
+
display: none;
|
|
34258
34267
|
}
|
|
34259
|
-
.
|
|
34260
|
-
|
|
34268
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
34269
|
+
padding-left: 8px;
|
|
34270
|
+
padding-right: 4px;
|
|
34271
|
+
border-radius: 4px 0 0 4px;
|
|
34261
34272
|
}
|
|
34262
|
-
.
|
|
34263
|
-
|
|
34264
|
-
border-radius: 2px;
|
|
34273
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
34274
|
+
margin-right: 0;
|
|
34265
34275
|
}
|
|
34266
|
-
.
|
|
34267
|
-
|
|
34276
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
34277
|
+
padding-right: 8px;
|
|
34278
|
+
padding-left: 12px;
|
|
34279
|
+
border-radius: 0 4px 4px 0;
|
|
34268
34280
|
}
|
|
34269
|
-
.
|
|
34270
|
-
|
|
34281
|
+
.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 {
|
|
34282
|
+
content: "";
|
|
34283
|
+
width: 0;
|
|
34284
|
+
height: 0;
|
|
34285
|
+
border: 13px solid transparent;
|
|
34286
|
+
position: absolute;
|
|
34287
|
+
top: 0;
|
|
34288
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
34289
|
+
z-index: 2;
|
|
34290
|
+
position: relative;
|
|
34291
|
+
top: -50%;
|
|
34292
|
+
right: -100%;
|
|
34271
34293
|
}
|
|
34272
|
-
.
|
|
34273
|
-
|
|
34294
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
34295
|
+
padding: 0 4px 0 12px;
|
|
34274
34296
|
}
|
|
34275
|
-
|
|
34276
|
-
|
|
34277
|
-
|
|
34278
|
-
|
|
34279
|
-
|
|
34280
|
-
|
|
34281
|
-
|
|
34297
|
+
.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 {
|
|
34298
|
+
content: "";
|
|
34299
|
+
width: 0;
|
|
34300
|
+
height: 0;
|
|
34301
|
+
border: 13px solid transparent;
|
|
34302
|
+
position: absolute;
|
|
34303
|
+
top: 0;
|
|
34304
|
+
border-left: 8px solid #fff;
|
|
34305
|
+
left: 0;
|
|
34282
34306
|
}
|
|
34283
|
-
.
|
|
34284
|
-
|
|
34307
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
34308
|
+
max-width: calc(100% - var(--item-min-width) * 2);
|
|
34285
34309
|
}
|
|
34286
|
-
.
|
|
34287
|
-
background:
|
|
34288
|
-
border-radius: 2px;
|
|
34310
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
34311
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
34289
34312
|
}
|
|
34290
|
-
.
|
|
34291
|
-
color:
|
|
34313
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
34314
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
34292
34315
|
}
|
|
34293
|
-
.
|
|
34294
|
-
|
|
34316
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
34317
|
+
cursor: pointer;
|
|
34318
|
+
min-width: var(--item-min-width);
|
|
34295
34319
|
}
|
|
34296
|
-
|
|
34297
|
-
.
|
|
34298
|
-
|
|
34299
|
-
height: 8px;
|
|
34300
|
-
width: 8px;
|
|
34301
|
-
margin-right: 6px;
|
|
34302
|
-
border-radius: 2px;
|
|
34320
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
34321
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
34322
|
+
min-width: var(--item-min-width);
|
|
34303
34323
|
}
|
|
34304
|
-
|
|
34305
|
-
.
|
|
34306
|
-
|
|
34307
|
-
|
|
34308
|
-
|
|
34309
|
-
|
|
34324
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
34325
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
34326
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
34327
|
+
}
|
|
34328
|
+
.E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
34329
|
+
padding: 0;
|
|
34310
34330
|
}
|
|
34311
34331
|
|
|
34312
|
-
.
|
|
34313
|
-
|
|
34332
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical {
|
|
34333
|
+
width: 192px;
|
|
34334
|
+
row-gap: 2px;
|
|
34314
34335
|
}
|
|
34315
|
-
.
|
|
34316
|
-
|
|
34336
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
|
|
34337
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
34317
34338
|
}
|
|
34318
|
-
.
|
|
34319
|
-
|
|
34320
|
-
justify-content: space-between;
|
|
34321
|
-
line-height: 30px;
|
|
34339
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
|
|
34340
|
+
color: #00122e !important;
|
|
34322
34341
|
}
|
|
34323
|
-
.
|
|
34342
|
+
.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 {
|
|
34343
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
34344
|
+
}
|
|
34345
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
|
|
34346
|
+
padding: 0 8px;
|
|
34347
|
+
border-radius: 4px;
|
|
34348
|
+
height: 32px;
|
|
34324
34349
|
display: flex;
|
|
34325
|
-
flex-shrink: 0;
|
|
34326
|
-
font-size: 12px;
|
|
34327
34350
|
align-items: center;
|
|
34328
34351
|
}
|
|
34329
|
-
.
|
|
34330
|
-
|
|
34331
|
-
|
|
34332
|
-
.E_lqeaosa .metric-toolbar .metric-extra .info-item + .info-item {
|
|
34333
|
-
margin-left: 10px;
|
|
34334
|
-
}
|
|
34335
|
-
.E_lqeaosa .metric-toolbar .metric-extra .menu-trigger {
|
|
34336
|
-
margin-left: 10px;
|
|
34337
|
-
cursor: pointer;
|
|
34352
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
34353
|
+
min-height: auto;
|
|
34354
|
+
white-space: nowrap;
|
|
34338
34355
|
}
|
|
34339
|
-
.
|
|
34340
|
-
font-size:
|
|
34356
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
34357
|
+
font-size: 13px;
|
|
34358
|
+
line-height: 20px;
|
|
34359
|
+
max-width: 100%;
|
|
34360
|
+
padding-right: 0;
|
|
34341
34361
|
}
|
|
34342
|
-
.
|
|
34343
|
-
|
|
34344
|
-
bottom: 10px;
|
|
34345
|
-
padding: 0 8px;
|
|
34346
|
-
font-size: 12px;
|
|
34347
|
-
color: #fff;
|
|
34348
|
-
transform: translateX(-50%);
|
|
34362
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
|
|
34363
|
+
background: rgba(0, 128, 255, 0.1);
|
|
34349
34364
|
}
|
|
34350
34365
|
|
|
34351
|
-
.
|
|
34352
|
-
|
|
34353
|
-
|
|
34354
|
-
|
|
34355
|
-
|
|
34356
|
-
|
|
34366
|
+
.E_h6l1tj4 {
|
|
34367
|
+
width: 100%;
|
|
34368
|
+
display: inline-flex;
|
|
34369
|
+
align-items: center;
|
|
34370
|
+
justify-content: center;
|
|
34371
|
+
column-gap: 4px;
|
|
34372
|
+
}
|
|
34373
|
+
.E_h6l1tj4 .step-item-prefix-container {
|
|
34374
|
+
display: inline-flex;
|
|
34375
|
+
align-items: center;
|
|
34376
|
+
width: 18px;
|
|
34377
|
+
height: 18px;
|
|
34378
|
+
color: rgba(44, 56, 82, 0.75);
|
|
34379
|
+
justify-content: center;
|
|
34357
34380
|
}
|
|
34358
34381
|
|
|
34359
|
-
.
|
|
34382
|
+
.E_v18frne8 {
|
|
34383
|
+
width: 100%;
|
|
34360
34384
|
display: flex;
|
|
34361
34385
|
align-items: center;
|
|
34362
|
-
|
|
34363
|
-
|
|
34364
|
-
|
|
34365
|
-
font-size: 12px;
|
|
34366
|
-
padding-top: 6px;
|
|
34386
|
+
justify-content: center;
|
|
34387
|
+
column-gap: 6px;
|
|
34388
|
+
font-size: 13px;
|
|
34367
34389
|
}
|
|
34368
|
-
.
|
|
34369
|
-
|
|
34390
|
+
.E_v18frne8 .step-item-prefix-container {
|
|
34391
|
+
display: inline-flex;
|
|
34392
|
+
align-items: center;
|
|
34393
|
+
min-width: 20px;
|
|
34394
|
+
min-height: 20px;
|
|
34395
|
+
color: rgba(44, 56, 82, 0.75);
|
|
34396
|
+
justify-content: center;
|
|
34370
34397
|
}
|
|
34371
|
-
|
|
34372
|
-
|
|
34398
|
+
|
|
34399
|
+
.E_i1g85yz3 {
|
|
34400
|
+
margin-right: 4px;
|
|
34401
|
+
height: 16px;
|
|
34373
34402
|
}
|
|
34374
|
-
|
|
34403
|
+
|
|
34404
|
+
.E_bpgac8u {
|
|
34375
34405
|
color: #FFFFFF;
|
|
34376
|
-
|
|
34406
|
+
display: flex;
|
|
34407
|
+
gap: 8px;
|
|
34408
|
+
padding: 8px 0;
|
|
34409
|
+
display: flex;
|
|
34410
|
+
justify-content: center;
|
|
34411
|
+
white-space: pre-wrap;
|
|
34412
|
+
align-items: center;
|
|
34413
|
+
}
|
|
34414
|
+
.E_bpgac8u .dashed-btn {
|
|
34415
|
+
border-bottom: 1px solid white;
|
|
34416
|
+
cursor: pointer;
|
|
34377
34417
|
}
|
|
34378
34418
|
|
|
34379
|
-
.
|
|
34380
|
-
|
|
34381
|
-
height: 8px;
|
|
34382
|
-
width: 8px;
|
|
34383
|
-
margin-right: 8px;
|
|
34384
|
-
border-radius: 2px;
|
|
34419
|
+
.E_envn4g3 {
|
|
34420
|
+
background: #F0483E;
|
|
34385
34421
|
}
|
|
34386
|
-
|
|
34387
|
-
|
|
34422
|
+
|
|
34423
|
+
.E_i12w18eu {
|
|
34424
|
+
background: #0080FF;
|
|
34425
|
+
}
|
|
34426
|
+
|
|
34427
|
+
.E_wujsnt4 {
|
|
34428
|
+
background-color: #E07F00;
|
|
34388
34429
|
}
|
|
34389
34430
|
|
|
34390
34431
|
.E_t13ef470 {
|
|
@@ -34417,31 +34458,8 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34417
34458
|
background: rgba(163, 180, 204, 0.18);
|
|
34418
34459
|
}
|
|
34419
34460
|
|
|
34420
|
-
.
|
|
34421
|
-
color: #
|
|
34422
|
-
display: flex;
|
|
34423
|
-
gap: 8px;
|
|
34424
|
-
padding: 8px 0;
|
|
34425
|
-
display: flex;
|
|
34426
|
-
justify-content: center;
|
|
34427
|
-
white-space: pre-wrap;
|
|
34428
|
-
align-items: center;
|
|
34429
|
-
}
|
|
34430
|
-
.E_bpgac8u .dashed-btn {
|
|
34431
|
-
border-bottom: 1px solid white;
|
|
34432
|
-
cursor: pointer;
|
|
34433
|
-
}
|
|
34434
|
-
|
|
34435
|
-
.E_envn4g3 {
|
|
34436
|
-
background: #F0483E;
|
|
34437
|
-
}
|
|
34438
|
-
|
|
34439
|
-
.E_i12w18eu {
|
|
34440
|
-
background: #0080FF;
|
|
34441
|
-
}
|
|
34442
|
-
|
|
34443
|
-
.E_wujsnt4 {
|
|
34444
|
-
background-color: #E07F00;
|
|
34461
|
+
.E_b1jaupqb {
|
|
34462
|
+
color: #F0483E;
|
|
34445
34463
|
}
|
|
34446
34464
|
|
|
34447
34465
|
.E_t59qhqp {
|
|
@@ -34492,10 +34510,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34492
34510
|
color: #00122E;
|
|
34493
34511
|
}
|
|
34494
34512
|
|
|
34495
|
-
.E_b1jaupqb {
|
|
34496
|
-
color: #F0483E;
|
|
34497
|
-
}
|
|
34498
|
-
|
|
34499
34513
|
.E_s20iney.skeleton-box {
|
|
34500
34514
|
display: flex;
|
|
34501
34515
|
align-items: center;
|
|
@@ -34525,6 +34539,102 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34525
34539
|
}
|
|
34526
34540
|
}
|
|
34527
34541
|
|
|
34542
|
+
.E_dxyv8bv {
|
|
34543
|
+
--footer-height: 80px;
|
|
34544
|
+
--header-height: 56px;
|
|
34545
|
+
--modal-content-width: 492px;
|
|
34546
|
+
--modal-content-min-height: 160px;
|
|
34547
|
+
--modal-content-max-height: calc(
|
|
34548
|
+
100vh - 144px - var(--header-height) - var(--footer-height)
|
|
34549
|
+
);
|
|
34550
|
+
--modal-header-padding: 32px 40px 0;
|
|
34551
|
+
--modal-content-padding-y: 32px;
|
|
34552
|
+
--modal-content-padding-x: 40px;
|
|
34553
|
+
--modal-footer-padding: 0 40px;
|
|
34554
|
+
}
|
|
34555
|
+
.E_dxyv8bv .ant-modal-content {
|
|
34556
|
+
background: #fff;
|
|
34557
|
+
border-radius: 16px;
|
|
34558
|
+
max-width: var(--modal-content-width);
|
|
34559
|
+
min-width: var(--modal-content-width);
|
|
34560
|
+
}
|
|
34561
|
+
.E_dxyv8bv .ant-modal-header {
|
|
34562
|
+
padding: var(--modal-header-padding);
|
|
34563
|
+
height: var(--header-height);
|
|
34564
|
+
border-bottom: none;
|
|
34565
|
+
border-radius: 16px 16px 0 0;
|
|
34566
|
+
}
|
|
34567
|
+
.E_dxyv8bv .ant-modal-header .ant-modal-title {
|
|
34568
|
+
color: #00122E;
|
|
34569
|
+
}
|
|
34570
|
+
.E_dxyv8bv .ant-modal-close {
|
|
34571
|
+
right: 48px;
|
|
34572
|
+
top: 24px;
|
|
34573
|
+
}
|
|
34574
|
+
.E_dxyv8bv .ant-modal-body {
|
|
34575
|
+
padding: var(--modal-content-padding-y) var(--modal-content-padding-x);
|
|
34576
|
+
padding-right: calc(var(--modal-content-padding-x) - 6px);
|
|
34577
|
+
min-height: var(--modal-content-min-height);
|
|
34578
|
+
max-height: var(--modal-content-max-height);
|
|
34579
|
+
overflow-y: auto;
|
|
34580
|
+
overflow-x: hidden;
|
|
34581
|
+
scrollbar-gutter: stable;
|
|
34582
|
+
}
|
|
34583
|
+
.E_dxyv8bv .ant-modal-body::-webkit-scrollbar {
|
|
34584
|
+
width: 6px;
|
|
34585
|
+
}
|
|
34586
|
+
.E_dxyv8bv .ant-modal-body::-webkit-scrollbar-track {
|
|
34587
|
+
background: rgba(225, 230, 241, 0.6);
|
|
34588
|
+
}
|
|
34589
|
+
.E_dxyv8bv .ant-modal-body::-webkit-scrollbar-thumb {
|
|
34590
|
+
background: rgba(172, 186, 211, 0.6);
|
|
34591
|
+
border-radius: 8px;
|
|
34592
|
+
}
|
|
34593
|
+
.E_dxyv8bv .ant-modal-footer {
|
|
34594
|
+
height: var(--footer-height);
|
|
34595
|
+
padding: var(--modal-footer-padding);
|
|
34596
|
+
margin-top: 0;
|
|
34597
|
+
border-top: none;
|
|
34598
|
+
box-shadow: 0px 1px 0px 0px rgba(225, 230, 241, 0.6) inset;
|
|
34599
|
+
}
|
|
34600
|
+
.E_dxyv8bv .ant-modal-footer .ant-btn-quiet {
|
|
34601
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
34602
|
+
font-weight: 700;
|
|
34603
|
+
}
|
|
34604
|
+
|
|
34605
|
+
.E_fbgo4wr {
|
|
34606
|
+
display: flex;
|
|
34607
|
+
gap: 16px;
|
|
34608
|
+
height: 100%;
|
|
34609
|
+
align-items: center;
|
|
34610
|
+
justify-content: flex-end;
|
|
34611
|
+
}
|
|
34612
|
+
.E_fbgo4wr.has-error {
|
|
34613
|
+
justify-content: space-between;
|
|
34614
|
+
}
|
|
34615
|
+
|
|
34616
|
+
.E_ekxnz54 {
|
|
34617
|
+
color: #F0483E;
|
|
34618
|
+
text-align: left;
|
|
34619
|
+
}
|
|
34620
|
+
.E_ekxnz54 .icon-wrapper {
|
|
34621
|
+
align-self: baseline;
|
|
34622
|
+
padding-top: 2px;
|
|
34623
|
+
}
|
|
34624
|
+
|
|
34625
|
+
.E_ct1041x {
|
|
34626
|
+
padding: 8px;
|
|
34627
|
+
border-radius: 50%;
|
|
34628
|
+
}
|
|
34629
|
+
.E_ct1041x:hover {
|
|
34630
|
+
background: rgba(225, 230, 241, 0.6);
|
|
34631
|
+
transition: 0.3s ease-out;
|
|
34632
|
+
}
|
|
34633
|
+
|
|
34634
|
+
.E_t1616y1o {
|
|
34635
|
+
color: #fff;
|
|
34636
|
+
}
|
|
34637
|
+
|
|
34528
34638
|
.E_t1g36k2w {
|
|
34529
34639
|
overflow: hidden;
|
|
34530
34640
|
height: 100%;
|
|
@@ -34554,8 +34664,13 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34554
34664
|
background: rgba(225, 230, 241, 0.6);
|
|
34555
34665
|
}
|
|
34556
34666
|
|
|
34557
|
-
.
|
|
34558
|
-
|
|
34667
|
+
.E_a9y3flr {
|
|
34668
|
+
margin-left: 8px;
|
|
34669
|
+
}
|
|
34670
|
+
|
|
34671
|
+
.E_a1njc627 {
|
|
34672
|
+
font-size: 12px;
|
|
34673
|
+
color: #00122e;
|
|
34559
34674
|
}
|
|
34560
34675
|
|
|
34561
34676
|
.E_f16blduf.ant-form-item {
|
|
@@ -34577,15 +34692,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34577
34692
|
display: block;
|
|
34578
34693
|
}
|
|
34579
34694
|
|
|
34580
|
-
.E_a9y3flr {
|
|
34581
|
-
margin-left: 8px;
|
|
34582
|
-
}
|
|
34583
|
-
|
|
34584
|
-
.E_a1njc627 {
|
|
34585
|
-
font-size: 12px;
|
|
34586
|
-
color: #00122e;
|
|
34587
|
-
}
|
|
34588
|
-
|
|
34589
34695
|
.E_i14c7jc8 {
|
|
34590
34696
|
color: var(--i14c7jc8-0);
|
|
34591
34697
|
}
|
|
@@ -34629,19 +34735,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34629
34735
|
}
|
|
34630
34736
|
}
|
|
34631
34737
|
|
|
34632
|
-
.E_skwah65 {
|
|
34633
|
-
height: 8px;
|
|
34634
|
-
box-sizing: border-box;
|
|
34635
|
-
border-radius: 2px;
|
|
34636
|
-
background: #f5f7fa;
|
|
34637
|
-
display: flex;
|
|
34638
|
-
width: 100%;
|
|
34639
|
-
overflow: hidden;
|
|
34640
|
-
}
|
|
34641
|
-
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
34642
|
-
margin-left: 1px;
|
|
34643
|
-
}
|
|
34644
|
-
|
|
34645
34738
|
.E_s1ebs0ra {
|
|
34646
34739
|
display: flex;
|
|
34647
34740
|
align-items: center;
|
|
@@ -34692,15 +34785,158 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34692
34785
|
.E_s1ebs0ra .action-group > button:last-child {
|
|
34693
34786
|
margin-right: 4px;
|
|
34694
34787
|
}
|
|
34695
|
-
.E_s1ebs0ra .action-group .more-btn {
|
|
34788
|
+
.E_s1ebs0ra .action-group .more-btn {
|
|
34789
|
+
cursor: pointer;
|
|
34790
|
+
width: 32px;
|
|
34791
|
+
height: 32px;
|
|
34792
|
+
justify-content: center;
|
|
34793
|
+
border-radius: 50%;
|
|
34794
|
+
}
|
|
34795
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
34796
|
+
background: #fff;
|
|
34797
|
+
}
|
|
34798
|
+
|
|
34799
|
+
.E_c18bcrac {
|
|
34800
|
+
display: inline-block;
|
|
34801
|
+
width: 100%;
|
|
34802
|
+
}
|
|
34803
|
+
.E_c18bcrac .recharts-wrapper {
|
|
34804
|
+
margin-left: 4px;
|
|
34805
|
+
}
|
|
34806
|
+
|
|
34807
|
+
.E_cro7kg2 {
|
|
34808
|
+
padding: 4px;
|
|
34809
|
+
}
|
|
34810
|
+
.E_cro7kg2 .unit {
|
|
34811
|
+
color: white;
|
|
34812
|
+
}
|
|
34813
|
+
|
|
34814
|
+
.E_c14wcxf0 {
|
|
34815
|
+
display: flex;
|
|
34816
|
+
justify-content: space-between;
|
|
34817
|
+
align-items: center;
|
|
34818
|
+
font-size: 13px;
|
|
34819
|
+
line-height: 24px;
|
|
34820
|
+
color: #cccccc;
|
|
34821
|
+
white-space: nowrap;
|
|
34822
|
+
}
|
|
34823
|
+
.E_c14wcxf0 label {
|
|
34824
|
+
margin-right: 32px;
|
|
34825
|
+
}
|
|
34826
|
+
|
|
34827
|
+
.E_coy29mj.E_c14wcxf0 {
|
|
34828
|
+
font-weight: bold;
|
|
34829
|
+
color: white;
|
|
34830
|
+
}
|
|
34831
|
+
|
|
34832
|
+
.E_s11212zy {
|
|
34833
|
+
width: 8px;
|
|
34834
|
+
height: 8px;
|
|
34835
|
+
border-radius: 2px;
|
|
34836
|
+
display: inline-block;
|
|
34837
|
+
background: var(--s11212zy-0);
|
|
34838
|
+
border: 1px solid #fff;
|
|
34839
|
+
box-sizing: content-box;
|
|
34840
|
+
margin-right: 6px;
|
|
34841
|
+
}
|
|
34842
|
+
|
|
34843
|
+
.E_p1lyky6c > :first-child {
|
|
34844
|
+
font-weight: bold;
|
|
34845
|
+
color: white;
|
|
34846
|
+
margin-right: 4px;
|
|
34847
|
+
}
|
|
34848
|
+
|
|
34849
|
+
.E_clm1wy1 {
|
|
34850
|
+
width: 192px;
|
|
34851
|
+
height: 246px;
|
|
34852
|
+
border-radius: 4px;
|
|
34853
|
+
}
|
|
34854
|
+
.E_clm1wy1 > .ant-picker-calendar,
|
|
34855
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
34856
|
+
width: 100%;
|
|
34857
|
+
background-color: rgba(245, 247, 250, 0.6);
|
|
34858
|
+
border-top: none;
|
|
34859
|
+
}
|
|
34860
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
34861
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
34862
|
+
padding: 0 16px;
|
|
34863
|
+
}
|
|
34864
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
34865
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
34866
|
+
width: 100%;
|
|
34867
|
+
height: 180px;
|
|
34868
|
+
border-spacing: 0;
|
|
34869
|
+
}
|
|
34870
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
34871
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
34872
|
+
margin-bottom: 8px;
|
|
34873
|
+
}
|
|
34874
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
34875
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
34876
|
+
width: 22px;
|
|
34877
|
+
}
|
|
34878
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
34879
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
34880
|
+
padding: 0;
|
|
34881
|
+
}
|
|
34882
|
+
.E_clm1wy1 .ant-picker-cell {
|
|
34883
|
+
color: rgba(62, 70, 82, 0.6);
|
|
34884
|
+
opacity: 0.4;
|
|
34885
|
+
}
|
|
34886
|
+
.E_clm1wy1 .ant-picker-cell-in-view {
|
|
34887
|
+
color: rgba(62, 70, 82, 0.6);
|
|
34888
|
+
opacity: 1;
|
|
34889
|
+
}
|
|
34890
|
+
.E_clm1wy1 .ant-picker-cell-in-view > .active {
|
|
34891
|
+
color: #3e4652;
|
|
34892
|
+
}
|
|
34893
|
+
.E_clm1wy1 .ant-picker-cell::before {
|
|
34894
|
+
pointer-events: none;
|
|
34895
|
+
}
|
|
34896
|
+
|
|
34897
|
+
.E_t1tsm00v {
|
|
34898
|
+
color: rgba(129, 138, 153, 0.6);
|
|
34899
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
34900
|
+
backdrop-filter: blur(10px);
|
|
34901
|
+
padding: 7px 10px;
|
|
34902
|
+
}
|
|
34903
|
+
|
|
34904
|
+
.E_c167wnad {
|
|
34905
|
+
color: rgba(62, 70, 82, 0.6);
|
|
34906
|
+
display: flex;
|
|
34907
|
+
justify-content: space-between;
|
|
34908
|
+
align-items: center;
|
|
34909
|
+
padding: 8px 16px;
|
|
34910
|
+
}
|
|
34911
|
+
.E_c167wnad .anticon {
|
|
34696
34912
|
cursor: pointer;
|
|
34697
|
-
|
|
34698
|
-
|
|
34913
|
+
}
|
|
34914
|
+
.E_c167wnad .anticon:hover {
|
|
34915
|
+
color: #0096ff;
|
|
34916
|
+
}
|
|
34917
|
+
|
|
34918
|
+
.E_cxhf7dh {
|
|
34919
|
+
text-align: center;
|
|
34920
|
+
}
|
|
34921
|
+
.E_cxhf7dh .dots {
|
|
34922
|
+
display: flex;
|
|
34699
34923
|
justify-content: center;
|
|
34700
|
-
border-radius: 50%;
|
|
34701
34924
|
}
|
|
34702
|
-
.
|
|
34703
|
-
|
|
34925
|
+
.E_cxhf7dh .dot {
|
|
34926
|
+
display: inline-block;
|
|
34927
|
+
width: 2px;
|
|
34928
|
+
height: 2px;
|
|
34929
|
+
border-radius: 1px;
|
|
34930
|
+
background: #0096ff;
|
|
34931
|
+
}
|
|
34932
|
+
.E_cxhf7dh .dot:not(:last-child) {
|
|
34933
|
+
margin-right: 2px;
|
|
34934
|
+
}
|
|
34935
|
+
.E_cxhf7dh .bar {
|
|
34936
|
+
width: 9px;
|
|
34937
|
+
height: 2px;
|
|
34938
|
+
background: #0096ff;
|
|
34939
|
+
border-radius: 2px;
|
|
34704
34940
|
}
|
|
34705
34941
|
|
|
34706
34942
|
.E_c1up1pdz {
|
|
@@ -34843,16 +35079,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34843
35079
|
color: #fff;
|
|
34844
35080
|
}
|
|
34845
35081
|
|
|
34846
|
-
.E_gmyahx3 {
|
|
34847
|
-
cursor: pointer;
|
|
34848
|
-
}
|
|
34849
|
-
.E_gmyahx3 .link-text {
|
|
34850
|
-
color: rgba(0, 21, 64, 0.3);
|
|
34851
|
-
}
|
|
34852
|
-
.E_gmyahx3:hover .link-text {
|
|
34853
|
-
color: #0080ff;
|
|
34854
|
-
}
|
|
34855
|
-
|
|
34856
35082
|
.E_n12mqh7z {
|
|
34857
35083
|
display: flex;
|
|
34858
35084
|
align-items: center;
|
|
@@ -34872,178 +35098,179 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34872
35098
|
overflow: auto;
|
|
34873
35099
|
}
|
|
34874
35100
|
|
|
34875
|
-
.
|
|
34876
|
-
|
|
34877
|
-
|
|
34878
|
-
}
|
|
34879
|
-
.E_c18bcrac .recharts-wrapper {
|
|
34880
|
-
margin-left: 4px;
|
|
35101
|
+
.E_ou7iq30 {
|
|
35102
|
+
overflow: hidden;
|
|
35103
|
+
text-overflow: ellipsis;
|
|
34881
35104
|
}
|
|
34882
35105
|
|
|
34883
|
-
.
|
|
34884
|
-
|
|
35106
|
+
.E_s1tui002 {
|
|
35107
|
+
white-space: nowrap;
|
|
34885
35108
|
}
|
|
34886
|
-
|
|
34887
|
-
|
|
35109
|
+
|
|
35110
|
+
.E_mxrc2zg {
|
|
35111
|
+
display: -webkit-box;
|
|
35112
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
35113
|
+
-webkit-box-orient: vertical;
|
|
35114
|
+
word-break: break-all;
|
|
34888
35115
|
}
|
|
34889
35116
|
|
|
34890
|
-
.
|
|
34891
|
-
display:
|
|
34892
|
-
justify-content: space-between;
|
|
34893
|
-
align-items: center;
|
|
34894
|
-
font-size: 13px;
|
|
34895
|
-
line-height: 24px;
|
|
34896
|
-
color: #cccccc;
|
|
34897
|
-
white-space: nowrap;
|
|
35117
|
+
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
35118
|
+
display: none;
|
|
34898
35119
|
}
|
|
34899
|
-
.
|
|
34900
|
-
|
|
35120
|
+
.E_t1vv6d68 .ant-tooltip-inner {
|
|
35121
|
+
background: rgba(23, 38, 64, 0.8);
|
|
35122
|
+
border-radius: 4px;
|
|
34901
35123
|
}
|
|
34902
|
-
|
|
34903
|
-
|
|
34904
|
-
font-weight: bold;
|
|
34905
|
-
color: white;
|
|
35124
|
+
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
35125
|
+
visibility: hidden;
|
|
34906
35126
|
}
|
|
34907
35127
|
|
|
34908
|
-
.
|
|
34909
|
-
|
|
34910
|
-
height: 8px;
|
|
34911
|
-
border-radius: 2px;
|
|
34912
|
-
display: inline-block;
|
|
34913
|
-
background: var(--s11212zy-0);
|
|
34914
|
-
border: 1px solid #fff;
|
|
34915
|
-
box-sizing: content-box;
|
|
34916
|
-
margin-right: 6px;
|
|
35128
|
+
.E_gmyahx3 {
|
|
35129
|
+
cursor: pointer;
|
|
34917
35130
|
}
|
|
34918
|
-
|
|
34919
|
-
|
|
34920
|
-
font-weight: bold;
|
|
34921
|
-
color: white;
|
|
34922
|
-
margin-right: 4px;
|
|
35131
|
+
.E_gmyahx3 .link-text {
|
|
35132
|
+
color: rgba(0, 21, 64, 0.3);
|
|
34923
35133
|
}
|
|
34924
|
-
|
|
34925
|
-
|
|
34926
|
-
width: 192px;
|
|
34927
|
-
height: 246px;
|
|
34928
|
-
border-radius: 4px;
|
|
35134
|
+
.E_gmyahx3:hover .link-text {
|
|
35135
|
+
color: #0080ff;
|
|
34929
35136
|
}
|
|
34930
|
-
|
|
34931
|
-
.
|
|
34932
|
-
|
|
34933
|
-
background-color: rgba(245, 247, 250, 0.6);
|
|
34934
|
-
border-top: none;
|
|
35137
|
+
|
|
35138
|
+
span.E_tqjc4ui {
|
|
35139
|
+
margin: 0 2px;
|
|
34935
35140
|
}
|
|
34936
|
-
|
|
34937
|
-
.
|
|
34938
|
-
|
|
35141
|
+
|
|
35142
|
+
.E_t1sqg15u {
|
|
35143
|
+
background: white;
|
|
34939
35144
|
}
|
|
34940
|
-
.
|
|
34941
|
-
|
|
34942
|
-
width: 100%;
|
|
34943
|
-
height: 180px;
|
|
34944
|
-
border-spacing: 0;
|
|
35145
|
+
.E_t1sqg15u.inline .table-row {
|
|
35146
|
+
flex-direction: column;
|
|
34945
35147
|
}
|
|
34946
|
-
.
|
|
34947
|
-
|
|
34948
|
-
margin-bottom: 8px;
|
|
35148
|
+
.E_t1sqg15u.inline .table-row > label {
|
|
35149
|
+
padding: 0 16px 7px 0;
|
|
34949
35150
|
}
|
|
34950
|
-
.
|
|
34951
|
-
|
|
34952
|
-
width: 22px;
|
|
35151
|
+
.E_t1sqg15u.has-border .table-header {
|
|
35152
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
34953
35153
|
}
|
|
34954
|
-
.
|
|
34955
|
-
|
|
34956
|
-
padding: 0;
|
|
35154
|
+
.E_t1sqg15u.has-border .hiddenBorder {
|
|
35155
|
+
border-top: none !important;
|
|
34957
35156
|
}
|
|
34958
|
-
.
|
|
34959
|
-
|
|
34960
|
-
opacity: 0.4;
|
|
35157
|
+
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
35158
|
+
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
34961
35159
|
}
|
|
34962
|
-
.
|
|
34963
|
-
|
|
34964
|
-
opacity: 1;
|
|
35160
|
+
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
35161
|
+
padding-bottom: 0;
|
|
34965
35162
|
}
|
|
34966
|
-
.
|
|
34967
|
-
|
|
35163
|
+
.E_t1sqg15u.align-right .content {
|
|
35164
|
+
text-align: right;
|
|
34968
35165
|
}
|
|
34969
|
-
.
|
|
34970
|
-
|
|
35166
|
+
.E_t1sqg15u .uuid-row {
|
|
35167
|
+
display: flex;
|
|
35168
|
+
justify-content: space-between;
|
|
34971
35169
|
}
|
|
34972
|
-
|
|
34973
|
-
|
|
34974
|
-
|
|
34975
|
-
|
|
34976
|
-
backdrop-filter: blur(10px);
|
|
34977
|
-
padding: 7px 10px;
|
|
35170
|
+
.E_t1sqg15u .uuid-row .id-text {
|
|
35171
|
+
white-space: nowrap;
|
|
35172
|
+
overflow: hidden;
|
|
35173
|
+
text-overflow: ellipsis;
|
|
34978
35174
|
}
|
|
34979
35175
|
|
|
34980
|
-
.
|
|
34981
|
-
color: rgba(62, 70, 82, 0.6);
|
|
35176
|
+
.E_t4zczcp {
|
|
34982
35177
|
display: flex;
|
|
34983
35178
|
justify-content: space-between;
|
|
34984
35179
|
align-items: center;
|
|
34985
|
-
padding: 8px
|
|
35180
|
+
padding: 8px;
|
|
35181
|
+
min-height: 32px;
|
|
34986
35182
|
}
|
|
34987
|
-
.
|
|
34988
|
-
|
|
35183
|
+
.E_t4zczcp .table-title {
|
|
35184
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35185
|
+
font-weight: 600;
|
|
35186
|
+
font-size: 12px;
|
|
35187
|
+
line-height: 8px;
|
|
34989
35188
|
}
|
|
34990
|
-
.
|
|
34991
|
-
|
|
35189
|
+
.E_t4zczcp .edit-icon {
|
|
35190
|
+
font-size: 16px;
|
|
35191
|
+
color: rgba(10, 37, 85, 0.6);
|
|
35192
|
+
cursor: pointer;
|
|
34992
35193
|
}
|
|
34993
35194
|
|
|
34994
|
-
.
|
|
34995
|
-
|
|
35195
|
+
.E_t1s7goww {
|
|
35196
|
+
font-size: 12px;
|
|
35197
|
+
line-height: 18px;
|
|
34996
35198
|
}
|
|
34997
|
-
|
|
35199
|
+
|
|
35200
|
+
.E_t93e4cf {
|
|
34998
35201
|
display: flex;
|
|
34999
|
-
|
|
35202
|
+
padding: 8px 0;
|
|
35203
|
+
color: #2d3a56;
|
|
35000
35204
|
}
|
|
35001
|
-
.
|
|
35002
|
-
display:
|
|
35003
|
-
width: 2px;
|
|
35004
|
-
height: 2px;
|
|
35005
|
-
border-radius: 1px;
|
|
35006
|
-
background: #0096ff;
|
|
35205
|
+
.E_t93e4cf .hidden {
|
|
35206
|
+
display: none;
|
|
35007
35207
|
}
|
|
35008
|
-
.
|
|
35009
|
-
|
|
35208
|
+
.E_t93e4cf .ant-btn.ant-btn-link {
|
|
35209
|
+
height: auto;
|
|
35010
35210
|
}
|
|
35011
|
-
.
|
|
35012
|
-
|
|
35013
|
-
|
|
35014
|
-
|
|
35015
|
-
|
|
35211
|
+
.E_t93e4cf .content {
|
|
35212
|
+
overflow: hidden;
|
|
35213
|
+
overflow-x: auto;
|
|
35214
|
+
width: 100%;
|
|
35215
|
+
white-space: pre-wrap;
|
|
35216
|
+
}
|
|
35217
|
+
.E_t93e4cf .content .ant-btn {
|
|
35218
|
+
white-space: pre-wrap;
|
|
35219
|
+
text-align: left;
|
|
35220
|
+
}
|
|
35221
|
+
.E_t93e4cf .content .unit-chart {
|
|
35222
|
+
justify-content: flex-start;
|
|
35016
35223
|
}
|
|
35017
35224
|
|
|
35018
|
-
|
|
35019
|
-
|
|
35225
|
+
.E_rhz2uv5 {
|
|
35226
|
+
width: var(--rhz2uv5-0);
|
|
35227
|
+
flex-shrink: 0;
|
|
35228
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35229
|
+
padding-right: 12px;
|
|
35230
|
+
}
|
|
35231
|
+
|
|
35232
|
+
.E_wg1tsps {
|
|
35233
|
+
display: flex;
|
|
35234
|
+
align-items: center;
|
|
35235
|
+
justify-content: flex-end;
|
|
35236
|
+
}
|
|
35237
|
+
|
|
35238
|
+
.E_b1ctd5xy {
|
|
35239
|
+
display: flex;
|
|
35240
|
+
align-items: center;
|
|
35241
|
+
width: calc(100% - 40px);
|
|
35242
|
+
}
|
|
35243
|
+
.E_b1ctd5xy .chart {
|
|
35244
|
+
display: inline-block;
|
|
35245
|
+
width: 100%;
|
|
35020
35246
|
}
|
|
35021
35247
|
|
|
35022
|
-
.
|
|
35023
|
-
|
|
35024
|
-
text-overflow: ellipsis;
|
|
35248
|
+
.E_u1p8acpn {
|
|
35249
|
+
min-width: 40px;
|
|
35025
35250
|
}
|
|
35026
|
-
|
|
35027
|
-
|
|
35028
|
-
white-space: nowrap;
|
|
35251
|
+
.E_u1p8acpn .unit {
|
|
35252
|
+
color: #00122e !important;
|
|
35029
35253
|
}
|
|
35030
35254
|
|
|
35031
|
-
.
|
|
35032
|
-
display:
|
|
35033
|
-
-
|
|
35034
|
-
-webkit-box-orient: vertical;
|
|
35035
|
-
word-break: break-all;
|
|
35255
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
35256
|
+
display: flex;
|
|
35257
|
+
align-items: center;
|
|
35036
35258
|
}
|
|
35037
|
-
|
|
35038
|
-
|
|
35039
|
-
display: none;
|
|
35259
|
+
.E_s1iv0tp1 .enabled-text {
|
|
35260
|
+
margin-right: 8px;
|
|
35040
35261
|
}
|
|
35041
|
-
|
|
35042
|
-
|
|
35043
|
-
|
|
35262
|
+
|
|
35263
|
+
.E_skwah65 {
|
|
35264
|
+
height: 8px;
|
|
35265
|
+
box-sizing: border-box;
|
|
35266
|
+
border-radius: 2px;
|
|
35267
|
+
background: #f5f7fa;
|
|
35268
|
+
display: flex;
|
|
35269
|
+
width: 100%;
|
|
35270
|
+
overflow: hidden;
|
|
35044
35271
|
}
|
|
35045
|
-
.
|
|
35046
|
-
|
|
35272
|
+
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
35273
|
+
margin-left: 1px;
|
|
35047
35274
|
}
|
|
35048
35275
|
|
|
35049
35276
|
.E_s1at6qmn.ant-layout-sider {
|
|
@@ -35159,29 +35386,6 @@ span.E_tqjc4ui {
|
|
|
35159
35386
|
text-align: left;
|
|
35160
35387
|
}
|
|
35161
35388
|
|
|
35162
|
-
.E_wg1tsps {
|
|
35163
|
-
display: flex;
|
|
35164
|
-
align-items: center;
|
|
35165
|
-
justify-content: flex-end;
|
|
35166
|
-
}
|
|
35167
|
-
|
|
35168
|
-
.E_b1ctd5xy {
|
|
35169
|
-
display: flex;
|
|
35170
|
-
align-items: center;
|
|
35171
|
-
width: calc(100% - 40px);
|
|
35172
|
-
}
|
|
35173
|
-
.E_b1ctd5xy .chart {
|
|
35174
|
-
display: inline-block;
|
|
35175
|
-
width: 100%;
|
|
35176
|
-
}
|
|
35177
|
-
|
|
35178
|
-
.E_u1p8acpn {
|
|
35179
|
-
min-width: 40px;
|
|
35180
|
-
}
|
|
35181
|
-
.E_u1p8acpn .unit {
|
|
35182
|
-
color: #00122e !important;
|
|
35183
|
-
}
|
|
35184
|
-
|
|
35185
35389
|
.E_t160l1cm {
|
|
35186
35390
|
display: flex;
|
|
35187
35391
|
flex-direction: column;
|
|
@@ -35385,104 +35589,6 @@ span.E_tqjc4ui {
|
|
|
35385
35589
|
background: transparent;
|
|
35386
35590
|
}
|
|
35387
35591
|
|
|
35388
|
-
.E_s1iv0tp1 .enabled-switch {
|
|
35389
|
-
display: flex;
|
|
35390
|
-
align-items: center;
|
|
35391
|
-
}
|
|
35392
|
-
.E_s1iv0tp1 .enabled-text {
|
|
35393
|
-
margin-right: 8px;
|
|
35394
|
-
}
|
|
35395
|
-
|
|
35396
|
-
.E_t1sqg15u {
|
|
35397
|
-
background: white;
|
|
35398
|
-
}
|
|
35399
|
-
.E_t1sqg15u.inline .table-row {
|
|
35400
|
-
flex-direction: column;
|
|
35401
|
-
}
|
|
35402
|
-
.E_t1sqg15u.inline .table-row > label {
|
|
35403
|
-
padding: 0 16px 7px 0;
|
|
35404
|
-
}
|
|
35405
|
-
.E_t1sqg15u.has-border .table-header {
|
|
35406
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35407
|
-
}
|
|
35408
|
-
.E_t1sqg15u.has-border .hiddenBorder {
|
|
35409
|
-
border-top: none !important;
|
|
35410
|
-
}
|
|
35411
|
-
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
35412
|
-
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
35413
|
-
}
|
|
35414
|
-
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
35415
|
-
padding-bottom: 0;
|
|
35416
|
-
}
|
|
35417
|
-
.E_t1sqg15u.align-right .content {
|
|
35418
|
-
text-align: right;
|
|
35419
|
-
}
|
|
35420
|
-
.E_t1sqg15u .uuid-row {
|
|
35421
|
-
display: flex;
|
|
35422
|
-
justify-content: space-between;
|
|
35423
|
-
}
|
|
35424
|
-
.E_t1sqg15u .uuid-row .id-text {
|
|
35425
|
-
white-space: nowrap;
|
|
35426
|
-
overflow: hidden;
|
|
35427
|
-
text-overflow: ellipsis;
|
|
35428
|
-
}
|
|
35429
|
-
|
|
35430
|
-
.E_t4zczcp {
|
|
35431
|
-
display: flex;
|
|
35432
|
-
justify-content: space-between;
|
|
35433
|
-
align-items: center;
|
|
35434
|
-
padding: 8px;
|
|
35435
|
-
min-height: 32px;
|
|
35436
|
-
}
|
|
35437
|
-
.E_t4zczcp .table-title {
|
|
35438
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35439
|
-
font-weight: 600;
|
|
35440
|
-
font-size: 12px;
|
|
35441
|
-
line-height: 8px;
|
|
35442
|
-
}
|
|
35443
|
-
.E_t4zczcp .edit-icon {
|
|
35444
|
-
font-size: 16px;
|
|
35445
|
-
color: rgba(10, 37, 85, 0.6);
|
|
35446
|
-
cursor: pointer;
|
|
35447
|
-
}
|
|
35448
|
-
|
|
35449
|
-
.E_t1s7goww {
|
|
35450
|
-
font-size: 12px;
|
|
35451
|
-
line-height: 18px;
|
|
35452
|
-
}
|
|
35453
|
-
|
|
35454
|
-
.E_t93e4cf {
|
|
35455
|
-
display: flex;
|
|
35456
|
-
padding: 8px 0;
|
|
35457
|
-
color: #2d3a56;
|
|
35458
|
-
}
|
|
35459
|
-
.E_t93e4cf .hidden {
|
|
35460
|
-
display: none;
|
|
35461
|
-
}
|
|
35462
|
-
.E_t93e4cf .ant-btn.ant-btn-link {
|
|
35463
|
-
height: auto;
|
|
35464
|
-
}
|
|
35465
|
-
.E_t93e4cf .content {
|
|
35466
|
-
overflow: hidden;
|
|
35467
|
-
overflow-x: auto;
|
|
35468
|
-
width: 100%;
|
|
35469
|
-
white-space: pre-wrap;
|
|
35470
|
-
}
|
|
35471
|
-
.E_t93e4cf .content .ant-btn {
|
|
35472
|
-
white-space: pre-wrap;
|
|
35473
|
-
text-align: left;
|
|
35474
|
-
}
|
|
35475
|
-
.E_t93e4cf .content .unit-chart {
|
|
35476
|
-
justify-content: flex-start;
|
|
35477
|
-
}
|
|
35478
|
-
|
|
35479
|
-
.E_rhz2uv5 {
|
|
35480
|
-
width: var(--rhz2uv5-0);
|
|
35481
|
-
flex-shrink: 0;
|
|
35482
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35483
|
-
padding-right: 12px;
|
|
35484
|
-
}
|
|
35485
|
-
|
|
35486
35592
|
.E_cyms3br {
|
|
35487
35593
|
background: #fff;
|
|
35488
35594
|
width: 100%;
|
|
@@ -35536,41 +35642,10 @@ span.E_tqjc4ui {
|
|
|
35536
35642
|
justify-content: center;
|
|
35537
35643
|
}
|
|
35538
35644
|
|
|
35539
|
-
.
|
|
35540
|
-
|
|
35541
|
-
|
|
35542
|
-
padding
|
|
35543
|
-
}
|
|
35544
|
-
.E_d11hhzf9 .ant-modal-content {
|
|
35545
|
-
background: #fff;
|
|
35546
|
-
border-radius: 16px;
|
|
35547
|
-
}
|
|
35548
|
-
.E_d11hhzf9 .ant-modal-header {
|
|
35549
|
-
padding: 32px 40px 0;
|
|
35550
|
-
border-bottom: none;
|
|
35551
|
-
border-radius: 16px 16px 0 0;
|
|
35552
|
-
}
|
|
35553
|
-
.E_d11hhzf9 .ant-modal-close {
|
|
35554
|
-
right: 40px;
|
|
35555
|
-
top: 32px;
|
|
35556
|
-
}
|
|
35557
|
-
.E_d11hhzf9 .ant-modal-body {
|
|
35558
|
-
padding: 32px 40px;
|
|
35559
|
-
min-height: 160px;
|
|
35560
|
-
max-height: calc(100vh - 80px - 64px - var(--header-height) - var(--footer-height));
|
|
35561
|
-
overflow-y: auto;
|
|
35562
|
-
}
|
|
35563
|
-
.E_d11hhzf9 .ant-modal-footer {
|
|
35564
|
-
padding: 24px 40px;
|
|
35565
|
-
margin-top: 0;
|
|
35566
|
-
border-top: none;
|
|
35567
|
-
box-shadow: 0px 1px 0px 0px rgba(225, 230, 241, 0.6) inset;
|
|
35568
|
-
}
|
|
35569
|
-
|
|
35570
|
-
.E_f1g147n6 {
|
|
35571
|
-
display: flex;
|
|
35572
|
-
justify-content: flex-end;
|
|
35573
|
-
gap: 8px;
|
|
35645
|
+
.E_h1ol2wl7 {
|
|
35646
|
+
font-weight: bold;
|
|
35647
|
+
background-color: unset;
|
|
35648
|
+
padding: unset;
|
|
35574
35649
|
}
|
|
35575
35650
|
|
|
35576
35651
|
.E_i5w779o {
|
|
@@ -35614,12 +35689,6 @@ span.E_tqjc4ui {
|
|
|
35614
35689
|
color: rgba(0, 21, 64, 0.3);
|
|
35615
35690
|
}
|
|
35616
35691
|
|
|
35617
|
-
.E_h1ol2wl7 {
|
|
35618
|
-
font-weight: bold;
|
|
35619
|
-
background-color: unset;
|
|
35620
|
-
padding: unset;
|
|
35621
|
-
}
|
|
35622
|
-
|
|
35623
35692
|
.E_kr6am0s .ant-modal-body {
|
|
35624
35693
|
padding: 60px 128px;
|
|
35625
35694
|
}
|
|
@@ -35683,30 +35752,6 @@ span.E_tqjc4ui {
|
|
|
35683
35752
|
background-image: linear-gradient(211.41deg, #929dad 0%, #d3dbe3 100%);
|
|
35684
35753
|
}
|
|
35685
35754
|
|
|
35686
|
-
.E_l12xdkhl {
|
|
35687
|
-
width: 64px;
|
|
35688
|
-
height: 64px;
|
|
35689
|
-
max-width: 64px;
|
|
35690
|
-
max-height: 64px;
|
|
35691
|
-
overflow: hidden;
|
|
35692
|
-
display: flex;
|
|
35693
|
-
align-items: center;
|
|
35694
|
-
justify-content: center;
|
|
35695
|
-
position: relative;
|
|
35696
|
-
opacity: 0.6;
|
|
35697
|
-
}
|
|
35698
|
-
.E_l12xdkhl .icon-wrapper {
|
|
35699
|
-
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
35700
|
-
}
|
|
35701
|
-
@keyframes rotate {
|
|
35702
|
-
from {
|
|
35703
|
-
transform: rotate(0deg);
|
|
35704
|
-
}
|
|
35705
|
-
to {
|
|
35706
|
-
transform: rotate(360deg);
|
|
35707
|
-
}
|
|
35708
|
-
}
|
|
35709
|
-
|
|
35710
35755
|
.E_c1kchka8 {
|
|
35711
35756
|
height: 100%;
|
|
35712
35757
|
width: 100%;
|
|
@@ -36199,6 +36244,15 @@ span.E_tqjc4ui {
|
|
|
36199
36244
|
padding: 0;
|
|
36200
36245
|
}
|
|
36201
36246
|
|
|
36247
|
+
.E_cevhqx7 {
|
|
36248
|
+
color: #00122e;
|
|
36249
|
+
}
|
|
36250
|
+
|
|
36251
|
+
.E_snbqlt4 {
|
|
36252
|
+
margin-top: 8px;
|
|
36253
|
+
color: rgba(44, 56, 82, 0.6);
|
|
36254
|
+
}
|
|
36255
|
+
|
|
36202
36256
|
.E_c14ouk5o {
|
|
36203
36257
|
width: 100%;
|
|
36204
36258
|
height: 100%;
|
|
@@ -36243,15 +36297,6 @@ span.E_tqjc4ui {
|
|
|
36243
36297
|
height: auto;
|
|
36244
36298
|
}
|
|
36245
36299
|
|
|
36246
|
-
.E_cevhqx7 {
|
|
36247
|
-
color: #00122e;
|
|
36248
|
-
}
|
|
36249
|
-
|
|
36250
|
-
.E_snbqlt4 {
|
|
36251
|
-
margin-top: 8px;
|
|
36252
|
-
color: rgba(44, 56, 82, 0.6);
|
|
36253
|
-
}
|
|
36254
|
-
|
|
36255
36300
|
.E_c1ss4prm {
|
|
36256
36301
|
color: rgba(44, 56, 82, 0.6);
|
|
36257
36302
|
}
|
|
@@ -36288,4 +36333,28 @@ span.E_tqjc4ui {
|
|
|
36288
36333
|
height: 1px;
|
|
36289
36334
|
background: #e4e9f2;
|
|
36290
36335
|
margin: 16px 0;
|
|
36336
|
+
}
|
|
36337
|
+
|
|
36338
|
+
.E_l12xdkhl {
|
|
36339
|
+
width: 64px;
|
|
36340
|
+
height: 64px;
|
|
36341
|
+
max-width: 64px;
|
|
36342
|
+
max-height: 64px;
|
|
36343
|
+
overflow: hidden;
|
|
36344
|
+
display: flex;
|
|
36345
|
+
align-items: center;
|
|
36346
|
+
justify-content: center;
|
|
36347
|
+
position: relative;
|
|
36348
|
+
opacity: 0.6;
|
|
36349
|
+
}
|
|
36350
|
+
.E_l12xdkhl .icon-wrapper {
|
|
36351
|
+
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
36352
|
+
}
|
|
36353
|
+
@keyframes rotate {
|
|
36354
|
+
from {
|
|
36355
|
+
transform: rotate(0deg);
|
|
36356
|
+
}
|
|
36357
|
+
to {
|
|
36358
|
+
transform: rotate(360deg);
|
|
36359
|
+
}
|
|
36291
36360
|
}
|