@cloudtower/eagle 0.32.40 → 0.32.41
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/__test__/mockLineChart.d.ts +4 -0
- package/dist/cjs/core/ConfigProvider/index.js +5 -5
- package/dist/cjs/core/LineChart/LineChartActions.js +52 -0
- package/dist/cjs/core/LineChart/LineChartLegend.js +101 -0
- package/dist/cjs/core/LineChart/LineChartToolBar.js +56 -0
- package/dist/cjs/core/LineChart/Pointer.js +45 -0
- package/dist/cjs/core/LineChart/RenderChart.js +304 -0
- package/dist/cjs/core/LineChart/TooltipFormatter.js +70 -0
- package/dist/cjs/core/LineChart/index.js +66 -0
- package/dist/cjs/core/LineChart/styled.js +35 -0
- package/dist/cjs/core/LineChart/type.js +30 -0
- package/dist/cjs/core/LineChart/utils.js +394 -0
- package/dist/cjs/core/Loading/index.js +2 -2
- package/dist/cjs/core/Progress/progress.widgets.js +1 -1
- package/dist/cjs/core/Timeline/Timeline.widget.js +4 -4
- package/dist/cjs/core/Timeline/index.js +4 -4
- package/dist/cjs/core/index.js +9 -9
- package/dist/cjs/coreX/CheckPointList/index.js +3 -3
- package/dist/cjs/coreX/CircleLoading/index.js +4 -4
- package/dist/cjs/coreX/DateRangePicker/Calendar.js +1 -1
- package/dist/cjs/coreX/Dialogs/DeleteDialog/DeleteDialog.js +47 -0
- package/dist/cjs/coreX/Dialogs/RejectDialog/RejectDialog.js +87 -0
- package/dist/cjs/coreX/Dialogs/RejectDialog/RejectDialog.type.js +11 -0
- package/dist/cjs/coreX/Dialogs/SmallDialog.js +86 -0
- package/dist/cjs/index.js +168 -131
- package/dist/cjs/stats1.html +1 -1
- package/dist/cjs/utils/constants.js +1 -1
- package/dist/cjs/utils/tower.js +81 -0
- package/dist/components.css +2512 -2178
- package/dist/esm/core/ConfigProvider/index.js +3 -3
- package/dist/esm/core/LineChart/LineChartActions.js +46 -0
- package/dist/esm/core/LineChart/LineChartLegend.js +91 -0
- package/dist/esm/core/LineChart/LineChartToolBar.js +50 -0
- package/dist/esm/core/LineChart/Pointer.js +38 -0
- package/dist/esm/core/LineChart/RenderChart.js +296 -0
- package/dist/esm/core/LineChart/TooltipFormatter.js +63 -0
- package/dist/esm/core/LineChart/index.js +57 -0
- package/dist/esm/core/LineChart/styled.js +25 -0
- package/dist/esm/core/LineChart/type.js +26 -0
- package/dist/esm/core/LineChart/utils.js +369 -0
- package/dist/esm/core/Loading/index.js +1 -1
- package/dist/esm/core/Progress/progress.widgets.js +1 -1
- package/dist/esm/core/Timeline/Timeline.widget.js +3 -3
- package/dist/esm/core/Timeline/index.js +3 -3
- package/dist/esm/coreX/CheckPointList/index.js +3 -3
- package/dist/esm/coreX/CircleLoading/index.js +3 -3
- package/dist/esm/coreX/DateRangePicker/Calendar.js +1 -1
- package/dist/esm/coreX/Dialogs/DeleteDialog/DeleteDialog.js +41 -0
- package/dist/esm/coreX/Dialogs/RejectDialog/RejectDialog.js +81 -0
- package/dist/esm/coreX/Dialogs/RejectDialog/RejectDialog.type.js +9 -0
- package/dist/esm/coreX/Dialogs/SmallDialog.js +80 -0
- package/dist/esm/index.js +10 -2
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/utils/constants.js +1 -1
- package/dist/esm/utils/tower.js +77 -1
- package/dist/src/antd.d.ts +1 -1
- package/dist/src/core/ConfigProvider/index.d.ts +2 -2
- package/dist/src/core/LineChart/LineChartActions.d.ts +7 -0
- package/dist/src/core/LineChart/LineChartLegend.d.ts +18 -0
- package/dist/src/core/LineChart/LineChartToolBar.d.ts +20 -0
- package/dist/src/core/LineChart/Pointer.d.ts +6 -0
- package/dist/src/core/LineChart/RenderChart.d.ts +45 -0
- package/dist/src/core/LineChart/TooltipFormatter.d.ts +10 -0
- package/dist/src/core/LineChart/__test__/h5_css.test.d.ts +1 -0
- package/dist/src/core/LineChart/index.d.ts +8 -0
- package/dist/src/core/LineChart/styled.d.ts +12 -0
- package/dist/src/core/LineChart/type.d.ts +191 -0
- package/dist/src/core/LineChart/utils.d.ts +56 -0
- package/dist/src/core/Metric/metric.d.ts +1 -1
- package/dist/src/core/Timeline/Timeline.type.d.ts +2 -2
- package/dist/src/core/index.d.ts +4 -1
- package/dist/src/coreX/CheckPointList/index.d.ts +1 -1
- package/dist/src/coreX/Dialogs/DeleteDialog/DeleteDialog.d.ts +3 -0
- package/dist/src/coreX/Dialogs/DeleteDialog/DeleteDialog.type.d.ts +19 -0
- package/dist/src/coreX/Dialogs/DeleteDialog/index.d.ts +2 -0
- package/dist/src/coreX/Dialogs/RejectDialog/RejectDialog.d.ts +3 -0
- package/dist/src/coreX/Dialogs/RejectDialog/RejectDialog.type.d.ts +59 -0
- package/dist/src/coreX/Dialogs/RejectDialog/index.d.ts +2 -0
- package/dist/src/coreX/Dialogs/SmallDialog.d.ts +31 -0
- package/dist/src/coreX/Dialogs/index.d.ts +3 -0
- package/dist/src/coreX/index.d.ts +2 -1
- package/dist/src/utils/tower.d.ts +12 -0
- package/dist/stories/docs/core/LineChart.stories.d.ts +16 -0
- package/dist/stories/docs/core/Timeline.stories.d.ts +2 -2
- package/dist/stories/docs/coreX/CheckPointList.stories.d.ts +1 -1
- package/dist/stories/docs/coreX/Dialogs/DeleteDialog.stories.d.ts +37 -0
- package/dist/stories/docs/coreX/Dialogs/RejectDialog.stories.d.ts +89 -0
- package/dist/stories/docs/coreX/Show.stories.d.ts +2 -2
- package/dist/style.css +2158 -1862
- package/dist/variables.scss +2 -0
- package/package.json +5 -6
package/dist/style.css
CHANGED
|
@@ -29672,86 +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_s1ebs0ra {
|
|
29676
|
-
display: flex;
|
|
29677
|
-
align-items: center;
|
|
29678
|
-
justify-content: space-between;
|
|
29679
|
-
background: #edf0f7;
|
|
29680
|
-
padding: 8px 12px;
|
|
29681
|
-
position: sticky;
|
|
29682
|
-
top: 0;
|
|
29683
|
-
z-index: 1;
|
|
29684
|
-
margin-bottom: -52px;
|
|
29685
|
-
}
|
|
29686
|
-
.E_s1ebs0ra .select-total {
|
|
29687
|
-
display: flex;
|
|
29688
|
-
align-items: center;
|
|
29689
|
-
font-weight: 700;
|
|
29690
|
-
flex-shrink: 0;
|
|
29691
|
-
}
|
|
29692
|
-
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
29693
|
-
cursor: pointer;
|
|
29694
|
-
margin-left: 8px;
|
|
29695
|
-
width: 32px;
|
|
29696
|
-
height: 32px;
|
|
29697
|
-
border-radius: 50%;
|
|
29698
|
-
justify-content: center;
|
|
29699
|
-
}
|
|
29700
|
-
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
29701
|
-
background: rgba(225, 230, 241, 0.6);
|
|
29702
|
-
}
|
|
29703
|
-
.E_s1ebs0ra .action-group {
|
|
29704
|
-
flex: 1;
|
|
29705
|
-
margin-left: 88px;
|
|
29706
|
-
white-space: nowrap;
|
|
29707
|
-
text-align: right;
|
|
29708
|
-
position: relative;
|
|
29709
|
-
padding: 4px 0;
|
|
29710
|
-
margin-top: -4px;
|
|
29711
|
-
overflow: hidden;
|
|
29712
|
-
}
|
|
29713
|
-
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
29714
|
-
transform: translateY(-4px);
|
|
29715
|
-
}
|
|
29716
|
-
.E_s1ebs0ra .action-group button {
|
|
29717
|
-
border: none;
|
|
29718
|
-
}
|
|
29719
|
-
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
29720
|
-
margin-right: 8px;
|
|
29721
|
-
}
|
|
29722
|
-
.E_s1ebs0ra .action-group > button:last-child {
|
|
29723
|
-
margin-right: 4px;
|
|
29724
|
-
}
|
|
29725
|
-
.E_s1ebs0ra .action-group .more-btn {
|
|
29726
|
-
cursor: pointer;
|
|
29727
|
-
width: 32px;
|
|
29728
|
-
height: 32px;
|
|
29729
|
-
justify-content: center;
|
|
29730
|
-
border-radius: 50%;
|
|
29731
|
-
}
|
|
29732
|
-
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
29733
|
-
background: #fff;
|
|
29734
|
-
}
|
|
29735
|
-
|
|
29736
|
-
.E_n12mqh7z {
|
|
29737
|
-
display: flex;
|
|
29738
|
-
align-items: center;
|
|
29739
|
-
font-size: 12px;
|
|
29740
|
-
line-height: 18px;
|
|
29741
|
-
}
|
|
29742
|
-
.E_n12mqh7z:not(:last-child) {
|
|
29743
|
-
margin-bottom: 4px;
|
|
29744
|
-
}
|
|
29745
|
-
|
|
29746
|
-
.E_tf5bynu {
|
|
29747
|
-
margin: 0 3px;
|
|
29748
|
-
}
|
|
29749
|
-
|
|
29750
|
-
.E_tcckoz1 {
|
|
29751
|
-
max-height: 400px;
|
|
29752
|
-
overflow: auto;
|
|
29753
|
-
}
|
|
29754
|
-
|
|
29755
29675
|
.E_skwah65 {
|
|
29756
29676
|
height: 8px;
|
|
29757
29677
|
box-sizing: border-box;
|
|
@@ -29765,20 +29685,6 @@ html body {
|
|
|
29765
29685
|
margin-left: 1px;
|
|
29766
29686
|
}
|
|
29767
29687
|
|
|
29768
|
-
.E_gmyahx3 {
|
|
29769
|
-
cursor: pointer;
|
|
29770
|
-
}
|
|
29771
|
-
.E_gmyahx3 .link-text {
|
|
29772
|
-
color: rgba(0, 21, 64, 0.3);
|
|
29773
|
-
}
|
|
29774
|
-
.E_gmyahx3:hover .link-text {
|
|
29775
|
-
color: #0080ff;
|
|
29776
|
-
}
|
|
29777
|
-
|
|
29778
|
-
span.E_tqjc4ui {
|
|
29779
|
-
margin: 0 2px;
|
|
29780
|
-
}
|
|
29781
|
-
|
|
29782
29688
|
.E_c18bcrac {
|
|
29783
29689
|
display: inline-block;
|
|
29784
29690
|
width: 100%;
|
|
@@ -29919,31 +29825,79 @@ span.E_tqjc4ui {
|
|
|
29919
29825
|
border-radius: 2px;
|
|
29920
29826
|
}
|
|
29921
29827
|
|
|
29922
|
-
.
|
|
29923
|
-
|
|
29924
|
-
|
|
29828
|
+
.E_s1ebs0ra {
|
|
29829
|
+
display: flex;
|
|
29830
|
+
align-items: center;
|
|
29831
|
+
justify-content: space-between;
|
|
29832
|
+
background: #edf0f7;
|
|
29833
|
+
padding: 8px 12px;
|
|
29834
|
+
position: sticky;
|
|
29835
|
+
top: 0;
|
|
29836
|
+
z-index: 1;
|
|
29837
|
+
margin-bottom: -52px;
|
|
29925
29838
|
}
|
|
29926
|
-
|
|
29927
|
-
|
|
29839
|
+
.E_s1ebs0ra .select-total {
|
|
29840
|
+
display: flex;
|
|
29841
|
+
align-items: center;
|
|
29842
|
+
font-weight: 700;
|
|
29843
|
+
flex-shrink: 0;
|
|
29844
|
+
}
|
|
29845
|
+
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
29846
|
+
cursor: pointer;
|
|
29847
|
+
margin-left: 8px;
|
|
29848
|
+
width: 32px;
|
|
29849
|
+
height: 32px;
|
|
29850
|
+
border-radius: 50%;
|
|
29851
|
+
justify-content: center;
|
|
29852
|
+
}
|
|
29853
|
+
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
29854
|
+
background: rgba(225, 230, 241, 0.6);
|
|
29855
|
+
}
|
|
29856
|
+
.E_s1ebs0ra .action-group {
|
|
29857
|
+
flex: 1;
|
|
29858
|
+
margin-left: 88px;
|
|
29928
29859
|
white-space: nowrap;
|
|
29860
|
+
text-align: right;
|
|
29861
|
+
position: relative;
|
|
29862
|
+
padding: 4px 0;
|
|
29863
|
+
margin-top: -4px;
|
|
29864
|
+
overflow: hidden;
|
|
29929
29865
|
}
|
|
29930
|
-
|
|
29931
|
-
|
|
29932
|
-
|
|
29933
|
-
|
|
29934
|
-
|
|
29935
|
-
|
|
29866
|
+
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
29867
|
+
transform: translateY(-4px);
|
|
29868
|
+
}
|
|
29869
|
+
.E_s1ebs0ra .action-group button {
|
|
29870
|
+
border: none;
|
|
29871
|
+
}
|
|
29872
|
+
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
29873
|
+
margin-right: 8px;
|
|
29874
|
+
}
|
|
29875
|
+
.E_s1ebs0ra .action-group > button:last-child {
|
|
29876
|
+
margin-right: 4px;
|
|
29877
|
+
}
|
|
29878
|
+
.E_s1ebs0ra .action-group .more-btn {
|
|
29879
|
+
cursor: pointer;
|
|
29880
|
+
width: 32px;
|
|
29881
|
+
height: 32px;
|
|
29882
|
+
justify-content: center;
|
|
29883
|
+
border-radius: 50%;
|
|
29884
|
+
}
|
|
29885
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
29886
|
+
background: #fff;
|
|
29936
29887
|
}
|
|
29937
29888
|
|
|
29938
|
-
.
|
|
29939
|
-
|
|
29889
|
+
.E_gmyahx3 {
|
|
29890
|
+
cursor: pointer;
|
|
29940
29891
|
}
|
|
29941
|
-
.
|
|
29942
|
-
|
|
29943
|
-
border-radius: 4px;
|
|
29892
|
+
.E_gmyahx3 .link-text {
|
|
29893
|
+
color: rgba(0, 21, 64, 0.3);
|
|
29944
29894
|
}
|
|
29945
|
-
.
|
|
29946
|
-
|
|
29895
|
+
.E_gmyahx3:hover .link-text {
|
|
29896
|
+
color: #0080ff;
|
|
29897
|
+
}
|
|
29898
|
+
|
|
29899
|
+
span.E_tqjc4ui {
|
|
29900
|
+
margin: 0 2px;
|
|
29947
29901
|
}
|
|
29948
29902
|
|
|
29949
29903
|
.E_c1up1pdz {
|
|
@@ -30086,94 +30040,54 @@ span.E_tqjc4ui {
|
|
|
30086
30040
|
color: #fff;
|
|
30087
30041
|
}
|
|
30088
30042
|
|
|
30089
|
-
.
|
|
30090
|
-
|
|
30091
|
-
|
|
30092
|
-
|
|
30093
|
-
|
|
30094
|
-
}
|
|
30095
|
-
.E_t1sqg15u.inline .table-row > label {
|
|
30096
|
-
padding: 0 16px 7px 0;
|
|
30097
|
-
}
|
|
30098
|
-
.E_t1sqg15u.has-border .table-header {
|
|
30099
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
30100
|
-
}
|
|
30101
|
-
.E_t1sqg15u.has-border .hiddenBorder {
|
|
30102
|
-
border-top: none !important;
|
|
30043
|
+
.E_n12mqh7z {
|
|
30044
|
+
display: flex;
|
|
30045
|
+
align-items: center;
|
|
30046
|
+
font-size: 12px;
|
|
30047
|
+
line-height: 18px;
|
|
30103
30048
|
}
|
|
30104
|
-
.
|
|
30105
|
-
|
|
30049
|
+
.E_n12mqh7z:not(:last-child) {
|
|
30050
|
+
margin-bottom: 4px;
|
|
30106
30051
|
}
|
|
30107
|
-
|
|
30108
|
-
|
|
30052
|
+
|
|
30053
|
+
.E_tf5bynu {
|
|
30054
|
+
margin: 0 3px;
|
|
30109
30055
|
}
|
|
30110
|
-
|
|
30111
|
-
|
|
30056
|
+
|
|
30057
|
+
.E_tcckoz1 {
|
|
30058
|
+
max-height: 400px;
|
|
30059
|
+
overflow: auto;
|
|
30112
30060
|
}
|
|
30113
|
-
|
|
30061
|
+
|
|
30062
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
30114
30063
|
display: flex;
|
|
30115
|
-
|
|
30064
|
+
align-items: center;
|
|
30116
30065
|
}
|
|
30117
|
-
.
|
|
30118
|
-
|
|
30119
|
-
overflow: hidden;
|
|
30120
|
-
text-overflow: ellipsis;
|
|
30066
|
+
.E_s1iv0tp1 .enabled-text {
|
|
30067
|
+
margin-right: 8px;
|
|
30121
30068
|
}
|
|
30122
30069
|
|
|
30123
|
-
.
|
|
30070
|
+
.E_wg1tsps {
|
|
30124
30071
|
display: flex;
|
|
30125
|
-
justify-content: space-between;
|
|
30126
30072
|
align-items: center;
|
|
30127
|
-
|
|
30128
|
-
min-height: 32px;
|
|
30073
|
+
justify-content: flex-end;
|
|
30129
30074
|
}
|
|
30130
|
-
|
|
30131
|
-
|
|
30132
|
-
|
|
30133
|
-
|
|
30134
|
-
|
|
30075
|
+
|
|
30076
|
+
.E_b1ctd5xy {
|
|
30077
|
+
display: flex;
|
|
30078
|
+
align-items: center;
|
|
30079
|
+
width: calc(100% - 40px);
|
|
30135
30080
|
}
|
|
30136
|
-
.
|
|
30137
|
-
|
|
30138
|
-
|
|
30139
|
-
cursor: pointer;
|
|
30081
|
+
.E_b1ctd5xy .chart {
|
|
30082
|
+
display: inline-block;
|
|
30083
|
+
width: 100%;
|
|
30140
30084
|
}
|
|
30141
30085
|
|
|
30142
|
-
.
|
|
30143
|
-
|
|
30144
|
-
|
|
30145
|
-
|
|
30146
|
-
|
|
30147
|
-
.E_t93e4cf {
|
|
30148
|
-
display: flex;
|
|
30149
|
-
padding: 8px 0;
|
|
30150
|
-
color: #2d3a56;
|
|
30151
|
-
}
|
|
30152
|
-
.E_t93e4cf .hidden {
|
|
30153
|
-
display: none;
|
|
30154
|
-
}
|
|
30155
|
-
.E_t93e4cf .ant-btn-link {
|
|
30156
|
-
height: auto;
|
|
30157
|
-
}
|
|
30158
|
-
.E_t93e4cf .content {
|
|
30159
|
-
overflow: hidden;
|
|
30160
|
-
overflow-x: auto;
|
|
30161
|
-
width: 100%;
|
|
30162
|
-
white-space: pre-wrap;
|
|
30163
|
-
}
|
|
30164
|
-
.E_t93e4cf .content .ant-btn {
|
|
30165
|
-
white-space: pre-wrap;
|
|
30166
|
-
text-align: left;
|
|
30167
|
-
}
|
|
30168
|
-
.E_t93e4cf .content .unit-chart {
|
|
30169
|
-
justify-content: flex-start;
|
|
30170
|
-
}
|
|
30171
|
-
|
|
30172
|
-
.E_rhz2uv5 {
|
|
30173
|
-
width: var(--rhz2uv5-0);
|
|
30174
|
-
flex-shrink: 0;
|
|
30175
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30176
|
-
padding-right: 12px;
|
|
30086
|
+
.E_u1p8acpn {
|
|
30087
|
+
min-width: 40px;
|
|
30088
|
+
}
|
|
30089
|
+
.E_u1p8acpn .unit {
|
|
30090
|
+
color: #00122e !important;
|
|
30177
30091
|
}
|
|
30178
30092
|
|
|
30179
30093
|
.E_s1at6qmn.ant-layout-sider {
|
|
@@ -30289,24 +30203,31 @@ span.E_tqjc4ui {
|
|
|
30289
30203
|
text-align: left;
|
|
30290
30204
|
}
|
|
30291
30205
|
|
|
30292
|
-
.
|
|
30293
|
-
|
|
30294
|
-
|
|
30295
|
-
width: 100%;
|
|
30206
|
+
.E_ou7iq30 {
|
|
30207
|
+
overflow: hidden;
|
|
30208
|
+
text-overflow: ellipsis;
|
|
30296
30209
|
}
|
|
30297
|
-
|
|
30298
|
-
|
|
30210
|
+
|
|
30211
|
+
.E_s1tui002 {
|
|
30212
|
+
white-space: nowrap;
|
|
30299
30213
|
}
|
|
30300
30214
|
|
|
30301
|
-
.
|
|
30302
|
-
|
|
30215
|
+
.E_mxrc2zg {
|
|
30216
|
+
display: -webkit-box;
|
|
30217
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
30218
|
+
-webkit-box-orient: vertical;
|
|
30219
|
+
word-break: break-all;
|
|
30303
30220
|
}
|
|
30304
|
-
|
|
30305
|
-
|
|
30306
|
-
|
|
30221
|
+
|
|
30222
|
+
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
30223
|
+
display: none;
|
|
30307
30224
|
}
|
|
30308
|
-
.
|
|
30309
|
-
|
|
30225
|
+
.E_t1vv6d68 .ant-tooltip-inner {
|
|
30226
|
+
background: rgba(23, 38, 64, 0.8);
|
|
30227
|
+
border-radius: 4px;
|
|
30228
|
+
}
|
|
30229
|
+
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
30230
|
+
visibility: hidden;
|
|
30310
30231
|
}
|
|
30311
30232
|
|
|
30312
30233
|
.E_c18gxmrl {
|
|
@@ -30329,35 +30250,94 @@ span.E_tqjc4ui {
|
|
|
30329
30250
|
padding: 8px 12px;
|
|
30330
30251
|
}
|
|
30331
30252
|
|
|
30332
|
-
.
|
|
30253
|
+
.E_t1sqg15u {
|
|
30254
|
+
background: white;
|
|
30255
|
+
}
|
|
30256
|
+
.E_t1sqg15u.inline .table-row {
|
|
30257
|
+
flex-direction: column;
|
|
30258
|
+
}
|
|
30259
|
+
.E_t1sqg15u.inline .table-row > label {
|
|
30260
|
+
padding: 0 16px 7px 0;
|
|
30261
|
+
}
|
|
30262
|
+
.E_t1sqg15u.has-border .table-header {
|
|
30263
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
30264
|
+
}
|
|
30265
|
+
.E_t1sqg15u.has-border .hiddenBorder {
|
|
30266
|
+
border-top: none !important;
|
|
30267
|
+
}
|
|
30268
|
+
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
30269
|
+
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
30270
|
+
}
|
|
30271
|
+
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
30272
|
+
padding-bottom: 0;
|
|
30273
|
+
}
|
|
30274
|
+
.E_t1sqg15u.align-right .content {
|
|
30275
|
+
text-align: right;
|
|
30276
|
+
}
|
|
30277
|
+
.E_t1sqg15u .uuid-row {
|
|
30333
30278
|
display: flex;
|
|
30334
|
-
|
|
30279
|
+
justify-content: space-between;
|
|
30335
30280
|
}
|
|
30336
|
-
.
|
|
30337
|
-
|
|
30281
|
+
.E_t1sqg15u .uuid-row .id-text {
|
|
30282
|
+
white-space: nowrap;
|
|
30283
|
+
overflow: hidden;
|
|
30284
|
+
text-overflow: ellipsis;
|
|
30338
30285
|
}
|
|
30339
30286
|
|
|
30340
|
-
.
|
|
30287
|
+
.E_t4zczcp {
|
|
30341
30288
|
display: flex;
|
|
30289
|
+
justify-content: space-between;
|
|
30342
30290
|
align-items: center;
|
|
30343
|
-
|
|
30291
|
+
padding: 8px;
|
|
30292
|
+
min-height: 32px;
|
|
30293
|
+
}
|
|
30294
|
+
.E_t4zczcp .table-title {
|
|
30295
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30296
|
+
font-weight: 600;
|
|
30297
|
+
font-size: 12px;
|
|
30298
|
+
line-height: 8px;
|
|
30299
|
+
}
|
|
30300
|
+
.E_t4zczcp .edit-icon {
|
|
30301
|
+
font-size: 16px;
|
|
30302
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30303
|
+
cursor: pointer;
|
|
30344
30304
|
}
|
|
30345
30305
|
|
|
30346
|
-
.
|
|
30306
|
+
.E_t1s7goww {
|
|
30307
|
+
font-size: 12px;
|
|
30308
|
+
line-height: 18px;
|
|
30309
|
+
}
|
|
30310
|
+
|
|
30311
|
+
.E_t93e4cf {
|
|
30347
30312
|
display: flex;
|
|
30348
|
-
|
|
30349
|
-
|
|
30313
|
+
padding: 8px 0;
|
|
30314
|
+
color: #2d3a56;
|
|
30350
30315
|
}
|
|
30351
|
-
.
|
|
30352
|
-
display:
|
|
30316
|
+
.E_t93e4cf .hidden {
|
|
30317
|
+
display: none;
|
|
30318
|
+
}
|
|
30319
|
+
.E_t93e4cf .ant-btn-link {
|
|
30320
|
+
height: auto;
|
|
30321
|
+
}
|
|
30322
|
+
.E_t93e4cf .content {
|
|
30323
|
+
overflow: hidden;
|
|
30324
|
+
overflow-x: auto;
|
|
30353
30325
|
width: 100%;
|
|
30326
|
+
white-space: pre-wrap;
|
|
30354
30327
|
}
|
|
30355
|
-
|
|
30356
|
-
|
|
30357
|
-
|
|
30328
|
+
.E_t93e4cf .content .ant-btn {
|
|
30329
|
+
white-space: pre-wrap;
|
|
30330
|
+
text-align: left;
|
|
30358
30331
|
}
|
|
30359
|
-
.
|
|
30360
|
-
|
|
30332
|
+
.E_t93e4cf .content .unit-chart {
|
|
30333
|
+
justify-content: flex-start;
|
|
30334
|
+
}
|
|
30335
|
+
|
|
30336
|
+
.E_rhz2uv5 {
|
|
30337
|
+
width: var(--rhz2uv5-0);
|
|
30338
|
+
flex-shrink: 0;
|
|
30339
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30340
|
+
padding-right: 12px;
|
|
30361
30341
|
}
|
|
30362
30342
|
|
|
30363
30343
|
.E_t160l1cm {
|
|
@@ -30563,11 +30543,104 @@ span.E_tqjc4ui {
|
|
|
30563
30543
|
background: transparent;
|
|
30564
30544
|
}
|
|
30565
30545
|
|
|
30566
|
-
.
|
|
30546
|
+
.E_m74vjol {
|
|
30547
|
+
display: flex;
|
|
30548
|
+
justify-content: space-between;
|
|
30549
|
+
width: 100%;
|
|
30550
|
+
}
|
|
30551
|
+
.E_m74vjol .action {
|
|
30552
|
+
margin-left: 16px;
|
|
30553
|
+
}
|
|
30554
|
+
|
|
30555
|
+
.E_a1o35uvh.ant-alert-closable {
|
|
30556
|
+
padding-right: 12px;
|
|
30557
|
+
}
|
|
30558
|
+
.E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
|
|
30559
|
+
height: fit-content;
|
|
30560
|
+
margin-left: 16px;
|
|
30561
|
+
}
|
|
30562
|
+
.E_a1o35uvh .ant-alert-message {
|
|
30563
|
+
flex: 1;
|
|
30564
|
+
}
|
|
30565
|
+
|
|
30566
|
+
.E_berrcjl {
|
|
30567
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30568
|
+
margin-bottom: 4px;
|
|
30569
|
+
}
|
|
30570
|
+
.E_berrcjl .breadcrumb-link {
|
|
30571
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30572
|
+
cursor: pointer;
|
|
30573
|
+
transition: color 160ms ease;
|
|
30574
|
+
}
|
|
30575
|
+
.E_berrcjl .breadcrumb-link:hover {
|
|
30576
|
+
color: #0080ff;
|
|
30577
|
+
}
|
|
30578
|
+
.E_berrcjl .breadcrumb-link:active {
|
|
30579
|
+
color: #005ed1;
|
|
30580
|
+
}
|
|
30581
|
+
|
|
30582
|
+
.E_b1nip9bk {
|
|
30583
|
+
padding: 4px 11px;
|
|
30584
|
+
}
|
|
30585
|
+
|
|
30586
|
+
.E_bqamoqe {
|
|
30587
|
+
white-space: nowrap;
|
|
30588
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
30589
|
+
}
|
|
30590
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
30591
|
+
--color: #0080ff;
|
|
30592
|
+
}
|
|
30593
|
+
.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] {
|
|
30594
|
+
--color: #0080ff;
|
|
30595
|
+
}
|
|
30596
|
+
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
30597
|
+
margin-left: 1px;
|
|
30598
|
+
}
|
|
30599
|
+
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
30600
|
+
border-top-right-radius: 0;
|
|
30601
|
+
border-bottom-right-radius: 0;
|
|
30602
|
+
}
|
|
30603
|
+
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
30604
|
+
border-top-left-radius: 0;
|
|
30605
|
+
border-bottom-left-radius: 0;
|
|
30606
|
+
}
|
|
30607
|
+
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
30608
|
+
border-radius: unset;
|
|
30609
|
+
}
|
|
30610
|
+
|
|
30611
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
30612
|
+
padding: 4px 8px 0 8px;
|
|
30613
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30614
|
+
font-size: 12px;
|
|
30615
|
+
}
|
|
30616
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
30617
|
+
padding-bottom: 6px;
|
|
30618
|
+
}
|
|
30619
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
30620
|
+
padding-top: 4px;
|
|
30621
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30622
|
+
}
|
|
30623
|
+
|
|
30624
|
+
.E_c1uzzomf {
|
|
30625
|
+
margin-bottom: 16px;
|
|
30626
|
+
}
|
|
30627
|
+
.E_c1uzzomf .card-title {
|
|
30628
|
+
font-size: 16px;
|
|
30629
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30630
|
+
font-weight: 700;
|
|
30631
|
+
line-height: 32px;
|
|
30632
|
+
}
|
|
30633
|
+
.E_c1uzzomf .card-body {
|
|
30634
|
+
padding: 24px;
|
|
30567
30635
|
border-radius: 8px;
|
|
30636
|
+
background: #fff;
|
|
30568
30637
|
}
|
|
30569
|
-
.
|
|
30570
|
-
|
|
30638
|
+
.E_c1uzzomf .empty {
|
|
30639
|
+
font-weight: 700;
|
|
30640
|
+
font-size: 14px;
|
|
30641
|
+
line-height: 22px;
|
|
30642
|
+
color: rgba(0, 21, 64, 0.3);
|
|
30643
|
+
text-align: center;
|
|
30571
30644
|
}
|
|
30572
30645
|
|
|
30573
30646
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
@@ -30828,95 +30901,6 @@ button.E_n7k2c6r {
|
|
|
30828
30901
|
padding: 0;
|
|
30829
30902
|
}
|
|
30830
30903
|
|
|
30831
|
-
.E_b1nip9bk {
|
|
30832
|
-
padding: 4px 11px;
|
|
30833
|
-
}
|
|
30834
|
-
|
|
30835
|
-
.E_bqamoqe {
|
|
30836
|
-
white-space: nowrap;
|
|
30837
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
30838
|
-
}
|
|
30839
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
30840
|
-
--color: #0080ff;
|
|
30841
|
-
}
|
|
30842
|
-
.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] {
|
|
30843
|
-
--color: #0080ff;
|
|
30844
|
-
}
|
|
30845
|
-
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
30846
|
-
margin-left: 1px;
|
|
30847
|
-
}
|
|
30848
|
-
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
30849
|
-
border-top-right-radius: 0;
|
|
30850
|
-
border-bottom-right-radius: 0;
|
|
30851
|
-
}
|
|
30852
|
-
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
30853
|
-
border-top-left-radius: 0;
|
|
30854
|
-
border-bottom-left-radius: 0;
|
|
30855
|
-
}
|
|
30856
|
-
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
30857
|
-
border-radius: unset;
|
|
30858
|
-
}
|
|
30859
|
-
|
|
30860
|
-
.E_c1uzzomf {
|
|
30861
|
-
margin-bottom: 16px;
|
|
30862
|
-
}
|
|
30863
|
-
.E_c1uzzomf .card-title {
|
|
30864
|
-
font-size: 16px;
|
|
30865
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30866
|
-
font-weight: 700;
|
|
30867
|
-
line-height: 32px;
|
|
30868
|
-
}
|
|
30869
|
-
.E_c1uzzomf .card-body {
|
|
30870
|
-
padding: 24px;
|
|
30871
|
-
border-radius: 8px;
|
|
30872
|
-
background: #fff;
|
|
30873
|
-
}
|
|
30874
|
-
.E_c1uzzomf .empty {
|
|
30875
|
-
font-weight: 700;
|
|
30876
|
-
font-size: 14px;
|
|
30877
|
-
line-height: 22px;
|
|
30878
|
-
color: rgba(0, 21, 64, 0.3);
|
|
30879
|
-
text-align: center;
|
|
30880
|
-
}
|
|
30881
|
-
|
|
30882
|
-
.E_ccrbeuz .ant-collapse-item {
|
|
30883
|
-
border: 0px;
|
|
30884
|
-
background-color: #fff;
|
|
30885
|
-
}
|
|
30886
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
30887
|
-
padding-top: 0px;
|
|
30888
|
-
padding-bottom: 0px;
|
|
30889
|
-
padding-left: 0px !important;
|
|
30890
|
-
padding-right: 24px;
|
|
30891
|
-
}
|
|
30892
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
30893
|
-
right: 0px;
|
|
30894
|
-
}
|
|
30895
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
30896
|
-
padding: 0px;
|
|
30897
|
-
}
|
|
30898
|
-
|
|
30899
|
-
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
30900
|
-
padding-right: 0px;
|
|
30901
|
-
cursor: default;
|
|
30902
|
-
}
|
|
30903
|
-
|
|
30904
|
-
.E_berrcjl {
|
|
30905
|
-
color: rgba(10, 37, 85, 0.6);
|
|
30906
|
-
margin-bottom: 4px;
|
|
30907
|
-
}
|
|
30908
|
-
.E_berrcjl .breadcrumb-link {
|
|
30909
|
-
color: rgba(10, 37, 85, 0.6);
|
|
30910
|
-
cursor: pointer;
|
|
30911
|
-
transition: color 160ms ease;
|
|
30912
|
-
}
|
|
30913
|
-
.E_berrcjl .breadcrumb-link:hover {
|
|
30914
|
-
color: #0080ff;
|
|
30915
|
-
}
|
|
30916
|
-
.E_berrcjl .breadcrumb-link:active {
|
|
30917
|
-
color: #005ed1;
|
|
30918
|
-
}
|
|
30919
|
-
|
|
30920
30904
|
.E_d1bw7c5z {
|
|
30921
30905
|
position: relative;
|
|
30922
30906
|
max-width: 388px;
|
|
@@ -31000,21 +30984,124 @@ button.E_n7k2c6r {
|
|
|
31000
30984
|
width: 102px;
|
|
31001
30985
|
}
|
|
31002
30986
|
|
|
31003
|
-
.
|
|
31004
|
-
|
|
30987
|
+
.E_fzh9mnb {
|
|
30988
|
+
width: 100%;
|
|
30989
|
+
height: 100%;
|
|
30990
|
+
min-height: 124px;
|
|
30991
|
+
display: flex;
|
|
30992
|
+
flex-direction: column;
|
|
30993
|
+
justify-content: center;
|
|
30994
|
+
align-items: center;
|
|
30995
|
+
}
|
|
30996
|
+
.E_fzh9mnb .error-text {
|
|
30997
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30998
|
+
margin-bottom: 16px;
|
|
30999
|
+
font-size: 18px;
|
|
31005
31000
|
}
|
|
31006
31001
|
|
|
31007
|
-
.
|
|
31008
|
-
|
|
31002
|
+
.E_f7pxqmh {
|
|
31003
|
+
width: 100%;
|
|
31004
|
+
margin-bottom: 0 !important;
|
|
31005
|
+
flex-flow: nowrap !important;
|
|
31006
|
+
line-break: auto;
|
|
31007
|
+
}
|
|
31008
|
+
.E_f7pxqmh > .ant-form-item-label {
|
|
31009
|
+
text-align: left !important;
|
|
31010
|
+
padding-bottom: 0 !important;
|
|
31011
|
+
}
|
|
31012
|
+
.E_f7pxqmh > .ant-form-item-label > label {
|
|
31013
|
+
min-height: 32px;
|
|
31014
|
+
height: auto;
|
|
31015
|
+
font-size: 13px;
|
|
31009
31016
|
color: rgba(44, 56, 82, 0.6);
|
|
31017
|
+
white-space: normal;
|
|
31018
|
+
}
|
|
31019
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
31020
|
+
border-color: #ff4d4f !important;
|
|
31021
|
+
}
|
|
31022
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
31023
|
+
border-color: #ff4d4f !important;
|
|
31024
|
+
}
|
|
31025
|
+
.E_f7pxqmh .ant-form-item-explain {
|
|
31026
|
+
margin-top: 4px;
|
|
31027
|
+
font-size: 12px;
|
|
31028
|
+
min-height: 0px;
|
|
31029
|
+
}
|
|
31030
|
+
.E_f7pxqmh .ant-form-item-extra {
|
|
31010
31031
|
font-size: 12px;
|
|
31032
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31033
|
+
min-height: 0px;
|
|
31011
31034
|
}
|
|
31012
|
-
|
|
31013
|
-
|
|
31035
|
+
|
|
31036
|
+
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
31037
|
+
display: var(--ai7qkf2-0);
|
|
31014
31038
|
}
|
|
31015
|
-
.
|
|
31016
|
-
|
|
31017
|
-
|
|
31039
|
+
.E_ai7qkf2 .ant-input-number-input-wrap {
|
|
31040
|
+
display: inline-flex;
|
|
31041
|
+
line-height: 1.5715;
|
|
31042
|
+
height: 100%;
|
|
31043
|
+
width: 100%;
|
|
31044
|
+
}
|
|
31045
|
+
.E_ai7qkf2 .ant-input-number-input-wrap::after {
|
|
31046
|
+
content: var(--ai7qkf2-1);
|
|
31047
|
+
display: var(--ai7qkf2-2);
|
|
31048
|
+
flex: none;
|
|
31049
|
+
align-items: center;
|
|
31050
|
+
margin-left: 4px;
|
|
31051
|
+
padding: 5px 12px 5px 0;
|
|
31052
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31053
|
+
}
|
|
31054
|
+
.E_ai7qkf2 .ant-input-number-input-wrap::before {
|
|
31055
|
+
content: var(--ai7qkf2-3);
|
|
31056
|
+
display: var(--ai7qkf2-4);
|
|
31057
|
+
flex: none;
|
|
31058
|
+
align-items: center;
|
|
31059
|
+
margin-right: 4px;
|
|
31060
|
+
cursor: auto;
|
|
31061
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31062
|
+
}
|
|
31063
|
+
.ant-input-group.ant-input-group-compact > .E_ai7qkf2 {
|
|
31064
|
+
border-radius: 0;
|
|
31065
|
+
}
|
|
31066
|
+
.E_ai7qkf2.ant-input-number {
|
|
31067
|
+
width: 100%;
|
|
31068
|
+
border-radius: 6px;
|
|
31069
|
+
}
|
|
31070
|
+
.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 {
|
|
31071
|
+
border-color: #0096ff;
|
|
31072
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31073
|
+
z-index: 1;
|
|
31074
|
+
}
|
|
31075
|
+
.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 {
|
|
31076
|
+
border-color: #e75a3a;
|
|
31077
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31078
|
+
}
|
|
31079
|
+
.E_ai7qkf2 .ant-input-number-input {
|
|
31080
|
+
height: 30px;
|
|
31081
|
+
border: 1px;
|
|
31082
|
+
padding: 5px 12px;
|
|
31083
|
+
font-size: inherit;
|
|
31084
|
+
}
|
|
31085
|
+
.E_ai7qkf2.ant-input-number-lg input {
|
|
31086
|
+
height: 38px;
|
|
31087
|
+
border: 1px;
|
|
31088
|
+
padding: 8px 16px;
|
|
31089
|
+
}
|
|
31090
|
+
.E_ai7qkf2.ant-input-number-sm input {
|
|
31091
|
+
height: 22px;
|
|
31092
|
+
border: 1px;
|
|
31093
|
+
padding: 2px 8px;
|
|
31094
|
+
}
|
|
31095
|
+
|
|
31096
|
+
.E_sx1bpnu .ant-input-sm {
|
|
31097
|
+
line-height: 18px;
|
|
31098
|
+
}
|
|
31099
|
+
|
|
31100
|
+
.E_atcz0kf .ant-input-suffix {
|
|
31101
|
+
margin-left: 8px;
|
|
31102
|
+
}
|
|
31103
|
+
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
31104
|
+
padding: 2px 7px 2px 12px;
|
|
31018
31105
|
}
|
|
31019
31106
|
|
|
31020
31107
|
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
@@ -31029,49 +31116,71 @@ button.E_n7k2c6r {
|
|
|
31029
31116
|
border-top-right-radius: 5px;
|
|
31030
31117
|
}
|
|
31031
31118
|
|
|
31032
|
-
.
|
|
31033
|
-
|
|
31034
|
-
height: 14px;
|
|
31035
|
-
width: 14px;
|
|
31036
|
-
border-radius: 50%;
|
|
31037
|
-
flex-shrink: 0;
|
|
31038
|
-
display: flex;
|
|
31119
|
+
.E_iouxfgt {
|
|
31120
|
+
display: inline-flex;
|
|
31039
31121
|
align-items: center;
|
|
31040
|
-
justify-content: center;
|
|
31041
|
-
border: 1px solid var(--color);
|
|
31042
31122
|
}
|
|
31043
|
-
.
|
|
31044
|
-
|
|
31045
|
-
|
|
31046
|
-
|
|
31047
|
-
border-radius: 50%;
|
|
31048
|
-
overflow: hidden;
|
|
31123
|
+
.E_iouxfgt .icon-inner {
|
|
31124
|
+
display: inline-flex;
|
|
31125
|
+
align-items: center;
|
|
31126
|
+
justify-content: center;
|
|
31049
31127
|
}
|
|
31050
|
-
.
|
|
31051
|
-
|
|
31052
|
-
|
|
31053
|
-
width: 100%;
|
|
31054
|
-
left: 0;
|
|
31055
|
-
top: 0;
|
|
31056
|
-
border-radius: 50%;
|
|
31057
|
-
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
31058
|
-
transform: rotate(180deg);
|
|
31128
|
+
.E_iouxfgt .icon-inner + span,
|
|
31129
|
+
.E_iouxfgt span + .icon-inner.suffix {
|
|
31130
|
+
margin-left: 4px;
|
|
31059
31131
|
}
|
|
31060
|
-
.
|
|
31061
|
-
|
|
31062
|
-
|
|
31063
|
-
width: 100%;
|
|
31064
|
-
left: 0;
|
|
31065
|
-
top: 0;
|
|
31066
|
-
margin-left: 50%;
|
|
31067
|
-
transform-origin: left;
|
|
31068
|
-
background: white;
|
|
31069
|
-
transform: rotate(0deg);
|
|
31132
|
+
.E_iouxfgt.is-rotate img,
|
|
31133
|
+
.E_iouxfgt.is-rotate svg {
|
|
31134
|
+
animation: rotate 680ms linear infinite;
|
|
31070
31135
|
}
|
|
31071
31136
|
|
|
31072
|
-
.
|
|
31073
|
-
display:
|
|
31074
|
-
|
|
31137
|
+
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
31138
|
+
display: var(--a1wfy30z-0);
|
|
31139
|
+
}
|
|
31140
|
+
.E_a1wfy30z .ant-input-number-input-wrap {
|
|
31141
|
+
padding: 4px 11px;
|
|
31142
|
+
display: inline-flex;
|
|
31143
|
+
line-height: 1.5715;
|
|
31144
|
+
height: inherit;
|
|
31145
|
+
}
|
|
31146
|
+
.E_a1wfy30z .ant-input-number-input-wrap::after {
|
|
31147
|
+
content: var(--a1wfy30z-1);
|
|
31148
|
+
display: var(--a1wfy30z-2);
|
|
31149
|
+
flex: none;
|
|
31150
|
+
align-items: center;
|
|
31151
|
+
margin-left: 4px;
|
|
31152
|
+
}
|
|
31153
|
+
.E_a1wfy30z .ant-input-number-input-wrap::before {
|
|
31154
|
+
content: var(--a1wfy30z-3);
|
|
31155
|
+
display: var(--a1wfy30z-4);
|
|
31156
|
+
flex: none;
|
|
31157
|
+
align-items: center;
|
|
31158
|
+
margin-right: 4px;
|
|
31159
|
+
cursor: auto;
|
|
31160
|
+
}
|
|
31161
|
+
.E_a1wfy30z .ant-input-number-input {
|
|
31162
|
+
padding: 0;
|
|
31163
|
+
margin: 0;
|
|
31164
|
+
height: auto;
|
|
31165
|
+
font-size: inherit;
|
|
31166
|
+
}
|
|
31167
|
+
|
|
31168
|
+
.E_i1inqkme {
|
|
31169
|
+
height: 18px;
|
|
31170
|
+
line-height: 18px;
|
|
31171
|
+
padding: 0 4px;
|
|
31172
|
+
border-radius: 4px;
|
|
31173
|
+
background: rgba(235, 239, 245, 0.6);
|
|
31174
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
31175
|
+
display: flex;
|
|
31176
|
+
align-items: center;
|
|
31177
|
+
white-space: nowrap;
|
|
31178
|
+
margin-right: 4px;
|
|
31179
|
+
}
|
|
31180
|
+
|
|
31181
|
+
.E_phljevk {
|
|
31182
|
+
display: flex;
|
|
31183
|
+
justify-content: space-between;
|
|
31075
31184
|
align-items: center;
|
|
31076
31185
|
padding: 10px 0;
|
|
31077
31186
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -31126,160 +31235,53 @@ button.E_n7k2c6r {
|
|
|
31126
31235
|
line-height: 18px;
|
|
31127
31236
|
}
|
|
31128
31237
|
|
|
31129
|
-
.
|
|
31130
|
-
|
|
31131
|
-
|
|
31132
|
-
|
|
31238
|
+
.E_c1bus5hc {
|
|
31239
|
+
--color: white;
|
|
31240
|
+
height: 14px;
|
|
31241
|
+
width: 14px;
|
|
31242
|
+
border-radius: 50%;
|
|
31243
|
+
flex-shrink: 0;
|
|
31244
|
+
display: flex;
|
|
31245
|
+
align-items: center;
|
|
31246
|
+
justify-content: center;
|
|
31247
|
+
border: 1px solid var(--color);
|
|
31133
31248
|
}
|
|
31134
|
-
.
|
|
31249
|
+
.E_c1bus5hc .circle-inner {
|
|
31135
31250
|
position: relative;
|
|
31136
|
-
|
|
31137
|
-
|
|
31138
|
-
|
|
31139
|
-
|
|
31140
|
-
}
|
|
31141
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
31142
|
-
border-color: #0080ff;
|
|
31143
|
-
}
|
|
31144
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
31145
|
-
border-color: #0080ff;
|
|
31146
|
-
background: #0080ff;
|
|
31147
|
-
}
|
|
31148
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
31149
|
-
top: 4px;
|
|
31150
|
-
left: 4px;
|
|
31151
|
-
width: 6px;
|
|
31152
|
-
height: 6px;
|
|
31153
|
-
background: #fff;
|
|
31154
|
-
}
|
|
31155
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
31156
|
-
opacity: 0.5;
|
|
31157
|
-
}
|
|
31158
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
31159
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
31160
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31161
|
-
}
|
|
31162
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
31163
|
-
background: #00122e;
|
|
31164
|
-
}
|
|
31165
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
31166
|
-
color: #00122e;
|
|
31167
|
-
opacity: 0.5;
|
|
31168
|
-
}
|
|
31169
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
31170
|
-
color: #00122e;
|
|
31171
|
-
}
|
|
31172
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio + span {
|
|
31173
|
-
display: inline-block;
|
|
31174
|
-
padding: 0;
|
|
31175
|
-
padding-left: 10px;
|
|
31176
|
-
}
|
|
31177
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
31178
|
-
margin-bottom: 0;
|
|
31179
|
-
white-space: pre-wrap;
|
|
31180
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31181
|
-
}
|
|
31182
|
-
.E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
31183
|
-
padding-left: 8px;
|
|
31184
|
-
}
|
|
31185
|
-
|
|
31186
|
-
.E_rp906go .ant-radio-button-wrapper:first-child {
|
|
31187
|
-
border-radius: 5px 0 0 5px;
|
|
31188
|
-
}
|
|
31189
|
-
.E_rp906go .ant-radio-button-wrapper:last-child {
|
|
31190
|
-
border-radius: 0 5px 5px 0;
|
|
31191
|
-
}
|
|
31192
|
-
|
|
31193
|
-
.E_rcc63c8 {
|
|
31194
|
-
color: #00122e;
|
|
31195
|
-
border-color: #ccd4e3;
|
|
31196
|
-
}
|
|
31197
|
-
.E_rcc63c8:first-child {
|
|
31198
|
-
border-color: #a3b4cc;
|
|
31199
|
-
}
|
|
31200
|
-
.E_rcc63c8.ant-radio-button-wrapper {
|
|
31201
|
-
padding: 0 12px;
|
|
31202
|
-
line-height: 32px;
|
|
31203
|
-
height: 32px;
|
|
31204
|
-
}
|
|
31205
|
-
.E_rcc63c8.ant-radio-button-wrapper > span + span {
|
|
31206
|
-
white-space: nowrap;
|
|
31207
|
-
}
|
|
31208
|
-
.ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
|
|
31209
|
-
height: 22px;
|
|
31210
|
-
padding: 0 7px;
|
|
31211
|
-
line-height: 20px;
|
|
31212
|
-
}
|
|
31213
|
-
.E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
|
|
31214
|
-
background: #ccd4e3;
|
|
31215
|
-
}
|
|
31216
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
31217
|
-
background: #0080ff;
|
|
31218
|
-
}
|
|
31219
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
31220
|
-
background: #ccd4e3;
|
|
31221
|
-
opacity: 0.5;
|
|
31222
|
-
}
|
|
31223
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
31224
|
-
border-right-color: #0080ff;
|
|
31225
|
-
}
|
|
31226
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
31227
|
-
border-color: #0080ff;
|
|
31228
|
-
}
|
|
31229
|
-
.E_rcc63c8.ant-radio-button-wrapper-checked {
|
|
31230
|
-
background: rgba(0, 136, 255, 0.1);
|
|
31231
|
-
}
|
|
31232
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled {
|
|
31233
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31234
|
-
border-color: #ccd4e3;
|
|
31235
|
-
opacity: 0.5;
|
|
31236
|
-
}
|
|
31237
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
|
|
31238
|
-
color: #00122e;
|
|
31239
|
-
border-color: #ccd4e3;
|
|
31240
|
-
}
|
|
31241
|
-
.E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
31242
|
-
color: #00122e;
|
|
31243
|
-
border-color: #ccd4e3;
|
|
31244
|
-
background: rgba(172, 186, 211, 0.6);
|
|
31245
|
-
}
|
|
31246
|
-
.E_rcc63c8 .ant-radio-button-input {
|
|
31247
|
-
margin-right: 8px;
|
|
31248
|
-
display: inline;
|
|
31249
|
-
border: none;
|
|
31250
|
-
padding: 0;
|
|
31251
|
-
width: 36px;
|
|
31252
|
-
background: transparent;
|
|
31253
|
-
}
|
|
31254
|
-
.E_rcc63c8 .ant-radio-button-input:focus {
|
|
31255
|
-
box-shadow: none;
|
|
31256
|
-
}
|
|
31257
|
-
.E_rcc63c8 .ant-radio-button-input.ant-input-number {
|
|
31258
|
-
margin-right: 0;
|
|
31259
|
-
width: initial;
|
|
31260
|
-
box-shadow: none;
|
|
31261
|
-
}
|
|
31262
|
-
.E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
31263
|
-
display: none;
|
|
31251
|
+
height: 10px;
|
|
31252
|
+
width: 10px;
|
|
31253
|
+
border-radius: 50%;
|
|
31254
|
+
overflow: hidden;
|
|
31264
31255
|
}
|
|
31265
|
-
.
|
|
31266
|
-
|
|
31256
|
+
.E_c1bus5hc .circle-content {
|
|
31257
|
+
position: absolute;
|
|
31258
|
+
height: 100%;
|
|
31259
|
+
width: 100%;
|
|
31260
|
+
left: 0;
|
|
31261
|
+
top: 0;
|
|
31262
|
+
border-radius: 50%;
|
|
31263
|
+
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
31264
|
+
transform: rotate(180deg);
|
|
31267
31265
|
}
|
|
31268
|
-
.
|
|
31269
|
-
|
|
31270
|
-
|
|
31271
|
-
|
|
31272
|
-
|
|
31266
|
+
.E_c1bus5hc .circle-child {
|
|
31267
|
+
position: absolute;
|
|
31268
|
+
height: 100%;
|
|
31269
|
+
width: 100%;
|
|
31270
|
+
left: 0;
|
|
31271
|
+
top: 0;
|
|
31272
|
+
margin-left: 50%;
|
|
31273
|
+
transform-origin: left;
|
|
31274
|
+
background: white;
|
|
31275
|
+
transform: rotate(0deg);
|
|
31273
31276
|
}
|
|
31274
31277
|
|
|
31275
|
-
.
|
|
31276
|
-
|
|
31277
|
-
width: 56px !important;
|
|
31278
|
-
margin-right: 4px;
|
|
31278
|
+
.E_owd0kml {
|
|
31279
|
+
display: inline-block;
|
|
31279
31280
|
}
|
|
31280
31281
|
|
|
31281
|
-
.
|
|
31282
|
-
|
|
31282
|
+
.E_h1jsgezc {
|
|
31283
|
+
visibility: hidden;
|
|
31284
|
+
position: absolute;
|
|
31283
31285
|
}
|
|
31284
31286
|
|
|
31285
31287
|
.E_i11gg7mj .ant-input-prefix {
|
|
@@ -31363,391 +31365,37 @@ button.E_n7k2c6r {
|
|
|
31363
31365
|
margin-left: 5px;
|
|
31364
31366
|
}
|
|
31365
31367
|
|
|
31366
|
-
.
|
|
31367
|
-
|
|
31368
|
-
}
|
|
31369
|
-
|
|
31370
|
-
.E_d1wwmmm5 .ant-select-item-group {
|
|
31371
|
-
padding: 8px 16px;
|
|
31372
|
-
line-height: 18px;
|
|
31373
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31374
|
-
height: 34px;
|
|
31375
|
-
min-height: 34px;
|
|
31376
|
-
box-sizing: border-box;
|
|
31377
|
-
margin-top: 8px;
|
|
31368
|
+
.E_t1m2x205 .ant-tooltip-arrow {
|
|
31369
|
+
display: none;
|
|
31378
31370
|
}
|
|
31379
|
-
|
|
31380
|
-
.
|
|
31381
|
-
display: flex;
|
|
31382
|
-
flex-direction: column;
|
|
31383
|
-
margin: 1px 8px;
|
|
31384
|
-
padding: 8px;
|
|
31385
|
-
border-radius: 4px;
|
|
31386
|
-
}
|
|
31387
|
-
.E_o1ugr09p .selected-icon {
|
|
31388
|
-
display: none;
|
|
31389
|
-
}
|
|
31390
|
-
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
31391
|
-
padding-left: 8px;
|
|
31392
|
-
}
|
|
31393
|
-
.E_o1ugr09p.ant-select-item-option-selected {
|
|
31394
|
-
background-color: white;
|
|
31395
|
-
}
|
|
31396
|
-
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
31397
|
-
color: #0080ff;
|
|
31398
|
-
}
|
|
31399
|
-
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
31400
|
-
display: block;
|
|
31401
|
-
}
|
|
31402
|
-
.E_o1ugr09p.ant-select-item-option-active {
|
|
31403
|
-
background: rgba(0, 136, 255, 0.16);
|
|
31404
|
-
}
|
|
31405
|
-
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
31406
|
-
color: #0080ff;
|
|
31407
|
-
}
|
|
31408
|
-
.E_o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
31409
|
-
background: rgba(0, 136, 255, 0.1);
|
|
31410
|
-
color: #0080ff;
|
|
31411
|
-
}
|
|
31412
|
-
|
|
31413
|
-
.E_o1ifxsq4 {
|
|
31414
|
-
display: flex;
|
|
31415
|
-
justify-content: space-between;
|
|
31416
|
-
height: 20px;
|
|
31417
|
-
line-height: 20px;
|
|
31418
|
-
}
|
|
31419
|
-
.E_o1ifxsq4 .timezone-title {
|
|
31420
|
-
color: #2d3a56;
|
|
31421
|
-
overflow: hidden;
|
|
31422
|
-
text-overflow: ellipsis;
|
|
31423
|
-
}
|
|
31424
|
-
|
|
31425
|
-
.E_o1zue7 {
|
|
31426
|
-
display: flex;
|
|
31427
|
-
justify-content: space-between;
|
|
31428
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31429
|
-
height: 18px;
|
|
31430
|
-
line-height: 18px;
|
|
31431
|
-
margin-top: 2px;
|
|
31432
|
-
}
|
|
31433
|
-
|
|
31434
|
-
.E_tyfmlxg {
|
|
31435
|
-
border: none;
|
|
31436
|
-
margin-right: 0;
|
|
31437
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31438
|
-
}
|
|
31439
|
-
|
|
31440
|
-
.E_o18uybox {
|
|
31441
|
-
pointer-events: none;
|
|
31442
|
-
height: 32px;
|
|
31443
|
-
width: 100%;
|
|
31444
|
-
opacity: 0;
|
|
31445
|
-
}
|
|
31446
|
-
|
|
31447
|
-
.E_s1sck0th {
|
|
31448
|
-
padding: 0 8px;
|
|
31449
|
-
border-radius: 4px;
|
|
31450
|
-
}
|
|
31451
|
-
|
|
31452
|
-
.E_m855nr1 {
|
|
31453
|
-
padding: 2px 8px;
|
|
31454
|
-
border-radius: 3px;
|
|
31455
|
-
}
|
|
31456
|
-
|
|
31457
|
-
.E_l1270xpg {
|
|
31458
|
-
padding: 3px 8px;
|
|
31459
|
-
border-radius: 2px;
|
|
31460
|
-
}
|
|
31461
|
-
|
|
31462
|
-
.E_t14rextb.ant-tag:hover {
|
|
31463
|
-
opacity: unset;
|
|
31464
|
-
}
|
|
31465
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
31466
|
-
margin: 0;
|
|
31467
|
-
margin-right: 8px;
|
|
31468
|
-
display: inline-flex;
|
|
31469
|
-
align-items: center;
|
|
31470
|
-
border: none;
|
|
31471
|
-
}
|
|
31472
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
31473
|
-
width: 16px;
|
|
31474
|
-
height: 16px;
|
|
31475
|
-
color: inherit;
|
|
31476
|
-
margin-left: 4px;
|
|
31477
|
-
opacity: 0.6;
|
|
31478
|
-
display: inline-flex;
|
|
31479
|
-
}
|
|
31480
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
31481
|
-
opacity: 1;
|
|
31482
|
-
}
|
|
31483
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
31484
|
-
color: #0080ff;
|
|
31485
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
31486
|
-
}
|
|
31487
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
31488
|
-
color: #f0483e;
|
|
31489
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
31490
|
-
}
|
|
31491
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
31492
|
-
color: #e07f00;
|
|
31493
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
31494
|
-
}
|
|
31495
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
31496
|
-
color: #008f4c;
|
|
31497
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
31498
|
-
}
|
|
31499
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
31500
|
-
color: #1d326c;
|
|
31501
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
31502
|
-
}
|
|
31503
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
31504
|
-
color: #7E41FF;
|
|
31505
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
31506
|
-
}
|
|
31507
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
31508
|
-
color: #fff;
|
|
31509
|
-
}
|
|
31510
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
31511
|
-
background-color: #f0483e;
|
|
31512
|
-
}
|
|
31513
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
31514
|
-
background-color: #fea008;
|
|
31515
|
-
}
|
|
31516
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
31517
|
-
background-color: #00ba5d;
|
|
31518
|
-
}
|
|
31519
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
31520
|
-
background-color: #0080ff;
|
|
31521
|
-
}
|
|
31522
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
31523
|
-
background-color: #6b7d99;
|
|
31524
|
-
}
|
|
31525
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
31526
|
-
background-color: #7E41FF;
|
|
31527
|
-
}
|
|
31528
|
-
|
|
31529
|
-
.E_fzh9mnb {
|
|
31530
|
-
width: 100%;
|
|
31531
|
-
height: 100%;
|
|
31532
|
-
min-height: 124px;
|
|
31533
|
-
display: flex;
|
|
31534
|
-
flex-direction: column;
|
|
31535
|
-
justify-content: center;
|
|
31536
|
-
align-items: center;
|
|
31537
|
-
}
|
|
31538
|
-
.E_fzh9mnb .error-text {
|
|
31539
|
-
color: rgba(10, 37, 85, 0.6);
|
|
31540
|
-
margin-bottom: 16px;
|
|
31541
|
-
font-size: 18px;
|
|
31542
|
-
}
|
|
31543
|
-
|
|
31544
|
-
.E_iq1gosr {
|
|
31545
|
-
display: inline-block;
|
|
31546
|
-
}
|
|
31547
|
-
|
|
31548
|
-
.E_f7pxqmh {
|
|
31549
|
-
width: 100%;
|
|
31550
|
-
margin-bottom: 0 !important;
|
|
31551
|
-
flex-flow: nowrap !important;
|
|
31552
|
-
line-break: auto;
|
|
31553
|
-
}
|
|
31554
|
-
.E_f7pxqmh > .ant-form-item-label {
|
|
31555
|
-
text-align: left !important;
|
|
31556
|
-
padding-bottom: 0 !important;
|
|
31557
|
-
}
|
|
31558
|
-
.E_f7pxqmh > .ant-form-item-label > label {
|
|
31559
|
-
min-height: 32px;
|
|
31560
|
-
height: auto;
|
|
31561
|
-
font-size: 13px;
|
|
31562
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31563
|
-
white-space: normal;
|
|
31564
|
-
}
|
|
31565
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
31566
|
-
border-color: #ff4d4f !important;
|
|
31567
|
-
}
|
|
31568
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
31569
|
-
border-color: #ff4d4f !important;
|
|
31570
|
-
}
|
|
31571
|
-
.E_f7pxqmh .ant-form-item-explain {
|
|
31572
|
-
margin-top: 4px;
|
|
31573
|
-
font-size: 12px;
|
|
31574
|
-
min-height: 0px;
|
|
31575
|
-
}
|
|
31576
|
-
.E_f7pxqmh .ant-form-item-extra {
|
|
31577
|
-
font-size: 12px;
|
|
31578
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31579
|
-
min-height: 0px;
|
|
31580
|
-
}
|
|
31581
|
-
|
|
31582
|
-
.E_iouxfgt {
|
|
31583
|
-
display: inline-flex;
|
|
31584
|
-
align-items: center;
|
|
31585
|
-
}
|
|
31586
|
-
.E_iouxfgt .icon-inner {
|
|
31587
|
-
display: inline-flex;
|
|
31588
|
-
align-items: center;
|
|
31589
|
-
justify-content: center;
|
|
31590
|
-
}
|
|
31591
|
-
.E_iouxfgt .icon-inner + span,
|
|
31592
|
-
.E_iouxfgt span + .icon-inner.suffix {
|
|
31593
|
-
margin-left: 4px;
|
|
31594
|
-
}
|
|
31595
|
-
.E_iouxfgt.is-rotate img,
|
|
31596
|
-
.E_iouxfgt.is-rotate svg {
|
|
31597
|
-
animation: rotate 680ms linear infinite;
|
|
31598
|
-
}
|
|
31599
|
-
|
|
31600
|
-
.E_t1m2x205 .ant-tooltip-arrow {
|
|
31601
|
-
display: none;
|
|
31602
|
-
}
|
|
31603
|
-
.E_t1m2x205 .ant-tooltip-inner {
|
|
31604
|
-
background: rgba(23, 38, 64, 0.8);
|
|
31371
|
+
.E_t1m2x205 .ant-tooltip-inner {
|
|
31372
|
+
background: rgba(23, 38, 64, 0.8);
|
|
31605
31373
|
border-radius: 4px;
|
|
31606
31374
|
}
|
|
31607
31375
|
.E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
31608
31376
|
visibility: hidden;
|
|
31609
31377
|
}
|
|
31610
31378
|
|
|
31611
|
-
.
|
|
31612
|
-
|
|
31613
|
-
|
|
31614
|
-
.E_ai7qkf2 .ant-input-number-input-wrap {
|
|
31615
|
-
display: inline-flex;
|
|
31616
|
-
line-height: 1.5715;
|
|
31617
|
-
height: 100%;
|
|
31618
|
-
width: 100%;
|
|
31619
|
-
}
|
|
31620
|
-
.E_ai7qkf2 .ant-input-number-input-wrap::after {
|
|
31621
|
-
content: var(--ai7qkf2-1);
|
|
31622
|
-
display: var(--ai7qkf2-2);
|
|
31623
|
-
flex: none;
|
|
31624
|
-
align-items: center;
|
|
31625
|
-
margin-left: 4px;
|
|
31626
|
-
padding: 5px 12px 5px 0;
|
|
31627
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31628
|
-
}
|
|
31629
|
-
.E_ai7qkf2 .ant-input-number-input-wrap::before {
|
|
31630
|
-
content: var(--ai7qkf2-3);
|
|
31631
|
-
display: var(--ai7qkf2-4);
|
|
31632
|
-
flex: none;
|
|
31633
|
-
align-items: center;
|
|
31634
|
-
margin-right: 4px;
|
|
31635
|
-
cursor: auto;
|
|
31636
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31637
|
-
}
|
|
31638
|
-
.ant-input-group.ant-input-group-compact > .E_ai7qkf2 {
|
|
31639
|
-
border-radius: 0;
|
|
31640
|
-
}
|
|
31641
|
-
.E_ai7qkf2.ant-input-number {
|
|
31642
|
-
width: 100%;
|
|
31643
|
-
border-radius: 6px;
|
|
31644
|
-
}
|
|
31645
|
-
.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 {
|
|
31646
|
-
border-color: #0096ff;
|
|
31647
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31648
|
-
z-index: 1;
|
|
31649
|
-
}
|
|
31650
|
-
.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 {
|
|
31651
|
-
border-color: #e75a3a;
|
|
31652
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31653
|
-
}
|
|
31654
|
-
.E_ai7qkf2 .ant-input-number-input {
|
|
31655
|
-
height: 30px;
|
|
31656
|
-
border: 1px;
|
|
31657
|
-
padding: 5px 12px;
|
|
31658
|
-
font-size: inherit;
|
|
31659
|
-
}
|
|
31660
|
-
.E_ai7qkf2.ant-input-number-lg input {
|
|
31661
|
-
height: 38px;
|
|
31662
|
-
border: 1px;
|
|
31663
|
-
padding: 8px 16px;
|
|
31664
|
-
}
|
|
31665
|
-
.E_ai7qkf2.ant-input-number-sm input {
|
|
31666
|
-
height: 22px;
|
|
31667
|
-
border: 1px;
|
|
31668
|
-
padding: 2px 8px;
|
|
31669
|
-
}
|
|
31670
|
-
|
|
31671
|
-
.E_tju3gfj .date {
|
|
31672
|
-
margin-right: 4px;
|
|
31673
|
-
}
|
|
31674
|
-
|
|
31675
|
-
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
31676
|
-
display: var(--a1wfy30z-0);
|
|
31677
|
-
}
|
|
31678
|
-
.E_a1wfy30z .ant-input-number-input-wrap {
|
|
31679
|
-
padding: 4px 11px;
|
|
31680
|
-
display: inline-flex;
|
|
31681
|
-
line-height: 1.5715;
|
|
31682
|
-
height: inherit;
|
|
31683
|
-
}
|
|
31684
|
-
.E_a1wfy30z .ant-input-number-input-wrap::after {
|
|
31685
|
-
content: var(--a1wfy30z-1);
|
|
31686
|
-
display: var(--a1wfy30z-2);
|
|
31687
|
-
flex: none;
|
|
31688
|
-
align-items: center;
|
|
31689
|
-
margin-left: 4px;
|
|
31690
|
-
}
|
|
31691
|
-
.E_a1wfy30z .ant-input-number-input-wrap::before {
|
|
31692
|
-
content: var(--a1wfy30z-3);
|
|
31693
|
-
display: var(--a1wfy30z-4);
|
|
31694
|
-
flex: none;
|
|
31695
|
-
align-items: center;
|
|
31696
|
-
margin-right: 4px;
|
|
31697
|
-
cursor: auto;
|
|
31698
|
-
}
|
|
31699
|
-
.E_a1wfy30z .ant-input-number-input {
|
|
31700
|
-
padding: 0;
|
|
31701
|
-
margin: 0;
|
|
31702
|
-
height: auto;
|
|
31703
|
-
font-size: inherit;
|
|
31704
|
-
}
|
|
31705
|
-
|
|
31706
|
-
.E_a1b5xrg3 .user-icon-inner {
|
|
31707
|
-
display: inline-flex;
|
|
31708
|
-
align-items: center;
|
|
31709
|
-
justify-content: center;
|
|
31710
|
-
color: #fff;
|
|
31711
|
-
font-weight: bold;
|
|
31712
|
-
font-size: 12px;
|
|
31713
|
-
width: 24px;
|
|
31714
|
-
height: 24px;
|
|
31715
|
-
border-radius: 50%;
|
|
31716
|
-
background: var(--a1b5xrg3-0);
|
|
31717
|
-
}
|
|
31718
|
-
.E_a1b5xrg3.btn-item {
|
|
31719
|
-
transition: all 160ms ease;
|
|
31720
|
-
cursor: pointer;
|
|
31721
|
-
width: 56px;
|
|
31722
|
-
height: 40px;
|
|
31723
|
-
display: inline-flex;
|
|
31724
|
-
align-items: center;
|
|
31725
|
-
justify-content: center;
|
|
31726
|
-
border-radius: 6px;
|
|
31379
|
+
.E_ccrbeuz .ant-collapse-item {
|
|
31380
|
+
border: 0px;
|
|
31381
|
+
background-color: #fff;
|
|
31727
31382
|
}
|
|
31728
|
-
.
|
|
31729
|
-
|
|
31383
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
31384
|
+
padding-top: 0px;
|
|
31385
|
+
padding-bottom: 0px;
|
|
31386
|
+
padding-left: 0px !important;
|
|
31387
|
+
padding-right: 24px;
|
|
31730
31388
|
}
|
|
31731
|
-
.
|
|
31732
|
-
|
|
31733
|
-
transition: all 320ms ease;
|
|
31389
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
31390
|
+
right: 0px;
|
|
31734
31391
|
}
|
|
31735
|
-
|
|
31736
|
-
|
|
31737
|
-
height: 18px;
|
|
31738
|
-
line-height: 18px;
|
|
31739
|
-
padding: 0 4px;
|
|
31740
|
-
border-radius: 4px;
|
|
31741
|
-
background: rgba(235, 239, 245, 0.6);
|
|
31742
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
31743
|
-
display: flex;
|
|
31744
|
-
align-items: center;
|
|
31745
|
-
white-space: nowrap;
|
|
31746
|
-
margin-right: 4px;
|
|
31392
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
31393
|
+
padding: 0px;
|
|
31747
31394
|
}
|
|
31748
31395
|
|
|
31749
|
-
.
|
|
31750
|
-
|
|
31396
|
+
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
31397
|
+
padding-right: 0px;
|
|
31398
|
+
cursor: default;
|
|
31751
31399
|
}
|
|
31752
31400
|
|
|
31753
31401
|
.E_dsnbhzf {
|
|
@@ -32162,83 +31810,295 @@ button.E_n7k2c6r {
|
|
|
32162
31810
|
font-size: 13px;
|
|
32163
31811
|
line-height: 20px;
|
|
32164
31812
|
}
|
|
32165
|
-
|
|
32166
|
-
.E_t17uajlu {
|
|
32167
|
-
font-family: Inter;
|
|
32168
|
-
font-style: normal;
|
|
32169
|
-
font-weight: normal;
|
|
32170
|
-
font-feature-settings: "zero" on;
|
|
32171
|
-
font-size: 13px;
|
|
32172
|
-
line-height: 20px;
|
|
31813
|
+
|
|
31814
|
+
.E_t17uajlu {
|
|
31815
|
+
font-family: Inter;
|
|
31816
|
+
font-style: normal;
|
|
31817
|
+
font-weight: normal;
|
|
31818
|
+
font-feature-settings: "zero" on;
|
|
31819
|
+
font-size: 13px;
|
|
31820
|
+
line-height: 20px;
|
|
31821
|
+
}
|
|
31822
|
+
|
|
31823
|
+
.E_t114zbyz {
|
|
31824
|
+
font-family: Inter;
|
|
31825
|
+
font-style: normal;
|
|
31826
|
+
font-weight: normal;
|
|
31827
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31828
|
+
font-size: 12px;
|
|
31829
|
+
line-height: 18px;
|
|
31830
|
+
}
|
|
31831
|
+
|
|
31832
|
+
.E_t1il0kvi {
|
|
31833
|
+
font-family: Inter;
|
|
31834
|
+
font-style: normal;
|
|
31835
|
+
font-weight: 500;
|
|
31836
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31837
|
+
font-size: 12px;
|
|
31838
|
+
line-height: 18px;
|
|
31839
|
+
}
|
|
31840
|
+
|
|
31841
|
+
.E_t10dv8p1 {
|
|
31842
|
+
font-family: Inter;
|
|
31843
|
+
font-style: normal;
|
|
31844
|
+
font-weight: normal;
|
|
31845
|
+
font-feature-settings: "zero" on;
|
|
31846
|
+
font-size: 12px;
|
|
31847
|
+
line-height: 18px;
|
|
31848
|
+
}
|
|
31849
|
+
|
|
31850
|
+
.E_tc2oqpq {
|
|
31851
|
+
font-family: Inter;
|
|
31852
|
+
font-style: normal;
|
|
31853
|
+
font-weight: 500;
|
|
31854
|
+
font-feature-settings: "zero" on;
|
|
31855
|
+
font-size: 12px;
|
|
31856
|
+
line-height: 18px;
|
|
31857
|
+
}
|
|
31858
|
+
|
|
31859
|
+
.E_tzvddmc {
|
|
31860
|
+
font-family: Inter;
|
|
31861
|
+
font-style: normal;
|
|
31862
|
+
font-weight: bold;
|
|
31863
|
+
font-feature-settings: "zero" on;
|
|
31864
|
+
font-size: 16px;
|
|
31865
|
+
line-height: 24px;
|
|
31866
|
+
}
|
|
31867
|
+
|
|
31868
|
+
.E_u18llj45 {
|
|
31869
|
+
font-family: Inter;
|
|
31870
|
+
font-style: normal;
|
|
31871
|
+
font-weight: normal;
|
|
31872
|
+
font-size: 10px;
|
|
31873
|
+
line-height: 12px;
|
|
31874
|
+
}
|
|
31875
|
+
|
|
31876
|
+
.E_rapgekc.ant-radio-wrapper {
|
|
31877
|
+
display: inline-flex;
|
|
31878
|
+
align-items: baseline;
|
|
31879
|
+
white-space: pre-wrap;
|
|
31880
|
+
}
|
|
31881
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio {
|
|
31882
|
+
position: relative;
|
|
31883
|
+
top: 3px;
|
|
31884
|
+
}
|
|
31885
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
31886
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31887
|
+
}
|
|
31888
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
31889
|
+
border-color: #0080ff;
|
|
31890
|
+
}
|
|
31891
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
31892
|
+
border-color: #0080ff;
|
|
31893
|
+
background: #0080ff;
|
|
31894
|
+
}
|
|
31895
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
31896
|
+
top: 4px;
|
|
31897
|
+
left: 4px;
|
|
31898
|
+
width: 6px;
|
|
31899
|
+
height: 6px;
|
|
31900
|
+
background: #fff;
|
|
31901
|
+
}
|
|
31902
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
31903
|
+
opacity: 0.5;
|
|
31904
|
+
}
|
|
31905
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
31906
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31907
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31908
|
+
}
|
|
31909
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
31910
|
+
background: #00122e;
|
|
31911
|
+
}
|
|
31912
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
31913
|
+
color: #00122e;
|
|
31914
|
+
opacity: 0.5;
|
|
31915
|
+
}
|
|
31916
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
31917
|
+
color: #00122e;
|
|
31918
|
+
}
|
|
31919
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span {
|
|
31920
|
+
display: inline-block;
|
|
31921
|
+
padding: 0;
|
|
31922
|
+
padding-left: 10px;
|
|
31923
|
+
}
|
|
31924
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
31925
|
+
margin-bottom: 0;
|
|
31926
|
+
white-space: pre-wrap;
|
|
31927
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31928
|
+
}
|
|
31929
|
+
.E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
31930
|
+
padding-left: 8px;
|
|
31931
|
+
}
|
|
31932
|
+
|
|
31933
|
+
.E_rp906go .ant-radio-button-wrapper:first-child {
|
|
31934
|
+
border-radius: 5px 0 0 5px;
|
|
31935
|
+
}
|
|
31936
|
+
.E_rp906go .ant-radio-button-wrapper:last-child {
|
|
31937
|
+
border-radius: 0 5px 5px 0;
|
|
31938
|
+
}
|
|
31939
|
+
|
|
31940
|
+
.E_rcc63c8 {
|
|
31941
|
+
color: #00122e;
|
|
31942
|
+
border-color: #ccd4e3;
|
|
31943
|
+
}
|
|
31944
|
+
.E_rcc63c8:first-child {
|
|
31945
|
+
border-color: #a3b4cc;
|
|
31946
|
+
}
|
|
31947
|
+
.E_rcc63c8.ant-radio-button-wrapper {
|
|
31948
|
+
padding: 0 12px;
|
|
31949
|
+
line-height: 32px;
|
|
31950
|
+
height: 32px;
|
|
31951
|
+
}
|
|
31952
|
+
.E_rcc63c8.ant-radio-button-wrapper > span + span {
|
|
31953
|
+
white-space: nowrap;
|
|
31954
|
+
}
|
|
31955
|
+
.ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
|
|
31956
|
+
height: 22px;
|
|
31957
|
+
padding: 0 7px;
|
|
31958
|
+
line-height: 20px;
|
|
31959
|
+
}
|
|
31960
|
+
.E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
|
|
31961
|
+
background: #ccd4e3;
|
|
31962
|
+
}
|
|
31963
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
31964
|
+
background: #0080ff;
|
|
31965
|
+
}
|
|
31966
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
31967
|
+
background: #ccd4e3;
|
|
31968
|
+
opacity: 0.5;
|
|
31969
|
+
}
|
|
31970
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
31971
|
+
border-right-color: #0080ff;
|
|
31972
|
+
}
|
|
31973
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
31974
|
+
border-color: #0080ff;
|
|
31975
|
+
}
|
|
31976
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked {
|
|
31977
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31978
|
+
}
|
|
31979
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled {
|
|
31980
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31981
|
+
border-color: #ccd4e3;
|
|
31982
|
+
opacity: 0.5;
|
|
31983
|
+
}
|
|
31984
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
|
|
31985
|
+
color: #00122e;
|
|
31986
|
+
border-color: #ccd4e3;
|
|
31987
|
+
}
|
|
31988
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
31989
|
+
color: #00122e;
|
|
31990
|
+
border-color: #ccd4e3;
|
|
31991
|
+
background: rgba(172, 186, 211, 0.6);
|
|
31992
|
+
}
|
|
31993
|
+
.E_rcc63c8 .ant-radio-button-input {
|
|
31994
|
+
margin-right: 8px;
|
|
31995
|
+
display: inline;
|
|
31996
|
+
border: none;
|
|
31997
|
+
padding: 0;
|
|
31998
|
+
width: 36px;
|
|
31999
|
+
background: transparent;
|
|
32000
|
+
}
|
|
32001
|
+
.E_rcc63c8 .ant-radio-button-input:focus {
|
|
32002
|
+
box-shadow: none;
|
|
32003
|
+
}
|
|
32004
|
+
.E_rcc63c8 .ant-radio-button-input.ant-input-number {
|
|
32005
|
+
margin-right: 0;
|
|
32006
|
+
width: initial;
|
|
32007
|
+
box-shadow: none;
|
|
32008
|
+
}
|
|
32009
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
32010
|
+
display: none;
|
|
32011
|
+
}
|
|
32012
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
|
|
32013
|
+
display: inline;
|
|
32014
|
+
}
|
|
32015
|
+
.E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
|
|
32016
|
+
display: inline;
|
|
32017
|
+
margin-right: 8px;
|
|
32018
|
+
padding: 0;
|
|
32019
|
+
width: 36px;
|
|
32020
|
+
}
|
|
32021
|
+
|
|
32022
|
+
.E_s1sck0th {
|
|
32023
|
+
padding: 0 8px;
|
|
32024
|
+
border-radius: 4px;
|
|
32025
|
+
}
|
|
32026
|
+
|
|
32027
|
+
.E_m855nr1 {
|
|
32028
|
+
padding: 2px 8px;
|
|
32029
|
+
border-radius: 3px;
|
|
32030
|
+
}
|
|
32031
|
+
|
|
32032
|
+
.E_l1270xpg {
|
|
32033
|
+
padding: 3px 8px;
|
|
32034
|
+
border-radius: 2px;
|
|
32035
|
+
}
|
|
32036
|
+
|
|
32037
|
+
.E_t14rextb.ant-tag:hover {
|
|
32038
|
+
opacity: unset;
|
|
32039
|
+
}
|
|
32040
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
32041
|
+
margin: 0;
|
|
32042
|
+
margin-right: 8px;
|
|
32043
|
+
display: inline-flex;
|
|
32044
|
+
align-items: center;
|
|
32045
|
+
border: none;
|
|
32046
|
+
}
|
|
32047
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
32048
|
+
width: 16px;
|
|
32049
|
+
height: 16px;
|
|
32050
|
+
color: inherit;
|
|
32051
|
+
margin-left: 4px;
|
|
32052
|
+
opacity: 0.6;
|
|
32053
|
+
display: inline-flex;
|
|
32054
|
+
}
|
|
32055
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
32056
|
+
opacity: 1;
|
|
32057
|
+
}
|
|
32058
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
32059
|
+
color: #0080ff;
|
|
32060
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32061
|
+
}
|
|
32062
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
32063
|
+
color: #f0483e;
|
|
32064
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
32065
|
+
}
|
|
32066
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
32067
|
+
color: #e07f00;
|
|
32068
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
32173
32069
|
}
|
|
32174
|
-
|
|
32175
|
-
|
|
32176
|
-
|
|
32177
|
-
font-style: normal;
|
|
32178
|
-
font-weight: normal;
|
|
32179
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
32180
|
-
font-size: 12px;
|
|
32181
|
-
line-height: 18px;
|
|
32070
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
32071
|
+
color: #008f4c;
|
|
32072
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
32182
32073
|
}
|
|
32183
|
-
|
|
32184
|
-
|
|
32185
|
-
|
|
32186
|
-
font-style: normal;
|
|
32187
|
-
font-weight: 500;
|
|
32188
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
32189
|
-
font-size: 12px;
|
|
32190
|
-
line-height: 18px;
|
|
32074
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
32075
|
+
color: #1d326c;
|
|
32076
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32191
32077
|
}
|
|
32192
|
-
|
|
32193
|
-
|
|
32194
|
-
|
|
32195
|
-
font-style: normal;
|
|
32196
|
-
font-weight: normal;
|
|
32197
|
-
font-feature-settings: "zero" on;
|
|
32198
|
-
font-size: 12px;
|
|
32199
|
-
line-height: 18px;
|
|
32078
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
32079
|
+
color: #7E41FF;
|
|
32080
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
32200
32081
|
}
|
|
32201
|
-
|
|
32202
|
-
|
|
32203
|
-
font-family: Inter;
|
|
32204
|
-
font-style: normal;
|
|
32205
|
-
font-weight: 500;
|
|
32206
|
-
font-feature-settings: "zero" on;
|
|
32207
|
-
font-size: 12px;
|
|
32208
|
-
line-height: 18px;
|
|
32082
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
32083
|
+
color: #fff;
|
|
32209
32084
|
}
|
|
32210
|
-
|
|
32211
|
-
|
|
32212
|
-
font-family: Inter;
|
|
32213
|
-
font-style: normal;
|
|
32214
|
-
font-weight: bold;
|
|
32215
|
-
font-feature-settings: "zero" on;
|
|
32216
|
-
font-size: 16px;
|
|
32217
|
-
line-height: 24px;
|
|
32085
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
32086
|
+
background-color: #f0483e;
|
|
32218
32087
|
}
|
|
32219
|
-
|
|
32220
|
-
|
|
32221
|
-
font-family: Inter;
|
|
32222
|
-
font-style: normal;
|
|
32223
|
-
font-weight: normal;
|
|
32224
|
-
font-size: 10px;
|
|
32225
|
-
line-height: 12px;
|
|
32088
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
32089
|
+
background-color: #fea008;
|
|
32226
32090
|
}
|
|
32227
|
-
|
|
32228
|
-
|
|
32229
|
-
margin-left: 8px;
|
|
32091
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
32092
|
+
background-color: #00ba5d;
|
|
32230
32093
|
}
|
|
32231
|
-
.
|
|
32232
|
-
|
|
32094
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
32095
|
+
background-color: #0080ff;
|
|
32233
32096
|
}
|
|
32234
|
-
|
|
32235
|
-
|
|
32236
|
-
display: inline-block;
|
|
32097
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32098
|
+
background-color: #6b7d99;
|
|
32237
32099
|
}
|
|
32238
|
-
|
|
32239
|
-
|
|
32240
|
-
visibility: hidden;
|
|
32241
|
-
position: absolute;
|
|
32100
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32101
|
+
background-color: #7E41FF;
|
|
32242
32102
|
}
|
|
32243
32103
|
|
|
32244
32104
|
.E_cnujxq2 {
|
|
@@ -32930,45 +32790,144 @@ input.E_rf8rlle.ant-input {
|
|
|
32930
32790
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
32931
32791
|
}
|
|
32932
32792
|
|
|
32933
|
-
.
|
|
32934
|
-
|
|
32793
|
+
.E_a1b5xrg3 .user-icon-inner {
|
|
32794
|
+
display: inline-flex;
|
|
32795
|
+
align-items: center;
|
|
32796
|
+
justify-content: center;
|
|
32797
|
+
color: #fff;
|
|
32798
|
+
font-weight: bold;
|
|
32799
|
+
font-size: 12px;
|
|
32800
|
+
width: 24px;
|
|
32801
|
+
height: 24px;
|
|
32802
|
+
border-radius: 50%;
|
|
32803
|
+
background: var(--a1b5xrg3-0);
|
|
32935
32804
|
}
|
|
32936
|
-
.
|
|
32937
|
-
|
|
32805
|
+
.E_a1b5xrg3.btn-item {
|
|
32806
|
+
transition: all 160ms ease;
|
|
32807
|
+
cursor: pointer;
|
|
32808
|
+
width: 56px;
|
|
32809
|
+
height: 40px;
|
|
32810
|
+
display: inline-flex;
|
|
32811
|
+
align-items: center;
|
|
32812
|
+
justify-content: center;
|
|
32813
|
+
border-radius: 6px;
|
|
32938
32814
|
}
|
|
32939
|
-
.
|
|
32940
|
-
|
|
32815
|
+
.E_a1b5xrg3.btn-item:hover {
|
|
32816
|
+
box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
|
|
32941
32817
|
}
|
|
32942
|
-
.
|
|
32943
|
-
|
|
32944
|
-
|
|
32945
|
-
align-items: center;
|
|
32818
|
+
.E_a1b5xrg3.btn-item:active {
|
|
32819
|
+
transform: translateY(2px);
|
|
32820
|
+
transition: all 320ms ease;
|
|
32946
32821
|
}
|
|
32947
|
-
|
|
32822
|
+
|
|
32823
|
+
.E_c1yyuluq {
|
|
32824
|
+
border-radius: 8px;
|
|
32825
|
+
}
|
|
32826
|
+
.E_c1yyuluq .ant-card-body {
|
|
32827
|
+
padding: 20px 24px 24px 24px;
|
|
32828
|
+
}
|
|
32829
|
+
|
|
32830
|
+
.E_iq1gosr {
|
|
32831
|
+
display: inline-block;
|
|
32832
|
+
}
|
|
32833
|
+
|
|
32834
|
+
.E_ivqqkzv {
|
|
32835
|
+
height: 24px;
|
|
32836
|
+
width: 56px !important;
|
|
32837
|
+
margin-right: 4px;
|
|
32838
|
+
}
|
|
32839
|
+
|
|
32840
|
+
.E_c1wk4q29 {
|
|
32841
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32842
|
+
}
|
|
32843
|
+
|
|
32844
|
+
.E_tju3gfj .date {
|
|
32845
|
+
margin-right: 4px;
|
|
32846
|
+
}
|
|
32847
|
+
|
|
32848
|
+
.E_m196gn1d {
|
|
32849
|
+
min-width: 1280px;
|
|
32850
|
+
}
|
|
32851
|
+
|
|
32852
|
+
.E_s1dni7lo {
|
|
32853
|
+
width: 430px !important;
|
|
32854
|
+
}
|
|
32855
|
+
|
|
32856
|
+
.E_d1wwmmm5 .ant-select-item-group {
|
|
32857
|
+
padding: 8px 16px;
|
|
32948
32858
|
line-height: 18px;
|
|
32859
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
32860
|
+
height: 34px;
|
|
32861
|
+
min-height: 34px;
|
|
32862
|
+
box-sizing: border-box;
|
|
32863
|
+
margin-top: 8px;
|
|
32949
32864
|
}
|
|
32950
32865
|
|
|
32951
|
-
.
|
|
32952
|
-
|
|
32866
|
+
.E_o1ugr09p {
|
|
32867
|
+
display: flex;
|
|
32868
|
+
flex-direction: column;
|
|
32869
|
+
margin: 1px 8px;
|
|
32870
|
+
padding: 8px;
|
|
32871
|
+
border-radius: 4px;
|
|
32953
32872
|
}
|
|
32954
|
-
.
|
|
32955
|
-
|
|
32956
|
-
line-height: 20px;
|
|
32873
|
+
.E_o1ugr09p .selected-icon {
|
|
32874
|
+
display: none;
|
|
32957
32875
|
}
|
|
32958
|
-
.
|
|
32959
|
-
|
|
32876
|
+
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
32877
|
+
padding-left: 8px;
|
|
32878
|
+
}
|
|
32879
|
+
.E_o1ugr09p.ant-select-item-option-selected {
|
|
32880
|
+
background-color: white;
|
|
32881
|
+
}
|
|
32882
|
+
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
32883
|
+
color: #0080ff;
|
|
32884
|
+
}
|
|
32885
|
+
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
32886
|
+
display: block;
|
|
32887
|
+
}
|
|
32888
|
+
.E_o1ugr09p.ant-select-item-option-active {
|
|
32889
|
+
background: rgba(0, 136, 255, 0.16);
|
|
32890
|
+
}
|
|
32891
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
32892
|
+
color: #0080ff;
|
|
32893
|
+
}
|
|
32894
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
32895
|
+
background: rgba(0, 136, 255, 0.1);
|
|
32896
|
+
color: #0080ff;
|
|
32897
|
+
}
|
|
32898
|
+
|
|
32899
|
+
.E_o1ifxsq4 {
|
|
32900
|
+
display: flex;
|
|
32901
|
+
justify-content: space-between;
|
|
32902
|
+
height: 20px;
|
|
32960
32903
|
line-height: 20px;
|
|
32961
32904
|
}
|
|
32905
|
+
.E_o1ifxsq4 .timezone-title {
|
|
32906
|
+
color: #2d3a56;
|
|
32907
|
+
overflow: hidden;
|
|
32908
|
+
text-overflow: ellipsis;
|
|
32909
|
+
}
|
|
32962
32910
|
|
|
32963
|
-
.
|
|
32911
|
+
.E_o1zue7 {
|
|
32964
32912
|
display: flex;
|
|
32965
32913
|
justify-content: space-between;
|
|
32966
|
-
|
|
32967
|
-
|
|
32914
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32915
|
+
height: 18px;
|
|
32916
|
+
line-height: 18px;
|
|
32917
|
+
margin-top: 2px;
|
|
32968
32918
|
}
|
|
32969
32919
|
|
|
32970
|
-
.
|
|
32971
|
-
|
|
32920
|
+
.E_tyfmlxg {
|
|
32921
|
+
border: none;
|
|
32922
|
+
margin-right: 0;
|
|
32923
|
+
background: rgba(225, 230, 241, 0.6);
|
|
32924
|
+
}
|
|
32925
|
+
|
|
32926
|
+
.E_o18uybox {
|
|
32927
|
+
pointer-events: none;
|
|
32928
|
+
height: 32px;
|
|
32929
|
+
width: 100%;
|
|
32930
|
+
opacity: 0;
|
|
32972
32931
|
}
|
|
32973
32932
|
|
|
32974
32933
|
.E_h1ol2wl7 {
|
|
@@ -32977,6 +32936,43 @@ input.E_rf8rlle.ant-input {
|
|
|
32977
32936
|
padding: unset;
|
|
32978
32937
|
}
|
|
32979
32938
|
|
|
32939
|
+
.E_d11hhzf9 {
|
|
32940
|
+
width: 492px !important;
|
|
32941
|
+
margin: 40px auto !important;
|
|
32942
|
+
padding-bottom: 0 !important;
|
|
32943
|
+
}
|
|
32944
|
+
.E_d11hhzf9 .ant-modal-content {
|
|
32945
|
+
background: #fff;
|
|
32946
|
+
border-radius: 16px;
|
|
32947
|
+
}
|
|
32948
|
+
.E_d11hhzf9 .ant-modal-header {
|
|
32949
|
+
padding: 32px 40px 0;
|
|
32950
|
+
border-bottom: none;
|
|
32951
|
+
border-radius: 16px 16px 0 0;
|
|
32952
|
+
}
|
|
32953
|
+
.E_d11hhzf9 .ant-modal-close {
|
|
32954
|
+
right: 40px;
|
|
32955
|
+
top: 32px;
|
|
32956
|
+
}
|
|
32957
|
+
.E_d11hhzf9 .ant-modal-body {
|
|
32958
|
+
padding: 32px 40px;
|
|
32959
|
+
min-height: 160px;
|
|
32960
|
+
max-height: calc(100vh - 80px - 64px - var(--header-height) - var(--footer-height));
|
|
32961
|
+
overflow-y: auto;
|
|
32962
|
+
}
|
|
32963
|
+
.E_d11hhzf9 .ant-modal-footer {
|
|
32964
|
+
padding: 24px 40px;
|
|
32965
|
+
margin-top: 0;
|
|
32966
|
+
border-top: none;
|
|
32967
|
+
box-shadow: 0px 1px 0px 0px rgba(225, 230, 241, 0.6) inset;
|
|
32968
|
+
}
|
|
32969
|
+
|
|
32970
|
+
.E_f1g147n6 {
|
|
32971
|
+
display: flex;
|
|
32972
|
+
justify-content: flex-end;
|
|
32973
|
+
gap: 8px;
|
|
32974
|
+
}
|
|
32975
|
+
|
|
32980
32976
|
.E_cyms3br {
|
|
32981
32977
|
background: #fff;
|
|
32982
32978
|
width: 100%;
|
|
@@ -33030,257 +33026,45 @@ input.E_rf8rlle.ant-input {
|
|
|
33030
33026
|
justify-content: center;
|
|
33031
33027
|
}
|
|
33032
33028
|
|
|
33033
|
-
.
|
|
33034
|
-
|
|
33035
|
-
}
|
|
33036
|
-
.E_s17wv897.ant-select.ant-select-single {
|
|
33037
|
-
width: 100%;
|
|
33038
|
-
color: #2d3a56;
|
|
33039
|
-
border-color: rgba(211, 218, 235, 0.6);
|
|
33040
|
-
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
33041
|
-
font-size: 13px;
|
|
33042
|
-
}
|
|
33043
|
-
.E_s17wv897.ant-select.ant-select-single[data-size=middle] {
|
|
33044
|
-
height: 30px;
|
|
33045
|
-
}
|
|
33046
|
-
.E_s17wv897.ant-select.ant-select-single.ant-select-lg {
|
|
33047
|
-
height: 38px;
|
|
33048
|
-
font-size: 13px;
|
|
33049
|
-
}
|
|
33050
|
-
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
|
|
33051
|
-
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
33052
|
-
transition: 160ms ease;
|
|
33053
|
-
}
|
|
33054
|
-
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
33055
|
-
color: #0080ff;
|
|
33056
|
-
}
|
|
33057
|
-
.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 {
|
|
33058
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
33059
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
33060
|
-
}
|
|
33061
|
-
.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 {
|
|
33062
|
-
color: #0080ff;
|
|
33063
|
-
}
|
|
33064
|
-
.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 {
|
|
33065
|
-
border-color: #0080ff;
|
|
33066
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
33067
|
-
}
|
|
33068
|
-
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
33069
|
-
transform: rotate(180deg);
|
|
33070
|
-
}
|
|
33071
|
-
.E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
33072
|
-
background: rgba(211, 218, 235, 0.6);
|
|
33073
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
33074
|
-
cursor: "not-allowed";
|
|
33075
|
-
}
|
|
33076
|
-
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
33077
|
-
border-color: #f0483e !important;
|
|
33078
|
-
}
|
|
33079
|
-
.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 {
|
|
33080
|
-
color: #1d326c;
|
|
33081
|
-
}
|
|
33082
|
-
.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 {
|
|
33083
|
-
border-color: #0080ff;
|
|
33084
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
33085
|
-
}
|
|
33086
|
-
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
33087
|
-
transform: rotate(180deg);
|
|
33088
|
-
}
|
|
33089
|
-
|
|
33090
|
-
.E_s4ivdfu.ant-select .ant-select-selection-placeholder {
|
|
33091
|
-
opacity: 1;
|
|
33092
|
-
}
|
|
33093
|
-
.E_s4ivdfu.ant-select.select-loading-value {
|
|
33094
|
-
pointer-events: none;
|
|
33095
|
-
}
|
|
33096
|
-
|
|
33097
|
-
.E_sks9xr8.ant-select .select-hover-suffix,
|
|
33098
|
-
.E_sks9xr8.ant-select .select-active-suffix,
|
|
33099
|
-
.E_sks9xr8.ant-select .select-expanded-suffix,
|
|
33100
|
-
.E_sks9xr8.ant-select .select-expanded-search-suffix,
|
|
33101
|
-
.E_sks9xr8.ant-select .select-focus-suffix,
|
|
33102
|
-
.E_sks9xr8.ant-select .select-error-suffix,
|
|
33103
|
-
.E_sks9xr8.ant-select .select-error-hover-suffix,
|
|
33104
|
-
.E_sks9xr8.ant-select .select-error-active-suffix,
|
|
33105
|
-
.E_sks9xr8.ant-select .select-error-expanded-suffix,
|
|
33106
|
-
.E_sks9xr8.ant-select .select-error-expanded-search-suffix,
|
|
33107
|
-
.E_sks9xr8.ant-select .select-error-focus-suffix {
|
|
33108
|
-
display: none;
|
|
33109
|
-
width: 16px;
|
|
33110
|
-
height: 16px;
|
|
33111
|
-
}
|
|
33112
|
-
.E_sks9xr8.ant-select.ant-select-disabled .select-suffix {
|
|
33113
|
-
opacity: 0.5;
|
|
33114
|
-
}
|
|
33115
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-suffix {
|
|
33116
|
-
display: none;
|
|
33117
|
-
}
|
|
33118
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-expanded-search-suffix {
|
|
33119
|
-
display: inline;
|
|
33120
|
-
}
|
|
33121
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-suffix {
|
|
33122
|
-
display: none;
|
|
33123
|
-
}
|
|
33124
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-expanded-suffix {
|
|
33125
|
-
display: inline;
|
|
33126
|
-
}
|
|
33127
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-suffix {
|
|
33128
|
-
display: none;
|
|
33129
|
-
}
|
|
33130
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-hover-suffix {
|
|
33131
|
-
display: inline;
|
|
33132
|
-
}
|
|
33133
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-suffix {
|
|
33134
|
-
display: none;
|
|
33135
|
-
}
|
|
33136
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-active-suffix {
|
|
33137
|
-
display: inline;
|
|
33138
|
-
}
|
|
33139
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-suffix {
|
|
33140
|
-
display: none;
|
|
33141
|
-
}
|
|
33142
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-focus-suffix {
|
|
33143
|
-
display: inline;
|
|
33144
|
-
}
|
|
33145
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-suffix {
|
|
33146
|
-
display: none;
|
|
33147
|
-
}
|
|
33148
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-error-expanded-search-suffix {
|
|
33149
|
-
display: inline;
|
|
33150
|
-
}
|
|
33151
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-suffix {
|
|
33152
|
-
display: none;
|
|
33153
|
-
}
|
|
33154
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-error-expanded-suffix {
|
|
33155
|
-
display: inline;
|
|
33156
|
-
}
|
|
33157
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-suffix {
|
|
33158
|
-
display: none;
|
|
33159
|
-
}
|
|
33160
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-error-suffix {
|
|
33161
|
-
display: inline;
|
|
33162
|
-
}
|
|
33163
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-suffix,
|
|
33164
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-suffix {
|
|
33165
|
-
display: none;
|
|
33166
|
-
}
|
|
33167
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-hover-suffix {
|
|
33168
|
-
display: inline;
|
|
33169
|
-
}
|
|
33170
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-suffix,
|
|
33171
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-suffix {
|
|
33172
|
-
display: none;
|
|
33173
|
-
}
|
|
33174
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-active-suffix {
|
|
33175
|
-
display: inline;
|
|
33176
|
-
}
|
|
33177
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-suffix,
|
|
33178
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-suffix {
|
|
33179
|
-
display: none;
|
|
33180
|
-
}
|
|
33181
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
|
|
33182
|
-
display: inline;
|
|
33183
|
-
}
|
|
33184
|
-
|
|
33185
|
-
.E_swwhohx.ant-select .ant-select-selector {
|
|
33186
|
-
padding: 0 7px 0 12px;
|
|
33187
|
-
}
|
|
33188
|
-
.E_swwhohx.ant-select .ant-select-arrow {
|
|
33189
|
-
right: 8px;
|
|
33190
|
-
top: 50%;
|
|
33191
|
-
margin-top: -8px;
|
|
33192
|
-
width: 16px;
|
|
33193
|
-
height: 16px;
|
|
33194
|
-
display: flex;
|
|
33195
|
-
align-items: center;
|
|
33196
|
-
}
|
|
33197
|
-
.E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
|
|
33198
|
-
padding: 0 11px 0 16px;
|
|
33199
|
-
}
|
|
33200
|
-
.E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
|
|
33201
|
-
right: 12px;
|
|
33202
|
-
}
|
|
33203
|
-
.E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
|
|
33204
|
-
padding: 0 3px 0 8px;
|
|
33205
|
-
}
|
|
33206
|
-
.E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
|
|
33207
|
-
right: 4px;
|
|
33208
|
-
}
|
|
33209
|
-
.E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
|
|
33210
|
-
padding-right: 24px;
|
|
33211
|
-
}
|
|
33212
|
-
|
|
33213
|
-
.E_p2sxmsl {
|
|
33214
|
-
color: rgba(0, 21, 64, 0.3);
|
|
33215
|
-
}
|
|
33216
|
-
|
|
33217
|
-
.E_oa99sl3 {
|
|
33218
|
-
display: flex;
|
|
33219
|
-
justify-content: space-between;
|
|
33220
|
-
align-items: center;
|
|
33221
|
-
gap: 8px;
|
|
33222
|
-
}
|
|
33223
|
-
.E_oa99sl3,
|
|
33224
|
-
.E_oa99sl3 :first-child {
|
|
33225
|
-
line-height: inherit !important;
|
|
33029
|
+
.E_i5w779o {
|
|
33030
|
+
padding: 8px 0;
|
|
33226
33031
|
}
|
|
33227
|
-
|
|
33228
|
-
|
|
33229
|
-
display: flex;
|
|
33230
|
-
justify-content: space-between;
|
|
33231
|
-
align-items: center;
|
|
33232
|
-
gap: 8px;
|
|
33233
|
-
min-width: 0;
|
|
33032
|
+
.E_i5w779o .col-label {
|
|
33033
|
+
flex-shrink: unset;
|
|
33234
33034
|
}
|
|
33235
|
-
|
|
33236
|
-
|
|
33237
|
-
display: flex;
|
|
33238
|
-
align-items: center;
|
|
33239
|
-
flex-shrink: 0;
|
|
33035
|
+
.E_i5w779o .col-label * {
|
|
33036
|
+
line-height: 18px;
|
|
33240
33037
|
}
|
|
33241
|
-
|
|
33242
|
-
|
|
33038
|
+
.E_i5w779o .col-content {
|
|
33039
|
+
flex: 1 1 0;
|
|
33243
33040
|
display: flex;
|
|
33244
33041
|
align-items: center;
|
|
33245
33042
|
}
|
|
33246
|
-
.
|
|
33247
|
-
height:
|
|
33248
|
-
width: 24px;
|
|
33249
|
-
border-radius: 20px;
|
|
33250
|
-
color: #0080ff;
|
|
33251
|
-
background: rgba(0, 136, 255, 0.1);
|
|
33252
|
-
display: flex;
|
|
33253
|
-
align-items: center;
|
|
33254
|
-
justify-content: center;
|
|
33255
|
-
margin-right: 6px;
|
|
33043
|
+
.E_i5w779o .col-content * {
|
|
33044
|
+
line-height: 18px;
|
|
33256
33045
|
}
|
|
33257
33046
|
|
|
33258
|
-
.
|
|
33259
|
-
|
|
33260
|
-
width: 24px;
|
|
33261
|
-
border-radius: 6px;
|
|
33262
|
-
padding: 4px;
|
|
33263
|
-
}
|
|
33264
|
-
.E_suhck3k:hover {
|
|
33265
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
33047
|
+
.E_l18dja44 {
|
|
33048
|
+
padding: 6px 0;
|
|
33266
33049
|
}
|
|
33267
|
-
.
|
|
33268
|
-
|
|
33050
|
+
.E_l18dja44 .col-label * {
|
|
33051
|
+
font-size: 13px;
|
|
33052
|
+
line-height: 20px;
|
|
33269
33053
|
}
|
|
33270
|
-
|
|
33271
|
-
|
|
33272
|
-
|
|
33273
|
-
flex-direction: column;
|
|
33274
|
-
gap: 6px;
|
|
33054
|
+
.E_l18dja44 .col-content * {
|
|
33055
|
+
font-size: 14px;
|
|
33056
|
+
line-height: 20px;
|
|
33275
33057
|
}
|
|
33276
|
-
|
|
33277
|
-
|
|
33278
|
-
|
|
33279
|
-
|
|
33058
|
+
|
|
33059
|
+
.E_c8c2hys {
|
|
33060
|
+
display: flex;
|
|
33061
|
+
justify-content: space-between;
|
|
33062
|
+
flex: 1;
|
|
33063
|
+
min-width: 0;
|
|
33280
33064
|
}
|
|
33281
|
-
|
|
33282
|
-
|
|
33283
|
-
|
|
33065
|
+
|
|
33066
|
+
.E_n4m6c4d {
|
|
33067
|
+
color: rgba(0, 21, 64, 0.3);
|
|
33284
33068
|
}
|
|
33285
33069
|
|
|
33286
33070
|
.E_hrhfj7c {
|
|
@@ -33424,82 +33208,335 @@ input.E_rf8rlle.ant-input {
|
|
|
33424
33208
|
.E_ckhyuyx .antd5-cascader-checkbox.antd5-cascader-checkbox-checked .antd5-cascader-checkbox-inner, .E_ckhyuyx .antd5-cascader-checkbox.antd5-cascader-checkbox-indeterminate .antd5-cascader-checkbox-inner {
|
|
33425
33209
|
border: 1px solid #0080ff;
|
|
33426
33210
|
}
|
|
33427
|
-
.E_ckhyuyx .antd5-cascader-checkbox.antd5-cascader-checkbox-indeterminate .antd5-cascader-checkbox-inner {
|
|
33428
|
-
background: #0080ff;
|
|
33211
|
+
.E_ckhyuyx .antd5-cascader-checkbox.antd5-cascader-checkbox-indeterminate .antd5-cascader-checkbox-inner {
|
|
33212
|
+
background: #0080ff;
|
|
33213
|
+
}
|
|
33214
|
+
.E_ckhyuyx .antd5-cascader-checkbox.antd5-cascader-checkbox-indeterminate .antd5-cascader-checkbox-inner:after {
|
|
33215
|
+
background-color: #fff;
|
|
33216
|
+
height: 2px;
|
|
33217
|
+
width: 10px;
|
|
33218
|
+
border-radius: 2px;
|
|
33219
|
+
}
|
|
33220
|
+
.E_ckhyuyx.antd5-cascader-checkbox-wrapper-disabled {
|
|
33221
|
+
opacity: 0.5;
|
|
33222
|
+
}
|
|
33223
|
+
.E_ckhyuyx.antd5-cascader-checkbox-wrapper-disabled .antd5-cascader-checkbox-disabled .antd5-cascader-checkbox-inner {
|
|
33224
|
+
background: rgba(211, 218, 235, 0.6);
|
|
33225
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
33226
|
+
}
|
|
33227
|
+
.E_ckhyuyx.antd5-cascader-checkbox-wrapper-disabled .antd5-cascader-checkbox-disabled.antd5-cascader-checkbox-checked .antd5-cascader-checkbox-inner:after {
|
|
33228
|
+
border-color: #2d3a56;
|
|
33229
|
+
}
|
|
33230
|
+
.E_ckhyuyx.antd5-cascader-checkbox-wrapper-disabled .antd5-cascader-checkbox-disabled.antd5-cascader-checkbox-indeterminate .antd5-cascader-checkbox-inner:after {
|
|
33231
|
+
background: #2d3a56;
|
|
33232
|
+
}
|
|
33233
|
+
.E_ckhyuyx .antd5-cascader-checkbox + span, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span {
|
|
33234
|
+
padding: 0;
|
|
33235
|
+
}
|
|
33236
|
+
.E_ckhyuyx .antd5-cascader-checkbox + span .main, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .main {
|
|
33237
|
+
display: inline-block;
|
|
33238
|
+
margin-left: 12px;
|
|
33239
|
+
color: #2d3a56;
|
|
33240
|
+
}
|
|
33241
|
+
.E_ckhyuyx .antd5-cascader-checkbox + span .sub, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .sub {
|
|
33242
|
+
margin-left: 28px;
|
|
33243
|
+
color: rgba(44, 56, 82, 0.6);
|
|
33244
|
+
}
|
|
33245
|
+
.E_ckhyuyx.compact .antd5-cascader-checkbox + span .main, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .main {
|
|
33246
|
+
margin-left: 8px;
|
|
33247
|
+
}
|
|
33248
|
+
.E_ckhyuyx.compact .antd5-cascader-checkbox + span .sub, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .sub {
|
|
33249
|
+
margin-left: 24px;
|
|
33250
|
+
}
|
|
33251
|
+
.E_ckhyuyx .E_dt9qoak {
|
|
33252
|
+
width: 400px;
|
|
33253
|
+
}
|
|
33254
|
+
|
|
33255
|
+
.E_c1fmq9lv ul.antd5-cascader-menu {
|
|
33256
|
+
padding: 4px;
|
|
33257
|
+
height: 158px;
|
|
33258
|
+
}
|
|
33259
|
+
.E_c1fmq9lv.E_ckhyuyx {
|
|
33260
|
+
border-radius: 6px;
|
|
33261
|
+
}
|
|
33262
|
+
.E_c1fmq9lv.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
|
|
33263
|
+
min-width: 200px;
|
|
33264
|
+
font-size: 12px;
|
|
33265
|
+
}
|
|
33266
|
+
.E_c1fmq9lv.E_ckhyuyx .E_c1iye0zj {
|
|
33267
|
+
padding: 6px 12px;
|
|
33268
|
+
height: 18px;
|
|
33269
|
+
font-size: 12px;
|
|
33270
|
+
}
|
|
33271
|
+
|
|
33272
|
+
.E_c1evusvc ul.antd5-cascader-menu {
|
|
33273
|
+
padding: 8px;
|
|
33274
|
+
height: 320px;
|
|
33275
|
+
}
|
|
33276
|
+
.E_c1evusvc.E_ckhyuyx {
|
|
33277
|
+
border-radius: 10px;
|
|
33278
|
+
}
|
|
33279
|
+
.E_c1evusvc.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
|
|
33280
|
+
min-width: 296px;
|
|
33281
|
+
padding: 8px;
|
|
33282
|
+
}
|
|
33283
|
+
.E_c1evusvc.E_ckhyuyx .E_c1iye0zj {
|
|
33284
|
+
height: 22px;
|
|
33285
|
+
padding: 8px 16px;
|
|
33286
|
+
font-size: 14px;
|
|
33287
|
+
}
|
|
33288
|
+
|
|
33289
|
+
.E_ryby9ds {
|
|
33290
|
+
display: flex;
|
|
33291
|
+
align-items: center;
|
|
33292
|
+
}
|
|
33293
|
+
.E_ryby9ds .order {
|
|
33294
|
+
height: 24px;
|
|
33295
|
+
width: 24px;
|
|
33296
|
+
border-radius: 20px;
|
|
33297
|
+
color: #0080ff;
|
|
33298
|
+
background: rgba(0, 136, 255, 0.1);
|
|
33299
|
+
display: flex;
|
|
33300
|
+
align-items: center;
|
|
33301
|
+
justify-content: center;
|
|
33302
|
+
margin-right: 6px;
|
|
33303
|
+
}
|
|
33304
|
+
|
|
33305
|
+
.E_suhck3k {
|
|
33306
|
+
height: 24px;
|
|
33307
|
+
width: 24px;
|
|
33308
|
+
border-radius: 6px;
|
|
33309
|
+
padding: 4px;
|
|
33310
|
+
}
|
|
33311
|
+
.E_suhck3k:hover {
|
|
33312
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
33313
|
+
}
|
|
33314
|
+
.E_suhck3k:hover svg path {
|
|
33315
|
+
fill: blue;
|
|
33316
|
+
}
|
|
33317
|
+
|
|
33318
|
+
.E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
|
|
33319
|
+
border-radius: 6px;
|
|
33320
|
+
}
|
|
33321
|
+
.E_s17wv897.ant-select.ant-select-single {
|
|
33322
|
+
width: 100%;
|
|
33323
|
+
color: #2d3a56;
|
|
33324
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
33325
|
+
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
33326
|
+
font-size: 13px;
|
|
33327
|
+
}
|
|
33328
|
+
.E_s17wv897.ant-select.ant-select-single[data-size=middle] {
|
|
33329
|
+
height: 30px;
|
|
33330
|
+
}
|
|
33331
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-lg {
|
|
33332
|
+
height: 38px;
|
|
33333
|
+
font-size: 13px;
|
|
33334
|
+
}
|
|
33335
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
|
|
33336
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
33337
|
+
transition: 160ms ease;
|
|
33338
|
+
}
|
|
33339
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
33340
|
+
color: #0080ff;
|
|
33341
|
+
}
|
|
33342
|
+
.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 {
|
|
33343
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
33344
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
33345
|
+
}
|
|
33346
|
+
.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 {
|
|
33347
|
+
color: #0080ff;
|
|
33348
|
+
}
|
|
33349
|
+
.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 {
|
|
33350
|
+
border-color: #0080ff;
|
|
33351
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
33352
|
+
}
|
|
33353
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
33354
|
+
transform: rotate(180deg);
|
|
33355
|
+
}
|
|
33356
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
33357
|
+
background: rgba(211, 218, 235, 0.6);
|
|
33358
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
33359
|
+
cursor: "not-allowed";
|
|
33360
|
+
}
|
|
33361
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
33362
|
+
border-color: #f0483e !important;
|
|
33363
|
+
}
|
|
33364
|
+
.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 {
|
|
33365
|
+
color: #1d326c;
|
|
33366
|
+
}
|
|
33367
|
+
.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 {
|
|
33368
|
+
border-color: #0080ff;
|
|
33369
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
33370
|
+
}
|
|
33371
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
33372
|
+
transform: rotate(180deg);
|
|
33373
|
+
}
|
|
33374
|
+
|
|
33375
|
+
.E_s4ivdfu.ant-select .ant-select-selection-placeholder {
|
|
33376
|
+
opacity: 1;
|
|
33377
|
+
}
|
|
33378
|
+
.E_s4ivdfu.ant-select.select-loading-value {
|
|
33379
|
+
pointer-events: none;
|
|
33380
|
+
}
|
|
33381
|
+
|
|
33382
|
+
.E_sks9xr8.ant-select .select-hover-suffix,
|
|
33383
|
+
.E_sks9xr8.ant-select .select-active-suffix,
|
|
33384
|
+
.E_sks9xr8.ant-select .select-expanded-suffix,
|
|
33385
|
+
.E_sks9xr8.ant-select .select-expanded-search-suffix,
|
|
33386
|
+
.E_sks9xr8.ant-select .select-focus-suffix,
|
|
33387
|
+
.E_sks9xr8.ant-select .select-error-suffix,
|
|
33388
|
+
.E_sks9xr8.ant-select .select-error-hover-suffix,
|
|
33389
|
+
.E_sks9xr8.ant-select .select-error-active-suffix,
|
|
33390
|
+
.E_sks9xr8.ant-select .select-error-expanded-suffix,
|
|
33391
|
+
.E_sks9xr8.ant-select .select-error-expanded-search-suffix,
|
|
33392
|
+
.E_sks9xr8.ant-select .select-error-focus-suffix {
|
|
33393
|
+
display: none;
|
|
33394
|
+
width: 16px;
|
|
33395
|
+
height: 16px;
|
|
33396
|
+
}
|
|
33397
|
+
.E_sks9xr8.ant-select.ant-select-disabled .select-suffix {
|
|
33398
|
+
opacity: 0.5;
|
|
33399
|
+
}
|
|
33400
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-suffix {
|
|
33401
|
+
display: none;
|
|
33402
|
+
}
|
|
33403
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error).ant-select-show-search .select-expanded-search-suffix {
|
|
33404
|
+
display: inline;
|
|
33405
|
+
}
|
|
33406
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-suffix {
|
|
33407
|
+
display: none;
|
|
33408
|
+
}
|
|
33409
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).ant-select-open:not(.select-error):not(.ant-select-show-search) .select-expanded-suffix {
|
|
33410
|
+
display: inline;
|
|
33411
|
+
}
|
|
33412
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-suffix {
|
|
33413
|
+
display: none;
|
|
33414
|
+
}
|
|
33415
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):hover .select-hover-suffix {
|
|
33416
|
+
display: inline;
|
|
33417
|
+
}
|
|
33418
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-suffix {
|
|
33419
|
+
display: none;
|
|
33420
|
+
}
|
|
33421
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):active .select-active-suffix {
|
|
33422
|
+
display: inline;
|
|
33423
|
+
}
|
|
33424
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-suffix {
|
|
33425
|
+
display: none;
|
|
33426
|
+
}
|
|
33427
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled):not(.ant-select-open):not(.select-error):focus .select-focus-suffix {
|
|
33428
|
+
display: inline;
|
|
33429
|
+
}
|
|
33430
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-suffix {
|
|
33431
|
+
display: none;
|
|
33432
|
+
}
|
|
33433
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open.ant-select-show-search .select-error-expanded-search-suffix {
|
|
33434
|
+
display: inline;
|
|
33435
|
+
}
|
|
33436
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-suffix {
|
|
33437
|
+
display: none;
|
|
33438
|
+
}
|
|
33439
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error.ant-select-open:not(.ant-select-show-search) .select-error-expanded-suffix {
|
|
33440
|
+
display: inline;
|
|
33441
|
+
}
|
|
33442
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-suffix {
|
|
33443
|
+
display: none;
|
|
33444
|
+
}
|
|
33445
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open) .select-error-suffix {
|
|
33446
|
+
display: inline;
|
|
33447
|
+
}
|
|
33448
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-suffix,
|
|
33449
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-suffix {
|
|
33450
|
+
display: none;
|
|
33451
|
+
}
|
|
33452
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):hover .select-error-hover-suffix {
|
|
33453
|
+
display: inline;
|
|
33429
33454
|
}
|
|
33430
|
-
.
|
|
33431
|
-
|
|
33432
|
-
|
|
33433
|
-
width: 10px;
|
|
33434
|
-
border-radius: 2px;
|
|
33455
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-suffix,
|
|
33456
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-suffix {
|
|
33457
|
+
display: none;
|
|
33435
33458
|
}
|
|
33436
|
-
.
|
|
33437
|
-
|
|
33459
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):active .select-error-active-suffix {
|
|
33460
|
+
display: inline;
|
|
33438
33461
|
}
|
|
33439
|
-
.
|
|
33440
|
-
|
|
33441
|
-
|
|
33462
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-suffix,
|
|
33463
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-suffix {
|
|
33464
|
+
display: none;
|
|
33442
33465
|
}
|
|
33443
|
-
.
|
|
33444
|
-
|
|
33466
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
|
|
33467
|
+
display: inline;
|
|
33445
33468
|
}
|
|
33446
|
-
|
|
33447
|
-
|
|
33469
|
+
|
|
33470
|
+
.E_swwhohx.ant-select .ant-select-selector {
|
|
33471
|
+
padding: 0 7px 0 12px;
|
|
33448
33472
|
}
|
|
33449
|
-
.
|
|
33450
|
-
|
|
33473
|
+
.E_swwhohx.ant-select .ant-select-arrow {
|
|
33474
|
+
right: 8px;
|
|
33475
|
+
top: 50%;
|
|
33476
|
+
margin-top: -8px;
|
|
33477
|
+
width: 16px;
|
|
33478
|
+
height: 16px;
|
|
33479
|
+
display: flex;
|
|
33480
|
+
align-items: center;
|
|
33451
33481
|
}
|
|
33452
|
-
.
|
|
33453
|
-
|
|
33454
|
-
margin-left: 12px;
|
|
33455
|
-
color: #2d3a56;
|
|
33482
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
|
|
33483
|
+
padding: 0 11px 0 16px;
|
|
33456
33484
|
}
|
|
33457
|
-
.
|
|
33458
|
-
|
|
33459
|
-
color: rgba(44, 56, 82, 0.6);
|
|
33485
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
|
|
33486
|
+
right: 12px;
|
|
33460
33487
|
}
|
|
33461
|
-
.
|
|
33462
|
-
|
|
33488
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
|
|
33489
|
+
padding: 0 3px 0 8px;
|
|
33463
33490
|
}
|
|
33464
|
-
.
|
|
33465
|
-
|
|
33491
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
|
|
33492
|
+
right: 4px;
|
|
33466
33493
|
}
|
|
33467
|
-
.
|
|
33468
|
-
|
|
33494
|
+
.E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
|
|
33495
|
+
padding-right: 24px;
|
|
33469
33496
|
}
|
|
33470
33497
|
|
|
33471
|
-
.
|
|
33472
|
-
|
|
33473
|
-
height: 158px;
|
|
33498
|
+
.E_p2sxmsl {
|
|
33499
|
+
color: rgba(0, 21, 64, 0.3);
|
|
33474
33500
|
}
|
|
33475
|
-
|
|
33476
|
-
|
|
33501
|
+
|
|
33502
|
+
.E_oa99sl3 {
|
|
33503
|
+
display: flex;
|
|
33504
|
+
justify-content: space-between;
|
|
33505
|
+
align-items: center;
|
|
33506
|
+
gap: 8px;
|
|
33477
33507
|
}
|
|
33478
|
-
.
|
|
33479
|
-
|
|
33480
|
-
|
|
33508
|
+
.E_oa99sl3,
|
|
33509
|
+
.E_oa99sl3 :first-child {
|
|
33510
|
+
line-height: inherit !important;
|
|
33481
33511
|
}
|
|
33482
|
-
|
|
33483
|
-
|
|
33484
|
-
|
|
33485
|
-
|
|
33512
|
+
|
|
33513
|
+
.E_lvp5pj7 {
|
|
33514
|
+
display: flex;
|
|
33515
|
+
justify-content: space-between;
|
|
33516
|
+
align-items: center;
|
|
33517
|
+
gap: 8px;
|
|
33518
|
+
min-width: 0;
|
|
33486
33519
|
}
|
|
33487
33520
|
|
|
33488
|
-
.
|
|
33489
|
-
|
|
33490
|
-
|
|
33521
|
+
.E_s1io1lws {
|
|
33522
|
+
display: flex;
|
|
33523
|
+
align-items: center;
|
|
33524
|
+
flex-shrink: 0;
|
|
33491
33525
|
}
|
|
33492
|
-
|
|
33493
|
-
|
|
33526
|
+
|
|
33527
|
+
.E_w1dxz879 {
|
|
33528
|
+
display: flex;
|
|
33529
|
+
flex-direction: column;
|
|
33530
|
+
gap: 6px;
|
|
33494
33531
|
}
|
|
33495
|
-
.
|
|
33496
|
-
|
|
33497
|
-
|
|
33532
|
+
.E_w1dxz879 .ellipsis-tooltip {
|
|
33533
|
+
max-height: var(--w1dxz879-0);
|
|
33534
|
+
text-overflow: clip;
|
|
33535
|
+
overflow: hidden;
|
|
33498
33536
|
}
|
|
33499
|
-
.
|
|
33500
|
-
|
|
33501
|
-
|
|
33502
|
-
font-size: 14px;
|
|
33537
|
+
.E_w1dxz879 .tips {
|
|
33538
|
+
color: #fff;
|
|
33539
|
+
opacity: 0.8;
|
|
33503
33540
|
}
|
|
33504
33541
|
|
|
33505
33542
|
.E_h12yihis {
|
|
@@ -34243,6 +34280,53 @@ input.E_rf8rlle.ant-input {
|
|
|
34243
34280
|
height: auto;
|
|
34244
34281
|
}
|
|
34245
34282
|
|
|
34283
|
+
.E_c1ss4prm {
|
|
34284
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34285
|
+
}
|
|
34286
|
+
.E_c1ss4prm li {
|
|
34287
|
+
margin-bottom: 4px;
|
|
34288
|
+
}
|
|
34289
|
+
.E_c1ss4prm li:last-child {
|
|
34290
|
+
margin-bottom: 0;
|
|
34291
|
+
}
|
|
34292
|
+
|
|
34293
|
+
.E_ms3tlei {
|
|
34294
|
+
background: rgba(225, 230, 241, 0.6);
|
|
34295
|
+
padding: 8px;
|
|
34296
|
+
border-radius: 6px;
|
|
34297
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34298
|
+
}
|
|
34299
|
+
.E_ms3tlei li {
|
|
34300
|
+
margin-bottom: 4px;
|
|
34301
|
+
}
|
|
34302
|
+
.E_ms3tlei li:last-child {
|
|
34303
|
+
margin-bottom: 0;
|
|
34304
|
+
}
|
|
34305
|
+
|
|
34306
|
+
.E_du44iy7 {
|
|
34307
|
+
margin-bottom: 4px;
|
|
34308
|
+
}
|
|
34309
|
+
|
|
34310
|
+
.E_s1qmhanr {
|
|
34311
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34312
|
+
margin-bottom: 8px;
|
|
34313
|
+
}
|
|
34314
|
+
|
|
34315
|
+
.E_drje1h0 {
|
|
34316
|
+
height: 1px;
|
|
34317
|
+
background: #e4e9f2;
|
|
34318
|
+
margin: 16px 0;
|
|
34319
|
+
}
|
|
34320
|
+
|
|
34321
|
+
.E_cevhqx7 {
|
|
34322
|
+
color: #00122e;
|
|
34323
|
+
}
|
|
34324
|
+
|
|
34325
|
+
.E_snbqlt4 {
|
|
34326
|
+
margin-top: 8px;
|
|
34327
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34328
|
+
}
|
|
34329
|
+
|
|
34246
34330
|
.E_l12xdkhl {
|
|
34247
34331
|
width: 64px;
|
|
34248
34332
|
height: 64px;
|
|
@@ -34267,113 +34351,85 @@ input.E_rf8rlle.ant-input {
|
|
|
34267
34351
|
}
|
|
34268
34352
|
}
|
|
34269
34353
|
|
|
34270
|
-
.
|
|
34271
|
-
|
|
34272
|
-
|
|
34273
|
-
|
|
34274
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
34275
|
-
padding-left: 8px;
|
|
34276
|
-
padding-right: 8px;
|
|
34277
|
-
}
|
|
34278
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
34279
|
-
border-radius: 4px;
|
|
34280
|
-
}
|
|
34281
|
-
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34282
|
-
border-radius: 4px;
|
|
34283
|
-
}
|
|
34284
|
-
|
|
34285
|
-
.E_ma64lna .antd5-segmented-item-label {
|
|
34286
|
-
padding-left: 12px;
|
|
34287
|
-
padding-right: 12px;
|
|
34288
|
-
}
|
|
34289
|
-
|
|
34290
|
-
.E_ckld275 {
|
|
34291
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
34292
|
-
}
|
|
34293
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34294
|
-
background-color: rgba(255, 255, 255, 0.6);
|
|
34295
|
-
color: rgba(44, 56, 82, 0.75);
|
|
34296
|
-
}
|
|
34297
|
-
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34298
|
-
background-color: transparent;
|
|
34299
|
-
}
|
|
34300
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
34301
|
-
background-color: transparent;
|
|
34354
|
+
.E_ckui4s7 {
|
|
34355
|
+
color: #2d3a56;
|
|
34356
|
+
line-height: 22px;
|
|
34357
|
+
display: inline-flex;
|
|
34302
34358
|
}
|
|
34303
|
-
|
|
34304
|
-
.E_sddwhm6 {
|
|
34305
|
-
margin: 0;
|
|
34306
|
-
border-radius: 20px;
|
|
34307
|
-
padding: 2px 10px;
|
|
34359
|
+
.E_ckui4s7 .ant-checkbox {
|
|
34308
34360
|
height: 22px;
|
|
34361
|
+
display: flex;
|
|
34362
|
+
align-items: center;
|
|
34363
|
+
top: 0;
|
|
34309
34364
|
}
|
|
34310
|
-
.
|
|
34311
|
-
|
|
34312
|
-
}
|
|
34313
|
-
.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 {
|
|
34314
|
-
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
34315
|
-
}
|
|
34316
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
34317
|
-
color: #00122e;
|
|
34318
|
-
}
|
|
34319
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
34320
|
-
margin-right: 6px;
|
|
34321
|
-
}
|
|
34322
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
34323
|
-
margin-left: 8px;
|
|
34324
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34325
|
-
}
|
|
34326
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
34327
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
34365
|
+
.E_ckui4s7 .ant-checkbox-checked::after {
|
|
34366
|
+
border: none;
|
|
34328
34367
|
}
|
|
34329
|
-
.
|
|
34330
|
-
|
|
34368
|
+
.E_ckui4s7.ant-checkbox-wrapper:hover .ant-checkbox-inner, .E_ckui4s7.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox:hover .ant-checkbox-inner {
|
|
34369
|
+
border-color: #0080ff;
|
|
34331
34370
|
}
|
|
34332
|
-
.
|
|
34333
|
-
|
|
34371
|
+
.E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
|
|
34372
|
+
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
34334
34373
|
}
|
|
34335
|
-
.
|
|
34336
|
-
|
|
34374
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
34375
|
+
border: 1px solid #0080ff;
|
|
34337
34376
|
}
|
|
34338
|
-
.
|
|
34339
|
-
background
|
|
34377
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
34378
|
+
background: #0080ff;
|
|
34340
34379
|
}
|
|
34341
|
-
.
|
|
34342
|
-
background-color:
|
|
34380
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
34381
|
+
background-color: #fff;
|
|
34382
|
+
height: 2px;
|
|
34383
|
+
width: 10px;
|
|
34384
|
+
border-radius: 2px;
|
|
34343
34385
|
}
|
|
34344
|
-
.
|
|
34345
|
-
|
|
34386
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled {
|
|
34387
|
+
opacity: 0.5;
|
|
34346
34388
|
}
|
|
34347
|
-
.
|
|
34348
|
-
background
|
|
34389
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
34390
|
+
background: rgba(211, 218, 235, 0.6);
|
|
34391
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
34349
34392
|
}
|
|
34350
|
-
.
|
|
34351
|
-
|
|
34393
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
34394
|
+
border-color: #2d3a56;
|
|
34352
34395
|
}
|
|
34353
|
-
.
|
|
34354
|
-
background
|
|
34396
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
34397
|
+
background: #2d3a56;
|
|
34355
34398
|
}
|
|
34356
|
-
.
|
|
34357
|
-
|
|
34399
|
+
.E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
|
|
34400
|
+
padding: 0;
|
|
34358
34401
|
}
|
|
34359
|
-
.
|
|
34360
|
-
|
|
34402
|
+
.E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
|
|
34403
|
+
display: inline-block;
|
|
34404
|
+
margin-left: 12px;
|
|
34405
|
+
color: #2d3a56;
|
|
34361
34406
|
}
|
|
34362
|
-
.
|
|
34363
|
-
|
|
34407
|
+
.E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
|
|
34408
|
+
margin-left: 28px;
|
|
34409
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34364
34410
|
}
|
|
34365
|
-
.
|
|
34366
|
-
|
|
34411
|
+
.E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
|
|
34412
|
+
margin-left: 8px;
|
|
34367
34413
|
}
|
|
34368
|
-
.
|
|
34369
|
-
|
|
34414
|
+
.E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
|
|
34415
|
+
margin-left: 24px;
|
|
34370
34416
|
}
|
|
34371
34417
|
|
|
34372
|
-
.
|
|
34373
|
-
|
|
34374
|
-
|
|
34375
|
-
|
|
34376
|
-
|
|
34418
|
+
.E_b14q2gmw {
|
|
34419
|
+
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);
|
|
34420
|
+
}
|
|
34421
|
+
|
|
34422
|
+
.E_c1eym6el {
|
|
34423
|
+
border-radius: 8px;
|
|
34424
|
+
background-color: white;
|
|
34425
|
+
}
|
|
34426
|
+
.E_c1eym6el.hoverable {
|
|
34427
|
+
cursor: pointer;
|
|
34428
|
+
}
|
|
34429
|
+
.E_c1eym6el.hoverable:hover {
|
|
34430
|
+
transition: all 200ms ease;
|
|
34431
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
34432
|
+
transform: translateY(-4px);
|
|
34377
34433
|
}
|
|
34378
34434
|
|
|
34379
34435
|
button.E_l48ei06.ant-btn,
|
|
@@ -34428,392 +34484,585 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34428
34484
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
34429
34485
|
}
|
|
34430
34486
|
|
|
34431
|
-
.
|
|
34432
|
-
|
|
34487
|
+
.E_c1yd35n {
|
|
34488
|
+
padding: 0 12px 14px 12px;
|
|
34433
34489
|
}
|
|
34434
34490
|
|
|
34435
|
-
.
|
|
34436
|
-
|
|
34437
|
-
|
|
34491
|
+
.E_c1kghdax {
|
|
34492
|
+
color: #2d3a56;
|
|
34493
|
+
padding: 7px 12px;
|
|
34494
|
+
display: flex;
|
|
34495
|
+
justify-content: space-between;
|
|
34496
|
+
align-items: center;
|
|
34438
34497
|
}
|
|
34439
|
-
.
|
|
34498
|
+
.E_c1kghdax.has-arrow {
|
|
34499
|
+
padding-left: 10px;
|
|
34500
|
+
}
|
|
34501
|
+
.E_c1kghdax.has-arrow .title-wrapper {
|
|
34440
34502
|
cursor: pointer;
|
|
34503
|
+
color: #00122e;
|
|
34441
34504
|
}
|
|
34442
|
-
.
|
|
34443
|
-
|
|
34444
|
-
|
|
34445
|
-
|
|
34505
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
34506
|
+
color: #2d3a56;
|
|
34507
|
+
font-weight: 600;
|
|
34508
|
+
}
|
|
34509
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
34510
|
+
transform: rotate(90deg);
|
|
34511
|
+
}
|
|
34512
|
+
.E_c1kghdax .sub-info {
|
|
34513
|
+
font-size: 12px;
|
|
34514
|
+
line-height: 18px;
|
|
34515
|
+
}
|
|
34516
|
+
.E_c1kghdax .title-wrapper {
|
|
34517
|
+
display: flex;
|
|
34518
|
+
align-items: center;
|
|
34519
|
+
user-select: none;
|
|
34520
|
+
flex-grow: 1;
|
|
34521
|
+
font-size: 12px;
|
|
34522
|
+
line-height: 18px;
|
|
34523
|
+
color: #2d3a56;
|
|
34524
|
+
font-weight: 700;
|
|
34525
|
+
}
|
|
34526
|
+
.E_c1kghdax .collapse-arrow {
|
|
34527
|
+
transition: all 50ms ease-out 0ms;
|
|
34528
|
+
margin-right: 2px;
|
|
34529
|
+
}
|
|
34530
|
+
|
|
34531
|
+
.E_r77hffu {
|
|
34532
|
+
display: flex;
|
|
34533
|
+
align-items: center;
|
|
34534
|
+
justify-content: space-between;
|
|
34535
|
+
column-gap: 6px;
|
|
34536
|
+
}
|
|
34537
|
+
|
|
34538
|
+
.E_p1cmxsf7 {
|
|
34539
|
+
display: flex;
|
|
34540
|
+
flex-direction: column;
|
|
34541
|
+
justify-content: center;
|
|
34542
|
+
row-gap: var(--p1cmxsf7-0);
|
|
34543
|
+
}
|
|
34544
|
+
.E_p1cmxsf7 .antd5-progress-line {
|
|
34545
|
+
font-size: 0;
|
|
34546
|
+
margin-bottom: unset;
|
|
34547
|
+
margin-inline-end: unset;
|
|
34548
|
+
}
|
|
34549
|
+
|
|
34550
|
+
.E_lht19u8 {
|
|
34551
|
+
width: 64px;
|
|
34552
|
+
height: 64px;
|
|
34553
|
+
display: flex;
|
|
34554
|
+
align-items: center;
|
|
34555
|
+
justify-content: center;
|
|
34556
|
+
position: relative;
|
|
34557
|
+
opacity: 0.2;
|
|
34558
|
+
}
|
|
34559
|
+
|
|
34560
|
+
.E_lk3gkp4 {
|
|
34561
|
+
position: absolute;
|
|
34562
|
+
width: 5px;
|
|
34563
|
+
height: 48px;
|
|
34564
|
+
left: 9.33px;
|
|
34565
|
+
top: 40.5px;
|
|
34566
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
34567
|
+
border-radius: 5px;
|
|
34568
|
+
transform: rotate(-128deg);
|
|
34569
|
+
transform-origin: top left;
|
|
34570
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
34571
|
+
}
|
|
34572
|
+
|
|
34573
|
+
.E_ll4n94n {
|
|
34574
|
+
position: absolute;
|
|
34575
|
+
width: 5px;
|
|
34576
|
+
height: 48px;
|
|
34577
|
+
left: 40.8px;
|
|
34578
|
+
top: 8.4px;
|
|
34579
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
34580
|
+
border-radius: 5px;
|
|
34581
|
+
transform: rotate(-8deg);
|
|
34582
|
+
transform-origin: top left;
|
|
34583
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
34584
|
+
}
|
|
34585
|
+
|
|
34586
|
+
.E_l17lbdo6 {
|
|
34587
|
+
position: absolute;
|
|
34588
|
+
width: 5px;
|
|
34589
|
+
height: 48px;
|
|
34590
|
+
left: 52.9px;
|
|
34591
|
+
top: 51.8px;
|
|
34592
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
34593
|
+
border-radius: 5px;
|
|
34594
|
+
transform: rotate(112deg);
|
|
34595
|
+
transform-origin: top left;
|
|
34596
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
34597
|
+
}
|
|
34598
|
+
|
|
34599
|
+
.E_m11nzl2x {
|
|
34600
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34601
|
+
text-align: center;
|
|
34602
|
+
display: flex;
|
|
34603
|
+
align-items: center;
|
|
34604
|
+
justify-content: center;
|
|
34605
|
+
flex-direction: column;
|
|
34606
|
+
height: 100%;
|
|
34607
|
+
}
|
|
34608
|
+
.E_m11nzl2x .link {
|
|
34609
|
+
color: #0080ff;
|
|
34610
|
+
cursor: pointer;
|
|
34611
|
+
}
|
|
34612
|
+
|
|
34613
|
+
.E_mn7joto {
|
|
34614
|
+
width: 100%;
|
|
34615
|
+
height: 100%;
|
|
34616
|
+
display: flex;
|
|
34617
|
+
flex-direction: column;
|
|
34618
|
+
}
|
|
34619
|
+
.E_mn7joto .name-toolbar {
|
|
34620
|
+
width: 100%;
|
|
34621
|
+
display: flex;
|
|
34622
|
+
line-height: 30px;
|
|
34623
|
+
justify-content: space-between;
|
|
34624
|
+
}
|
|
34625
|
+
.E_mn7joto .name-toolbar .metric-extra {
|
|
34626
|
+
display: flex;
|
|
34627
|
+
font-size: 12px;
|
|
34628
|
+
align-items: center;
|
|
34629
|
+
}
|
|
34630
|
+
.E_mn7joto .name-toolbar .metric-extra .info-item {
|
|
34631
|
+
color: #a3b4cc;
|
|
34632
|
+
}
|
|
34633
|
+
.E_mn7joto .name-toolbar .metric-extra .info-item + .info-item {
|
|
34634
|
+
margin-left: 10px;
|
|
34635
|
+
}
|
|
34636
|
+
.E_mn7joto .name-toolbar .metric-extra .menu-trigger {
|
|
34637
|
+
margin-left: 10px;
|
|
34638
|
+
cursor: pointer;
|
|
34639
|
+
}
|
|
34640
|
+
.E_mn7joto .content {
|
|
34641
|
+
flex: 1;
|
|
34642
|
+
width: 100%;
|
|
34643
|
+
display: flex;
|
|
34644
|
+
justify-content: center;
|
|
34645
|
+
align-items: center;
|
|
34646
|
+
}
|
|
34647
|
+
.E_mn7joto .single-content {
|
|
34648
|
+
height: 65px;
|
|
34649
|
+
}
|
|
34650
|
+
|
|
34651
|
+
.E_l1bifhon {
|
|
34652
|
+
display: flex;
|
|
34653
|
+
align-items: center;
|
|
34654
|
+
white-space: nowrap;
|
|
34655
|
+
overflow: hidden;
|
|
34656
|
+
width: 100%;
|
|
34657
|
+
}
|
|
34658
|
+
.E_l1bifhon .ant-dropdown-trigger {
|
|
34659
|
+
font-size: 12px;
|
|
34660
|
+
margin-left: 8px;
|
|
34661
|
+
}
|
|
34662
|
+
|
|
34663
|
+
.E_ltthzck {
|
|
34664
|
+
display: flex;
|
|
34665
|
+
justify-content: flex-start;
|
|
34666
|
+
align-items: center;
|
|
34667
|
+
font-size: 12px;
|
|
34668
|
+
cursor: pointer;
|
|
34669
|
+
}
|
|
34670
|
+
.E_ltthzck:not(:first-child) {
|
|
34671
|
+
margin-left: 8px;
|
|
34672
|
+
}
|
|
34673
|
+
.E_ltthzck.deselected, .E_ltthzck.hovering {
|
|
34674
|
+
opacity: 0.3;
|
|
34675
|
+
}
|
|
34676
|
+
.E_ltthzck.deselected:not(.hoverering-self) .color-block, .E_ltthzck.hovering:not(.hoverering-self) .color-block {
|
|
34677
|
+
background: #b4beca !important;
|
|
34678
|
+
border-radius: 2px;
|
|
34679
|
+
}
|
|
34680
|
+
.E_ltthzck.hoverering-self {
|
|
34681
|
+
opacity: 1;
|
|
34682
|
+
}
|
|
34683
|
+
.E_ltthzck .dropdown-trigger {
|
|
34684
|
+
margin-left: 12px;
|
|
34685
|
+
}
|
|
34686
|
+
|
|
34687
|
+
.E_l1mumj7o {
|
|
34688
|
+
display: flex;
|
|
34689
|
+
justify-content: flex-start;
|
|
34690
|
+
align-items: center;
|
|
34691
|
+
font-size: 12px;
|
|
34692
|
+
cursor: pointer;
|
|
34693
|
+
}
|
|
34694
|
+
.E_l1mumj7o.deselected, .E_l1mumj7o.hovering {
|
|
34695
|
+
opacity: 0.3;
|
|
34696
|
+
}
|
|
34697
|
+
.E_l1mumj7o.deselected:not(.hoverering-self) .color-block, .E_l1mumj7o.hovering:not(.hoverering-self) .color-block {
|
|
34698
|
+
background: #b4beca !important;
|
|
34699
|
+
border-radius: 2px;
|
|
34700
|
+
}
|
|
34701
|
+
.E_l1mumj7o.hoverering-self {
|
|
34702
|
+
opacity: 1;
|
|
34703
|
+
}
|
|
34704
|
+
|
|
34705
|
+
.E_c14rn6j5 {
|
|
34706
|
+
display: inline-block;
|
|
34707
|
+
height: 8px;
|
|
34708
|
+
width: 8px;
|
|
34709
|
+
margin-right: 6px;
|
|
34710
|
+
border-radius: 2px;
|
|
34446
34711
|
}
|
|
34447
34712
|
|
|
34448
|
-
.
|
|
34449
|
-
color: #2d3a56;
|
|
34450
|
-
line-height: 22px;
|
|
34451
|
-
display: inline-flex;
|
|
34452
|
-
}
|
|
34453
|
-
.E_ckui4s7 .ant-checkbox {
|
|
34454
|
-
height: 22px;
|
|
34713
|
+
.E_e45tc5l .ant-dropdown-menu-item {
|
|
34455
34714
|
display: flex;
|
|
34456
34715
|
align-items: center;
|
|
34457
|
-
|
|
34716
|
+
font-size: 12px;
|
|
34717
|
+
margin: 0;
|
|
34458
34718
|
}
|
|
34459
|
-
|
|
34460
|
-
|
|
34719
|
+
|
|
34720
|
+
.E_lqeaosa {
|
|
34721
|
+
position: relative;
|
|
34461
34722
|
}
|
|
34462
|
-
.
|
|
34463
|
-
|
|
34723
|
+
.E_lqeaosa.hidden-xaxis .pointer-wrapper {
|
|
34724
|
+
bottom: -12px;
|
|
34464
34725
|
}
|
|
34465
|
-
.
|
|
34466
|
-
|
|
34726
|
+
.E_lqeaosa .metric-toolbar {
|
|
34727
|
+
display: flex;
|
|
34728
|
+
justify-content: space-between;
|
|
34729
|
+
line-height: 30px;
|
|
34467
34730
|
}
|
|
34468
|
-
.
|
|
34469
|
-
|
|
34731
|
+
.E_lqeaosa .metric-toolbar .metric-extra {
|
|
34732
|
+
display: flex;
|
|
34733
|
+
flex-shrink: 0;
|
|
34734
|
+
font-size: 12px;
|
|
34735
|
+
align-items: center;
|
|
34470
34736
|
}
|
|
34471
|
-
.
|
|
34472
|
-
|
|
34737
|
+
.E_lqeaosa .metric-toolbar .metric-extra .info-item {
|
|
34738
|
+
color: #a3b4cc;
|
|
34473
34739
|
}
|
|
34474
|
-
.
|
|
34475
|
-
|
|
34476
|
-
height: 2px;
|
|
34477
|
-
width: 10px;
|
|
34478
|
-
border-radius: 2px;
|
|
34740
|
+
.E_lqeaosa .metric-toolbar .metric-extra .info-item + .info-item {
|
|
34741
|
+
margin-left: 10px;
|
|
34479
34742
|
}
|
|
34480
|
-
.
|
|
34481
|
-
|
|
34743
|
+
.E_lqeaosa .metric-toolbar .metric-extra .menu-trigger {
|
|
34744
|
+
margin-left: 10px;
|
|
34745
|
+
cursor: pointer;
|
|
34482
34746
|
}
|
|
34483
|
-
.
|
|
34484
|
-
|
|
34485
|
-
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
34747
|
+
.E_lqeaosa .recharts-xAxis {
|
|
34748
|
+
font-size: 12px;
|
|
34486
34749
|
}
|
|
34487
|
-
.
|
|
34488
|
-
|
|
34750
|
+
.E_lqeaosa .pointer-wrapper {
|
|
34751
|
+
position: absolute;
|
|
34752
|
+
bottom: 10px;
|
|
34753
|
+
padding: 0 8px;
|
|
34754
|
+
font-size: 12px;
|
|
34755
|
+
color: #fff;
|
|
34756
|
+
transform: translateX(-50%);
|
|
34489
34757
|
}
|
|
34490
|
-
|
|
34491
|
-
|
|
34758
|
+
|
|
34759
|
+
.E_t2pr38p {
|
|
34760
|
+
min-width: 200px;
|
|
34761
|
+
background-color: rgba(23, 38, 64, 0.8);
|
|
34762
|
+
border-radius: 4px;
|
|
34763
|
+
box-shadow: 0px 1px 4px 0px rgba(29, 50, 108, 0.6);
|
|
34764
|
+
padding: 8px;
|
|
34492
34765
|
}
|
|
34493
|
-
|
|
34494
|
-
|
|
34766
|
+
|
|
34767
|
+
.E_tecdsj7 {
|
|
34768
|
+
display: flex;
|
|
34769
|
+
align-items: center;
|
|
34770
|
+
background-color: unset;
|
|
34771
|
+
color: #FFFFFF;
|
|
34772
|
+
justify-content: space-between;
|
|
34773
|
+
font-size: 12px;
|
|
34774
|
+
padding-top: 6px;
|
|
34495
34775
|
}
|
|
34496
|
-
.
|
|
34497
|
-
|
|
34498
|
-
margin-left: 12px;
|
|
34499
|
-
color: #2d3a56;
|
|
34776
|
+
.E_tecdsj7:first-child {
|
|
34777
|
+
padding-top: 3px;
|
|
34500
34778
|
}
|
|
34501
|
-
.
|
|
34502
|
-
|
|
34503
|
-
color: rgba(44, 56, 82, 0.6);
|
|
34779
|
+
.E_tecdsj7:last-child {
|
|
34780
|
+
padding-bottom: 3px;
|
|
34504
34781
|
}
|
|
34505
|
-
.
|
|
34782
|
+
.E_tecdsj7 .column-value {
|
|
34783
|
+
color: #FFFFFF;
|
|
34506
34784
|
margin-left: 8px;
|
|
34507
34785
|
}
|
|
34508
|
-
|
|
34509
|
-
|
|
34786
|
+
|
|
34787
|
+
.E_ljhvvia {
|
|
34788
|
+
display: inline-block;
|
|
34789
|
+
height: 8px;
|
|
34790
|
+
width: 8px;
|
|
34791
|
+
margin-right: 8px;
|
|
34792
|
+
border-radius: 2px;
|
|
34793
|
+
}
|
|
34794
|
+
.E_ljhvvia.borderd {
|
|
34795
|
+
border: 1px solid #fff;
|
|
34510
34796
|
}
|
|
34511
34797
|
|
|
34512
|
-
.
|
|
34513
|
-
color:
|
|
34514
|
-
|
|
34798
|
+
.E_msn7nxt {
|
|
34799
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34800
|
+
text-align: center;
|
|
34515
34801
|
display: flex;
|
|
34516
|
-
justify-content: space-between;
|
|
34517
34802
|
align-items: center;
|
|
34803
|
+
justify-content: center;
|
|
34804
|
+
flex-direction: column;
|
|
34805
|
+
height: 100%;
|
|
34518
34806
|
}
|
|
34519
|
-
.
|
|
34520
|
-
|
|
34521
|
-
}
|
|
34522
|
-
.E_c1kghdax.has-arrow .title-wrapper {
|
|
34807
|
+
.E_msn7nxt .link {
|
|
34808
|
+
color: #0080ff;
|
|
34523
34809
|
cursor: pointer;
|
|
34524
|
-
color: #00122e;
|
|
34525
34810
|
}
|
|
34526
|
-
|
|
34527
|
-
|
|
34528
|
-
|
|
34811
|
+
|
|
34812
|
+
.E_mp64wfi {
|
|
34813
|
+
width: 100%;
|
|
34814
|
+
height: 100%;
|
|
34815
|
+
display: flex;
|
|
34816
|
+
flex-direction: column;
|
|
34529
34817
|
}
|
|
34530
|
-
.
|
|
34531
|
-
|
|
34818
|
+
.E_mp64wfi .name-toolbar {
|
|
34819
|
+
width: 100%;
|
|
34820
|
+
display: flex;
|
|
34821
|
+
line-height: 30px;
|
|
34822
|
+
padding: 0 16px;
|
|
34823
|
+
justify-content: space-between;
|
|
34532
34824
|
}
|
|
34533
|
-
.
|
|
34825
|
+
.E_mp64wfi .name-toolbar .metric-extra {
|
|
34826
|
+
display: flex;
|
|
34534
34827
|
font-size: 12px;
|
|
34535
|
-
|
|
34828
|
+
align-items: center;
|
|
34536
34829
|
}
|
|
34537
|
-
.
|
|
34830
|
+
.E_mp64wfi .name-toolbar .metric-extra .info-item {
|
|
34831
|
+
color: #a3b4cc;
|
|
34832
|
+
}
|
|
34833
|
+
.E_mp64wfi .name-toolbar .metric-extra .info-item + .info-item {
|
|
34834
|
+
margin-left: 10px;
|
|
34835
|
+
}
|
|
34836
|
+
.E_mp64wfi .name-toolbar .metric-extra .menu-trigger {
|
|
34837
|
+
margin-left: 10px;
|
|
34838
|
+
cursor: pointer;
|
|
34839
|
+
}
|
|
34840
|
+
.E_mp64wfi .content {
|
|
34841
|
+
flex: 1;
|
|
34842
|
+
width: 100%;
|
|
34538
34843
|
display: flex;
|
|
34844
|
+
justify-content: center;
|
|
34539
34845
|
align-items: center;
|
|
34540
|
-
user-select: none;
|
|
34541
|
-
flex-grow: 1;
|
|
34542
|
-
font-size: 12px;
|
|
34543
|
-
line-height: 18px;
|
|
34544
|
-
color: #2d3a56;
|
|
34545
|
-
font-weight: 700;
|
|
34546
|
-
}
|
|
34547
|
-
.E_c1kghdax .collapse-arrow {
|
|
34548
|
-
transition: all 50ms ease-out 0ms;
|
|
34549
|
-
margin-right: 2px;
|
|
34550
34846
|
}
|
|
34551
|
-
|
|
34552
|
-
|
|
34553
|
-
padding: 0 12px 14px 12px;
|
|
34847
|
+
.E_mp64wfi .single-content {
|
|
34848
|
+
height: 65px;
|
|
34554
34849
|
}
|
|
34555
34850
|
|
|
34556
|
-
.
|
|
34557
|
-
width: 64px;
|
|
34558
|
-
height: 64px;
|
|
34851
|
+
.E_l1oyigan {
|
|
34559
34852
|
display: flex;
|
|
34560
34853
|
align-items: center;
|
|
34561
|
-
|
|
34562
|
-
|
|
34563
|
-
|
|
34854
|
+
white-space: nowrap;
|
|
34855
|
+
overflow: hidden;
|
|
34856
|
+
width: 100%;
|
|
34564
34857
|
}
|
|
34565
|
-
|
|
34566
|
-
|
|
34567
|
-
|
|
34568
|
-
width: 5px;
|
|
34569
|
-
height: 48px;
|
|
34570
|
-
left: 9.33px;
|
|
34571
|
-
top: 40.5px;
|
|
34572
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
34573
|
-
border-radius: 5px;
|
|
34574
|
-
transform: rotate(-128deg);
|
|
34575
|
-
transform-origin: top left;
|
|
34576
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
34858
|
+
.E_l1oyigan .ant-dropdown-trigger {
|
|
34859
|
+
margin-left: auto;
|
|
34860
|
+
font-size: 12px;
|
|
34577
34861
|
}
|
|
34578
34862
|
|
|
34579
|
-
.
|
|
34580
|
-
|
|
34581
|
-
|
|
34582
|
-
|
|
34583
|
-
|
|
34584
|
-
|
|
34585
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
34586
|
-
border-radius: 5px;
|
|
34587
|
-
transform: rotate(-8deg);
|
|
34588
|
-
transform-origin: top left;
|
|
34589
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
34863
|
+
.E_l1noi4n1 {
|
|
34864
|
+
display: flex;
|
|
34865
|
+
justify-content: flex-start;
|
|
34866
|
+
align-items: center;
|
|
34867
|
+
font-size: 12px;
|
|
34868
|
+
cursor: pointer;
|
|
34590
34869
|
}
|
|
34591
|
-
|
|
34592
|
-
|
|
34593
|
-
position: absolute;
|
|
34594
|
-
width: 5px;
|
|
34595
|
-
height: 48px;
|
|
34596
|
-
left: 52.9px;
|
|
34597
|
-
top: 51.8px;
|
|
34598
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
34599
|
-
border-radius: 5px;
|
|
34600
|
-
transform: rotate(112deg);
|
|
34601
|
-
transform-origin: top left;
|
|
34602
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
34870
|
+
.E_l1noi4n1:not(:last-child) {
|
|
34871
|
+
margin-right: 20px;
|
|
34603
34872
|
}
|
|
34604
|
-
|
|
34605
|
-
.
|
|
34606
|
-
--item-min-width: 60px;
|
|
34873
|
+
.E_l1noi4n1.deselected {
|
|
34874
|
+
opacity: 0.4;
|
|
34607
34875
|
}
|
|
34608
|
-
.
|
|
34609
|
-
|
|
34876
|
+
.E_l1noi4n1.deselected .color-block {
|
|
34877
|
+
background: #b4beca !important;
|
|
34610
34878
|
}
|
|
34611
|
-
|
|
34612
|
-
|
|
34879
|
+
|
|
34880
|
+
.E_cz19rz6 {
|
|
34881
|
+
display: inline-block;
|
|
34882
|
+
height: 8px;
|
|
34883
|
+
width: 8px;
|
|
34884
|
+
margin-right: 8px;
|
|
34613
34885
|
}
|
|
34614
|
-
|
|
34615
|
-
|
|
34886
|
+
|
|
34887
|
+
.E_e17r5r9c .ant-dropdown-menu-item {
|
|
34888
|
+
display: flex;
|
|
34889
|
+
align-items: center;
|
|
34890
|
+
font-size: 12px;
|
|
34891
|
+
margin: 0;
|
|
34616
34892
|
}
|
|
34617
|
-
|
|
34618
|
-
|
|
34619
|
-
|
|
34893
|
+
|
|
34894
|
+
.E_m1y1hhnr {
|
|
34895
|
+
position: relative;
|
|
34620
34896
|
}
|
|
34621
|
-
.
|
|
34622
|
-
|
|
34897
|
+
.E_m1y1hhnr.hidden-xaxis .pointer-wrapper {
|
|
34898
|
+
bottom: -12px;
|
|
34623
34899
|
}
|
|
34624
|
-
.
|
|
34625
|
-
|
|
34900
|
+
.E_m1y1hhnr .metric-toolbar {
|
|
34901
|
+
display: flex;
|
|
34902
|
+
justify-content: space-between;
|
|
34903
|
+
line-height: 30px;
|
|
34904
|
+
margin: 0 16px;
|
|
34626
34905
|
}
|
|
34627
|
-
.
|
|
34628
|
-
display:
|
|
34906
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra {
|
|
34907
|
+
display: flex;
|
|
34908
|
+
font-size: 12px;
|
|
34909
|
+
align-items: center;
|
|
34629
34910
|
}
|
|
34630
|
-
.
|
|
34631
|
-
|
|
34632
|
-
white-space: nowrap;
|
|
34633
|
-
text-overflow: ellipsis;
|
|
34911
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra .info-item {
|
|
34912
|
+
color: #a3b4cc;
|
|
34634
34913
|
}
|
|
34635
|
-
|
|
34636
|
-
|
|
34637
|
-
min-width: var(--item-min-width);
|
|
34914
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra .info-item + .info-item {
|
|
34915
|
+
margin-left: 10px;
|
|
34638
34916
|
}
|
|
34639
|
-
.
|
|
34640
|
-
|
|
34917
|
+
.E_m1y1hhnr .metric-toolbar .metric-extra .menu-trigger {
|
|
34918
|
+
margin-left: 10px;
|
|
34919
|
+
cursor: pointer;
|
|
34641
34920
|
}
|
|
34642
|
-
.
|
|
34643
|
-
|
|
34644
|
-
justify-content: stretch;
|
|
34921
|
+
.E_m1y1hhnr .recharts-xAxis {
|
|
34922
|
+
font-size: 12px;
|
|
34645
34923
|
}
|
|
34646
|
-
.
|
|
34647
|
-
|
|
34648
|
-
|
|
34649
|
-
|
|
34650
|
-
|
|
34924
|
+
.E_m1y1hhnr .pointer-wrapper {
|
|
34925
|
+
position: absolute;
|
|
34926
|
+
bottom: 10px;
|
|
34927
|
+
padding: 0 8px;
|
|
34928
|
+
border-radius: 4px;
|
|
34929
|
+
font-size: 12px;
|
|
34930
|
+
color: #fff;
|
|
34931
|
+
background: rgba(0, 0, 0, 0.75);
|
|
34932
|
+
transform: translateX(-50%);
|
|
34651
34933
|
}
|
|
34652
|
-
|
|
34653
|
-
|
|
34654
|
-
min-
|
|
34934
|
+
|
|
34935
|
+
.E_tnvijvs {
|
|
34936
|
+
min-width: 200px;
|
|
34655
34937
|
}
|
|
34656
|
-
|
|
34657
|
-
|
|
34658
|
-
|
|
34659
|
-
|
|
34660
|
-
|
|
34938
|
+
|
|
34939
|
+
.E_t1ub2aex {
|
|
34940
|
+
display: flex;
|
|
34941
|
+
align-items: center;
|
|
34942
|
+
justify-content: space-between;
|
|
34943
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
34944
|
+
color: #b4beca;
|
|
34661
34945
|
font-size: 12px;
|
|
34946
|
+
padding: 3px 6px;
|
|
34662
34947
|
}
|
|
34663
|
-
.
|
|
34664
|
-
|
|
34948
|
+
.E_t1ub2aex:first-child {
|
|
34949
|
+
padding-top: 3px;
|
|
34665
34950
|
}
|
|
34666
|
-
.
|
|
34667
|
-
|
|
34951
|
+
.E_t1ub2aex:last-child {
|
|
34952
|
+
padding-bottom: 3px;
|
|
34668
34953
|
}
|
|
34669
|
-
.
|
|
34670
|
-
|
|
34671
|
-
|
|
34672
|
-
border-radius: 4px 0 0 4px;
|
|
34954
|
+
.E_t1ub2aex .column-value {
|
|
34955
|
+
color: #fff;
|
|
34956
|
+
margin-left: 8px;
|
|
34673
34957
|
}
|
|
34674
|
-
|
|
34675
|
-
|
|
34958
|
+
|
|
34959
|
+
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
34960
|
+
margin-right: 2px;
|
|
34676
34961
|
}
|
|
34677
|
-
|
|
34962
|
+
|
|
34963
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
34964
|
+
padding-left: 8px;
|
|
34678
34965
|
padding-right: 8px;
|
|
34966
|
+
}
|
|
34967
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
34968
|
+
border-radius: 4px;
|
|
34969
|
+
}
|
|
34970
|
+
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34971
|
+
border-radius: 4px;
|
|
34972
|
+
}
|
|
34973
|
+
|
|
34974
|
+
.E_ma64lna .antd5-segmented-item-label {
|
|
34679
34975
|
padding-left: 12px;
|
|
34680
|
-
|
|
34976
|
+
padding-right: 12px;
|
|
34681
34977
|
}
|
|
34682
|
-
|
|
34683
|
-
|
|
34684
|
-
|
|
34685
|
-
height: 0;
|
|
34686
|
-
border: 13px solid transparent;
|
|
34687
|
-
position: absolute;
|
|
34688
|
-
top: 0;
|
|
34689
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
34690
|
-
z-index: 2;
|
|
34691
|
-
position: relative;
|
|
34692
|
-
top: -50%;
|
|
34693
|
-
right: -100%;
|
|
34978
|
+
|
|
34979
|
+
.E_ckld275 {
|
|
34980
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
34694
34981
|
}
|
|
34695
|
-
.
|
|
34696
|
-
|
|
34982
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34983
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
34984
|
+
color: rgba(44, 56, 82, 0.75);
|
|
34697
34985
|
}
|
|
34698
|
-
.
|
|
34699
|
-
|
|
34700
|
-
width: 0;
|
|
34701
|
-
height: 0;
|
|
34702
|
-
border: 13px solid transparent;
|
|
34703
|
-
position: absolute;
|
|
34704
|
-
top: 0;
|
|
34705
|
-
border-left: 8px solid #fff;
|
|
34706
|
-
left: 0;
|
|
34986
|
+
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
34987
|
+
background-color: transparent;
|
|
34707
34988
|
}
|
|
34708
|
-
.
|
|
34709
|
-
|
|
34989
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
34990
|
+
background-color: transparent;
|
|
34710
34991
|
}
|
|
34711
|
-
|
|
34712
|
-
|
|
34992
|
+
|
|
34993
|
+
.E_sddwhm6 {
|
|
34994
|
+
margin: 0;
|
|
34995
|
+
border-radius: 20px;
|
|
34996
|
+
padding: 2px 10px;
|
|
34997
|
+
height: 22px;
|
|
34713
34998
|
}
|
|
34714
|
-
.
|
|
34715
|
-
|
|
34999
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
35000
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
34716
35001
|
}
|
|
34717
|
-
.
|
|
34718
|
-
|
|
34719
|
-
min-width: var(--item-min-width);
|
|
35002
|
+
.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 {
|
|
35003
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
34720
35004
|
}
|
|
34721
|
-
.
|
|
34722
|
-
|
|
34723
|
-
min-width: var(--item-min-width);
|
|
35005
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
35006
|
+
color: #00122e;
|
|
34724
35007
|
}
|
|
34725
|
-
.
|
|
34726
|
-
|
|
34727
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
35008
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
35009
|
+
margin-right: 6px;
|
|
34728
35010
|
}
|
|
34729
|
-
.
|
|
34730
|
-
|
|
35011
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
35012
|
+
margin-left: 8px;
|
|
35013
|
+
color: rgba(44, 56, 82, 0.6);
|
|
34731
35014
|
}
|
|
34732
|
-
|
|
34733
|
-
|
|
34734
|
-
width: 192px;
|
|
34735
|
-
row-gap: 2px;
|
|
35015
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
35016
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
34736
35017
|
}
|
|
34737
|
-
.
|
|
34738
|
-
background-color:
|
|
35018
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
35019
|
+
background-color: #0080ff;
|
|
34739
35020
|
}
|
|
34740
|
-
.
|
|
34741
|
-
color:
|
|
35021
|
+
.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 {
|
|
35022
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
34742
35023
|
}
|
|
34743
|
-
.
|
|
34744
|
-
background-color: rgba(
|
|
35024
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
35025
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
34745
35026
|
}
|
|
34746
|
-
.
|
|
34747
|
-
|
|
34748
|
-
border-radius: 4px;
|
|
34749
|
-
height: 32px;
|
|
34750
|
-
display: flex;
|
|
34751
|
-
align-items: center;
|
|
35027
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
35028
|
+
background-color: #f0483e;
|
|
34752
35029
|
}
|
|
34753
|
-
.
|
|
34754
|
-
|
|
34755
|
-
white-space: nowrap;
|
|
35030
|
+
.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 {
|
|
35031
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
34756
35032
|
}
|
|
34757
|
-
.
|
|
34758
|
-
|
|
34759
|
-
line-height: 20px;
|
|
34760
|
-
max-width: 100%;
|
|
34761
|
-
padding-right: 0;
|
|
35033
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
35034
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
34762
35035
|
}
|
|
34763
|
-
.
|
|
34764
|
-
background:
|
|
35036
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
35037
|
+
background-color: #fea008;
|
|
34765
35038
|
}
|
|
34766
|
-
|
|
34767
|
-
.
|
|
34768
|
-
width: 100%;
|
|
34769
|
-
display: inline-flex;
|
|
34770
|
-
align-items: center;
|
|
34771
|
-
justify-content: center;
|
|
34772
|
-
column-gap: 4px;
|
|
35039
|
+
.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 {
|
|
35040
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
34773
35041
|
}
|
|
34774
|
-
.
|
|
34775
|
-
|
|
34776
|
-
align-items: center;
|
|
34777
|
-
width: 18px;
|
|
34778
|
-
height: 18px;
|
|
34779
|
-
color: rgba(44, 56, 82, 0.75);
|
|
34780
|
-
justify-content: center;
|
|
35042
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
35043
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
34781
35044
|
}
|
|
34782
|
-
|
|
34783
|
-
|
|
34784
|
-
width: 100%;
|
|
34785
|
-
display: flex;
|
|
34786
|
-
align-items: center;
|
|
34787
|
-
justify-content: center;
|
|
34788
|
-
column-gap: 6px;
|
|
34789
|
-
font-size: 13px;
|
|
35045
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
35046
|
+
background-color: #00ba5d;
|
|
34790
35047
|
}
|
|
34791
|
-
.
|
|
34792
|
-
|
|
34793
|
-
align-items: center;
|
|
34794
|
-
min-width: 20px;
|
|
34795
|
-
min-height: 20px;
|
|
34796
|
-
color: rgba(44, 56, 82, 0.75);
|
|
34797
|
-
justify-content: center;
|
|
35048
|
+
.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 {
|
|
35049
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
34798
35050
|
}
|
|
34799
|
-
|
|
34800
|
-
.
|
|
34801
|
-
display: flex;
|
|
34802
|
-
align-items: center;
|
|
34803
|
-
justify-content: space-between;
|
|
34804
|
-
column-gap: 6px;
|
|
35051
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
35052
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
34805
35053
|
}
|
|
34806
|
-
|
|
34807
|
-
|
|
34808
|
-
display: flex;
|
|
34809
|
-
flex-direction: column;
|
|
34810
|
-
justify-content: center;
|
|
34811
|
-
row-gap: var(--p1cmxsf7-0);
|
|
35054
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
35055
|
+
background-color: #6b7d99;
|
|
34812
35056
|
}
|
|
34813
|
-
.
|
|
34814
|
-
|
|
34815
|
-
|
|
34816
|
-
|
|
35057
|
+
.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 {
|
|
35058
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
35059
|
+
}
|
|
35060
|
+
|
|
35061
|
+
.E_satwmqm {
|
|
35062
|
+
width: 8px;
|
|
35063
|
+
height: 8px;
|
|
35064
|
+
border-radius: 50%;
|
|
35065
|
+
display: inline-block;
|
|
34817
35066
|
}
|
|
34818
35067
|
|
|
34819
35068
|
.E_tc97u5y {
|
|
@@ -35186,6 +35435,28 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35186
35435
|
background: #fff;
|
|
35187
35436
|
}
|
|
35188
35437
|
|
|
35438
|
+
.E_t1gvlxt5 {
|
|
35439
|
+
min-width: 0;
|
|
35440
|
+
flex: 1;
|
|
35441
|
+
}
|
|
35442
|
+
.E_t1gvlxt5 .tag {
|
|
35443
|
+
flex: 0 0 auto;
|
|
35444
|
+
}
|
|
35445
|
+
.E_t1gvlxt5 .progress-title {
|
|
35446
|
+
flex: 2;
|
|
35447
|
+
max-width: fit-content;
|
|
35448
|
+
}
|
|
35449
|
+
.E_t1gvlxt5 .progress-desc {
|
|
35450
|
+
flex: 1;
|
|
35451
|
+
max-width: fit-content;
|
|
35452
|
+
}
|
|
35453
|
+
|
|
35454
|
+
.E_a1ji6r68 {
|
|
35455
|
+
display: flex;
|
|
35456
|
+
align-items: center;
|
|
35457
|
+
column-gap: var(--a1ji6r68-0);
|
|
35458
|
+
}
|
|
35459
|
+
|
|
35189
35460
|
.E_w7ob4th.outside-tag {
|
|
35190
35461
|
padding-left: 0;
|
|
35191
35462
|
}
|
|
@@ -35195,35 +35466,11 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35195
35466
|
margin-right: 4px;
|
|
35196
35467
|
}
|
|
35197
35468
|
|
|
35198
|
-
.
|
|
35199
|
-
padding: 0 8px;
|
|
35200
|
-
height: 18px;
|
|
35201
|
-
}
|
|
35202
|
-
|
|
35203
|
-
.E_m140wbb6 {
|
|
35204
|
-
padding: 2px 8px;
|
|
35205
|
-
height: 24px;
|
|
35206
|
-
}
|
|
35207
|
-
|
|
35208
|
-
.E_t1fozc1i {
|
|
35209
|
-
margin: 0;
|
|
35210
|
-
}
|
|
35211
|
-
|
|
35212
|
-
.E_i1vxv4ln {
|
|
35469
|
+
.E_i1g85yz3 {
|
|
35213
35470
|
margin-right: 4px;
|
|
35214
35471
|
height: 16px;
|
|
35215
35472
|
}
|
|
35216
35473
|
|
|
35217
|
-
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
35218
|
-
font-weight: 700;
|
|
35219
|
-
color: #00122e;
|
|
35220
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
35221
|
-
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
35222
|
-
word-break: break-all;
|
|
35223
|
-
display: inline;
|
|
35224
|
-
white-space: normal;
|
|
35225
|
-
}
|
|
35226
|
-
|
|
35227
35474
|
.E_t1dtlqs1 {
|
|
35228
35475
|
margin-bottom: 4px;
|
|
35229
35476
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -35391,60 +35638,257 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35391
35638
|
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
35392
35639
|
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
35393
35640
|
}
|
|
35394
|
-
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
35395
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
35641
|
+
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
35642
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
35643
|
+
}
|
|
35644
|
+
|
|
35645
|
+
.E_a138syjm {
|
|
35646
|
+
display: flex;
|
|
35647
|
+
align-items: center;
|
|
35648
|
+
margin-top: 8px;
|
|
35649
|
+
}
|
|
35650
|
+
.E_a138syjm button.ant-btn {
|
|
35651
|
+
padding: 2px 8px;
|
|
35652
|
+
height: 24px;
|
|
35653
|
+
}
|
|
35654
|
+
.E_a138syjm > span.maximum-desc {
|
|
35655
|
+
display: none;
|
|
35656
|
+
margin-left: 8px;
|
|
35657
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35658
|
+
}
|
|
35659
|
+
.E_a138syjm > span.maximum-desc.disabled {
|
|
35660
|
+
display: inline;
|
|
35661
|
+
}
|
|
35662
|
+
|
|
35663
|
+
.E_d77i8u0 {
|
|
35664
|
+
width: 24px;
|
|
35665
|
+
height: 24px;
|
|
35666
|
+
padding: 4px;
|
|
35667
|
+
margin-right: 8px;
|
|
35668
|
+
}
|
|
35669
|
+
|
|
35670
|
+
.E_slr2ynn {
|
|
35671
|
+
padding: 0 8px;
|
|
35672
|
+
height: 18px;
|
|
35673
|
+
}
|
|
35674
|
+
|
|
35675
|
+
.E_m140wbb6 {
|
|
35676
|
+
padding: 2px 8px;
|
|
35677
|
+
height: 24px;
|
|
35678
|
+
}
|
|
35679
|
+
|
|
35680
|
+
.E_t1fozc1i {
|
|
35681
|
+
margin: 0;
|
|
35682
|
+
}
|
|
35683
|
+
|
|
35684
|
+
.E_i1vxv4ln {
|
|
35685
|
+
margin-right: 4px;
|
|
35686
|
+
height: 16px;
|
|
35687
|
+
}
|
|
35688
|
+
|
|
35689
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
35690
|
+
font-weight: 700;
|
|
35691
|
+
color: #00122e;
|
|
35692
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
35693
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
35694
|
+
word-break: break-all;
|
|
35695
|
+
display: inline;
|
|
35696
|
+
white-space: normal;
|
|
35697
|
+
}
|
|
35698
|
+
|
|
35699
|
+
.E_sjob3jg {
|
|
35700
|
+
--item-min-width: 60px;
|
|
35701
|
+
}
|
|
35702
|
+
.E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
|
|
35703
|
+
display: none !important;
|
|
35704
|
+
}
|
|
35705
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active {
|
|
35706
|
+
flex-shrink: 0 !important;
|
|
35707
|
+
}
|
|
35708
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
35709
|
+
color: #0080ff;
|
|
35710
|
+
}
|
|
35711
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
35712
|
+
color: #0080ff;
|
|
35713
|
+
font-weight: normal;
|
|
35714
|
+
}
|
|
35715
|
+
.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 {
|
|
35716
|
+
color: rgba(44, 56, 82, 0.6);
|
|
35717
|
+
}
|
|
35718
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
35719
|
+
color: #00122e;
|
|
35720
|
+
}
|
|
35721
|
+
.E_sjob3jg .step-item-text {
|
|
35722
|
+
display: inline-block;
|
|
35723
|
+
}
|
|
35724
|
+
.E_sjob3jg .step-item-title {
|
|
35725
|
+
overflow: hidden;
|
|
35726
|
+
white-space: nowrap;
|
|
35727
|
+
text-overflow: ellipsis;
|
|
35728
|
+
}
|
|
35729
|
+
|
|
35730
|
+
.E_hjvj6s6 .ant-steps-item-container {
|
|
35731
|
+
min-width: var(--item-min-width);
|
|
35732
|
+
}
|
|
35733
|
+
.E_hjvj6s6 .ant-steps-item-disabled {
|
|
35734
|
+
cursor: not-allowed !important;
|
|
35735
|
+
}
|
|
35736
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
35737
|
+
flex-direction: row;
|
|
35738
|
+
justify-content: stretch;
|
|
35739
|
+
}
|
|
35740
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
35741
|
+
padding: 0;
|
|
35742
|
+
margin-right: 4px;
|
|
35743
|
+
flex: 1;
|
|
35744
|
+
overflow: visible;
|
|
35745
|
+
}
|
|
35746
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
35747
|
+
width: 100%;
|
|
35748
|
+
min-height: unset;
|
|
35749
|
+
}
|
|
35750
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
35751
|
+
height: 26px;
|
|
35752
|
+
line-height: 26px;
|
|
35753
|
+
width: 100%;
|
|
35754
|
+
padding: 0;
|
|
35755
|
+
font-size: 12px;
|
|
35756
|
+
}
|
|
35757
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
35758
|
+
margin-right: 10px;
|
|
35759
|
+
}
|
|
35760
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
35761
|
+
display: none;
|
|
35762
|
+
}
|
|
35763
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
35764
|
+
padding-left: 8px;
|
|
35765
|
+
padding-right: 4px;
|
|
35766
|
+
border-radius: 4px 0 0 4px;
|
|
35767
|
+
}
|
|
35768
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
35769
|
+
margin-right: 0;
|
|
35770
|
+
}
|
|
35771
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
35772
|
+
padding-right: 8px;
|
|
35773
|
+
padding-left: 12px;
|
|
35774
|
+
border-radius: 0 4px 4px 0;
|
|
35775
|
+
}
|
|
35776
|
+
.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 {
|
|
35777
|
+
content: "";
|
|
35778
|
+
width: 0;
|
|
35779
|
+
height: 0;
|
|
35780
|
+
border: 13px solid transparent;
|
|
35781
|
+
position: absolute;
|
|
35782
|
+
top: 0;
|
|
35783
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
35784
|
+
z-index: 2;
|
|
35785
|
+
position: relative;
|
|
35786
|
+
top: -50%;
|
|
35787
|
+
right: -100%;
|
|
35788
|
+
}
|
|
35789
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
35790
|
+
padding: 0 4px 0 12px;
|
|
35791
|
+
}
|
|
35792
|
+
.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 {
|
|
35793
|
+
content: "";
|
|
35794
|
+
width: 0;
|
|
35795
|
+
height: 0;
|
|
35796
|
+
border: 13px solid transparent;
|
|
35797
|
+
position: absolute;
|
|
35798
|
+
top: 0;
|
|
35799
|
+
border-left: 8px solid #fff;
|
|
35800
|
+
left: 0;
|
|
35801
|
+
}
|
|
35802
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
35803
|
+
max-width: calc(100% - var(--item-min-width) * 2);
|
|
35804
|
+
}
|
|
35805
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
35806
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
35807
|
+
}
|
|
35808
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
35809
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
35810
|
+
}
|
|
35811
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
35812
|
+
cursor: pointer;
|
|
35813
|
+
min-width: var(--item-min-width);
|
|
35814
|
+
}
|
|
35815
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
35816
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
35817
|
+
min-width: var(--item-min-width);
|
|
35818
|
+
}
|
|
35819
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
35820
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
35821
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
35822
|
+
}
|
|
35823
|
+
.E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
35824
|
+
padding: 0;
|
|
35825
|
+
}
|
|
35826
|
+
|
|
35827
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical {
|
|
35828
|
+
width: 192px;
|
|
35829
|
+
row-gap: 2px;
|
|
35830
|
+
}
|
|
35831
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
|
|
35832
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
35833
|
+
}
|
|
35834
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
|
|
35835
|
+
color: #00122e !important;
|
|
35836
|
+
}
|
|
35837
|
+
.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 {
|
|
35838
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
35396
35839
|
}
|
|
35397
|
-
|
|
35398
|
-
|
|
35840
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
|
|
35841
|
+
padding: 0 8px;
|
|
35842
|
+
border-radius: 4px;
|
|
35843
|
+
height: 32px;
|
|
35399
35844
|
display: flex;
|
|
35400
35845
|
align-items: center;
|
|
35401
|
-
margin-top: 8px;
|
|
35402
|
-
}
|
|
35403
|
-
.E_a138syjm button.ant-btn {
|
|
35404
|
-
padding: 2px 8px;
|
|
35405
|
-
height: 24px;
|
|
35406
|
-
}
|
|
35407
|
-
.E_a138syjm > span.maximum-desc {
|
|
35408
|
-
display: none;
|
|
35409
|
-
margin-left: 8px;
|
|
35410
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35411
35846
|
}
|
|
35412
|
-
.
|
|
35413
|
-
|
|
35847
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
35848
|
+
min-height: auto;
|
|
35849
|
+
white-space: nowrap;
|
|
35414
35850
|
}
|
|
35415
|
-
|
|
35416
|
-
|
|
35417
|
-
|
|
35418
|
-
|
|
35419
|
-
padding:
|
|
35420
|
-
margin-right: 8px;
|
|
35851
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
35852
|
+
font-size: 13px;
|
|
35853
|
+
line-height: 20px;
|
|
35854
|
+
max-width: 100%;
|
|
35855
|
+
padding-right: 0;
|
|
35421
35856
|
}
|
|
35422
|
-
|
|
35423
|
-
.
|
|
35424
|
-
margin-right: 4px;
|
|
35425
|
-
height: 16px;
|
|
35857
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
|
|
35858
|
+
background: rgba(0, 128, 255, 0.1);
|
|
35426
35859
|
}
|
|
35427
35860
|
|
|
35428
|
-
.
|
|
35429
|
-
|
|
35430
|
-
|
|
35431
|
-
|
|
35432
|
-
|
|
35433
|
-
|
|
35434
|
-
}
|
|
35435
|
-
.E_t1gvlxt5 .progress-title {
|
|
35436
|
-
flex: 2;
|
|
35437
|
-
max-width: fit-content;
|
|
35861
|
+
.E_h6l1tj4 {
|
|
35862
|
+
width: 100%;
|
|
35863
|
+
display: inline-flex;
|
|
35864
|
+
align-items: center;
|
|
35865
|
+
justify-content: center;
|
|
35866
|
+
column-gap: 4px;
|
|
35438
35867
|
}
|
|
35439
|
-
.
|
|
35440
|
-
|
|
35441
|
-
|
|
35868
|
+
.E_h6l1tj4 .step-item-prefix-container {
|
|
35869
|
+
display: inline-flex;
|
|
35870
|
+
align-items: center;
|
|
35871
|
+
width: 18px;
|
|
35872
|
+
height: 18px;
|
|
35873
|
+
color: rgba(44, 56, 82, 0.75);
|
|
35874
|
+
justify-content: center;
|
|
35442
35875
|
}
|
|
35443
35876
|
|
|
35444
|
-
.
|
|
35877
|
+
.E_v18frne8 {
|
|
35878
|
+
width: 100%;
|
|
35445
35879
|
display: flex;
|
|
35446
35880
|
align-items: center;
|
|
35447
|
-
|
|
35881
|
+
justify-content: center;
|
|
35882
|
+
column-gap: 6px;
|
|
35883
|
+
font-size: 13px;
|
|
35884
|
+
}
|
|
35885
|
+
.E_v18frne8 .step-item-prefix-container {
|
|
35886
|
+
display: inline-flex;
|
|
35887
|
+
align-items: center;
|
|
35888
|
+
min-width: 20px;
|
|
35889
|
+
min-height: 20px;
|
|
35890
|
+
color: rgba(44, 56, 82, 0.75);
|
|
35891
|
+
justify-content: center;
|
|
35448
35892
|
}
|
|
35449
35893
|
|
|
35450
35894
|
.E_t13ef470 {
|
|
@@ -35477,167 +35921,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35477
35921
|
background: rgba(163, 180, 204, 0.18);
|
|
35478
35922
|
}
|
|
35479
35923
|
|
|
35480
|
-
.E_msn7nxt {
|
|
35481
|
-
color: rgba(44, 56, 82, 0.6);
|
|
35482
|
-
text-align: center;
|
|
35483
|
-
display: flex;
|
|
35484
|
-
align-items: center;
|
|
35485
|
-
justify-content: center;
|
|
35486
|
-
flex-direction: column;
|
|
35487
|
-
height: 100%;
|
|
35488
|
-
}
|
|
35489
|
-
.E_msn7nxt .link {
|
|
35490
|
-
color: #0080ff;
|
|
35491
|
-
cursor: pointer;
|
|
35492
|
-
}
|
|
35493
|
-
|
|
35494
|
-
.E_mp64wfi {
|
|
35495
|
-
width: 100%;
|
|
35496
|
-
height: 100%;
|
|
35497
|
-
display: flex;
|
|
35498
|
-
flex-direction: column;
|
|
35499
|
-
}
|
|
35500
|
-
.E_mp64wfi .name-toolbar {
|
|
35501
|
-
width: 100%;
|
|
35502
|
-
display: flex;
|
|
35503
|
-
line-height: 30px;
|
|
35504
|
-
padding: 0 16px;
|
|
35505
|
-
justify-content: space-between;
|
|
35506
|
-
}
|
|
35507
|
-
.E_mp64wfi .name-toolbar .metric-extra {
|
|
35508
|
-
display: flex;
|
|
35509
|
-
font-size: 12px;
|
|
35510
|
-
align-items: center;
|
|
35511
|
-
}
|
|
35512
|
-
.E_mp64wfi .name-toolbar .metric-extra .info-item {
|
|
35513
|
-
color: #a3b4cc;
|
|
35514
|
-
}
|
|
35515
|
-
.E_mp64wfi .name-toolbar .metric-extra .info-item + .info-item {
|
|
35516
|
-
margin-left: 10px;
|
|
35517
|
-
}
|
|
35518
|
-
.E_mp64wfi .name-toolbar .metric-extra .menu-trigger {
|
|
35519
|
-
margin-left: 10px;
|
|
35520
|
-
cursor: pointer;
|
|
35521
|
-
}
|
|
35522
|
-
.E_mp64wfi .content {
|
|
35523
|
-
flex: 1;
|
|
35524
|
-
width: 100%;
|
|
35525
|
-
display: flex;
|
|
35526
|
-
justify-content: center;
|
|
35527
|
-
align-items: center;
|
|
35528
|
-
}
|
|
35529
|
-
.E_mp64wfi .single-content {
|
|
35530
|
-
height: 65px;
|
|
35531
|
-
}
|
|
35532
|
-
|
|
35533
|
-
.E_l1oyigan {
|
|
35534
|
-
display: flex;
|
|
35535
|
-
align-items: center;
|
|
35536
|
-
white-space: nowrap;
|
|
35537
|
-
overflow: hidden;
|
|
35538
|
-
width: 100%;
|
|
35539
|
-
}
|
|
35540
|
-
.E_l1oyigan .ant-dropdown-trigger {
|
|
35541
|
-
margin-left: auto;
|
|
35542
|
-
font-size: 12px;
|
|
35543
|
-
}
|
|
35544
|
-
|
|
35545
|
-
.E_l1noi4n1 {
|
|
35546
|
-
display: flex;
|
|
35547
|
-
justify-content: flex-start;
|
|
35548
|
-
align-items: center;
|
|
35549
|
-
font-size: 12px;
|
|
35550
|
-
cursor: pointer;
|
|
35551
|
-
}
|
|
35552
|
-
.E_l1noi4n1:not(:last-child) {
|
|
35553
|
-
margin-right: 20px;
|
|
35554
|
-
}
|
|
35555
|
-
.E_l1noi4n1.deselected {
|
|
35556
|
-
opacity: 0.4;
|
|
35557
|
-
}
|
|
35558
|
-
.E_l1noi4n1.deselected .color-block {
|
|
35559
|
-
background: #b4beca !important;
|
|
35560
|
-
}
|
|
35561
|
-
|
|
35562
|
-
.E_cz19rz6 {
|
|
35563
|
-
display: inline-block;
|
|
35564
|
-
height: 8px;
|
|
35565
|
-
width: 8px;
|
|
35566
|
-
margin-right: 8px;
|
|
35567
|
-
}
|
|
35568
|
-
|
|
35569
|
-
.E_e17r5r9c .ant-dropdown-menu-item {
|
|
35570
|
-
display: flex;
|
|
35571
|
-
align-items: center;
|
|
35572
|
-
font-size: 12px;
|
|
35573
|
-
margin: 0;
|
|
35574
|
-
}
|
|
35575
|
-
|
|
35576
|
-
.E_m1y1hhnr {
|
|
35577
|
-
position: relative;
|
|
35578
|
-
}
|
|
35579
|
-
.E_m1y1hhnr.hidden-xaxis .pointer-wrapper {
|
|
35580
|
-
bottom: -12px;
|
|
35581
|
-
}
|
|
35582
|
-
.E_m1y1hhnr .metric-toolbar {
|
|
35583
|
-
display: flex;
|
|
35584
|
-
justify-content: space-between;
|
|
35585
|
-
line-height: 30px;
|
|
35586
|
-
margin: 0 16px;
|
|
35587
|
-
}
|
|
35588
|
-
.E_m1y1hhnr .metric-toolbar .metric-extra {
|
|
35589
|
-
display: flex;
|
|
35590
|
-
font-size: 12px;
|
|
35591
|
-
align-items: center;
|
|
35592
|
-
}
|
|
35593
|
-
.E_m1y1hhnr .metric-toolbar .metric-extra .info-item {
|
|
35594
|
-
color: #a3b4cc;
|
|
35595
|
-
}
|
|
35596
|
-
.E_m1y1hhnr .metric-toolbar .metric-extra .info-item + .info-item {
|
|
35597
|
-
margin-left: 10px;
|
|
35598
|
-
}
|
|
35599
|
-
.E_m1y1hhnr .metric-toolbar .metric-extra .menu-trigger {
|
|
35600
|
-
margin-left: 10px;
|
|
35601
|
-
cursor: pointer;
|
|
35602
|
-
}
|
|
35603
|
-
.E_m1y1hhnr .recharts-xAxis {
|
|
35604
|
-
font-size: 12px;
|
|
35605
|
-
}
|
|
35606
|
-
.E_m1y1hhnr .pointer-wrapper {
|
|
35607
|
-
position: absolute;
|
|
35608
|
-
bottom: 10px;
|
|
35609
|
-
padding: 0 8px;
|
|
35610
|
-
border-radius: 4px;
|
|
35611
|
-
font-size: 12px;
|
|
35612
|
-
color: #fff;
|
|
35613
|
-
background: rgba(0, 0, 0, 0.75);
|
|
35614
|
-
transform: translateX(-50%);
|
|
35615
|
-
}
|
|
35616
|
-
|
|
35617
|
-
.E_tnvijvs {
|
|
35618
|
-
min-width: 200px;
|
|
35619
|
-
}
|
|
35620
|
-
|
|
35621
|
-
.E_t1ub2aex {
|
|
35622
|
-
display: flex;
|
|
35623
|
-
align-items: center;
|
|
35624
|
-
justify-content: space-between;
|
|
35625
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
35626
|
-
color: #b4beca;
|
|
35627
|
-
font-size: 12px;
|
|
35628
|
-
padding: 3px 6px;
|
|
35629
|
-
}
|
|
35630
|
-
.E_t1ub2aex:first-child {
|
|
35631
|
-
padding-top: 3px;
|
|
35632
|
-
}
|
|
35633
|
-
.E_t1ub2aex:last-child {
|
|
35634
|
-
padding-bottom: 3px;
|
|
35635
|
-
}
|
|
35636
|
-
.E_t1ub2aex .column-value {
|
|
35637
|
-
color: #fff;
|
|
35638
|
-
margin-left: 8px;
|
|
35639
|
-
}
|
|
35640
|
-
|
|
35641
35924
|
.E_t59qhqp {
|
|
35642
35925
|
background: #FFFFFF;
|
|
35643
35926
|
padding: 24px 32px;
|
|
@@ -35715,6 +35998,10 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35715
35998
|
}
|
|
35716
35999
|
}
|
|
35717
36000
|
|
|
36001
|
+
.E_t1616y1o {
|
|
36002
|
+
color: #fff;
|
|
36003
|
+
}
|
|
36004
|
+
|
|
35718
36005
|
.E_t1g36k2w {
|
|
35719
36006
|
overflow: hidden;
|
|
35720
36007
|
height: 100%;
|
|
@@ -35744,6 +36031,15 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
35744
36031
|
background: rgba(225, 230, 241, 0.6);
|
|
35745
36032
|
}
|
|
35746
36033
|
|
|
36034
|
+
.E_a9y3flr {
|
|
36035
|
+
margin-left: 8px;
|
|
36036
|
+
}
|
|
36037
|
+
|
|
36038
|
+
.E_a1njc627 {
|
|
36039
|
+
font-size: 12px;
|
|
36040
|
+
color: #00122e;
|
|
36041
|
+
}
|
|
36042
|
+
|
|
35747
36043
|
.E_f16blduf.ant-form-item {
|
|
35748
36044
|
margin-bottom: 0;
|
|
35749
36045
|
}
|