@cloudtower/eagle 481.0.2 → 490.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/core/Duration/index.js +78 -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/TableForm/AddRowButton.js +2 -1
- package/dist/cjs/core/TableForm/index.js +1 -0
- package/dist/cjs/core/index.js +15 -12
- package/dist/cjs/coreX/Copy/CopyButton.js +40 -0
- package/dist/cjs/coreX/Copy/CopyTooltip.js +66 -0
- package/dist/cjs/coreX/Dialogs/RejectDialog/RejectDialog.js +16 -4
- package/dist/cjs/hooks/useFormatDuration.js +35 -0
- package/dist/cjs/index.js +253 -245
- package/dist/cjs/stats1.html +1 -1
- package/dist/cjs/utils/formatDuration.js +67 -0
- package/dist/components.css +1899 -1722
- package/dist/esm/core/Duration/index.js +72 -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/TableForm/AddRowButton.js +2 -1
- package/dist/esm/core/TableForm/index.js +1 -0
- package/dist/esm/core/index.js +4 -2
- package/dist/esm/coreX/Copy/CopyButton.js +34 -0
- package/dist/esm/coreX/Copy/CopyTooltip.js +59 -0
- package/dist/esm/coreX/Dialogs/RejectDialog/RejectDialog.js +16 -4
- package/dist/esm/hooks/useFormatDuration.js +33 -0
- package/dist/esm/index.js +4 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/utils/formatDuration.js +65 -0
- package/dist/linaria.merged.scss +2144 -1955
- package/dist/src/core/Duration/duration.type.d.ts +42 -0
- package/dist/src/core/Duration/index.d.ts +4 -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/TableForm/types.d.ts +1 -0
- package/dist/src/core/index.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyButton.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyButton.type.d.ts +8 -0
- package/dist/src/coreX/Copy/CopyTooltip.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyTooltip.typs.d.ts +16 -0
- package/dist/src/coreX/Copy/index.d.ts +2 -0
- package/dist/src/coreX/Dialogs/RejectDialog/RejectDialog.type.d.ts +5 -1
- package/dist/src/coreX/index.d.ts +3 -0
- package/dist/src/hooks/__tests__/useFormatDuration.test.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +1 -0
- package/dist/src/hooks/useFormatDuration.d.ts +31 -0
- package/dist/src/utils/__test__/formatDuration.spec.d.ts +1 -0
- package/dist/src/utils/formatDuration.d.ts +28 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/stories/docs/core/Duration.stories.d.ts +88 -0
- package/dist/stories/docs/core/LocalUpload.stories.d.ts +74 -0
- package/dist/stories/docs/coreX/Copy/CopyButton.stories.d.ts +66 -0
- package/dist/stories/docs/coreX/Copy/CopyTooltip.stories.d.ts +66 -0
- package/dist/stories/docs/coreX/Dialogs/RejectDialog.stories.d.ts +3 -1
- package/dist/style.css +1899 -1722
- package/package.json +6 -4
package/dist/components.css
CHANGED
|
@@ -1172,6 +1172,57 @@ html body {
|
|
|
1172
1172
|
flex: 1;
|
|
1173
1173
|
}
|
|
1174
1174
|
|
|
1175
|
+
.E_berrcjl {
|
|
1176
|
+
color: rgba(10, 37, 85, 0.6);
|
|
1177
|
+
margin-bottom: 4px;
|
|
1178
|
+
}
|
|
1179
|
+
.E_berrcjl .breadcrumb-link {
|
|
1180
|
+
color: rgba(10, 37, 85, 0.6);
|
|
1181
|
+
cursor: pointer;
|
|
1182
|
+
transition: color 160ms ease;
|
|
1183
|
+
}
|
|
1184
|
+
.E_berrcjl .breadcrumb-link:hover {
|
|
1185
|
+
color: #0080ff;
|
|
1186
|
+
}
|
|
1187
|
+
.E_berrcjl .breadcrumb-link:active {
|
|
1188
|
+
color: #005ed1;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.E_c1uzzomf {
|
|
1192
|
+
margin-bottom: 16px;
|
|
1193
|
+
}
|
|
1194
|
+
.E_c1uzzomf .card-title {
|
|
1195
|
+
font-size: 16px;
|
|
1196
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1197
|
+
font-weight: 700;
|
|
1198
|
+
line-height: 32px;
|
|
1199
|
+
}
|
|
1200
|
+
.E_c1uzzomf .card-body {
|
|
1201
|
+
padding: 24px;
|
|
1202
|
+
border-radius: 8px;
|
|
1203
|
+
background: #fff;
|
|
1204
|
+
}
|
|
1205
|
+
.E_c1uzzomf .empty {
|
|
1206
|
+
font-weight: 700;
|
|
1207
|
+
font-size: 14px;
|
|
1208
|
+
line-height: 22px;
|
|
1209
|
+
color: rgba(0, 21, 64, 0.3);
|
|
1210
|
+
text-align: center;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
1214
|
+
padding: 4px 8px 0 8px;
|
|
1215
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1216
|
+
font-size: 12px;
|
|
1217
|
+
}
|
|
1218
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
1219
|
+
padding-bottom: 6px;
|
|
1220
|
+
}
|
|
1221
|
+
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
1222
|
+
padding-top: 4px;
|
|
1223
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1175
1226
|
.E_b1nip9bk {
|
|
1176
1227
|
padding: 4px 11px;
|
|
1177
1228
|
}
|
|
@@ -1201,22 +1252,6 @@ html body {
|
|
|
1201
1252
|
border-radius: unset;
|
|
1202
1253
|
}
|
|
1203
1254
|
|
|
1204
|
-
.E_berrcjl {
|
|
1205
|
-
color: rgba(10, 37, 85, 0.6);
|
|
1206
|
-
margin-bottom: 4px;
|
|
1207
|
-
}
|
|
1208
|
-
.E_berrcjl .breadcrumb-link {
|
|
1209
|
-
color: rgba(10, 37, 85, 0.6);
|
|
1210
|
-
cursor: pointer;
|
|
1211
|
-
transition: color 160ms ease;
|
|
1212
|
-
}
|
|
1213
|
-
.E_berrcjl .breadcrumb-link:hover {
|
|
1214
|
-
color: #0080ff;
|
|
1215
|
-
}
|
|
1216
|
-
.E_berrcjl .breadcrumb-link:active {
|
|
1217
|
-
color: #005ed1;
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
1255
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
1221
1256
|
justify-content: center;
|
|
1222
1257
|
}
|
|
@@ -1474,48 +1509,6 @@ html body {
|
|
|
1474
1509
|
justify-content: center;
|
|
1475
1510
|
}
|
|
1476
1511
|
|
|
1477
|
-
.E_c1uzzomf {
|
|
1478
|
-
margin-bottom: 16px;
|
|
1479
|
-
}
|
|
1480
|
-
.E_c1uzzomf .card-title {
|
|
1481
|
-
font-size: 16px;
|
|
1482
|
-
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
|
-
}
|
|
1498
|
-
|
|
1499
|
-
.E_c1yyuluq {
|
|
1500
|
-
border-radius: 8px;
|
|
1501
|
-
}
|
|
1502
|
-
.E_c1yyuluq .ant-card-body {
|
|
1503
|
-
padding: 20px 24px 24px 24px;
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
1507
|
-
padding: 4px 8px 0 8px;
|
|
1508
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1509
|
-
font-size: 12px;
|
|
1510
|
-
}
|
|
1511
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
|
|
1512
|
-
padding-bottom: 6px;
|
|
1513
|
-
}
|
|
1514
|
-
.E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
|
|
1515
|
-
padding-top: 4px;
|
|
1516
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
1512
|
.E_ccrbeuz .ant-collapse-item {
|
|
1520
1513
|
border: 0px;
|
|
1521
1514
|
background-color: #fff;
|
|
@@ -1538,20 +1531,11 @@ html body {
|
|
|
1538
1531
|
cursor: default;
|
|
1539
1532
|
}
|
|
1540
1533
|
|
|
1541
|
-
.
|
|
1542
|
-
|
|
1543
|
-
}
|
|
1544
|
-
|
|
1545
|
-
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
1546
|
-
display: flex;
|
|
1547
|
-
}
|
|
1548
|
-
.E_itxley7.ant-input-group.ant-input-group-compact > *:first-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
|
|
1549
|
-
border-bottom-left-radius: 5px;
|
|
1550
|
-
border-top-left-radius: 5px;
|
|
1534
|
+
.E_c1yyuluq {
|
|
1535
|
+
border-radius: 8px;
|
|
1551
1536
|
}
|
|
1552
|
-
.
|
|
1553
|
-
|
|
1554
|
-
border-top-right-radius: 5px;
|
|
1537
|
+
.E_c1yyuluq .ant-card-body {
|
|
1538
|
+
padding: 20px 24px 24px 24px;
|
|
1555
1539
|
}
|
|
1556
1540
|
|
|
1557
1541
|
.E_d1bw7c5z {
|
|
@@ -1637,93 +1621,22 @@ html body {
|
|
|
1637
1621
|
width: 102px;
|
|
1638
1622
|
}
|
|
1639
1623
|
|
|
1640
|
-
.
|
|
1641
|
-
display: flex;
|
|
1642
|
-
justify-content: space-between;
|
|
1643
|
-
align-items: center;
|
|
1644
|
-
padding: 10px 0;
|
|
1645
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1646
|
-
font-size: 12px;
|
|
1647
|
-
line-height: 24px;
|
|
1648
|
-
}
|
|
1649
|
-
.E_phljevk .pagination-left {
|
|
1650
|
-
padding: 2px 8px;
|
|
1651
|
-
}
|
|
1652
|
-
.E_phljevk .dropdown-trigger {
|
|
1653
|
-
display: flex;
|
|
1654
|
-
align-items: center;
|
|
1655
|
-
border-radius: 6px;
|
|
1656
|
-
cursor: pointer;
|
|
1657
|
-
transition: all 0.3s ease;
|
|
1658
|
-
}
|
|
1659
|
-
.E_phljevk .dropdown-trigger:hover {
|
|
1660
|
-
background: rgba(211, 218, 235, 0.6);
|
|
1661
|
-
color: #0080ff;
|
|
1662
|
-
}
|
|
1663
|
-
.E_phljevk .dropdown-trigger .icon-inner {
|
|
1664
|
-
margin-left: 4px;
|
|
1665
|
-
}
|
|
1666
|
-
.E_phljevk .pagination-right {
|
|
1624
|
+
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
1667
1625
|
display: flex;
|
|
1668
|
-
align-items: center;
|
|
1669
|
-
color: #0080ff;
|
|
1670
|
-
font-weight: bold;
|
|
1671
|
-
}
|
|
1672
|
-
.E_phljevk .pagination-right .icon-inner {
|
|
1673
|
-
margin-left: 4px;
|
|
1674
1626
|
}
|
|
1675
|
-
.
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
}
|
|
1679
|
-
.E_phljevk .pagination-right .prev-btn > span,
|
|
1680
|
-
.E_phljevk .pagination-right .next-btn > span {
|
|
1681
|
-
color: #0080ff;
|
|
1627
|
+
.E_itxley7.ant-input-group.ant-input-group-compact > *:first-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
|
|
1628
|
+
border-bottom-left-radius: 5px;
|
|
1629
|
+
border-top-left-radius: 5px;
|
|
1682
1630
|
}
|
|
1683
|
-
.
|
|
1684
|
-
|
|
1631
|
+
.E_itxley7.ant-input-group.ant-input-group-compact > *:last-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input {
|
|
1632
|
+
border-bottom-right-radius: 5px;
|
|
1633
|
+
border-top-right-radius: 5px;
|
|
1685
1634
|
}
|
|
1686
1635
|
|
|
1687
|
-
.
|
|
1688
|
-
max-height: calc(100vh - 128px);
|
|
1689
|
-
overflow-y: auto;
|
|
1690
|
-
}
|
|
1691
|
-
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
1692
|
-
padding: 4px 20px;
|
|
1693
|
-
font-size: 12px;
|
|
1636
|
+
.E_sx1bpnu .ant-input-sm {
|
|
1694
1637
|
line-height: 18px;
|
|
1695
1638
|
}
|
|
1696
1639
|
|
|
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
|
-
.E_tju3gfj .date {
|
|
1724
|
-
margin-right: 4px;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
1640
|
.E_c1bus5hc {
|
|
1728
1641
|
--color: white;
|
|
1729
1642
|
height: 14px;
|
|
@@ -1764,170 +1677,24 @@ html body {
|
|
|
1764
1677
|
transform: rotate(0deg);
|
|
1765
1678
|
}
|
|
1766
1679
|
|
|
1767
|
-
.
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
.E_d1wwmmm5 .ant-select-item-group {
|
|
1772
|
-
padding: 8px 16px;
|
|
1773
|
-
line-height: 18px;
|
|
1774
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
1775
|
-
height: 34px;
|
|
1776
|
-
min-height: 34px;
|
|
1777
|
-
box-sizing: border-box;
|
|
1778
|
-
margin-top: 8px;
|
|
1779
|
-
}
|
|
1780
|
-
|
|
1781
|
-
.E_o1ugr09p {
|
|
1782
|
-
display: flex;
|
|
1783
|
-
flex-direction: column;
|
|
1784
|
-
margin: 1px 8px;
|
|
1785
|
-
padding: 8px;
|
|
1786
|
-
border-radius: 4px;
|
|
1680
|
+
.E_rapgekc.ant-radio-wrapper {
|
|
1681
|
+
display: inline-flex;
|
|
1682
|
+
align-items: baseline;
|
|
1683
|
+
white-space: pre-wrap;
|
|
1787
1684
|
}
|
|
1788
|
-
.
|
|
1789
|
-
|
|
1685
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio {
|
|
1686
|
+
position: relative;
|
|
1687
|
+
top: 3px;
|
|
1790
1688
|
}
|
|
1791
|
-
.
|
|
1792
|
-
|
|
1689
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
1690
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
1793
1691
|
}
|
|
1794
|
-
.
|
|
1795
|
-
|
|
1692
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
1693
|
+
border-color: #0080ff;
|
|
1796
1694
|
}
|
|
1797
|
-
.
|
|
1798
|
-
color: #0080ff;
|
|
1799
|
-
|
|
1800
|
-
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
1801
|
-
display: block;
|
|
1802
|
-
}
|
|
1803
|
-
.E_o1ugr09p.ant-select-item-option-active {
|
|
1804
|
-
background: rgba(0, 136, 255, 0.16);
|
|
1805
|
-
}
|
|
1806
|
-
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
1807
|
-
color: #0080ff;
|
|
1808
|
-
}
|
|
1809
|
-
.E_o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
1810
|
-
background: rgba(0, 136, 255, 0.1);
|
|
1811
|
-
color: #0080ff;
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
.E_o1ifxsq4 {
|
|
1815
|
-
display: flex;
|
|
1816
|
-
justify-content: space-between;
|
|
1817
|
-
height: 20px;
|
|
1818
|
-
line-height: 20px;
|
|
1819
|
-
}
|
|
1820
|
-
.E_o1ifxsq4 .timezone-title {
|
|
1821
|
-
color: #2d3a56;
|
|
1822
|
-
overflow: hidden;
|
|
1823
|
-
text-overflow: ellipsis;
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
.E_o1zue7 {
|
|
1827
|
-
display: flex;
|
|
1828
|
-
justify-content: space-between;
|
|
1829
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1830
|
-
height: 18px;
|
|
1831
|
-
line-height: 18px;
|
|
1832
|
-
margin-top: 2px;
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
.E_tyfmlxg {
|
|
1836
|
-
border: none;
|
|
1837
|
-
margin-right: 0;
|
|
1838
|
-
background: rgba(225, 230, 241, 0.6);
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
.E_o18uybox {
|
|
1842
|
-
pointer-events: none;
|
|
1843
|
-
height: 32px;
|
|
1844
|
-
width: 100%;
|
|
1845
|
-
opacity: 0;
|
|
1846
|
-
}
|
|
1847
|
-
|
|
1848
|
-
.E_ivqqkzv {
|
|
1849
|
-
height: 24px;
|
|
1850
|
-
width: 56px !important;
|
|
1851
|
-
margin-right: 4px;
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
|
-
.E_c1wk4q29 {
|
|
1855
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1856
|
-
}
|
|
1857
|
-
|
|
1858
|
-
.E_s1dizucg.ant-switch {
|
|
1859
|
-
min-width: 40px;
|
|
1860
|
-
height: 24px;
|
|
1861
|
-
background: rgba(172, 186, 211, 0.6);
|
|
1862
|
-
overflow: hidden;
|
|
1863
|
-
}
|
|
1864
|
-
.E_s1dizucg.ant-switch:focus {
|
|
1865
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
1866
|
-
}
|
|
1867
|
-
.E_s1dizucg.ant-switch-small {
|
|
1868
|
-
min-width: 26px;
|
|
1869
|
-
height: 16px;
|
|
1870
|
-
}
|
|
1871
|
-
.E_s1dizucg.ant-switch-large {
|
|
1872
|
-
min-width: 52px;
|
|
1873
|
-
height: 32px;
|
|
1874
|
-
}
|
|
1875
|
-
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
1876
|
-
height: 20px;
|
|
1877
|
-
width: 20px;
|
|
1878
|
-
}
|
|
1879
|
-
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
1880
|
-
border-radius: 10px;
|
|
1881
|
-
transition-delay: 120ms;
|
|
1882
|
-
}
|
|
1883
|
-
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
1884
|
-
height: 14px;
|
|
1885
|
-
width: 14px;
|
|
1886
|
-
top: 1px;
|
|
1887
|
-
left: 1px;
|
|
1888
|
-
}
|
|
1889
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
1890
|
-
height: 28px;
|
|
1891
|
-
width: 28px;
|
|
1892
|
-
}
|
|
1893
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
1894
|
-
border-radius: 14px;
|
|
1895
|
-
}
|
|
1896
|
-
.E_s1dizucg.ant-switch-checked {
|
|
1897
|
-
background-color: #00ba5d;
|
|
1898
|
-
}
|
|
1899
|
-
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
1900
|
-
left: calc(100% - 20px - 2px);
|
|
1901
|
-
}
|
|
1902
|
-
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
1903
|
-
left: calc(100% - 14px - 1px);
|
|
1904
|
-
}
|
|
1905
|
-
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
1906
|
-
left: calc(100% - 28px - 2px);
|
|
1907
|
-
}
|
|
1908
|
-
|
|
1909
|
-
.E_c1up6e3y {
|
|
1910
|
-
margin-left: 5px;
|
|
1911
|
-
}
|
|
1912
|
-
|
|
1913
|
-
.E_rapgekc.ant-radio-wrapper {
|
|
1914
|
-
display: inline-flex;
|
|
1915
|
-
align-items: baseline;
|
|
1916
|
-
white-space: pre-wrap;
|
|
1917
|
-
}
|
|
1918
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio {
|
|
1919
|
-
position: relative;
|
|
1920
|
-
top: 3px;
|
|
1921
|
-
}
|
|
1922
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
1923
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
1924
|
-
}
|
|
1925
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
1926
|
-
border-color: #0080ff;
|
|
1927
|
-
}
|
|
1928
|
-
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
1929
|
-
border-color: #0080ff;
|
|
1930
|
-
background: #0080ff;
|
|
1695
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
1696
|
+
border-color: #0080ff;
|
|
1697
|
+
background: #0080ff;
|
|
1931
1698
|
}
|
|
1932
1699
|
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
1933
1700
|
top: 4px;
|
|
@@ -2056,94 +1823,327 @@ html body {
|
|
|
2056
1823
|
width: 36px;
|
|
2057
1824
|
}
|
|
2058
1825
|
|
|
2059
|
-
.
|
|
2060
|
-
|
|
2061
|
-
|
|
1826
|
+
.E_phljevk {
|
|
1827
|
+
display: flex;
|
|
1828
|
+
justify-content: space-between;
|
|
1829
|
+
align-items: center;
|
|
1830
|
+
padding: 10px 0;
|
|
1831
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1832
|
+
font-size: 12px;
|
|
1833
|
+
line-height: 24px;
|
|
2062
1834
|
}
|
|
2063
|
-
|
|
2064
|
-
.E_m855nr1 {
|
|
1835
|
+
.E_phljevk .pagination-left {
|
|
2065
1836
|
padding: 2px 8px;
|
|
2066
|
-
border-radius: 3px;
|
|
2067
|
-
}
|
|
2068
|
-
|
|
2069
|
-
.E_l1270xpg {
|
|
2070
|
-
padding: 3px 8px;
|
|
2071
|
-
border-radius: 2px;
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
.E_t14rextb.ant-tag:hover {
|
|
2075
|
-
opacity: unset;
|
|
2076
1837
|
}
|
|
2077
|
-
.
|
|
2078
|
-
|
|
2079
|
-
margin-right: 8px;
|
|
2080
|
-
display: inline-flex;
|
|
1838
|
+
.E_phljevk .dropdown-trigger {
|
|
1839
|
+
display: flex;
|
|
2081
1840
|
align-items: center;
|
|
2082
|
-
border:
|
|
1841
|
+
border-radius: 6px;
|
|
1842
|
+
cursor: pointer;
|
|
1843
|
+
transition: all 0.3s ease;
|
|
2083
1844
|
}
|
|
2084
|
-
.
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
color: inherit;
|
|
2088
|
-
margin-left: 4px;
|
|
2089
|
-
opacity: 0.6;
|
|
2090
|
-
display: inline-flex;
|
|
1845
|
+
.E_phljevk .dropdown-trigger:hover {
|
|
1846
|
+
background: rgba(211, 218, 235, 0.6);
|
|
1847
|
+
color: #0080ff;
|
|
2091
1848
|
}
|
|
2092
|
-
.
|
|
2093
|
-
|
|
1849
|
+
.E_phljevk .dropdown-trigger .icon-inner {
|
|
1850
|
+
margin-left: 4px;
|
|
2094
1851
|
}
|
|
2095
|
-
.
|
|
1852
|
+
.E_phljevk .pagination-right {
|
|
1853
|
+
display: flex;
|
|
1854
|
+
align-items: center;
|
|
2096
1855
|
color: #0080ff;
|
|
2097
|
-
|
|
2098
|
-
}
|
|
2099
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
2100
|
-
color: #f0483e;
|
|
2101
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
1856
|
+
font-weight: bold;
|
|
2102
1857
|
}
|
|
2103
|
-
.
|
|
2104
|
-
|
|
2105
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
1858
|
+
.E_phljevk .pagination-right .icon-inner {
|
|
1859
|
+
margin-left: 4px;
|
|
2106
1860
|
}
|
|
2107
|
-
.
|
|
2108
|
-
|
|
2109
|
-
|
|
1861
|
+
.E_phljevk .pagination-right .prev-btn,
|
|
1862
|
+
.E_phljevk .pagination-right .next-btn {
|
|
1863
|
+
padding: 0 8px;
|
|
2110
1864
|
}
|
|
2111
|
-
.
|
|
2112
|
-
|
|
2113
|
-
|
|
1865
|
+
.E_phljevk .pagination-right .prev-btn > span,
|
|
1866
|
+
.E_phljevk .pagination-right .next-btn > span {
|
|
1867
|
+
color: #0080ff;
|
|
2114
1868
|
}
|
|
2115
|
-
.
|
|
2116
|
-
|
|
2117
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
1869
|
+
.E_phljevk .pagination-right .next-btn .icon-inner {
|
|
1870
|
+
transform: rotate(180deg);
|
|
2118
1871
|
}
|
|
2119
|
-
|
|
2120
|
-
|
|
1872
|
+
|
|
1873
|
+
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
|
|
1874
|
+
max-height: calc(100vh - 128px);
|
|
1875
|
+
overflow-y: auto;
|
|
2121
1876
|
}
|
|
2122
|
-
.
|
|
2123
|
-
|
|
1877
|
+
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
1878
|
+
padding: 4px 20px;
|
|
1879
|
+
font-size: 12px;
|
|
1880
|
+
line-height: 18px;
|
|
2124
1881
|
}
|
|
2125
|
-
|
|
2126
|
-
|
|
1882
|
+
|
|
1883
|
+
.E_i11gg7mj .ant-input-prefix {
|
|
1884
|
+
margin-right: 8px;
|
|
2127
1885
|
}
|
|
2128
|
-
.
|
|
2129
|
-
|
|
1886
|
+
.E_i11gg7mj .ant-input-suffix {
|
|
1887
|
+
margin-left: 8px;
|
|
2130
1888
|
}
|
|
2131
|
-
|
|
2132
|
-
|
|
1889
|
+
|
|
1890
|
+
.E_cc368xp {
|
|
1891
|
+
color: #00122e;
|
|
1892
|
+
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
1893
|
+
margin-right: 8px;
|
|
1894
|
+
padding-right: 8px;
|
|
2133
1895
|
}
|
|
2134
|
-
|
|
2135
|
-
|
|
1896
|
+
|
|
1897
|
+
.E_i11o6xqj {
|
|
1898
|
+
display: flex;
|
|
1899
|
+
gap: 4px;
|
|
2136
1900
|
}
|
|
2137
|
-
.
|
|
2138
|
-
|
|
1901
|
+
.E_i11o6xqj .icon-wrapper {
|
|
1902
|
+
cursor: pointer;
|
|
2139
1903
|
}
|
|
2140
1904
|
|
|
2141
|
-
.
|
|
2142
|
-
|
|
1905
|
+
.E_d19ruhdj.icon-wrapper {
|
|
1906
|
+
cursor: not-allowed;
|
|
2143
1907
|
}
|
|
2144
1908
|
|
|
2145
|
-
.
|
|
2146
|
-
|
|
1909
|
+
.E_ivqqkzv {
|
|
1910
|
+
height: 24px;
|
|
1911
|
+
width: 56px !important;
|
|
1912
|
+
margin-right: 4px;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.E_c1wk4q29 {
|
|
1916
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
.E_s1dizucg.ant-switch {
|
|
1920
|
+
min-width: 40px;
|
|
1921
|
+
height: 24px;
|
|
1922
|
+
background: rgba(172, 186, 211, 0.6);
|
|
1923
|
+
overflow: hidden;
|
|
1924
|
+
}
|
|
1925
|
+
.E_s1dizucg.ant-switch:focus {
|
|
1926
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
1927
|
+
}
|
|
1928
|
+
.E_s1dizucg.ant-switch-small {
|
|
1929
|
+
min-width: 26px;
|
|
1930
|
+
height: 16px;
|
|
1931
|
+
}
|
|
1932
|
+
.E_s1dizucg.ant-switch-large {
|
|
1933
|
+
min-width: 52px;
|
|
1934
|
+
height: 32px;
|
|
1935
|
+
}
|
|
1936
|
+
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
1937
|
+
height: 20px;
|
|
1938
|
+
width: 20px;
|
|
1939
|
+
}
|
|
1940
|
+
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
1941
|
+
border-radius: 10px;
|
|
1942
|
+
transition-delay: 120ms;
|
|
1943
|
+
}
|
|
1944
|
+
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
1945
|
+
height: 14px;
|
|
1946
|
+
width: 14px;
|
|
1947
|
+
top: 1px;
|
|
1948
|
+
left: 1px;
|
|
1949
|
+
}
|
|
1950
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
1951
|
+
height: 28px;
|
|
1952
|
+
width: 28px;
|
|
1953
|
+
}
|
|
1954
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
1955
|
+
border-radius: 14px;
|
|
1956
|
+
}
|
|
1957
|
+
.E_s1dizucg.ant-switch-checked {
|
|
1958
|
+
background-color: #00ba5d;
|
|
1959
|
+
}
|
|
1960
|
+
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
1961
|
+
left: calc(100% - 20px - 2px);
|
|
1962
|
+
}
|
|
1963
|
+
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
1964
|
+
left: calc(100% - 14px - 1px);
|
|
1965
|
+
}
|
|
1966
|
+
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
1967
|
+
left: calc(100% - 28px - 2px);
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.E_c1up6e3y {
|
|
1971
|
+
margin-left: 5px;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.E_tju3gfj .date {
|
|
1975
|
+
margin-right: 4px;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.E_s1dni7lo {
|
|
1979
|
+
width: 430px !important;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
.E_d1wwmmm5 .ant-select-item-group {
|
|
1983
|
+
padding: 8px 16px;
|
|
1984
|
+
line-height: 18px;
|
|
1985
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
1986
|
+
height: 34px;
|
|
1987
|
+
min-height: 34px;
|
|
1988
|
+
box-sizing: border-box;
|
|
1989
|
+
margin-top: 8px;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
.E_o1ugr09p {
|
|
1993
|
+
display: flex;
|
|
1994
|
+
flex-direction: column;
|
|
1995
|
+
margin: 1px 8px;
|
|
1996
|
+
padding: 8px;
|
|
1997
|
+
border-radius: 4px;
|
|
1998
|
+
}
|
|
1999
|
+
.E_o1ugr09p .selected-icon {
|
|
2000
|
+
display: none;
|
|
2001
|
+
}
|
|
2002
|
+
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
2003
|
+
padding-left: 8px;
|
|
2004
|
+
}
|
|
2005
|
+
.E_o1ugr09p.ant-select-item-option-selected {
|
|
2006
|
+
background-color: white;
|
|
2007
|
+
}
|
|
2008
|
+
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
2009
|
+
color: #0080ff;
|
|
2010
|
+
}
|
|
2011
|
+
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
2012
|
+
display: block;
|
|
2013
|
+
}
|
|
2014
|
+
.E_o1ugr09p.ant-select-item-option-active {
|
|
2015
|
+
background: rgba(0, 136, 255, 0.16);
|
|
2016
|
+
}
|
|
2017
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
2018
|
+
color: #0080ff;
|
|
2019
|
+
}
|
|
2020
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
2021
|
+
background: rgba(0, 136, 255, 0.1);
|
|
2022
|
+
color: #0080ff;
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
.E_o1ifxsq4 {
|
|
2026
|
+
display: flex;
|
|
2027
|
+
justify-content: space-between;
|
|
2028
|
+
height: 20px;
|
|
2029
|
+
line-height: 20px;
|
|
2030
|
+
}
|
|
2031
|
+
.E_o1ifxsq4 .timezone-title {
|
|
2032
|
+
color: #2d3a56;
|
|
2033
|
+
overflow: hidden;
|
|
2034
|
+
text-overflow: ellipsis;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
.E_o1zue7 {
|
|
2038
|
+
display: flex;
|
|
2039
|
+
justify-content: space-between;
|
|
2040
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2041
|
+
height: 18px;
|
|
2042
|
+
line-height: 18px;
|
|
2043
|
+
margin-top: 2px;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
.E_tyfmlxg {
|
|
2047
|
+
border: none;
|
|
2048
|
+
margin-right: 0;
|
|
2049
|
+
background: rgba(225, 230, 241, 0.6);
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
.E_o18uybox {
|
|
2053
|
+
pointer-events: none;
|
|
2054
|
+
height: 32px;
|
|
2055
|
+
width: 100%;
|
|
2056
|
+
opacity: 0;
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
.E_s1sck0th {
|
|
2060
|
+
padding: 0 8px;
|
|
2061
|
+
border-radius: 4px;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.E_m855nr1 {
|
|
2065
|
+
padding: 2px 8px;
|
|
2066
|
+
border-radius: 3px;
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
.E_l1270xpg {
|
|
2070
|
+
padding: 3px 8px;
|
|
2071
|
+
border-radius: 2px;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
.E_t14rextb.ant-tag:hover {
|
|
2075
|
+
opacity: unset;
|
|
2076
|
+
}
|
|
2077
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
2078
|
+
margin: 0;
|
|
2079
|
+
margin-right: 8px;
|
|
2080
|
+
display: inline-flex;
|
|
2081
|
+
align-items: center;
|
|
2082
|
+
border: none;
|
|
2083
|
+
}
|
|
2084
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
2085
|
+
width: 16px;
|
|
2086
|
+
height: 16px;
|
|
2087
|
+
color: inherit;
|
|
2088
|
+
margin-left: 4px;
|
|
2089
|
+
opacity: 0.6;
|
|
2090
|
+
display: inline-flex;
|
|
2091
|
+
}
|
|
2092
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
2093
|
+
opacity: 1;
|
|
2094
|
+
}
|
|
2095
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
2096
|
+
color: #0080ff;
|
|
2097
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2098
|
+
}
|
|
2099
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
2100
|
+
color: #f0483e;
|
|
2101
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
2102
|
+
}
|
|
2103
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
2104
|
+
color: #e07f00;
|
|
2105
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
2106
|
+
}
|
|
2107
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
2108
|
+
color: #008f4c;
|
|
2109
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
2110
|
+
}
|
|
2111
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
2112
|
+
color: #1d326c;
|
|
2113
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
2114
|
+
}
|
|
2115
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
2116
|
+
color: #7E41FF;
|
|
2117
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
2118
|
+
}
|
|
2119
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
2120
|
+
color: #fff;
|
|
2121
|
+
}
|
|
2122
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
2123
|
+
background-color: #f0483e;
|
|
2124
|
+
}
|
|
2125
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
2126
|
+
background-color: #fea008;
|
|
2127
|
+
}
|
|
2128
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
2129
|
+
background-color: #00ba5d;
|
|
2130
|
+
}
|
|
2131
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
2132
|
+
background-color: #0080ff;
|
|
2133
|
+
}
|
|
2134
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
2135
|
+
background-color: #6b7d99;
|
|
2136
|
+
}
|
|
2137
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
2138
|
+
background-color: #7E41FF;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
.E_iq1gosr {
|
|
2142
|
+
display: inline-block;
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
.E_t1m2x205 .ant-tooltip-arrow {
|
|
2146
|
+
display: none;
|
|
2147
2147
|
}
|
|
2148
2148
|
.E_t1m2x205 .ant-tooltip-inner {
|
|
2149
2149
|
background: rgba(23, 38, 64, 0.8);
|
|
@@ -2153,6 +2153,41 @@ html body {
|
|
|
2153
2153
|
visibility: hidden;
|
|
2154
2154
|
}
|
|
2155
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;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
.E_atcz0kf .ant-input-suffix {
|
|
2172
|
+
margin-left: 8px;
|
|
2173
|
+
}
|
|
2174
|
+
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
2175
|
+
padding: 2px 7px 2px 12px;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
.E_i1inqkme {
|
|
2179
|
+
height: 18px;
|
|
2180
|
+
line-height: 18px;
|
|
2181
|
+
padding: 0 4px;
|
|
2182
|
+
border-radius: 4px;
|
|
2183
|
+
background: rgba(235, 239, 245, 0.6);
|
|
2184
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
2185
|
+
display: flex;
|
|
2186
|
+
align-items: center;
|
|
2187
|
+
white-space: nowrap;
|
|
2188
|
+
margin-right: 4px;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2156
2191
|
.E_f7pxqmh {
|
|
2157
2192
|
width: 100%;
|
|
2158
2193
|
margin-bottom: 0 !important;
|
|
@@ -2187,19 +2222,35 @@ html body {
|
|
|
2187
2222
|
min-height: 0px;
|
|
2188
2223
|
}
|
|
2189
2224
|
|
|
2190
|
-
.
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2225
|
+
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
2226
|
+
display: var(--a1wfy30z-0);
|
|
2227
|
+
}
|
|
2228
|
+
.E_a1wfy30z .ant-input-number-input-wrap {
|
|
2229
|
+
padding: 4px 11px;
|
|
2230
|
+
display: inline-flex;
|
|
2231
|
+
line-height: 1.5715;
|
|
2232
|
+
height: inherit;
|
|
2233
|
+
}
|
|
2234
|
+
.E_a1wfy30z .ant-input-number-input-wrap::after {
|
|
2235
|
+
content: var(--a1wfy30z-1);
|
|
2236
|
+
display: var(--a1wfy30z-2);
|
|
2237
|
+
flex: none;
|
|
2197
2238
|
align-items: center;
|
|
2239
|
+
margin-left: 4px;
|
|
2198
2240
|
}
|
|
2199
|
-
.
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2241
|
+
.E_a1wfy30z .ant-input-number-input-wrap::before {
|
|
2242
|
+
content: var(--a1wfy30z-3);
|
|
2243
|
+
display: var(--a1wfy30z-4);
|
|
2244
|
+
flex: none;
|
|
2245
|
+
align-items: center;
|
|
2246
|
+
margin-right: 4px;
|
|
2247
|
+
cursor: auto;
|
|
2248
|
+
}
|
|
2249
|
+
.E_a1wfy30z .ant-input-number-input {
|
|
2250
|
+
padding: 0;
|
|
2251
|
+
margin: 0;
|
|
2252
|
+
height: auto;
|
|
2253
|
+
font-size: inherit;
|
|
2203
2254
|
}
|
|
2204
2255
|
|
|
2205
2256
|
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
@@ -2262,57 +2313,6 @@ html body {
|
|
|
2262
2313
|
padding: 2px 8px;
|
|
2263
2314
|
}
|
|
2264
2315
|
|
|
2265
|
-
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
2266
|
-
display: var(--a1wfy30z-0);
|
|
2267
|
-
}
|
|
2268
|
-
.E_a1wfy30z .ant-input-number-input-wrap {
|
|
2269
|
-
padding: 4px 11px;
|
|
2270
|
-
display: inline-flex;
|
|
2271
|
-
line-height: 1.5715;
|
|
2272
|
-
height: inherit;
|
|
2273
|
-
}
|
|
2274
|
-
.E_a1wfy30z .ant-input-number-input-wrap::after {
|
|
2275
|
-
content: var(--a1wfy30z-1);
|
|
2276
|
-
display: var(--a1wfy30z-2);
|
|
2277
|
-
flex: none;
|
|
2278
|
-
align-items: center;
|
|
2279
|
-
margin-left: 4px;
|
|
2280
|
-
}
|
|
2281
|
-
.E_a1wfy30z .ant-input-number-input-wrap::before {
|
|
2282
|
-
content: var(--a1wfy30z-3);
|
|
2283
|
-
display: var(--a1wfy30z-4);
|
|
2284
|
-
flex: none;
|
|
2285
|
-
align-items: center;
|
|
2286
|
-
margin-right: 4px;
|
|
2287
|
-
cursor: auto;
|
|
2288
|
-
}
|
|
2289
|
-
.E_a1wfy30z .ant-input-number-input {
|
|
2290
|
-
padding: 0;
|
|
2291
|
-
margin: 0;
|
|
2292
|
-
height: auto;
|
|
2293
|
-
font-size: inherit;
|
|
2294
|
-
}
|
|
2295
|
-
|
|
2296
|
-
.E_i1inqkme {
|
|
2297
|
-
height: 18px;
|
|
2298
|
-
line-height: 18px;
|
|
2299
|
-
padding: 0 4px;
|
|
2300
|
-
border-radius: 4px;
|
|
2301
|
-
background: rgba(235, 239, 245, 0.6);
|
|
2302
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
2303
|
-
display: flex;
|
|
2304
|
-
align-items: center;
|
|
2305
|
-
white-space: nowrap;
|
|
2306
|
-
margin-right: 4px;
|
|
2307
|
-
}
|
|
2308
|
-
|
|
2309
|
-
.E_atcz0kf .ant-input-suffix {
|
|
2310
|
-
margin-left: 8px;
|
|
2311
|
-
}
|
|
2312
|
-
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
2313
|
-
padding: 2px 7px 2px 12px;
|
|
2314
|
-
}
|
|
2315
|
-
|
|
2316
2316
|
.E_iouxfgt {
|
|
2317
2317
|
display: inline-flex;
|
|
2318
2318
|
align-items: center;
|
|
@@ -2370,6 +2370,10 @@ html body {
|
|
|
2370
2370
|
transition: all 320ms ease;
|
|
2371
2371
|
}
|
|
2372
2372
|
|
|
2373
|
+
.E_m196gn1d {
|
|
2374
|
+
min-width: 1280px;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2373
2377
|
.E_cnujxq2 {
|
|
2374
2378
|
display: flex;
|
|
2375
2379
|
flex-direction: column;
|
|
@@ -3060,10 +3064,6 @@ input.E_rf8rlle.ant-input {
|
|
|
3060
3064
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
3061
3065
|
}
|
|
3062
3066
|
|
|
3063
|
-
.E_m196gn1d {
|
|
3064
|
-
min-width: 1280px;
|
|
3065
|
-
}
|
|
3066
|
-
|
|
3067
3067
|
.E_dsnbhzf {
|
|
3068
3068
|
font-family: Inter;
|
|
3069
3069
|
font-style: normal;
|
|
@@ -3539,63 +3539,6 @@ input.E_rf8rlle.ant-input {
|
|
|
3539
3539
|
line-height: 12px;
|
|
3540
3540
|
}
|
|
3541
3541
|
|
|
3542
|
-
.E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
|
|
3543
|
-
border-radius: 6px;
|
|
3544
|
-
}
|
|
3545
|
-
.E_s17wv897.ant-select.ant-select-single {
|
|
3546
|
-
width: 100%;
|
|
3547
|
-
color: #2d3a56;
|
|
3548
|
-
border-color: rgba(211, 218, 235, 0.6);
|
|
3549
|
-
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
3550
|
-
font-size: 13px;
|
|
3551
|
-
}
|
|
3552
|
-
.E_s17wv897.ant-select.ant-select-single[data-size=middle] {
|
|
3553
|
-
height: 30px;
|
|
3554
|
-
}
|
|
3555
|
-
.E_s17wv897.ant-select.ant-select-single.ant-select-lg {
|
|
3556
|
-
height: 38px;
|
|
3557
|
-
font-size: 13px;
|
|
3558
|
-
}
|
|
3559
|
-
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
|
|
3560
|
-
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
3561
|
-
transition: 160ms ease;
|
|
3562
|
-
}
|
|
3563
|
-
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
3564
|
-
color: #0080ff;
|
|
3565
|
-
}
|
|
3566
|
-
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
3567
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
3568
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
3569
|
-
}
|
|
3570
|
-
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
3571
|
-
color: #0080ff;
|
|
3572
|
-
}
|
|
3573
|
-
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
3574
|
-
border-color: #0080ff;
|
|
3575
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
3576
|
-
}
|
|
3577
|
-
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
3578
|
-
transform: rotate(180deg);
|
|
3579
|
-
}
|
|
3580
|
-
.E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
3581
|
-
background: rgba(211, 218, 235, 0.6);
|
|
3582
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
3583
|
-
cursor: "not-allowed";
|
|
3584
|
-
}
|
|
3585
|
-
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
3586
|
-
border-color: #f0483e !important;
|
|
3587
|
-
}
|
|
3588
|
-
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
3589
|
-
color: #1d326c;
|
|
3590
|
-
}
|
|
3591
|
-
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
3592
|
-
border-color: #0080ff;
|
|
3593
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
3594
|
-
}
|
|
3595
|
-
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
3596
|
-
transform: rotate(180deg);
|
|
3597
|
-
}
|
|
3598
|
-
|
|
3599
3542
|
.E_s4ivdfu.ant-select .ant-select-selection-placeholder {
|
|
3600
3543
|
opacity: 1;
|
|
3601
3544
|
}
|
|
@@ -3687,40 +3630,97 @@ input.E_rf8rlle.ant-input {
|
|
|
3687
3630
|
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-suffix {
|
|
3688
3631
|
display: none;
|
|
3689
3632
|
}
|
|
3690
|
-
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
|
|
3691
|
-
display: inline;
|
|
3633
|
+
.E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
|
|
3634
|
+
display: inline;
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
.E_swwhohx.ant-select .ant-select-selector {
|
|
3638
|
+
padding: 0 7px 0 12px;
|
|
3639
|
+
}
|
|
3640
|
+
.E_swwhohx.ant-select .ant-select-arrow {
|
|
3641
|
+
right: 8px;
|
|
3642
|
+
top: 50%;
|
|
3643
|
+
margin-top: -8px;
|
|
3644
|
+
width: 16px;
|
|
3645
|
+
height: 16px;
|
|
3646
|
+
display: flex;
|
|
3647
|
+
align-items: center;
|
|
3648
|
+
}
|
|
3649
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
|
|
3650
|
+
padding: 0 11px 0 16px;
|
|
3651
|
+
}
|
|
3652
|
+
.E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
|
|
3653
|
+
right: 12px;
|
|
3654
|
+
}
|
|
3655
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
|
|
3656
|
+
padding: 0 3px 0 8px;
|
|
3657
|
+
}
|
|
3658
|
+
.E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
|
|
3659
|
+
right: 4px;
|
|
3660
|
+
}
|
|
3661
|
+
.E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
|
|
3662
|
+
padding-right: 24px;
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
.E_p2sxmsl {
|
|
3666
|
+
color: rgba(0, 21, 64, 0.3);
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
.E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
|
|
3670
|
+
border-radius: 6px;
|
|
3671
|
+
}
|
|
3672
|
+
.E_s17wv897.ant-select.ant-select-single {
|
|
3673
|
+
width: 100%;
|
|
3674
|
+
color: #2d3a56;
|
|
3675
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
3676
|
+
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
3677
|
+
font-size: 13px;
|
|
3678
|
+
}
|
|
3679
|
+
.E_s17wv897.ant-select.ant-select-single[data-size=middle] {
|
|
3680
|
+
height: 30px;
|
|
3681
|
+
}
|
|
3682
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-lg {
|
|
3683
|
+
height: 38px;
|
|
3684
|
+
font-size: 13px;
|
|
3685
|
+
}
|
|
3686
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
|
|
3687
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
3688
|
+
transition: 160ms ease;
|
|
3689
|
+
}
|
|
3690
|
+
.E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
3691
|
+
color: #0080ff;
|
|
3692
|
+
}
|
|
3693
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
3694
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
3695
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
3692
3696
|
}
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
padding: 0 7px 0 12px;
|
|
3697
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
3698
|
+
color: #0080ff;
|
|
3696
3699
|
}
|
|
3697
|
-
.
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
margin-top: -8px;
|
|
3701
|
-
width: 16px;
|
|
3702
|
-
height: 16px;
|
|
3703
|
-
display: flex;
|
|
3704
|
-
align-items: center;
|
|
3700
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
3701
|
+
border-color: #0080ff;
|
|
3702
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
3705
3703
|
}
|
|
3706
|
-
.
|
|
3707
|
-
|
|
3704
|
+
.E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
3705
|
+
transform: rotate(180deg);
|
|
3708
3706
|
}
|
|
3709
|
-
.
|
|
3710
|
-
|
|
3707
|
+
.E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
3708
|
+
background: rgba(211, 218, 235, 0.6);
|
|
3709
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
3710
|
+
cursor: "not-allowed";
|
|
3711
3711
|
}
|
|
3712
|
-
.
|
|
3713
|
-
|
|
3712
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
3713
|
+
border-color: #f0483e !important;
|
|
3714
3714
|
}
|
|
3715
|
-
.
|
|
3716
|
-
|
|
3715
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
3716
|
+
color: #1d326c;
|
|
3717
3717
|
}
|
|
3718
|
-
.
|
|
3719
|
-
|
|
3718
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
3719
|
+
border-color: #0080ff;
|
|
3720
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
3720
3721
|
}
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
color: rgba(0, 21, 64, 0.3);
|
|
3722
|
+
.E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
3723
|
+
transform: rotate(180deg);
|
|
3724
3724
|
}
|
|
3725
3725
|
|
|
3726
3726
|
.E_oa99sl3 {
|
|
@@ -3763,54 +3763,6 @@ input.E_rf8rlle.ant-input {
|
|
|
3763
3763
|
opacity: 0.8;
|
|
3764
3764
|
}
|
|
3765
3765
|
|
|
3766
|
-
.E_suhck3k {
|
|
3767
|
-
height: 24px;
|
|
3768
|
-
width: 24px;
|
|
3769
|
-
border-radius: 6px;
|
|
3770
|
-
padding: 4px;
|
|
3771
|
-
}
|
|
3772
|
-
.E_suhck3k:hover {
|
|
3773
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
3774
|
-
}
|
|
3775
|
-
.E_suhck3k:hover svg path {
|
|
3776
|
-
fill: blue;
|
|
3777
|
-
}
|
|
3778
|
-
|
|
3779
|
-
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
3780
|
-
margin-right: 2px;
|
|
3781
|
-
}
|
|
3782
|
-
|
|
3783
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
3784
|
-
padding-left: 8px;
|
|
3785
|
-
padding-right: 8px;
|
|
3786
|
-
font-size: 12px;
|
|
3787
|
-
}
|
|
3788
|
-
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
3789
|
-
border-radius: 4px;
|
|
3790
|
-
}
|
|
3791
|
-
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
3792
|
-
border-radius: 4px;
|
|
3793
|
-
}
|
|
3794
|
-
|
|
3795
|
-
.E_ma64lna .antd5-segmented-item-label {
|
|
3796
|
-
padding-left: 12px;
|
|
3797
|
-
padding-right: 12px;
|
|
3798
|
-
}
|
|
3799
|
-
|
|
3800
|
-
.E_ckld275 {
|
|
3801
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
3802
|
-
}
|
|
3803
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
3804
|
-
background-color: rgba(255, 255, 255, 0.6);
|
|
3805
|
-
color: rgba(44, 56, 82, 0.75);
|
|
3806
|
-
}
|
|
3807
|
-
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
3808
|
-
background-color: transparent;
|
|
3809
|
-
}
|
|
3810
|
-
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
3811
|
-
background-color: transparent;
|
|
3812
|
-
}
|
|
3813
|
-
|
|
3814
3766
|
.E_ryby9ds {
|
|
3815
3767
|
display: flex;
|
|
3816
3768
|
align-items: center;
|
|
@@ -3827,70 +3779,17 @@ input.E_rf8rlle.ant-input {
|
|
|
3827
3779
|
margin-right: 6px;
|
|
3828
3780
|
}
|
|
3829
3781
|
|
|
3830
|
-
.
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
flex-direction: column;
|
|
3836
|
-
align-items: center;
|
|
3837
|
-
justify-content: center;
|
|
3838
|
-
color: rgba(0, 21, 64, 0.3);
|
|
3839
|
-
}
|
|
3840
|
-
.E_b1lj76ty.large {
|
|
3841
|
-
max-width: 648px;
|
|
3842
|
-
}
|
|
3843
|
-
.E_b1lj76ty.medium {
|
|
3844
|
-
max-width: 412px;
|
|
3845
|
-
}
|
|
3846
|
-
.E_b1lj76ty.gray {
|
|
3847
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
3848
|
-
}
|
|
3849
|
-
.E_b1lj76ty.white {
|
|
3850
|
-
background-color: rgba(255, 255, 255, 0.6);
|
|
3851
|
-
}
|
|
3852
|
-
.E_b1lj76ty .title {
|
|
3853
|
-
margin-bottom: 4px;
|
|
3854
|
-
}
|
|
3855
|
-
.E_b1lj76ty .title,
|
|
3856
|
-
.E_b1lj76ty .desc {
|
|
3857
|
-
word-break: break-all;
|
|
3858
|
-
text-align: center;
|
|
3859
|
-
}
|
|
3860
|
-
.E_b1lj76ty .action-button.middle {
|
|
3861
|
-
margin-top: 16px;
|
|
3862
|
-
}
|
|
3863
|
-
.E_b1lj76ty .action-button.small {
|
|
3864
|
-
margin-top: 8px;
|
|
3865
|
-
}
|
|
3866
|
-
|
|
3867
|
-
.E_m5foqp8 {
|
|
3868
|
-
--footer-height: 96px;
|
|
3869
|
-
--modal-content-width: 720px;
|
|
3870
|
-
--modal-content-min-height: 200px;
|
|
3871
|
-
--modal-header-padding: 40px 60px 8px;
|
|
3872
|
-
--modal-content-padding-top: 24px;
|
|
3873
|
-
--modal-content-padding-bottom: 32px;
|
|
3874
|
-
--modal-content-padding-x: 60px;
|
|
3875
|
-
--modal-footer-padding: 0 60px;
|
|
3876
|
-
}
|
|
3877
|
-
.E_m5foqp8.content-full.ant-modal {
|
|
3878
|
-
height: calc(100vh - 80px);
|
|
3879
|
-
width: calc(100vw - 160px);
|
|
3880
|
-
}
|
|
3881
|
-
.E_m5foqp8.content-full.ant-modal .ant-modal-content {
|
|
3882
|
-
width: 100%;
|
|
3883
|
-
height: 100%;
|
|
3884
|
-
max-width: unset;
|
|
3885
|
-
max-height: unset;
|
|
3886
|
-
display: flex;
|
|
3887
|
-
flex-direction: column;
|
|
3782
|
+
.E_suhck3k {
|
|
3783
|
+
height: 24px;
|
|
3784
|
+
width: 24px;
|
|
3785
|
+
border-radius: 6px;
|
|
3786
|
+
padding: 4px;
|
|
3888
3787
|
}
|
|
3889
|
-
.
|
|
3890
|
-
|
|
3788
|
+
.E_suhck3k:hover {
|
|
3789
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
3891
3790
|
}
|
|
3892
|
-
.
|
|
3893
|
-
|
|
3791
|
+
.E_suhck3k:hover svg path {
|
|
3792
|
+
fill: blue;
|
|
3894
3793
|
}
|
|
3895
3794
|
|
|
3896
3795
|
.E_hrhfj7c {
|
|
@@ -3968,7 +3867,6 @@ input.E_rf8rlle.ant-input {
|
|
|
3968
3867
|
justify-content: space-between;
|
|
3969
3868
|
align-items: center;
|
|
3970
3869
|
border-bottom: 1px solid #e4e9f2;
|
|
3971
|
-
gap: 4px;
|
|
3972
3870
|
}
|
|
3973
3871
|
|
|
3974
3872
|
.E_ckhyuyx {
|
|
@@ -4057,60 +3955,161 @@ input.E_rf8rlle.ant-input {
|
|
|
4057
3955
|
.E_ckhyuyx.antd5-cascader-checkbox-wrapper-disabled .antd5-cascader-checkbox-disabled.antd5-cascader-checkbox-indeterminate .antd5-cascader-checkbox-inner:after {
|
|
4058
3956
|
background: #2d3a56;
|
|
4059
3957
|
}
|
|
4060
|
-
.E_ckhyuyx .antd5-cascader-checkbox + span, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span {
|
|
4061
|
-
padding: 0;
|
|
3958
|
+
.E_ckhyuyx .antd5-cascader-checkbox + span, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span {
|
|
3959
|
+
padding: 0;
|
|
3960
|
+
}
|
|
3961
|
+
.E_ckhyuyx .antd5-cascader-checkbox + span .main, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .main {
|
|
3962
|
+
display: inline-block;
|
|
3963
|
+
margin-left: 12px;
|
|
3964
|
+
color: #2d3a56;
|
|
3965
|
+
}
|
|
3966
|
+
.E_ckhyuyx .antd5-cascader-checkbox + span .sub, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .sub {
|
|
3967
|
+
margin-left: 28px;
|
|
3968
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3969
|
+
}
|
|
3970
|
+
.E_ckhyuyx.compact .antd5-cascader-checkbox + span .main, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .main {
|
|
3971
|
+
margin-left: 8px;
|
|
3972
|
+
}
|
|
3973
|
+
.E_ckhyuyx.compact .antd5-cascader-checkbox + span .sub, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .sub {
|
|
3974
|
+
margin-left: 24px;
|
|
3975
|
+
}
|
|
3976
|
+
.E_ckhyuyx .E_dt9qoak {
|
|
3977
|
+
width: 400px;
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
.E_c1fmq9lv ul.antd5-cascader-menu {
|
|
3981
|
+
padding: 4px;
|
|
3982
|
+
height: 158px;
|
|
3983
|
+
}
|
|
3984
|
+
.E_c1fmq9lv.E_ckhyuyx {
|
|
3985
|
+
border-radius: 6px;
|
|
3986
|
+
}
|
|
3987
|
+
.E_c1fmq9lv.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
|
|
3988
|
+
min-width: 200px;
|
|
3989
|
+
font-size: 12px;
|
|
3990
|
+
}
|
|
3991
|
+
.E_c1fmq9lv.E_ckhyuyx .E_c1iye0zj {
|
|
3992
|
+
padding: 6px 12px;
|
|
3993
|
+
height: 18px;
|
|
3994
|
+
font-size: 12px;
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
.E_c1evusvc ul.antd5-cascader-menu {
|
|
3998
|
+
padding: 8px;
|
|
3999
|
+
height: 320px;
|
|
4000
|
+
}
|
|
4001
|
+
.E_c1evusvc.E_ckhyuyx {
|
|
4002
|
+
border-radius: 10px;
|
|
4003
|
+
}
|
|
4004
|
+
.E_c1evusvc.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
|
|
4005
|
+
min-width: 296px;
|
|
4006
|
+
padding: 8px;
|
|
4007
|
+
}
|
|
4008
|
+
.E_c1evusvc.E_ckhyuyx .E_c1iye0zj {
|
|
4009
|
+
height: 22px;
|
|
4010
|
+
padding: 8px 16px;
|
|
4011
|
+
font-size: 14px;
|
|
4012
|
+
}
|
|
4013
|
+
|
|
4014
|
+
.E_b1lj76ty {
|
|
4015
|
+
width: 100%;
|
|
4016
|
+
height: 100%;
|
|
4017
|
+
margin: 0 auto;
|
|
4018
|
+
display: flex;
|
|
4019
|
+
flex-direction: column;
|
|
4020
|
+
align-items: center;
|
|
4021
|
+
justify-content: center;
|
|
4022
|
+
color: rgba(0, 21, 64, 0.3);
|
|
4023
|
+
}
|
|
4024
|
+
.E_b1lj76ty.large {
|
|
4025
|
+
max-width: 648px;
|
|
4026
|
+
}
|
|
4027
|
+
.E_b1lj76ty.medium {
|
|
4028
|
+
max-width: 412px;
|
|
4029
|
+
}
|
|
4030
|
+
.E_b1lj76ty.gray {
|
|
4031
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
4032
|
+
}
|
|
4033
|
+
.E_b1lj76ty.white {
|
|
4034
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
4035
|
+
}
|
|
4036
|
+
.E_b1lj76ty .title {
|
|
4037
|
+
margin-bottom: 4px;
|
|
4038
|
+
}
|
|
4039
|
+
.E_b1lj76ty .title,
|
|
4040
|
+
.E_b1lj76ty .desc {
|
|
4041
|
+
word-break: break-all;
|
|
4042
|
+
text-align: center;
|
|
4043
|
+
}
|
|
4044
|
+
.E_b1lj76ty .action-button.middle {
|
|
4045
|
+
margin-top: 16px;
|
|
4046
|
+
}
|
|
4047
|
+
.E_b1lj76ty .action-button.small {
|
|
4048
|
+
margin-top: 8px;
|
|
4049
|
+
}
|
|
4050
|
+
|
|
4051
|
+
.E_m5foqp8.medium {
|
|
4052
|
+
--footer-height: 96px;
|
|
4053
|
+
--modal-content-width: 720px;
|
|
4054
|
+
--modal-content-min-height: 200px;
|
|
4055
|
+
--modal-header-padding: 40px 60px 8px;
|
|
4056
|
+
--modal-content-padding-top: 24px;
|
|
4057
|
+
--modal-content-padding-bottom: 32px;
|
|
4058
|
+
--modal-content-padding-x: 60px;
|
|
4059
|
+
--modal-footer-padding: 0 60px;
|
|
4062
4060
|
}
|
|
4063
|
-
.
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
color: #2d3a56;
|
|
4061
|
+
.E_m5foqp8.medium.content-full.ant-modal {
|
|
4062
|
+
height: calc(100vh - 80px);
|
|
4063
|
+
width: calc(100vw - 160px);
|
|
4067
4064
|
}
|
|
4068
|
-
.
|
|
4069
|
-
|
|
4070
|
-
|
|
4065
|
+
.E_m5foqp8.medium.content-full.ant-modal .ant-modal-content {
|
|
4066
|
+
width: 100%;
|
|
4067
|
+
height: 100%;
|
|
4068
|
+
max-width: unset;
|
|
4069
|
+
max-height: unset;
|
|
4070
|
+
display: flex;
|
|
4071
|
+
flex-direction: column;
|
|
4071
4072
|
}
|
|
4072
|
-
.
|
|
4073
|
-
|
|
4073
|
+
.E_m5foqp8.medium.content-full.ant-modal .ant-modal-body {
|
|
4074
|
+
flex: 1;
|
|
4074
4075
|
}
|
|
4075
|
-
.
|
|
4076
|
-
|
|
4076
|
+
.E_m5foqp8.medium .initializing-title {
|
|
4077
|
+
height: 32px;
|
|
4077
4078
|
}
|
|
4078
|
-
|
|
4079
|
-
|
|
4079
|
+
|
|
4080
|
+
.E_s11wux3h .antd5-segmented-item:not(:last-child) {
|
|
4081
|
+
margin-right: 2px;
|
|
4080
4082
|
}
|
|
4081
4083
|
|
|
4082
|
-
.
|
|
4083
|
-
padding:
|
|
4084
|
-
|
|
4084
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
|
|
4085
|
+
padding-left: 8px;
|
|
4086
|
+
padding-right: 8px;
|
|
4087
|
+
font-size: 12px;
|
|
4085
4088
|
}
|
|
4086
|
-
.
|
|
4087
|
-
border-radius:
|
|
4089
|
+
.E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
|
|
4090
|
+
border-radius: 4px;
|
|
4088
4091
|
}
|
|
4089
|
-
.
|
|
4090
|
-
|
|
4091
|
-
font-size: 12px;
|
|
4092
|
+
.E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4093
|
+
border-radius: 4px;
|
|
4092
4094
|
}
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4095
|
+
|
|
4096
|
+
.E_ma64lna .antd5-segmented-item-label {
|
|
4097
|
+
padding-left: 12px;
|
|
4098
|
+
padding-right: 12px;
|
|
4097
4099
|
}
|
|
4098
4100
|
|
|
4099
|
-
.
|
|
4100
|
-
|
|
4101
|
-
height: 320px;
|
|
4101
|
+
.E_ckld275 {
|
|
4102
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4102
4103
|
}
|
|
4103
|
-
.
|
|
4104
|
-
|
|
4104
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4105
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
4106
|
+
color: rgba(44, 56, 82, 0.75);
|
|
4105
4107
|
}
|
|
4106
|
-
.
|
|
4107
|
-
|
|
4108
|
-
padding: 8px;
|
|
4108
|
+
.E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
|
|
4109
|
+
background-color: transparent;
|
|
4109
4110
|
}
|
|
4110
|
-
.
|
|
4111
|
-
|
|
4112
|
-
padding: 8px 16px;
|
|
4113
|
-
font-size: 14px;
|
|
4111
|
+
.E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
|
|
4112
|
+
background-color: transparent;
|
|
4114
4113
|
}
|
|
4115
4114
|
|
|
4116
4115
|
.E_ckaaqep {
|
|
@@ -4839,403 +4838,227 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
4839
4838
|
background: #fff;
|
|
4840
4839
|
}
|
|
4841
4840
|
|
|
4842
|
-
.
|
|
4843
|
-
|
|
4844
|
-
line-height: 22px;
|
|
4845
|
-
display: inline-flex;
|
|
4846
|
-
}
|
|
4847
|
-
.E_ckui4s7 .ant-checkbox {
|
|
4848
|
-
height: 22px;
|
|
4849
|
-
display: flex;
|
|
4850
|
-
align-items: center;
|
|
4851
|
-
top: 0;
|
|
4852
|
-
}
|
|
4853
|
-
.E_ckui4s7 .ant-checkbox-checked::after {
|
|
4854
|
-
border: none;
|
|
4855
|
-
}
|
|
4856
|
-
.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 {
|
|
4857
|
-
border-color: #0080ff;
|
|
4858
|
-
}
|
|
4859
|
-
.E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
|
|
4860
|
-
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
4861
|
-
}
|
|
4862
|
-
.E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
4863
|
-
border: 1px solid #0080ff;
|
|
4864
|
-
}
|
|
4865
|
-
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
4866
|
-
background: #0080ff;
|
|
4867
|
-
}
|
|
4868
|
-
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
4869
|
-
background-color: #fff;
|
|
4870
|
-
height: 2px;
|
|
4871
|
-
width: 10px;
|
|
4872
|
-
border-radius: 2px;
|
|
4873
|
-
}
|
|
4874
|
-
.E_ckui4s7.ant-checkbox-wrapper-disabled {
|
|
4875
|
-
opacity: 0.5;
|
|
4876
|
-
}
|
|
4877
|
-
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
4878
|
-
background: rgba(211, 218, 235, 0.6);
|
|
4879
|
-
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
4880
|
-
}
|
|
4881
|
-
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
4882
|
-
border-color: #2d3a56;
|
|
4883
|
-
}
|
|
4884
|
-
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
4885
|
-
background: #2d3a56;
|
|
4886
|
-
}
|
|
4887
|
-
.E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
|
|
4888
|
-
padding: 0;
|
|
4889
|
-
}
|
|
4890
|
-
.E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
|
|
4891
|
-
display: inline-block;
|
|
4892
|
-
margin-left: 12px;
|
|
4893
|
-
color: #2d3a56;
|
|
4894
|
-
}
|
|
4895
|
-
.E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
|
|
4896
|
-
margin-left: 28px;
|
|
4897
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4898
|
-
}
|
|
4899
|
-
.E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
|
|
4900
|
-
margin-left: 8px;
|
|
4901
|
-
}
|
|
4902
|
-
.E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
|
|
4903
|
-
margin-left: 24px;
|
|
4904
|
-
}
|
|
4905
|
-
|
|
4906
|
-
.E_b14q2gmw {
|
|
4907
|
-
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);
|
|
4908
|
-
}
|
|
4909
|
-
|
|
4910
|
-
.E_c1eym6el {
|
|
4911
|
-
border-radius: 8px;
|
|
4912
|
-
background-color: white;
|
|
4913
|
-
}
|
|
4914
|
-
.E_c1eym6el.hoverable {
|
|
4915
|
-
cursor: pointer;
|
|
4916
|
-
}
|
|
4917
|
-
.E_c1eym6el.hoverable:hover {
|
|
4918
|
-
transition: all 200ms ease;
|
|
4919
|
-
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
4920
|
-
transform: translateY(-4px);
|
|
4921
|
-
}
|
|
4922
|
-
|
|
4923
|
-
.E_c1yd35n {
|
|
4924
|
-
padding: 0 12px 14px 12px;
|
|
4925
|
-
}
|
|
4926
|
-
|
|
4927
|
-
.E_c1kghdax {
|
|
4928
|
-
color: #2d3a56;
|
|
4929
|
-
padding: 7px 12px;
|
|
4930
|
-
display: flex;
|
|
4931
|
-
justify-content: space-between;
|
|
4932
|
-
align-items: center;
|
|
4933
|
-
}
|
|
4934
|
-
.E_c1kghdax.has-arrow {
|
|
4935
|
-
padding-left: 10px;
|
|
4936
|
-
}
|
|
4937
|
-
.E_c1kghdax.has-arrow .title-wrapper {
|
|
4938
|
-
cursor: pointer;
|
|
4939
|
-
color: #00122e;
|
|
4940
|
-
}
|
|
4941
|
-
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
4942
|
-
color: #2d3a56;
|
|
4943
|
-
font-weight: 600;
|
|
4944
|
-
}
|
|
4945
|
-
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
4946
|
-
transform: rotate(90deg);
|
|
4947
|
-
}
|
|
4948
|
-
.E_c1kghdax .sub-info {
|
|
4949
|
-
font-size: 12px;
|
|
4950
|
-
line-height: 18px;
|
|
4951
|
-
}
|
|
4952
|
-
.E_c1kghdax .title-wrapper {
|
|
4953
|
-
display: flex;
|
|
4954
|
-
align-items: center;
|
|
4955
|
-
user-select: none;
|
|
4956
|
-
flex-grow: 1;
|
|
4957
|
-
font-size: 12px;
|
|
4958
|
-
line-height: 18px;
|
|
4959
|
-
color: #2d3a56;
|
|
4960
|
-
font-weight: 700;
|
|
4961
|
-
}
|
|
4962
|
-
.E_c1kghdax .collapse-arrow {
|
|
4963
|
-
transition: all 50ms ease-out 0ms;
|
|
4964
|
-
margin-right: 2px;
|
|
4965
|
-
}
|
|
4966
|
-
|
|
4967
|
-
.E_lht19u8 {
|
|
4968
|
-
width: 64px;
|
|
4969
|
-
height: 64px;
|
|
4970
|
-
display: flex;
|
|
4971
|
-
align-items: center;
|
|
4972
|
-
justify-content: center;
|
|
4841
|
+
.E_u3l9ivi {
|
|
4842
|
+
width: 100%;
|
|
4973
4843
|
position: relative;
|
|
4974
|
-
opacity: 0.2;
|
|
4975
|
-
}
|
|
4976
|
-
|
|
4977
|
-
.E_lk3gkp4 {
|
|
4978
|
-
position: absolute;
|
|
4979
|
-
width: 5px;
|
|
4980
|
-
height: 48px;
|
|
4981
|
-
left: 9.33px;
|
|
4982
|
-
top: 40.5px;
|
|
4983
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4984
|
-
border-radius: 5px;
|
|
4985
|
-
transform: rotate(-128deg);
|
|
4986
|
-
transform-origin: top left;
|
|
4987
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
4988
|
-
}
|
|
4989
|
-
|
|
4990
|
-
.E_ll4n94n {
|
|
4991
|
-
position: absolute;
|
|
4992
|
-
width: 5px;
|
|
4993
|
-
height: 48px;
|
|
4994
|
-
left: 40.8px;
|
|
4995
|
-
top: 8.4px;
|
|
4996
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
4997
|
-
border-radius: 5px;
|
|
4998
|
-
transform: rotate(-8deg);
|
|
4999
|
-
transform-origin: top left;
|
|
5000
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
5001
|
-
}
|
|
5002
|
-
|
|
5003
|
-
.E_l17lbdo6 {
|
|
5004
|
-
position: absolute;
|
|
5005
|
-
width: 5px;
|
|
5006
|
-
height: 48px;
|
|
5007
|
-
left: 52.9px;
|
|
5008
|
-
top: 51.8px;
|
|
5009
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5010
|
-
border-radius: 5px;
|
|
5011
|
-
transform: rotate(112deg);
|
|
5012
|
-
transform-origin: top left;
|
|
5013
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
5014
4844
|
}
|
|
5015
|
-
|
|
5016
|
-
|
|
4845
|
+
.E_u3l9ivi .upload-label {
|
|
4846
|
+
color: #00122e;
|
|
4847
|
+
word-break: break-word;
|
|
5017
4848
|
margin-bottom: 4px;
|
|
5018
|
-
|
|
4849
|
+
display: block;
|
|
5019
4850
|
}
|
|
5020
|
-
|
|
5021
|
-
.E_s1ese5oy {
|
|
4851
|
+
.E_u3l9ivi .upload-description {
|
|
5022
4852
|
color: rgba(44, 56, 82, 0.6);
|
|
5023
|
-
|
|
5024
|
-
height: 32px;
|
|
5025
|
-
margin-bottom: 0;
|
|
4853
|
+
word-break: break-word;
|
|
5026
4854
|
}
|
|
5027
|
-
.
|
|
5028
|
-
|
|
4855
|
+
.E_u3l9ivi .upload-button {
|
|
4856
|
+
display: block;
|
|
5029
4857
|
}
|
|
5030
|
-
.
|
|
5031
|
-
|
|
4858
|
+
.E_u3l9ivi .upload-button:not(:first-child),
|
|
4859
|
+
.E_u3l9ivi .upload-drag:not(:first-child) {
|
|
4860
|
+
margin-top: 8px;
|
|
5032
4861
|
}
|
|
5033
|
-
.
|
|
5034
|
-
|
|
4862
|
+
.E_u3l9ivi .upload-button:not(:last-child),
|
|
4863
|
+
.E_u3l9ivi .upload-drag:not(:last-child) {
|
|
4864
|
+
margin-bottom: 8px;
|
|
5035
4865
|
}
|
|
5036
|
-
.
|
|
5037
|
-
|
|
4866
|
+
.E_u3l9ivi .upload-drag-area {
|
|
4867
|
+
padding: 32px 16px;
|
|
4868
|
+
border-radius: 4px;
|
|
4869
|
+
border: 1px dashed rgba(107, 128, 167, 0.6);
|
|
4870
|
+
background: rgba(237, 241, 250, 0.6);
|
|
4871
|
+
display: flex;
|
|
4872
|
+
flex-direction: column;
|
|
4873
|
+
align-items: center;
|
|
5038
4874
|
}
|
|
5039
|
-
.
|
|
5040
|
-
|
|
4875
|
+
.E_u3l9ivi .upload-drag-area .upload-drag-text {
|
|
4876
|
+
text-align: center;
|
|
5041
4877
|
}
|
|
5042
|
-
|
|
5043
|
-
.E_b1ibis43 {
|
|
5044
|
-
margin-bottom: 0;
|
|
4878
|
+
.E_u3l9ivi .upload-drag-area .ant-upload-drag-container {
|
|
5045
4879
|
color: #00122e;
|
|
5046
4880
|
}
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
line-height: 32px;
|
|
5050
|
-
margin-right: 6px;
|
|
4881
|
+
.E_u3l9ivi .upload-drag-area.has-file {
|
|
4882
|
+
padding: 16px;
|
|
5051
4883
|
}
|
|
5052
|
-
|
|
5053
|
-
|
|
4884
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container {
|
|
4885
|
+
display: flex;
|
|
4886
|
+
flex-direction: row;
|
|
4887
|
+
justify-content: center;
|
|
4888
|
+
align-items: flex-start;
|
|
4889
|
+
}
|
|
4890
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link {
|
|
5054
4891
|
height: 24px;
|
|
5055
|
-
flex: 1;
|
|
5056
|
-
position: relative;
|
|
5057
|
-
top: -7px;
|
|
5058
4892
|
}
|
|
5059
|
-
.
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
text-overflow: ellipsis;
|
|
5063
|
-
white-space: nowrap;
|
|
4893
|
+
.E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link[disabled] {
|
|
4894
|
+
color: #00122e;
|
|
4895
|
+
opacity: 1;
|
|
5064
4896
|
}
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
border-radius: 8px;
|
|
5069
|
-
overflow: auto;
|
|
4897
|
+
.E_u3l9ivi .upload-drag-area.has-file .upload-drag-text {
|
|
4898
|
+
margin-left: 8px;
|
|
4899
|
+
text-align: left;
|
|
5070
4900
|
}
|
|
5071
|
-
.
|
|
5072
|
-
|
|
4901
|
+
.E_u3l9ivi .upload-drag-area.has-file .upload-drag-text .ant-btn.ant-btn-link {
|
|
4902
|
+
height: 24px;
|
|
5073
4903
|
}
|
|
5074
|
-
.
|
|
5075
|
-
|
|
4904
|
+
.E_u3l9ivi .upload-drag-area.has-file.single {
|
|
4905
|
+
padding: 12px;
|
|
4906
|
+
line-height: 24px;
|
|
5076
4907
|
}
|
|
5077
|
-
.
|
|
5078
|
-
position: sticky;
|
|
5079
|
-
top: 0;
|
|
5080
|
-
z-index: 2;
|
|
4908
|
+
.E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container {
|
|
5081
4909
|
display: flex;
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
justify-content:
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5088
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
4910
|
+
flex-direction: row;
|
|
4911
|
+
align-items: flex-start;
|
|
4912
|
+
justify-content: space-between;
|
|
4913
|
+
line-height: 24px;
|
|
4914
|
+
word-break: break-all;
|
|
5089
4915
|
}
|
|
5090
|
-
.
|
|
5091
|
-
|
|
4916
|
+
.E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container .ant-btn.ant-btn-link {
|
|
4917
|
+
height: 24px;
|
|
5092
4918
|
}
|
|
5093
|
-
.
|
|
5094
|
-
|
|
4919
|
+
.E_u3l9ivi .upload-drag-area.file-error.single {
|
|
4920
|
+
border-color: #f0483e;
|
|
4921
|
+
background: rgba(255, 74, 74, 0.1);
|
|
5095
4922
|
}
|
|
5096
|
-
.
|
|
4923
|
+
.E_u3l9ivi .upload-drag-area .file-info {
|
|
5097
4924
|
display: flex;
|
|
5098
|
-
|
|
4925
|
+
cursor: default;
|
|
5099
4926
|
align-items: flex-start;
|
|
5100
|
-
flex-wrap: wrap;
|
|
5101
|
-
padding: 8px;
|
|
5102
|
-
border: none;
|
|
5103
4927
|
}
|
|
5104
|
-
.
|
|
5105
|
-
|
|
5106
|
-
margin: 12px 0 0;
|
|
5107
|
-
order: 99;
|
|
5108
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4928
|
+
.E_u3l9ivi .upload-drag-area .file-info .icon-wrapper {
|
|
4929
|
+
margin: 4px 0;
|
|
5109
4930
|
}
|
|
5110
|
-
.
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
order: 98;
|
|
5114
|
-
margin: 12px 0 0;
|
|
4931
|
+
.E_u3l9ivi .upload-drag-area .file-info .file-name {
|
|
4932
|
+
margin: 3px 4px;
|
|
4933
|
+
text-align: left;
|
|
5115
4934
|
}
|
|
5116
|
-
.
|
|
5117
|
-
|
|
4935
|
+
.E_u3l9ivi .upload-drag-area:not(.ant-upload-disabled):not(.file-error):hover {
|
|
4936
|
+
border-color: #0080ff;
|
|
4937
|
+
background: rgba(0, 136, 255, 0.1);
|
|
5118
4938
|
}
|
|
5119
|
-
.
|
|
5120
|
-
|
|
4939
|
+
.E_u3l9ivi .upload-drag-area.ant-upload-disabled {
|
|
4940
|
+
opacity: 0.5;
|
|
5121
4941
|
}
|
|
5122
|
-
.
|
|
5123
|
-
|
|
5124
|
-
overflow: hidden;
|
|
4942
|
+
.E_u3l9ivi .upload-drag-area.ant-upload-disabled.reach-max-count {
|
|
4943
|
+
color: rgba(0, 21, 64, 0.3);
|
|
5125
4944
|
}
|
|
5126
|
-
.
|
|
5127
|
-
|
|
5128
|
-
|
|
4945
|
+
.E_u3l9ivi .upload-error {
|
|
4946
|
+
margin-top: 8px;
|
|
4947
|
+
color: #f0483e;
|
|
5129
4948
|
}
|
|
5130
|
-
.
|
|
5131
|
-
|
|
4949
|
+
.E_u3l9ivi .upload-file-info-list {
|
|
4950
|
+
gap: 4px;
|
|
4951
|
+
display: flex;
|
|
4952
|
+
flex-direction: column;
|
|
5132
4953
|
}
|
|
5133
|
-
.
|
|
5134
|
-
|
|
4954
|
+
.E_u3l9ivi .upload-file-list {
|
|
4955
|
+
width: 100%;
|
|
5135
4956
|
}
|
|
5136
|
-
.
|
|
5137
|
-
|
|
4957
|
+
.E_u3l9ivi .upload-file-list .upload-file-item {
|
|
4958
|
+
padding-bottom: 4px;
|
|
5138
4959
|
}
|
|
5139
|
-
.
|
|
5140
|
-
|
|
4960
|
+
.E_u3l9ivi .upload-file-list .upload-file-item:not(:last-child) {
|
|
4961
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
4962
|
+
margin-bottom: 4px;
|
|
5141
4963
|
}
|
|
5142
|
-
.
|
|
5143
|
-
|
|
4964
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info {
|
|
4965
|
+
display: flex;
|
|
4966
|
+
align-items: flex-start;
|
|
5144
4967
|
}
|
|
5145
|
-
.
|
|
5146
|
-
|
|
4968
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info {
|
|
4969
|
+
display: flex;
|
|
4970
|
+
align-items: flex-start;
|
|
4971
|
+
width: calc(100% - 25px);
|
|
5147
4972
|
}
|
|
5148
|
-
.
|
|
5149
|
-
|
|
4973
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .validating {
|
|
4974
|
+
color: rgba(0, 21, 64, 0.3);
|
|
5150
4975
|
}
|
|
5151
|
-
.
|
|
5152
|
-
|
|
5153
|
-
width: 24px;
|
|
5154
|
-
height: 24px;
|
|
5155
|
-
overflow: hidden;
|
|
4976
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .icon-wrapper {
|
|
4977
|
+
margin: 0 4px;
|
|
5156
4978
|
}
|
|
5157
|
-
.
|
|
5158
|
-
|
|
4979
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .remove-button {
|
|
4980
|
+
margin-left: auto;
|
|
5159
4981
|
}
|
|
5160
|
-
.
|
|
5161
|
-
|
|
5162
|
-
|
|
4982
|
+
.E_u3l9ivi .upload-file-list .upload-file-item .upload-file-error {
|
|
4983
|
+
color: #e75a3a;
|
|
4984
|
+
margin-left: 24px;
|
|
5163
4985
|
}
|
|
5164
|
-
|
|
5165
|
-
|
|
4986
|
+
|
|
4987
|
+
.E_ftdwz1g {
|
|
4988
|
+
display: flex;
|
|
4989
|
+
width: 100%;
|
|
4990
|
+
flex-direction: row;
|
|
4991
|
+
background: rgba(237, 241, 250, 0.6);
|
|
4992
|
+
padding: 7px 8px;
|
|
4993
|
+
border-radius: 4px;
|
|
4994
|
+
gap: 4px;
|
|
4995
|
+
align-items: self-start;
|
|
4996
|
+
color: #00122e;
|
|
5166
4997
|
}
|
|
5167
|
-
.
|
|
5168
|
-
.
|
|
5169
|
-
|
|
5170
|
-
font-size: 12px;
|
|
4998
|
+
.E_ftdwz1g .file-size,
|
|
4999
|
+
.E_ftdwz1g .file-size-unit {
|
|
5000
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5171
5001
|
}
|
|
5172
|
-
.
|
|
5173
|
-
|
|
5002
|
+
.E_ftdwz1g .file-info {
|
|
5003
|
+
flex-grow: 1;
|
|
5004
|
+
overflow: hidden;
|
|
5174
5005
|
}
|
|
5175
|
-
.
|
|
5176
|
-
|
|
5177
|
-
|
|
5178
|
-
position: relative;
|
|
5006
|
+
.E_ftdwz1g .icon-wrapper {
|
|
5007
|
+
margin-top: 2px;
|
|
5008
|
+
cursor: pointer;
|
|
5179
5009
|
}
|
|
5180
|
-
.
|
|
5181
|
-
|
|
5010
|
+
.E_ftdwz1g .upload-file-error {
|
|
5011
|
+
color: #f0483e;
|
|
5182
5012
|
}
|
|
5183
|
-
.
|
|
5184
|
-
background
|
|
5013
|
+
.E_ftdwz1g.file-error-wrapper {
|
|
5014
|
+
background: rgba(255, 74, 74, 0.1);
|
|
5015
|
+
}
|
|
5016
|
+
.E_ftdwz1g.disabled {
|
|
5017
|
+
opacity: 0.5;
|
|
5185
5018
|
}
|
|
5186
5019
|
|
|
5187
|
-
.
|
|
5020
|
+
.E_c1kghdax {
|
|
5021
|
+
color: #2d3a56;
|
|
5022
|
+
padding: 7px 12px;
|
|
5188
5023
|
display: flex;
|
|
5024
|
+
justify-content: space-between;
|
|
5189
5025
|
align-items: center;
|
|
5190
|
-
margin-top: 8px;
|
|
5191
|
-
gap: 8px;
|
|
5192
|
-
}
|
|
5193
|
-
.E_a138syjm button.ant-btn {
|
|
5194
|
-
padding: 2px 8px;
|
|
5195
|
-
height: 24px;
|
|
5196
|
-
}
|
|
5197
|
-
.E_a138syjm > span.maximum-desc {
|
|
5198
|
-
display: none;
|
|
5199
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5200
5026
|
}
|
|
5201
|
-
.
|
|
5202
|
-
|
|
5027
|
+
.E_c1kghdax.has-arrow {
|
|
5028
|
+
padding-left: 10px;
|
|
5203
5029
|
}
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
height: 24px;
|
|
5208
|
-
padding: 4px;
|
|
5209
|
-
margin-right: 8px;
|
|
5030
|
+
.E_c1kghdax.has-arrow .title-wrapper {
|
|
5031
|
+
cursor: pointer;
|
|
5032
|
+
color: #00122e;
|
|
5210
5033
|
}
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
height: 18px;
|
|
5034
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
5035
|
+
color: #2d3a56;
|
|
5036
|
+
font-weight: 600;
|
|
5215
5037
|
}
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
padding: 2px 8px;
|
|
5219
|
-
height: 24px;
|
|
5038
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
5039
|
+
transform: rotate(90deg);
|
|
5220
5040
|
}
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5041
|
+
.E_c1kghdax .sub-info {
|
|
5042
|
+
font-size: 12px;
|
|
5043
|
+
line-height: 18px;
|
|
5224
5044
|
}
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5045
|
+
.E_c1kghdax .title-wrapper {
|
|
5046
|
+
display: flex;
|
|
5047
|
+
align-items: center;
|
|
5048
|
+
user-select: none;
|
|
5049
|
+
flex-grow: 1;
|
|
5050
|
+
font-size: 12px;
|
|
5051
|
+
line-height: 18px;
|
|
5052
|
+
color: #2d3a56;
|
|
5053
|
+
font-weight: 700;
|
|
5054
|
+
}
|
|
5055
|
+
.E_c1kghdax .collapse-arrow {
|
|
5056
|
+
transition: all 50ms ease-out 0ms;
|
|
5057
|
+
margin-right: 2px;
|
|
5229
5058
|
}
|
|
5230
5059
|
|
|
5231
|
-
.
|
|
5232
|
-
|
|
5233
|
-
color: #00122e;
|
|
5234
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
5235
|
-
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
5236
|
-
word-break: break-all;
|
|
5237
|
-
display: inline;
|
|
5238
|
-
white-space: normal;
|
|
5060
|
+
.E_c1yd35n {
|
|
5061
|
+
padding: 0 12px 14px 12px;
|
|
5239
5062
|
}
|
|
5240
5063
|
|
|
5241
5064
|
.E_t1tbywr9 {
|
|
@@ -5399,13 +5222,134 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5399
5222
|
height: 16px;
|
|
5400
5223
|
}
|
|
5401
5224
|
|
|
5402
|
-
.
|
|
5403
|
-
|
|
5225
|
+
.E_b14q2gmw {
|
|
5226
|
+
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);
|
|
5404
5227
|
}
|
|
5405
|
-
|
|
5406
|
-
|
|
5407
|
-
|
|
5408
|
-
|
|
5228
|
+
|
|
5229
|
+
.E_c1eym6el {
|
|
5230
|
+
border-radius: 8px;
|
|
5231
|
+
background-color: white;
|
|
5232
|
+
}
|
|
5233
|
+
.E_c1eym6el.hoverable {
|
|
5234
|
+
cursor: pointer;
|
|
5235
|
+
}
|
|
5236
|
+
.E_c1eym6el.hoverable:hover {
|
|
5237
|
+
transition: all 200ms ease;
|
|
5238
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
5239
|
+
transform: translateY(-4px);
|
|
5240
|
+
}
|
|
5241
|
+
|
|
5242
|
+
.E_ckui4s7 {
|
|
5243
|
+
color: #2d3a56;
|
|
5244
|
+
line-height: 22px;
|
|
5245
|
+
display: inline-flex;
|
|
5246
|
+
}
|
|
5247
|
+
.E_ckui4s7 .ant-checkbox {
|
|
5248
|
+
height: 22px;
|
|
5249
|
+
display: flex;
|
|
5250
|
+
align-items: center;
|
|
5251
|
+
top: 0;
|
|
5252
|
+
}
|
|
5253
|
+
.E_ckui4s7 .ant-checkbox-checked::after {
|
|
5254
|
+
border: none;
|
|
5255
|
+
}
|
|
5256
|
+
.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 {
|
|
5257
|
+
border-color: #0080ff;
|
|
5258
|
+
}
|
|
5259
|
+
.E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
|
|
5260
|
+
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
5261
|
+
}
|
|
5262
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
5263
|
+
border: 1px solid #0080ff;
|
|
5264
|
+
}
|
|
5265
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
5266
|
+
background: #0080ff;
|
|
5267
|
+
}
|
|
5268
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
5269
|
+
background-color: #fff;
|
|
5270
|
+
height: 2px;
|
|
5271
|
+
width: 10px;
|
|
5272
|
+
border-radius: 2px;
|
|
5273
|
+
}
|
|
5274
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled {
|
|
5275
|
+
opacity: 0.5;
|
|
5276
|
+
}
|
|
5277
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
5278
|
+
background: rgba(211, 218, 235, 0.6);
|
|
5279
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
5280
|
+
}
|
|
5281
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
5282
|
+
border-color: #2d3a56;
|
|
5283
|
+
}
|
|
5284
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
5285
|
+
background: #2d3a56;
|
|
5286
|
+
}
|
|
5287
|
+
.E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
|
|
5288
|
+
padding: 0;
|
|
5289
|
+
}
|
|
5290
|
+
.E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
|
|
5291
|
+
display: inline-block;
|
|
5292
|
+
margin-left: 12px;
|
|
5293
|
+
color: #2d3a56;
|
|
5294
|
+
}
|
|
5295
|
+
.E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
|
|
5296
|
+
margin-left: 28px;
|
|
5297
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5298
|
+
}
|
|
5299
|
+
.E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
|
|
5300
|
+
margin-left: 8px;
|
|
5301
|
+
}
|
|
5302
|
+
.E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
|
|
5303
|
+
margin-left: 24px;
|
|
5304
|
+
}
|
|
5305
|
+
|
|
5306
|
+
.E_lht19u8 {
|
|
5307
|
+
width: 64px;
|
|
5308
|
+
height: 64px;
|
|
5309
|
+
display: flex;
|
|
5310
|
+
align-items: center;
|
|
5311
|
+
justify-content: center;
|
|
5312
|
+
position: relative;
|
|
5313
|
+
opacity: 0.2;
|
|
5314
|
+
}
|
|
5315
|
+
|
|
5316
|
+
.E_lk3gkp4 {
|
|
5317
|
+
position: absolute;
|
|
5318
|
+
width: 5px;
|
|
5319
|
+
height: 48px;
|
|
5320
|
+
left: 9.33px;
|
|
5321
|
+
top: 40.5px;
|
|
5322
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5323
|
+
border-radius: 5px;
|
|
5324
|
+
transform: rotate(-128deg);
|
|
5325
|
+
transform-origin: top left;
|
|
5326
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
5327
|
+
}
|
|
5328
|
+
|
|
5329
|
+
.E_ll4n94n {
|
|
5330
|
+
position: absolute;
|
|
5331
|
+
width: 5px;
|
|
5332
|
+
height: 48px;
|
|
5333
|
+
left: 40.8px;
|
|
5334
|
+
top: 8.4px;
|
|
5335
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5336
|
+
border-radius: 5px;
|
|
5337
|
+
transform: rotate(-8deg);
|
|
5338
|
+
transform-origin: top left;
|
|
5339
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
5340
|
+
}
|
|
5341
|
+
|
|
5342
|
+
.E_l17lbdo6 {
|
|
5343
|
+
position: absolute;
|
|
5344
|
+
width: 5px;
|
|
5345
|
+
height: 48px;
|
|
5346
|
+
left: 52.9px;
|
|
5347
|
+
top: 51.8px;
|
|
5348
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5349
|
+
border-radius: 5px;
|
|
5350
|
+
transform: rotate(112deg);
|
|
5351
|
+
transform-origin: top left;
|
|
5352
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
5409
5353
|
}
|
|
5410
5354
|
|
|
5411
5355
|
.E_sjob3jg {
|
|
@@ -5556,58 +5500,178 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5556
5500
|
display: flex;
|
|
5557
5501
|
align-items: center;
|
|
5558
5502
|
}
|
|
5559
|
-
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
5560
|
-
min-height: auto;
|
|
5561
|
-
white-space: nowrap;
|
|
5503
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
5504
|
+
min-height: auto;
|
|
5505
|
+
white-space: nowrap;
|
|
5506
|
+
}
|
|
5507
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
5508
|
+
font-size: 13px;
|
|
5509
|
+
line-height: 20px;
|
|
5510
|
+
max-width: 100%;
|
|
5511
|
+
padding-right: 0;
|
|
5512
|
+
}
|
|
5513
|
+
.E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
|
|
5514
|
+
background: rgba(0, 128, 255, 0.1);
|
|
5515
|
+
}
|
|
5516
|
+
|
|
5517
|
+
.E_h6l1tj4 {
|
|
5518
|
+
width: 100%;
|
|
5519
|
+
display: inline-flex;
|
|
5520
|
+
align-items: center;
|
|
5521
|
+
justify-content: center;
|
|
5522
|
+
column-gap: 4px;
|
|
5523
|
+
}
|
|
5524
|
+
.E_h6l1tj4 .step-item-prefix-container {
|
|
5525
|
+
display: inline-flex;
|
|
5526
|
+
align-items: center;
|
|
5527
|
+
width: 18px;
|
|
5528
|
+
height: 18px;
|
|
5529
|
+
color: rgba(44, 56, 82, 0.75);
|
|
5530
|
+
justify-content: center;
|
|
5531
|
+
}
|
|
5532
|
+
|
|
5533
|
+
.E_v18frne8 {
|
|
5534
|
+
width: 100%;
|
|
5535
|
+
display: flex;
|
|
5536
|
+
align-items: center;
|
|
5537
|
+
justify-content: center;
|
|
5538
|
+
column-gap: 6px;
|
|
5539
|
+
font-size: 13px;
|
|
5540
|
+
}
|
|
5541
|
+
.E_v18frne8 .step-item-prefix-container {
|
|
5542
|
+
display: inline-flex;
|
|
5543
|
+
align-items: center;
|
|
5544
|
+
min-width: 20px;
|
|
5545
|
+
min-height: 20px;
|
|
5546
|
+
color: rgba(44, 56, 82, 0.75);
|
|
5547
|
+
justify-content: center;
|
|
5548
|
+
}
|
|
5549
|
+
|
|
5550
|
+
.E_w7ob4th.outside-tag {
|
|
5551
|
+
padding-left: 0;
|
|
5552
|
+
}
|
|
5553
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
5554
|
+
border-radius: 4px 0 0 4px;
|
|
5555
|
+
padding-right: 4px;
|
|
5556
|
+
margin-right: 4px;
|
|
5557
|
+
}
|
|
5558
|
+
|
|
5559
|
+
.E_l1ucdodl {
|
|
5560
|
+
margin: 0;
|
|
5561
|
+
border-radius: 20px;
|
|
5562
|
+
padding: 2px 10px;
|
|
5563
|
+
height: 22px;
|
|
5564
|
+
display: flex;
|
|
5565
|
+
align-items: center;
|
|
5566
|
+
}
|
|
5567
|
+
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
5568
|
+
color: #FFFFFF;
|
|
5569
|
+
}
|
|
5570
|
+
.E_l1ucdodl.tag-hover {
|
|
5571
|
+
cursor: pointer;
|
|
5572
|
+
}
|
|
5573
|
+
.E_l1ucdodl.ui-kit-status-legend {
|
|
5574
|
+
color: #00122e;
|
|
5575
|
+
}
|
|
5576
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
5577
|
+
margin-right: 6px;
|
|
5578
|
+
}
|
|
5579
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
5580
|
+
margin-left: 8px;
|
|
5581
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5582
|
+
}
|
|
5583
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
5584
|
+
color: #FFFFFF;
|
|
5585
|
+
}
|
|
5586
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
5587
|
+
background-color: #0080ff;
|
|
5588
|
+
}
|
|
5589
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
5590
|
+
background-color: #f0483e;
|
|
5591
|
+
}
|
|
5592
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
5593
|
+
background-color: #fea008;
|
|
5594
|
+
}
|
|
5595
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
5596
|
+
background-color: #00ba5d;
|
|
5597
|
+
}
|
|
5598
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5599
|
+
background-color: #6b7d99;
|
|
5600
|
+
}
|
|
5601
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
5602
|
+
background-color: #7E41FF;
|
|
5603
|
+
}
|
|
5604
|
+
|
|
5605
|
+
.E_s1qj66nc {
|
|
5606
|
+
width: 8px;
|
|
5607
|
+
height: 8px;
|
|
5608
|
+
border-radius: 50%;
|
|
5609
|
+
display: inline-block;
|
|
5610
|
+
}
|
|
5611
|
+
|
|
5612
|
+
.E_s5x1boq {
|
|
5613
|
+
width: 8px;
|
|
5614
|
+
height: 8px;
|
|
5615
|
+
border-radius: 2px;
|
|
5616
|
+
display: inline-block;
|
|
5562
5617
|
}
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
max-width: 100%;
|
|
5567
|
-
padding-right: 0;
|
|
5618
|
+
|
|
5619
|
+
.E_c1xm185 {
|
|
5620
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5568
5621
|
}
|
|
5569
|
-
|
|
5570
|
-
|
|
5622
|
+
|
|
5623
|
+
.E_c1x5l5qc {
|
|
5624
|
+
flex: 1;
|
|
5571
5625
|
}
|
|
5572
5626
|
|
|
5573
|
-
.
|
|
5574
|
-
|
|
5575
|
-
display: inline-flex;
|
|
5627
|
+
.E_r77hffu {
|
|
5628
|
+
display: flex;
|
|
5576
5629
|
align-items: center;
|
|
5630
|
+
justify-content: space-between;
|
|
5631
|
+
column-gap: 6px;
|
|
5632
|
+
}
|
|
5633
|
+
|
|
5634
|
+
.E_p1cmxsf7 {
|
|
5635
|
+
display: flex;
|
|
5636
|
+
flex-direction: column;
|
|
5577
5637
|
justify-content: center;
|
|
5578
|
-
|
|
5638
|
+
row-gap: var(--p1cmxsf7-0);
|
|
5579
5639
|
}
|
|
5580
|
-
.
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5640
|
+
.E_p1cmxsf7 .antd5-progress-line {
|
|
5641
|
+
font-size: 0;
|
|
5642
|
+
margin-bottom: unset;
|
|
5643
|
+
margin-inline-end: unset;
|
|
5644
|
+
}
|
|
5645
|
+
|
|
5646
|
+
.E_slr2ynn {
|
|
5647
|
+
padding: 0 8px;
|
|
5584
5648
|
height: 18px;
|
|
5585
|
-
color: rgba(44, 56, 82, 0.75);
|
|
5586
|
-
justify-content: center;
|
|
5587
5649
|
}
|
|
5588
5650
|
|
|
5589
|
-
.
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
align-items: center;
|
|
5593
|
-
justify-content: center;
|
|
5594
|
-
column-gap: 6px;
|
|
5595
|
-
font-size: 13px;
|
|
5651
|
+
.E_m140wbb6 {
|
|
5652
|
+
padding: 2px 8px;
|
|
5653
|
+
height: 24px;
|
|
5596
5654
|
}
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
min-width: 20px;
|
|
5601
|
-
min-height: 20px;
|
|
5602
|
-
color: rgba(44, 56, 82, 0.75);
|
|
5603
|
-
justify-content: center;
|
|
5655
|
+
|
|
5656
|
+
.E_t1fozc1i {
|
|
5657
|
+
margin: 0;
|
|
5604
5658
|
}
|
|
5605
5659
|
|
|
5606
|
-
.
|
|
5660
|
+
.E_i1vxv4ln {
|
|
5607
5661
|
margin-right: 4px;
|
|
5608
5662
|
height: 16px;
|
|
5609
5663
|
}
|
|
5610
5664
|
|
|
5665
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
5666
|
+
font-weight: 700;
|
|
5667
|
+
color: #00122e;
|
|
5668
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
5669
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
5670
|
+
word-break: break-all;
|
|
5671
|
+
display: inline;
|
|
5672
|
+
white-space: normal;
|
|
5673
|
+
}
|
|
5674
|
+
|
|
5611
5675
|
.E_t13ef470 {
|
|
5612
5676
|
height: 100%;
|
|
5613
5677
|
}
|
|
@@ -5638,91 +5702,204 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5638
5702
|
background: rgba(163, 180, 204, 0.18);
|
|
5639
5703
|
}
|
|
5640
5704
|
|
|
5641
|
-
.
|
|
5642
|
-
margin:
|
|
5643
|
-
|
|
5644
|
-
padding: 2px 10px;
|
|
5645
|
-
height: 22px;
|
|
5646
|
-
display: flex;
|
|
5647
|
-
align-items: center;
|
|
5705
|
+
.E_i1g85yz3 {
|
|
5706
|
+
margin-right: 4px;
|
|
5707
|
+
height: 16px;
|
|
5648
5708
|
}
|
|
5649
|
-
|
|
5650
|
-
|
|
5709
|
+
|
|
5710
|
+
.E_t1dtlqs1 {
|
|
5711
|
+
margin-bottom: 4px;
|
|
5712
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5651
5713
|
}
|
|
5652
|
-
|
|
5653
|
-
|
|
5714
|
+
|
|
5715
|
+
.E_s1ese5oy {
|
|
5716
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5717
|
+
line-height: 32px;
|
|
5718
|
+
height: 32px;
|
|
5719
|
+
margin-bottom: 0;
|
|
5654
5720
|
}
|
|
5655
|
-
.
|
|
5721
|
+
.E_s1ese5oy.primary, .E_s1ese5oy.info {
|
|
5722
|
+
color: #0080ff;
|
|
5723
|
+
}
|
|
5724
|
+
.E_s1ese5oy.warning {
|
|
5725
|
+
color: #ffa500;
|
|
5726
|
+
}
|
|
5727
|
+
.E_s1ese5oy.success {
|
|
5728
|
+
color: #00ba5d;
|
|
5729
|
+
}
|
|
5730
|
+
.E_s1ese5oy.danger, .E_s1ese5oy.error {
|
|
5731
|
+
color: #f0483e;
|
|
5732
|
+
}
|
|
5733
|
+
.E_s1ese5oy.normal {
|
|
5734
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5735
|
+
}
|
|
5736
|
+
|
|
5737
|
+
.E_b1ibis43 {
|
|
5738
|
+
margin-bottom: 0;
|
|
5656
5739
|
color: #00122e;
|
|
5657
5740
|
}
|
|
5658
|
-
|
|
5741
|
+
|
|
5742
|
+
.E_b11xxjd2 {
|
|
5743
|
+
line-height: 32px;
|
|
5659
5744
|
margin-right: 6px;
|
|
5660
5745
|
}
|
|
5661
|
-
|
|
5662
|
-
|
|
5746
|
+
|
|
5747
|
+
.E_bsub5bw.with-description {
|
|
5748
|
+
height: 24px;
|
|
5749
|
+
flex: 1;
|
|
5750
|
+
position: relative;
|
|
5751
|
+
top: -7px;
|
|
5752
|
+
}
|
|
5753
|
+
.E_bsub5bw p {
|
|
5754
|
+
width: 100%;
|
|
5755
|
+
overflow: hidden;
|
|
5756
|
+
text-overflow: ellipsis;
|
|
5757
|
+
white-space: nowrap;
|
|
5758
|
+
}
|
|
5759
|
+
|
|
5760
|
+
.E_tmoyoag {
|
|
5761
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
5762
|
+
border-radius: 8px;
|
|
5763
|
+
overflow: auto;
|
|
5764
|
+
}
|
|
5765
|
+
.E_tmoyoag .ant-list {
|
|
5766
|
+
position: relative;
|
|
5767
|
+
}
|
|
5768
|
+
.E_tmoyoag .ant-list .ant-list-item:last-child {
|
|
5769
|
+
border-bottom: none;
|
|
5770
|
+
}
|
|
5771
|
+
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
5772
|
+
position: sticky;
|
|
5773
|
+
top: 0;
|
|
5774
|
+
z-index: 2;
|
|
5775
|
+
display: flex;
|
|
5776
|
+
padding: 8px;
|
|
5777
|
+
flex-wrap: nowrap;
|
|
5778
|
+
justify-content: flex-start;
|
|
5779
|
+
background: #f2f5fa;
|
|
5780
|
+
font-size: 14px;
|
|
5663
5781
|
color: rgba(44, 56, 82, 0.6);
|
|
5782
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
5664
5783
|
}
|
|
5665
|
-
.
|
|
5666
|
-
|
|
5784
|
+
.E_tmoyoag .ant-list .eagle-table-form-header {
|
|
5785
|
+
align-items: inherit;
|
|
5667
5786
|
}
|
|
5668
|
-
.
|
|
5669
|
-
|
|
5787
|
+
.E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
|
|
5788
|
+
margin-bottom: 0;
|
|
5670
5789
|
}
|
|
5671
|
-
.
|
|
5672
|
-
|
|
5790
|
+
.E_tmoyoag .ant-list .eagle-table-form-row {
|
|
5791
|
+
display: flex;
|
|
5792
|
+
justify-content: flex-start;
|
|
5793
|
+
align-items: flex-start;
|
|
5794
|
+
flex-wrap: wrap;
|
|
5795
|
+
padding: 8px;
|
|
5796
|
+
border: none;
|
|
5673
5797
|
}
|
|
5674
|
-
.
|
|
5675
|
-
|
|
5798
|
+
.E_tmoyoag .ant-list .eagle-table-form-row .row-description {
|
|
5799
|
+
flex-basis: 100%;
|
|
5800
|
+
margin: 12px 0 0;
|
|
5801
|
+
order: 99;
|
|
5802
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5676
5803
|
}
|
|
5677
|
-
.
|
|
5678
|
-
|
|
5804
|
+
.E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
|
|
5805
|
+
color: #f0483e;
|
|
5806
|
+
flex-basis: 100%;
|
|
5807
|
+
order: 98;
|
|
5808
|
+
margin: 12px 0 0;
|
|
5679
5809
|
}
|
|
5680
|
-
.
|
|
5681
|
-
background-color:
|
|
5810
|
+
.E_tmoyoag .ant-list .eagle-table-form-row:hover {
|
|
5811
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
5682
5812
|
}
|
|
5683
|
-
.
|
|
5684
|
-
background-color:
|
|
5813
|
+
.E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
|
|
5814
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
5815
|
+
}
|
|
5816
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell {
|
|
5817
|
+
flex: 1 0 0;
|
|
5818
|
+
overflow: hidden;
|
|
5819
|
+
}
|
|
5820
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
|
|
5821
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5822
|
+
margin: 0;
|
|
5823
|
+
}
|
|
5824
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
|
|
5825
|
+
text-align: center;
|
|
5826
|
+
}
|
|
5827
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
|
|
5828
|
+
text-align: center;
|
|
5829
|
+
}
|
|
5830
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
|
|
5831
|
+
text-align: left;
|
|
5832
|
+
}
|
|
5833
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content > * {
|
|
5834
|
+
text-align: left;
|
|
5835
|
+
}
|
|
5836
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
|
|
5837
|
+
text-align: right;
|
|
5838
|
+
}
|
|
5839
|
+
.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 > * {
|
|
5840
|
+
text-align: right;
|
|
5841
|
+
}
|
|
5842
|
+
.E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
5843
|
+
margin-right: 8px;
|
|
5844
|
+
}
|
|
5845
|
+
.E_tmoyoag .ant-list .ant-list-item-action {
|
|
5846
|
+
padding: 4px;
|
|
5847
|
+
width: 24px;
|
|
5848
|
+
height: 24px;
|
|
5849
|
+
overflow: hidden;
|
|
5850
|
+
}
|
|
5851
|
+
.E_tmoyoag .ant-list .ant-list-item-action li {
|
|
5852
|
+
padding: 0;
|
|
5853
|
+
}
|
|
5854
|
+
.E_tmoyoag .ant-list .delete-row-icon.disabled {
|
|
5855
|
+
cursor: not-allowed;
|
|
5856
|
+
opacity: 0.5;
|
|
5857
|
+
}
|
|
5858
|
+
.E_tmoyoag .ant-list.size-default .ant-list-item-action {
|
|
5859
|
+
margin: 0;
|
|
5860
|
+
}
|
|
5861
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
5862
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
5863
|
+
border-radius: 5px;
|
|
5864
|
+
font-size: 12px;
|
|
5685
5865
|
}
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
width: 8px;
|
|
5689
|
-
height: 8px;
|
|
5690
|
-
border-radius: 50%;
|
|
5691
|
-
display: inline-block;
|
|
5866
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
5867
|
+
font-size: inherit;
|
|
5692
5868
|
}
|
|
5693
|
-
|
|
5694
|
-
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
border-radius: 2px;
|
|
5698
|
-
display: inline-block;
|
|
5869
|
+
.E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
5870
|
+
min-height: 24px;
|
|
5871
|
+
font-size: 12px;
|
|
5872
|
+
position: relative;
|
|
5699
5873
|
}
|
|
5700
|
-
|
|
5701
|
-
.
|
|
5702
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5874
|
+
.E_tmoyoag.row-split-by-border .eagle-table-form-row {
|
|
5875
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
5703
5876
|
}
|
|
5704
|
-
|
|
5705
|
-
.
|
|
5706
|
-
flex: 1;
|
|
5877
|
+
.E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
5878
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
5707
5879
|
}
|
|
5708
5880
|
|
|
5709
|
-
.
|
|
5881
|
+
.E_a138syjm {
|
|
5710
5882
|
display: flex;
|
|
5711
5883
|
align-items: center;
|
|
5712
|
-
|
|
5713
|
-
column-gap: 6px;
|
|
5884
|
+
gap: 8px;
|
|
5714
5885
|
}
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
flex-direction: column;
|
|
5719
|
-
justify-content: center;
|
|
5720
|
-
row-gap: var(--p1cmxsf7-0);
|
|
5886
|
+
.E_a138syjm button.ant-btn {
|
|
5887
|
+
padding: 2px 8px;
|
|
5888
|
+
height: 24px;
|
|
5721
5889
|
}
|
|
5722
|
-
.
|
|
5723
|
-
|
|
5724
|
-
|
|
5725
|
-
|
|
5890
|
+
.E_a138syjm > span.maximum-desc {
|
|
5891
|
+
display: none;
|
|
5892
|
+
color: rgba(44, 56, 82, 0.6);
|
|
5893
|
+
}
|
|
5894
|
+
.E_a138syjm > span.maximum-desc.disabled {
|
|
5895
|
+
display: inline;
|
|
5896
|
+
}
|
|
5897
|
+
|
|
5898
|
+
.E_d77i8u0 {
|
|
5899
|
+
width: 24px;
|
|
5900
|
+
height: 24px;
|
|
5901
|
+
padding: 4px;
|
|
5902
|
+
margin-right: 8px;
|
|
5726
5903
|
}
|
|
5727
5904
|
|
|
5728
5905
|
.E_m11nzl2x {
|
|
@@ -6128,10 +6305,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6128
6305
|
background-color: #E07F00;
|
|
6129
6306
|
}
|
|
6130
6307
|
|
|
6131
|
-
.E_b1jaupqb {
|
|
6132
|
-
color: #F0483E;
|
|
6133
|
-
}
|
|
6134
|
-
|
|
6135
6308
|
.E_t59qhqp {
|
|
6136
6309
|
padding: 0px;
|
|
6137
6310
|
padding-top: 5px;
|
|
@@ -6180,6 +6353,10 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6180
6353
|
color: #00122E;
|
|
6181
6354
|
}
|
|
6182
6355
|
|
|
6356
|
+
.E_b1jaupqb {
|
|
6357
|
+
color: #F0483E;
|
|
6358
|
+
}
|
|
6359
|
+
|
|
6183
6360
|
.E_icab5o7 {
|
|
6184
6361
|
--modal-to-viewport-margin: 10px;
|
|
6185
6362
|
--modal-body-padding-bottom: 40px;
|
|
@@ -6606,10 +6783,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6606
6783
|
background: rgba(225, 230, 241, 0.6);
|
|
6607
6784
|
}
|
|
6608
6785
|
|
|
6609
|
-
.E_t1616y1o {
|
|
6610
|
-
color: #fff;
|
|
6611
|
-
}
|
|
6612
|
-
|
|
6613
6786
|
.E_t1gvlxt5 {
|
|
6614
6787
|
min-width: 0;
|
|
6615
6788
|
flex: 1;
|
|
@@ -6624,265 +6797,88 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6624
6797
|
}
|
|
6625
6798
|
.E_t1gvlxt5 .progress-desc {
|
|
6626
6799
|
flex: 1;
|
|
6627
|
-
max-width: fit-content;
|
|
6628
|
-
}
|
|
6629
|
-
|
|
6630
|
-
.E_a1ji6r68 {
|
|
6631
|
-
display: flex;
|
|
6632
|
-
align-items: center;
|
|
6633
|
-
column-gap: var(--a1ji6r68-0);
|
|
6634
|
-
}
|
|
6635
|
-
|
|
6636
|
-
.E_f16blduf.ant-form-item {
|
|
6637
|
-
margin-bottom: 0;
|
|
6638
|
-
}
|
|
6639
|
-
.E_f16blduf .ant-form-item-explain {
|
|
6640
|
-
display: none;
|
|
6641
|
-
min-height: 18px;
|
|
6642
|
-
margin-top: 5px;
|
|
6643
|
-
font-family: "Inter";
|
|
6644
|
-
font-weight: 400;
|
|
6645
|
-
font-size: 12px;
|
|
6646
|
-
line-height: 18px;
|
|
6647
|
-
}
|
|
6648
|
-
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
6649
|
-
white-space: pre-wrap;
|
|
6650
|
-
}
|
|
6651
|
-
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
6652
|
-
display: block;
|
|
6653
|
-
}
|
|
6654
|
-
|
|
6655
|
-
.E_a9y3flr {
|
|
6656
|
-
margin-left: 8px;
|
|
6657
|
-
}
|
|
6658
|
-
|
|
6659
|
-
.E_a1njc627 {
|
|
6660
|
-
font-size: 12px;
|
|
6661
|
-
color: #00122e;
|
|
6662
|
-
}
|
|
6663
|
-
|
|
6664
|
-
.E_d1u4ndxc {
|
|
6665
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
6666
|
-
font-size: 12px;
|
|
6667
|
-
}
|
|
6668
|
-
|
|
6669
|
-
.E_f6xb0iv {
|
|
6670
|
-
min-width: 0;
|
|
6671
|
-
flex: 1;
|
|
6672
|
-
}
|
|
6673
|
-
|
|
6674
|
-
.E_b1dhu7ov.antd5-progress {
|
|
6675
|
-
width: 220px;
|
|
6676
|
-
}
|
|
6677
|
-
|
|
6678
|
-
.E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
|
|
6679
|
-
content: "";
|
|
6680
|
-
display: block;
|
|
6681
|
-
height: 8px;
|
|
6682
|
-
background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
|
|
6683
|
-
animation: loading 1600ms ease-out infinite;
|
|
6684
|
-
opacity: 1;
|
|
6685
|
-
}
|
|
6686
|
-
@keyframes loading {
|
|
6687
|
-
from {
|
|
6688
|
-
transform: translateX(-100%);
|
|
6689
|
-
}
|
|
6690
|
-
to {
|
|
6691
|
-
transform: translateX(100%);
|
|
6692
|
-
}
|
|
6693
|
-
}
|
|
6694
|
-
|
|
6695
|
-
.E_i14c7jc8 {
|
|
6696
|
-
color: var(--i14c7jc8-0);
|
|
6697
|
-
}
|
|
6698
|
-
|
|
6699
|
-
.E_i1ibuolf {
|
|
6700
|
-
display: flex;
|
|
6701
|
-
align-items: center;
|
|
6702
|
-
column-gap: 4px;
|
|
6703
|
-
font-size: 12px;
|
|
6704
|
-
color: rgba(44, 56, 82, 0.7490196078);
|
|
6705
|
-
}
|
|
6706
|
-
|
|
6707
|
-
.E_gmyahx3 {
|
|
6708
|
-
cursor: pointer;
|
|
6709
|
-
}
|
|
6710
|
-
.E_gmyahx3 .link-text {
|
|
6711
|
-
color: rgba(0, 21, 64, 0.3);
|
|
6712
|
-
}
|
|
6713
|
-
.E_gmyahx3:hover .link-text {
|
|
6714
|
-
color: #0080ff;
|
|
6715
|
-
}
|
|
6716
|
-
|
|
6717
|
-
.E_c18bcrac {
|
|
6718
|
-
display: inline-block;
|
|
6719
|
-
width: 100%;
|
|
6720
|
-
}
|
|
6721
|
-
.E_c18bcrac .recharts-wrapper {
|
|
6722
|
-
margin-left: 4px;
|
|
6723
|
-
}
|
|
6724
|
-
|
|
6725
|
-
.E_cro7kg2 {
|
|
6726
|
-
padding: 4px;
|
|
6727
|
-
}
|
|
6728
|
-
.E_cro7kg2 .unit {
|
|
6729
|
-
color: white;
|
|
6730
|
-
}
|
|
6731
|
-
|
|
6732
|
-
.E_c14wcxf0 {
|
|
6733
|
-
display: flex;
|
|
6734
|
-
justify-content: space-between;
|
|
6735
|
-
align-items: center;
|
|
6736
|
-
font-size: 13px;
|
|
6737
|
-
line-height: 24px;
|
|
6738
|
-
color: #cccccc;
|
|
6739
|
-
white-space: nowrap;
|
|
6740
|
-
}
|
|
6741
|
-
.E_c14wcxf0 label {
|
|
6742
|
-
margin-right: 32px;
|
|
6743
|
-
}
|
|
6744
|
-
|
|
6745
|
-
.E_coy29mj.E_c14wcxf0 {
|
|
6746
|
-
font-weight: bold;
|
|
6747
|
-
color: white;
|
|
6748
|
-
}
|
|
6749
|
-
|
|
6750
|
-
.E_s11212zy {
|
|
6751
|
-
width: 8px;
|
|
6752
|
-
height: 8px;
|
|
6753
|
-
border-radius: 2px;
|
|
6754
|
-
display: inline-block;
|
|
6755
|
-
background: var(--s11212zy-0);
|
|
6756
|
-
border: 1px solid #fff;
|
|
6757
|
-
box-sizing: content-box;
|
|
6758
|
-
margin-right: 6px;
|
|
6759
|
-
}
|
|
6760
|
-
|
|
6761
|
-
.E_p1lyky6c > :first-child {
|
|
6762
|
-
font-weight: bold;
|
|
6763
|
-
color: white;
|
|
6764
|
-
margin-right: 4px;
|
|
6765
|
-
}
|
|
6766
|
-
|
|
6767
|
-
span.E_tqjc4ui {
|
|
6768
|
-
margin: 0 2px;
|
|
6769
|
-
}
|
|
6770
|
-
|
|
6771
|
-
.E_s1iv0tp1 .enabled-switch {
|
|
6772
|
-
display: flex;
|
|
6773
|
-
align-items: center;
|
|
6774
|
-
}
|
|
6775
|
-
.E_s1iv0tp1 .enabled-text {
|
|
6776
|
-
margin-right: 8px;
|
|
6777
|
-
}
|
|
6778
|
-
|
|
6779
|
-
.E_t1sqg15u {
|
|
6780
|
-
background: white;
|
|
6781
|
-
}
|
|
6782
|
-
.E_t1sqg15u.inline .table-row {
|
|
6783
|
-
flex-direction: column;
|
|
6784
|
-
}
|
|
6785
|
-
.E_t1sqg15u.inline .table-row > label {
|
|
6786
|
-
padding: 0 16px 7px 0;
|
|
6787
|
-
}
|
|
6788
|
-
.E_t1sqg15u.has-border .table-header {
|
|
6789
|
-
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
6790
|
-
}
|
|
6791
|
-
.E_t1sqg15u.has-border .hiddenBorder {
|
|
6792
|
-
border-top: none !important;
|
|
6793
|
-
}
|
|
6794
|
-
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
6795
|
-
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
6796
|
-
}
|
|
6797
|
-
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
6798
|
-
padding-bottom: 0;
|
|
6799
|
-
}
|
|
6800
|
-
.E_t1sqg15u.align-right .content {
|
|
6801
|
-
text-align: right;
|
|
6802
|
-
}
|
|
6803
|
-
.E_t1sqg15u .uuid-row {
|
|
6804
|
-
display: flex;
|
|
6805
|
-
justify-content: space-between;
|
|
6806
|
-
}
|
|
6807
|
-
.E_t1sqg15u .uuid-row .id-text {
|
|
6808
|
-
white-space: nowrap;
|
|
6809
|
-
overflow: hidden;
|
|
6810
|
-
text-overflow: ellipsis;
|
|
6800
|
+
max-width: fit-content;
|
|
6811
6801
|
}
|
|
6812
6802
|
|
|
6813
|
-
.
|
|
6803
|
+
.E_a1ji6r68 {
|
|
6814
6804
|
display: flex;
|
|
6815
|
-
justify-content: space-between;
|
|
6816
6805
|
align-items: center;
|
|
6817
|
-
|
|
6818
|
-
min-height: 32px;
|
|
6819
|
-
}
|
|
6820
|
-
.E_t4zczcp .table-title {
|
|
6821
|
-
color: rgba(44, 56, 82, 0.6);
|
|
6822
|
-
font-weight: 600;
|
|
6823
|
-
font-size: 12px;
|
|
6824
|
-
line-height: 8px;
|
|
6825
|
-
}
|
|
6826
|
-
.E_t4zczcp .edit-icon {
|
|
6827
|
-
font-size: 16px;
|
|
6828
|
-
color: rgba(10, 37, 85, 0.6);
|
|
6829
|
-
cursor: pointer;
|
|
6806
|
+
column-gap: var(--a1ji6r68-0);
|
|
6830
6807
|
}
|
|
6831
6808
|
|
|
6832
|
-
.
|
|
6833
|
-
|
|
6834
|
-
line-height: 18px;
|
|
6809
|
+
.E_t1616y1o {
|
|
6810
|
+
color: #fff;
|
|
6835
6811
|
}
|
|
6836
6812
|
|
|
6837
|
-
.
|
|
6838
|
-
|
|
6839
|
-
padding: 8px 0;
|
|
6840
|
-
color: #2d3a56;
|
|
6813
|
+
.E_f16blduf.ant-form-item {
|
|
6814
|
+
margin-bottom: 0;
|
|
6841
6815
|
}
|
|
6842
|
-
.
|
|
6816
|
+
.E_f16blduf .ant-form-item-explain {
|
|
6843
6817
|
display: none;
|
|
6818
|
+
min-height: 18px;
|
|
6819
|
+
margin-top: 5px;
|
|
6820
|
+
font-family: "Inter";
|
|
6821
|
+
font-weight: 400;
|
|
6822
|
+
font-size: 12px;
|
|
6823
|
+
line-height: 18px;
|
|
6844
6824
|
}
|
|
6845
|
-
.
|
|
6846
|
-
height: auto;
|
|
6847
|
-
}
|
|
6848
|
-
.E_t93e4cf .content {
|
|
6849
|
-
overflow: hidden;
|
|
6850
|
-
overflow-x: auto;
|
|
6851
|
-
width: 100%;
|
|
6825
|
+
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
6852
6826
|
white-space: pre-wrap;
|
|
6853
6827
|
}
|
|
6854
|
-
.
|
|
6855
|
-
|
|
6856
|
-
text-align: left;
|
|
6828
|
+
.E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
6829
|
+
display: block;
|
|
6857
6830
|
}
|
|
6858
|
-
|
|
6859
|
-
|
|
6831
|
+
|
|
6832
|
+
.E_a9y3flr {
|
|
6833
|
+
margin-left: 8px;
|
|
6860
6834
|
}
|
|
6861
6835
|
|
|
6862
|
-
.
|
|
6863
|
-
|
|
6864
|
-
|
|
6865
|
-
color: rgba(44, 56, 82, 0.6);
|
|
6866
|
-
padding-right: 12px;
|
|
6836
|
+
.E_a1njc627 {
|
|
6837
|
+
font-size: 12px;
|
|
6838
|
+
color: #00122e;
|
|
6867
6839
|
}
|
|
6868
6840
|
|
|
6869
|
-
.
|
|
6870
|
-
|
|
6871
|
-
align-items: center;
|
|
6841
|
+
.E_d1u4ndxc {
|
|
6842
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
6872
6843
|
font-size: 12px;
|
|
6873
|
-
line-height: 18px;
|
|
6874
6844
|
}
|
|
6875
|
-
|
|
6876
|
-
|
|
6845
|
+
|
|
6846
|
+
.E_f6xb0iv {
|
|
6847
|
+
min-width: 0;
|
|
6848
|
+
flex: 1;
|
|
6877
6849
|
}
|
|
6878
6850
|
|
|
6879
|
-
.
|
|
6880
|
-
|
|
6851
|
+
.E_b1dhu7ov.antd5-progress {
|
|
6852
|
+
width: 220px;
|
|
6881
6853
|
}
|
|
6882
6854
|
|
|
6883
|
-
.
|
|
6884
|
-
|
|
6885
|
-
|
|
6855
|
+
.E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
|
|
6856
|
+
content: "";
|
|
6857
|
+
display: block;
|
|
6858
|
+
height: 8px;
|
|
6859
|
+
background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
|
|
6860
|
+
animation: loading 1600ms ease-out infinite;
|
|
6861
|
+
opacity: 1;
|
|
6862
|
+
}
|
|
6863
|
+
@keyframes loading {
|
|
6864
|
+
from {
|
|
6865
|
+
transform: translateX(-100%);
|
|
6866
|
+
}
|
|
6867
|
+
to {
|
|
6868
|
+
transform: translateX(100%);
|
|
6869
|
+
}
|
|
6870
|
+
}
|
|
6871
|
+
|
|
6872
|
+
.E_i14c7jc8 {
|
|
6873
|
+
color: var(--i14c7jc8-0);
|
|
6874
|
+
}
|
|
6875
|
+
|
|
6876
|
+
.E_i1ibuolf {
|
|
6877
|
+
display: flex;
|
|
6878
|
+
align-items: center;
|
|
6879
|
+
column-gap: 4px;
|
|
6880
|
+
font-size: 12px;
|
|
6881
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
6886
6882
|
}
|
|
6887
6883
|
|
|
6888
6884
|
.E_skwah65 {
|
|
@@ -6898,167 +6894,54 @@ span.E_tqjc4ui {
|
|
|
6898
6894
|
margin-left: 1px;
|
|
6899
6895
|
}
|
|
6900
6896
|
|
|
6901
|
-
.
|
|
6902
|
-
display: flex;
|
|
6903
|
-
align-items: center;
|
|
6904
|
-
justify-content: flex-end;
|
|
6905
|
-
}
|
|
6906
|
-
|
|
6907
|
-
.E_b1ctd5xy {
|
|
6908
|
-
display: flex;
|
|
6909
|
-
align-items: center;
|
|
6910
|
-
width: calc(100% - 40px);
|
|
6911
|
-
}
|
|
6912
|
-
.E_b1ctd5xy .chart {
|
|
6897
|
+
.E_c18bcrac {
|
|
6913
6898
|
display: inline-block;
|
|
6914
6899
|
width: 100%;
|
|
6915
6900
|
}
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
min-width: 40px;
|
|
6919
|
-
}
|
|
6920
|
-
.E_u1p8acpn .unit {
|
|
6921
|
-
color: #00122e !important;
|
|
6901
|
+
.E_c18bcrac .recharts-wrapper {
|
|
6902
|
+
margin-left: 4px;
|
|
6922
6903
|
}
|
|
6923
6904
|
|
|
6924
|
-
.
|
|
6925
|
-
|
|
6926
|
-
}
|
|
6927
|
-
.E_c1up1pdz.active {
|
|
6928
|
-
border-color: #0080ff;
|
|
6929
|
-
}
|
|
6930
|
-
.E_c1up1pdz.active > header {
|
|
6931
|
-
background: rgba(0, 128, 255, 0.1);
|
|
6932
|
-
}
|
|
6933
|
-
.E_c1up1pdz .expand {
|
|
6934
|
-
padding: 12px;
|
|
6935
|
-
}
|
|
6936
|
-
.E_c1up1pdz .field-item {
|
|
6937
|
-
display: flex;
|
|
6938
|
-
padding: 10px 0;
|
|
6939
|
-
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
6940
|
-
}
|
|
6941
|
-
.E_c1up1pdz .field-item:last-child {
|
|
6942
|
-
border-bottom: none;
|
|
6943
|
-
padding-bottom: 0;
|
|
6944
|
-
}
|
|
6945
|
-
.E_c1up1pdz .field-item label {
|
|
6946
|
-
line-height: 32px;
|
|
6947
|
-
width: 100px;
|
|
6948
|
-
color: rgba(62, 70, 82, 0.6);
|
|
6949
|
-
}
|
|
6950
|
-
.E_c1up1pdz .help {
|
|
6951
|
-
color: rgba(62, 70, 82, 0.6);
|
|
6952
|
-
margin-top: 5px;
|
|
6905
|
+
.E_cro7kg2 {
|
|
6906
|
+
padding: 4px;
|
|
6953
6907
|
}
|
|
6954
|
-
.
|
|
6955
|
-
|
|
6956
|
-
width: 128px;
|
|
6908
|
+
.E_cro7kg2 .unit {
|
|
6909
|
+
color: white;
|
|
6957
6910
|
}
|
|
6958
6911
|
|
|
6959
|
-
.
|
|
6912
|
+
.E_c14wcxf0 {
|
|
6960
6913
|
display: flex;
|
|
6961
|
-
align-items: center;
|
|
6962
6914
|
justify-content: space-between;
|
|
6963
|
-
word-break: keep-all;
|
|
6964
|
-
}
|
|
6965
|
-
.E_c156wh19 .title {
|
|
6966
|
-
margin: 0 16px 0 8px;
|
|
6967
|
-
}
|
|
6968
|
-
.E_c156wh19 .retain {
|
|
6969
|
-
color: rgba(129, 138, 153, 0.6);
|
|
6970
|
-
}
|
|
6971
|
-
.E_c156wh19 div.left {
|
|
6972
|
-
flex: 1;
|
|
6973
|
-
display: flex;
|
|
6974
|
-
overflow: hidden;
|
|
6975
6915
|
align-items: center;
|
|
6976
|
-
|
|
6916
|
+
font-size: 13px;
|
|
6917
|
+
line-height: 24px;
|
|
6918
|
+
color: #cccccc;
|
|
6977
6919
|
white-space: nowrap;
|
|
6978
6920
|
}
|
|
6979
|
-
.
|
|
6980
|
-
|
|
6981
|
-
overflow: hidden;
|
|
6982
|
-
text-overflow: ellipsis;
|
|
6983
|
-
}
|
|
6984
|
-
.E_c156wh19 div.right {
|
|
6985
|
-
display: flex;
|
|
6986
|
-
align-items: center;
|
|
6987
|
-
}
|
|
6988
|
-
.E_c156wh19 .reverse {
|
|
6989
|
-
display: flex;
|
|
6990
|
-
flex-direction: row-reverse;
|
|
6991
|
-
align-items: center;
|
|
6992
|
-
}
|
|
6993
|
-
.E_c156wh19 .reverse .ant-switch {
|
|
6994
|
-
margin-left: 8px;
|
|
6995
|
-
}
|
|
6996
|
-
.E_c156wh19 .close {
|
|
6997
|
-
padding-left: 14px;
|
|
6998
|
-
margin-left: 14px;
|
|
6999
|
-
border-left: 1px solid rgba(129, 138, 153, 0.6);
|
|
7000
|
-
cursor: pointer;
|
|
7001
|
-
}
|
|
7002
|
-
|
|
7003
|
-
.E_m126spxy {
|
|
7004
|
-
padding-bottom: 4px;
|
|
7005
|
-
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
7006
|
-
}
|
|
7007
|
-
.E_m126spxy .ant-btn.ant-btn-link {
|
|
7008
|
-
padding: 1px 10px;
|
|
7009
|
-
color: rgba(62, 70, 82, 0.6);
|
|
7010
|
-
border-radius: 4px;
|
|
7011
|
-
}
|
|
7012
|
-
.E_m126spxy .ant-btn.ant-btn-link.active {
|
|
7013
|
-
background: rgba(0, 128, 255, 0.1);
|
|
7014
|
-
color: #0096ff;
|
|
7015
|
-
}
|
|
7016
|
-
|
|
7017
|
-
.E_wpbf4pq {
|
|
7018
|
-
padding: 10px 0;
|
|
7019
|
-
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
7020
|
-
}
|
|
7021
|
-
.E_wpbf4pq .ant-input,
|
|
7022
|
-
.E_wpbf4pq .ant-picker {
|
|
7023
|
-
width: 80px;
|
|
7024
|
-
margin: 0 9px;
|
|
7025
|
-
text-align: center;
|
|
7026
|
-
}
|
|
7027
|
-
.E_wpbf4pq .options {
|
|
7028
|
-
padding: 12px 0 12px 16px;
|
|
7029
|
-
border-left: 2px solid rgba(129, 138, 153, 0.6);
|
|
7030
|
-
margin: 5px 0 5px 8px;
|
|
7031
|
-
}
|
|
7032
|
-
.E_wpbf4pq .week-day-option,
|
|
7033
|
-
.E_wpbf4pq .month-day-option {
|
|
7034
|
-
background: #f5f7fa;
|
|
7035
|
-
box-sizing: border-box;
|
|
7036
|
-
border-radius: 16px;
|
|
7037
|
-
margin-right: 8px;
|
|
7038
|
-
}
|
|
7039
|
-
.E_wpbf4pq .week-day-option:focus,
|
|
7040
|
-
.E_wpbf4pq .month-day-option:focus {
|
|
7041
|
-
color: inherit;
|
|
7042
|
-
border-color: #d9d9d9;
|
|
7043
|
-
}
|
|
7044
|
-
.E_wpbf4pq .week-day-option.active {
|
|
7045
|
-
background-color: #0096ff;
|
|
7046
|
-
border-color: #0096ff;
|
|
7047
|
-
color: #fff;
|
|
6921
|
+
.E_c14wcxf0 label {
|
|
6922
|
+
margin-right: 32px;
|
|
7048
6923
|
}
|
|
7049
|
-
|
|
7050
|
-
|
|
7051
|
-
|
|
6924
|
+
|
|
6925
|
+
.E_coy29mj.E_c14wcxf0 {
|
|
6926
|
+
font-weight: bold;
|
|
6927
|
+
color: white;
|
|
7052
6928
|
}
|
|
7053
|
-
|
|
7054
|
-
|
|
7055
|
-
|
|
7056
|
-
|
|
6929
|
+
|
|
6930
|
+
.E_s11212zy {
|
|
6931
|
+
width: 8px;
|
|
6932
|
+
height: 8px;
|
|
6933
|
+
border-radius: 2px;
|
|
6934
|
+
display: inline-block;
|
|
6935
|
+
background: var(--s11212zy-0);
|
|
6936
|
+
border: 1px solid #fff;
|
|
6937
|
+
box-sizing: content-box;
|
|
6938
|
+
margin-right: 6px;
|
|
7057
6939
|
}
|
|
7058
|
-
|
|
7059
|
-
|
|
7060
|
-
|
|
7061
|
-
color:
|
|
6940
|
+
|
|
6941
|
+
.E_p1lyky6c > :first-child {
|
|
6942
|
+
font-weight: bold;
|
|
6943
|
+
color: white;
|
|
6944
|
+
margin-right: 4px;
|
|
7062
6945
|
}
|
|
7063
6946
|
|
|
7064
6947
|
.E_s1ebs0ra {
|
|
@@ -7221,6 +7104,179 @@ span.E_tqjc4ui {
|
|
|
7221
7104
|
border-radius: 2px;
|
|
7222
7105
|
}
|
|
7223
7106
|
|
|
7107
|
+
.E_gmyahx3 {
|
|
7108
|
+
cursor: pointer;
|
|
7109
|
+
}
|
|
7110
|
+
.E_gmyahx3 .link-text {
|
|
7111
|
+
color: rgba(0, 21, 64, 0.3);
|
|
7112
|
+
}
|
|
7113
|
+
.E_gmyahx3:hover .link-text {
|
|
7114
|
+
color: #0080ff;
|
|
7115
|
+
}
|
|
7116
|
+
|
|
7117
|
+
.E_c1up1pdz {
|
|
7118
|
+
width: 648px;
|
|
7119
|
+
}
|
|
7120
|
+
.E_c1up1pdz.active {
|
|
7121
|
+
border-color: #0080ff;
|
|
7122
|
+
}
|
|
7123
|
+
.E_c1up1pdz.active > header {
|
|
7124
|
+
background: rgba(0, 128, 255, 0.1);
|
|
7125
|
+
}
|
|
7126
|
+
.E_c1up1pdz .expand {
|
|
7127
|
+
padding: 12px;
|
|
7128
|
+
}
|
|
7129
|
+
.E_c1up1pdz .field-item {
|
|
7130
|
+
display: flex;
|
|
7131
|
+
padding: 10px 0;
|
|
7132
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
7133
|
+
}
|
|
7134
|
+
.E_c1up1pdz .field-item:last-child {
|
|
7135
|
+
border-bottom: none;
|
|
7136
|
+
padding-bottom: 0;
|
|
7137
|
+
}
|
|
7138
|
+
.E_c1up1pdz .field-item label {
|
|
7139
|
+
line-height: 32px;
|
|
7140
|
+
width: 100px;
|
|
7141
|
+
color: rgba(62, 70, 82, 0.6);
|
|
7142
|
+
}
|
|
7143
|
+
.E_c1up1pdz .help {
|
|
7144
|
+
color: rgba(62, 70, 82, 0.6);
|
|
7145
|
+
margin-top: 5px;
|
|
7146
|
+
}
|
|
7147
|
+
.E_c1up1pdz .ant-input-affix-wrapper,
|
|
7148
|
+
.E_c1up1pdz .ant-picker {
|
|
7149
|
+
width: 128px;
|
|
7150
|
+
}
|
|
7151
|
+
|
|
7152
|
+
.E_c156wh19 {
|
|
7153
|
+
display: flex;
|
|
7154
|
+
align-items: center;
|
|
7155
|
+
justify-content: space-between;
|
|
7156
|
+
word-break: keep-all;
|
|
7157
|
+
}
|
|
7158
|
+
.E_c156wh19 .title {
|
|
7159
|
+
margin: 0 16px 0 8px;
|
|
7160
|
+
}
|
|
7161
|
+
.E_c156wh19 .retain {
|
|
7162
|
+
color: rgba(129, 138, 153, 0.6);
|
|
7163
|
+
}
|
|
7164
|
+
.E_c156wh19 div.left {
|
|
7165
|
+
flex: 1;
|
|
7166
|
+
display: flex;
|
|
7167
|
+
overflow: hidden;
|
|
7168
|
+
align-items: center;
|
|
7169
|
+
justify-content: flex-start;
|
|
7170
|
+
white-space: nowrap;
|
|
7171
|
+
}
|
|
7172
|
+
.E_c156wh19 div.left .title {
|
|
7173
|
+
max-width: 100%;
|
|
7174
|
+
overflow: hidden;
|
|
7175
|
+
text-overflow: ellipsis;
|
|
7176
|
+
}
|
|
7177
|
+
.E_c156wh19 div.right {
|
|
7178
|
+
display: flex;
|
|
7179
|
+
align-items: center;
|
|
7180
|
+
}
|
|
7181
|
+
.E_c156wh19 .reverse {
|
|
7182
|
+
display: flex;
|
|
7183
|
+
flex-direction: row-reverse;
|
|
7184
|
+
align-items: center;
|
|
7185
|
+
}
|
|
7186
|
+
.E_c156wh19 .reverse .ant-switch {
|
|
7187
|
+
margin-left: 8px;
|
|
7188
|
+
}
|
|
7189
|
+
.E_c156wh19 .close {
|
|
7190
|
+
padding-left: 14px;
|
|
7191
|
+
margin-left: 14px;
|
|
7192
|
+
border-left: 1px solid rgba(129, 138, 153, 0.6);
|
|
7193
|
+
cursor: pointer;
|
|
7194
|
+
}
|
|
7195
|
+
|
|
7196
|
+
.E_m126spxy {
|
|
7197
|
+
padding-bottom: 4px;
|
|
7198
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
7199
|
+
}
|
|
7200
|
+
.E_m126spxy .ant-btn.ant-btn-link {
|
|
7201
|
+
padding: 1px 10px;
|
|
7202
|
+
color: rgba(62, 70, 82, 0.6);
|
|
7203
|
+
border-radius: 4px;
|
|
7204
|
+
}
|
|
7205
|
+
.E_m126spxy .ant-btn.ant-btn-link.active {
|
|
7206
|
+
background: rgba(0, 128, 255, 0.1);
|
|
7207
|
+
color: #0096ff;
|
|
7208
|
+
}
|
|
7209
|
+
|
|
7210
|
+
.E_wpbf4pq {
|
|
7211
|
+
padding: 10px 0;
|
|
7212
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
7213
|
+
}
|
|
7214
|
+
.E_wpbf4pq .ant-input,
|
|
7215
|
+
.E_wpbf4pq .ant-picker {
|
|
7216
|
+
width: 80px;
|
|
7217
|
+
margin: 0 9px;
|
|
7218
|
+
text-align: center;
|
|
7219
|
+
}
|
|
7220
|
+
.E_wpbf4pq .options {
|
|
7221
|
+
padding: 12px 0 12px 16px;
|
|
7222
|
+
border-left: 2px solid rgba(129, 138, 153, 0.6);
|
|
7223
|
+
margin: 5px 0 5px 8px;
|
|
7224
|
+
}
|
|
7225
|
+
.E_wpbf4pq .week-day-option,
|
|
7226
|
+
.E_wpbf4pq .month-day-option {
|
|
7227
|
+
background: #f5f7fa;
|
|
7228
|
+
box-sizing: border-box;
|
|
7229
|
+
border-radius: 16px;
|
|
7230
|
+
margin-right: 8px;
|
|
7231
|
+
}
|
|
7232
|
+
.E_wpbf4pq .week-day-option:focus,
|
|
7233
|
+
.E_wpbf4pq .month-day-option:focus {
|
|
7234
|
+
color: inherit;
|
|
7235
|
+
border-color: #d9d9d9;
|
|
7236
|
+
}
|
|
7237
|
+
.E_wpbf4pq .week-day-option.active {
|
|
7238
|
+
background-color: #0096ff;
|
|
7239
|
+
border-color: #0096ff;
|
|
7240
|
+
color: #fff;
|
|
7241
|
+
}
|
|
7242
|
+
.E_wpbf4pq .week-day-option.en-text {
|
|
7243
|
+
width: 110px;
|
|
7244
|
+
margin-top: 4px;
|
|
7245
|
+
}
|
|
7246
|
+
.E_wpbf4pq .month-day-option {
|
|
7247
|
+
width: 32px;
|
|
7248
|
+
padding: 0;
|
|
7249
|
+
margin-bottom: 8px;
|
|
7250
|
+
}
|
|
7251
|
+
.E_wpbf4pq .month-day-option.active {
|
|
7252
|
+
background-color: #0096ff;
|
|
7253
|
+
border-color: #0096ff;
|
|
7254
|
+
color: #fff;
|
|
7255
|
+
}
|
|
7256
|
+
|
|
7257
|
+
span.E_tqjc4ui {
|
|
7258
|
+
margin: 0 2px;
|
|
7259
|
+
}
|
|
7260
|
+
|
|
7261
|
+
.E_n12mqh7z {
|
|
7262
|
+
display: flex;
|
|
7263
|
+
align-items: center;
|
|
7264
|
+
font-size: 12px;
|
|
7265
|
+
line-height: 18px;
|
|
7266
|
+
}
|
|
7267
|
+
.E_n12mqh7z:not(:last-child) {
|
|
7268
|
+
margin-bottom: 4px;
|
|
7269
|
+
}
|
|
7270
|
+
|
|
7271
|
+
.E_tf5bynu {
|
|
7272
|
+
margin: 0 3px;
|
|
7273
|
+
}
|
|
7274
|
+
|
|
7275
|
+
.E_tcckoz1 {
|
|
7276
|
+
max-height: 400px;
|
|
7277
|
+
overflow: auto;
|
|
7278
|
+
}
|
|
7279
|
+
|
|
7224
7280
|
.E_ou7iq30 {
|
|
7225
7281
|
overflow: hidden;
|
|
7226
7282
|
text-overflow: ellipsis;
|
|
@@ -7248,133 +7304,94 @@ span.E_tqjc4ui {
|
|
|
7248
7304
|
visibility: hidden;
|
|
7249
7305
|
}
|
|
7250
7306
|
|
|
7251
|
-
.
|
|
7252
|
-
background:
|
|
7253
|
-
padding: 32px 8px;
|
|
7254
|
-
overflow: auto;
|
|
7307
|
+
.E_t1sqg15u {
|
|
7308
|
+
background: white;
|
|
7255
7309
|
}
|
|
7256
|
-
.
|
|
7257
|
-
display: flex;
|
|
7310
|
+
.E_t1sqg15u.inline .table-row {
|
|
7258
7311
|
flex-direction: column;
|
|
7259
|
-
justify-content: space-between;
|
|
7260
|
-
}
|
|
7261
|
-
.E_s1at6qmn footer {
|
|
7262
|
-
display: flex;
|
|
7263
|
-
}
|
|
7264
|
-
.E_s1at6qmn .ant-menu {
|
|
7265
|
-
background: #edf0f7;
|
|
7266
|
-
}
|
|
7267
|
-
.E_s1at6qmn .ant-menu a {
|
|
7268
|
-
color: #00122e;
|
|
7269
|
-
width: 180px;
|
|
7270
|
-
overflow: hidden;
|
|
7271
|
-
text-overflow: ellipsis;
|
|
7272
|
-
}
|
|
7273
|
-
.E_s1at6qmn .ant-menu-vertical {
|
|
7274
|
-
margin-bottom: 24px;
|
|
7275
|
-
}
|
|
7276
|
-
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
|
|
7277
|
-
margin: 0;
|
|
7278
|
-
}
|
|
7279
|
-
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
|
|
7280
|
-
font-size: 12px;
|
|
7281
|
-
padding: 0 8px 4px;
|
|
7282
|
-
line-height: 18px;
|
|
7283
|
-
}
|
|
7284
|
-
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
|
|
7285
|
-
padding: 0;
|
|
7286
|
-
}
|
|
7287
|
-
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
|
|
7288
|
-
padding-bottom: 24px;
|
|
7289
7312
|
}
|
|
7290
|
-
.
|
|
7291
|
-
|
|
7292
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
7313
|
+
.E_t1sqg15u.inline .table-row > label {
|
|
7314
|
+
padding: 0 16px 7px 0;
|
|
7293
7315
|
}
|
|
7294
|
-
.
|
|
7295
|
-
|
|
7296
|
-
display: flex;
|
|
7297
|
-
align-items: center;
|
|
7298
|
-
height: 32px;
|
|
7299
|
-
line-height: 22px;
|
|
7300
|
-
padding: 0 8px;
|
|
7316
|
+
.E_t1sqg15u.has-border .table-header {
|
|
7317
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
7301
7318
|
}
|
|
7302
|
-
.
|
|
7303
|
-
|
|
7319
|
+
.E_t1sqg15u.has-border .hiddenBorder {
|
|
7320
|
+
border-top: none !important;
|
|
7304
7321
|
}
|
|
7305
|
-
.
|
|
7306
|
-
|
|
7307
|
-
margin-bottom: 2px;
|
|
7322
|
+
.E_t1sqg15u.has-border .table-row + .table-row {
|
|
7323
|
+
border-top: 1px solid rgba(225, 230, 241, 0.6);
|
|
7308
7324
|
}
|
|
7309
|
-
.
|
|
7310
|
-
|
|
7311
|
-
box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
|
|
7312
|
-
border-radius: 6px;
|
|
7313
|
-
color: #fff;
|
|
7325
|
+
.E_t1sqg15u.has-border .table-row:last-of-type {
|
|
7326
|
+
padding-bottom: 0;
|
|
7314
7327
|
}
|
|
7315
|
-
.
|
|
7316
|
-
|
|
7328
|
+
.E_t1sqg15u.align-right .content {
|
|
7329
|
+
text-align: right;
|
|
7317
7330
|
}
|
|
7318
|
-
.
|
|
7319
|
-
|
|
7320
|
-
|
|
7321
|
-
border-radius: 6px;
|
|
7331
|
+
.E_t1sqg15u .uuid-row {
|
|
7332
|
+
display: flex;
|
|
7333
|
+
justify-content: space-between;
|
|
7322
7334
|
}
|
|
7323
|
-
|
|
7324
|
-
.E_s1wu0lms .ant-menu-item-group-title {
|
|
7335
|
+
.E_t1sqg15u .uuid-row .id-text {
|
|
7325
7336
|
white-space: nowrap;
|
|
7326
|
-
transition: all 0s;
|
|
7327
|
-
}
|
|
7328
|
-
.E_s1wu0lms.shrink {
|
|
7329
|
-
transition: all 0s;
|
|
7330
7337
|
overflow: hidden;
|
|
7331
|
-
|
|
7332
|
-
.E_s1wu0lms.shrink .ant-menu-item-group-title {
|
|
7333
|
-
visibility: hidden;
|
|
7334
|
-
}
|
|
7335
|
-
.E_s1wu0lms.shrink .ant-menu-item {
|
|
7336
|
-
width: 36px;
|
|
7337
|
-
padding: 0 6px;
|
|
7338
|
+
text-overflow: ellipsis;
|
|
7338
7339
|
}
|
|
7339
7340
|
|
|
7340
|
-
.
|
|
7341
|
+
.E_t4zczcp {
|
|
7341
7342
|
display: flex;
|
|
7342
|
-
|
|
7343
|
-
|
|
7344
|
-
|
|
7345
|
-
|
|
7346
|
-
color: rgba(0, 0, 0, 0.25) !important;
|
|
7347
|
-
opacity: 1 !important;
|
|
7343
|
+
justify-content: space-between;
|
|
7344
|
+
align-items: center;
|
|
7345
|
+
padding: 8px;
|
|
7346
|
+
min-height: 32px;
|
|
7348
7347
|
}
|
|
7349
|
-
.
|
|
7350
|
-
|
|
7351
|
-
|
|
7348
|
+
.E_t4zczcp .table-title {
|
|
7349
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7350
|
+
font-weight: 600;
|
|
7351
|
+
font-size: 12px;
|
|
7352
|
+
line-height: 8px;
|
|
7352
7353
|
}
|
|
7353
|
-
.
|
|
7354
|
-
|
|
7354
|
+
.E_t4zczcp .edit-icon {
|
|
7355
|
+
font-size: 16px;
|
|
7356
|
+
color: rgba(10, 37, 85, 0.6);
|
|
7357
|
+
cursor: pointer;
|
|
7355
7358
|
}
|
|
7356
|
-
|
|
7357
|
-
|
|
7358
|
-
|
|
7359
|
-
|
|
7360
|
-
text-overflow: ellipsis;
|
|
7361
|
-
text-align: left;
|
|
7359
|
+
|
|
7360
|
+
.E_t1s7goww {
|
|
7361
|
+
font-size: 12px;
|
|
7362
|
+
line-height: 18px;
|
|
7362
7363
|
}
|
|
7363
7364
|
|
|
7364
|
-
.
|
|
7365
|
-
|
|
7365
|
+
.E_t93e4cf {
|
|
7366
|
+
display: flex;
|
|
7367
|
+
padding: 8px 0;
|
|
7368
|
+
color: #2d3a56;
|
|
7366
7369
|
}
|
|
7367
|
-
.
|
|
7368
|
-
|
|
7370
|
+
.E_t93e4cf .hidden {
|
|
7371
|
+
display: none;
|
|
7369
7372
|
}
|
|
7370
|
-
.
|
|
7371
|
-
|
|
7373
|
+
.E_t93e4cf .ant-btn.ant-btn-link {
|
|
7374
|
+
height: auto;
|
|
7372
7375
|
}
|
|
7373
|
-
.
|
|
7374
|
-
|
|
7376
|
+
.E_t93e4cf .content {
|
|
7377
|
+
overflow: hidden;
|
|
7378
|
+
overflow-x: auto;
|
|
7379
|
+
width: 100%;
|
|
7380
|
+
white-space: pre-wrap;
|
|
7375
7381
|
}
|
|
7376
|
-
.
|
|
7377
|
-
|
|
7382
|
+
.E_t93e4cf .content .ant-btn {
|
|
7383
|
+
white-space: pre-wrap;
|
|
7384
|
+
text-align: left;
|
|
7385
|
+
}
|
|
7386
|
+
.E_t93e4cf .content .unit-chart {
|
|
7387
|
+
justify-content: flex-start;
|
|
7388
|
+
}
|
|
7389
|
+
|
|
7390
|
+
.E_rhz2uv5 {
|
|
7391
|
+
width: var(--rhz2uv5-0);
|
|
7392
|
+
flex-shrink: 0;
|
|
7393
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7394
|
+
padding-right: 12px;
|
|
7378
7395
|
}
|
|
7379
7396
|
|
|
7380
7397
|
.E_t160l1cm {
|
|
@@ -7494,90 +7511,250 @@ span.E_tqjc4ui {
|
|
|
7494
7511
|
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title > .slash-arrow, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title > .slash-arrow {
|
|
7495
7512
|
opacity: 0;
|
|
7496
7513
|
}
|
|
7497
|
-
.E_t160l1cm .tab-menu-item-medium.tab-menu-item {
|
|
7498
|
-
padding: 4px 16px;
|
|
7514
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item {
|
|
7515
|
+
padding: 4px 16px;
|
|
7516
|
+
height: 32px;
|
|
7517
|
+
border-radius: 6px 6px 0 0;
|
|
7518
|
+
}
|
|
7519
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
|
|
7520
|
+
padding-left: 0;
|
|
7521
|
+
}
|
|
7522
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item-medium.tab-menu-item.tab-menu-item-selected:first-child {
|
|
7523
|
+
padding-left: 16px;
|
|
7524
|
+
}
|
|
7525
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
|
|
7526
|
+
margin-left: 11px;
|
|
7527
|
+
height: 24px;
|
|
7528
|
+
}
|
|
7529
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
|
|
7530
|
+
padding: 0;
|
|
7531
|
+
}
|
|
7532
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
|
|
7533
|
+
padding: 4px 16px;
|
|
7534
|
+
}
|
|
7535
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .sub-title, .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .main-title {
|
|
7536
|
+
padding: 4px 16px;
|
|
7537
|
+
}
|
|
7538
|
+
.E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
|
|
7539
|
+
background: #fff;
|
|
7540
|
+
}
|
|
7541
|
+
.E_t160l1cm .tab-menu-item-light:active {
|
|
7542
|
+
color: #005ed1;
|
|
7543
|
+
}
|
|
7544
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
|
|
7545
|
+
background: #fff;
|
|
7546
|
+
color: #1d326c;
|
|
7547
|
+
}
|
|
7548
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
|
|
7549
|
+
color: rgba(45, 58, 86, 0.6);
|
|
7550
|
+
}
|
|
7551
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
|
|
7552
|
+
color: #1d326c;
|
|
7553
|
+
}
|
|
7554
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
|
|
7555
|
+
fill: #d8deeb;
|
|
7556
|
+
}
|
|
7557
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
|
|
7558
|
+
fill: #1d326c;
|
|
7559
|
+
}
|
|
7560
|
+
.E_t160l1cm .tab-content {
|
|
7561
|
+
flex: 1;
|
|
7562
|
+
display: flex;
|
|
7563
|
+
flex-direction: column;
|
|
7564
|
+
}
|
|
7565
|
+
.E_t160l1cm.is-overview .tab-content {
|
|
7566
|
+
overflow: visible;
|
|
7567
|
+
}
|
|
7568
|
+
|
|
7569
|
+
.E_t14npdqr {
|
|
7570
|
+
max-width: 240px;
|
|
7571
|
+
animation: none;
|
|
7572
|
+
}
|
|
7573
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu {
|
|
7574
|
+
border: 1px solid #0080ff;
|
|
7575
|
+
padding: 0;
|
|
7576
|
+
}
|
|
7577
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
7578
|
+
margin: 0;
|
|
7579
|
+
height: 32px;
|
|
7580
|
+
line-height: 32px;
|
|
7581
|
+
font-size: 13px;
|
|
7582
|
+
padding: 0 10px;
|
|
7583
|
+
display: block;
|
|
7584
|
+
overflow: hidden;
|
|
7585
|
+
text-overflow: ellipsis;
|
|
7586
|
+
white-space: nowrap;
|
|
7587
|
+
}
|
|
7588
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
|
|
7589
|
+
content: " ";
|
|
7590
|
+
height: 1px;
|
|
7591
|
+
width: calc(100% + 10px);
|
|
7592
|
+
background: rgba(172, 186, 211, 0.6);
|
|
7593
|
+
display: block;
|
|
7594
|
+
}
|
|
7595
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
|
|
7596
|
+
color: #0080ff;
|
|
7597
|
+
background: transparent;
|
|
7598
|
+
}
|
|
7599
|
+
|
|
7600
|
+
.E_u15heuvq.content {
|
|
7601
|
+
cursor: default !important;
|
|
7602
|
+
}
|
|
7603
|
+
.E_u15heuvq.content.link {
|
|
7604
|
+
cursor: pointer !important;
|
|
7605
|
+
}
|
|
7606
|
+
.E_u15heuvq.content.link:hover {
|
|
7607
|
+
color: #0080ff;
|
|
7608
|
+
}
|
|
7609
|
+
.E_u15heuvq.content.black {
|
|
7610
|
+
color: #00122e;
|
|
7611
|
+
}
|
|
7612
|
+
.E_u15heuvq.content.gray {
|
|
7613
|
+
color: rgba(44, 56, 82, 0.75);
|
|
7614
|
+
}
|
|
7615
|
+
|
|
7616
|
+
.E_s1at6qmn.ant-layout-sider {
|
|
7617
|
+
background: #edf0f7;
|
|
7618
|
+
padding: 32px 8px;
|
|
7619
|
+
overflow: auto;
|
|
7620
|
+
}
|
|
7621
|
+
.E_s1at6qmn .ant-layout-sider-children {
|
|
7622
|
+
display: flex;
|
|
7623
|
+
flex-direction: column;
|
|
7624
|
+
justify-content: space-between;
|
|
7625
|
+
}
|
|
7626
|
+
.E_s1at6qmn footer {
|
|
7627
|
+
display: flex;
|
|
7628
|
+
}
|
|
7629
|
+
.E_s1at6qmn .ant-menu {
|
|
7630
|
+
background: #edf0f7;
|
|
7631
|
+
}
|
|
7632
|
+
.E_s1at6qmn .ant-menu a {
|
|
7633
|
+
color: #00122e;
|
|
7634
|
+
width: 180px;
|
|
7635
|
+
overflow: hidden;
|
|
7636
|
+
text-overflow: ellipsis;
|
|
7637
|
+
}
|
|
7638
|
+
.E_s1at6qmn .ant-menu-vertical {
|
|
7639
|
+
margin-bottom: 24px;
|
|
7640
|
+
}
|
|
7641
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
|
|
7642
|
+
margin: 0;
|
|
7643
|
+
}
|
|
7644
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
|
|
7645
|
+
font-size: 12px;
|
|
7646
|
+
padding: 0 8px 4px;
|
|
7647
|
+
line-height: 18px;
|
|
7648
|
+
}
|
|
7649
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
|
|
7650
|
+
padding: 0;
|
|
7651
|
+
}
|
|
7652
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
|
|
7653
|
+
padding-bottom: 24px;
|
|
7654
|
+
}
|
|
7655
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
|
|
7656
|
+
margin-bottom: 24px;
|
|
7657
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
7658
|
+
}
|
|
7659
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item {
|
|
7660
|
+
transition: none;
|
|
7661
|
+
display: flex;
|
|
7662
|
+
align-items: center;
|
|
7499
7663
|
height: 32px;
|
|
7500
|
-
|
|
7664
|
+
line-height: 22px;
|
|
7665
|
+
padding: 0 8px;
|
|
7501
7666
|
}
|
|
7502
|
-
.
|
|
7503
|
-
|
|
7667
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
|
|
7668
|
+
margin-right: 12px;
|
|
7504
7669
|
}
|
|
7505
|
-
.
|
|
7506
|
-
|
|
7670
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
|
|
7671
|
+
margin: 0;
|
|
7672
|
+
margin-bottom: 2px;
|
|
7507
7673
|
}
|
|
7508
|
-
.
|
|
7509
|
-
|
|
7510
|
-
|
|
7674
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
|
|
7675
|
+
background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
|
|
7676
|
+
box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
|
|
7677
|
+
border-radius: 6px;
|
|
7678
|
+
color: #fff;
|
|
7511
7679
|
}
|
|
7512
|
-
.
|
|
7513
|
-
|
|
7680
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
|
|
7681
|
+
color: #fff;
|
|
7514
7682
|
}
|
|
7515
|
-
.
|
|
7516
|
-
|
|
7683
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item:hover, .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item-active {
|
|
7684
|
+
background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
|
|
7685
|
+
box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
|
|
7686
|
+
border-radius: 6px;
|
|
7517
7687
|
}
|
|
7518
|
-
|
|
7519
|
-
|
|
7688
|
+
|
|
7689
|
+
.E_s1wu0lms .ant-menu-item-group-title {
|
|
7690
|
+
white-space: nowrap;
|
|
7691
|
+
transition: all 0s;
|
|
7520
7692
|
}
|
|
7521
|
-
.
|
|
7522
|
-
|
|
7693
|
+
.E_s1wu0lms.shrink {
|
|
7694
|
+
transition: all 0s;
|
|
7695
|
+
overflow: hidden;
|
|
7523
7696
|
}
|
|
7524
|
-
.
|
|
7525
|
-
|
|
7697
|
+
.E_s1wu0lms.shrink .ant-menu-item-group-title {
|
|
7698
|
+
visibility: hidden;
|
|
7526
7699
|
}
|
|
7527
|
-
.
|
|
7528
|
-
|
|
7529
|
-
|
|
7700
|
+
.E_s1wu0lms.shrink .ant-menu-item {
|
|
7701
|
+
width: 36px;
|
|
7702
|
+
padding: 0 6px;
|
|
7530
7703
|
}
|
|
7531
|
-
|
|
7532
|
-
|
|
7704
|
+
|
|
7705
|
+
.E_n1ugzfva {
|
|
7706
|
+
display: flex;
|
|
7707
|
+
place-items: center;
|
|
7708
|
+
width: 100% !important;
|
|
7533
7709
|
}
|
|
7534
|
-
.
|
|
7535
|
-
color:
|
|
7710
|
+
.E_n1ugzfva[disabled] {
|
|
7711
|
+
color: rgba(0, 0, 0, 0.25) !important;
|
|
7712
|
+
opacity: 1 !important;
|
|
7536
7713
|
}
|
|
7537
|
-
.
|
|
7538
|
-
|
|
7714
|
+
.E_n1ugzfva.ant-btn {
|
|
7715
|
+
width: 100%;
|
|
7716
|
+
color: #00122e;
|
|
7539
7717
|
}
|
|
7540
|
-
.
|
|
7541
|
-
|
|
7718
|
+
.E_n1ugzfva .icon-wrapper {
|
|
7719
|
+
margin-right: 12px;
|
|
7542
7720
|
}
|
|
7543
|
-
.
|
|
7721
|
+
.E_n1ugzfva .link-title {
|
|
7544
7722
|
flex: 1;
|
|
7723
|
+
overflow: hidden;
|
|
7724
|
+
white-space: nowrap;
|
|
7725
|
+
text-overflow: ellipsis;
|
|
7726
|
+
text-align: left;
|
|
7727
|
+
}
|
|
7728
|
+
|
|
7729
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
7545
7730
|
display: flex;
|
|
7546
|
-
|
|
7731
|
+
align-items: center;
|
|
7547
7732
|
}
|
|
7548
|
-
.
|
|
7549
|
-
|
|
7733
|
+
.E_s1iv0tp1 .enabled-text {
|
|
7734
|
+
margin-right: 8px;
|
|
7550
7735
|
}
|
|
7551
7736
|
|
|
7552
|
-
.
|
|
7553
|
-
|
|
7554
|
-
|
|
7737
|
+
.E_wg1tsps {
|
|
7738
|
+
display: flex;
|
|
7739
|
+
align-items: center;
|
|
7740
|
+
justify-content: flex-end;
|
|
7555
7741
|
}
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7742
|
+
|
|
7743
|
+
.E_b1ctd5xy {
|
|
7744
|
+
display: flex;
|
|
7745
|
+
align-items: center;
|
|
7746
|
+
width: calc(100% - 40px);
|
|
7559
7747
|
}
|
|
7560
|
-
.
|
|
7561
|
-
|
|
7562
|
-
|
|
7563
|
-
line-height: 32px;
|
|
7564
|
-
font-size: 13px;
|
|
7565
|
-
padding: 0 10px;
|
|
7566
|
-
display: block;
|
|
7567
|
-
overflow: hidden;
|
|
7568
|
-
text-overflow: ellipsis;
|
|
7569
|
-
white-space: nowrap;
|
|
7748
|
+
.E_b1ctd5xy .chart {
|
|
7749
|
+
display: inline-block;
|
|
7750
|
+
width: 100%;
|
|
7570
7751
|
}
|
|
7571
|
-
|
|
7572
|
-
|
|
7573
|
-
|
|
7574
|
-
width: calc(100% + 10px);
|
|
7575
|
-
background: rgba(172, 186, 211, 0.6);
|
|
7576
|
-
display: block;
|
|
7752
|
+
|
|
7753
|
+
.E_u1p8acpn {
|
|
7754
|
+
min-width: 40px;
|
|
7577
7755
|
}
|
|
7578
|
-
.
|
|
7579
|
-
color: #
|
|
7580
|
-
background: transparent;
|
|
7756
|
+
.E_u1p8acpn .unit {
|
|
7757
|
+
color: #00122e !important;
|
|
7581
7758
|
}
|
|
7582
7759
|
|
|
7583
7760
|
.E_cyms3br {
|
|
@@ -7655,6 +7832,12 @@ span.E_tqjc4ui {
|
|
|
7655
7832
|
justify-content: center;
|
|
7656
7833
|
}
|
|
7657
7834
|
|
|
7835
|
+
.E_h1ol2wl7 {
|
|
7836
|
+
font-weight: bold;
|
|
7837
|
+
background-color: unset;
|
|
7838
|
+
padding: unset;
|
|
7839
|
+
}
|
|
7840
|
+
|
|
7658
7841
|
.E_i5w779o {
|
|
7659
7842
|
padding: 8px 0;
|
|
7660
7843
|
}
|
|
@@ -7696,12 +7879,6 @@ span.E_tqjc4ui {
|
|
|
7696
7879
|
color: rgba(0, 21, 64, 0.3);
|
|
7697
7880
|
}
|
|
7698
7881
|
|
|
7699
|
-
.E_h1ol2wl7 {
|
|
7700
|
-
font-weight: bold;
|
|
7701
|
-
background-color: unset;
|
|
7702
|
-
padding: unset;
|
|
7703
|
-
}
|
|
7704
|
-
|
|
7705
7882
|
.E_kr6am0s .ant-modal-body {
|
|
7706
7883
|
padding: 60px 128px;
|
|
7707
7884
|
}
|
|
@@ -7789,50 +7966,6 @@ span.E_tqjc4ui {
|
|
|
7789
7966
|
}
|
|
7790
7967
|
}
|
|
7791
7968
|
|
|
7792
|
-
.E_c14ouk5o {
|
|
7793
|
-
width: 100%;
|
|
7794
|
-
height: 100%;
|
|
7795
|
-
display: flex;
|
|
7796
|
-
font-size: 12px;
|
|
7797
|
-
line-height: 18px;
|
|
7798
|
-
padding: 8px 0;
|
|
7799
|
-
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
7800
|
-
}
|
|
7801
|
-
.E_c14ouk5o:last-of-type {
|
|
7802
|
-
box-shadow: none;
|
|
7803
|
-
padding-bottom: 0;
|
|
7804
|
-
}
|
|
7805
|
-
.E_c14ouk5o.collapsed {
|
|
7806
|
-
flex-direction: column;
|
|
7807
|
-
}
|
|
7808
|
-
.E_c14ouk5o.collapsed .collapsed-content {
|
|
7809
|
-
display: flex;
|
|
7810
|
-
}
|
|
7811
|
-
.E_c14ouk5o.collapsed .collapsed-content > span {
|
|
7812
|
-
flex: 1;
|
|
7813
|
-
display: flex;
|
|
7814
|
-
justify-content: space-between;
|
|
7815
|
-
}
|
|
7816
|
-
.E_c14ouk5o.collapsed .collapsed-content > span .ant-btn {
|
|
7817
|
-
height: auto;
|
|
7818
|
-
}
|
|
7819
|
-
.E_c14ouk5o.collapsed .extra-content {
|
|
7820
|
-
margin-left: 162px;
|
|
7821
|
-
}
|
|
7822
|
-
.E_c14ouk5o .col-label {
|
|
7823
|
-
width: 216px;
|
|
7824
|
-
color: rgba(44, 56, 82, 0.6);
|
|
7825
|
-
margin-right: 12px;
|
|
7826
|
-
flex-shrink: 0;
|
|
7827
|
-
}
|
|
7828
|
-
.E_c14ouk5o .col-content {
|
|
7829
|
-
color: #2d3a56;
|
|
7830
|
-
/* make btn link in info row have the same height as normal text */
|
|
7831
|
-
}
|
|
7832
|
-
.E_c14ouk5o .col-content .ant-btn.ant-btn-link {
|
|
7833
|
-
height: auto;
|
|
7834
|
-
}
|
|
7835
|
-
|
|
7836
7969
|
.E_c1kchka8 {
|
|
7837
7970
|
height: 100%;
|
|
7838
7971
|
width: 100%;
|
|
@@ -8325,6 +8458,59 @@ span.E_tqjc4ui {
|
|
|
8325
8458
|
padding: 0;
|
|
8326
8459
|
}
|
|
8327
8460
|
|
|
8461
|
+
.E_cevhqx7 {
|
|
8462
|
+
color: #00122e;
|
|
8463
|
+
}
|
|
8464
|
+
|
|
8465
|
+
.E_snbqlt4 {
|
|
8466
|
+
margin-top: 8px;
|
|
8467
|
+
color: rgba(44, 56, 82, 0.6);
|
|
8468
|
+
}
|
|
8469
|
+
|
|
8470
|
+
.E_c14ouk5o {
|
|
8471
|
+
width: 100%;
|
|
8472
|
+
height: 100%;
|
|
8473
|
+
display: flex;
|
|
8474
|
+
font-size: 12px;
|
|
8475
|
+
line-height: 18px;
|
|
8476
|
+
padding: 8px 0;
|
|
8477
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
8478
|
+
}
|
|
8479
|
+
.E_c14ouk5o:last-of-type {
|
|
8480
|
+
box-shadow: none;
|
|
8481
|
+
padding-bottom: 0;
|
|
8482
|
+
}
|
|
8483
|
+
.E_c14ouk5o.collapsed {
|
|
8484
|
+
flex-direction: column;
|
|
8485
|
+
}
|
|
8486
|
+
.E_c14ouk5o.collapsed .collapsed-content {
|
|
8487
|
+
display: flex;
|
|
8488
|
+
}
|
|
8489
|
+
.E_c14ouk5o.collapsed .collapsed-content > span {
|
|
8490
|
+
flex: 1;
|
|
8491
|
+
display: flex;
|
|
8492
|
+
justify-content: space-between;
|
|
8493
|
+
}
|
|
8494
|
+
.E_c14ouk5o.collapsed .collapsed-content > span .ant-btn {
|
|
8495
|
+
height: auto;
|
|
8496
|
+
}
|
|
8497
|
+
.E_c14ouk5o.collapsed .extra-content {
|
|
8498
|
+
margin-left: 162px;
|
|
8499
|
+
}
|
|
8500
|
+
.E_c14ouk5o .col-label {
|
|
8501
|
+
width: 216px;
|
|
8502
|
+
color: rgba(44, 56, 82, 0.6);
|
|
8503
|
+
margin-right: 12px;
|
|
8504
|
+
flex-shrink: 0;
|
|
8505
|
+
}
|
|
8506
|
+
.E_c14ouk5o .col-content {
|
|
8507
|
+
color: #2d3a56;
|
|
8508
|
+
/* make btn link in info row have the same height as normal text */
|
|
8509
|
+
}
|
|
8510
|
+
.E_c14ouk5o .col-content .ant-btn.ant-btn-link {
|
|
8511
|
+
height: auto;
|
|
8512
|
+
}
|
|
8513
|
+
|
|
8328
8514
|
.E_c1ss4prm {
|
|
8329
8515
|
color: rgba(44, 56, 82, 0.6);
|
|
8330
8516
|
}
|
|
@@ -8374,13 +8560,4 @@ span.E_tqjc4ui {
|
|
|
8374
8560
|
height: 1px;
|
|
8375
8561
|
background: #e4e9f2;
|
|
8376
8562
|
margin: 16px 0;
|
|
8377
|
-
}
|
|
8378
|
-
|
|
8379
|
-
.E_cevhqx7 {
|
|
8380
|
-
color: #00122e;
|
|
8381
|
-
}
|
|
8382
|
-
|
|
8383
|
-
.E_snbqlt4 {
|
|
8384
|
-
margin-top: 8px;
|
|
8385
|
-
color: rgba(44, 56, 82, 0.6);
|
|
8386
8563
|
}
|