@cloudtower/eagle 0.27.1 → 0.27.2-calendar
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Calendar/index.d.ts +3 -0
- package/dist/components/Fields/FieldsString/FieldsString.stories.d.ts +1 -1
- package/dist/components/I18nNameTag/index.d.ts +2 -8
- package/dist/components/Metric/metric.d.ts +1 -1
- package/dist/components/Tag/Tag.stories.d.ts +2 -2
- package/dist/components/Tag/style.d.ts +1 -0
- package/dist/components.css +1233 -953
- package/dist/core/StepProgress/StepProgress.stories.d.ts +8 -0
- package/dist/core/StepProgress/index.d.ts +3 -0
- package/dist/coreX/CronCalendar/CronCalendar.stories.d.ts +6 -0
- package/dist/coreX/CronCalendar/index.d.ts +4 -0
- package/dist/coreX/CronPlan/CronPlan.stories.d.ts +9 -0
- package/dist/coreX/CronPlan/index.d.ts +18 -0
- package/dist/coreX/SwitchWithText/SwitchWithText.stories.d.ts +9 -0
- package/dist/coreX/SwitchWithText/__tests__/h5_css.test.d.ts +1 -0
- package/dist/coreX/SwitchWithText/index.d.ts +4 -0
- package/dist/coreX/common/getCalendarTitle.d.ts +2 -0
- package/dist/esm/index.js +3804 -2642
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +50 -9
- package/dist/spec/type.d.ts +6 -0
- package/dist/style.css +773 -493
- package/dist/umd/index.js +3803 -2642
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/__test__/compute.spec.d.ts +1 -0
- package/dist/utils/__test__/cron-time.spec.d.ts +1 -0
- package/dist/utils/__test__/time.spec.d.ts +1 -0
- package/dist/utils/compute.d.ts +1 -0
- package/dist/utils/cron-time.d.ts +65 -0
- package/dist/utils/icon.d.ts +2 -1
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/time.d.ts +25 -0
- package/dist/variables.scss +2 -0
- package/package.json +6 -6
- package/dist/components/images/index.d.ts +0 -15
package/dist/style.css
CHANGED
|
@@ -29558,6 +29558,21 @@ html body {
|
|
|
29558
29558
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
29559
29559
|
}
|
|
29560
29560
|
}
|
|
29561
|
+
.fde5mpd {
|
|
29562
|
+
width: 100%;
|
|
29563
|
+
height: 100%;
|
|
29564
|
+
min-height: 124px;
|
|
29565
|
+
display: flex;
|
|
29566
|
+
flex-direction: column;
|
|
29567
|
+
justify-content: center;
|
|
29568
|
+
align-items: center;
|
|
29569
|
+
}
|
|
29570
|
+
.fde5mpd .error-text {
|
|
29571
|
+
color: rgba(10, 37, 85, 0.6);
|
|
29572
|
+
margin-bottom: 16px;
|
|
29573
|
+
font-size: 18px;
|
|
29574
|
+
}
|
|
29575
|
+
|
|
29561
29576
|
.buj61ew.ant-btn-icon-only {
|
|
29562
29577
|
justify-content: center;
|
|
29563
29578
|
}
|
|
@@ -29808,6 +29823,24 @@ html body {
|
|
|
29808
29823
|
padding: 0;
|
|
29809
29824
|
}
|
|
29810
29825
|
|
|
29826
|
+
.i1mrf09m {
|
|
29827
|
+
display: inline-flex;
|
|
29828
|
+
align-items: center;
|
|
29829
|
+
}
|
|
29830
|
+
.i1mrf09m .icon-inner {
|
|
29831
|
+
display: inline-flex;
|
|
29832
|
+
align-items: center;
|
|
29833
|
+
justify-content: center;
|
|
29834
|
+
}
|
|
29835
|
+
.i1mrf09m .icon-inner + span,
|
|
29836
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
29837
|
+
margin-left: 4px;
|
|
29838
|
+
}
|
|
29839
|
+
.i1mrf09m.is-rotate img,
|
|
29840
|
+
.i1mrf09m.is-rotate svg {
|
|
29841
|
+
animation: rotate 680ms linear infinite;
|
|
29842
|
+
}
|
|
29843
|
+
|
|
29811
29844
|
.bpq0js6 {
|
|
29812
29845
|
padding: 4px 11px;
|
|
29813
29846
|
}
|
|
@@ -29837,61 +29870,6 @@ html body {
|
|
|
29837
29870
|
border-radius: unset;
|
|
29838
29871
|
}
|
|
29839
29872
|
|
|
29840
|
-
.fde5mpd {
|
|
29841
|
-
width: 100%;
|
|
29842
|
-
height: 100%;
|
|
29843
|
-
min-height: 124px;
|
|
29844
|
-
display: flex;
|
|
29845
|
-
flex-direction: column;
|
|
29846
|
-
justify-content: center;
|
|
29847
|
-
align-items: center;
|
|
29848
|
-
}
|
|
29849
|
-
.fde5mpd .error-text {
|
|
29850
|
-
color: rgba(10, 37, 85, 0.6);
|
|
29851
|
-
margin-bottom: 16px;
|
|
29852
|
-
font-size: 18px;
|
|
29853
|
-
}
|
|
29854
|
-
|
|
29855
|
-
.i1mrf09m {
|
|
29856
|
-
display: inline-flex;
|
|
29857
|
-
align-items: center;
|
|
29858
|
-
}
|
|
29859
|
-
.i1mrf09m .icon-inner {
|
|
29860
|
-
display: inline-flex;
|
|
29861
|
-
align-items: center;
|
|
29862
|
-
justify-content: center;
|
|
29863
|
-
}
|
|
29864
|
-
.i1mrf09m .icon-inner + span,
|
|
29865
|
-
.i1mrf09m span + .icon-inner.suffix {
|
|
29866
|
-
margin-left: 4px;
|
|
29867
|
-
}
|
|
29868
|
-
.i1mrf09m.is-rotate img,
|
|
29869
|
-
.i1mrf09m.is-rotate svg {
|
|
29870
|
-
animation: rotate 680ms linear infinite;
|
|
29871
|
-
}
|
|
29872
|
-
|
|
29873
|
-
.iap75of {
|
|
29874
|
-
height: 18px;
|
|
29875
|
-
line-height: 18px;
|
|
29876
|
-
padding: 0 4px;
|
|
29877
|
-
border-radius: 4px;
|
|
29878
|
-
background: rgba(235, 239, 245, 0.6);
|
|
29879
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
29880
|
-
display: flex;
|
|
29881
|
-
align-items: center;
|
|
29882
|
-
white-space: nowrap;
|
|
29883
|
-
margin-right: 4px;
|
|
29884
|
-
}
|
|
29885
|
-
|
|
29886
|
-
.obf05yr {
|
|
29887
|
-
display: inline-block;
|
|
29888
|
-
}
|
|
29889
|
-
|
|
29890
|
-
.hsms1n6 {
|
|
29891
|
-
visibility: hidden;
|
|
29892
|
-
position: absolute;
|
|
29893
|
-
}
|
|
29894
|
-
|
|
29895
29873
|
.p12gwtiw {
|
|
29896
29874
|
display: flex;
|
|
29897
29875
|
justify-content: space-between;
|
|
@@ -30095,6 +30073,28 @@ html body {
|
|
|
30095
30073
|
width: 36px;
|
|
30096
30074
|
}
|
|
30097
30075
|
|
|
30076
|
+
.obf05yr {
|
|
30077
|
+
display: inline-block;
|
|
30078
|
+
}
|
|
30079
|
+
|
|
30080
|
+
.hsms1n6 {
|
|
30081
|
+
visibility: hidden;
|
|
30082
|
+
position: absolute;
|
|
30083
|
+
}
|
|
30084
|
+
|
|
30085
|
+
.iap75of {
|
|
30086
|
+
height: 18px;
|
|
30087
|
+
line-height: 18px;
|
|
30088
|
+
padding: 0 4px;
|
|
30089
|
+
border-radius: 4px;
|
|
30090
|
+
background: rgba(235, 239, 245, 0.6);
|
|
30091
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30092
|
+
display: flex;
|
|
30093
|
+
align-items: center;
|
|
30094
|
+
white-space: nowrap;
|
|
30095
|
+
margin-right: 4px;
|
|
30096
|
+
}
|
|
30097
|
+
|
|
30098
30098
|
.s34f1qb.ant-switch {
|
|
30099
30099
|
min-width: 40px;
|
|
30100
30100
|
height: 24px;
|
|
@@ -30762,87 +30762,6 @@ input.rrg1fkn.ant-input {
|
|
|
30762
30762
|
border-bottom-left-radius: 0;
|
|
30763
30763
|
}
|
|
30764
30764
|
|
|
30765
|
-
.s1fc623g {
|
|
30766
|
-
width: 430px !important;
|
|
30767
|
-
}
|
|
30768
|
-
|
|
30769
|
-
.da3mx0o .ant-select-item-group {
|
|
30770
|
-
padding: 8px 16px;
|
|
30771
|
-
line-height: 18px;
|
|
30772
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30773
|
-
height: 34px;
|
|
30774
|
-
min-height: 34px;
|
|
30775
|
-
box-sizing: border-box;
|
|
30776
|
-
margin-top: 8px;
|
|
30777
|
-
}
|
|
30778
|
-
|
|
30779
|
-
.onr9gzt {
|
|
30780
|
-
display: flex;
|
|
30781
|
-
flex-direction: column;
|
|
30782
|
-
margin: 1px 8px;
|
|
30783
|
-
padding: 8px;
|
|
30784
|
-
border-radius: 4px;
|
|
30785
|
-
}
|
|
30786
|
-
.onr9gzt .selected-icon {
|
|
30787
|
-
display: none;
|
|
30788
|
-
}
|
|
30789
|
-
.onr9gzt.ant-select-item-option-grouped {
|
|
30790
|
-
padding-left: 8px;
|
|
30791
|
-
}
|
|
30792
|
-
.onr9gzt.ant-select-item-option-selected {
|
|
30793
|
-
background-color: white;
|
|
30794
|
-
}
|
|
30795
|
-
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
30796
|
-
color: #0080ff;
|
|
30797
|
-
}
|
|
30798
|
-
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
30799
|
-
display: block;
|
|
30800
|
-
}
|
|
30801
|
-
.onr9gzt.ant-select-item-option-active {
|
|
30802
|
-
background: rgba(0, 136, 255, 0.16);
|
|
30803
|
-
}
|
|
30804
|
-
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
30805
|
-
color: #0080ff;
|
|
30806
|
-
}
|
|
30807
|
-
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
30808
|
-
background: rgba(0, 136, 255, 0.1);
|
|
30809
|
-
color: #0080ff;
|
|
30810
|
-
}
|
|
30811
|
-
|
|
30812
|
-
.oiy0apc {
|
|
30813
|
-
display: flex;
|
|
30814
|
-
justify-content: space-between;
|
|
30815
|
-
height: 20px;
|
|
30816
|
-
line-height: 20px;
|
|
30817
|
-
}
|
|
30818
|
-
.oiy0apc .timezone-title {
|
|
30819
|
-
color: #2d3a56;
|
|
30820
|
-
overflow: hidden;
|
|
30821
|
-
text-overflow: ellipsis;
|
|
30822
|
-
}
|
|
30823
|
-
|
|
30824
|
-
.of4y382 {
|
|
30825
|
-
display: flex;
|
|
30826
|
-
justify-content: space-between;
|
|
30827
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30828
|
-
height: 18px;
|
|
30829
|
-
line-height: 18px;
|
|
30830
|
-
margin-top: 2px;
|
|
30831
|
-
}
|
|
30832
|
-
|
|
30833
|
-
.t19903l9 {
|
|
30834
|
-
border: none;
|
|
30835
|
-
margin-right: 0;
|
|
30836
|
-
background: rgba(225, 230, 241, 0.6);
|
|
30837
|
-
}
|
|
30838
|
-
|
|
30839
|
-
.ohwbvxu {
|
|
30840
|
-
pointer-events: none;
|
|
30841
|
-
height: 32px;
|
|
30842
|
-
width: 100%;
|
|
30843
|
-
opacity: 0;
|
|
30844
|
-
}
|
|
30845
|
-
|
|
30846
30765
|
.t1upn1sz {
|
|
30847
30766
|
height: 100%;
|
|
30848
30767
|
}
|
|
@@ -31207,57 +31126,142 @@ input.rrg1fkn.ant-input {
|
|
|
31207
31126
|
background: #fff;
|
|
31208
31127
|
}
|
|
31209
31128
|
|
|
31210
|
-
.
|
|
31211
|
-
|
|
31212
|
-
font-style: normal;
|
|
31213
|
-
font-weight: bold;
|
|
31214
|
-
font-size: 32px;
|
|
31215
|
-
line-height: 40px;
|
|
31129
|
+
.s1fc623g {
|
|
31130
|
+
width: 430px !important;
|
|
31216
31131
|
}
|
|
31217
31132
|
|
|
31218
|
-
.
|
|
31219
|
-
|
|
31220
|
-
|
|
31221
|
-
|
|
31222
|
-
|
|
31223
|
-
|
|
31133
|
+
.da3mx0o .ant-select-item-group {
|
|
31134
|
+
padding: 8px 16px;
|
|
31135
|
+
line-height: 18px;
|
|
31136
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31137
|
+
height: 34px;
|
|
31138
|
+
min-height: 34px;
|
|
31139
|
+
box-sizing: border-box;
|
|
31140
|
+
margin-top: 8px;
|
|
31224
31141
|
}
|
|
31225
31142
|
|
|
31226
|
-
.
|
|
31227
|
-
|
|
31228
|
-
|
|
31229
|
-
|
|
31230
|
-
|
|
31231
|
-
|
|
31143
|
+
.onr9gzt {
|
|
31144
|
+
display: flex;
|
|
31145
|
+
flex-direction: column;
|
|
31146
|
+
margin: 1px 8px;
|
|
31147
|
+
padding: 8px;
|
|
31148
|
+
border-radius: 4px;
|
|
31232
31149
|
}
|
|
31233
|
-
|
|
31234
|
-
|
|
31235
|
-
font-family: Inter;
|
|
31236
|
-
font-style: normal;
|
|
31237
|
-
font-weight: bold;
|
|
31238
|
-
font-size: 20px;
|
|
31239
|
-
line-height: 24px;
|
|
31150
|
+
.onr9gzt .selected-icon {
|
|
31151
|
+
display: none;
|
|
31240
31152
|
}
|
|
31241
|
-
|
|
31242
|
-
|
|
31243
|
-
font-family: Inter;
|
|
31244
|
-
font-style: normal;
|
|
31245
|
-
font-weight: normal;
|
|
31246
|
-
font-size: 20px;
|
|
31247
|
-
line-height: 24px;
|
|
31153
|
+
.onr9gzt.ant-select-item-option-grouped {
|
|
31154
|
+
padding-left: 8px;
|
|
31248
31155
|
}
|
|
31249
|
-
|
|
31250
|
-
|
|
31251
|
-
font-family: Inter;
|
|
31252
|
-
font-style: normal;
|
|
31253
|
-
font-weight: bold;
|
|
31254
|
-
font-size: 18px;
|
|
31255
|
-
line-height: 22px;
|
|
31156
|
+
.onr9gzt.ant-select-item-option-selected {
|
|
31157
|
+
background-color: white;
|
|
31256
31158
|
}
|
|
31257
|
-
|
|
31258
|
-
|
|
31259
|
-
|
|
31260
|
-
|
|
31159
|
+
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
31160
|
+
color: #0080ff;
|
|
31161
|
+
}
|
|
31162
|
+
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
31163
|
+
display: block;
|
|
31164
|
+
}
|
|
31165
|
+
.onr9gzt.ant-select-item-option-active {
|
|
31166
|
+
background: rgba(0, 136, 255, 0.16);
|
|
31167
|
+
}
|
|
31168
|
+
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
31169
|
+
color: #0080ff;
|
|
31170
|
+
}
|
|
31171
|
+
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
31172
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31173
|
+
color: #0080ff;
|
|
31174
|
+
}
|
|
31175
|
+
|
|
31176
|
+
.oiy0apc {
|
|
31177
|
+
display: flex;
|
|
31178
|
+
justify-content: space-between;
|
|
31179
|
+
height: 20px;
|
|
31180
|
+
line-height: 20px;
|
|
31181
|
+
}
|
|
31182
|
+
.oiy0apc .timezone-title {
|
|
31183
|
+
color: #2d3a56;
|
|
31184
|
+
overflow: hidden;
|
|
31185
|
+
text-overflow: ellipsis;
|
|
31186
|
+
}
|
|
31187
|
+
|
|
31188
|
+
.of4y382 {
|
|
31189
|
+
display: flex;
|
|
31190
|
+
justify-content: space-between;
|
|
31191
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31192
|
+
height: 18px;
|
|
31193
|
+
line-height: 18px;
|
|
31194
|
+
margin-top: 2px;
|
|
31195
|
+
}
|
|
31196
|
+
|
|
31197
|
+
.t19903l9 {
|
|
31198
|
+
border: none;
|
|
31199
|
+
margin-right: 0;
|
|
31200
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31201
|
+
}
|
|
31202
|
+
|
|
31203
|
+
.ohwbvxu {
|
|
31204
|
+
pointer-events: none;
|
|
31205
|
+
height: 32px;
|
|
31206
|
+
width: 100%;
|
|
31207
|
+
opacity: 0;
|
|
31208
|
+
}
|
|
31209
|
+
|
|
31210
|
+
.i1e4sgug {
|
|
31211
|
+
display: inline-block;
|
|
31212
|
+
}
|
|
31213
|
+
|
|
31214
|
+
.d6j0lbj {
|
|
31215
|
+
font-family: Inter;
|
|
31216
|
+
font-style: normal;
|
|
31217
|
+
font-weight: bold;
|
|
31218
|
+
font-size: 32px;
|
|
31219
|
+
line-height: 40px;
|
|
31220
|
+
}
|
|
31221
|
+
|
|
31222
|
+
.d1xhvvxe {
|
|
31223
|
+
font-family: Inter;
|
|
31224
|
+
font-style: normal;
|
|
31225
|
+
font-weight: bold;
|
|
31226
|
+
font-size: 24px;
|
|
31227
|
+
line-height: 32px;
|
|
31228
|
+
}
|
|
31229
|
+
|
|
31230
|
+
.dk10mxq {
|
|
31231
|
+
font-family: Inter;
|
|
31232
|
+
font-style: normal;
|
|
31233
|
+
font-weight: normal;
|
|
31234
|
+
font-size: 32px;
|
|
31235
|
+
line-height: 40px;
|
|
31236
|
+
}
|
|
31237
|
+
|
|
31238
|
+
.dxsait {
|
|
31239
|
+
font-family: Inter;
|
|
31240
|
+
font-style: normal;
|
|
31241
|
+
font-weight: bold;
|
|
31242
|
+
font-size: 20px;
|
|
31243
|
+
line-height: 24px;
|
|
31244
|
+
}
|
|
31245
|
+
|
|
31246
|
+
.dokn0h3 {
|
|
31247
|
+
font-family: Inter;
|
|
31248
|
+
font-style: normal;
|
|
31249
|
+
font-weight: normal;
|
|
31250
|
+
font-size: 20px;
|
|
31251
|
+
line-height: 24px;
|
|
31252
|
+
}
|
|
31253
|
+
|
|
31254
|
+
.dobau4p {
|
|
31255
|
+
font-family: Inter;
|
|
31256
|
+
font-style: normal;
|
|
31257
|
+
font-weight: bold;
|
|
31258
|
+
font-size: 18px;
|
|
31259
|
+
line-height: 22px;
|
|
31260
|
+
}
|
|
31261
|
+
|
|
31262
|
+
.dvolwok {
|
|
31263
|
+
font-family: Inter;
|
|
31264
|
+
font-style: normal;
|
|
31261
31265
|
font-weight: normal;
|
|
31262
31266
|
font-size: 18px;
|
|
31263
31267
|
line-height: 22px;
|
|
@@ -31682,10 +31686,6 @@ input.rrg1fkn.ant-input {
|
|
|
31682
31686
|
line-height: 12px;
|
|
31683
31687
|
}
|
|
31684
31688
|
|
|
31685
|
-
.i1e4sgug {
|
|
31686
|
-
display: inline-block;
|
|
31687
|
-
}
|
|
31688
|
-
|
|
31689
31689
|
.m15dvk92 {
|
|
31690
31690
|
display: flex;
|
|
31691
31691
|
justify-content: space-between;
|
|
@@ -31719,6 +31719,22 @@ input.rrg1fkn.ant-input {
|
|
|
31719
31719
|
padding: 8px 12px;
|
|
31720
31720
|
}
|
|
31721
31721
|
|
|
31722
|
+
.berrcjl {
|
|
31723
|
+
color: rgba(10, 37, 85, 0.6);
|
|
31724
|
+
margin-bottom: 4px;
|
|
31725
|
+
}
|
|
31726
|
+
.berrcjl .breadcrumb-link {
|
|
31727
|
+
color: rgba(10, 37, 85, 0.6);
|
|
31728
|
+
cursor: pointer;
|
|
31729
|
+
transition: color 160ms ease;
|
|
31730
|
+
}
|
|
31731
|
+
.berrcjl .breadcrumb-link:hover {
|
|
31732
|
+
color: #0080ff;
|
|
31733
|
+
}
|
|
31734
|
+
.berrcjl .breadcrumb-link:active {
|
|
31735
|
+
color: #005ed1;
|
|
31736
|
+
}
|
|
31737
|
+
|
|
31722
31738
|
.c1uzzomf {
|
|
31723
31739
|
margin-bottom: 16px;
|
|
31724
31740
|
}
|
|
@@ -31741,98 +31757,270 @@ input.rrg1fkn.ant-input {
|
|
|
31741
31757
|
text-align: center;
|
|
31742
31758
|
}
|
|
31743
31759
|
|
|
31744
|
-
.
|
|
31745
|
-
color:
|
|
31746
|
-
|
|
31747
|
-
|
|
31748
|
-
|
|
31749
|
-
|
|
31750
|
-
|
|
31751
|
-
|
|
31760
|
+
.c1bus5hc {
|
|
31761
|
+
--color: white;
|
|
31762
|
+
height: 14px;
|
|
31763
|
+
width: 14px;
|
|
31764
|
+
border-radius: 50%;
|
|
31765
|
+
flex-shrink: 0;
|
|
31766
|
+
display: flex;
|
|
31767
|
+
align-items: center;
|
|
31768
|
+
justify-content: center;
|
|
31769
|
+
border: 1px solid var(--color);
|
|
31752
31770
|
}
|
|
31753
|
-
.
|
|
31754
|
-
|
|
31771
|
+
.c1bus5hc .circle-inner {
|
|
31772
|
+
position: relative;
|
|
31773
|
+
height: 10px;
|
|
31774
|
+
width: 10px;
|
|
31775
|
+
border-radius: 50%;
|
|
31776
|
+
overflow: hidden;
|
|
31755
31777
|
}
|
|
31756
|
-
.
|
|
31757
|
-
|
|
31778
|
+
.c1bus5hc .circle-content {
|
|
31779
|
+
position: absolute;
|
|
31780
|
+
height: 100%;
|
|
31781
|
+
width: 100%;
|
|
31782
|
+
left: 0;
|
|
31783
|
+
top: 0;
|
|
31784
|
+
border-radius: 50%;
|
|
31785
|
+
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
31786
|
+
transform: rotate(180deg);
|
|
31758
31787
|
}
|
|
31759
|
-
|
|
31760
|
-
|
|
31788
|
+
.c1bus5hc .circle-child {
|
|
31789
|
+
position: absolute;
|
|
31790
|
+
height: 100%;
|
|
31761
31791
|
width: 100%;
|
|
31762
|
-
|
|
31763
|
-
|
|
31764
|
-
|
|
31792
|
+
left: 0;
|
|
31793
|
+
top: 0;
|
|
31794
|
+
margin-left: 50%;
|
|
31795
|
+
transform-origin: left;
|
|
31796
|
+
background: white;
|
|
31797
|
+
transform: rotate(0deg);
|
|
31765
31798
|
}
|
|
31766
31799
|
|
|
31767
|
-
.
|
|
31768
|
-
|
|
31769
|
-
line-height: 22px;
|
|
31770
|
-
display: inline-flex;
|
|
31800
|
+
.c1up1pdz {
|
|
31801
|
+
width: 648px;
|
|
31771
31802
|
}
|
|
31772
|
-
.
|
|
31773
|
-
|
|
31774
|
-
display: flex;
|
|
31775
|
-
align-items: center;
|
|
31776
|
-
top: 0;
|
|
31803
|
+
.c1up1pdz.active {
|
|
31804
|
+
border-color: #0080ff;
|
|
31777
31805
|
}
|
|
31778
|
-
.
|
|
31779
|
-
|
|
31806
|
+
.c1up1pdz.active > header {
|
|
31807
|
+
background: rgba(0, 128, 255, 0.1);
|
|
31780
31808
|
}
|
|
31781
|
-
.
|
|
31782
|
-
|
|
31783
|
-
border-color: #0080ff;
|
|
31809
|
+
.c1up1pdz .expand {
|
|
31810
|
+
padding: 12px;
|
|
31784
31811
|
}
|
|
31785
|
-
.
|
|
31786
|
-
|
|
31812
|
+
.c1up1pdz .field-item {
|
|
31813
|
+
display: flex;
|
|
31814
|
+
padding: 10px 0;
|
|
31815
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
31787
31816
|
}
|
|
31788
|
-
.
|
|
31789
|
-
|
|
31790
|
-
|
|
31817
|
+
.c1up1pdz .field-item:last-child {
|
|
31818
|
+
border-bottom: none;
|
|
31819
|
+
padding-bottom: 0;
|
|
31791
31820
|
}
|
|
31792
|
-
.
|
|
31793
|
-
|
|
31821
|
+
.c1up1pdz .field-item label {
|
|
31822
|
+
line-height: 32px;
|
|
31823
|
+
width: 100px;
|
|
31824
|
+
color: rgba(62, 70, 82, 0.6);
|
|
31794
31825
|
}
|
|
31795
|
-
.
|
|
31796
|
-
|
|
31797
|
-
|
|
31798
|
-
width: 10px;
|
|
31799
|
-
border-radius: 2px;
|
|
31826
|
+
.c1up1pdz .help {
|
|
31827
|
+
color: rgba(62, 70, 82, 0.6);
|
|
31828
|
+
margin-top: 5px;
|
|
31800
31829
|
}
|
|
31801
|
-
.
|
|
31802
|
-
|
|
31830
|
+
.c1up1pdz .ant-input-affix-wrapper,
|
|
31831
|
+
.c1up1pdz .ant-picker {
|
|
31832
|
+
width: 128px;
|
|
31803
31833
|
}
|
|
31804
|
-
|
|
31805
|
-
|
|
31806
|
-
|
|
31834
|
+
|
|
31835
|
+
.c156wh19 {
|
|
31836
|
+
display: flex;
|
|
31837
|
+
align-items: center;
|
|
31838
|
+
justify-content: space-between;
|
|
31839
|
+
word-break: keep-all;
|
|
31807
31840
|
}
|
|
31808
|
-
.
|
|
31809
|
-
|
|
31841
|
+
.c156wh19 .title {
|
|
31842
|
+
margin: 0 16px 0 8px;
|
|
31810
31843
|
}
|
|
31811
|
-
.
|
|
31812
|
-
|
|
31844
|
+
.c156wh19 .retain {
|
|
31845
|
+
color: rgba(129, 138, 153, 0.6);
|
|
31813
31846
|
}
|
|
31814
|
-
.
|
|
31815
|
-
|
|
31816
|
-
|
|
31847
|
+
.c156wh19 .left {
|
|
31848
|
+
flex: 1;
|
|
31849
|
+
display: flex;
|
|
31850
|
+
overflow: hidden;
|
|
31851
|
+
align-items: center;
|
|
31852
|
+
justify-content: flex-start;
|
|
31853
|
+
white-space: nowrap;
|
|
31817
31854
|
}
|
|
31818
|
-
.
|
|
31819
|
-
|
|
31820
|
-
|
|
31821
|
-
|
|
31822
|
-
color: #2d3a56;
|
|
31855
|
+
.c156wh19 .left .title {
|
|
31856
|
+
max-width: 100%;
|
|
31857
|
+
overflow: hidden;
|
|
31858
|
+
text-overflow: ellipsis;
|
|
31823
31859
|
}
|
|
31824
|
-
.
|
|
31825
|
-
|
|
31826
|
-
|
|
31827
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31860
|
+
.c156wh19 .right {
|
|
31861
|
+
display: flex;
|
|
31862
|
+
align-items: center;
|
|
31828
31863
|
}
|
|
31829
|
-
.
|
|
31830
|
-
|
|
31831
|
-
|
|
31864
|
+
.c156wh19 .reverse {
|
|
31865
|
+
display: flex;
|
|
31866
|
+
flex-direction: row-reverse;
|
|
31867
|
+
align-items: center;
|
|
31832
31868
|
}
|
|
31833
|
-
.
|
|
31834
|
-
|
|
31835
|
-
|
|
31869
|
+
.c156wh19 .reverse .ant-switch {
|
|
31870
|
+
margin-left: 8px;
|
|
31871
|
+
}
|
|
31872
|
+
.c156wh19 .close {
|
|
31873
|
+
padding-left: 14px;
|
|
31874
|
+
margin-left: 14px;
|
|
31875
|
+
border-left: 1px solid rgba(129, 138, 153, 0.6);
|
|
31876
|
+
cursor: pointer;
|
|
31877
|
+
}
|
|
31878
|
+
|
|
31879
|
+
.m126spxy {
|
|
31880
|
+
padding-bottom: 4px;
|
|
31881
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
31882
|
+
}
|
|
31883
|
+
.m126spxy .ant-btn-link {
|
|
31884
|
+
padding: 1px 10px;
|
|
31885
|
+
color: rgba(62, 70, 82, 0.6);
|
|
31886
|
+
border-radius: 4px;
|
|
31887
|
+
}
|
|
31888
|
+
.m126spxy .ant-btn-link.active {
|
|
31889
|
+
background: rgba(0, 128, 255, 0.1);
|
|
31890
|
+
color: #0096ff;
|
|
31891
|
+
}
|
|
31892
|
+
|
|
31893
|
+
.wpbf4pq {
|
|
31894
|
+
padding: 10px 0;
|
|
31895
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
31896
|
+
}
|
|
31897
|
+
.wpbf4pq .ant-input,
|
|
31898
|
+
.wpbf4pq .ant-picker {
|
|
31899
|
+
width: 80px;
|
|
31900
|
+
margin: 0 9px;
|
|
31901
|
+
text-align: center;
|
|
31902
|
+
}
|
|
31903
|
+
.wpbf4pq .options {
|
|
31904
|
+
padding: 12px 0 12px 16px;
|
|
31905
|
+
border-left: 2px solid rgba(129, 138, 153, 0.6);
|
|
31906
|
+
margin: 5px 0 5px 8px;
|
|
31907
|
+
}
|
|
31908
|
+
.wpbf4pq .week-day-option,
|
|
31909
|
+
.wpbf4pq .month-day-option {
|
|
31910
|
+
background: #f5f7fa;
|
|
31911
|
+
box-sizing: border-box;
|
|
31912
|
+
border-radius: 16px;
|
|
31913
|
+
margin-right: 8px;
|
|
31914
|
+
}
|
|
31915
|
+
.wpbf4pq .week-day-option:focus,
|
|
31916
|
+
.wpbf4pq .month-day-option:focus {
|
|
31917
|
+
color: inherit;
|
|
31918
|
+
border-color: #d9d9d9;
|
|
31919
|
+
}
|
|
31920
|
+
.wpbf4pq .week-day-option.active {
|
|
31921
|
+
background-color: #0096ff;
|
|
31922
|
+
border-color: #0096ff;
|
|
31923
|
+
color: #fff;
|
|
31924
|
+
}
|
|
31925
|
+
.wpbf4pq .week-day-option.en-text {
|
|
31926
|
+
width: 110px;
|
|
31927
|
+
margin-top: 4px;
|
|
31928
|
+
}
|
|
31929
|
+
.wpbf4pq .month-day-option {
|
|
31930
|
+
width: 32px;
|
|
31931
|
+
padding: 0;
|
|
31932
|
+
margin-bottom: 8px;
|
|
31933
|
+
}
|
|
31934
|
+
.wpbf4pq .month-day-option.active {
|
|
31935
|
+
background-color: #0096ff;
|
|
31936
|
+
border-color: #0096ff;
|
|
31937
|
+
color: #fff;
|
|
31938
|
+
}
|
|
31939
|
+
|
|
31940
|
+
.s1iv0tp1 .enabled-switch {
|
|
31941
|
+
display: flex;
|
|
31942
|
+
align-items: center;
|
|
31943
|
+
}
|
|
31944
|
+
.s1iv0tp1 .enabled-text {
|
|
31945
|
+
margin-right: 8px;
|
|
31946
|
+
}
|
|
31947
|
+
|
|
31948
|
+
.tje3huy {
|
|
31949
|
+
width: 100%;
|
|
31950
|
+
overflow: inherit;
|
|
31951
|
+
white-space: inherit;
|
|
31952
|
+
text-overflow: ellipsis;
|
|
31953
|
+
}
|
|
31954
|
+
|
|
31955
|
+
.c198s9j3 {
|
|
31956
|
+
color: #2d3a56;
|
|
31957
|
+
line-height: 22px;
|
|
31958
|
+
display: inline-flex;
|
|
31959
|
+
}
|
|
31960
|
+
.c198s9j3 .ant-checkbox {
|
|
31961
|
+
height: 22px;
|
|
31962
|
+
display: flex;
|
|
31963
|
+
align-items: center;
|
|
31964
|
+
top: 0;
|
|
31965
|
+
}
|
|
31966
|
+
.c198s9j3 .ant-checkbox-checked::after {
|
|
31967
|
+
border: none;
|
|
31968
|
+
}
|
|
31969
|
+
.c198s9j3.ant-checkbox-wrapper:hover .ant-checkbox-inner, .c198s9j3.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner,
|
|
31970
|
+
.c198s9j3 .ant-checkbox:hover .ant-checkbox-inner {
|
|
31971
|
+
border-color: #0080ff;
|
|
31972
|
+
}
|
|
31973
|
+
.c198s9j3 .ant-checkbox .ant-checkbox-inner {
|
|
31974
|
+
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
31975
|
+
}
|
|
31976
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner,
|
|
31977
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
31978
|
+
border: 1px solid #0080ff;
|
|
31979
|
+
}
|
|
31980
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
31981
|
+
background: #0080ff;
|
|
31982
|
+
}
|
|
31983
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
31984
|
+
background-color: #fff;
|
|
31985
|
+
height: 2px;
|
|
31986
|
+
width: 10px;
|
|
31987
|
+
border-radius: 2px;
|
|
31988
|
+
}
|
|
31989
|
+
.c198s9j3.ant-checkbox-wrapper-disabled {
|
|
31990
|
+
opacity: 0.5;
|
|
31991
|
+
}
|
|
31992
|
+
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
31993
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31994
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
31995
|
+
}
|
|
31996
|
+
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
31997
|
+
border-color: #2d3a56;
|
|
31998
|
+
}
|
|
31999
|
+
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
32000
|
+
background: #2d3a56;
|
|
32001
|
+
}
|
|
32002
|
+
.c198s9j3 .ant-checkbox + span,
|
|
32003
|
+
.c198s9j3 .ant-checkbox-disabled + span {
|
|
32004
|
+
padding: 0;
|
|
32005
|
+
}
|
|
32006
|
+
.c198s9j3 .ant-checkbox + span .main,
|
|
32007
|
+
.c198s9j3 .ant-checkbox-disabled + span .main {
|
|
32008
|
+
display: inline-block;
|
|
32009
|
+
margin-left: 12px;
|
|
32010
|
+
color: #2d3a56;
|
|
32011
|
+
}
|
|
32012
|
+
.c198s9j3 .ant-checkbox + span .sub,
|
|
32013
|
+
.c198s9j3 .ant-checkbox-disabled + span .sub {
|
|
32014
|
+
margin-left: 28px;
|
|
32015
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32016
|
+
}
|
|
32017
|
+
.c198s9j3.compact .ant-checkbox + span .main,
|
|
32018
|
+
.c198s9j3.compact .ant-checkbox-disabled + span .main {
|
|
32019
|
+
margin-left: 8px;
|
|
32020
|
+
}
|
|
32021
|
+
.c198s9j3.compact .ant-checkbox + span .sub,
|
|
32022
|
+
.c198s9j3.compact .ant-checkbox-disabled + span .sub {
|
|
32023
|
+
margin-left: 24px;
|
|
31836
32024
|
}
|
|
31837
32025
|
|
|
31838
32026
|
.c10crapj {
|
|
@@ -31864,16 +32052,8 @@ input.rrg1fkn.ant-input {
|
|
|
31864
32052
|
cursor: default;
|
|
31865
32053
|
}
|
|
31866
32054
|
|
|
31867
|
-
.
|
|
31868
|
-
|
|
31869
|
-
font-weight: bold;
|
|
31870
|
-
background-color: rgba(240, 243, 247, 0.6);
|
|
31871
|
-
padding: 1px 4px 1px;
|
|
31872
|
-
margin-left: 2px;
|
|
31873
|
-
margin-right: 2px;
|
|
31874
|
-
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
31875
|
-
border-radius: 4px;
|
|
31876
|
-
word-break: break-all;
|
|
32055
|
+
.t3qomhu {
|
|
32056
|
+
margin: 0 2px;
|
|
31877
32057
|
}
|
|
31878
32058
|
|
|
31879
32059
|
.o8ocss1 {
|
|
@@ -31885,6 +32065,10 @@ input.rrg1fkn.ant-input {
|
|
|
31885
32065
|
white-space: nowrap;
|
|
31886
32066
|
}
|
|
31887
32067
|
|
|
32068
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32069
|
+
display: flex;
|
|
32070
|
+
}
|
|
32071
|
+
|
|
31888
32072
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
31889
32073
|
border-radius: 6px;
|
|
31890
32074
|
}
|
|
@@ -31942,10 +32126,6 @@ input.rrg1fkn.ant-input {
|
|
|
31942
32126
|
transform: rotate(180deg);
|
|
31943
32127
|
}
|
|
31944
32128
|
|
|
31945
|
-
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
31946
|
-
display: flex;
|
|
31947
|
-
}
|
|
31948
|
-
|
|
31949
32129
|
.igz4le8 {
|
|
31950
32130
|
height: 24px;
|
|
31951
32131
|
width: 56px !important;
|
|
@@ -32030,90 +32210,53 @@ input.rrg1fkn.ant-input {
|
|
|
32030
32210
|
display: inline-block;
|
|
32031
32211
|
}
|
|
32032
32212
|
|
|
32033
|
-
.
|
|
32034
|
-
|
|
32035
|
-
|
|
32036
|
-
|
|
32037
|
-
|
|
32038
|
-
|
|
32039
|
-
|
|
32213
|
+
.l4bld33 {
|
|
32214
|
+
width: 64px;
|
|
32215
|
+
height: 64px;
|
|
32216
|
+
display: flex;
|
|
32217
|
+
align-items: center;
|
|
32218
|
+
justify-content: center;
|
|
32219
|
+
position: relative;
|
|
32220
|
+
opacity: 0.2;
|
|
32040
32221
|
}
|
|
32041
32222
|
|
|
32042
|
-
.
|
|
32043
|
-
|
|
32044
|
-
|
|
32223
|
+
.lgitjoj {
|
|
32224
|
+
position: absolute;
|
|
32225
|
+
width: 5px;
|
|
32226
|
+
height: 48px;
|
|
32227
|
+
left: 9.33px;
|
|
32228
|
+
top: 40.5px;
|
|
32229
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32230
|
+
border-radius: 5px;
|
|
32231
|
+
transform: rotate(-128deg);
|
|
32232
|
+
transform-origin: top left;
|
|
32233
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
32045
32234
|
}
|
|
32046
32235
|
|
|
32047
|
-
.
|
|
32048
|
-
|
|
32049
|
-
|
|
32236
|
+
.l13g0exg {
|
|
32237
|
+
position: absolute;
|
|
32238
|
+
width: 5px;
|
|
32239
|
+
height: 48px;
|
|
32240
|
+
left: 40.8px;
|
|
32241
|
+
top: 8.4px;
|
|
32242
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32243
|
+
border-radius: 5px;
|
|
32244
|
+
transform: rotate(-8deg);
|
|
32245
|
+
transform-origin: top left;
|
|
32246
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
32050
32247
|
}
|
|
32051
32248
|
|
|
32052
|
-
.
|
|
32053
|
-
|
|
32054
|
-
|
|
32055
|
-
|
|
32056
|
-
|
|
32057
|
-
|
|
32058
|
-
|
|
32059
|
-
|
|
32060
|
-
|
|
32061
|
-
|
|
32062
|
-
|
|
32063
|
-
width: 16px;
|
|
32064
|
-
height: 16px;
|
|
32065
|
-
color: inherit;
|
|
32066
|
-
margin-left: 4px;
|
|
32067
|
-
opacity: 0.6;
|
|
32068
|
-
display: inline-flex;
|
|
32069
|
-
}
|
|
32070
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
32071
|
-
opacity: 1;
|
|
32072
|
-
}
|
|
32073
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
32074
|
-
color: #0080ff;
|
|
32075
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
32076
|
-
}
|
|
32077
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
32078
|
-
color: #f0483e;
|
|
32079
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
32080
|
-
}
|
|
32081
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
32082
|
-
color: #e07f00;
|
|
32083
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
32084
|
-
}
|
|
32085
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
32086
|
-
color: #008f4c;
|
|
32087
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
32088
|
-
}
|
|
32089
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
32090
|
-
color: #1d326c;
|
|
32091
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
32092
|
-
}
|
|
32093
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
32094
|
-
color: #7E41FF;
|
|
32095
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
32096
|
-
}
|
|
32097
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
32098
|
-
color: #fff;
|
|
32099
|
-
}
|
|
32100
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
32101
|
-
background-color: #f0483e;
|
|
32102
|
-
}
|
|
32103
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
32104
|
-
background-color: #fea008;
|
|
32105
|
-
}
|
|
32106
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
32107
|
-
background-color: #00ba5d;
|
|
32108
|
-
}
|
|
32109
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
32110
|
-
background-color: #0080ff;
|
|
32111
|
-
}
|
|
32112
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32113
|
-
background-color: #6b7d99;
|
|
32114
|
-
}
|
|
32115
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32116
|
-
background-color: #7E41FF;
|
|
32249
|
+
.l1exo3h6 {
|
|
32250
|
+
position: absolute;
|
|
32251
|
+
width: 5px;
|
|
32252
|
+
height: 48px;
|
|
32253
|
+
left: 52.9px;
|
|
32254
|
+
top: 51.8px;
|
|
32255
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32256
|
+
border-radius: 5px;
|
|
32257
|
+
transform: rotate(112deg);
|
|
32258
|
+
transform-origin: top left;
|
|
32259
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
32117
32260
|
}
|
|
32118
32261
|
|
|
32119
32262
|
.m1thnes4 {
|
|
@@ -32277,127 +32420,183 @@ input.rrg1fkn.ant-input {
|
|
|
32277
32420
|
margin-left: 8px;
|
|
32278
32421
|
}
|
|
32279
32422
|
|
|
32280
|
-
.
|
|
32281
|
-
|
|
32282
|
-
height: 64px;
|
|
32283
|
-
display: flex;
|
|
32284
|
-
align-items: center;
|
|
32285
|
-
justify-content: center;
|
|
32286
|
-
position: relative;
|
|
32287
|
-
opacity: 0.2;
|
|
32423
|
+
.t19ustft .date {
|
|
32424
|
+
margin-right: 4px;
|
|
32288
32425
|
}
|
|
32289
32426
|
|
|
32290
|
-
.
|
|
32291
|
-
|
|
32292
|
-
|
|
32293
|
-
height: 48px;
|
|
32294
|
-
left: 9.33px;
|
|
32295
|
-
top: 40.5px;
|
|
32296
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32297
|
-
border-radius: 5px;
|
|
32298
|
-
transform: rotate(-128deg);
|
|
32299
|
-
transform-origin: top left;
|
|
32300
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
32427
|
+
.s1uupxds {
|
|
32428
|
+
padding: 0 8px;
|
|
32429
|
+
border-radius: 4px;
|
|
32301
32430
|
}
|
|
32302
32431
|
|
|
32303
|
-
.
|
|
32304
|
-
|
|
32305
|
-
|
|
32306
|
-
height: 48px;
|
|
32307
|
-
left: 40.8px;
|
|
32308
|
-
top: 8.4px;
|
|
32309
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32310
|
-
border-radius: 5px;
|
|
32311
|
-
transform: rotate(-8deg);
|
|
32312
|
-
transform-origin: top left;
|
|
32313
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
32432
|
+
.m10sqwut {
|
|
32433
|
+
padding: 2px 8px;
|
|
32434
|
+
border-radius: 3px;
|
|
32314
32435
|
}
|
|
32315
32436
|
|
|
32316
|
-
.
|
|
32317
|
-
|
|
32318
|
-
|
|
32319
|
-
height: 48px;
|
|
32320
|
-
left: 52.9px;
|
|
32321
|
-
top: 51.8px;
|
|
32322
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
32323
|
-
border-radius: 5px;
|
|
32324
|
-
transform: rotate(112deg);
|
|
32325
|
-
transform-origin: top left;
|
|
32326
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
32437
|
+
.l1d492wb {
|
|
32438
|
+
padding: 3px 8px;
|
|
32439
|
+
border-radius: 2px;
|
|
32327
32440
|
}
|
|
32328
32441
|
|
|
32329
|
-
.
|
|
32330
|
-
|
|
32442
|
+
.t1lzavmu.ant-tag:hover {
|
|
32443
|
+
opacity: unset;
|
|
32331
32444
|
}
|
|
32332
|
-
.
|
|
32333
|
-
|
|
32334
|
-
|
|
32335
|
-
display: flex;
|
|
32445
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
32446
|
+
margin: 0;
|
|
32447
|
+
margin-right: 8px;
|
|
32448
|
+
display: inline-flex;
|
|
32449
|
+
align-items: center;
|
|
32450
|
+
border: none;
|
|
32336
32451
|
}
|
|
32337
|
-
.
|
|
32452
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
32453
|
+
width: 16px;
|
|
32338
32454
|
height: 16px;
|
|
32339
|
-
|
|
32340
|
-
|
|
32341
|
-
|
|
32455
|
+
color: inherit;
|
|
32456
|
+
margin-left: 4px;
|
|
32457
|
+
opacity: 0.6;
|
|
32458
|
+
display: inline-flex;
|
|
32459
|
+
}
|
|
32460
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
32461
|
+
opacity: 1;
|
|
32462
|
+
}
|
|
32463
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
32464
|
+
color: #0080ff;
|
|
32465
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32466
|
+
}
|
|
32467
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
32468
|
+
color: #f0483e;
|
|
32469
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
32470
|
+
}
|
|
32471
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
32472
|
+
color: #e07f00;
|
|
32473
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
32474
|
+
}
|
|
32475
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
32476
|
+
color: #008f4c;
|
|
32477
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
32478
|
+
}
|
|
32479
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
32480
|
+
color: #1d326c;
|
|
32481
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32482
|
+
}
|
|
32483
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
32484
|
+
color: #7E41FF;
|
|
32485
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
32486
|
+
}
|
|
32487
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
32488
|
+
color: #fff;
|
|
32489
|
+
}
|
|
32490
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
32491
|
+
background-color: #f0483e;
|
|
32492
|
+
}
|
|
32493
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
32494
|
+
background-color: #fea008;
|
|
32495
|
+
}
|
|
32496
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
32497
|
+
background-color: #00ba5d;
|
|
32498
|
+
}
|
|
32499
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
32500
|
+
background-color: #0080ff;
|
|
32501
|
+
}
|
|
32502
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
32503
|
+
background-color: #6b7d99;
|
|
32504
|
+
}
|
|
32505
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
32506
|
+
background-color: #7E41FF;
|
|
32507
|
+
}
|
|
32508
|
+
|
|
32509
|
+
.clm1wy1 {
|
|
32510
|
+
width: 192px;
|
|
32511
|
+
height: 246px;
|
|
32512
|
+
border-radius: 4px;
|
|
32513
|
+
}
|
|
32514
|
+
.clm1wy1 > .ant-picker-calendar,
|
|
32515
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
32516
|
+
width: 100%;
|
|
32517
|
+
background-color: rgba(245, 247, 250, 0.6);
|
|
32518
|
+
border-top: none;
|
|
32519
|
+
}
|
|
32520
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
32521
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
32522
|
+
padding: 0 16px;
|
|
32523
|
+
}
|
|
32524
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
32525
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
32526
|
+
width: 100%;
|
|
32527
|
+
height: 180px;
|
|
32528
|
+
border-spacing: 0;
|
|
32529
|
+
}
|
|
32530
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
32531
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
32532
|
+
margin-bottom: 8px;
|
|
32533
|
+
}
|
|
32534
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
32535
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
32536
|
+
width: 22px;
|
|
32537
|
+
}
|
|
32538
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
32539
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
32540
|
+
padding: 0;
|
|
32342
32541
|
}
|
|
32343
|
-
.
|
|
32344
|
-
|
|
32542
|
+
.clm1wy1 .ant-picker-cell {
|
|
32543
|
+
color: rgba(62, 70, 82, 0.6);
|
|
32544
|
+
opacity: 0.4;
|
|
32345
32545
|
}
|
|
32346
|
-
.
|
|
32347
|
-
|
|
32546
|
+
.clm1wy1 .ant-picker-cell-in-view {
|
|
32547
|
+
color: rgba(62, 70, 82, 0.6);
|
|
32548
|
+
opacity: 1;
|
|
32348
32549
|
}
|
|
32349
|
-
.
|
|
32350
|
-
|
|
32550
|
+
.clm1wy1 .ant-picker-cell-in-view > .active {
|
|
32551
|
+
color: #3e4652;
|
|
32351
32552
|
}
|
|
32352
|
-
.
|
|
32353
|
-
|
|
32553
|
+
.clm1wy1 .ant-picker-cell::before {
|
|
32554
|
+
pointer-events: none;
|
|
32354
32555
|
}
|
|
32355
|
-
|
|
32356
|
-
|
|
32556
|
+
|
|
32557
|
+
.t1tsm00v {
|
|
32558
|
+
color: rgba(129, 138, 153, 0.6);
|
|
32559
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
32560
|
+
backdrop-filter: blur(10px);
|
|
32561
|
+
padding: 7px 10px;
|
|
32357
32562
|
}
|
|
32358
32563
|
|
|
32359
|
-
.
|
|
32360
|
-
color:
|
|
32361
|
-
padding: 7px 12px;
|
|
32564
|
+
.c167wnad {
|
|
32565
|
+
color: rgba(62, 70, 82, 0.6);
|
|
32362
32566
|
display: flex;
|
|
32363
32567
|
justify-content: space-between;
|
|
32364
32568
|
align-items: center;
|
|
32569
|
+
padding: 8px 16px;
|
|
32365
32570
|
}
|
|
32366
|
-
.
|
|
32367
|
-
padding-left: 10px;
|
|
32368
|
-
}
|
|
32369
|
-
.c1udgdh2.has-arrow .title-wrapper {
|
|
32571
|
+
.c167wnad .anticon {
|
|
32370
32572
|
cursor: pointer;
|
|
32371
|
-
color: #00122e;
|
|
32372
|
-
}
|
|
32373
|
-
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
32374
|
-
color: #2d3a56;
|
|
32375
|
-
font-weight: 600;
|
|
32376
32573
|
}
|
|
32377
|
-
.
|
|
32378
|
-
|
|
32574
|
+
.c167wnad .anticon:hover {
|
|
32575
|
+
color: #0096ff;
|
|
32379
32576
|
}
|
|
32380
|
-
|
|
32381
|
-
|
|
32382
|
-
|
|
32577
|
+
|
|
32578
|
+
.cxhf7dh {
|
|
32579
|
+
text-align: center;
|
|
32383
32580
|
}
|
|
32384
|
-
.
|
|
32581
|
+
.cxhf7dh .dots {
|
|
32385
32582
|
display: flex;
|
|
32386
|
-
|
|
32387
|
-
user-select: none;
|
|
32388
|
-
flex-grow: 1;
|
|
32389
|
-
font-size: 12px;
|
|
32390
|
-
line-height: 18px;
|
|
32391
|
-
color: #2d3a56;
|
|
32392
|
-
font-weight: 700;
|
|
32583
|
+
justify-content: center;
|
|
32393
32584
|
}
|
|
32394
|
-
.
|
|
32395
|
-
|
|
32585
|
+
.cxhf7dh .dot {
|
|
32586
|
+
display: inline-block;
|
|
32587
|
+
width: 2px;
|
|
32588
|
+
height: 2px;
|
|
32589
|
+
border-radius: 1px;
|
|
32590
|
+
background: #0096ff;
|
|
32591
|
+
}
|
|
32592
|
+
.cxhf7dh .dot:not(:last-child) {
|
|
32396
32593
|
margin-right: 2px;
|
|
32397
32594
|
}
|
|
32398
|
-
|
|
32399
|
-
|
|
32400
|
-
|
|
32595
|
+
.cxhf7dh .bar {
|
|
32596
|
+
width: 9px;
|
|
32597
|
+
height: 2px;
|
|
32598
|
+
background: #0096ff;
|
|
32599
|
+
border-radius: 2px;
|
|
32401
32600
|
}
|
|
32402
32601
|
|
|
32403
32602
|
.sq6vos1 {
|
|
@@ -32585,21 +32784,78 @@ input.rrg1fkn.ant-input {
|
|
|
32585
32784
|
justify-content: center;
|
|
32586
32785
|
}
|
|
32587
32786
|
|
|
32588
|
-
.
|
|
32589
|
-
|
|
32787
|
+
.t1gz6wqf {
|
|
32788
|
+
height: 100%;
|
|
32789
|
+
}
|
|
32790
|
+
.t1gz6wqf .table-loading-item {
|
|
32791
|
+
padding: 12px 4px;
|
|
32792
|
+
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
32793
|
+
display: flex;
|
|
32794
|
+
}
|
|
32795
|
+
.t1gz6wqf .table-loading-item > * {
|
|
32796
|
+
height: 16px;
|
|
32797
|
+
margin: 4px;
|
|
32798
|
+
background: rgba(204, 212, 227, 0.18);
|
|
32799
|
+
border-radius: 2px;
|
|
32800
|
+
}
|
|
32801
|
+
.t1gz6wqf .table-loading-item .checkbox-loading {
|
|
32802
|
+
width: 16px;
|
|
32803
|
+
}
|
|
32804
|
+
.t1gz6wqf .table-loading-item .td-loading {
|
|
32805
|
+
flex: 1;
|
|
32806
|
+
}
|
|
32807
|
+
.t1gz6wqf :nth-child(1) {
|
|
32808
|
+
padding: 8px 4px;
|
|
32809
|
+
}
|
|
32810
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32811
|
+
background: rgba(107, 125, 153, 0.18);
|
|
32812
|
+
}
|
|
32813
|
+
.t1gz6wqf :nth-child(1) > * {
|
|
32814
|
+
background: rgba(163, 180, 204, 0.18);
|
|
32590
32815
|
}
|
|
32591
32816
|
|
|
32592
|
-
.
|
|
32593
|
-
|
|
32594
|
-
background-color: white;
|
|
32817
|
+
.c1k4vanq {
|
|
32818
|
+
padding: 0 12px 14px 12px;
|
|
32595
32819
|
}
|
|
32596
|
-
|
|
32820
|
+
|
|
32821
|
+
.c1udgdh2 {
|
|
32822
|
+
color: #2d3a56;
|
|
32823
|
+
padding: 7px 12px;
|
|
32824
|
+
display: flex;
|
|
32825
|
+
justify-content: space-between;
|
|
32826
|
+
align-items: center;
|
|
32827
|
+
}
|
|
32828
|
+
.c1udgdh2.has-arrow {
|
|
32829
|
+
padding-left: 10px;
|
|
32830
|
+
}
|
|
32831
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
32597
32832
|
cursor: pointer;
|
|
32833
|
+
color: #00122e;
|
|
32598
32834
|
}
|
|
32599
|
-
.
|
|
32600
|
-
|
|
32601
|
-
|
|
32602
|
-
|
|
32835
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
32836
|
+
color: #2d3a56;
|
|
32837
|
+
font-weight: 600;
|
|
32838
|
+
}
|
|
32839
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
32840
|
+
transform: rotate(90deg);
|
|
32841
|
+
}
|
|
32842
|
+
.c1udgdh2 .sub-info {
|
|
32843
|
+
font-size: 12px;
|
|
32844
|
+
line-height: 18px;
|
|
32845
|
+
}
|
|
32846
|
+
.c1udgdh2 .title-wrapper {
|
|
32847
|
+
display: flex;
|
|
32848
|
+
align-items: center;
|
|
32849
|
+
user-select: none;
|
|
32850
|
+
flex-grow: 1;
|
|
32851
|
+
font-size: 12px;
|
|
32852
|
+
line-height: 18px;
|
|
32853
|
+
color: #2d3a56;
|
|
32854
|
+
font-weight: 700;
|
|
32855
|
+
}
|
|
32856
|
+
.c1udgdh2 .collapse-arrow {
|
|
32857
|
+
transition: all 50ms ease-out 0ms;
|
|
32858
|
+
margin-right: 2px;
|
|
32603
32859
|
}
|
|
32604
32860
|
|
|
32605
32861
|
.rrwcpby {
|
|
@@ -32618,6 +32874,23 @@ input.rrg1fkn.ant-input {
|
|
|
32618
32874
|
margin-right: 6px;
|
|
32619
32875
|
}
|
|
32620
32876
|
|
|
32877
|
+
.bab9xum {
|
|
32878
|
+
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);
|
|
32879
|
+
}
|
|
32880
|
+
|
|
32881
|
+
.cav4gt6 {
|
|
32882
|
+
border-radius: 8px;
|
|
32883
|
+
background-color: white;
|
|
32884
|
+
}
|
|
32885
|
+
.cav4gt6.hoverable {
|
|
32886
|
+
cursor: pointer;
|
|
32887
|
+
}
|
|
32888
|
+
.cav4gt6.hoverable:hover {
|
|
32889
|
+
transition: all 200ms ease;
|
|
32890
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
32891
|
+
transform: translateY(-4px);
|
|
32892
|
+
}
|
|
32893
|
+
|
|
32621
32894
|
.f1p9ti6d {
|
|
32622
32895
|
width: 100%;
|
|
32623
32896
|
margin-bottom: 0 !important;
|
|
@@ -32649,6 +32922,41 @@ input.rrg1fkn.ant-input {
|
|
|
32649
32922
|
min-height: 0px;
|
|
32650
32923
|
}
|
|
32651
32924
|
|
|
32925
|
+
.w1xcixj5.outside-tag {
|
|
32926
|
+
padding-left: 0;
|
|
32927
|
+
}
|
|
32928
|
+
.w1xcixj5.outside-tag .inside-tag {
|
|
32929
|
+
border-radius: 4px 0 0 4px;
|
|
32930
|
+
padding-right: 4px;
|
|
32931
|
+
margin-right: 4px;
|
|
32932
|
+
}
|
|
32933
|
+
|
|
32934
|
+
.sut42l0 {
|
|
32935
|
+
padding: 0 8px;
|
|
32936
|
+
height: 18px;
|
|
32937
|
+
}
|
|
32938
|
+
|
|
32939
|
+
.mfsz1jz {
|
|
32940
|
+
padding: 2px 8px;
|
|
32941
|
+
height: 24px;
|
|
32942
|
+
}
|
|
32943
|
+
|
|
32944
|
+
.tnd6h4m {
|
|
32945
|
+
margin: 0;
|
|
32946
|
+
}
|
|
32947
|
+
|
|
32948
|
+
.i1qw4clm {
|
|
32949
|
+
margin-right: 4px;
|
|
32950
|
+
height: 16px;
|
|
32951
|
+
}
|
|
32952
|
+
|
|
32953
|
+
.n1r5ku5l.ant-tag.ant-tag-gray {
|
|
32954
|
+
font-weight: 700;
|
|
32955
|
+
color: #00122e;
|
|
32956
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
32957
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
32958
|
+
}
|
|
32959
|
+
|
|
32652
32960
|
.tc40oxa {
|
|
32653
32961
|
margin-bottom: 4px;
|
|
32654
32962
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -32842,34 +33150,6 @@ input.rrg1fkn.ant-input {
|
|
|
32842
33150
|
margin-right: 8px;
|
|
32843
33151
|
}
|
|
32844
33152
|
|
|
32845
|
-
.w1xcixj5.outside-tag {
|
|
32846
|
-
padding-left: 0;
|
|
32847
|
-
}
|
|
32848
|
-
.w1xcixj5.outside-tag .inside-tag {
|
|
32849
|
-
border-radius: 4px 0 0 4px;
|
|
32850
|
-
padding-right: 4px;
|
|
32851
|
-
margin-right: 4px;
|
|
32852
|
-
}
|
|
32853
|
-
|
|
32854
|
-
.sut42l0 {
|
|
32855
|
-
padding: 0 8px;
|
|
32856
|
-
height: 18px;
|
|
32857
|
-
}
|
|
32858
|
-
|
|
32859
|
-
.mfsz1jz {
|
|
32860
|
-
padding: 2px 8px;
|
|
32861
|
-
height: 24px;
|
|
32862
|
-
}
|
|
32863
|
-
|
|
32864
|
-
.tnd6h4m {
|
|
32865
|
-
margin: 0;
|
|
32866
|
-
}
|
|
32867
|
-
|
|
32868
|
-
.i1qw4clm {
|
|
32869
|
-
margin-right: 4px;
|
|
32870
|
-
height: 16px;
|
|
32871
|
-
}
|
|
32872
|
-
|
|
32873
33153
|
.iwsze0q {
|
|
32874
33154
|
margin-right: 4px;
|
|
32875
33155
|
height: 16px;
|
|
@@ -32925,6 +33205,25 @@ input.rrg1fkn.ant-input {
|
|
|
32925
33205
|
font-size: inherit;
|
|
32926
33206
|
}
|
|
32927
33207
|
|
|
33208
|
+
.feau332.ant-form-item {
|
|
33209
|
+
margin-bottom: 0;
|
|
33210
|
+
}
|
|
33211
|
+
.feau332 .ant-form-item-explain {
|
|
33212
|
+
display: none;
|
|
33213
|
+
min-height: 18px;
|
|
33214
|
+
margin-top: 5px;
|
|
33215
|
+
font-family: "Inter";
|
|
33216
|
+
font-weight: 400;
|
|
33217
|
+
font-size: 12px;
|
|
33218
|
+
line-height: 18px;
|
|
33219
|
+
}
|
|
33220
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
33221
|
+
white-space: pre-wrap;
|
|
33222
|
+
}
|
|
33223
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
33224
|
+
display: block;
|
|
33225
|
+
}
|
|
33226
|
+
|
|
32928
33227
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
32929
33228
|
display: var(--a6dbbkm-0);
|
|
32930
33229
|
}
|
|
@@ -32954,23 +33253,4 @@ input.rrg1fkn.ant-input {
|
|
|
32954
33253
|
margin: 0;
|
|
32955
33254
|
height: auto;
|
|
32956
33255
|
font-size: inherit;
|
|
32957
|
-
}
|
|
32958
|
-
|
|
32959
|
-
.feau332.ant-form-item {
|
|
32960
|
-
margin-bottom: 0;
|
|
32961
|
-
}
|
|
32962
|
-
.feau332 .ant-form-item-explain {
|
|
32963
|
-
display: none;
|
|
32964
|
-
min-height: 18px;
|
|
32965
|
-
margin-top: 5px;
|
|
32966
|
-
font-family: "Inter";
|
|
32967
|
-
font-weight: 400;
|
|
32968
|
-
font-size: 12px;
|
|
32969
|
-
line-height: 18px;
|
|
32970
|
-
}
|
|
32971
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
32972
|
-
white-space: pre-wrap;
|
|
32973
|
-
}
|
|
32974
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
32975
|
-
display: block;
|
|
32976
33256
|
}
|