@cloudtower/eagle 0.35.1 → 0.35.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/UIKitProvider/index.js +5 -10
- package/dist/cjs/core/ConfigProvider/index.js +3 -1
- package/dist/cjs/core/Fields/FieldsTimePicker/index.js +4 -3
- package/dist/cjs/core/ImmersiveDialog/index.js +21 -14
- package/dist/cjs/core/{Modal → LegacyModal}/index.js +7 -3
- package/dist/cjs/core/LegacySelect/index.js +4 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.hooks.js +66 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.js +103 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.style.js +13 -0
- package/dist/cjs/core/LocalUpload/LocalUpload.widget.js +379 -0
- package/dist/cjs/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/cjs/core/SmallDialog/SmallDialog.js +7 -5
- package/dist/cjs/core/Tab/Tab.js +113 -0
- package/dist/cjs/core/Tab/Tab.style.js +17 -0
- package/dist/cjs/core/Tab/Tab.type.js +9 -0
- package/dist/cjs/core/Tab/useTabAdaptiveLayout.js +73 -0
- package/dist/cjs/core/message/message.js +24 -1
- package/dist/cjs/coreX/KubeConfigModal/index.js +4 -4
- package/dist/cjs/hooks/useAntdPatchEnLocales.js +35 -0
- package/dist/cjs/hooks/useLegacyComponentWarning.js +16 -0
- package/dist/cjs/index.js +20 -16
- package/dist/cjs/legacy-antd.js +2 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1926 -1557
- package/dist/esm/UIKitProvider/index.js +5 -10
- package/dist/esm/core/ConfigProvider/index.js +3 -1
- package/dist/esm/core/Fields/FieldsTimePicker/index.js +2 -1
- package/dist/esm/core/ImmersiveDialog/index.js +21 -14
- package/dist/esm/core/{Modal → LegacyModal}/index.js +9 -5
- package/dist/esm/core/LegacySelect/index.js +4 -0
- package/dist/esm/core/LocalUpload/LocalUpload.hooks.js +63 -0
- package/dist/esm/core/LocalUpload/LocalUpload.js +97 -0
- package/dist/esm/core/LocalUpload/LocalUpload.style.js +10 -0
- package/dist/esm/core/LocalUpload/LocalUpload.widget.js +365 -0
- package/dist/esm/core/MediumDialog/MediumDialog.js +1 -1
- package/dist/esm/core/SmallDialog/SmallDialog.js +6 -4
- package/dist/esm/core/Tab/Tab.js +107 -0
- package/dist/esm/core/Tab/Tab.style.js +12 -0
- package/dist/esm/core/Tab/Tab.type.js +7 -0
- package/dist/esm/core/Tab/useTabAdaptiveLayout.js +71 -0
- package/dist/esm/core/message/message.js +24 -1
- package/dist/esm/coreX/KubeConfigModal/index.js +5 -5
- package/dist/esm/hooks/useAntdPatchEnLocales.js +29 -0
- package/dist/esm/hooks/useLegacyComponentWarning.js +14 -0
- package/dist/esm/index.js +3 -1
- package/dist/esm/legacy-antd.js +4 -4
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +1968 -1541
- package/dist/src/core/ImmersiveDialog/type.d.ts +2 -2
- package/dist/src/core/{Modal/modal.type.d.ts → LegacyModal/LegacyModal.type.d.ts} +12 -1
- package/dist/src/core/LegacyModal/index.d.ts +16 -0
- package/dist/src/core/LocalUpload/LocalUpload.d.ts +15 -0
- package/dist/src/core/LocalUpload/LocalUpload.hooks.d.ts +32 -0
- package/dist/src/core/LocalUpload/LocalUpload.style.d.ts +3 -0
- package/dist/src/core/LocalUpload/LocalUpload.type.d.ts +175 -0
- package/dist/src/core/LocalUpload/LocalUpload.widget.d.ts +23 -0
- package/dist/src/core/LocalUpload/index.d.ts +2 -0
- package/dist/src/core/SmallDialog/SmallDialog.type.d.ts +2 -0
- package/dist/src/core/Tab/Tab.d.ts +3 -0
- package/dist/src/core/Tab/Tab.style.d.ts +5 -0
- package/dist/src/core/Tab/Tab.type.d.ts +42 -0
- package/dist/src/core/Tab/index.d.ts +1 -0
- package/dist/src/core/Tab/useTabAdaptiveLayout.d.ts +23 -0
- package/dist/src/core/index.d.ts +4 -2
- package/dist/src/core/message/message.d.ts +5 -0
- package/dist/src/hooks/useAntdPatchEnLocales.d.ts +431 -0
- package/dist/src/hooks/useLegacyComponentWarning.d.ts +2 -0
- package/dist/src/spec/base.d.ts +2 -2
- package/dist/stories/docs/core/ImmersiveDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/LegacyModal.stories.d.ts +23 -0
- package/dist/stories/docs/core/LocalUpload.stories.d.ts +74 -0
- package/dist/stories/docs/core/MediumDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/SmallDialog.stories.d.ts +5 -1
- package/dist/stories/docs/core/Tab.stories.d.ts +65 -0
- package/dist/stories/docs/core/WizardDialog.stories.d.ts +2 -1
- package/dist/stories/docs/core/message-group.stories.d.ts +1 -0
- package/dist/style.css +1926 -1557
- package/dist/variables.scss +3 -0
- package/package.json +4 -4
- package/dist/src/core/Modal/index.d.ts +0 -5
- package/dist/stories/docs/core/Modal.stories.d.ts +0 -13
package/dist/components.css
CHANGED
|
@@ -1152,6 +1152,68 @@ html body {
|
|
|
1152
1152
|
padding: 8px 12px;
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
|
+
.E_m74vjol {
|
|
1156
|
+
display: flex;
|
|
1157
|
+
justify-content: space-between;
|
|
1158
|
+
width: 100%;
|
|
1159
|
+
}
|
|
1160
|
+
.E_m74vjol .action {
|
|
1161
|
+
margin-left: 16px;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.E_a1o35uvh.ant-alert-closable {
|
|
1165
|
+
padding-right: 12px;
|
|
1166
|
+
}
|
|
1167
|
+
.E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
|
|
1168
|
+
height: fit-content;
|
|
1169
|
+
margin-left: 16px;
|
|
1170
|
+
}
|
|
1171
|
+
.E_a1o35uvh .ant-alert-message {
|
|
1172
|
+
flex: 1;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.E_c1yyuluq {
|
|
1176
|
+
border-radius: 8px;
|
|
1177
|
+
}
|
|
1178
|
+
.E_c1yyuluq .ant-card-body {
|
|
1179
|
+
padding: 20px 24px 24px 24px;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
.E_ccrbeuz .ant-collapse-item {
|
|
1183
|
+
border: 0px;
|
|
1184
|
+
background-color: #fff;
|
|
1185
|
+
}
|
|
1186
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
1187
|
+
padding-top: 0px;
|
|
1188
|
+
padding-bottom: 0px;
|
|
1189
|
+
padding-left: 0px !important;
|
|
1190
|
+
padding-right: 24px;
|
|
1191
|
+
}
|
|
1192
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
1193
|
+
right: 0px;
|
|
1194
|
+
}
|
|
1195
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
1196
|
+
padding: 0px;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
1200
|
+
padding-right: 0px;
|
|
1201
|
+
cursor: default;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
1205
|
+
padding: 4px 8px 0 8px;
|
|
1206
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1207
|
+
font-size: 12px;
|
|
1208
|
+
}
|
|
1209
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
1210
|
+
padding-bottom: 6px;
|
|
1211
|
+
}
|
|
1212
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
1213
|
+
padding-top: 4px;
|
|
1214
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1155
1217
|
.E_berrcjl {
|
|
1156
1218
|
color: rgba(10, 37, 85, 0.6);
|
|
1157
1219
|
margin-bottom: 4px;
|
|
@@ -1168,24 +1230,138 @@ html body {
|
|
|
1168
1230
|
color: #005ed1;
|
|
1169
1231
|
}
|
|
1170
1232
|
|
|
1171
|
-
.
|
|
1233
|
+
.E_d1bw7c5z {
|
|
1234
|
+
position: relative;
|
|
1235
|
+
max-width: 388px;
|
|
1236
|
+
min-width: 285px;
|
|
1237
|
+
}
|
|
1238
|
+
.E_d1bw7c5z .center {
|
|
1239
|
+
position: absolute;
|
|
1240
|
+
font-size: 12px;
|
|
1241
|
+
width: 80px;
|
|
1242
|
+
height: 100px;
|
|
1243
|
+
top: 0;
|
|
1244
|
+
left: 35px;
|
|
1172
1245
|
display: flex;
|
|
1173
|
-
|
|
1246
|
+
flex-direction: column;
|
|
1247
|
+
justify-content: center;
|
|
1248
|
+
align-items: center;
|
|
1249
|
+
color: #00122e;
|
|
1250
|
+
}
|
|
1251
|
+
.E_d1bw7c5z .center .number {
|
|
1252
|
+
font-size: 24px;
|
|
1253
|
+
font-weight: 700;
|
|
1254
|
+
}
|
|
1255
|
+
.E_d1bw7c5z .center .text {
|
|
1256
|
+
padding: 0 5px;
|
|
1257
|
+
font-size: 12px;
|
|
1258
|
+
width: inherit;
|
|
1259
|
+
text-align: center;
|
|
1260
|
+
}
|
|
1261
|
+
.E_d1bw7c5z .recharts-wrapper {
|
|
1262
|
+
display: flex;
|
|
1263
|
+
}
|
|
1264
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
|
|
1265
|
+
position: relative !important;
|
|
1266
|
+
min-width: calc(100% - var(--d1bw7c5z-0)) !important;
|
|
1267
|
+
left: 0 !important;
|
|
1268
|
+
bottom: 0 !important;
|
|
1269
|
+
display: flex;
|
|
1270
|
+
align-items: center;
|
|
1271
|
+
}
|
|
1272
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
|
|
1174
1273
|
width: 100%;
|
|
1175
1274
|
}
|
|
1176
|
-
.
|
|
1177
|
-
|
|
1275
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
|
|
1276
|
+
width: 100%;
|
|
1277
|
+
margin-right: 0 !important;
|
|
1278
|
+
line-height: 18px;
|
|
1279
|
+
}
|
|
1280
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
|
|
1281
|
+
border-radius: 2px;
|
|
1282
|
+
}
|
|
1283
|
+
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
|
|
1284
|
+
min-width: 75px;
|
|
1285
|
+
max-width: 198px;
|
|
1286
|
+
width: calc(100% - 20px);
|
|
1287
|
+
margin-left: 2px;
|
|
1288
|
+
color: #00122e !important;
|
|
1289
|
+
display: inline-flex;
|
|
1290
|
+
justify-content: space-between;
|
|
1291
|
+
}
|
|
1292
|
+
.E_d1bw7c5z .tooltip-text {
|
|
1293
|
+
maxwidth: calc(100% - 12px);
|
|
1294
|
+
cursor: pointer;
|
|
1295
|
+
border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
|
|
1296
|
+
overflow: hidden;
|
|
1297
|
+
text-overflow: ellipsis;
|
|
1298
|
+
white-space: nowrap;
|
|
1299
|
+
}
|
|
1300
|
+
.E_d1bw7c5z .value {
|
|
1301
|
+
color: rgba(44, 56, 82, 0.75);
|
|
1178
1302
|
}
|
|
1179
1303
|
|
|
1180
|
-
.
|
|
1181
|
-
|
|
1304
|
+
.E_t10pqbtc {
|
|
1305
|
+
width: 140px;
|
|
1182
1306
|
}
|
|
1183
|
-
.
|
|
1184
|
-
|
|
1185
|
-
|
|
1307
|
+
.E_t10pqbtc .item {
|
|
1308
|
+
margin: 6px auto;
|
|
1309
|
+
display: flex;
|
|
1310
|
+
justify-content: space-between;
|
|
1186
1311
|
}
|
|
1187
|
-
.
|
|
1188
|
-
|
|
1312
|
+
.E_t10pqbtc .item .name {
|
|
1313
|
+
width: 102px;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.E_c1uzzomf {
|
|
1317
|
+
margin-bottom: 16px;
|
|
1318
|
+
}
|
|
1319
|
+
.E_c1uzzomf .card-title {
|
|
1320
|
+
font-size: 16px;
|
|
1321
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1322
|
+
font-weight: 700;
|
|
1323
|
+
line-height: 32px;
|
|
1324
|
+
}
|
|
1325
|
+
.E_c1uzzomf .card-body {
|
|
1326
|
+
padding: 24px;
|
|
1327
|
+
border-radius: 8px;
|
|
1328
|
+
background: #fff;
|
|
1329
|
+
}
|
|
1330
|
+
.E_c1uzzomf .empty {
|
|
1331
|
+
font-weight: 700;
|
|
1332
|
+
font-size: 14px;
|
|
1333
|
+
line-height: 22px;
|
|
1334
|
+
color: rgba(0, 21, 64, 0.3);
|
|
1335
|
+
text-align: center;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.E_b1nip9bk {
|
|
1339
|
+
padding: 4px 11px;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.E_bqamoqe {
|
|
1343
|
+
white-space: nowrap;
|
|
1344
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1345
|
+
}
|
|
1346
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1347
|
+
--color: #0080ff;
|
|
1348
|
+
}
|
|
1349
|
+
.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] {
|
|
1350
|
+
--color: #0080ff;
|
|
1351
|
+
}
|
|
1352
|
+
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
1353
|
+
margin-left: 1px;
|
|
1354
|
+
}
|
|
1355
|
+
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
1356
|
+
border-top-right-radius: 0;
|
|
1357
|
+
border-bottom-right-radius: 0;
|
|
1358
|
+
}
|
|
1359
|
+
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
1360
|
+
border-top-left-radius: 0;
|
|
1361
|
+
border-bottom-left-radius: 0;
|
|
1362
|
+
}
|
|
1363
|
+
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1364
|
+
border-radius: unset;
|
|
1189
1365
|
}
|
|
1190
1366
|
|
|
1191
1367
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
@@ -1445,55 +1621,14 @@ html body {
|
|
|
1445
1621
|
justify-content: center;
|
|
1446
1622
|
}
|
|
1447
1623
|
|
|
1448
|
-
.
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
.E_bqamoqe {
|
|
1453
|
-
white-space: nowrap;
|
|
1454
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1455
|
-
}
|
|
1456
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1457
|
-
--color: #0080ff;
|
|
1458
|
-
}
|
|
1459
|
-
.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] {
|
|
1460
|
-
--color: #0080ff;
|
|
1461
|
-
}
|
|
1462
|
-
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
1463
|
-
margin-left: 1px;
|
|
1464
|
-
}
|
|
1465
|
-
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
1466
|
-
border-top-right-radius: 0;
|
|
1467
|
-
border-bottom-right-radius: 0;
|
|
1468
|
-
}
|
|
1469
|
-
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
1470
|
-
border-top-left-radius: 0;
|
|
1471
|
-
border-bottom-left-radius: 0;
|
|
1472
|
-
}
|
|
1473
|
-
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1474
|
-
border-radius: unset;
|
|
1624
|
+
.E_ivqqkzv {
|
|
1625
|
+
height: 24px;
|
|
1626
|
+
width: 56px !important;
|
|
1627
|
+
margin-right: 4px;
|
|
1475
1628
|
}
|
|
1476
1629
|
|
|
1477
|
-
.
|
|
1478
|
-
margin-bottom: 16px;
|
|
1479
|
-
}
|
|
1480
|
-
.E_c1uzzomf .card-title {
|
|
1481
|
-
font-size: 16px;
|
|
1630
|
+
.E_c1wk4q29 {
|
|
1482
1631
|
color: rgba(44, 56, 82, 0.6);
|
|
1483
|
-
font-weight: 700;
|
|
1484
|
-
line-height: 32px;
|
|
1485
|
-
}
|
|
1486
|
-
.E_c1uzzomf .card-body {
|
|
1487
|
-
padding: 24px;
|
|
1488
|
-
border-radius: 8px;
|
|
1489
|
-
background: #fff;
|
|
1490
|
-
}
|
|
1491
|
-
.E_c1uzzomf .empty {
|
|
1492
|
-
font-weight: 700;
|
|
1493
|
-
font-size: 14px;
|
|
1494
|
-
line-height: 22px;
|
|
1495
|
-
color: rgba(0, 21, 64, 0.3);
|
|
1496
|
-
text-align: center;
|
|
1497
1632
|
}
|
|
1498
1633
|
|
|
1499
1634
|
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
@@ -1508,135 +1643,6 @@ html body {
|
|
|
1508
1643
|
border-top-right-radius: 5px;
|
|
1509
1644
|
}
|
|
1510
1645
|
|
|
1511
|
-
.E_c1yyuluq {
|
|
1512
|
-
border-radius: 8px;
|
|
1513
|
-
}
|
|
1514
|
-
.E_c1yyuluq .ant-card-body {
|
|
1515
|
-
padding: 20px 24px 24px 24px;
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
.E_ccrbeuz .ant-collapse-item {
|
|
1519
|
-
border: 0px;
|
|
1520
|
-
background-color: #fff;
|
|
1521
|
-
}
|
|
1522
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header {
|
|
1523
|
-
padding-top: 0px;
|
|
1524
|
-
padding-bottom: 0px;
|
|
1525
|
-
padding-left: 0px !important;
|
|
1526
|
-
padding-right: 24px;
|
|
1527
|
-
}
|
|
1528
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
1529
|
-
right: 0px;
|
|
1530
|
-
}
|
|
1531
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
1532
|
-
padding: 0px;
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
1536
|
-
padding-right: 0px;
|
|
1537
|
-
cursor: default;
|
|
1538
|
-
}
|
|
1539
|
-
|
|
1540
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
1541
|
-
padding: 4px 8px 0 8px;
|
|
1542
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1543
|
-
font-size: 12px;
|
|
1544
|
-
}
|
|
1545
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
1546
|
-
padding-bottom: 6px;
|
|
1547
|
-
}
|
|
1548
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
1549
|
-
padding-top: 4px;
|
|
1550
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
1551
|
-
}
|
|
1552
|
-
|
|
1553
|
-
.E_d1bw7c5z {
|
|
1554
|
-
position: relative;
|
|
1555
|
-
max-width: 388px;
|
|
1556
|
-
min-width: 285px;
|
|
1557
|
-
}
|
|
1558
|
-
.E_d1bw7c5z .center {
|
|
1559
|
-
position: absolute;
|
|
1560
|
-
font-size: 12px;
|
|
1561
|
-
width: 80px;
|
|
1562
|
-
height: 100px;
|
|
1563
|
-
top: 0;
|
|
1564
|
-
left: 35px;
|
|
1565
|
-
display: flex;
|
|
1566
|
-
flex-direction: column;
|
|
1567
|
-
justify-content: center;
|
|
1568
|
-
align-items: center;
|
|
1569
|
-
color: #00122e;
|
|
1570
|
-
}
|
|
1571
|
-
.E_d1bw7c5z .center .number {
|
|
1572
|
-
font-size: 24px;
|
|
1573
|
-
font-weight: 700;
|
|
1574
|
-
}
|
|
1575
|
-
.E_d1bw7c5z .center .text {
|
|
1576
|
-
padding: 0 5px;
|
|
1577
|
-
font-size: 12px;
|
|
1578
|
-
width: inherit;
|
|
1579
|
-
text-align: center;
|
|
1580
|
-
}
|
|
1581
|
-
.E_d1bw7c5z .recharts-wrapper {
|
|
1582
|
-
display: flex;
|
|
1583
|
-
}
|
|
1584
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
|
|
1585
|
-
position: relative !important;
|
|
1586
|
-
min-width: calc(100% - var(--d1bw7c5z-0)) !important;
|
|
1587
|
-
left: 0 !important;
|
|
1588
|
-
bottom: 0 !important;
|
|
1589
|
-
display: flex;
|
|
1590
|
-
align-items: center;
|
|
1591
|
-
}
|
|
1592
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
|
|
1593
|
-
width: 100%;
|
|
1594
|
-
}
|
|
1595
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
|
|
1596
|
-
width: 100%;
|
|
1597
|
-
margin-right: 0 !important;
|
|
1598
|
-
line-height: 18px;
|
|
1599
|
-
}
|
|
1600
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
|
|
1601
|
-
border-radius: 2px;
|
|
1602
|
-
}
|
|
1603
|
-
.E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
|
|
1604
|
-
min-width: 75px;
|
|
1605
|
-
max-width: 198px;
|
|
1606
|
-
width: calc(100% - 20px);
|
|
1607
|
-
margin-left: 2px;
|
|
1608
|
-
color: #00122e !important;
|
|
1609
|
-
display: inline-flex;
|
|
1610
|
-
justify-content: space-between;
|
|
1611
|
-
}
|
|
1612
|
-
.E_d1bw7c5z .tooltip-text {
|
|
1613
|
-
maxwidth: calc(100% - 12px);
|
|
1614
|
-
cursor: pointer;
|
|
1615
|
-
border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
|
|
1616
|
-
overflow: hidden;
|
|
1617
|
-
text-overflow: ellipsis;
|
|
1618
|
-
white-space: nowrap;
|
|
1619
|
-
}
|
|
1620
|
-
.E_d1bw7c5z .value {
|
|
1621
|
-
color: rgba(44, 56, 82, 0.75);
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
.E_t10pqbtc {
|
|
1625
|
-
width: 140px;
|
|
1626
|
-
}
|
|
1627
|
-
.E_t10pqbtc .item {
|
|
1628
|
-
margin: 6px auto;
|
|
1629
|
-
display: flex;
|
|
1630
|
-
justify-content: space-between;
|
|
1631
|
-
}
|
|
1632
|
-
.E_t10pqbtc .item .name {
|
|
1633
|
-
width: 102px;
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
|
-
.E_sx1bpnu .ant-input-sm {
|
|
1637
|
-
line-height: 18px;
|
|
1638
|
-
}
|
|
1639
|
-
|
|
1640
1646
|
.E_phljevk {
|
|
1641
1647
|
display: flex;
|
|
1642
1648
|
justify-content: space-between;
|
|
@@ -1694,32 +1700,6 @@ html body {
|
|
|
1694
1700
|
line-height: 18px;
|
|
1695
1701
|
}
|
|
1696
1702
|
|
|
1697
|
-
.E_i11gg7mj .ant-input-prefix {
|
|
1698
|
-
margin-right: 8px;
|
|
1699
|
-
}
|
|
1700
|
-
.E_i11gg7mj .ant-input-suffix {
|
|
1701
|
-
margin-left: 8px;
|
|
1702
|
-
}
|
|
1703
|
-
|
|
1704
|
-
.E_cc368xp {
|
|
1705
|
-
color: #00122e;
|
|
1706
|
-
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
1707
|
-
margin-right: 8px;
|
|
1708
|
-
padding-right: 8px;
|
|
1709
|
-
}
|
|
1710
|
-
|
|
1711
|
-
.E_i11o6xqj {
|
|
1712
|
-
display: flex;
|
|
1713
|
-
gap: 4px;
|
|
1714
|
-
}
|
|
1715
|
-
.E_i11o6xqj .icon-wrapper {
|
|
1716
|
-
cursor: pointer;
|
|
1717
|
-
}
|
|
1718
|
-
|
|
1719
|
-
.E_d19ruhdj.icon-wrapper {
|
|
1720
|
-
cursor: not-allowed;
|
|
1721
|
-
}
|
|
1722
|
-
|
|
1723
1703
|
.E_rapgekc.ant-radio-wrapper {
|
|
1724
1704
|
display: inline-flex;
|
|
1725
1705
|
align-items: baseline;
|
|
@@ -1866,14 +1846,34 @@ html body {
|
|
|
1866
1846
|
width: 36px;
|
|
1867
1847
|
}
|
|
1868
1848
|
|
|
1869
|
-
.
|
|
1870
|
-
height:
|
|
1871
|
-
width: 56px !important;
|
|
1872
|
-
margin-right: 4px;
|
|
1849
|
+
.E_sx1bpnu .ant-input-sm {
|
|
1850
|
+
line-height: 18px;
|
|
1873
1851
|
}
|
|
1874
1852
|
|
|
1875
|
-
.
|
|
1876
|
-
|
|
1853
|
+
.E_i11gg7mj .ant-input-prefix {
|
|
1854
|
+
margin-right: 8px;
|
|
1855
|
+
}
|
|
1856
|
+
.E_i11gg7mj .ant-input-suffix {
|
|
1857
|
+
margin-left: 8px;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.E_cc368xp {
|
|
1861
|
+
color: #00122e;
|
|
1862
|
+
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
1863
|
+
margin-right: 8px;
|
|
1864
|
+
padding-right: 8px;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.E_i11o6xqj {
|
|
1868
|
+
display: flex;
|
|
1869
|
+
gap: 4px;
|
|
1870
|
+
}
|
|
1871
|
+
.E_i11o6xqj .icon-wrapper {
|
|
1872
|
+
cursor: pointer;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.E_d19ruhdj.icon-wrapper {
|
|
1876
|
+
cursor: not-allowed;
|
|
1877
1877
|
}
|
|
1878
1878
|
|
|
1879
1879
|
.E_c1bus5hc {
|
|
@@ -1920,6 +1920,21 @@ html body {
|
|
|
1920
1920
|
margin-right: 4px;
|
|
1921
1921
|
}
|
|
1922
1922
|
|
|
1923
|
+
.E_iq1gosr {
|
|
1924
|
+
display: inline-block;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
.E_t1m2x205 .ant-tooltip-arrow {
|
|
1928
|
+
display: none;
|
|
1929
|
+
}
|
|
1930
|
+
.E_t1m2x205 .ant-tooltip-inner {
|
|
1931
|
+
background: rgba(23, 38, 64, 0.8);
|
|
1932
|
+
border-radius: 4px;
|
|
1933
|
+
}
|
|
1934
|
+
.E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
1935
|
+
visibility: hidden;
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1923
1938
|
.E_s1dizucg.ant-switch {
|
|
1924
1939
|
min-width: 40px;
|
|
1925
1940
|
height: 24px;
|
|
@@ -1975,123 +1990,41 @@ html body {
|
|
|
1975
1990
|
margin-left: 5px;
|
|
1976
1991
|
}
|
|
1977
1992
|
|
|
1978
|
-
.
|
|
1979
|
-
|
|
1980
|
-
border-radius: 4px;
|
|
1981
|
-
}
|
|
1982
|
-
|
|
1983
|
-
.E_m855nr1 {
|
|
1984
|
-
padding: 2px 8px;
|
|
1985
|
-
border-radius: 3px;
|
|
1993
|
+
.E_s1dni7lo {
|
|
1994
|
+
width: 430px !important;
|
|
1986
1995
|
}
|
|
1987
1996
|
|
|
1988
|
-
.
|
|
1989
|
-
padding:
|
|
1990
|
-
|
|
1997
|
+
.E_d1wwmmm5 .ant-select-item-group {
|
|
1998
|
+
padding: 8px 16px;
|
|
1999
|
+
line-height: 18px;
|
|
2000
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
2001
|
+
height: 34px;
|
|
2002
|
+
min-height: 34px;
|
|
2003
|
+
box-sizing: border-box;
|
|
2004
|
+
margin-top: 8px;
|
|
1991
2005
|
}
|
|
1992
2006
|
|
|
1993
|
-
.
|
|
1994
|
-
|
|
2007
|
+
.E_o1ugr09p {
|
|
2008
|
+
display: flex;
|
|
2009
|
+
flex-direction: column;
|
|
2010
|
+
margin: 1px 8px;
|
|
2011
|
+
padding: 8px;
|
|
2012
|
+
border-radius: 4px;
|
|
1995
2013
|
}
|
|
1996
|
-
.
|
|
1997
|
-
|
|
1998
|
-
margin-right: 8px;
|
|
1999
|
-
display: inline-flex;
|
|
2000
|
-
align-items: center;
|
|
2001
|
-
border: none;
|
|
2014
|
+
.E_o1ugr09p .selected-icon {
|
|
2015
|
+
display: none;
|
|
2002
2016
|
}
|
|
2003
|
-
.
|
|
2004
|
-
|
|
2005
|
-
height: 16px;
|
|
2006
|
-
color: inherit;
|
|
2007
|
-
margin-left: 4px;
|
|
2008
|
-
opacity: 0.6;
|
|
2009
|
-
display: inline-flex;
|
|
2017
|
+
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
2018
|
+
padding-left: 8px;
|
|
2010
2019
|
}
|
|
2011
|
-
.
|
|
2012
|
-
|
|
2020
|
+
.E_o1ugr09p.ant-select-item-option-selected {
|
|
2021
|
+
background-color: white;
|
|
2013
2022
|
}
|
|
2014
|
-
.
|
|
2023
|
+
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
2015
2024
|
color: #0080ff;
|
|
2016
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
2017
2025
|
}
|
|
2018
|
-
.
|
|
2019
|
-
|
|
2020
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
2021
|
-
}
|
|
2022
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
2023
|
-
color: #e07f00;
|
|
2024
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
2025
|
-
}
|
|
2026
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
2027
|
-
color: #008f4c;
|
|
2028
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
2029
|
-
}
|
|
2030
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
2031
|
-
color: #1d326c;
|
|
2032
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
2033
|
-
}
|
|
2034
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
2035
|
-
color: #7E41FF;
|
|
2036
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
2037
|
-
}
|
|
2038
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
2039
|
-
color: #fff;
|
|
2040
|
-
}
|
|
2041
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
2042
|
-
background-color: #f0483e;
|
|
2043
|
-
}
|
|
2044
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
2045
|
-
background-color: #fea008;
|
|
2046
|
-
}
|
|
2047
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
2048
|
-
background-color: #00ba5d;
|
|
2049
|
-
}
|
|
2050
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
2051
|
-
background-color: #0080ff;
|
|
2052
|
-
}
|
|
2053
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
2054
|
-
background-color: #6b7d99;
|
|
2055
|
-
}
|
|
2056
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
2057
|
-
background-color: #7E41FF;
|
|
2058
|
-
}
|
|
2059
|
-
|
|
2060
|
-
.E_s1dni7lo {
|
|
2061
|
-
width: 430px !important;
|
|
2062
|
-
}
|
|
2063
|
-
|
|
2064
|
-
.E_d1wwmmm5 .ant-select-item-group {
|
|
2065
|
-
padding: 8px 16px;
|
|
2066
|
-
line-height: 18px;
|
|
2067
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
2068
|
-
height: 34px;
|
|
2069
|
-
min-height: 34px;
|
|
2070
|
-
box-sizing: border-box;
|
|
2071
|
-
margin-top: 8px;
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
.E_o1ugr09p {
|
|
2075
|
-
display: flex;
|
|
2076
|
-
flex-direction: column;
|
|
2077
|
-
margin: 1px 8px;
|
|
2078
|
-
padding: 8px;
|
|
2079
|
-
border-radius: 4px;
|
|
2080
|
-
}
|
|
2081
|
-
.E_o1ugr09p .selected-icon {
|
|
2082
|
-
display: none;
|
|
2083
|
-
}
|
|
2084
|
-
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
2085
|
-
padding-left: 8px;
|
|
2086
|
-
}
|
|
2087
|
-
.E_o1ugr09p.ant-select-item-option-selected {
|
|
2088
|
-
background-color: white;
|
|
2089
|
-
}
|
|
2090
|
-
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
2091
|
-
color: #0080ff;
|
|
2092
|
-
}
|
|
2093
|
-
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
2094
|
-
display: block;
|
|
2026
|
+
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
2027
|
+
display: block;
|
|
2095
2028
|
}
|
|
2096
2029
|
.E_o1ugr09p.ant-select-item-option-active {
|
|
2097
2030
|
background: rgba(0, 136, 255, 0.16);
|
|
@@ -2138,19 +2071,101 @@ html body {
|
|
|
2138
2071
|
opacity: 0;
|
|
2139
2072
|
}
|
|
2140
2073
|
|
|
2141
|
-
.
|
|
2142
|
-
|
|
2143
|
-
}
|
|
2144
|
-
.E_t1m2x205 .ant-tooltip-inner {
|
|
2145
|
-
background: rgba(23, 38, 64, 0.8);
|
|
2074
|
+
.E_s1sck0th {
|
|
2075
|
+
padding: 0 8px;
|
|
2146
2076
|
border-radius: 4px;
|
|
2147
2077
|
}
|
|
2148
|
-
|
|
2149
|
-
|
|
2078
|
+
|
|
2079
|
+
.E_m855nr1 {
|
|
2080
|
+
padding: 2px 8px;
|
|
2081
|
+
border-radius: 3px;
|
|
2150
2082
|
}
|
|
2151
2083
|
|
|
2152
|
-
.
|
|
2153
|
-
|
|
2084
|
+
.E_l1270xpg {
|
|
2085
|
+
padding: 3px 8px;
|
|
2086
|
+
border-radius: 2px;
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
.E_t14rextb.ant-tag:hover {
|
|
2090
|
+
opacity: unset;
|
|
2091
|
+
}
|
|
2092
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
2093
|
+
margin: 0;
|
|
2094
|
+
margin-right: 8px;
|
|
2095
|
+
display: inline-flex;
|
|
2096
|
+
align-items: center;
|
|
2097
|
+
border: none;
|
|
2098
|
+
}
|
|
2099
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
2100
|
+
width: 16px;
|
|
2101
|
+
height: 16px;
|
|
2102
|
+
color: inherit;
|
|
2103
|
+
margin-left: 4px;
|
|
2104
|
+
opacity: 0.6;
|
|
2105
|
+
display: inline-flex;
|
|
2106
|
+
}
|
|
2107
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
2108
|
+
opacity: 1;
|
|
2109
|
+
}
|
|
2110
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
2111
|
+
color: #0080ff;
|
|
2112
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2113
|
+
}
|
|
2114
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
2115
|
+
color: #f0483e;
|
|
2116
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
2117
|
+
}
|
|
2118
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
2119
|
+
color: #e07f00;
|
|
2120
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
2121
|
+
}
|
|
2122
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
2123
|
+
color: #008f4c;
|
|
2124
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
2125
|
+
}
|
|
2126
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
2127
|
+
color: #1d326c;
|
|
2128
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
2129
|
+
}
|
|
2130
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
2131
|
+
color: #7E41FF;
|
|
2132
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
2133
|
+
}
|
|
2134
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
2135
|
+
color: #fff;
|
|
2136
|
+
}
|
|
2137
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
2138
|
+
background-color: #f0483e;
|
|
2139
|
+
}
|
|
2140
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
2141
|
+
background-color: #fea008;
|
|
2142
|
+
}
|
|
2143
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
2144
|
+
background-color: #00ba5d;
|
|
2145
|
+
}
|
|
2146
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
2147
|
+
background-color: #0080ff;
|
|
2148
|
+
}
|
|
2149
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
2150
|
+
background-color: #6b7d99;
|
|
2151
|
+
}
|
|
2152
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
2153
|
+
background-color: #7E41FF;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
.E_fzh9mnb {
|
|
2157
|
+
width: 100%;
|
|
2158
|
+
height: 100%;
|
|
2159
|
+
min-height: 124px;
|
|
2160
|
+
display: flex;
|
|
2161
|
+
flex-direction: column;
|
|
2162
|
+
justify-content: center;
|
|
2163
|
+
align-items: center;
|
|
2164
|
+
}
|
|
2165
|
+
.E_fzh9mnb .error-text {
|
|
2166
|
+
color: rgba(10, 37, 85, 0.6);
|
|
2167
|
+
margin-bottom: 16px;
|
|
2168
|
+
font-size: 18px;
|
|
2154
2169
|
}
|
|
2155
2170
|
|
|
2156
2171
|
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
@@ -2213,6 +2228,24 @@ html body {
|
|
|
2213
2228
|
padding: 2px 8px;
|
|
2214
2229
|
}
|
|
2215
2230
|
|
|
2231
|
+
.E_iouxfgt {
|
|
2232
|
+
display: inline-flex;
|
|
2233
|
+
align-items: center;
|
|
2234
|
+
}
|
|
2235
|
+
.E_iouxfgt .icon-inner {
|
|
2236
|
+
display: inline-flex;
|
|
2237
|
+
align-items: center;
|
|
2238
|
+
justify-content: center;
|
|
2239
|
+
}
|
|
2240
|
+
.E_iouxfgt .icon-inner + span,
|
|
2241
|
+
.E_iouxfgt span + .icon-inner.suffix {
|
|
2242
|
+
margin-left: 4px;
|
|
2243
|
+
}
|
|
2244
|
+
.E_iouxfgt.is-rotate img,
|
|
2245
|
+
.E_iouxfgt.is-rotate svg {
|
|
2246
|
+
animation: rotate 680ms linear infinite;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2216
2249
|
.E_i1inqkme {
|
|
2217
2250
|
height: 18px;
|
|
2218
2251
|
line-height: 18px;
|
|
@@ -2226,6 +2259,40 @@ html body {
|
|
|
2226
2259
|
margin-right: 4px;
|
|
2227
2260
|
}
|
|
2228
2261
|
|
|
2262
|
+
.E_f7pxqmh {
|
|
2263
|
+
width: 100%;
|
|
2264
|
+
margin-bottom: 0 !important;
|
|
2265
|
+
flex-flow: nowrap !important;
|
|
2266
|
+
line-break: auto;
|
|
2267
|
+
}
|
|
2268
|
+
.E_f7pxqmh > .ant-form-item-label {
|
|
2269
|
+
text-align: left !important;
|
|
2270
|
+
padding-bottom: 0 !important;
|
|
2271
|
+
}
|
|
2272
|
+
.E_f7pxqmh > .ant-form-item-label > label {
|
|
2273
|
+
min-height: 32px;
|
|
2274
|
+
height: auto;
|
|
2275
|
+
font-size: 13px;
|
|
2276
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2277
|
+
white-space: normal;
|
|
2278
|
+
}
|
|
2279
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
2280
|
+
border-color: #ff4d4f !important;
|
|
2281
|
+
}
|
|
2282
|
+
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
2283
|
+
border-color: #ff4d4f !important;
|
|
2284
|
+
}
|
|
2285
|
+
.E_f7pxqmh .ant-form-item-explain {
|
|
2286
|
+
margin-top: 4px;
|
|
2287
|
+
font-size: 12px;
|
|
2288
|
+
min-height: 0px;
|
|
2289
|
+
}
|
|
2290
|
+
.E_f7pxqmh .ant-form-item-extra {
|
|
2291
|
+
font-size: 12px;
|
|
2292
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2293
|
+
min-height: 0px;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2229
2296
|
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
2230
2297
|
display: var(--a1wfy30z-0);
|
|
2231
2298
|
}
|
|
@@ -2264,97 +2331,21 @@ html body {
|
|
|
2264
2331
|
padding: 2px 7px 2px 12px;
|
|
2265
2332
|
}
|
|
2266
2333
|
|
|
2267
|
-
.
|
|
2268
|
-
width:
|
|
2269
|
-
height: 100%;
|
|
2270
|
-
min-height: 124px;
|
|
2271
|
-
display: flex;
|
|
2272
|
-
flex-direction: column;
|
|
2273
|
-
justify-content: center;
|
|
2274
|
-
align-items: center;
|
|
2275
|
-
}
|
|
2276
|
-
.E_fzh9mnb .error-text {
|
|
2277
|
-
color: rgba(10, 37, 85, 0.6);
|
|
2278
|
-
margin-bottom: 16px;
|
|
2279
|
-
font-size: 18px;
|
|
2334
|
+
.E_m196gn1d {
|
|
2335
|
+
min-width: 1280px;
|
|
2280
2336
|
}
|
|
2281
2337
|
|
|
2282
|
-
.
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
min-height: 32px;
|
|
2294
|
-
height: auto;
|
|
2295
|
-
font-size: 13px;
|
|
2296
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2297
|
-
white-space: normal;
|
|
2298
|
-
}
|
|
2299
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input {
|
|
2300
|
-
border-color: #ff4d4f !important;
|
|
2301
|
-
}
|
|
2302
|
-
.E_f7pxqmh.ant-form-item-has-error .ant-input-password {
|
|
2303
|
-
border-color: #ff4d4f !important;
|
|
2304
|
-
}
|
|
2305
|
-
.E_f7pxqmh .ant-form-item-explain {
|
|
2306
|
-
margin-top: 4px;
|
|
2307
|
-
font-size: 12px;
|
|
2308
|
-
min-height: 0px;
|
|
2309
|
-
}
|
|
2310
|
-
.E_f7pxqmh .ant-form-item-extra {
|
|
2311
|
-
font-size: 12px;
|
|
2312
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2313
|
-
min-height: 0px;
|
|
2314
|
-
}
|
|
2315
|
-
|
|
2316
|
-
.E_iouxfgt {
|
|
2317
|
-
display: inline-flex;
|
|
2318
|
-
align-items: center;
|
|
2319
|
-
}
|
|
2320
|
-
.E_iouxfgt .icon-inner {
|
|
2321
|
-
display: inline-flex;
|
|
2322
|
-
align-items: center;
|
|
2323
|
-
justify-content: center;
|
|
2324
|
-
}
|
|
2325
|
-
.E_iouxfgt .icon-inner + span,
|
|
2326
|
-
.E_iouxfgt span + .icon-inner.suffix {
|
|
2327
|
-
margin-left: 4px;
|
|
2328
|
-
}
|
|
2329
|
-
.E_iouxfgt.is-rotate img,
|
|
2330
|
-
.E_iouxfgt.is-rotate svg {
|
|
2331
|
-
animation: rotate 680ms linear infinite;
|
|
2332
|
-
}
|
|
2333
|
-
|
|
2334
|
-
.E_owd0kml {
|
|
2335
|
-
display: inline-block;
|
|
2336
|
-
}
|
|
2337
|
-
|
|
2338
|
-
.E_h1jsgezc {
|
|
2339
|
-
visibility: hidden;
|
|
2340
|
-
position: absolute;
|
|
2341
|
-
}
|
|
2342
|
-
|
|
2343
|
-
.E_m196gn1d {
|
|
2344
|
-
min-width: 1280px;
|
|
2345
|
-
}
|
|
2346
|
-
|
|
2347
|
-
.E_a1b5xrg3 .user-icon-inner {
|
|
2348
|
-
display: inline-flex;
|
|
2349
|
-
align-items: center;
|
|
2350
|
-
justify-content: center;
|
|
2351
|
-
color: #fff;
|
|
2352
|
-
font-weight: bold;
|
|
2353
|
-
font-size: 12px;
|
|
2354
|
-
width: 24px;
|
|
2355
|
-
height: 24px;
|
|
2356
|
-
border-radius: 50%;
|
|
2357
|
-
background: var(--a1b5xrg3-0);
|
|
2338
|
+
.E_a1b5xrg3 .user-icon-inner {
|
|
2339
|
+
display: inline-flex;
|
|
2340
|
+
align-items: center;
|
|
2341
|
+
justify-content: center;
|
|
2342
|
+
color: #fff;
|
|
2343
|
+
font-weight: bold;
|
|
2344
|
+
font-size: 12px;
|
|
2345
|
+
width: 24px;
|
|
2346
|
+
height: 24px;
|
|
2347
|
+
border-radius: 50%;
|
|
2348
|
+
background: var(--a1b5xrg3-0);
|
|
2358
2349
|
}
|
|
2359
2350
|
.E_a1b5xrg3.btn-item {
|
|
2360
2351
|
transition: all 160ms ease;
|
|
@@ -2374,6 +2365,15 @@ html body {
|
|
|
2374
2365
|
transition: all 320ms ease;
|
|
2375
2366
|
}
|
|
2376
2367
|
|
|
2368
|
+
.E_owd0kml {
|
|
2369
|
+
display: inline-block;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
.E_h1jsgezc {
|
|
2373
|
+
visibility: hidden;
|
|
2374
|
+
position: absolute;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
2377
|
.E_dsnbhzf {
|
|
2378
2378
|
font-family: Inter;
|
|
2379
2379
|
font-style: normal;
|
|
@@ -3833,7 +3833,6 @@ input.E_rf8rlle.ant-input {
|
|
|
3833
3833
|
--footer-height: 96px;
|
|
3834
3834
|
--modal-content-width: 720px;
|
|
3835
3835
|
--modal-content-min-height: 200px;
|
|
3836
|
-
--modal-content-max-height: calc(100vh - 136px);
|
|
3837
3836
|
--modal-header-padding: 40px 60px 8px;
|
|
3838
3837
|
--modal-content-padding-top: 24px;
|
|
3839
3838
|
--modal-content-padding-bottom: 32px;
|
|
@@ -4078,41 +4077,6 @@ input.E_rf8rlle.ant-input {
|
|
|
4078
4077
|
font-size: 14px;
|
|
4079
4078
|
}
|
|
4080
4079
|
|
|
4081
|
-
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
4082
|
-
margin-right: 2px;
|
|
4083
|
-
}
|
|
4084
|
-
|
|
4085
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
4086
|
-
padding-left: 8px;
|
|
4087
|
-
padding-right: 8px;
|
|
4088
|
-
font-size: 12px;
|
|
4089
|
-
}
|
|
4090
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
4091
|
-
border-radius: 4px;
|
|
4092
|
-
}
|
|
4093
|
-
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4094
|
-
border-radius: 4px;
|
|
4095
|
-
}
|
|
4096
|
-
|
|
4097
|
-
.E_ma64lna .antd5-segmented-item-label {
|
|
4098
|
-
padding-left: 12px;
|
|
4099
|
-
padding-right: 12px;
|
|
4100
|
-
}
|
|
4101
|
-
|
|
4102
|
-
.E_ckld275 {
|
|
4103
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
4104
|
-
}
|
|
4105
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4106
|
-
background-color: rgba(255, 255, 255, 0.6);
|
|
4107
|
-
color: rgba(44, 56, 82, 0.75);
|
|
4108
|
-
}
|
|
4109
|
-
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4110
|
-
background-color: transparent;
|
|
4111
|
-
}
|
|
4112
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
4113
|
-
background-color: transparent;
|
|
4114
|
-
}
|
|
4115
|
-
|
|
4116
4080
|
.E_h12yihis {
|
|
4117
4081
|
height: 50px;
|
|
4118
4082
|
border-bottom: 2px solid #edf0f7;
|
|
@@ -4333,114 +4297,280 @@ input.E_rf8rlle.ant-input {
|
|
|
4333
4297
|
position: static;
|
|
4334
4298
|
}
|
|
4335
4299
|
|
|
4336
|
-
.
|
|
4337
|
-
|
|
4300
|
+
.E_ckaaqep {
|
|
4301
|
+
background: rgba(172, 186, 211, 0.6);
|
|
4302
|
+
content: "";
|
|
4303
|
+
height: 100%;
|
|
4304
|
+
margin: 0 6px;
|
|
4305
|
+
width: 1px;
|
|
4338
4306
|
}
|
|
4339
4307
|
|
|
4340
|
-
.
|
|
4341
|
-
|
|
4342
|
-
padding: 7px 12px;
|
|
4343
|
-
display: flex;
|
|
4344
|
-
justify-content: space-between;
|
|
4345
|
-
align-items: center;
|
|
4308
|
+
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
4309
|
+
margin-right: 2px;
|
|
4346
4310
|
}
|
|
4347
|
-
|
|
4348
|
-
|
|
4311
|
+
|
|
4312
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
4313
|
+
padding-left: 8px;
|
|
4314
|
+
padding-right: 8px;
|
|
4315
|
+
font-size: 12px;
|
|
4349
4316
|
}
|
|
4350
|
-
.
|
|
4351
|
-
|
|
4352
|
-
color: #00122e;
|
|
4317
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
4318
|
+
border-radius: 4px;
|
|
4353
4319
|
}
|
|
4354
|
-
.
|
|
4355
|
-
|
|
4356
|
-
font-weight: 600;
|
|
4320
|
+
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4321
|
+
border-radius: 4px;
|
|
4357
4322
|
}
|
|
4358
|
-
|
|
4359
|
-
|
|
4323
|
+
|
|
4324
|
+
.E_ma64lna .antd5-segmented-item-label {
|
|
4325
|
+
padding-left: 12px;
|
|
4326
|
+
padding-right: 12px;
|
|
4360
4327
|
}
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4328
|
+
|
|
4329
|
+
.E_ckld275 {
|
|
4330
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4364
4331
|
}
|
|
4365
|
-
.
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4332
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4333
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
4334
|
+
color: rgba(44, 56, 82, 0.75);
|
|
4335
|
+
}
|
|
4336
|
+
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4337
|
+
background-color: transparent;
|
|
4338
|
+
}
|
|
4339
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
4340
|
+
background-color: transparent;
|
|
4341
|
+
}
|
|
4342
|
+
|
|
4343
|
+
button.E_l48ei06.ant-btn,
|
|
4344
|
+
button.E_l48ei06.ant-btn.ant-btn-sm,
|
|
4345
|
+
button.E_l48ei06.ant-btn.ant-btn-lg {
|
|
4370
4346
|
font-size: 12px;
|
|
4371
4347
|
line-height: 18px;
|
|
4372
|
-
|
|
4373
|
-
font-weight: 700;
|
|
4374
|
-
}
|
|
4375
|
-
.E_c1kghdax .collapse-arrow {
|
|
4376
|
-
transition: all 50ms ease-out 0ms;
|
|
4377
|
-
margin-right: 2px;
|
|
4348
|
+
height: 18px;
|
|
4378
4349
|
}
|
|
4379
4350
|
|
|
4380
|
-
.
|
|
4381
|
-
color: #
|
|
4382
|
-
|
|
4383
|
-
display: inline-flex;
|
|
4351
|
+
button.E_l48ei06 {
|
|
4352
|
+
color: #0080FF;
|
|
4353
|
+
height: unset;
|
|
4384
4354
|
}
|
|
4385
|
-
.
|
|
4386
|
-
|
|
4387
|
-
display: flex;
|
|
4388
|
-
align-items: center;
|
|
4389
|
-
top: 0;
|
|
4355
|
+
button.E_l48ei06 .button-prefix-icon {
|
|
4356
|
+
margin-right: 4px;
|
|
4390
4357
|
}
|
|
4391
|
-
.
|
|
4392
|
-
|
|
4358
|
+
button.E_l48ei06 .button-suffix-icon {
|
|
4359
|
+
margin-left: 4px;
|
|
4393
4360
|
}
|
|
4394
|
-
.
|
|
4395
|
-
|
|
4361
|
+
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
4362
|
+
color: #009DFF;
|
|
4396
4363
|
}
|
|
4397
|
-
.
|
|
4398
|
-
|
|
4364
|
+
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
4365
|
+
color: #005ED1;
|
|
4399
4366
|
}
|
|
4400
|
-
.
|
|
4401
|
-
|
|
4367
|
+
button.E_l48ei06.ui-kit-link-disabled {
|
|
4368
|
+
color: #0080FF;
|
|
4402
4369
|
}
|
|
4403
|
-
.
|
|
4404
|
-
|
|
4370
|
+
button.E_l48ei06.ui-kit-link-primary {
|
|
4371
|
+
color: #00122E;
|
|
4405
4372
|
}
|
|
4406
|
-
.
|
|
4407
|
-
|
|
4408
|
-
height: 2px;
|
|
4409
|
-
width: 10px;
|
|
4410
|
-
border-radius: 2px;
|
|
4373
|
+
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
4374
|
+
color: #0080FF;
|
|
4411
4375
|
}
|
|
4412
|
-
.
|
|
4413
|
-
|
|
4376
|
+
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
4377
|
+
color: #005ED1;
|
|
4414
4378
|
}
|
|
4415
|
-
.
|
|
4416
|
-
|
|
4417
|
-
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
4379
|
+
button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
|
|
4380
|
+
color: #00122E;
|
|
4418
4381
|
}
|
|
4419
|
-
.
|
|
4420
|
-
|
|
4382
|
+
button.E_l48ei06.ui-kit-link-secondary {
|
|
4383
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
4421
4384
|
}
|
|
4422
|
-
.
|
|
4423
|
-
|
|
4385
|
+
button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
|
|
4386
|
+
color: #0080FF;
|
|
4424
4387
|
}
|
|
4425
|
-
.
|
|
4426
|
-
|
|
4388
|
+
button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
|
|
4389
|
+
color: #005ED1;
|
|
4427
4390
|
}
|
|
4428
|
-
.
|
|
4429
|
-
|
|
4430
|
-
margin-left: 12px;
|
|
4431
|
-
color: #2d3a56;
|
|
4391
|
+
button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
4392
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
4432
4393
|
}
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
|
|
4394
|
+
|
|
4395
|
+
.E_u3l9ivi {
|
|
4396
|
+
width: 100%;
|
|
4397
|
+
position: relative;
|
|
4436
4398
|
}
|
|
4437
|
-
.
|
|
4399
|
+
.E_u3l9ivi .upload-label {
|
|
4400
|
+
color: #00122e;
|
|
4401
|
+
word-break: break-word;
|
|
4402
|
+
margin-bottom: 4px;
|
|
4403
|
+
display: block;
|
|
4404
|
+
}
|
|
4405
|
+
.E_u3l9ivi .upload-description {
|
|
4406
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4407
|
+
word-break: break-word;
|
|
4408
|
+
}
|
|
4409
|
+
.E_u3l9ivi .upload-button {
|
|
4410
|
+
display: block;
|
|
4411
|
+
}
|
|
4412
|
+
.E_u3l9ivi .upload-button:not(:first-child),
|
|
4413
|
+
.E_u3l9ivi .upload-drag:not(:first-child) {
|
|
4414
|
+
margin-top: 8px;
|
|
4415
|
+
}
|
|
4416
|
+
.E_u3l9ivi .upload-button:not(:last-child),
|
|
4417
|
+
.E_u3l9ivi .upload-drag:not(:last-child) {
|
|
4418
|
+
margin-bottom: 8px;
|
|
4419
|
+
}
|
|
4420
|
+
.E_u3l9ivi .upload-drag-area {
|
|
4421
|
+
padding: 32px 16px;
|
|
4422
|
+
border-radius: 4px;
|
|
4423
|
+
border: 1px dashed rgba(107, 128, 167, 0.6);
|
|
4424
|
+
background: rgba(237, 241, 250, 0.6);
|
|
4425
|
+
display: flex;
|
|
4426
|
+
flex-direction: column;
|
|
4427
|
+
align-items: center;
|
|
4428
|
+
}
|
|
4429
|
+
.E_u3l9ivi .upload-drag-area .upload-drag-text {
|
|
4430
|
+
text-align: center;
|
|
4431
|
+
}
|
|
4432
|
+
.E_u3l9ivi .upload-drag-area .ant-upload-drag-container {
|
|
4433
|
+
color: #00122e;
|
|
4434
|
+
}
|
|
4435
|
+
.E_u3l9ivi .upload-drag-area.has-file {
|
|
4436
|
+
padding: 16px;
|
|
4437
|
+
}
|
|
4438
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container {
|
|
4439
|
+
display: flex;
|
|
4440
|
+
flex-direction: row;
|
|
4441
|
+
justify-content: center;
|
|
4442
|
+
align-items: flex-start;
|
|
4443
|
+
}
|
|
4444
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link {
|
|
4445
|
+
height: 24px;
|
|
4446
|
+
}
|
|
4447
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link[disabled] {
|
|
4448
|
+
color: #00122e;
|
|
4449
|
+
opacity: 1;
|
|
4450
|
+
}
|
|
4451
|
+
.E_u3l9ivi .upload-drag-area.has-file .upload-drag-text {
|
|
4438
4452
|
margin-left: 8px;
|
|
4453
|
+
text-align: left;
|
|
4439
4454
|
}
|
|
4440
|
-
.
|
|
4455
|
+
.E_u3l9ivi .upload-drag-area.has-file .upload-drag-text .ant-btn.ant-btn-link {
|
|
4456
|
+
height: 24px;
|
|
4457
|
+
}
|
|
4458
|
+
.E_u3l9ivi .upload-drag-area.has-file.single {
|
|
4459
|
+
padding: 12px;
|
|
4460
|
+
line-height: 24px;
|
|
4461
|
+
}
|
|
4462
|
+
.E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container {
|
|
4463
|
+
display: flex;
|
|
4464
|
+
flex-direction: row;
|
|
4465
|
+
align-items: flex-start;
|
|
4466
|
+
justify-content: space-between;
|
|
4467
|
+
line-height: 24px;
|
|
4468
|
+
word-break: break-all;
|
|
4469
|
+
}
|
|
4470
|
+
.E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container .ant-btn.ant-btn-link {
|
|
4471
|
+
height: 24px;
|
|
4472
|
+
}
|
|
4473
|
+
.E_u3l9ivi .upload-drag-area.file-error.single {
|
|
4474
|
+
border-color: #f0483e;
|
|
4475
|
+
background: rgba(255, 74, 74, 0.1);
|
|
4476
|
+
}
|
|
4477
|
+
.E_u3l9ivi .upload-drag-area .file-info {
|
|
4478
|
+
display: flex;
|
|
4479
|
+
cursor: default;
|
|
4480
|
+
align-items: flex-start;
|
|
4481
|
+
}
|
|
4482
|
+
.E_u3l9ivi .upload-drag-area .file-info .icon-wrapper {
|
|
4483
|
+
margin: 4px 0;
|
|
4484
|
+
}
|
|
4485
|
+
.E_u3l9ivi .upload-drag-area .file-info .file-name {
|
|
4486
|
+
margin: 3px 4px;
|
|
4487
|
+
text-align: left;
|
|
4488
|
+
}
|
|
4489
|
+
.E_u3l9ivi .upload-drag-area:not(.ant-upload-disabled):not(.file-error):hover {
|
|
4490
|
+
border-color: #0080ff;
|
|
4491
|
+
background: rgba(0, 136, 255, 0.1);
|
|
4492
|
+
}
|
|
4493
|
+
.E_u3l9ivi .upload-drag-area.ant-upload-disabled {
|
|
4494
|
+
opacity: 0.5;
|
|
4495
|
+
}
|
|
4496
|
+
.E_u3l9ivi .upload-drag-area.ant-upload-disabled.reach-max-count {
|
|
4497
|
+
color: rgba(0, 21, 64, 0.3);
|
|
4498
|
+
}
|
|
4499
|
+
.E_u3l9ivi .upload-error {
|
|
4500
|
+
margin-top: 8px;
|
|
4501
|
+
color: #f0483e;
|
|
4502
|
+
}
|
|
4503
|
+
.E_u3l9ivi .upload-file-info-list {
|
|
4504
|
+
gap: 4px;
|
|
4505
|
+
display: flex;
|
|
4506
|
+
flex-direction: column;
|
|
4507
|
+
}
|
|
4508
|
+
.E_u3l9ivi .upload-file-list {
|
|
4509
|
+
width: 100%;
|
|
4510
|
+
}
|
|
4511
|
+
.E_u3l9ivi .upload-file-list .upload-file-item {
|
|
4512
|
+
padding-bottom: 4px;
|
|
4513
|
+
}
|
|
4514
|
+
.E_u3l9ivi .upload-file-list .upload-file-item:not(:last-child) {
|
|
4515
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
4516
|
+
margin-bottom: 4px;
|
|
4517
|
+
}
|
|
4518
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info {
|
|
4519
|
+
display: flex;
|
|
4520
|
+
align-items: flex-start;
|
|
4521
|
+
}
|
|
4522
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info {
|
|
4523
|
+
display: flex;
|
|
4524
|
+
align-items: flex-start;
|
|
4525
|
+
width: calc(100% - 25px);
|
|
4526
|
+
}
|
|
4527
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .validating {
|
|
4528
|
+
color: rgba(0, 21, 64, 0.3);
|
|
4529
|
+
}
|
|
4530
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .icon-wrapper {
|
|
4531
|
+
margin: 0 4px;
|
|
4532
|
+
}
|
|
4533
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .remove-button {
|
|
4534
|
+
margin-left: auto;
|
|
4535
|
+
}
|
|
4536
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-error {
|
|
4537
|
+
color: #e75a3a;
|
|
4441
4538
|
margin-left: 24px;
|
|
4442
4539
|
}
|
|
4443
4540
|
|
|
4541
|
+
.E_ftdwz1g {
|
|
4542
|
+
display: flex;
|
|
4543
|
+
width: 100%;
|
|
4544
|
+
flex-direction: row;
|
|
4545
|
+
background: rgba(237, 241, 250, 0.6);
|
|
4546
|
+
padding: 7px 8px;
|
|
4547
|
+
border-radius: 4px;
|
|
4548
|
+
gap: 4px;
|
|
4549
|
+
align-items: self-start;
|
|
4550
|
+
color: #00122e;
|
|
4551
|
+
}
|
|
4552
|
+
.E_ftdwz1g .file-size,
|
|
4553
|
+
.E_ftdwz1g .file-size-unit {
|
|
4554
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4555
|
+
}
|
|
4556
|
+
.E_ftdwz1g .file-info {
|
|
4557
|
+
flex-grow: 1;
|
|
4558
|
+
overflow: hidden;
|
|
4559
|
+
}
|
|
4560
|
+
.E_ftdwz1g .icon-wrapper {
|
|
4561
|
+
margin-top: 2px;
|
|
4562
|
+
cursor: pointer;
|
|
4563
|
+
}
|
|
4564
|
+
.E_ftdwz1g .upload-file-error {
|
|
4565
|
+
color: #f0483e;
|
|
4566
|
+
}
|
|
4567
|
+
.E_ftdwz1g.file-error-wrapper {
|
|
4568
|
+
background: rgba(255, 74, 74, 0.1);
|
|
4569
|
+
}
|
|
4570
|
+
.E_ftdwz1g.disabled {
|
|
4571
|
+
opacity: 0.5;
|
|
4572
|
+
}
|
|
4573
|
+
|
|
4444
4574
|
.E_b14q2gmw {
|
|
4445
4575
|
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);
|
|
4446
4576
|
}
|
|
@@ -4458,62 +4588,79 @@ input.E_rf8rlle.ant-input {
|
|
|
4458
4588
|
transform: translateY(-4px);
|
|
4459
4589
|
}
|
|
4460
4590
|
|
|
4461
|
-
.
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
justify-content: center;
|
|
4467
|
-
position: relative;
|
|
4468
|
-
opacity: 0.2;
|
|
4591
|
+
.E_sddwhm6 {
|
|
4592
|
+
margin: 0;
|
|
4593
|
+
border-radius: 20px;
|
|
4594
|
+
padding: 2px 10px;
|
|
4595
|
+
height: 22px;
|
|
4469
4596
|
}
|
|
4470
|
-
|
|
4471
|
-
.
|
|
4472
|
-
position: absolute;
|
|
4473
|
-
width: 5px;
|
|
4474
|
-
height: 48px;
|
|
4475
|
-
left: 9.33px;
|
|
4476
|
-
top: 40.5px;
|
|
4477
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4478
|
-
border-radius: 5px;
|
|
4479
|
-
transform: rotate(-128deg);
|
|
4480
|
-
transform-origin: top left;
|
|
4481
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
4597
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
4598
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
4482
4599
|
}
|
|
4483
|
-
|
|
4484
|
-
.
|
|
4485
|
-
position: absolute;
|
|
4486
|
-
width: 5px;
|
|
4487
|
-
height: 48px;
|
|
4488
|
-
left: 40.8px;
|
|
4489
|
-
top: 8.4px;
|
|
4490
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4491
|
-
border-radius: 5px;
|
|
4492
|
-
transform: rotate(-8deg);
|
|
4493
|
-
transform-origin: top left;
|
|
4494
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
4600
|
+
.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 {
|
|
4601
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
4495
4602
|
}
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
position: absolute;
|
|
4499
|
-
width: 5px;
|
|
4500
|
-
height: 48px;
|
|
4501
|
-
left: 52.9px;
|
|
4502
|
-
top: 51.8px;
|
|
4503
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4504
|
-
border-radius: 5px;
|
|
4505
|
-
transform: rotate(112deg);
|
|
4506
|
-
transform-origin: top left;
|
|
4507
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
4603
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
4604
|
+
color: #00122e;
|
|
4508
4605
|
}
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
padding-left: 0;
|
|
4606
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
4607
|
+
margin-right: 6px;
|
|
4512
4608
|
}
|
|
4513
|
-
.
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4609
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
4610
|
+
margin-left: 8px;
|
|
4611
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4612
|
+
}
|
|
4613
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
4614
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
4615
|
+
}
|
|
4616
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
4617
|
+
background-color: #0080ff;
|
|
4618
|
+
}
|
|
4619
|
+
.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 {
|
|
4620
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
4621
|
+
}
|
|
4622
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
4623
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
4624
|
+
}
|
|
4625
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
4626
|
+
background-color: #f0483e;
|
|
4627
|
+
}
|
|
4628
|
+
.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 {
|
|
4629
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
4630
|
+
}
|
|
4631
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
4632
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
4633
|
+
}
|
|
4634
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
4635
|
+
background-color: #fea008;
|
|
4636
|
+
}
|
|
4637
|
+
.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 {
|
|
4638
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
4639
|
+
}
|
|
4640
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
4641
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
4642
|
+
}
|
|
4643
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
4644
|
+
background-color: #00ba5d;
|
|
4645
|
+
}
|
|
4646
|
+
.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 {
|
|
4647
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
4648
|
+
}
|
|
4649
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
4650
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4651
|
+
}
|
|
4652
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
4653
|
+
background-color: #6b7d99;
|
|
4654
|
+
}
|
|
4655
|
+
.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 {
|
|
4656
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
4657
|
+
}
|
|
4658
|
+
|
|
4659
|
+
.E_satwmqm {
|
|
4660
|
+
width: 8px;
|
|
4661
|
+
height: 8px;
|
|
4662
|
+
border-radius: 50%;
|
|
4663
|
+
display: inline-block;
|
|
4517
4664
|
}
|
|
4518
4665
|
|
|
4519
4666
|
.E_tc97u5y {
|
|
@@ -4887,133 +5034,649 @@ input.E_rf8rlle.ant-input {
|
|
|
4887
5034
|
background: #fff;
|
|
4888
5035
|
}
|
|
4889
5036
|
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
5037
|
+
.E_c1kghdax {
|
|
5038
|
+
color: #2d3a56;
|
|
5039
|
+
padding: 7px 12px;
|
|
5040
|
+
display: flex;
|
|
5041
|
+
justify-content: space-between;
|
|
5042
|
+
align-items: center;
|
|
4896
5043
|
}
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
|
|
5044
|
+
.E_c1kghdax.has-arrow {
|
|
5045
|
+
padding-left: 10px;
|
|
5046
|
+
}
|
|
5047
|
+
.E_c1kghdax.has-arrow .title-wrapper {
|
|
5048
|
+
cursor: pointer;
|
|
5049
|
+
color: #00122e;
|
|
5050
|
+
}
|
|
5051
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
5052
|
+
color: #2d3a56;
|
|
5053
|
+
font-weight: 600;
|
|
5054
|
+
}
|
|
5055
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
5056
|
+
transform: rotate(90deg);
|
|
5057
|
+
}
|
|
5058
|
+
.E_c1kghdax .sub-info {
|
|
5059
|
+
font-size: 12px;
|
|
5060
|
+
line-height: 18px;
|
|
5061
|
+
}
|
|
5062
|
+
.E_c1kghdax .title-wrapper {
|
|
5063
|
+
display: flex;
|
|
5064
|
+
align-items: center;
|
|
5065
|
+
user-select: none;
|
|
5066
|
+
flex-grow: 1;
|
|
5067
|
+
font-size: 12px;
|
|
5068
|
+
line-height: 18px;
|
|
5069
|
+
color: #2d3a56;
|
|
5070
|
+
font-weight: 700;
|
|
5071
|
+
}
|
|
5072
|
+
.E_c1kghdax .collapse-arrow {
|
|
5073
|
+
transition: all 50ms ease-out 0ms;
|
|
5074
|
+
margin-right: 2px;
|
|
5075
|
+
}
|
|
5076
|
+
|
|
5077
|
+
.E_ckui4s7 {
|
|
5078
|
+
color: #2d3a56;
|
|
5079
|
+
line-height: 22px;
|
|
5080
|
+
display: inline-flex;
|
|
5081
|
+
}
|
|
5082
|
+
.E_ckui4s7 .ant-checkbox {
|
|
5083
|
+
height: 22px;
|
|
5084
|
+
display: flex;
|
|
5085
|
+
align-items: center;
|
|
5086
|
+
top: 0;
|
|
5087
|
+
}
|
|
5088
|
+
.E_ckui4s7 .ant-checkbox-checked::after {
|
|
5089
|
+
border: none;
|
|
5090
|
+
}
|
|
5091
|
+
.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 {
|
|
5092
|
+
border-color: #0080ff;
|
|
5093
|
+
}
|
|
5094
|
+
.E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
|
|
5095
|
+
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
5096
|
+
}
|
|
5097
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
5098
|
+
border: 1px solid #0080ff;
|
|
5099
|
+
}
|
|
5100
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
5101
|
+
background: #0080ff;
|
|
5102
|
+
}
|
|
5103
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
5104
|
+
background-color: #fff;
|
|
5105
|
+
height: 2px;
|
|
5106
|
+
width: 10px;
|
|
5107
|
+
border-radius: 2px;
|
|
5108
|
+
}
|
|
5109
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled {
|
|
5110
|
+
opacity: 0.5;
|
|
5111
|
+
}
|
|
5112
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
5113
|
+
background: rgba(211, 218, 235, 0.6);
|
|
5114
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
5115
|
+
}
|
|
5116
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
5117
|
+
border-color: #2d3a56;
|
|
5118
|
+
}
|
|
5119
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
5120
|
+
background: #2d3a56;
|
|
5121
|
+
}
|
|
5122
|
+
.E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
|
|
5123
|
+
padding: 0;
|
|
5124
|
+
}
|
|
5125
|
+
.E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
|
|
5126
|
+
display: inline-block;
|
|
5127
|
+
margin-left: 12px;
|
|
5128
|
+
color: #2d3a56;
|
|
5129
|
+
}
|
|
5130
|
+
.E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
|
|
5131
|
+
margin-left: 28px;
|
|
5132
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5133
|
+
}
|
|
5134
|
+
.E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
|
|
5135
|
+
margin-left: 8px;
|
|
5136
|
+
}
|
|
5137
|
+
.E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
|
|
5138
|
+
margin-left: 24px;
|
|
5139
|
+
}
|
|
5140
|
+
|
|
5141
|
+
.E_c1yd35n {
|
|
5142
|
+
padding: 0 12px 14px 12px;
|
|
5143
|
+
}
|
|
5144
|
+
|
|
5145
|
+
.E_lht19u8 {
|
|
5146
|
+
width: 64px;
|
|
5147
|
+
height: 64px;
|
|
5148
|
+
display: flex;
|
|
5149
|
+
align-items: center;
|
|
5150
|
+
justify-content: center;
|
|
5151
|
+
position: relative;
|
|
5152
|
+
opacity: 0.2;
|
|
5153
|
+
}
|
|
5154
|
+
|
|
5155
|
+
.E_lk3gkp4 {
|
|
5156
|
+
position: absolute;
|
|
5157
|
+
width: 5px;
|
|
5158
|
+
height: 48px;
|
|
5159
|
+
left: 9.33px;
|
|
5160
|
+
top: 40.5px;
|
|
5161
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5162
|
+
border-radius: 5px;
|
|
5163
|
+
transform: rotate(-128deg);
|
|
5164
|
+
transform-origin: top left;
|
|
5165
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
5166
|
+
}
|
|
5167
|
+
|
|
5168
|
+
.E_ll4n94n {
|
|
5169
|
+
position: absolute;
|
|
5170
|
+
width: 5px;
|
|
5171
|
+
height: 48px;
|
|
5172
|
+
left: 40.8px;
|
|
5173
|
+
top: 8.4px;
|
|
5174
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5175
|
+
border-radius: 5px;
|
|
5176
|
+
transform: rotate(-8deg);
|
|
5177
|
+
transform-origin: top left;
|
|
5178
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
5179
|
+
}
|
|
5180
|
+
|
|
5181
|
+
.E_l17lbdo6 {
|
|
5182
|
+
position: absolute;
|
|
5183
|
+
width: 5px;
|
|
5184
|
+
height: 48px;
|
|
5185
|
+
left: 52.9px;
|
|
5186
|
+
top: 51.8px;
|
|
5187
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5188
|
+
border-radius: 5px;
|
|
5189
|
+
transform: rotate(112deg);
|
|
5190
|
+
transform-origin: top left;
|
|
5191
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
5192
|
+
}
|
|
5193
|
+
|
|
5194
|
+
.E_t1tbywr9 {
|
|
5195
|
+
width: 100%;
|
|
5196
|
+
flex: 1;
|
|
5197
|
+
display: flex;
|
|
5198
|
+
flex-direction: column;
|
|
5199
|
+
}
|
|
5200
|
+
.E_t1tbywr9.medium .tab-bar {
|
|
5201
|
+
height: 32px;
|
|
5202
|
+
}
|
|
5203
|
+
.E_t1tbywr9.medium .tab-bar .common-tab-bar {
|
|
5204
|
+
height: 32px;
|
|
5205
|
+
}
|
|
5206
|
+
.E_t1tbywr9.medium .tab-bar .common-tab-bar .tab-item-title {
|
|
5207
|
+
height: 32px;
|
|
5208
|
+
border-top-left-radius: 6px;
|
|
5209
|
+
border-top-right-radius: 6px;
|
|
5210
|
+
padding-right: 16px;
|
|
5211
|
+
padding-left: 16px;
|
|
5212
|
+
font-size: 16px;
|
|
5213
|
+
}
|
|
5214
|
+
.E_t1tbywr9.small .tab-bar {
|
|
5215
|
+
height: 24px;
|
|
5216
|
+
}
|
|
5217
|
+
.E_t1tbywr9.small .tab-bar .common-tab-bar {
|
|
5218
|
+
height: 24px;
|
|
5219
|
+
}
|
|
5220
|
+
.E_t1tbywr9.small .tab-bar .common-tab-bar .tab-item-title {
|
|
5221
|
+
height: 24px;
|
|
5222
|
+
border-top-left-radius: 4px;
|
|
5223
|
+
border-top-right-radius: 4px;
|
|
5224
|
+
padding-right: 12px;
|
|
5225
|
+
padding-left: 12px;
|
|
5226
|
+
font-size: 14px;
|
|
5227
|
+
}
|
|
5228
|
+
.E_t1tbywr9 .tab-bar {
|
|
5229
|
+
max-width: 100%;
|
|
5230
|
+
display: flex;
|
|
5231
|
+
place-items: center;
|
|
5232
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
5233
|
+
}
|
|
5234
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar {
|
|
5235
|
+
overflow: hidden;
|
|
5236
|
+
display: flex;
|
|
5237
|
+
place-items: center;
|
|
5238
|
+
}
|
|
5239
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar .tab-item-title:first-child:not(.__selected):not(:hover) {
|
|
5240
|
+
padding-left: 0px;
|
|
5241
|
+
}
|
|
5242
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar + .tab-item-title {
|
|
5243
|
+
margin-left: 12px;
|
|
5244
|
+
position: relative;
|
|
5245
|
+
}
|
|
5246
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar + .tab-item-title::before {
|
|
5247
|
+
content: "";
|
|
5248
|
+
width: 1px;
|
|
5249
|
+
height: 24px;
|
|
5250
|
+
background: rgba(172, 186, 211, 0.6);
|
|
5251
|
+
position: absolute;
|
|
5252
|
+
left: -6px;
|
|
5253
|
+
top: 50%;
|
|
5254
|
+
transform: translateY(-50%);
|
|
5255
|
+
}
|
|
5256
|
+
.E_t1tbywr9 .tab-bar .tab-item-title {
|
|
5257
|
+
flex-shrink: 0;
|
|
5258
|
+
display: flex;
|
|
5259
|
+
place-items: center;
|
|
5260
|
+
cursor: pointer;
|
|
5261
|
+
color: rgba(44, 56, 82, 0.75);
|
|
5262
|
+
transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
|
|
5263
|
+
}
|
|
5264
|
+
.E_t1tbywr9 .tab-bar .tab-item-title:hover {
|
|
5265
|
+
padding-left: 16px;
|
|
5266
|
+
color: #0080ff;
|
|
5267
|
+
background: rgba(0, 136, 255, 0.1607843137);
|
|
5268
|
+
}
|
|
5269
|
+
.E_t1tbywr9 .tab-bar .tab-item-title + .tab-item-title {
|
|
5270
|
+
margin-left: 2px;
|
|
5271
|
+
}
|
|
5272
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.more:not(.__selected) {
|
|
5273
|
+
width: 16px;
|
|
5274
|
+
height: 16px;
|
|
5275
|
+
padding: 0;
|
|
5276
|
+
border-radius: 2px;
|
|
5277
|
+
margin-left: 8px;
|
|
5278
|
+
}
|
|
5279
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.more.__selected.tab-title-text {
|
|
5280
|
+
margin-left: 8px;
|
|
5281
|
+
}
|
|
5282
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.__selected {
|
|
5283
|
+
padding-left: 16px;
|
|
5284
|
+
background: rgba(0, 136, 255, 0.1);
|
|
5285
|
+
color: #0080ff;
|
|
5286
|
+
}
|
|
5287
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.__hidden {
|
|
5288
|
+
display: none;
|
|
5289
|
+
}
|
|
5290
|
+
|
|
5291
|
+
.E_ti12z2.ant-dropdown-open {
|
|
5292
|
+
color: #0080ff;
|
|
5293
|
+
background: rgba(211, 218, 235, 0.6);
|
|
5294
|
+
}
|
|
5295
|
+
|
|
5296
|
+
.E_m19lu3v {
|
|
5297
|
+
cursor: default;
|
|
5298
|
+
}
|
|
5299
|
+
.E_m19lu3v .menu-wrapper {
|
|
5300
|
+
min-width: 160px;
|
|
5301
|
+
max-width: 400px;
|
|
5302
|
+
padding: 6px;
|
|
5303
|
+
background: #fff;
|
|
5304
|
+
box-shadow: 0px 0px 10px rgba(107, 125, 153, 0.18), 0px 12px 40px rgba(45, 58, 86, 0.3);
|
|
5305
|
+
border-radius: 8px;
|
|
5306
|
+
max-height: calc(100vh - 250px);
|
|
5307
|
+
overflow: auto;
|
|
5308
|
+
}
|
|
5309
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item {
|
|
5310
|
+
display: flex;
|
|
5311
|
+
place-items: center;
|
|
5312
|
+
width: var(--itemWidth);
|
|
5313
|
+
}
|
|
5314
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item + .tab-menu-item {
|
|
5315
|
+
margin-top: 8px;
|
|
5316
|
+
}
|
|
5317
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.__selected {
|
|
5318
|
+
padding: 6px;
|
|
5319
|
+
background: rgba(0, 136, 255, 0.1);
|
|
5320
|
+
color: #0080ff;
|
|
5321
|
+
}
|
|
5322
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.__selectedE_l1fbkbzo {
|
|
5323
|
+
font-family: Inter;
|
|
5324
|
+
font-style: normal;
|
|
5325
|
+
font-weight: bold !important;
|
|
5326
|
+
}
|
|
5327
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item {
|
|
5328
|
+
padding: 5px 12px;
|
|
5329
|
+
border-radius: 4px;
|
|
5330
|
+
}
|
|
5331
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover {
|
|
5332
|
+
color: #0080ff;
|
|
5333
|
+
background: rgba(211, 218, 235, 0.6);
|
|
5334
|
+
}
|
|
5335
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item-text {
|
|
5336
|
+
text-align: left;
|
|
5337
|
+
flex: 1;
|
|
5338
|
+
overflow: hidden;
|
|
5339
|
+
text-overflow: ellipsis;
|
|
5340
|
+
white-space: nowrap;
|
|
5341
|
+
}
|
|
5342
|
+
|
|
5343
|
+
.E_i1bmwe2m {
|
|
5344
|
+
margin: auto;
|
|
5345
|
+
cursor: pointer;
|
|
5346
|
+
line-height: normal;
|
|
5347
|
+
height: 16px;
|
|
5348
|
+
margin-right: 3px;
|
|
5349
|
+
}
|
|
5350
|
+
.E_i1bmwe2m .icon-inner {
|
|
5351
|
+
display: block;
|
|
5352
|
+
height: 16px;
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5355
|
+
.E_w7ob4th.outside-tag {
|
|
5356
|
+
padding-left: 0;
|
|
5357
|
+
}
|
|
5358
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
5359
|
+
border-radius: 4px 0 0 4px;
|
|
5360
|
+
padding-right: 4px;
|
|
5361
|
+
margin-right: 4px;
|
|
5362
|
+
}
|
|
5363
|
+
|
|
5364
|
+
.E_sjob3jg {
|
|
5365
|
+
--item-min-width: 60px;
|
|
5366
|
+
}
|
|
5367
|
+
.E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
|
|
5368
|
+
display: none !important;
|
|
5369
|
+
}
|
|
5370
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active {
|
|
5371
|
+
flex-shrink: 0 !important;
|
|
5372
|
+
}
|
|
5373
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
5374
|
+
color: #0080ff;
|
|
5375
|
+
}
|
|
5376
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
5377
|
+
color: #0080ff;
|
|
5378
|
+
font-weight: normal;
|
|
5379
|
+
}
|
|
5380
|
+
.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 {
|
|
5381
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5382
|
+
}
|
|
5383
|
+
.E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
5384
|
+
color: #00122e;
|
|
5385
|
+
}
|
|
5386
|
+
.E_sjob3jg .step-item-text {
|
|
5387
|
+
display: inline-block;
|
|
5388
|
+
}
|
|
5389
|
+
.E_sjob3jg .step-item-title {
|
|
5390
|
+
overflow: hidden;
|
|
5391
|
+
white-space: nowrap;
|
|
5392
|
+
text-overflow: ellipsis;
|
|
4901
5393
|
}
|
|
4902
|
-
|
|
5394
|
+
|
|
5395
|
+
.E_hjvj6s6 .ant-steps-item-container {
|
|
5396
|
+
min-width: var(--item-min-width);
|
|
5397
|
+
}
|
|
5398
|
+
.E_hjvj6s6 .ant-steps-item-disabled {
|
|
5399
|
+
cursor: not-allowed !important;
|
|
5400
|
+
}
|
|
5401
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
5402
|
+
flex-direction: row;
|
|
5403
|
+
justify-content: stretch;
|
|
5404
|
+
}
|
|
5405
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
5406
|
+
padding: 0;
|
|
4903
5407
|
margin-right: 4px;
|
|
5408
|
+
flex: 1;
|
|
5409
|
+
overflow: visible;
|
|
4904
5410
|
}
|
|
4905
|
-
|
|
4906
|
-
|
|
5411
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
5412
|
+
width: 100%;
|
|
5413
|
+
min-height: unset;
|
|
4907
5414
|
}
|
|
4908
|
-
|
|
4909
|
-
|
|
5415
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
5416
|
+
height: 26px;
|
|
5417
|
+
line-height: 26px;
|
|
5418
|
+
width: 100%;
|
|
5419
|
+
padding: 0;
|
|
5420
|
+
font-size: 12px;
|
|
4910
5421
|
}
|
|
4911
|
-
|
|
4912
|
-
|
|
5422
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
5423
|
+
margin-right: 10px;
|
|
4913
5424
|
}
|
|
4914
|
-
|
|
4915
|
-
|
|
5425
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
5426
|
+
display: none;
|
|
4916
5427
|
}
|
|
4917
|
-
|
|
4918
|
-
|
|
5428
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
5429
|
+
padding-left: 8px;
|
|
5430
|
+
padding-right: 4px;
|
|
5431
|
+
border-radius: 4px 0 0 4px;
|
|
4919
5432
|
}
|
|
4920
|
-
|
|
4921
|
-
|
|
5433
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
5434
|
+
margin-right: 0;
|
|
4922
5435
|
}
|
|
4923
|
-
|
|
4924
|
-
|
|
5436
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
5437
|
+
padding-right: 8px;
|
|
5438
|
+
padding-left: 12px;
|
|
5439
|
+
border-radius: 0 4px 4px 0;
|
|
4925
5440
|
}
|
|
4926
|
-
|
|
4927
|
-
|
|
5441
|
+
.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 {
|
|
5442
|
+
content: "";
|
|
5443
|
+
width: 0;
|
|
5444
|
+
height: 0;
|
|
5445
|
+
border: 13px solid transparent;
|
|
5446
|
+
position: absolute;
|
|
5447
|
+
top: 0;
|
|
5448
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
5449
|
+
z-index: 2;
|
|
5450
|
+
position: relative;
|
|
5451
|
+
top: -50%;
|
|
5452
|
+
right: -100%;
|
|
4928
5453
|
}
|
|
4929
|
-
|
|
4930
|
-
|
|
5454
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
5455
|
+
padding: 0 4px 0 12px;
|
|
4931
5456
|
}
|
|
4932
|
-
|
|
4933
|
-
|
|
5457
|
+
.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 {
|
|
5458
|
+
content: "";
|
|
5459
|
+
width: 0;
|
|
5460
|
+
height: 0;
|
|
5461
|
+
border: 13px solid transparent;
|
|
5462
|
+
position: absolute;
|
|
5463
|
+
top: 0;
|
|
5464
|
+
border-left: 8px solid #fff;
|
|
5465
|
+
left: 0;
|
|
4934
5466
|
}
|
|
4935
|
-
|
|
4936
|
-
|
|
5467
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
5468
|
+
max-width: calc(100% - var(--item-min-width) * 2);
|
|
4937
5469
|
}
|
|
4938
|
-
|
|
4939
|
-
color: rgba(
|
|
5470
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
5471
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
5472
|
+
}
|
|
5473
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
5474
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
5475
|
+
}
|
|
5476
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
5477
|
+
cursor: pointer;
|
|
5478
|
+
min-width: var(--item-min-width);
|
|
5479
|
+
}
|
|
5480
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
5481
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
5482
|
+
min-width: var(--item-min-width);
|
|
5483
|
+
}
|
|
5484
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
5485
|
+
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
5486
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
5487
|
+
}
|
|
5488
|
+
.E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
5489
|
+
padding: 0;
|
|
4940
5490
|
}
|
|
4941
5491
|
|
|
4942
|
-
.
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
padding: 2px 10px;
|
|
4946
|
-
height: 22px;
|
|
5492
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical {
|
|
5493
|
+
width: 192px;
|
|
5494
|
+
row-gap: 2px;
|
|
4947
5495
|
}
|
|
4948
|
-
.
|
|
4949
|
-
background-color: rgba(
|
|
5496
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
|
|
5497
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4950
5498
|
}
|
|
4951
|
-
.
|
|
4952
|
-
|
|
5499
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
|
|
5500
|
+
color: #00122e !important;
|
|
4953
5501
|
}
|
|
4954
|
-
.
|
|
4955
|
-
color:
|
|
5502
|
+
.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 {
|
|
5503
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4956
5504
|
}
|
|
4957
|
-
.
|
|
4958
|
-
|
|
5505
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
|
|
5506
|
+
padding: 0 8px;
|
|
5507
|
+
border-radius: 4px;
|
|
5508
|
+
height: 32px;
|
|
5509
|
+
display: flex;
|
|
5510
|
+
align-items: center;
|
|
4959
5511
|
}
|
|
4960
|
-
.
|
|
4961
|
-
|
|
4962
|
-
|
|
5512
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
5513
|
+
min-height: auto;
|
|
5514
|
+
white-space: nowrap;
|
|
4963
5515
|
}
|
|
4964
|
-
.
|
|
4965
|
-
|
|
5516
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
5517
|
+
font-size: 13px;
|
|
5518
|
+
line-height: 20px;
|
|
5519
|
+
max-width: 100%;
|
|
5520
|
+
padding-right: 0;
|
|
4966
5521
|
}
|
|
4967
|
-
.
|
|
4968
|
-
background
|
|
5522
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
|
|
5523
|
+
background: rgba(0, 128, 255, 0.1);
|
|
4969
5524
|
}
|
|
4970
|
-
|
|
4971
|
-
|
|
5525
|
+
|
|
5526
|
+
.E_h6l1tj4 {
|
|
5527
|
+
width: 100%;
|
|
5528
|
+
display: inline-flex;
|
|
5529
|
+
align-items: center;
|
|
5530
|
+
justify-content: center;
|
|
5531
|
+
column-gap: 4px;
|
|
4972
5532
|
}
|
|
4973
|
-
.
|
|
4974
|
-
|
|
5533
|
+
.E_h6l1tj4 .step-item-prefix-container {
|
|
5534
|
+
display: inline-flex;
|
|
5535
|
+
align-items: center;
|
|
5536
|
+
width: 18px;
|
|
5537
|
+
height: 18px;
|
|
5538
|
+
color: rgba(44, 56, 82, 0.75);
|
|
5539
|
+
justify-content: center;
|
|
4975
5540
|
}
|
|
4976
|
-
|
|
4977
|
-
|
|
5541
|
+
|
|
5542
|
+
.E_v18frne8 {
|
|
5543
|
+
width: 100%;
|
|
5544
|
+
display: flex;
|
|
5545
|
+
align-items: center;
|
|
5546
|
+
justify-content: center;
|
|
5547
|
+
column-gap: 6px;
|
|
5548
|
+
font-size: 13px;
|
|
4978
5549
|
}
|
|
4979
|
-
.
|
|
4980
|
-
|
|
5550
|
+
.E_v18frne8 .step-item-prefix-container {
|
|
5551
|
+
display: inline-flex;
|
|
5552
|
+
align-items: center;
|
|
5553
|
+
min-width: 20px;
|
|
5554
|
+
min-height: 20px;
|
|
5555
|
+
color: rgba(44, 56, 82, 0.75);
|
|
5556
|
+
justify-content: center;
|
|
4981
5557
|
}
|
|
4982
|
-
|
|
4983
|
-
|
|
5558
|
+
|
|
5559
|
+
.E_slr2ynn {
|
|
5560
|
+
padding: 0 8px;
|
|
5561
|
+
height: 18px;
|
|
4984
5562
|
}
|
|
4985
|
-
|
|
4986
|
-
|
|
5563
|
+
|
|
5564
|
+
.E_m140wbb6 {
|
|
5565
|
+
padding: 2px 8px;
|
|
5566
|
+
height: 24px;
|
|
4987
5567
|
}
|
|
4988
|
-
|
|
4989
|
-
|
|
5568
|
+
|
|
5569
|
+
.E_t1fozc1i {
|
|
5570
|
+
margin: 0;
|
|
4990
5571
|
}
|
|
4991
|
-
|
|
4992
|
-
|
|
5572
|
+
|
|
5573
|
+
.E_i1vxv4ln {
|
|
5574
|
+
margin-right: 4px;
|
|
5575
|
+
height: 16px;
|
|
5576
|
+
}
|
|
5577
|
+
|
|
5578
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
5579
|
+
font-weight: 700;
|
|
5580
|
+
color: #00122e;
|
|
5581
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
5582
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
5583
|
+
word-break: break-all;
|
|
5584
|
+
display: inline;
|
|
5585
|
+
white-space: normal;
|
|
5586
|
+
}
|
|
5587
|
+
|
|
5588
|
+
.E_l1ucdodl {
|
|
5589
|
+
margin: 0;
|
|
5590
|
+
border-radius: 20px;
|
|
5591
|
+
padding: 2px 10px;
|
|
5592
|
+
height: 22px;
|
|
5593
|
+
display: flex;
|
|
5594
|
+
align-items: center;
|
|
5595
|
+
}
|
|
5596
|
+
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
5597
|
+
color: #FFFFFF;
|
|
5598
|
+
}
|
|
5599
|
+
.E_l1ucdodl.tag-hover {
|
|
5600
|
+
cursor: pointer;
|
|
5601
|
+
}
|
|
5602
|
+
.E_l1ucdodl.ui-kit-status-legend {
|
|
5603
|
+
color: #00122e;
|
|
5604
|
+
}
|
|
5605
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
5606
|
+
margin-right: 6px;
|
|
5607
|
+
}
|
|
5608
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
5609
|
+
margin-left: 8px;
|
|
5610
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5611
|
+
}
|
|
5612
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
5613
|
+
color: #FFFFFF;
|
|
5614
|
+
}
|
|
5615
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
5616
|
+
background-color: #0080ff;
|
|
4993
5617
|
}
|
|
4994
|
-
.
|
|
4995
|
-
background-color: #
|
|
5618
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
5619
|
+
background-color: #f0483e;
|
|
4996
5620
|
}
|
|
4997
|
-
.
|
|
4998
|
-
background-color:
|
|
5621
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
5622
|
+
background-color: #fea008;
|
|
4999
5623
|
}
|
|
5000
|
-
.
|
|
5001
|
-
background-color:
|
|
5624
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
5625
|
+
background-color: #00ba5d;
|
|
5002
5626
|
}
|
|
5003
|
-
.
|
|
5627
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5004
5628
|
background-color: #6b7d99;
|
|
5005
5629
|
}
|
|
5006
|
-
.
|
|
5007
|
-
background-color:
|
|
5630
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5631
|
+
background-color: #7E41FF;
|
|
5008
5632
|
}
|
|
5009
5633
|
|
|
5010
|
-
.
|
|
5634
|
+
.E_s1qj66nc {
|
|
5011
5635
|
width: 8px;
|
|
5012
5636
|
height: 8px;
|
|
5013
5637
|
border-radius: 50%;
|
|
5014
5638
|
display: inline-block;
|
|
5015
5639
|
}
|
|
5016
5640
|
|
|
5641
|
+
.E_s5x1boq {
|
|
5642
|
+
width: 8px;
|
|
5643
|
+
height: 8px;
|
|
5644
|
+
border-radius: 2px;
|
|
5645
|
+
display: inline-block;
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
.E_c1xm185 {
|
|
5649
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5650
|
+
}
|
|
5651
|
+
|
|
5652
|
+
.E_c1x5l5qc {
|
|
5653
|
+
flex: 1;
|
|
5654
|
+
}
|
|
5655
|
+
|
|
5656
|
+
.E_r77hffu {
|
|
5657
|
+
display: flex;
|
|
5658
|
+
align-items: center;
|
|
5659
|
+
justify-content: space-between;
|
|
5660
|
+
column-gap: 6px;
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5663
|
+
.E_p1cmxsf7 {
|
|
5664
|
+
display: flex;
|
|
5665
|
+
flex-direction: column;
|
|
5666
|
+
justify-content: center;
|
|
5667
|
+
row-gap: var(--p1cmxsf7-0);
|
|
5668
|
+
}
|
|
5669
|
+
.E_p1cmxsf7 .antd5-progress-line {
|
|
5670
|
+
font-size: 0;
|
|
5671
|
+
margin-bottom: unset;
|
|
5672
|
+
margin-inline-end: unset;
|
|
5673
|
+
}
|
|
5674
|
+
|
|
5675
|
+
.E_i1g85yz3 {
|
|
5676
|
+
margin-right: 4px;
|
|
5677
|
+
height: 16px;
|
|
5678
|
+
}
|
|
5679
|
+
|
|
5017
5680
|
.E_t1dtlqs1 {
|
|
5018
5681
|
margin-bottom: 4px;
|
|
5019
5682
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -5146,297 +5809,68 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5146
5809
|
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content > * {
|
|
5147
5810
|
text-align: right;
|
|
5148
5811
|
}
|
|
5149
|
-
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
5150
|
-
margin-right: 8px;
|
|
5151
|
-
}
|
|
5152
|
-
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
5153
|
-
padding: 4px;
|
|
5154
|
-
width: 24px;
|
|
5155
|
-
height: 24px;
|
|
5156
|
-
overflow: hidden;
|
|
5157
|
-
}
|
|
5158
|
-
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
5159
|
-
padding: 0;
|
|
5160
|
-
}
|
|
5161
|
-
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
5162
|
-
cursor: not-allowed;
|
|
5163
|
-
opacity: 0.5;
|
|
5164
|
-
}
|
|
5165
|
-
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
5166
|
-
margin: 0;
|
|
5167
|
-
}
|
|
5168
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
5169
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
5170
|
-
border-radius: 5px;
|
|
5171
|
-
font-size: 12px;
|
|
5172
|
-
}
|
|
5173
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
5174
|
-
font-size: inherit;
|
|
5175
|
-
}
|
|
5176
|
-
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
5177
|
-
min-height: 24px;
|
|
5178
|
-
font-size: 12px;
|
|
5179
|
-
position: relative;
|
|
5180
|
-
}
|
|
5181
|
-
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
5182
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
5183
|
-
}
|
|
5184
|
-
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
5185
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
5186
|
-
}
|
|
5187
|
-
|
|
5188
|
-
.E_a138syjm {
|
|
5189
|
-
display: flex;
|
|
5190
|
-
align-items: center;
|
|
5191
|
-
margin-top: 8px;
|
|
5192
|
-
gap: 8px;
|
|
5193
|
-
}
|
|
5194
|
-
.E_a138syjm button.ant-btn {
|
|
5195
|
-
padding: 2px 8px;
|
|
5196
|
-
height: 24px;
|
|
5197
|
-
}
|
|
5198
|
-
.E_a138syjm > span.maximum-desc {
|
|
5199
|
-
display: none;
|
|
5200
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5201
|
-
}
|
|
5202
|
-
.E_a138syjm > span.maximum-desc.disabled {
|
|
5203
|
-
display: inline;
|
|
5204
|
-
}
|
|
5205
|
-
|
|
5206
|
-
.E_d77i8u0 {
|
|
5207
|
-
width: 24px;
|
|
5208
|
-
height: 24px;
|
|
5209
|
-
padding: 4px;
|
|
5210
|
-
margin-right: 8px;
|
|
5211
|
-
}
|
|
5212
|
-
|
|
5213
|
-
.E_sjob3jg {
|
|
5214
|
-
--item-min-width: 60px;
|
|
5215
|
-
}
|
|
5216
|
-
.E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
|
|
5217
|
-
display: none !important;
|
|
5218
|
-
}
|
|
5219
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-active {
|
|
5220
|
-
flex-shrink: 0 !important;
|
|
5221
|
-
}
|
|
5222
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
5223
|
-
color: #0080ff;
|
|
5224
|
-
}
|
|
5225
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
5226
|
-
color: #0080ff;
|
|
5227
|
-
font-weight: normal;
|
|
5228
|
-
}
|
|
5229
|
-
.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 {
|
|
5230
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5231
|
-
}
|
|
5232
|
-
.E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
5233
|
-
color: #00122e;
|
|
5234
|
-
}
|
|
5235
|
-
.E_sjob3jg .step-item-text {
|
|
5236
|
-
display: inline-block;
|
|
5237
|
-
}
|
|
5238
|
-
.E_sjob3jg .step-item-title {
|
|
5239
|
-
overflow: hidden;
|
|
5240
|
-
white-space: nowrap;
|
|
5241
|
-
text-overflow: ellipsis;
|
|
5242
|
-
}
|
|
5243
|
-
|
|
5244
|
-
.E_hjvj6s6 .ant-steps-item-container {
|
|
5245
|
-
min-width: var(--item-min-width);
|
|
5246
|
-
}
|
|
5247
|
-
.E_hjvj6s6 .ant-steps-item-disabled {
|
|
5248
|
-
cursor: not-allowed !important;
|
|
5249
|
-
}
|
|
5250
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
5251
|
-
flex-direction: row;
|
|
5252
|
-
justify-content: stretch;
|
|
5253
|
-
}
|
|
5254
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
5255
|
-
padding: 0;
|
|
5256
|
-
margin-right: 4px;
|
|
5257
|
-
flex: 1;
|
|
5258
|
-
overflow: visible;
|
|
5259
|
-
}
|
|
5260
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
5261
|
-
width: 100%;
|
|
5262
|
-
min-height: unset;
|
|
5263
|
-
}
|
|
5264
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
5265
|
-
height: 26px;
|
|
5266
|
-
line-height: 26px;
|
|
5267
|
-
width: 100%;
|
|
5268
|
-
padding: 0;
|
|
5269
|
-
font-size: 12px;
|
|
5270
|
-
}
|
|
5271
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
5272
|
-
margin-right: 10px;
|
|
5273
|
-
}
|
|
5274
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
5275
|
-
display: none;
|
|
5276
|
-
}
|
|
5277
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
5278
|
-
padding-left: 8px;
|
|
5279
|
-
padding-right: 4px;
|
|
5280
|
-
border-radius: 4px 0 0 4px;
|
|
5281
|
-
}
|
|
5282
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
5283
|
-
margin-right: 0;
|
|
5284
|
-
}
|
|
5285
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
5286
|
-
padding-right: 8px;
|
|
5287
|
-
padding-left: 12px;
|
|
5288
|
-
border-radius: 0 4px 4px 0;
|
|
5289
|
-
}
|
|
5290
|
-
.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 {
|
|
5291
|
-
content: "";
|
|
5292
|
-
width: 0;
|
|
5293
|
-
height: 0;
|
|
5294
|
-
border: 13px solid transparent;
|
|
5295
|
-
position: absolute;
|
|
5296
|
-
top: 0;
|
|
5297
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
5298
|
-
z-index: 2;
|
|
5299
|
-
position: relative;
|
|
5300
|
-
top: -50%;
|
|
5301
|
-
right: -100%;
|
|
5302
|
-
}
|
|
5303
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
5304
|
-
padding: 0 4px 0 12px;
|
|
5305
|
-
}
|
|
5306
|
-
.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 {
|
|
5307
|
-
content: "";
|
|
5308
|
-
width: 0;
|
|
5309
|
-
height: 0;
|
|
5310
|
-
border: 13px solid transparent;
|
|
5311
|
-
position: absolute;
|
|
5312
|
-
top: 0;
|
|
5313
|
-
border-left: 8px solid #fff;
|
|
5314
|
-
left: 0;
|
|
5315
|
-
}
|
|
5316
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
5317
|
-
max-width: calc(100% - var(--item-min-width) * 2);
|
|
5318
|
-
}
|
|
5319
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
5320
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
5321
|
-
}
|
|
5322
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
5323
|
-
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
5324
|
-
}
|
|
5325
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
5326
|
-
cursor: pointer;
|
|
5327
|
-
min-width: var(--item-min-width);
|
|
5328
|
-
}
|
|
5329
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
5330
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
5331
|
-
min-width: var(--item-min-width);
|
|
5332
|
-
}
|
|
5333
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
5334
|
-
.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
5335
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
5336
|
-
}
|
|
5337
|
-
.E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
5338
|
-
padding: 0;
|
|
5339
|
-
}
|
|
5340
|
-
|
|
5341
|
-
.E_v4tv3mf .ant-steps.ant-steps-vertical {
|
|
5342
|
-
width: 192px;
|
|
5343
|
-
row-gap: 2px;
|
|
5812
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
5813
|
+
margin-right: 8px;
|
|
5344
5814
|
}
|
|
5345
|
-
.
|
|
5346
|
-
|
|
5815
|
+
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
5816
|
+
padding: 4px;
|
|
5817
|
+
width: 24px;
|
|
5818
|
+
height: 24px;
|
|
5819
|
+
overflow: hidden;
|
|
5347
5820
|
}
|
|
5348
|
-
.
|
|
5349
|
-
|
|
5821
|
+
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
5822
|
+
padding: 0;
|
|
5350
5823
|
}
|
|
5351
|
-
.
|
|
5352
|
-
|
|
5824
|
+
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
5825
|
+
cursor: not-allowed;
|
|
5826
|
+
opacity: 0.5;
|
|
5353
5827
|
}
|
|
5354
|
-
.
|
|
5355
|
-
|
|
5356
|
-
border-radius: 4px;
|
|
5357
|
-
height: 32px;
|
|
5358
|
-
display: flex;
|
|
5359
|
-
align-items: center;
|
|
5828
|
+
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
5829
|
+
margin: 0;
|
|
5360
5830
|
}
|
|
5361
|
-
.
|
|
5362
|
-
|
|
5363
|
-
|
|
5831
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
5832
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
5833
|
+
border-radius: 5px;
|
|
5834
|
+
font-size: 12px;
|
|
5364
5835
|
}
|
|
5365
|
-
.
|
|
5366
|
-
font-size:
|
|
5367
|
-
line-height: 20px;
|
|
5368
|
-
max-width: 100%;
|
|
5369
|
-
padding-right: 0;
|
|
5836
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
5837
|
+
font-size: inherit;
|
|
5370
5838
|
}
|
|
5371
|
-
.
|
|
5372
|
-
|
|
5839
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
5840
|
+
min-height: 24px;
|
|
5841
|
+
font-size: 12px;
|
|
5842
|
+
position: relative;
|
|
5373
5843
|
}
|
|
5374
|
-
|
|
5375
|
-
.
|
|
5376
|
-
width: 100%;
|
|
5377
|
-
display: inline-flex;
|
|
5378
|
-
align-items: center;
|
|
5379
|
-
justify-content: center;
|
|
5380
|
-
column-gap: 4px;
|
|
5844
|
+
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
5845
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
5381
5846
|
}
|
|
5382
|
-
.
|
|
5383
|
-
|
|
5384
|
-
align-items: center;
|
|
5385
|
-
width: 18px;
|
|
5386
|
-
height: 18px;
|
|
5387
|
-
color: rgba(44, 56, 82, 0.75);
|
|
5388
|
-
justify-content: center;
|
|
5847
|
+
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
5848
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
5389
5849
|
}
|
|
5390
5850
|
|
|
5391
|
-
.
|
|
5392
|
-
width: 100%;
|
|
5851
|
+
.E_a138syjm {
|
|
5393
5852
|
display: flex;
|
|
5394
5853
|
align-items: center;
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
font-size: 13px;
|
|
5398
|
-
}
|
|
5399
|
-
.E_v18frne8 .step-item-prefix-container {
|
|
5400
|
-
display: inline-flex;
|
|
5401
|
-
align-items: center;
|
|
5402
|
-
min-width: 20px;
|
|
5403
|
-
min-height: 20px;
|
|
5404
|
-
color: rgba(44, 56, 82, 0.75);
|
|
5405
|
-
justify-content: center;
|
|
5406
|
-
}
|
|
5407
|
-
|
|
5408
|
-
.E_i1g85yz3 {
|
|
5409
|
-
margin-right: 4px;
|
|
5410
|
-
height: 16px;
|
|
5411
|
-
}
|
|
5412
|
-
|
|
5413
|
-
.E_slr2ynn {
|
|
5414
|
-
padding: 0 8px;
|
|
5415
|
-
height: 18px;
|
|
5854
|
+
margin-top: 8px;
|
|
5855
|
+
gap: 8px;
|
|
5416
5856
|
}
|
|
5417
|
-
|
|
5418
|
-
.E_m140wbb6 {
|
|
5857
|
+
.E_a138syjm button.ant-btn {
|
|
5419
5858
|
padding: 2px 8px;
|
|
5420
5859
|
height: 24px;
|
|
5421
5860
|
}
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
|
|
5861
|
+
.E_a138syjm > span.maximum-desc {
|
|
5862
|
+
display: none;
|
|
5863
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5425
5864
|
}
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
margin-right: 4px;
|
|
5429
|
-
height: 16px;
|
|
5865
|
+
.E_a138syjm > span.maximum-desc.disabled {
|
|
5866
|
+
display: inline;
|
|
5430
5867
|
}
|
|
5431
5868
|
|
|
5432
|
-
.
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
word-break: break-all;
|
|
5438
|
-
display: inline;
|
|
5439
|
-
white-space: normal;
|
|
5869
|
+
.E_d77i8u0 {
|
|
5870
|
+
width: 24px;
|
|
5871
|
+
height: 24px;
|
|
5872
|
+
padding: 4px;
|
|
5873
|
+
margin-right: 8px;
|
|
5440
5874
|
}
|
|
5441
5875
|
|
|
5442
5876
|
.E_t13ef470 {
|
|
@@ -5469,93 +5903,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5469
5903
|
background: rgba(163, 180, 204, 0.18);
|
|
5470
5904
|
}
|
|
5471
5905
|
|
|
5472
|
-
.E_l1ucdodl {
|
|
5473
|
-
margin: 0;
|
|
5474
|
-
border-radius: 20px;
|
|
5475
|
-
padding: 2px 10px;
|
|
5476
|
-
height: 22px;
|
|
5477
|
-
display: flex;
|
|
5478
|
-
align-items: center;
|
|
5479
|
-
}
|
|
5480
|
-
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
5481
|
-
color: #FFFFFF;
|
|
5482
|
-
}
|
|
5483
|
-
.E_l1ucdodl.tag-hover {
|
|
5484
|
-
cursor: pointer;
|
|
5485
|
-
}
|
|
5486
|
-
.E_l1ucdodl.ui-kit-status-legend {
|
|
5487
|
-
color: #00122e;
|
|
5488
|
-
}
|
|
5489
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
5490
|
-
margin-right: 6px;
|
|
5491
|
-
}
|
|
5492
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
5493
|
-
margin-left: 8px;
|
|
5494
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5495
|
-
}
|
|
5496
|
-
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
5497
|
-
color: #FFFFFF;
|
|
5498
|
-
}
|
|
5499
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
5500
|
-
background-color: #0080ff;
|
|
5501
|
-
}
|
|
5502
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
5503
|
-
background-color: #f0483e;
|
|
5504
|
-
}
|
|
5505
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
5506
|
-
background-color: #fea008;
|
|
5507
|
-
}
|
|
5508
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
5509
|
-
background-color: #00ba5d;
|
|
5510
|
-
}
|
|
5511
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5512
|
-
background-color: #6b7d99;
|
|
5513
|
-
}
|
|
5514
|
-
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5515
|
-
background-color: #7E41FF;
|
|
5516
|
-
}
|
|
5517
|
-
|
|
5518
|
-
.E_s1qj66nc {
|
|
5519
|
-
width: 8px;
|
|
5520
|
-
height: 8px;
|
|
5521
|
-
border-radius: 50%;
|
|
5522
|
-
display: inline-block;
|
|
5523
|
-
}
|
|
5524
|
-
|
|
5525
|
-
.E_s5x1boq {
|
|
5526
|
-
width: 8px;
|
|
5527
|
-
height: 8px;
|
|
5528
|
-
border-radius: 2px;
|
|
5529
|
-
display: inline-block;
|
|
5530
|
-
}
|
|
5531
|
-
|
|
5532
|
-
.E_c1xm185 {
|
|
5533
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5534
|
-
}
|
|
5535
|
-
|
|
5536
|
-
.E_c1x5l5qc {
|
|
5537
|
-
flex: 1;
|
|
5538
|
-
}
|
|
5539
|
-
|
|
5540
|
-
.E_r77hffu {
|
|
5541
|
-
display: flex;
|
|
5542
|
-
align-items: center;
|
|
5543
|
-
justify-content: space-between;
|
|
5544
|
-
column-gap: 6px;
|
|
5545
|
-
}
|
|
5546
|
-
|
|
5547
|
-
.E_p1cmxsf7 {
|
|
5548
|
-
display: flex;
|
|
5549
|
-
flex-direction: column;
|
|
5550
|
-
justify-content: center;
|
|
5551
|
-
row-gap: var(--p1cmxsf7-0);
|
|
5552
|
-
}
|
|
5553
|
-
.E_p1cmxsf7 .antd5-progress-line {
|
|
5554
|
-
font-size: 0;
|
|
5555
|
-
margin-bottom: unset;
|
|
5556
|
-
margin-inline-end: unset;
|
|
5557
|
-
}
|
|
5558
|
-
|
|
5559
5906
|
.E_msn7nxt {
|
|
5560
5907
|
color: rgba(44, 56, 82, 0.6);
|
|
5561
5908
|
text-align: center;
|
|
@@ -5958,63 +6305,16 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5958
6305
|
.E_wujsnt4 {
|
|
5959
6306
|
background-color: #E07F00;
|
|
5960
6307
|
}
|
|
5961
|
-
|
|
5962
|
-
.E_b1jaupqb {
|
|
5963
|
-
color: #F0483E;
|
|
5964
|
-
}
|
|
5965
|
-
|
|
5966
|
-
.E_t59qhqp {
|
|
5967
|
-
padding: 0px;
|
|
5968
|
-
padding-top: 5px;
|
|
5969
|
-
padding-left: 5px;
|
|
5970
|
-
}
|
|
5971
|
-
.E_t59qhqp .ant-timeline-item {
|
|
5972
|
-
margin-bottom: 16px;
|
|
5973
|
-
padding-bottom: 0px;
|
|
5974
|
-
}
|
|
5975
|
-
.E_t59qhqp .ant-timeline-item-last,
|
|
5976
|
-
.E_t59qhqp .compact.ant-timeline-item-last {
|
|
5977
|
-
margin-bottom: 0;
|
|
5978
|
-
}
|
|
5979
|
-
.E_t59qhqp .compact.ant-timeline-item {
|
|
5980
|
-
margin-bottom: 12px;
|
|
5981
|
-
}
|
|
5982
|
-
.E_t59qhqp .info-action {
|
|
5983
|
-
align-self: baseline;
|
|
5984
|
-
}
|
|
5985
|
-
|
|
5986
|
-
.E_t2e44lg .ant-timeline-item-content {
|
|
5987
|
-
margin-left: 18px;
|
|
5988
|
-
}
|
|
5989
|
-
.E_t2e44lg .item-time {
|
|
5990
|
-
display: flex;
|
|
5991
|
-
flex-direction: column;
|
|
5992
|
-
gap: 4px;
|
|
5993
|
-
margin-top: 4px;
|
|
5994
|
-
}
|
|
5995
|
-
.E_t2e44lg:last-child .ant-timeline-item-content {
|
|
5996
|
-
padding-bottom: 0;
|
|
5997
|
-
}
|
|
5998
|
-
|
|
5999
|
-
.E_e14ua30y {
|
|
6000
|
-
display: flex;
|
|
6001
|
-
flex-direction: column;
|
|
6002
|
-
align-items: center;
|
|
6003
|
-
justify-content: center;
|
|
6004
|
-
}
|
|
6005
|
-
|
|
6006
|
-
.E_s1ikqzph {
|
|
6007
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
6008
|
-
}
|
|
6009
|
-
|
|
6010
|
-
.E_i15astnl {
|
|
6011
|
-
color: #00122E;
|
|
6308
|
+
|
|
6309
|
+
.E_b1jaupqb {
|
|
6310
|
+
color: #F0483E;
|
|
6012
6311
|
}
|
|
6013
6312
|
|
|
6014
6313
|
.E_icab5o7 {
|
|
6015
6314
|
--modal-to-viewport-margin: 10px;
|
|
6016
6315
|
--modal-body-padding-bottom: 40px;
|
|
6017
6316
|
--modal-footer-height: 124px;
|
|
6317
|
+
--modal-empty-footer-height: 40px;
|
|
6018
6318
|
}
|
|
6019
6319
|
.E_icab5o7.ant-modal {
|
|
6020
6320
|
height: calc(100% - var(--modal-to-viewport-margin) * 2);
|
|
@@ -6074,6 +6374,18 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6074
6374
|
height: var(--modal-footer-height);
|
|
6075
6375
|
padding: 24px 0 60px 0;
|
|
6076
6376
|
}
|
|
6377
|
+
.E_icab5o7.ant-modal.no-footer .ant-modal-body {
|
|
6378
|
+
padding-bottom: 0;
|
|
6379
|
+
}
|
|
6380
|
+
.E_icab5o7.ant-modal.no-footer .ant-modal-body .middle {
|
|
6381
|
+
padding-bottom: 0;
|
|
6382
|
+
}
|
|
6383
|
+
.E_icab5o7.ant-modal.no-footer .ant-modal-footer {
|
|
6384
|
+
padding: 0;
|
|
6385
|
+
border-top: none;
|
|
6386
|
+
height: var(--modal-empty-footer-height);
|
|
6387
|
+
content: "";
|
|
6388
|
+
}
|
|
6077
6389
|
|
|
6078
6390
|
.E_msiso3p.ant-modal .ant-modal-header {
|
|
6079
6391
|
padding: 60px 0 40px 0;
|
|
@@ -6195,6 +6507,54 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6195
6507
|
font-weight: bold;
|
|
6196
6508
|
}
|
|
6197
6509
|
|
|
6510
|
+
.E_t59qhqp {
|
|
6511
|
+
padding: 0px;
|
|
6512
|
+
padding-top: 5px;
|
|
6513
|
+
padding-left: 5px;
|
|
6514
|
+
}
|
|
6515
|
+
.E_t59qhqp .ant-timeline-item {
|
|
6516
|
+
margin-bottom: 16px;
|
|
6517
|
+
padding-bottom: 0px;
|
|
6518
|
+
}
|
|
6519
|
+
.E_t59qhqp .ant-timeline-item-last,
|
|
6520
|
+
.E_t59qhqp .compact.ant-timeline-item-last {
|
|
6521
|
+
margin-bottom: 0;
|
|
6522
|
+
}
|
|
6523
|
+
.E_t59qhqp .compact.ant-timeline-item {
|
|
6524
|
+
margin-bottom: 12px;
|
|
6525
|
+
}
|
|
6526
|
+
.E_t59qhqp .info-action {
|
|
6527
|
+
align-self: baseline;
|
|
6528
|
+
}
|
|
6529
|
+
|
|
6530
|
+
.E_t2e44lg .ant-timeline-item-content {
|
|
6531
|
+
margin-left: 18px;
|
|
6532
|
+
}
|
|
6533
|
+
.E_t2e44lg .item-time {
|
|
6534
|
+
display: flex;
|
|
6535
|
+
flex-direction: column;
|
|
6536
|
+
gap: 4px;
|
|
6537
|
+
margin-top: 4px;
|
|
6538
|
+
}
|
|
6539
|
+
.E_t2e44lg:last-child .ant-timeline-item-content {
|
|
6540
|
+
padding-bottom: 0;
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6543
|
+
.E_e14ua30y {
|
|
6544
|
+
display: flex;
|
|
6545
|
+
flex-direction: column;
|
|
6546
|
+
align-items: center;
|
|
6547
|
+
justify-content: center;
|
|
6548
|
+
}
|
|
6549
|
+
|
|
6550
|
+
.E_s1ikqzph {
|
|
6551
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
6552
|
+
}
|
|
6553
|
+
|
|
6554
|
+
.E_i15astnl {
|
|
6555
|
+
color: #00122E;
|
|
6556
|
+
}
|
|
6557
|
+
|
|
6198
6558
|
.E_s20iney.skeleton-box {
|
|
6199
6559
|
display: flex;
|
|
6200
6560
|
align-items: center;
|
|
@@ -6224,18 +6584,53 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6224
6584
|
}
|
|
6225
6585
|
}
|
|
6226
6586
|
|
|
6587
|
+
.E_sqv6dmy {
|
|
6588
|
+
display: flex;
|
|
6589
|
+
justify-content: flex-end;
|
|
6590
|
+
}
|
|
6591
|
+
|
|
6592
|
+
.E_p1rm8wzb {
|
|
6593
|
+
margin-right: 8px;
|
|
6594
|
+
}
|
|
6595
|
+
|
|
6596
|
+
.E_sd7qcf4 {
|
|
6597
|
+
height: 100%;
|
|
6598
|
+
width: 100%;
|
|
6599
|
+
overflow: auto;
|
|
6600
|
+
}
|
|
6601
|
+
|
|
6602
|
+
.E_r1fxc9gq.right {
|
|
6603
|
+
overflow: auto;
|
|
6604
|
+
padding-right: 2px;
|
|
6605
|
+
width: 200px;
|
|
6606
|
+
height: fit-content;
|
|
6607
|
+
max-height: calc(100vh - var(--modal-to-viewport-margin) * 2 - var(--side-panel-margin-top) - var(--modal-body-padding-bottom) - var(--modal-footer-height));
|
|
6608
|
+
scrollbar-gutter: stable;
|
|
6609
|
+
}
|
|
6610
|
+
.E_r1fxc9gq.right::-webkit-scrollbar {
|
|
6611
|
+
width: 6px;
|
|
6612
|
+
}
|
|
6613
|
+
.E_r1fxc9gq.right::-webkit-scrollbar-track {
|
|
6614
|
+
background: rgba(225, 230, 241, 0.6);
|
|
6615
|
+
}
|
|
6616
|
+
.E_r1fxc9gq.right::-webkit-scrollbar-thumb {
|
|
6617
|
+
background: rgba(172, 186, 211, 0.6);
|
|
6618
|
+
border-radius: 8px;
|
|
6619
|
+
}
|
|
6620
|
+
|
|
6227
6621
|
.E_dxyv8bv {
|
|
6228
6622
|
--footer-height: 80px;
|
|
6229
6623
|
--modal-content-width: 492px;
|
|
6230
6624
|
--modal-content-min-height: 160px;
|
|
6231
6625
|
--modal-content-max-height: calc(
|
|
6232
|
-
100vh -
|
|
6626
|
+
100vh - 80px
|
|
6233
6627
|
);
|
|
6234
6628
|
--modal-header-padding: 32px 40px 0;
|
|
6235
6629
|
--modal-content-padding-top: 32px;
|
|
6236
6630
|
--modal-content-padding-bottom: 32px;
|
|
6237
6631
|
--modal-content-padding-x: 40px;
|
|
6238
6632
|
--modal-footer-padding: 0 40px;
|
|
6633
|
+
--modal-empty-footer-height: 32px;
|
|
6239
6634
|
padding-bottom: 0;
|
|
6240
6635
|
}
|
|
6241
6636
|
.E_dxyv8bv .ant-modal-content {
|
|
@@ -6298,6 +6693,14 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6298
6693
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
6299
6694
|
font-weight: 700;
|
|
6300
6695
|
}
|
|
6696
|
+
.E_dxyv8bv.no-footer .ant-modal-body {
|
|
6697
|
+
padding-bottom: 0;
|
|
6698
|
+
}
|
|
6699
|
+
.E_dxyv8bv.no-footer .ant-modal-footer {
|
|
6700
|
+
box-shadow: none;
|
|
6701
|
+
height: var(--modal-empty-footer-height);
|
|
6702
|
+
content: "";
|
|
6703
|
+
}
|
|
6301
6704
|
|
|
6302
6705
|
.E_fbgo4wr {
|
|
6303
6706
|
display: flex;
|
|
@@ -6352,40 +6755,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6352
6755
|
color: rgba(0, 21, 64, 0.3019607843);
|
|
6353
6756
|
}
|
|
6354
6757
|
|
|
6355
|
-
.E_sqv6dmy {
|
|
6356
|
-
display: flex;
|
|
6357
|
-
justify-content: flex-end;
|
|
6358
|
-
}
|
|
6359
|
-
|
|
6360
|
-
.E_p1rm8wzb {
|
|
6361
|
-
margin-right: 8px;
|
|
6362
|
-
}
|
|
6363
|
-
|
|
6364
|
-
.E_sd7qcf4 {
|
|
6365
|
-
height: 100%;
|
|
6366
|
-
width: 100%;
|
|
6367
|
-
overflow: auto;
|
|
6368
|
-
}
|
|
6369
|
-
|
|
6370
|
-
.E_r1fxc9gq.right {
|
|
6371
|
-
overflow: auto;
|
|
6372
|
-
padding-right: 2px;
|
|
6373
|
-
width: 200px;
|
|
6374
|
-
height: fit-content;
|
|
6375
|
-
max-height: calc(100vh - var(--modal-to-viewport-margin) * 2 - var(--side-panel-margin-top) - var(--modal-body-padding-bottom) - var(--modal-footer-height));
|
|
6376
|
-
scrollbar-gutter: stable;
|
|
6377
|
-
}
|
|
6378
|
-
.E_r1fxc9gq.right::-webkit-scrollbar {
|
|
6379
|
-
width: 6px;
|
|
6380
|
-
}
|
|
6381
|
-
.E_r1fxc9gq.right::-webkit-scrollbar-track {
|
|
6382
|
-
background: rgba(225, 230, 241, 0.6);
|
|
6383
|
-
}
|
|
6384
|
-
.E_r1fxc9gq.right::-webkit-scrollbar-thumb {
|
|
6385
|
-
background: rgba(172, 186, 211, 0.6);
|
|
6386
|
-
border-radius: 8px;
|
|
6387
|
-
}
|
|
6388
|
-
|
|
6389
6758
|
.E_t1g36k2w {
|
|
6390
6759
|
overflow: hidden;
|
|
6391
6760
|
height: 100%;
|
|
@@ -6415,25 +6784,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6415
6784
|
background: rgba(225, 230, 241, 0.6);
|
|
6416
6785
|
}
|
|
6417
6786
|
|
|
6418
|
-
.E_f16blduf.ant-form-item {
|
|
6419
|
-
margin-bottom: 0;
|
|
6420
|
-
}
|
|
6421
|
-
.E_f16blduf .ant-form-item-explain {
|
|
6422
|
-
display: none;
|
|
6423
|
-
min-height: 18px;
|
|
6424
|
-
margin-top: 5px;
|
|
6425
|
-
font-family: "Inter";
|
|
6426
|
-
font-weight: 400;
|
|
6427
|
-
font-size: 12px;
|
|
6428
|
-
line-height: 18px;
|
|
6429
|
-
}
|
|
6430
|
-
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
6431
|
-
white-space: pre-wrap;
|
|
6432
|
-
}
|
|
6433
|
-
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
6434
|
-
display: block;
|
|
6435
|
-
}
|
|
6436
|
-
|
|
6437
6787
|
.E_t1gvlxt5 {
|
|
6438
6788
|
min-width: 0;
|
|
6439
6789
|
flex: 1;
|
|
@@ -6461,173 +6811,88 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6461
6811
|
color: #fff;
|
|
6462
6812
|
}
|
|
6463
6813
|
|
|
6464
|
-
.
|
|
6465
|
-
margin-
|
|
6466
|
-
}
|
|
6467
|
-
|
|
6468
|
-
.E_a1njc627 {
|
|
6469
|
-
font-size: 12px;
|
|
6470
|
-
color: #00122e;
|
|
6471
|
-
}
|
|
6472
|
-
|
|
6473
|
-
.E_d1u4ndxc {
|
|
6474
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
6475
|
-
font-size: 12px;
|
|
6476
|
-
}
|
|
6477
|
-
|
|
6478
|
-
.E_f6xb0iv {
|
|
6479
|
-
min-width: 0;
|
|
6480
|
-
flex: 1;
|
|
6481
|
-
}
|
|
6482
|
-
|
|
6483
|
-
.E_b1dhu7ov.antd5-progress {
|
|
6484
|
-
width: 220px;
|
|
6485
|
-
}
|
|
6486
|
-
|
|
6487
|
-
.E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
|
|
6488
|
-
content: "";
|
|
6489
|
-
display: block;
|
|
6490
|
-
height: 8px;
|
|
6491
|
-
background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
|
|
6492
|
-
animation: loading 1600ms ease-out infinite;
|
|
6493
|
-
opacity: 1;
|
|
6494
|
-
}
|
|
6495
|
-
@keyframes loading {
|
|
6496
|
-
from {
|
|
6497
|
-
transform: translateX(-100%);
|
|
6498
|
-
}
|
|
6499
|
-
to {
|
|
6500
|
-
transform: translateX(100%);
|
|
6501
|
-
}
|
|
6502
|
-
}
|
|
6503
|
-
|
|
6504
|
-
.E_i14c7jc8 {
|
|
6505
|
-
color: var(--i14c7jc8-0);
|
|
6506
|
-
}
|
|
6507
|
-
|
|
6508
|
-
.E_i1ibuolf {
|
|
6509
|
-
display: flex;
|
|
6510
|
-
align-items: center;
|
|
6511
|
-
column-gap: 4px;
|
|
6512
|
-
font-size: 12px;
|
|
6513
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
6514
|
-
}
|
|
6515
|
-
|
|
6516
|
-
.E_ou7iq30 {
|
|
6517
|
-
overflow: hidden;
|
|
6518
|
-
text-overflow: ellipsis;
|
|
6519
|
-
}
|
|
6520
|
-
|
|
6521
|
-
.E_s1tui002 {
|
|
6522
|
-
white-space: nowrap;
|
|
6523
|
-
}
|
|
6524
|
-
|
|
6525
|
-
.E_mxrc2zg {
|
|
6526
|
-
display: -webkit-box;
|
|
6527
|
-
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
6528
|
-
-webkit-box-orient: vertical;
|
|
6529
|
-
word-break: break-all;
|
|
6814
|
+
.E_f16blduf.ant-form-item {
|
|
6815
|
+
margin-bottom: 0;
|
|
6530
6816
|
}
|
|
6531
|
-
|
|
6532
|
-
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
6817
|
+
.E_f16blduf .ant-form-item-explain {
|
|
6533
6818
|
display: none;
|
|
6819
|
+
min-height: 18px;
|
|
6820
|
+
margin-top: 5px;
|
|
6821
|
+
font-family: "Inter";
|
|
6822
|
+
font-weight: 400;
|
|
6823
|
+
font-size: 12px;
|
|
6824
|
+
line-height: 18px;
|
|
6534
6825
|
}
|
|
6535
|
-
.
|
|
6536
|
-
|
|
6537
|
-
border-radius: 4px;
|
|
6538
|
-
}
|
|
6539
|
-
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
6540
|
-
visibility: hidden;
|
|
6541
|
-
}
|
|
6542
|
-
|
|
6543
|
-
.E_t1sqg15u {
|
|
6544
|
-
background: white;
|
|
6545
|
-
}
|
|
6546
|
-
.E_t1sqg15u.inline .table-row {
|
|
6547
|
-
flex-direction: column;
|
|
6548
|
-
}
|
|
6549
|
-
.E_t1sqg15u.inline .table-row > label {
|
|
6550
|
-
padding: 0 16px 7px 0;
|
|
6551
|
-
}
|
|
6552
|
-
.E_t1sqg15u.has-border .table-header {
|
|
6553
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
6554
|
-
}
|
|
6555
|
-
.E_t1sqg15u.has-border .hiddenBorder {
|
|
6556
|
-
border-top: none !important;
|
|
6557
|
-
}
|
|
6558
|
-
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
6559
|
-
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
6560
|
-
}
|
|
6561
|
-
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
6562
|
-
padding-bottom: 0;
|
|
6563
|
-
}
|
|
6564
|
-
.E_t1sqg15u.align-right .content {
|
|
6565
|
-
text-align: right;
|
|
6566
|
-
}
|
|
6567
|
-
.E_t1sqg15u .uuid-row {
|
|
6568
|
-
display: flex;
|
|
6569
|
-
justify-content: space-between;
|
|
6826
|
+
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
6827
|
+
white-space: pre-wrap;
|
|
6570
6828
|
}
|
|
6571
|
-
.
|
|
6572
|
-
|
|
6573
|
-
overflow: hidden;
|
|
6574
|
-
text-overflow: ellipsis;
|
|
6829
|
+
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
6830
|
+
display: block;
|
|
6575
6831
|
}
|
|
6576
6832
|
|
|
6577
|
-
.
|
|
6578
|
-
|
|
6579
|
-
justify-content: space-between;
|
|
6580
|
-
align-items: center;
|
|
6581
|
-
padding: 8px;
|
|
6582
|
-
min-height: 32px;
|
|
6833
|
+
.E_a9y3flr {
|
|
6834
|
+
margin-left: 8px;
|
|
6583
6835
|
}
|
|
6584
|
-
|
|
6585
|
-
|
|
6586
|
-
font-weight: 600;
|
|
6836
|
+
|
|
6837
|
+
.E_a1njc627 {
|
|
6587
6838
|
font-size: 12px;
|
|
6588
|
-
|
|
6589
|
-
}
|
|
6590
|
-
.E_t4zczcp .edit-icon {
|
|
6591
|
-
font-size: 16px;
|
|
6592
|
-
color: rgba(10, 37, 85, 0.6);
|
|
6593
|
-
cursor: pointer;
|
|
6839
|
+
color: #00122e;
|
|
6594
6840
|
}
|
|
6595
6841
|
|
|
6596
|
-
.
|
|
6842
|
+
.E_d1u4ndxc {
|
|
6843
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
6597
6844
|
font-size: 12px;
|
|
6598
|
-
line-height: 18px;
|
|
6599
6845
|
}
|
|
6600
6846
|
|
|
6601
|
-
.
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
color: #2d3a56;
|
|
6847
|
+
.E_f6xb0iv {
|
|
6848
|
+
min-width: 0;
|
|
6849
|
+
flex: 1;
|
|
6605
6850
|
}
|
|
6606
|
-
|
|
6607
|
-
|
|
6851
|
+
|
|
6852
|
+
.E_b1dhu7ov.antd5-progress {
|
|
6853
|
+
width: 220px;
|
|
6608
6854
|
}
|
|
6609
|
-
|
|
6610
|
-
|
|
6855
|
+
|
|
6856
|
+
.E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
|
|
6857
|
+
content: "";
|
|
6858
|
+
display: block;
|
|
6859
|
+
height: 8px;
|
|
6860
|
+
background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
|
|
6861
|
+
animation: loading 1600ms ease-out infinite;
|
|
6862
|
+
opacity: 1;
|
|
6611
6863
|
}
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6864
|
+
@keyframes loading {
|
|
6865
|
+
from {
|
|
6866
|
+
transform: translateX(-100%);
|
|
6867
|
+
}
|
|
6868
|
+
to {
|
|
6869
|
+
transform: translateX(100%);
|
|
6870
|
+
}
|
|
6617
6871
|
}
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
|
|
6872
|
+
|
|
6873
|
+
.E_i14c7jc8 {
|
|
6874
|
+
color: var(--i14c7jc8-0);
|
|
6621
6875
|
}
|
|
6622
|
-
|
|
6623
|
-
|
|
6876
|
+
|
|
6877
|
+
.E_i1ibuolf {
|
|
6878
|
+
display: flex;
|
|
6879
|
+
align-items: center;
|
|
6880
|
+
column-gap: 4px;
|
|
6881
|
+
font-size: 12px;
|
|
6882
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
6624
6883
|
}
|
|
6625
6884
|
|
|
6626
|
-
.
|
|
6627
|
-
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
|
|
6885
|
+
.E_skwah65 {
|
|
6886
|
+
height: 8px;
|
|
6887
|
+
box-sizing: border-box;
|
|
6888
|
+
border-radius: 2px;
|
|
6889
|
+
background: #f5f7fa;
|
|
6890
|
+
display: flex;
|
|
6891
|
+
width: 100%;
|
|
6892
|
+
overflow: hidden;
|
|
6893
|
+
}
|
|
6894
|
+
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
6895
|
+
margin-left: 1px;
|
|
6631
6896
|
}
|
|
6632
6897
|
|
|
6633
6898
|
.E_c18bcrac {
|
|
@@ -6680,122 +6945,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6680
6945
|
margin-right: 4px;
|
|
6681
6946
|
}
|
|
6682
6947
|
|
|
6683
|
-
span.E_tqjc4ui {
|
|
6684
|
-
margin: 0 2px;
|
|
6685
|
-
}
|
|
6686
|
-
|
|
6687
|
-
.E_n12mqh7z {
|
|
6688
|
-
display: flex;
|
|
6689
|
-
align-items: center;
|
|
6690
|
-
font-size: 12px;
|
|
6691
|
-
line-height: 18px;
|
|
6692
|
-
}
|
|
6693
|
-
.E_n12mqh7z:not(:last-child) {
|
|
6694
|
-
margin-bottom: 4px;
|
|
6695
|
-
}
|
|
6696
|
-
|
|
6697
|
-
.E_tf5bynu {
|
|
6698
|
-
margin: 0 3px;
|
|
6699
|
-
}
|
|
6700
|
-
|
|
6701
|
-
.E_tcckoz1 {
|
|
6702
|
-
max-height: 400px;
|
|
6703
|
-
overflow: auto;
|
|
6704
|
-
}
|
|
6705
|
-
|
|
6706
|
-
.E_clm1wy1 {
|
|
6707
|
-
width: 192px;
|
|
6708
|
-
height: 246px;
|
|
6709
|
-
border-radius: 4px;
|
|
6710
|
-
}
|
|
6711
|
-
.E_clm1wy1 > .ant-picker-calendar,
|
|
6712
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
6713
|
-
width: 100%;
|
|
6714
|
-
background-color: rgba(245, 247, 250, 0.6);
|
|
6715
|
-
border-top: none;
|
|
6716
|
-
}
|
|
6717
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
6718
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
6719
|
-
padding: 0 16px;
|
|
6720
|
-
}
|
|
6721
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
6722
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
6723
|
-
width: 100%;
|
|
6724
|
-
height: 180px;
|
|
6725
|
-
border-spacing: 0;
|
|
6726
|
-
}
|
|
6727
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
6728
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
6729
|
-
margin-bottom: 8px;
|
|
6730
|
-
}
|
|
6731
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
6732
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
6733
|
-
width: 22px;
|
|
6734
|
-
}
|
|
6735
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
6736
|
-
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
6737
|
-
padding: 0;
|
|
6738
|
-
}
|
|
6739
|
-
.E_clm1wy1 .ant-picker-cell {
|
|
6740
|
-
color: rgba(62, 70, 82, 0.6);
|
|
6741
|
-
opacity: 0.4;
|
|
6742
|
-
}
|
|
6743
|
-
.E_clm1wy1 .ant-picker-cell-in-view {
|
|
6744
|
-
color: rgba(62, 70, 82, 0.6);
|
|
6745
|
-
opacity: 1;
|
|
6746
|
-
}
|
|
6747
|
-
.E_clm1wy1 .ant-picker-cell-in-view > .active {
|
|
6748
|
-
color: #3e4652;
|
|
6749
|
-
}
|
|
6750
|
-
.E_clm1wy1 .ant-picker-cell::before {
|
|
6751
|
-
pointer-events: none;
|
|
6752
|
-
}
|
|
6753
|
-
|
|
6754
|
-
.E_t1tsm00v {
|
|
6755
|
-
color: rgba(129, 138, 153, 0.6);
|
|
6756
|
-
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
6757
|
-
backdrop-filter: blur(10px);
|
|
6758
|
-
padding: 7px 10px;
|
|
6759
|
-
}
|
|
6760
|
-
|
|
6761
|
-
.E_c167wnad {
|
|
6762
|
-
color: rgba(62, 70, 82, 0.6);
|
|
6763
|
-
display: flex;
|
|
6764
|
-
justify-content: space-between;
|
|
6765
|
-
align-items: center;
|
|
6766
|
-
padding: 8px 16px;
|
|
6767
|
-
}
|
|
6768
|
-
.E_c167wnad .anticon {
|
|
6769
|
-
cursor: pointer;
|
|
6770
|
-
}
|
|
6771
|
-
.E_c167wnad .anticon:hover {
|
|
6772
|
-
color: #0096ff;
|
|
6773
|
-
}
|
|
6774
|
-
|
|
6775
|
-
.E_cxhf7dh {
|
|
6776
|
-
text-align: center;
|
|
6777
|
-
}
|
|
6778
|
-
.E_cxhf7dh .dots {
|
|
6779
|
-
display: flex;
|
|
6780
|
-
justify-content: center;
|
|
6781
|
-
}
|
|
6782
|
-
.E_cxhf7dh .dot {
|
|
6783
|
-
display: inline-block;
|
|
6784
|
-
width: 2px;
|
|
6785
|
-
height: 2px;
|
|
6786
|
-
border-radius: 1px;
|
|
6787
|
-
background: #0096ff;
|
|
6788
|
-
}
|
|
6789
|
-
.E_cxhf7dh .dot:not(:last-child) {
|
|
6790
|
-
margin-right: 2px;
|
|
6791
|
-
}
|
|
6792
|
-
.E_cxhf7dh .bar {
|
|
6793
|
-
width: 9px;
|
|
6794
|
-
height: 2px;
|
|
6795
|
-
background: #0096ff;
|
|
6796
|
-
border-radius: 2px;
|
|
6797
|
-
}
|
|
6798
|
-
|
|
6799
6948
|
.E_s1ebs0ra {
|
|
6800
6949
|
display: flex;
|
|
6801
6950
|
align-items: center;
|
|
@@ -6853,49 +7002,115 @@ span.E_tqjc4ui {
|
|
|
6853
7002
|
justify-content: center;
|
|
6854
7003
|
border-radius: 50%;
|
|
6855
7004
|
}
|
|
6856
|
-
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
6857
|
-
background: #fff;
|
|
7005
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
7006
|
+
background: #fff;
|
|
7007
|
+
}
|
|
7008
|
+
|
|
7009
|
+
.E_clm1wy1 {
|
|
7010
|
+
width: 192px;
|
|
7011
|
+
height: 246px;
|
|
7012
|
+
border-radius: 4px;
|
|
7013
|
+
}
|
|
7014
|
+
.E_clm1wy1 > .ant-picker-calendar,
|
|
7015
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
7016
|
+
width: 100%;
|
|
7017
|
+
background-color: rgba(245, 247, 250, 0.6);
|
|
7018
|
+
border-top: none;
|
|
7019
|
+
}
|
|
7020
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
7021
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
7022
|
+
padding: 0 16px;
|
|
7023
|
+
}
|
|
7024
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
7025
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
7026
|
+
width: 100%;
|
|
7027
|
+
height: 180px;
|
|
7028
|
+
border-spacing: 0;
|
|
7029
|
+
}
|
|
7030
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
7031
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
7032
|
+
margin-bottom: 8px;
|
|
7033
|
+
}
|
|
7034
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
7035
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
7036
|
+
width: 22px;
|
|
7037
|
+
}
|
|
7038
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
7039
|
+
.E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
7040
|
+
padding: 0;
|
|
7041
|
+
}
|
|
7042
|
+
.E_clm1wy1 .ant-picker-cell {
|
|
7043
|
+
color: rgba(62, 70, 82, 0.6);
|
|
7044
|
+
opacity: 0.4;
|
|
6858
7045
|
}
|
|
6859
|
-
|
|
6860
|
-
.
|
|
6861
|
-
|
|
7046
|
+
.E_clm1wy1 .ant-picker-cell-in-view {
|
|
7047
|
+
color: rgba(62, 70, 82, 0.6);
|
|
7048
|
+
opacity: 1;
|
|
6862
7049
|
}
|
|
6863
|
-
.
|
|
6864
|
-
color:
|
|
7050
|
+
.E_clm1wy1 .ant-picker-cell-in-view > .active {
|
|
7051
|
+
color: #3e4652;
|
|
6865
7052
|
}
|
|
6866
|
-
.
|
|
6867
|
-
|
|
7053
|
+
.E_clm1wy1 .ant-picker-cell::before {
|
|
7054
|
+
pointer-events: none;
|
|
6868
7055
|
}
|
|
6869
7056
|
|
|
6870
|
-
.
|
|
6871
|
-
|
|
6872
|
-
|
|
6873
|
-
|
|
6874
|
-
|
|
6875
|
-
margin-right: 8px;
|
|
7057
|
+
.E_t1tsm00v {
|
|
7058
|
+
color: rgba(129, 138, 153, 0.6);
|
|
7059
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
7060
|
+
backdrop-filter: blur(10px);
|
|
7061
|
+
padding: 7px 10px;
|
|
6876
7062
|
}
|
|
6877
7063
|
|
|
6878
|
-
.
|
|
7064
|
+
.E_c167wnad {
|
|
7065
|
+
color: rgba(62, 70, 82, 0.6);
|
|
6879
7066
|
display: flex;
|
|
7067
|
+
justify-content: space-between;
|
|
6880
7068
|
align-items: center;
|
|
6881
|
-
|
|
7069
|
+
padding: 8px 16px;
|
|
7070
|
+
}
|
|
7071
|
+
.E_c167wnad .anticon {
|
|
7072
|
+
cursor: pointer;
|
|
7073
|
+
}
|
|
7074
|
+
.E_c167wnad .anticon:hover {
|
|
7075
|
+
color: #0096ff;
|
|
6882
7076
|
}
|
|
6883
7077
|
|
|
6884
|
-
.
|
|
7078
|
+
.E_cxhf7dh {
|
|
7079
|
+
text-align: center;
|
|
7080
|
+
}
|
|
7081
|
+
.E_cxhf7dh .dots {
|
|
6885
7082
|
display: flex;
|
|
6886
|
-
|
|
6887
|
-
width: calc(100% - 40px);
|
|
7083
|
+
justify-content: center;
|
|
6888
7084
|
}
|
|
6889
|
-
.
|
|
7085
|
+
.E_cxhf7dh .dot {
|
|
6890
7086
|
display: inline-block;
|
|
6891
|
-
width:
|
|
7087
|
+
width: 2px;
|
|
7088
|
+
height: 2px;
|
|
7089
|
+
border-radius: 1px;
|
|
7090
|
+
background: #0096ff;
|
|
7091
|
+
}
|
|
7092
|
+
.E_cxhf7dh .dot:not(:last-child) {
|
|
7093
|
+
margin-right: 2px;
|
|
7094
|
+
}
|
|
7095
|
+
.E_cxhf7dh .bar {
|
|
7096
|
+
width: 9px;
|
|
7097
|
+
height: 2px;
|
|
7098
|
+
background: #0096ff;
|
|
7099
|
+
border-radius: 2px;
|
|
6892
7100
|
}
|
|
6893
7101
|
|
|
6894
|
-
.
|
|
6895
|
-
|
|
7102
|
+
span.E_tqjc4ui {
|
|
7103
|
+
margin: 0 2px;
|
|
6896
7104
|
}
|
|
6897
|
-
|
|
6898
|
-
|
|
7105
|
+
|
|
7106
|
+
.E_gmyahx3 {
|
|
7107
|
+
cursor: pointer;
|
|
7108
|
+
}
|
|
7109
|
+
.E_gmyahx3 .link-text {
|
|
7110
|
+
color: rgba(0, 21, 64, 0.3);
|
|
7111
|
+
}
|
|
7112
|
+
.E_gmyahx3:hover .link-text {
|
|
7113
|
+
color: #0080ff;
|
|
6899
7114
|
}
|
|
6900
7115
|
|
|
6901
7116
|
.E_c1up1pdz {
|
|
@@ -6986,69 +7201,231 @@ span.E_tqjc4ui {
|
|
|
6986
7201
|
color: rgba(62, 70, 82, 0.6);
|
|
6987
7202
|
border-radius: 4px;
|
|
6988
7203
|
}
|
|
6989
|
-
.E_m126spxy .ant-btn.ant-btn-link.active {
|
|
6990
|
-
background: rgba(0, 128, 255, 0.1);
|
|
6991
|
-
color: #0096ff;
|
|
7204
|
+
.E_m126spxy .ant-btn.ant-btn-link.active {
|
|
7205
|
+
background: rgba(0, 128, 255, 0.1);
|
|
7206
|
+
color: #0096ff;
|
|
7207
|
+
}
|
|
7208
|
+
|
|
7209
|
+
.E_wpbf4pq {
|
|
7210
|
+
padding: 10px 0;
|
|
7211
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
7212
|
+
}
|
|
7213
|
+
.E_wpbf4pq .ant-input,
|
|
7214
|
+
.E_wpbf4pq .ant-picker {
|
|
7215
|
+
width: 80px;
|
|
7216
|
+
margin: 0 9px;
|
|
7217
|
+
text-align: center;
|
|
7218
|
+
}
|
|
7219
|
+
.E_wpbf4pq .options {
|
|
7220
|
+
padding: 12px 0 12px 16px;
|
|
7221
|
+
border-left: 2px solid rgba(129, 138, 153, 0.6);
|
|
7222
|
+
margin: 5px 0 5px 8px;
|
|
7223
|
+
}
|
|
7224
|
+
.E_wpbf4pq .week-day-option,
|
|
7225
|
+
.E_wpbf4pq .month-day-option {
|
|
7226
|
+
background: #f5f7fa;
|
|
7227
|
+
box-sizing: border-box;
|
|
7228
|
+
border-radius: 16px;
|
|
7229
|
+
margin-right: 8px;
|
|
7230
|
+
}
|
|
7231
|
+
.E_wpbf4pq .week-day-option:focus,
|
|
7232
|
+
.E_wpbf4pq .month-day-option:focus {
|
|
7233
|
+
color: inherit;
|
|
7234
|
+
border-color: #d9d9d9;
|
|
7235
|
+
}
|
|
7236
|
+
.E_wpbf4pq .week-day-option.active {
|
|
7237
|
+
background-color: #0096ff;
|
|
7238
|
+
border-color: #0096ff;
|
|
7239
|
+
color: #fff;
|
|
7240
|
+
}
|
|
7241
|
+
.E_wpbf4pq .week-day-option.en-text {
|
|
7242
|
+
width: 110px;
|
|
7243
|
+
margin-top: 4px;
|
|
7244
|
+
}
|
|
7245
|
+
.E_wpbf4pq .month-day-option {
|
|
7246
|
+
width: 32px;
|
|
7247
|
+
padding: 0;
|
|
7248
|
+
margin-bottom: 8px;
|
|
7249
|
+
}
|
|
7250
|
+
.E_wpbf4pq .month-day-option.active {
|
|
7251
|
+
background-color: #0096ff;
|
|
7252
|
+
border-color: #0096ff;
|
|
7253
|
+
color: #fff;
|
|
7254
|
+
}
|
|
7255
|
+
|
|
7256
|
+
.E_n12mqh7z {
|
|
7257
|
+
display: flex;
|
|
7258
|
+
align-items: center;
|
|
7259
|
+
font-size: 12px;
|
|
7260
|
+
line-height: 18px;
|
|
7261
|
+
}
|
|
7262
|
+
.E_n12mqh7z:not(:last-child) {
|
|
7263
|
+
margin-bottom: 4px;
|
|
7264
|
+
}
|
|
7265
|
+
|
|
7266
|
+
.E_tf5bynu {
|
|
7267
|
+
margin: 0 3px;
|
|
7268
|
+
}
|
|
7269
|
+
|
|
7270
|
+
.E_tcckoz1 {
|
|
7271
|
+
max-height: 400px;
|
|
7272
|
+
overflow: auto;
|
|
7273
|
+
}
|
|
7274
|
+
|
|
7275
|
+
.E_wg1tsps {
|
|
7276
|
+
display: flex;
|
|
7277
|
+
align-items: center;
|
|
7278
|
+
justify-content: flex-end;
|
|
7279
|
+
}
|
|
7280
|
+
|
|
7281
|
+
.E_b1ctd5xy {
|
|
7282
|
+
display: flex;
|
|
7283
|
+
align-items: center;
|
|
7284
|
+
width: calc(100% - 40px);
|
|
7285
|
+
}
|
|
7286
|
+
.E_b1ctd5xy .chart {
|
|
7287
|
+
display: inline-block;
|
|
7288
|
+
width: 100%;
|
|
7289
|
+
}
|
|
7290
|
+
|
|
7291
|
+
.E_u1p8acpn {
|
|
7292
|
+
min-width: 40px;
|
|
7293
|
+
}
|
|
7294
|
+
.E_u1p8acpn .unit {
|
|
7295
|
+
color: #00122e !important;
|
|
7296
|
+
}
|
|
7297
|
+
|
|
7298
|
+
.E_t1sqg15u {
|
|
7299
|
+
background: white;
|
|
7300
|
+
}
|
|
7301
|
+
.E_t1sqg15u.inline .table-row {
|
|
7302
|
+
flex-direction: column;
|
|
7303
|
+
}
|
|
7304
|
+
.E_t1sqg15u.inline .table-row > label {
|
|
7305
|
+
padding: 0 16px 7px 0;
|
|
7306
|
+
}
|
|
7307
|
+
.E_t1sqg15u.has-border .table-header {
|
|
7308
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
7309
|
+
}
|
|
7310
|
+
.E_t1sqg15u.has-border .hiddenBorder {
|
|
7311
|
+
border-top: none !important;
|
|
7312
|
+
}
|
|
7313
|
+
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
7314
|
+
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
7315
|
+
}
|
|
7316
|
+
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
7317
|
+
padding-bottom: 0;
|
|
7318
|
+
}
|
|
7319
|
+
.E_t1sqg15u.align-right .content {
|
|
7320
|
+
text-align: right;
|
|
7321
|
+
}
|
|
7322
|
+
.E_t1sqg15u .uuid-row {
|
|
7323
|
+
display: flex;
|
|
7324
|
+
justify-content: space-between;
|
|
7325
|
+
}
|
|
7326
|
+
.E_t1sqg15u .uuid-row .id-text {
|
|
7327
|
+
white-space: nowrap;
|
|
7328
|
+
overflow: hidden;
|
|
7329
|
+
text-overflow: ellipsis;
|
|
7330
|
+
}
|
|
7331
|
+
|
|
7332
|
+
.E_t4zczcp {
|
|
7333
|
+
display: flex;
|
|
7334
|
+
justify-content: space-between;
|
|
7335
|
+
align-items: center;
|
|
7336
|
+
padding: 8px;
|
|
7337
|
+
min-height: 32px;
|
|
7338
|
+
}
|
|
7339
|
+
.E_t4zczcp .table-title {
|
|
7340
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7341
|
+
font-weight: 600;
|
|
7342
|
+
font-size: 12px;
|
|
7343
|
+
line-height: 8px;
|
|
7344
|
+
}
|
|
7345
|
+
.E_t4zczcp .edit-icon {
|
|
7346
|
+
font-size: 16px;
|
|
7347
|
+
color: rgba(10, 37, 85, 0.6);
|
|
7348
|
+
cursor: pointer;
|
|
7349
|
+
}
|
|
7350
|
+
|
|
7351
|
+
.E_t1s7goww {
|
|
7352
|
+
font-size: 12px;
|
|
7353
|
+
line-height: 18px;
|
|
7354
|
+
}
|
|
7355
|
+
|
|
7356
|
+
.E_t93e4cf {
|
|
7357
|
+
display: flex;
|
|
7358
|
+
padding: 8px 0;
|
|
7359
|
+
color: #2d3a56;
|
|
7360
|
+
}
|
|
7361
|
+
.E_t93e4cf .hidden {
|
|
7362
|
+
display: none;
|
|
7363
|
+
}
|
|
7364
|
+
.E_t93e4cf .ant-btn.ant-btn-link {
|
|
7365
|
+
height: auto;
|
|
7366
|
+
}
|
|
7367
|
+
.E_t93e4cf .content {
|
|
7368
|
+
overflow: hidden;
|
|
7369
|
+
overflow-x: auto;
|
|
7370
|
+
width: 100%;
|
|
7371
|
+
white-space: pre-wrap;
|
|
7372
|
+
}
|
|
7373
|
+
.E_t93e4cf .content .ant-btn {
|
|
7374
|
+
white-space: pre-wrap;
|
|
7375
|
+
text-align: left;
|
|
7376
|
+
}
|
|
7377
|
+
.E_t93e4cf .content .unit-chart {
|
|
7378
|
+
justify-content: flex-start;
|
|
7379
|
+
}
|
|
7380
|
+
|
|
7381
|
+
.E_rhz2uv5 {
|
|
7382
|
+
width: var(--rhz2uv5-0);
|
|
7383
|
+
flex-shrink: 0;
|
|
7384
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7385
|
+
padding-right: 12px;
|
|
6992
7386
|
}
|
|
6993
7387
|
|
|
6994
|
-
.
|
|
6995
|
-
|
|
6996
|
-
|
|
7388
|
+
.E_ou7iq30 {
|
|
7389
|
+
overflow: hidden;
|
|
7390
|
+
text-overflow: ellipsis;
|
|
6997
7391
|
}
|
|
6998
|
-
|
|
6999
|
-
.
|
|
7000
|
-
|
|
7001
|
-
margin: 0 9px;
|
|
7002
|
-
text-align: center;
|
|
7392
|
+
|
|
7393
|
+
.E_s1tui002 {
|
|
7394
|
+
white-space: nowrap;
|
|
7003
7395
|
}
|
|
7004
|
-
|
|
7005
|
-
|
|
7006
|
-
|
|
7007
|
-
|
|
7396
|
+
|
|
7397
|
+
.E_mxrc2zg {
|
|
7398
|
+
display: -webkit-box;
|
|
7399
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
7400
|
+
-webkit-box-orient: vertical;
|
|
7401
|
+
word-break: break-all;
|
|
7008
7402
|
}
|
|
7009
|
-
|
|
7010
|
-
.
|
|
7011
|
-
|
|
7012
|
-
box-sizing: border-box;
|
|
7013
|
-
border-radius: 16px;
|
|
7014
|
-
margin-right: 8px;
|
|
7403
|
+
|
|
7404
|
+
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
7405
|
+
display: none;
|
|
7015
7406
|
}
|
|
7016
|
-
.
|
|
7017
|
-
|
|
7018
|
-
|
|
7019
|
-
border-color: #d9d9d9;
|
|
7407
|
+
.E_t1vv6d68 .ant-tooltip-inner {
|
|
7408
|
+
background: rgba(23, 38, 64, 0.8);
|
|
7409
|
+
border-radius: 4px;
|
|
7020
7410
|
}
|
|
7021
|
-
.
|
|
7022
|
-
|
|
7023
|
-
border-color: #0096ff;
|
|
7024
|
-
color: #fff;
|
|
7411
|
+
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
7412
|
+
visibility: hidden;
|
|
7025
7413
|
}
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
|
|
7414
|
+
|
|
7415
|
+
.E_u15heuvq.content {
|
|
7416
|
+
cursor: default !important;
|
|
7029
7417
|
}
|
|
7030
|
-
.
|
|
7031
|
-
|
|
7032
|
-
padding: 0;
|
|
7033
|
-
margin-bottom: 8px;
|
|
7418
|
+
.E_u15heuvq.content.link {
|
|
7419
|
+
cursor: pointer !important;
|
|
7034
7420
|
}
|
|
7035
|
-
.
|
|
7036
|
-
|
|
7037
|
-
border-color: #0096ff;
|
|
7038
|
-
color: #fff;
|
|
7421
|
+
.E_u15heuvq.content.link:hover {
|
|
7422
|
+
color: #0080ff;
|
|
7039
7423
|
}
|
|
7040
|
-
|
|
7041
|
-
|
|
7042
|
-
height: 8px;
|
|
7043
|
-
box-sizing: border-box;
|
|
7044
|
-
border-radius: 2px;
|
|
7045
|
-
background: #f5f7fa;
|
|
7046
|
-
display: flex;
|
|
7047
|
-
width: 100%;
|
|
7048
|
-
overflow: hidden;
|
|
7424
|
+
.E_u15heuvq.content.black {
|
|
7425
|
+
color: #00122e;
|
|
7049
7426
|
}
|
|
7050
|
-
.
|
|
7051
|
-
|
|
7427
|
+
.E_u15heuvq.content.gray {
|
|
7428
|
+
color: rgba(44, 56, 82, 0.75);
|
|
7052
7429
|
}
|
|
7053
7430
|
|
|
7054
7431
|
.E_s1at6qmn.ant-layout-sider {
|
|
@@ -7164,20 +7541,12 @@ span.E_tqjc4ui {
|
|
|
7164
7541
|
text-align: left;
|
|
7165
7542
|
}
|
|
7166
7543
|
|
|
7167
|
-
.
|
|
7168
|
-
|
|
7169
|
-
|
|
7170
|
-
.E_u15heuvq.content.link {
|
|
7171
|
-
cursor: pointer !important;
|
|
7172
|
-
}
|
|
7173
|
-
.E_u15heuvq.content.link:hover {
|
|
7174
|
-
color: #0080ff;
|
|
7175
|
-
}
|
|
7176
|
-
.E_u15heuvq.content.black {
|
|
7177
|
-
color: #00122e;
|
|
7544
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
7545
|
+
display: flex;
|
|
7546
|
+
align-items: center;
|
|
7178
7547
|
}
|
|
7179
|
-
.
|
|
7180
|
-
|
|
7548
|
+
.E_s1iv0tp1 .enabled-text {
|
|
7549
|
+
margin-right: 8px;
|
|
7181
7550
|
}
|
|
7182
7551
|
|
|
7183
7552
|
.E_t160l1cm {
|
|
@@ -7444,6 +7813,12 @@ span.E_tqjc4ui {
|
|
|
7444
7813
|
justify-content: center;
|
|
7445
7814
|
}
|
|
7446
7815
|
|
|
7816
|
+
.E_h1ol2wl7 {
|
|
7817
|
+
font-weight: bold;
|
|
7818
|
+
background-color: unset;
|
|
7819
|
+
padding: unset;
|
|
7820
|
+
}
|
|
7821
|
+
|
|
7447
7822
|
.E_kr6am0s .ant-modal-body {
|
|
7448
7823
|
padding: 60px 128px;
|
|
7449
7824
|
}
|
|
@@ -7548,10 +7923,28 @@ span.E_tqjc4ui {
|
|
|
7548
7923
|
color: rgba(0, 21, 64, 0.3);
|
|
7549
7924
|
}
|
|
7550
7925
|
|
|
7551
|
-
.
|
|
7552
|
-
|
|
7553
|
-
|
|
7554
|
-
|
|
7926
|
+
.E_l12xdkhl {
|
|
7927
|
+
width: 64px;
|
|
7928
|
+
height: 64px;
|
|
7929
|
+
max-width: 64px;
|
|
7930
|
+
max-height: 64px;
|
|
7931
|
+
overflow: hidden;
|
|
7932
|
+
display: flex;
|
|
7933
|
+
align-items: center;
|
|
7934
|
+
justify-content: center;
|
|
7935
|
+
position: relative;
|
|
7936
|
+
opacity: 0.6;
|
|
7937
|
+
}
|
|
7938
|
+
.E_l12xdkhl .icon-wrapper {
|
|
7939
|
+
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
7940
|
+
}
|
|
7941
|
+
@keyframes rotate {
|
|
7942
|
+
from {
|
|
7943
|
+
transform: rotate(0deg);
|
|
7944
|
+
}
|
|
7945
|
+
to {
|
|
7946
|
+
transform: rotate(360deg);
|
|
7947
|
+
}
|
|
7555
7948
|
}
|
|
7556
7949
|
|
|
7557
7950
|
.E_cevhqx7 {
|
|
@@ -7563,57 +7956,6 @@ span.E_tqjc4ui {
|
|
|
7563
7956
|
color: rgba(44, 56, 82, 0.6);
|
|
7564
7957
|
}
|
|
7565
7958
|
|
|
7566
|
-
.E_c1ss4prm {
|
|
7567
|
-
color: rgba(44, 56, 82, 0.6);
|
|
7568
|
-
}
|
|
7569
|
-
.E_c1ss4prm:is(ul, ol) {
|
|
7570
|
-
padding-inline-start: 12px;
|
|
7571
|
-
}
|
|
7572
|
-
.E_c1ss4prm li {
|
|
7573
|
-
margin-bottom: 4px;
|
|
7574
|
-
}
|
|
7575
|
-
.E_c1ss4prm li:last-child {
|
|
7576
|
-
margin-bottom: 0;
|
|
7577
|
-
}
|
|
7578
|
-
|
|
7579
|
-
.E_ms3tlei {
|
|
7580
|
-
background: rgba(225, 230, 241, 0.6);
|
|
7581
|
-
padding: 8px;
|
|
7582
|
-
border-radius: 6px;
|
|
7583
|
-
color: rgba(44, 56, 82, 0.6);
|
|
7584
|
-
}
|
|
7585
|
-
.E_ms3tlei .icon-wrapper {
|
|
7586
|
-
margin-top: 1px;
|
|
7587
|
-
margin-right: 4px;
|
|
7588
|
-
}
|
|
7589
|
-
.E_ms3tlei li {
|
|
7590
|
-
margin-bottom: 4px;
|
|
7591
|
-
display: flex;
|
|
7592
|
-
align-items: flex-start;
|
|
7593
|
-
}
|
|
7594
|
-
.E_ms3tlei li:last-child {
|
|
7595
|
-
margin-bottom: 0;
|
|
7596
|
-
}
|
|
7597
|
-
|
|
7598
|
-
.E_du44iy7 {
|
|
7599
|
-
margin-bottom: 4px;
|
|
7600
|
-
}
|
|
7601
|
-
|
|
7602
|
-
.E_p1qmhanr {
|
|
7603
|
-
margin-bottom: 8px;
|
|
7604
|
-
}
|
|
7605
|
-
|
|
7606
|
-
.E_srje1h0 {
|
|
7607
|
-
color: rgba(44, 56, 82, 0.6);
|
|
7608
|
-
margin-bottom: 8px;
|
|
7609
|
-
}
|
|
7610
|
-
|
|
7611
|
-
.E_di3zi7v {
|
|
7612
|
-
height: 1px;
|
|
7613
|
-
background: #e4e9f2;
|
|
7614
|
-
margin: 16px 0;
|
|
7615
|
-
}
|
|
7616
|
-
|
|
7617
7959
|
.E_c14ouk5o {
|
|
7618
7960
|
width: 100%;
|
|
7619
7961
|
height: 100%;
|
|
@@ -8150,26 +8492,53 @@ span.E_tqjc4ui {
|
|
|
8150
8492
|
padding: 0;
|
|
8151
8493
|
}
|
|
8152
8494
|
|
|
8153
|
-
.
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8495
|
+
.E_c1ss4prm {
|
|
8496
|
+
color: rgba(44, 56, 82, 0.6);
|
|
8497
|
+
}
|
|
8498
|
+
.E_c1ss4prm:is(ul, ol) {
|
|
8499
|
+
padding-inline-start: 12px;
|
|
8500
|
+
}
|
|
8501
|
+
.E_c1ss4prm li {
|
|
8502
|
+
margin-bottom: 4px;
|
|
8503
|
+
}
|
|
8504
|
+
.E_c1ss4prm li:last-child {
|
|
8505
|
+
margin-bottom: 0;
|
|
8506
|
+
}
|
|
8507
|
+
|
|
8508
|
+
.E_ms3tlei {
|
|
8509
|
+
background: rgba(225, 230, 241, 0.6);
|
|
8510
|
+
padding: 8px;
|
|
8511
|
+
border-radius: 6px;
|
|
8512
|
+
color: rgba(44, 56, 82, 0.6);
|
|
8513
|
+
}
|
|
8514
|
+
.E_ms3tlei .icon-wrapper {
|
|
8515
|
+
margin-top: 1px;
|
|
8516
|
+
margin-right: 4px;
|
|
8517
|
+
}
|
|
8518
|
+
.E_ms3tlei li {
|
|
8519
|
+
margin-bottom: 4px;
|
|
8159
8520
|
display: flex;
|
|
8160
|
-
align-items:
|
|
8161
|
-
justify-content: center;
|
|
8162
|
-
position: relative;
|
|
8163
|
-
opacity: 0.6;
|
|
8521
|
+
align-items: flex-start;
|
|
8164
8522
|
}
|
|
8165
|
-
.
|
|
8166
|
-
|
|
8523
|
+
.E_ms3tlei li:last-child {
|
|
8524
|
+
margin-bottom: 0;
|
|
8167
8525
|
}
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
|
|
8174
|
-
|
|
8526
|
+
|
|
8527
|
+
.E_du44iy7 {
|
|
8528
|
+
margin-bottom: 4px;
|
|
8529
|
+
}
|
|
8530
|
+
|
|
8531
|
+
.E_p1qmhanr {
|
|
8532
|
+
margin-bottom: 8px;
|
|
8533
|
+
}
|
|
8534
|
+
|
|
8535
|
+
.E_srje1h0 {
|
|
8536
|
+
color: rgba(44, 56, 82, 0.6);
|
|
8537
|
+
margin-bottom: 8px;
|
|
8538
|
+
}
|
|
8539
|
+
|
|
8540
|
+
.E_di3zi7v {
|
|
8541
|
+
height: 1px;
|
|
8542
|
+
background: #e4e9f2;
|
|
8543
|
+
margin: 16px 0;
|
|
8175
8544
|
}
|