@cloudtower/eagle 0.33.1 → 0.33.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/dist/cjs/antd.js +6 -6
  2. package/dist/cjs/core/BitPerSecond/index.js +3 -3
  3. package/dist/cjs/core/KitStoreProvider/index.js +10 -0
  4. package/dist/cjs/core/Modal/index.js +53 -42
  5. package/dist/cjs/core/ModalStack/index.js +6 -0
  6. package/dist/cjs/core/Progress/progress.widgets.js +2 -5
  7. package/dist/cjs/core/SearchInput/index.js +21 -11
  8. package/dist/cjs/core/Timeline/Timeline.style.js +13 -0
  9. package/dist/cjs/core/Timeline/Timeline.widget.js +114 -0
  10. package/dist/cjs/core/Timeline/index.js +122 -0
  11. package/dist/cjs/coreX/CheckPointList/checkpointlist.style.js +9 -0
  12. package/dist/cjs/coreX/CheckPointList/index.js +90 -0
  13. package/dist/cjs/coreX/DateRangePicker/common.js +7 -5
  14. package/dist/cjs/coreX/DateRangePicker/index.js +10 -5
  15. package/dist/cjs/coreX/InfoRowList/InfoRow.js +31 -0
  16. package/dist/cjs/coreX/InfoRowList/InfoRowList.js +60 -0
  17. package/dist/cjs/coreX/Show/index.js +20 -0
  18. package/dist/cjs/index.js +122 -112
  19. package/dist/cjs/stats1.html +1 -1
  20. package/dist/cjs/store/modal.js +3 -0
  21. package/dist/cjs/utils/constants.js +11 -0
  22. package/dist/components.css +1800 -1552
  23. package/dist/esm/antd.js +3 -3
  24. package/dist/esm/core/BitPerSecond/index.js +3 -3
  25. package/dist/esm/core/KitStoreProvider/index.js +10 -1
  26. package/dist/esm/core/Modal/index.js +53 -42
  27. package/dist/esm/core/ModalStack/index.js +7 -1
  28. package/dist/esm/core/Progress/progress.widgets.js +1 -4
  29. package/dist/esm/core/SearchInput/index.js +21 -11
  30. package/dist/esm/core/Timeline/Timeline.style.js +7 -0
  31. package/dist/esm/core/Timeline/Timeline.widget.js +107 -0
  32. package/dist/esm/core/Timeline/index.js +115 -0
  33. package/dist/esm/coreX/CheckPointList/checkpointlist.style.js +5 -0
  34. package/dist/esm/coreX/CheckPointList/index.js +83 -0
  35. package/dist/esm/coreX/DateRangePicker/common.js +7 -5
  36. package/dist/esm/coreX/DateRangePicker/index.js +10 -5
  37. package/dist/esm/coreX/InfoRowList/InfoRow.js +25 -0
  38. package/dist/esm/coreX/InfoRowList/InfoRowList.js +54 -0
  39. package/dist/esm/coreX/Show/index.js +14 -0
  40. package/dist/esm/index.js +8 -4
  41. package/dist/esm/stats1.html +1 -1
  42. package/dist/esm/store/modal.js +3 -0
  43. package/dist/esm/utils/constants.js +7 -1
  44. package/dist/src/antd.d.ts +2 -2
  45. package/dist/src/core/Alert/alert.type.d.ts +5 -4
  46. package/dist/src/core/BitPerSecond/index.d.ts +2 -2
  47. package/dist/src/core/KitStoreProvider/index.d.ts +1 -0
  48. package/dist/src/core/Modal/modal.type.d.ts +25 -2
  49. package/dist/src/core/SearchInput/searchInput.type.d.ts +33 -0
  50. package/dist/src/core/Timeline/Timeline.style.d.ts +5 -0
  51. package/dist/src/core/Timeline/Timeline.type.d.ts +209 -0
  52. package/dist/src/core/Timeline/Timeline.widget.d.ts +5 -0
  53. package/dist/src/core/Timeline/index.d.ts +10 -0
  54. package/dist/src/core/index.d.ts +1 -0
  55. package/dist/src/coreX/CheckPointList/checkpointlist.style.d.ts +3 -0
  56. package/dist/src/coreX/CheckPointList/checkpointlist.type.d.ts +93 -0
  57. package/dist/src/coreX/CheckPointList/index.d.ts +8 -0
  58. package/dist/src/coreX/DateRangePicker/dateRangePicker.type.d.ts +6 -1
  59. package/dist/src/coreX/InfoRowList/InfoRow.d.ts +7 -0
  60. package/dist/src/coreX/InfoRowList/InfoRowList.d.ts +3 -0
  61. package/dist/src/coreX/InfoRowList/InfoRowList.type.d.ts +63 -0
  62. package/dist/src/coreX/InfoRowList/index.d.ts +1 -0
  63. package/dist/src/coreX/Show/index.d.ts +3 -0
  64. package/dist/src/coreX/Show/show.type.d.ts +13 -0
  65. package/dist/src/coreX/index.d.ts +5 -2
  66. package/dist/src/store/modal.d.ts +8 -2
  67. package/dist/src/utils/constants.d.ts +2 -0
  68. package/dist/stories/docs/core/Button.stories.d.ts +11 -0
  69. package/dist/stories/docs/core/KitStoreProvider.stories.d.ts +1 -1
  70. package/dist/stories/docs/core/Modal.stories.d.ts +4 -0
  71. package/dist/stories/docs/core/Timeline.stories.d.ts +38 -0
  72. package/dist/stories/docs/coreX/CheckPointList.stories.d.ts +67 -0
  73. package/dist/stories/docs/coreX/DateRangePicker.stories.d.ts +1 -0
  74. package/dist/stories/docs/coreX/I18nNameTag.stories.d.ts +8 -0
  75. package/dist/stories/docs/coreX/InfoRowList.stories.d.ts +36 -0
  76. package/dist/stories/docs/coreX/Show.stories.d.ts +31 -0
  77. package/dist/style.css +1294 -1075
  78. package/package.json +4 -4
@@ -28649,7 +28649,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
28649
28649
  font-size: 14px;
28650
28650
  font-weight: bold;
28651
28651
  padding: 0 16px;
28652
- border: none;
28653
28652
  }
28654
28653
 
28655
28654
  .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost {
@@ -28661,6 +28660,10 @@ div.ant-typography-edit-content.ant-typography-rtl {
28661
28660
  background: rgba(223, 228, 235, 0.6);
28662
28661
  }
28663
28662
 
28663
+ .ant-modal .ant-modal-footer .footer-content.no-button-border button {
28664
+ border: none;
28665
+ }
28666
+
28664
28667
  .ant-modal .ant-modal-footer .footer-content button + button {
28665
28668
  margin-left: 8px;
28666
28669
  }
@@ -29342,6 +29345,31 @@ td .ant-btn-link {
29342
29345
  background-color: rgba(211, 218, 235, 0.6);
29343
29346
  }
29344
29347
 
29348
+ .ant-message > div > .ant-message-notice {
29349
+ padding: 4px;
29350
+ }
29351
+
29352
+ .ant-message > div > .ant-message-notice:first-child {
29353
+ margin-top: -4px;
29354
+ }
29355
+
29356
+ .ant-message > div > .ant-message-notice.move-up-leave.move-up-leave-active {
29357
+ animation-name: MessageMoveOut;
29358
+ animation-duration: 0.3s;
29359
+ }
29360
+
29361
+ @keyframes MessageMoveOut {
29362
+ 0% {
29363
+ max-height: 150px;
29364
+ padding: 4px;
29365
+ opacity: 1;
29366
+ }
29367
+ 100% {
29368
+ max-height: 0;
29369
+ padding: 0;
29370
+ opacity: 0;
29371
+ }
29372
+ }
29345
29373
  @media screen and (min-width: 1280px) {
29346
29374
  .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
29347
29375
  .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
@@ -29676,156 +29704,87 @@ html body {
29676
29704
  margin-left: 1px;
29677
29705
  }
29678
29706
 
29679
- span.E_tqjc4ui {
29680
- margin: 0 2px;
29681
- }
29682
-
29683
- .E_gmyahx3 {
29684
- cursor: pointer;
29685
- }
29686
-
29687
- .E_gmyahx3 .link-text {
29688
- color: rgba(0, 21, 64, 0.3);
29689
- }
29690
-
29691
- .E_gmyahx3:hover .link-text {
29692
- color: #0080ff;
29693
- }
29694
-
29695
- .E_s1at6qmn.ant-layout-sider {
29696
- background: #edf0f7;
29697
- padding: 32px 8px;
29698
- overflow: auto;
29699
- }
29700
-
29701
- .E_s1at6qmn .ant-layout-sider-children {
29707
+ .E_s1ebs0ra {
29702
29708
  display: flex;
29703
- flex-direction: column;
29709
+ align-items: center;
29704
29710
  justify-content: space-between;
29705
- }
29706
-
29707
- .E_s1at6qmn footer {
29708
- display: flex;
29709
- }
29710
-
29711
- .E_s1at6qmn .ant-menu {
29712
29711
  background: #edf0f7;
29712
+ padding: 8px 12px;
29713
+ position: sticky;
29714
+ top: 0;
29715
+ z-index: 1;
29716
+ margin-bottom: -52px;
29713
29717
  }
29714
29718
 
29715
- .E_s1at6qmn .ant-menu a {
29716
- color: #00122e;
29717
- width: 180px;
29718
- overflow: hidden;
29719
- text-overflow: ellipsis;
29720
- }
29721
-
29722
- .E_s1at6qmn .ant-menu-vertical {
29723
- margin-bottom: 24px;
29724
- }
29725
-
29726
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
29727
- margin: 0;
29728
- }
29729
-
29730
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
29731
- font-size: 12px;
29732
- padding: 0 8px 4px;
29733
- line-height: 18px;
29734
- }
29735
-
29736
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
29737
- padding: 0;
29738
- }
29739
-
29740
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
29741
- padding-bottom: 24px;
29742
- }
29743
-
29744
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
29745
- margin-bottom: 24px;
29746
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
29747
- }
29748
-
29749
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
29750
- transition: none;
29719
+ .E_s1ebs0ra .select-total {
29751
29720
  display: flex;
29752
29721
  align-items: center;
29753
- height: 32px;
29754
- line-height: 22px;
29755
- padding: 0 8px;
29756
- }
29757
-
29758
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
29759
- margin-right: 12px;
29760
- }
29761
-
29762
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
29763
- margin: 0;
29764
- margin-bottom: 2px;
29722
+ font-weight: 700;
29723
+ flex-shrink: 0;
29765
29724
  }
29766
29725
 
29767
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
29768
- background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
29769
- box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
29770
- border-radius: 6px;
29771
- color: #fff;
29726
+ .E_s1ebs0ra .select-total .icon-wrapper {
29727
+ cursor: pointer;
29728
+ margin-left: 8px;
29729
+ width: 32px;
29730
+ height: 32px;
29731
+ border-radius: 50%;
29732
+ justify-content: center;
29772
29733
  }
29773
29734
 
29774
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
29775
- color: #fff;
29735
+ .E_s1ebs0ra .select-total .icon-wrapper:hover {
29736
+ background: rgba(225, 230, 241, 0.6);
29776
29737
  }
29777
29738
 
29778
- .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 {
29779
- background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
29780
- box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
29781
- border-radius: 6px;
29739
+ .E_s1ebs0ra .action-group {
29740
+ flex: 1;
29741
+ margin-left: 88px;
29742
+ white-space: nowrap;
29743
+ text-align: right;
29744
+ position: relative;
29745
+ padding: 4px 0;
29746
+ margin-top: -4px;
29747
+ overflow: hidden;
29782
29748
  }
29783
29749
 
29784
- .E_s1wu0lms .ant-menu-item-group-title {
29785
- white-space: nowrap;
29786
- transition: all 0s;
29750
+ .E_s1ebs0ra .action-group .sub-menu-delete {
29751
+ transform: translateY(-4px);
29787
29752
  }
29788
29753
 
29789
- .E_s1wu0lms.shrink {
29790
- transition: all 0s;
29791
- overflow: hidden;
29754
+ .E_s1ebs0ra .action-group button {
29755
+ border: none;
29792
29756
  }
29793
29757
 
29794
- .E_s1wu0lms.shrink .ant-menu-item-group-title {
29795
- visibility: hidden;
29758
+ .E_s1ebs0ra .action-group > *:not(:last-child) {
29759
+ margin-right: 8px;
29796
29760
  }
29797
29761
 
29798
- .E_s1wu0lms.shrink .ant-menu-item {
29799
- width: 36px;
29800
- padding: 0 6px;
29762
+ .E_s1ebs0ra .action-group > button:last-child {
29763
+ margin-right: 4px;
29801
29764
  }
29802
29765
 
29803
- .E_n1ugzfva {
29804
- display: flex;
29805
- place-items: center;
29806
- width: 100% !important;
29766
+ .E_s1ebs0ra .action-group .more-btn {
29767
+ cursor: pointer;
29768
+ width: 32px;
29769
+ height: 32px;
29770
+ justify-content: center;
29771
+ border-radius: 50%;
29807
29772
  }
29808
29773
 
29809
- .E_n1ugzfva[disabled] {
29810
- color: rgba(0, 0, 0, 0.25) !important;
29811
- opacity: 1 !important;
29774
+ .E_s1ebs0ra .action-group .more-btn:hover {
29775
+ background: #fff;
29812
29776
  }
29813
29777
 
29814
- .E_n1ugzfva.ant-btn {
29815
- width: 100%;
29816
- color: #00122e;
29778
+ .E_gmyahx3 {
29779
+ cursor: pointer;
29817
29780
  }
29818
29781
 
29819
- .E_n1ugzfva .icon-wrapper {
29820
- margin-right: 12px;
29782
+ .E_gmyahx3 .link-text {
29783
+ color: rgba(0, 21, 64, 0.3);
29821
29784
  }
29822
29785
 
29823
- .E_n1ugzfva .link-title {
29824
- flex: 1;
29825
- overflow: hidden;
29826
- white-space: nowrap;
29827
- text-overflow: ellipsis;
29828
- text-align: left;
29786
+ .E_gmyahx3:hover .link-text {
29787
+ color: #0080ff;
29829
29788
  }
29830
29789
 
29831
29790
  .E_clm1wy1 {
@@ -29937,6 +29896,55 @@ span.E_tqjc4ui {
29937
29896
  border-radius: 2px;
29938
29897
  }
29939
29898
 
29899
+ .E_c18bcrac {
29900
+ display: inline-block;
29901
+ width: 100%;
29902
+ }
29903
+
29904
+ .E_c18bcrac .recharts-wrapper {
29905
+ margin-left: 4px;
29906
+ }
29907
+
29908
+ .E_cro7kg2 {
29909
+ padding: 4px;
29910
+ }
29911
+
29912
+ .E_c14wcxf0 {
29913
+ display: flex;
29914
+ justify-content: space-between;
29915
+ align-items: center;
29916
+ font-size: 13px;
29917
+ line-height: 24px;
29918
+ color: #cccccc;
29919
+ white-space: nowrap;
29920
+ }
29921
+
29922
+ .E_c14wcxf0 label {
29923
+ margin-right: 32px;
29924
+ }
29925
+
29926
+ .E_coy29mj.E_c14wcxf0 {
29927
+ font-weight: bold;
29928
+ color: white;
29929
+ }
29930
+
29931
+ .E_s11212zy {
29932
+ width: 8px;
29933
+ height: 8px;
29934
+ border-radius: 2px;
29935
+ display: inline-block;
29936
+ background: var(--s11212zy-0);
29937
+ border: 1px solid #fff;
29938
+ box-sizing: content-box;
29939
+ margin-right: 6px;
29940
+ }
29941
+
29942
+ .E_p1lyky6c > :first-child {
29943
+ font-weight: bold;
29944
+ color: white;
29945
+ margin-right: 4px;
29946
+ }
29947
+
29940
29948
  .E_c1up1pdz {
29941
29949
  width: 648px;
29942
29950
  }
@@ -30103,75 +30111,37 @@ span.E_tqjc4ui {
30103
30111
  color: #fff;
30104
30112
  }
30105
30113
 
30106
- .E_s1ebs0ra {
30107
- display: flex;
30108
- align-items: center;
30109
- justify-content: space-between;
30110
- background: #edf0f7;
30111
- padding: 8px 12px;
30112
- position: sticky;
30113
- top: 0;
30114
- z-index: 1;
30115
- margin-bottom: -52px;
30114
+ .E_ou7iq30 {
30115
+ overflow: hidden;
30116
+ text-overflow: ellipsis;
30116
30117
  }
30117
30118
 
30118
- .E_s1ebs0ra .select-total {
30119
- display: flex;
30120
- align-items: center;
30121
- font-weight: 700;
30122
- flex-shrink: 0;
30123
- }
30124
-
30125
- .E_s1ebs0ra .select-total .icon-wrapper {
30126
- cursor: pointer;
30127
- margin-left: 8px;
30128
- width: 32px;
30129
- height: 32px;
30130
- border-radius: 50%;
30131
- justify-content: center;
30132
- }
30133
-
30134
- .E_s1ebs0ra .select-total .icon-wrapper:hover {
30135
- background: rgba(225, 230, 241, 0.6);
30136
- }
30137
-
30138
- .E_s1ebs0ra .action-group {
30139
- flex: 1;
30140
- margin-left: 88px;
30119
+ .E_s1tui002 {
30141
30120
  white-space: nowrap;
30142
- text-align: right;
30143
- position: relative;
30144
- padding: 4px 0;
30145
- margin-top: -4px;
30146
- overflow: hidden;
30147
- }
30148
-
30149
- .E_s1ebs0ra .action-group .sub-menu-delete {
30150
- transform: translateY(-4px);
30151
30121
  }
30152
30122
 
30153
- .E_s1ebs0ra .action-group button {
30154
- border: none;
30123
+ .E_mxrc2zg {
30124
+ display: -webkit-box;
30125
+ -webkit-line-clamp: var(--mxrc2zg-0);
30126
+ -webkit-box-orient: vertical;
30127
+ word-break: break-all;
30155
30128
  }
30156
30129
 
30157
- .E_s1ebs0ra .action-group > *:not(:last-child) {
30158
- margin-right: 8px;
30130
+ .E_t1vv6d68 .ant-tooltip-arrow {
30131
+ display: none;
30159
30132
  }
30160
30133
 
30161
- .E_s1ebs0ra .action-group > button:last-child {
30162
- margin-right: 4px;
30134
+ .E_t1vv6d68 .ant-tooltip-inner {
30135
+ background: rgba(23, 38, 64, 0.8);
30136
+ border-radius: 4px;
30163
30137
  }
30164
30138
 
30165
- .E_s1ebs0ra .action-group .more-btn {
30166
- cursor: pointer;
30167
- width: 32px;
30168
- height: 32px;
30169
- justify-content: center;
30170
- border-radius: 50%;
30139
+ .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
30140
+ visibility: hidden;
30171
30141
  }
30172
30142
 
30173
- .E_s1ebs0ra .action-group .more-btn:hover {
30174
- background: #fff;
30143
+ span.E_tqjc4ui {
30144
+ margin: 0 2px;
30175
30145
  }
30176
30146
 
30177
30147
  .E_n12mqh7z {
@@ -30194,312 +30164,184 @@ span.E_tqjc4ui {
30194
30164
  overflow: auto;
30195
30165
  }
30196
30166
 
30197
- .E_t160l1cm {
30198
- display: flex;
30199
- flex-direction: column;
30200
- flex: 1;
30201
- /* FIXME:(yanzhen) do this better */
30167
+ .E_c18gxmrl {
30168
+ border: 1px solid #d8deeb;
30169
+ border-radius: 4px;
30202
30170
  }
30203
30171
 
30204
- .E_t160l1cm .tab-bar {
30205
- flex-shrink: 0;
30206
- display: flex;
30207
- border-bottom: 1px solid rgba(172, 186, 211, 0.6);
30172
+ .E_c18gxmrl + .E_c18gxmrl {
30173
+ margin-top: 8px;
30208
30174
  }
30209
30175
 
30210
- .E_t160l1cm .tab-content {
30211
- height: 100%;
30176
+ .E_c18gxmrl:hover {
30177
+ border-color: #0080ff;
30212
30178
  }
30213
30179
 
30214
- .E_t160l1cm .tab-menu-item {
30215
- margin-right: 2px;
30216
- padding: 1px 12px;
30217
- line-height: 24px;
30218
- height: 24px;
30219
- color: rgba(44, 56, 82, 0.6);
30220
- border-radius: 4px 4px 0 0;
30221
- cursor: pointer;
30222
- transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
30180
+ .E_c18gxmrl:hover > header {
30181
+ background: rgba(0, 128, 255, 0.1);
30223
30182
  }
30224
30183
 
30225
- .E_t160l1cm .tab-menu-item:first-child {
30226
- padding-left: 0;
30184
+ .E_c18gxmrl.active header {
30185
+ border-bottom: 1px solid #d8deeb;
30227
30186
  }
30228
30187
 
30229
- .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30230
- padding-left: 12px;
30188
+ .E_c18gxmrl > header {
30189
+ padding: 8px 12px;
30231
30190
  }
30232
30191
 
30233
- .E_t160l1cm .tab-menu-item:hover {
30234
- color: #0080ff;
30235
- background: rgba(211, 218, 235, 0.6);
30192
+ .E_berrcjl {
30193
+ color: rgba(10, 37, 85, 0.6);
30194
+ margin-bottom: 4px;
30236
30195
  }
30237
30196
 
30238
- .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30239
- fill: #0080ff;
30197
+ .E_berrcjl .breadcrumb-link {
30198
+ color: rgba(10, 37, 85, 0.6);
30199
+ cursor: pointer;
30200
+ transition: color 160ms ease;
30240
30201
  }
30241
30202
 
30242
- .E_t160l1cm .tab-menu-item:active {
30243
- background: rgba(192, 203, 224, 0.6);
30203
+ .E_berrcjl .breadcrumb-link:hover {
30204
+ color: #0080ff;
30244
30205
  }
30245
30206
 
30246
- .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30247
- color: #0080ff;
30248
- background: rgba(211, 218, 235, 0.6);
30207
+ .E_berrcjl .breadcrumb-link:active {
30208
+ color: #005ed1;
30249
30209
  }
30250
30210
 
30251
- .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30252
- background: rgba(192, 203, 224, 0.6);
30211
+ .E_s1at6qmn.ant-layout-sider {
30212
+ background: #edf0f7;
30213
+ padding: 32px 8px;
30214
+ overflow: auto;
30253
30215
  }
30254
30216
 
30255
- .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30256
- background: rgba(0, 128, 255, 0.16);
30217
+ .E_s1at6qmn .ant-layout-sider-children {
30218
+ display: flex;
30219
+ flex-direction: column;
30220
+ justify-content: space-between;
30257
30221
  }
30258
30222
 
30259
- .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30260
- fill: #0080ff;
30223
+ .E_s1at6qmn footer {
30224
+ display: flex;
30261
30225
  }
30262
30226
 
30263
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30264
- color: #0080ff;
30265
- background: rgba(0, 128, 255, 0.1);
30227
+ .E_s1at6qmn .ant-menu {
30228
+ background: #edf0f7;
30266
30229
  }
30267
30230
 
30268
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30269
- background: rgba(0, 128, 255, 0.16);
30231
+ .E_s1at6qmn .ant-menu a {
30232
+ color: #00122e;
30233
+ width: 180px;
30234
+ overflow: hidden;
30235
+ text-overflow: ellipsis;
30270
30236
  }
30271
30237
 
30272
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30273
- fill: #1d326c;
30238
+ .E_s1at6qmn .ant-menu-vertical {
30239
+ margin-bottom: 24px;
30274
30240
  }
30275
30241
 
30276
- .E_t160l1cm .tab-menu-item .expand-arrow {
30277
- margin-left: 8px;
30278
- height: 22px;
30242
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
30243
+ margin: 0;
30279
30244
  }
30280
30245
 
30281
- .E_t160l1cm .tab-menu-item .expand-arrow path {
30282
- fill: rgba(44, 56, 82, 0.6);
30246
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
30247
+ font-size: 12px;
30248
+ padding: 0 8px 4px;
30249
+ line-height: 18px;
30283
30250
  }
30284
30251
 
30285
- .E_t160l1cm .tab-menu-item-group {
30252
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
30286
30253
  padding: 0;
30287
- display: flex;
30288
- align-items: center;
30289
- overflow: hidden;
30290
30254
  }
30291
30255
 
30292
- .E_t160l1cm .tab-menu-item-group .main-title {
30293
- opacity: 0;
30294
- max-width: 0;
30295
- transition: max-width 320ms ease, opacity 240ms ease;
30256
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
30257
+ padding-bottom: 24px;
30296
30258
  }
30297
30259
 
30298
- .E_t160l1cm .tab-menu-item-group .sub-title {
30299
- padding: 1px 12px;
30300
- position: relative;
30260
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
30261
+ margin-bottom: 24px;
30262
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
30263
+ }
30264
+
30265
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
30266
+ transition: none;
30301
30267
  display: flex;
30268
+ align-items: center;
30269
+ height: 32px;
30270
+ line-height: 22px;
30271
+ padding: 0 8px;
30302
30272
  }
30303
30273
 
30304
- .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
30305
- opacity: 0;
30306
- position: absolute;
30307
- top: 50%;
30308
- left: 0;
30309
- transform: translate(-50%, -50%);
30310
- transition: opacity 100ms linear;
30311
- fill: rgba(0, 128, 255, 0.2);
30274
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
30275
+ margin-right: 12px;
30312
30276
  }
30313
30277
 
30314
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
30315
- color: #0080ff;
30278
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
30279
+ margin: 0;
30280
+ margin-bottom: 2px;
30316
30281
  }
30317
30282
 
30318
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
30319
- padding: 1px 12px;
30320
- display: inline-block;
30321
- opacity: 1;
30322
- max-width: 160px;
30283
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
30284
+ background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
30285
+ box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
30286
+ border-radius: 6px;
30287
+ color: #fff;
30323
30288
  }
30324
30289
 
30325
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30326
- padding: 1px 12px;
30327
- color: #005ed1;
30290
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
30291
+ color: #fff;
30328
30292
  }
30329
30293
 
30330
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30331
- opacity: 1;
30294
+ .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 {
30295
+ background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
30296
+ box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
30297
+ border-radius: 6px;
30332
30298
  }
30333
30299
 
30334
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title {
30335
- background: rgba(0, 128, 255, 0.16);
30300
+ .E_s1wu0lms .ant-menu-item-group-title {
30301
+ white-space: nowrap;
30302
+ transition: all 0s;
30336
30303
  }
30337
30304
 
30338
- .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 {
30339
- opacity: 0;
30305
+ .E_s1wu0lms.shrink {
30306
+ transition: all 0s;
30307
+ overflow: hidden;
30340
30308
  }
30341
30309
 
30342
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30343
- padding: 4px 16px;
30344
- height: 32px;
30345
- border-radius: 6px 6px 0 0;
30310
+ .E_s1wu0lms.shrink .ant-menu-item-group-title {
30311
+ visibility: hidden;
30346
30312
  }
30347
30313
 
30348
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30349
- padding-left: 0;
30314
+ .E_s1wu0lms.shrink .ant-menu-item {
30315
+ width: 36px;
30316
+ padding: 0 6px;
30350
30317
  }
30351
30318
 
30352
- .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 {
30353
- padding-left: 16px;
30319
+ .E_n1ugzfva {
30320
+ display: flex;
30321
+ place-items: center;
30322
+ width: 100% !important;
30354
30323
  }
30355
30324
 
30356
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
30357
- margin-left: 11px;
30358
- height: 24px;
30325
+ .E_n1ugzfva[disabled] {
30326
+ color: rgba(0, 0, 0, 0.25) !important;
30327
+ opacity: 1 !important;
30359
30328
  }
30360
30329
 
30361
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
30362
- padding: 0;
30363
- }
30364
-
30365
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
30366
- padding: 4px 16px;
30367
- }
30368
-
30369
- .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 {
30370
- padding: 4px 16px;
30371
- }
30372
-
30373
- .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
30374
- background: #fff;
30375
- }
30376
-
30377
- .E_t160l1cm .tab-menu-item-light:active {
30378
- color: #005ed1;
30379
- }
30380
-
30381
- .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
30382
- background: #fff;
30383
- color: #1d326c;
30384
- }
30385
-
30386
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
30387
- color: rgba(45, 58, 86, 0.6);
30388
- }
30389
-
30390
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
30391
- color: #1d326c;
30392
- }
30393
-
30394
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30395
- fill: #d8deeb;
30330
+ .E_n1ugzfva.ant-btn {
30331
+ width: 100%;
30332
+ color: #00122e;
30396
30333
  }
30397
30334
 
30398
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
30399
- fill: #1d326c;
30335
+ .E_n1ugzfva .icon-wrapper {
30336
+ margin-right: 12px;
30400
30337
  }
30401
30338
 
30402
- .E_t160l1cm .tab-content {
30339
+ .E_n1ugzfva .link-title {
30403
30340
  flex: 1;
30404
- display: flex;
30405
- flex-direction: column;
30406
- }
30407
-
30408
- .E_t160l1cm.is-overview .tab-content {
30409
- overflow: visible;
30410
- }
30411
-
30412
- .E_t14npdqr {
30413
- max-width: 240px;
30414
- animation: none;
30415
- }
30416
-
30417
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
30418
- border: 1px solid #0080ff;
30419
- padding: 0;
30420
- }
30421
-
30422
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30423
- margin: 0;
30424
- height: 32px;
30425
- line-height: 32px;
30426
- font-size: 13px;
30427
- padding: 0 10px;
30428
- display: block;
30429
30341
  overflow: hidden;
30430
- text-overflow: ellipsis;
30431
- white-space: nowrap;
30432
- }
30433
-
30434
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
30435
- content: " ";
30436
- height: 1px;
30437
- width: calc(100% + 10px);
30438
- background: rgba(172, 186, 211, 0.6);
30439
- display: block;
30440
- }
30441
-
30442
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
30443
- color: #0080ff;
30444
- background: transparent;
30445
- }
30446
-
30447
- .E_c18bcrac {
30448
- display: inline-block;
30449
- width: 100%;
30450
- }
30451
-
30452
- .E_c18bcrac .recharts-wrapper {
30453
- margin-left: 4px;
30454
- }
30455
-
30456
- .E_cro7kg2 {
30457
- padding: 4px;
30458
- }
30459
-
30460
- .E_c14wcxf0 {
30461
- display: flex;
30462
- justify-content: space-between;
30463
- align-items: center;
30464
- font-size: 13px;
30465
- line-height: 24px;
30466
- color: #cccccc;
30467
30342
  white-space: nowrap;
30468
- }
30469
-
30470
- .E_c14wcxf0 label {
30471
- margin-right: 32px;
30472
- }
30473
-
30474
- .E_coy29mj.E_c14wcxf0 {
30475
- font-weight: bold;
30476
- color: white;
30477
- }
30478
-
30479
- .E_s11212zy {
30480
- width: 8px;
30481
- height: 8px;
30482
- border-radius: 2px;
30483
- display: inline-block;
30484
- background: var(--s11212zy-0);
30485
- border: 1px solid #fff;
30486
- box-sizing: content-box;
30487
- margin-right: 6px;
30488
- }
30489
-
30490
- .E_p1lyky6c > :first-child {
30491
- font-weight: bold;
30492
- color: white;
30493
- margin-right: 4px;
30494
- }
30495
-
30496
- .E_s1iv0tp1 .enabled-switch {
30497
- display: flex;
30498
- align-items: center;
30499
- }
30500
-
30501
- .E_s1iv0tp1 .enabled-text {
30502
- margin-right: 8px;
30343
+ text-overflow: ellipsis;
30344
+ text-align: left;
30503
30345
  }
30504
30346
 
30505
30347
  .E_t1sqg15u {
@@ -30608,222 +30450,101 @@ span.E_tqjc4ui {
30608
30450
  padding-right: 12px;
30609
30451
  }
30610
30452
 
30611
- .E_ou7iq30 {
30612
- overflow: hidden;
30613
- text-overflow: ellipsis;
30614
- }
30615
-
30616
- .E_s1tui002 {
30617
- white-space: nowrap;
30618
- }
30619
-
30620
- .E_mxrc2zg {
30621
- display: -webkit-box;
30622
- -webkit-line-clamp: var(--mxrc2zg-0);
30623
- -webkit-box-orient: vertical;
30624
- word-break: break-all;
30453
+ .E_m74vjol {
30454
+ display: flex;
30455
+ justify-content: space-between;
30456
+ width: 100%;
30625
30457
  }
30626
30458
 
30627
- .E_t1vv6d68 .ant-tooltip-arrow {
30628
- display: none;
30459
+ .E_m74vjol .action {
30460
+ margin-left: 16px;
30629
30461
  }
30630
30462
 
30631
- .E_t1vv6d68 .ant-tooltip-inner {
30632
- background: rgba(23, 38, 64, 0.8);
30633
- border-radius: 4px;
30463
+ .E_a1o35uvh.ant-alert-closable {
30464
+ padding-right: 12px;
30634
30465
  }
30635
30466
 
30636
- .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
30637
- visibility: hidden;
30467
+ .E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
30468
+ height: fit-content;
30469
+ margin-left: 16px;
30638
30470
  }
30639
30471
 
30640
- .E_wg1tsps {
30641
- display: flex;
30642
- align-items: center;
30643
- justify-content: flex-end;
30472
+ .E_a1o35uvh .ant-alert-message {
30473
+ flex: 1;
30644
30474
  }
30645
30475
 
30646
- .E_b1ctd5xy {
30476
+ .E_s1iv0tp1 .enabled-switch {
30647
30477
  display: flex;
30648
30478
  align-items: center;
30649
- width: calc(100% - 40px);
30650
30479
  }
30651
30480
 
30652
- .E_b1ctd5xy .chart {
30653
- display: inline-block;
30654
- width: 100%;
30481
+ .E_s1iv0tp1 .enabled-text {
30482
+ margin-right: 8px;
30655
30483
  }
30656
30484
 
30657
- .E_u1p8acpn {
30658
- min-width: 40px;
30485
+ .E_b1wx3t3t.ant-btn-icon-only {
30486
+ justify-content: center;
30659
30487
  }
30660
30488
 
30661
- .E_u1p8acpn .unit {
30662
- color: #00122e !important;
30489
+ .E_b1wx3t3t.ant-btn {
30490
+ display: inline-flex;
30491
+ align-items: center;
30492
+ justify-content: center;
30493
+ height: 32px;
30494
+ border-radius: 6px;
30495
+ line-height: 22px;
30496
+ transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
30497
+ transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
30498
+ padding: 5px 12px;
30663
30499
  }
30664
30500
 
30665
- .E_c18gxmrl {
30666
- border: 1px solid #d8deeb;
30667
- border-radius: 4px;
30501
+ .E_b1wx3t3t.ant-btn.ant-btn-lg {
30502
+ height: 40px;
30503
+ line-height: 24px;
30504
+ padding: 8px 16px;
30668
30505
  }
30669
30506
 
30670
- .E_c18gxmrl + .E_c18gxmrl {
30671
- margin-top: 8px;
30507
+ .E_b1wx3t3t.ant-btn.ant-btn-sm {
30508
+ height: 24px;
30509
+ line-height: 20px;
30510
+ padding: 2px 8px;
30672
30511
  }
30673
30512
 
30674
- .E_c18gxmrl:hover {
30675
- border-color: #0080ff;
30513
+ .E_b1wx3t3t.ant-btn.ant-btn-circle, .E_b1wx3t3t.ant-btn.ant-btn-circle-outline {
30514
+ border-radius: 50%;
30676
30515
  }
30677
30516
 
30678
- .E_c18gxmrl:hover > header {
30679
- background: rgba(0, 128, 255, 0.1);
30517
+ .E_b1wx3t3t .ant-btn-loading-icon span.anticon {
30518
+ margin-right: 8px;
30519
+ padding-right: 0px;
30680
30520
  }
30681
30521
 
30682
- .E_c18gxmrl.active header {
30683
- border-bottom: 1px solid #d8deeb;
30522
+ .E_b1wx3t3t.ant-btn.ant-btn-primary, .E_b1wx3t3t.ant-btn.ant-btn-secondary, .E_b1wx3t3t.ant-btn.ant-btn-tertiary, .E_b1wx3t3t.ant-btn.ant-btn-ordinary, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint, .E_b1wx3t3t.ant-btn.ant-btn-quiet {
30523
+ color: var(--color, #06101f);
30524
+ font-weight: var(--font-weight);
30525
+ background: var(--background-color, #fff);
30526
+ border-width: var(--border-width, 1px);
30527
+ border-color: var(--border-color, #d9d9d9);
30684
30528
  }
30685
30529
 
30686
- .E_c18gxmrl > header {
30687
- padding: 8px 12px;
30530
+ .E_b1wx3t3t.ant-btn.ant-btn-primary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-secondary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-tertiary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-ordinary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-quiet[ant-click-animating-without-extra-node=true]:after {
30531
+ display: none;
30688
30532
  }
30689
30533
 
30690
- .E_b1nip9bk {
30691
- padding: 4px 11px;
30534
+ .E_b1wx3t3t.ant-btn.ant-btn-primary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-secondary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-tertiary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-ordinary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint .anticon, .E_b1wx3t3t.ant-btn.ant-btn-quiet .anticon {
30535
+ color: var(--color, inherit);
30692
30536
  }
30693
30537
 
30694
- .E_bqamoqe {
30695
- white-space: nowrap;
30696
- filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
30538
+ .E_b1wx3t3t.ant-btn.ant-btn-primary:hover, .E_b1wx3t3t.ant-btn.ant-btn-primary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-secondary:hover, .E_b1wx3t3t.ant-btn.ant-btn-secondary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-tertiary:hover, .E_b1wx3t3t.ant-btn.ant-btn-tertiary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary:hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint:hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-quiet:hover, .E_b1wx3t3t.ant-btn.ant-btn-quiet.__pseudo-states-hover {
30539
+ background: var(--background-color-hover, var(--background-color));
30540
+ border-color: var(--border-color-hover, var(--border-color, transparent));
30697
30541
  }
30698
30542
 
30699
- .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30700
- --color: #0080ff;
30701
- }
30702
-
30703
- .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
30704
- --color: #0080ff;
30705
- }
30706
-
30707
- .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30708
- margin-left: 1px;
30709
- }
30710
-
30711
- .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30712
- border-top-right-radius: 0;
30713
- border-bottom-right-radius: 0;
30714
- }
30715
-
30716
- .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30717
- border-top-left-radius: 0;
30718
- border-bottom-left-radius: 0;
30719
- }
30720
-
30721
- .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30722
- border-radius: unset;
30723
- }
30724
-
30725
- .E_m74vjol {
30726
- display: flex;
30727
- justify-content: space-between;
30728
- width: 100%;
30729
- }
30730
-
30731
- .E_m74vjol .action {
30732
- margin-left: 16px;
30733
- }
30734
-
30735
- .E_a1o35uvh.ant-alert-closable {
30736
- padding-right: 12px;
30737
- }
30738
-
30739
- .E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
30740
- height: fit-content;
30741
- margin-left: 16px;
30742
- }
30743
-
30744
- .E_a1o35uvh .ant-alert-message {
30745
- flex: 1;
30746
- }
30747
-
30748
- .E_berrcjl {
30749
- color: rgba(10, 37, 85, 0.6);
30750
- margin-bottom: 4px;
30751
- }
30752
-
30753
- .E_berrcjl .breadcrumb-link {
30754
- color: rgba(10, 37, 85, 0.6);
30755
- cursor: pointer;
30756
- transition: color 160ms ease;
30757
- }
30758
-
30759
- .E_berrcjl .breadcrumb-link:hover {
30760
- color: #0080ff;
30761
- }
30762
-
30763
- .E_berrcjl .breadcrumb-link:active {
30764
- color: #005ed1;
30765
- }
30766
-
30767
- .E_b1wx3t3t.ant-btn-icon-only {
30768
- justify-content: center;
30769
- }
30770
-
30771
- .E_b1wx3t3t.ant-btn {
30772
- display: inline-flex;
30773
- align-items: center;
30774
- justify-content: center;
30775
- height: 32px;
30776
- border-radius: 6px;
30777
- line-height: 22px;
30778
- transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
30779
- transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
30780
- }
30781
-
30782
- .E_b1wx3t3t.ant-btn.ant-btn-lg {
30783
- height: 40px;
30784
- line-height: 24px;
30785
- }
30786
-
30787
- .E_b1wx3t3t.ant-btn.ant-btn-sm {
30788
- height: 24px;
30789
- line-height: 20px;
30790
- }
30791
-
30792
- .E_b1wx3t3t.ant-btn.ant-btn-circle, .E_b1wx3t3t.ant-btn.ant-btn-circle-outline {
30793
- border-radius: 50%;
30794
- }
30795
-
30796
- .E_b1wx3t3t .ant-btn-loading-icon span.anticon {
30797
- margin-right: 8px;
30798
- padding-right: 0px;
30799
- }
30800
-
30801
- .E_b1wx3t3t.ant-btn.ant-btn-primary, .E_b1wx3t3t.ant-btn.ant-btn-secondary, .E_b1wx3t3t.ant-btn.ant-btn-tertiary, .E_b1wx3t3t.ant-btn.ant-btn-ordinary, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint, .E_b1wx3t3t.ant-btn.ant-btn-quiet {
30802
- color: var(--color, #06101f);
30803
- font-weight: var(--font-weight);
30804
- background: var(--background-color, #fff);
30805
- border-width: var(--border-width, 1px);
30806
- border-color: var(--border-color, #d9d9d9);
30807
- }
30808
-
30809
- .E_b1wx3t3t.ant-btn.ant-btn-primary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-secondary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-tertiary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-ordinary[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint[ant-click-animating-without-extra-node=true]:after, .E_b1wx3t3t.ant-btn.ant-btn-quiet[ant-click-animating-without-extra-node=true]:after {
30810
- display: none;
30811
- }
30812
-
30813
- .E_b1wx3t3t.ant-btn.ant-btn-primary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-secondary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-tertiary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-ordinary .anticon, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint .anticon, .E_b1wx3t3t.ant-btn.ant-btn-quiet .anticon {
30814
- color: var(--color, inherit);
30815
- }
30816
-
30817
- .E_b1wx3t3t.ant-btn.ant-btn-primary:hover, .E_b1wx3t3t.ant-btn.ant-btn-primary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-secondary:hover, .E_b1wx3t3t.ant-btn.ant-btn-secondary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-tertiary:hover, .E_b1wx3t3t.ant-btn.ant-btn-tertiary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary:hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint:hover, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-hover, .E_b1wx3t3t.ant-btn.ant-btn-quiet:hover, .E_b1wx3t3t.ant-btn.ant-btn-quiet.__pseudo-states-hover {
30818
- background: var(--background-color-hover, var(--background-color));
30819
- border-color: var(--border-color-hover, var(--border-color, transparent));
30820
- }
30821
-
30822
- .E_b1wx3t3t.ant-btn.ant-btn-primary:active, .E_b1wx3t3t.ant-btn.ant-btn-primary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-secondary:active, .E_b1wx3t3t.ant-btn.ant-btn-secondary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-tertiary:active, .E_b1wx3t3t.ant-btn.ant-btn-tertiary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary:active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint:active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-quiet:active, .E_b1wx3t3t.ant-btn.ant-btn-quiet.__pseudo-states-active {
30823
- --scale: 1;
30824
- --transY: 1px;
30825
- background: var(--background-color-active, var(--background-color));
30826
- border-color: var(--border-color-active, var(--border-color, transparent));
30543
+ .E_b1wx3t3t.ant-btn.ant-btn-primary:active, .E_b1wx3t3t.ant-btn.ant-btn-primary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-secondary:active, .E_b1wx3t3t.ant-btn.ant-btn-secondary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-tertiary:active, .E_b1wx3t3t.ant-btn.ant-btn-tertiary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary:active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint:active, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-active, .E_b1wx3t3t.ant-btn.ant-btn-quiet:active, .E_b1wx3t3t.ant-btn.ant-btn-quiet.__pseudo-states-active {
30544
+ --scale: 1;
30545
+ --transY: 1px;
30546
+ background: var(--background-color-active, var(--background-color));
30547
+ border-color: var(--border-color-active, var(--border-color, transparent));
30827
30548
  }
30828
30549
 
30829
30550
  .E_b1wx3t3t.ant-btn.ant-btn-primary:focus, .E_b1wx3t3t.ant-btn.ant-btn-primary.__pseudo-states-focus, .E_b1wx3t3t.ant-btn.ant-btn-secondary:focus, .E_b1wx3t3t.ant-btn.ant-btn-secondary.__pseudo-states-focus, .E_b1wx3t3t.ant-btn.ant-btn-tertiary:focus, .E_b1wx3t3t.ant-btn.ant-btn-tertiary.__pseudo-states-focus, .E_b1wx3t3t.ant-btn.ant-btn-ordinary:focus, .E_b1wx3t3t.ant-btn.ant-btn-ordinary.__pseudo-states-focus, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint:focus, .E_b1wx3t3t.ant-btn.ant-btn-ordinary-onTint.__pseudo-states-focus, .E_b1wx3t3t.ant-btn.ant-btn-quiet:focus, .E_b1wx3t3t.ant-btn.ant-btn-quiet.__pseudo-states-focus {
@@ -30837,6 +30558,7 @@ span.E_tqjc4ui {
30837
30558
  background: var(--background-color-disabled, var(--background-color));
30838
30559
  border-color: var(--border-color-disabled, var(--border-color, transparent));
30839
30560
  opacity: 0.5;
30561
+ --transY: 0;
30840
30562
  }
30841
30563
 
30842
30564
  .E_b1wx3t3t.ant-btn-link[disabled] {
@@ -31056,542 +30778,568 @@ button.E_n7k2c6r {
31056
30778
  padding: 0;
31057
30779
  }
31058
30780
 
31059
- .E_c1uzzomf {
31060
- margin-bottom: 16px;
30781
+ .E_b1nip9bk {
30782
+ padding: 4px 11px;
31061
30783
  }
31062
30784
 
31063
- .E_c1uzzomf .card-title {
31064
- font-size: 16px;
31065
- color: rgba(44, 56, 82, 0.6);
31066
- font-weight: 700;
31067
- line-height: 32px;
30785
+ .E_bqamoqe {
30786
+ white-space: nowrap;
30787
+ filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
31068
30788
  }
31069
30789
 
31070
- .E_c1uzzomf .card-body {
31071
- padding: 24px;
31072
- border-radius: 8px;
31073
- background: #fff;
30790
+ .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30791
+ --color: #0080ff;
31074
30792
  }
31075
30793
 
31076
- .E_c1uzzomf .empty {
31077
- font-weight: 700;
31078
- font-size: 14px;
31079
- line-height: 22px;
31080
- color: rgba(0, 21, 64, 0.3);
31081
- text-align: center;
30794
+ .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
30795
+ --color: #0080ff;
31082
30796
  }
31083
30797
 
31084
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
31085
- padding: 4px 8px 0 8px;
31086
- color: rgba(44, 56, 82, 0.6);
31087
- font-size: 12px;
30798
+ .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30799
+ margin-left: 1px;
31088
30800
  }
31089
30801
 
31090
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
31091
- padding-bottom: 6px;
30802
+ .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30803
+ border-top-right-radius: 0;
30804
+ border-bottom-right-radius: 0;
31092
30805
  }
31093
30806
 
31094
- .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
31095
- padding-top: 4px;
31096
- border-top: 1px solid rgba(211, 218, 235, 0.6);
30807
+ .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30808
+ border-top-left-radius: 0;
30809
+ border-bottom-left-radius: 0;
31097
30810
  }
31098
30811
 
31099
- .E_d1bw7c5z {
31100
- position: relative;
31101
- max-width: 388px;
31102
- min-width: 285px;
30812
+ .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30813
+ border-radius: unset;
31103
30814
  }
31104
30815
 
31105
- .E_d1bw7c5z .center {
31106
- position: absolute;
31107
- font-size: 12px;
31108
- width: 80px;
31109
- height: 100px;
31110
- top: 0;
31111
- left: 35px;
30816
+ .E_wg1tsps {
31112
30817
  display: flex;
31113
- flex-direction: column;
31114
- justify-content: center;
31115
30818
  align-items: center;
31116
- color: #00122e;
31117
- }
31118
-
31119
- .E_d1bw7c5z .center .number {
31120
- font-size: 24px;
31121
- font-weight: 700;
31122
- }
31123
-
31124
- .E_d1bw7c5z .center .text {
31125
- padding: 0 5px;
31126
- font-size: 12px;
31127
- width: inherit;
31128
- text-align: center;
31129
- }
31130
-
31131
- .E_d1bw7c5z .recharts-wrapper {
31132
- display: flex;
30819
+ justify-content: flex-end;
31133
30820
  }
31134
30821
 
31135
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
31136
- position: relative !important;
31137
- min-width: calc(100% - var(--d1bw7c5z-0)) !important;
31138
- left: 0 !important;
31139
- bottom: 0 !important;
30822
+ .E_b1ctd5xy {
31140
30823
  display: flex;
31141
30824
  align-items: center;
30825
+ width: calc(100% - 40px);
31142
30826
  }
31143
30827
 
31144
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
31145
- width: 100%;
31146
- }
31147
-
31148
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
30828
+ .E_b1ctd5xy .chart {
30829
+ display: inline-block;
31149
30830
  width: 100%;
31150
- margin-right: 0 !important;
31151
- line-height: 18px;
31152
30831
  }
31153
30832
 
31154
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
31155
- border-radius: 2px;
30833
+ .E_u1p8acpn {
30834
+ min-width: 40px;
31156
30835
  }
31157
30836
 
31158
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
31159
- min-width: 75px;
31160
- max-width: 198px;
31161
- width: calc(100% - 20px);
31162
- margin-left: 2px;
30837
+ .E_u1p8acpn .unit {
31163
30838
  color: #00122e !important;
31164
- display: inline-flex;
31165
- justify-content: space-between;
31166
30839
  }
31167
30840
 
31168
- .E_d1bw7c5z .tooltip-text {
31169
- maxwidth: calc(100% - 12px);
31170
- cursor: pointer;
31171
- border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
31172
- overflow: hidden;
31173
- text-overflow: ellipsis;
31174
- white-space: nowrap;
30841
+ .E_t160l1cm {
30842
+ display: flex;
30843
+ flex-direction: column;
30844
+ flex: 1;
30845
+ /* FIXME:(yanzhen) do this better */
31175
30846
  }
31176
30847
 
31177
- .E_d1bw7c5z .value {
31178
- color: rgba(44, 56, 82, 0.75);
30848
+ .E_t160l1cm .tab-bar {
30849
+ flex-shrink: 0;
30850
+ display: flex;
30851
+ border-bottom: 1px solid rgba(172, 186, 211, 0.6);
31179
30852
  }
31180
30853
 
31181
- .E_t10pqbtc {
31182
- width: 140px;
30854
+ .E_t160l1cm .tab-content {
30855
+ height: 100%;
31183
30856
  }
31184
30857
 
31185
- .E_t10pqbtc .item {
31186
- margin: 6px auto;
31187
- display: flex;
31188
- justify-content: space-between;
30858
+ .E_t160l1cm .tab-menu-item {
30859
+ margin-right: 2px;
30860
+ padding: 1px 12px;
30861
+ line-height: 24px;
30862
+ height: 24px;
30863
+ color: rgba(44, 56, 82, 0.6);
30864
+ border-radius: 4px 4px 0 0;
30865
+ cursor: pointer;
30866
+ transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
31189
30867
  }
31190
30868
 
31191
- .E_t10pqbtc .item .name {
31192
- width: 102px;
30869
+ .E_t160l1cm .tab-menu-item:first-child {
30870
+ padding-left: 0;
31193
30871
  }
31194
30872
 
31195
- .E_itxley7.ant-input-group.ant-input-group-compact {
31196
- display: flex;
30873
+ .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30874
+ padding-left: 12px;
31197
30875
  }
31198
30876
 
31199
- .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 {
31200
- border-bottom-left-radius: 5px;
31201
- border-top-left-radius: 5px;
30877
+ .E_t160l1cm .tab-menu-item:hover {
30878
+ color: #0080ff;
30879
+ background: rgba(211, 218, 235, 0.6);
31202
30880
  }
31203
30881
 
31204
- .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 {
31205
- border-bottom-right-radius: 5px;
31206
- border-top-right-radius: 5px;
30882
+ .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30883
+ fill: #0080ff;
31207
30884
  }
31208
30885
 
31209
- .E_sx1bpnu .ant-input-sm {
31210
- line-height: 18px;
30886
+ .E_t160l1cm .tab-menu-item:active {
30887
+ background: rgba(192, 203, 224, 0.6);
31211
30888
  }
31212
30889
 
31213
- .E_c1yyuluq {
31214
- border-radius: 8px;
30890
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30891
+ color: #0080ff;
30892
+ background: rgba(211, 218, 235, 0.6);
31215
30893
  }
31216
30894
 
31217
- .E_c1yyuluq .ant-card-body {
31218
- padding: 20px 24px 24px 24px;
30895
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30896
+ background: rgba(192, 203, 224, 0.6);
31219
30897
  }
31220
30898
 
31221
- .E_ccrbeuz .ant-collapse-item {
31222
- border: 0px;
31223
- background-color: #fff;
30899
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30900
+ background: rgba(0, 128, 255, 0.16);
31224
30901
  }
31225
30902
 
31226
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
31227
- padding-top: 0px;
31228
- padding-bottom: 0px;
31229
- padding-left: 0px !important;
31230
- padding-right: 24px;
30903
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30904
+ fill: #0080ff;
31231
30905
  }
31232
30906
 
31233
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
31234
- right: 0px;
30907
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30908
+ color: #0080ff;
30909
+ background: rgba(0, 128, 255, 0.1);
31235
30910
  }
31236
30911
 
31237
- .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
31238
- padding: 0px;
30912
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30913
+ background: rgba(0, 128, 255, 0.16);
31239
30914
  }
31240
30915
 
31241
- .E_c1fljvag .ant-collapse-item .ant-collapse-header {
31242
- padding-right: 0px;
31243
- cursor: default;
30916
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30917
+ fill: #1d326c;
31244
30918
  }
31245
30919
 
31246
- .E_phljevk {
31247
- display: flex;
31248
- justify-content: space-between;
31249
- align-items: center;
31250
- padding: 10px 0;
31251
- color: rgba(44, 56, 82, 0.6);
31252
- font-size: 12px;
31253
- line-height: 24px;
30920
+ .E_t160l1cm .tab-menu-item .expand-arrow {
30921
+ margin-left: 8px;
30922
+ height: 22px;
31254
30923
  }
31255
30924
 
31256
- .E_phljevk .pagination-left {
31257
- padding: 2px 8px;
30925
+ .E_t160l1cm .tab-menu-item .expand-arrow path {
30926
+ fill: rgba(44, 56, 82, 0.6);
31258
30927
  }
31259
30928
 
31260
- .E_phljevk .dropdown-trigger {
30929
+ .E_t160l1cm .tab-menu-item-group {
30930
+ padding: 0;
31261
30931
  display: flex;
31262
30932
  align-items: center;
31263
- border-radius: 6px;
31264
- cursor: pointer;
31265
- transition: all 0.3s ease;
30933
+ overflow: hidden;
31266
30934
  }
31267
30935
 
31268
- .E_phljevk .dropdown-trigger:hover {
31269
- background: rgba(211, 218, 235, 0.6);
31270
- color: #0080ff;
30936
+ .E_t160l1cm .tab-menu-item-group .main-title {
30937
+ opacity: 0;
30938
+ max-width: 0;
30939
+ transition: max-width 320ms ease, opacity 240ms ease;
31271
30940
  }
31272
30941
 
31273
- .E_phljevk .dropdown-trigger .icon-inner {
31274
- margin-left: 4px;
30942
+ .E_t160l1cm .tab-menu-item-group .sub-title {
30943
+ padding: 1px 12px;
30944
+ position: relative;
30945
+ display: flex;
31275
30946
  }
31276
30947
 
31277
- .E_phljevk .pagination-right {
31278
- display: flex;
31279
- align-items: center;
31280
- color: #0080ff;
31281
- font-weight: bold;
30948
+ .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
30949
+ opacity: 0;
30950
+ position: absolute;
30951
+ top: 50%;
30952
+ left: 0;
30953
+ transform: translate(-50%, -50%);
30954
+ transition: opacity 100ms linear;
30955
+ fill: rgba(0, 128, 255, 0.2);
31282
30956
  }
31283
30957
 
31284
- .E_phljevk .pagination-right .icon-inner {
31285
- margin-left: 4px;
30958
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
30959
+ color: #0080ff;
31286
30960
  }
31287
30961
 
31288
- .E_phljevk .pagination-right .prev-btn,
31289
- .E_phljevk .pagination-right .next-btn {
31290
- padding: 0 8px;
30962
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
30963
+ padding: 1px 12px;
30964
+ display: inline-block;
30965
+ opacity: 1;
30966
+ max-width: 160px;
31291
30967
  }
31292
30968
 
31293
- .E_phljevk .pagination-right .prev-btn > span,
31294
- .E_phljevk .pagination-right .next-btn > span {
31295
- color: #0080ff;
30969
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30970
+ padding: 1px 12px;
30971
+ color: #005ed1;
31296
30972
  }
31297
30973
 
31298
- .E_phljevk .pagination-right .next-btn .icon-inner {
31299
- transform: rotate(180deg);
30974
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30975
+ opacity: 1;
31300
30976
  }
31301
30977
 
31302
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
31303
- max-height: calc(100vh - 128px);
31304
- overflow-y: auto;
30978
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title {
30979
+ background: rgba(0, 128, 255, 0.16);
31305
30980
  }
31306
30981
 
31307
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
31308
- padding: 4px 20px;
31309
- font-size: 12px;
31310
- line-height: 18px;
30982
+ .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 {
30983
+ opacity: 0;
31311
30984
  }
31312
30985
 
31313
- .E_rapgekc.ant-radio-wrapper {
31314
- display: inline-flex;
31315
- align-items: baseline;
31316
- white-space: pre-wrap;
30986
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30987
+ padding: 4px 16px;
30988
+ height: 32px;
30989
+ border-radius: 6px 6px 0 0;
31317
30990
  }
31318
30991
 
31319
- .E_rapgekc.ant-radio-wrapper .ant-radio {
31320
- position: relative;
31321
- top: 3px;
30992
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30993
+ padding-left: 0;
31322
30994
  }
31323
30995
 
31324
- .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
31325
- border-color: rgba(107, 128, 167, 0.6);
30996
+ .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 {
30997
+ padding-left: 16px;
31326
30998
  }
31327
30999
 
31328
- .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
31329
- border-color: #0080ff;
31000
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
31001
+ margin-left: 11px;
31002
+ height: 24px;
31330
31003
  }
31331
31004
 
31332
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
31333
- border-color: #0080ff;
31334
- background: #0080ff;
31005
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
31006
+ padding: 0;
31335
31007
  }
31336
31008
 
31337
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
31338
- top: 4px;
31339
- left: 4px;
31340
- width: 6px;
31341
- height: 6px;
31342
- background: #fff;
31009
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
31010
+ padding: 4px 16px;
31343
31011
  }
31344
31012
 
31345
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
31346
- opacity: 0.5;
31013
+ .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 {
31014
+ padding: 4px 16px;
31347
31015
  }
31348
31016
 
31349
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
31350
- border-color: rgba(107, 128, 167, 0.6);
31351
- background: rgba(211, 218, 235, 0.6);
31017
+ .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
31018
+ background: #fff;
31352
31019
  }
31353
31020
 
31354
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
31355
- background: #00122e;
31021
+ .E_t160l1cm .tab-menu-item-light:active {
31022
+ color: #005ed1;
31356
31023
  }
31357
31024
 
31358
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
31359
- color: #00122e;
31360
- opacity: 0.5;
31025
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
31026
+ background: #fff;
31027
+ color: #1d326c;
31361
31028
  }
31362
31029
 
31363
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
31364
- color: #00122e;
31030
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
31031
+ color: rgba(45, 58, 86, 0.6);
31365
31032
  }
31366
31033
 
31367
- .E_rapgekc.ant-radio-wrapper .ant-radio + span {
31368
- display: inline-block;
31369
- padding: 0;
31370
- padding-left: 10px;
31034
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
31035
+ color: #1d326c;
31371
31036
  }
31372
31037
 
31373
- .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
31374
- margin-bottom: 0;
31375
- white-space: pre-wrap;
31376
- color: rgba(44, 56, 82, 0.6);
31038
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
31039
+ fill: #d8deeb;
31377
31040
  }
31378
31041
 
31379
- .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
31380
- padding-left: 8px;
31042
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
31043
+ fill: #1d326c;
31381
31044
  }
31382
31045
 
31383
- .E_rp906go .ant-radio-button-wrapper:first-child {
31384
- border-radius: 5px 0 0 5px;
31046
+ .E_t160l1cm .tab-content {
31047
+ flex: 1;
31048
+ display: flex;
31049
+ flex-direction: column;
31385
31050
  }
31386
31051
 
31387
- .E_rp906go .ant-radio-button-wrapper:last-child {
31388
- border-radius: 0 5px 5px 0;
31052
+ .E_t160l1cm.is-overview .tab-content {
31053
+ overflow: visible;
31389
31054
  }
31390
31055
 
31391
- .E_rcc63c8 {
31392
- color: #00122e;
31393
- border-color: #ccd4e3;
31056
+ .E_t14npdqr {
31057
+ max-width: 240px;
31058
+ animation: none;
31394
31059
  }
31395
31060
 
31396
- .E_rcc63c8:first-child {
31397
- border-color: #a3b4cc;
31061
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
31062
+ border: 1px solid #0080ff;
31063
+ padding: 0;
31398
31064
  }
31399
31065
 
31400
- .E_rcc63c8.ant-radio-button-wrapper {
31401
- padding: 0 12px;
31402
- line-height: 32px;
31066
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
31067
+ margin: 0;
31403
31068
  height: 32px;
31069
+ line-height: 32px;
31070
+ font-size: 13px;
31071
+ padding: 0 10px;
31072
+ display: block;
31073
+ overflow: hidden;
31074
+ text-overflow: ellipsis;
31075
+ white-space: nowrap;
31404
31076
  }
31405
31077
 
31406
- .E_rcc63c8.ant-radio-button-wrapper > span + span {
31407
- white-space: nowrap;
31408
- }
31409
-
31410
- .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
31411
- height: 22px;
31412
- padding: 0 7px;
31413
- line-height: 20px;
31078
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
31079
+ content: " ";
31080
+ height: 1px;
31081
+ width: calc(100% + 10px);
31082
+ background: rgba(172, 186, 211, 0.6);
31083
+ display: block;
31414
31084
  }
31415
31085
 
31416
- .E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
31417
- background: #ccd4e3;
31086
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
31087
+ color: #0080ff;
31088
+ background: transparent;
31418
31089
  }
31419
31090
 
31420
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
31421
- background: #0080ff;
31091
+ .E_c1yyuluq {
31092
+ border-radius: 8px;
31422
31093
  }
31423
31094
 
31424
- .E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
31425
- background: #ccd4e3;
31426
- opacity: 0.5;
31095
+ .E_c1yyuluq .ant-card-body {
31096
+ padding: 20px 24px 24px 24px;
31427
31097
  }
31428
31098
 
31429
- .E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
31430
- border-right-color: #0080ff;
31099
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
31100
+ padding: 4px 8px 0 8px;
31101
+ color: rgba(44, 56, 82, 0.6);
31102
+ font-size: 12px;
31431
31103
  }
31432
31104
 
31433
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
31434
- border-color: #0080ff;
31105
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
31106
+ padding-bottom: 6px;
31435
31107
  }
31436
31108
 
31437
- .E_rcc63c8.ant-radio-button-wrapper-checked {
31438
- background: rgba(0, 136, 255, 0.1);
31109
+ .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
31110
+ padding-top: 4px;
31111
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
31439
31112
  }
31440
31113
 
31441
- .E_rcc63c8.ant-radio-button-wrapper-disabled {
31442
- background: rgba(211, 218, 235, 0.6);
31443
- border-color: #ccd4e3;
31444
- opacity: 0.5;
31114
+ .E_sx1bpnu .ant-input-sm {
31115
+ line-height: 18px;
31445
31116
  }
31446
31117
 
31447
- .E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
31448
- color: #00122e;
31449
- border-color: #ccd4e3;
31118
+ .E_ccrbeuz .ant-collapse-item {
31119
+ border: 0px;
31120
+ background-color: #fff;
31450
31121
  }
31451
31122
 
31452
- .E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
31453
- color: #00122e;
31454
- border-color: #ccd4e3;
31455
- background: rgba(172, 186, 211, 0.6);
31123
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
31124
+ padding-top: 0px;
31125
+ padding-bottom: 0px;
31126
+ padding-left: 0px !important;
31127
+ padding-right: 24px;
31456
31128
  }
31457
31129
 
31458
- .E_rcc63c8 .ant-radio-button-input {
31459
- margin-right: 8px;
31460
- display: inline;
31461
- border: none;
31462
- padding: 0;
31463
- width: 36px;
31464
- background: transparent;
31130
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
31131
+ right: 0px;
31465
31132
  }
31466
31133
 
31467
- .E_rcc63c8 .ant-radio-button-input:focus {
31468
- box-shadow: none;
31134
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
31135
+ padding: 0px;
31469
31136
  }
31470
31137
 
31471
- .E_rcc63c8 .ant-radio-button-input.ant-input-number {
31472
- margin-right: 0;
31473
- width: initial;
31474
- box-shadow: none;
31138
+ .E_c1fljvag .ant-collapse-item .ant-collapse-header {
31139
+ padding-right: 0px;
31140
+ cursor: default;
31475
31141
  }
31476
31142
 
31477
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
31478
- display: none;
31143
+ .E_itxley7.ant-input-group.ant-input-group-compact {
31144
+ display: flex;
31479
31145
  }
31480
31146
 
31481
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
31482
- display: inline;
31147
+ .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 {
31148
+ border-bottom-left-radius: 5px;
31149
+ border-top-left-radius: 5px;
31483
31150
  }
31484
31151
 
31485
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
31486
- display: inline;
31487
- margin-right: 8px;
31488
- padding: 0;
31489
- width: 36px;
31152
+ .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 {
31153
+ border-bottom-right-radius: 5px;
31154
+ border-top-right-radius: 5px;
31490
31155
  }
31491
31156
 
31492
- .E_ivqqkzv {
31493
- height: 24px;
31494
- width: 56px !important;
31495
- margin-right: 4px;
31157
+ .E_c1uzzomf {
31158
+ margin-bottom: 16px;
31496
31159
  }
31497
31160
 
31498
- .E_c1wk4q29 {
31161
+ .E_c1uzzomf .card-title {
31162
+ font-size: 16px;
31499
31163
  color: rgba(44, 56, 82, 0.6);
31164
+ font-weight: 700;
31165
+ line-height: 32px;
31500
31166
  }
31501
31167
 
31502
- .E_s1dizucg.ant-switch {
31503
- min-width: 40px;
31504
- height: 24px;
31505
- background: rgba(172, 186, 211, 0.6);
31506
- overflow: hidden;
31168
+ .E_c1uzzomf .card-body {
31169
+ padding: 24px;
31170
+ border-radius: 8px;
31171
+ background: #fff;
31507
31172
  }
31508
31173
 
31509
- .E_s1dizucg.ant-switch:focus {
31510
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
31174
+ .E_c1uzzomf .empty {
31175
+ font-weight: 700;
31176
+ font-size: 14px;
31177
+ line-height: 22px;
31178
+ color: rgba(0, 21, 64, 0.3);
31179
+ text-align: center;
31511
31180
  }
31512
31181
 
31513
- .E_s1dizucg.ant-switch-small {
31514
- min-width: 26px;
31515
- height: 16px;
31182
+ .E_d1bw7c5z {
31183
+ position: relative;
31184
+ max-width: 388px;
31185
+ min-width: 285px;
31516
31186
  }
31517
31187
 
31518
- .E_s1dizucg.ant-switch-large {
31519
- min-width: 52px;
31520
- height: 32px;
31188
+ .E_d1bw7c5z .center {
31189
+ position: absolute;
31190
+ font-size: 12px;
31191
+ width: 80px;
31192
+ height: 100px;
31193
+ top: 0;
31194
+ left: 35px;
31195
+ display: flex;
31196
+ flex-direction: column;
31197
+ justify-content: center;
31198
+ align-items: center;
31199
+ color: #00122e;
31521
31200
  }
31522
31201
 
31523
- .E_s1dizucg.ant-switch .ant-switch-handle {
31524
- height: 20px;
31525
- width: 20px;
31202
+ .E_d1bw7c5z .center .number {
31203
+ font-size: 24px;
31204
+ font-weight: 700;
31526
31205
  }
31527
31206
 
31528
- .E_s1dizucg.ant-switch .ant-switch-handle::before {
31529
- border-radius: 10px;
31530
- transition-delay: 120ms;
31207
+ .E_d1bw7c5z .center .text {
31208
+ padding: 0 5px;
31209
+ font-size: 12px;
31210
+ width: inherit;
31211
+ text-align: center;
31531
31212
  }
31532
31213
 
31533
- .E_s1dizucg.ant-switch-small .ant-switch-handle {
31534
- height: 14px;
31535
- width: 14px;
31536
- top: 1px;
31537
- left: 1px;
31214
+ .E_d1bw7c5z .recharts-wrapper {
31215
+ display: flex;
31538
31216
  }
31539
31217
 
31540
- .E_s1dizucg.ant-switch-large .ant-switch-handle {
31541
- height: 28px;
31542
- width: 28px;
31218
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
31219
+ position: relative !important;
31220
+ min-width: calc(100% - var(--d1bw7c5z-0)) !important;
31221
+ left: 0 !important;
31222
+ bottom: 0 !important;
31223
+ display: flex;
31224
+ align-items: center;
31543
31225
  }
31544
31226
 
31545
- .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
31546
- border-radius: 14px;
31227
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
31228
+ width: 100%;
31547
31229
  }
31548
31230
 
31549
- .E_s1dizucg.ant-switch-checked {
31550
- background-color: #00ba5d;
31231
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
31232
+ width: 100%;
31233
+ margin-right: 0 !important;
31234
+ line-height: 18px;
31551
31235
  }
31552
31236
 
31553
- .E_s1dizucg.ant-switch-checked .ant-switch-handle {
31554
- left: calc(100% - 20px - 2px);
31237
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
31238
+ border-radius: 2px;
31555
31239
  }
31556
31240
 
31557
- .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
31558
- left: calc(100% - 14px - 1px);
31241
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
31242
+ min-width: 75px;
31243
+ max-width: 198px;
31244
+ width: calc(100% - 20px);
31245
+ margin-left: 2px;
31246
+ color: #00122e !important;
31247
+ display: inline-flex;
31248
+ justify-content: space-between;
31559
31249
  }
31560
31250
 
31561
- .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
31562
- left: calc(100% - 28px - 2px);
31251
+ .E_d1bw7c5z .tooltip-text {
31252
+ maxwidth: calc(100% - 12px);
31253
+ cursor: pointer;
31254
+ border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
31255
+ overflow: hidden;
31256
+ text-overflow: ellipsis;
31257
+ white-space: nowrap;
31563
31258
  }
31564
31259
 
31565
- .E_c1up6e3y {
31566
- margin-left: 5px;
31260
+ .E_d1bw7c5z .value {
31261
+ color: rgba(44, 56, 82, 0.75);
31567
31262
  }
31568
31263
 
31569
- .E_i11gg7mj .ant-input-prefix {
31570
- margin-right: 8px;
31264
+ .E_t10pqbtc {
31265
+ width: 140px;
31571
31266
  }
31572
31267
 
31573
- .E_i11gg7mj .ant-input-suffix {
31574
- margin-left: 8px;
31268
+ .E_t10pqbtc .item {
31269
+ margin: 6px auto;
31270
+ display: flex;
31271
+ justify-content: space-between;
31575
31272
  }
31576
31273
 
31577
- .E_cc368xp {
31578
- color: #00122e;
31579
- border-right: 1px solid rgba(172, 186, 211, 0.6);
31580
- margin-right: 8px;
31581
- padding-right: 8px;
31274
+ .E_t10pqbtc .item .name {
31275
+ width: 102px;
31582
31276
  }
31583
31277
 
31584
- .E_i11o6xqj {
31278
+ .E_phljevk {
31585
31279
  display: flex;
31586
- gap: 4px;
31280
+ justify-content: space-between;
31281
+ align-items: center;
31282
+ padding: 10px 0;
31283
+ color: rgba(44, 56, 82, 0.6);
31284
+ font-size: 12px;
31285
+ line-height: 24px;
31587
31286
  }
31588
31287
 
31589
- .E_i11o6xqj .icon-wrapper {
31288
+ .E_phljevk .pagination-left {
31289
+ padding: 2px 8px;
31290
+ }
31291
+
31292
+ .E_phljevk .dropdown-trigger {
31293
+ display: flex;
31294
+ align-items: center;
31295
+ border-radius: 6px;
31590
31296
  cursor: pointer;
31297
+ transition: all 0.3s ease;
31591
31298
  }
31592
31299
 
31593
- .E_d19ruhdj.icon-wrapper {
31594
- cursor: not-allowed;
31300
+ .E_phljevk .dropdown-trigger:hover {
31301
+ background: rgba(211, 218, 235, 0.6);
31302
+ color: #0080ff;
31303
+ }
31304
+
31305
+ .E_phljevk .dropdown-trigger .icon-inner {
31306
+ margin-left: 4px;
31307
+ }
31308
+
31309
+ .E_phljevk .pagination-right {
31310
+ display: flex;
31311
+ align-items: center;
31312
+ color: #0080ff;
31313
+ font-weight: bold;
31314
+ }
31315
+
31316
+ .E_phljevk .pagination-right .icon-inner {
31317
+ margin-left: 4px;
31318
+ }
31319
+
31320
+ .E_phljevk .pagination-right .prev-btn,
31321
+ .E_phljevk .pagination-right .next-btn {
31322
+ padding: 0 8px;
31323
+ }
31324
+
31325
+ .E_phljevk .pagination-right .prev-btn > span,
31326
+ .E_phljevk .pagination-right .next-btn > span {
31327
+ color: #0080ff;
31328
+ }
31329
+
31330
+ .E_phljevk .pagination-right .next-btn .icon-inner {
31331
+ transform: rotate(180deg);
31332
+ }
31333
+
31334
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
31335
+ max-height: calc(100vh - 128px);
31336
+ overflow-y: auto;
31337
+ }
31338
+
31339
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
31340
+ padding: 4px 20px;
31341
+ font-size: 12px;
31342
+ line-height: 18px;
31595
31343
  }
31596
31344
 
31597
31345
  .E_c1bus5hc {
@@ -31637,188 +31385,419 @@ button.E_n7k2c6r {
31637
31385
  transform: rotate(0deg);
31638
31386
  }
31639
31387
 
31640
- .E_tju3gfj .date {
31388
+ .E_ivqqkzv {
31389
+ height: 24px;
31390
+ width: 56px !important;
31641
31391
  margin-right: 4px;
31642
31392
  }
31643
31393
 
31644
- .E_iq1gosr {
31645
- display: inline-block;
31394
+ .E_c1wk4q29 {
31395
+ color: rgba(44, 56, 82, 0.6);
31646
31396
  }
31647
31397
 
31648
- .E_atcz0kf .ant-input-suffix {
31649
- margin-left: 8px;
31398
+ .E_rapgekc.ant-radio-wrapper {
31399
+ display: inline-flex;
31400
+ align-items: baseline;
31401
+ white-space: pre-wrap;
31650
31402
  }
31651
31403
 
31652
- .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
31653
- padding: 2px 7px 2px 12px;
31404
+ .E_rapgekc.ant-radio-wrapper .ant-radio {
31405
+ position: relative;
31406
+ top: 3px;
31654
31407
  }
31655
31408
 
31656
- .E_i1inqkme {
31657
- height: 18px;
31658
- line-height: 18px;
31659
- padding: 0 4px;
31660
- border-radius: 4px;
31661
- background: rgba(235, 239, 245, 0.6);
31662
- border: 1px solid rgba(223, 228, 235, 0.6);
31663
- display: flex;
31664
- align-items: center;
31665
- white-space: nowrap;
31666
- margin-right: 4px;
31409
+ .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
31410
+ border-color: rgba(107, 128, 167, 0.6);
31667
31411
  }
31668
31412
 
31669
- .E_a1wfy30z .ant-input-number-handler-wrap {
31670
- display: var(--a1wfy30z-0);
31413
+ .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
31414
+ border-color: #0080ff;
31671
31415
  }
31672
31416
 
31673
- .E_a1wfy30z .ant-input-number-input-wrap {
31674
- padding: 4px 11px;
31675
- display: inline-flex;
31676
- line-height: 1.5715;
31677
- height: inherit;
31417
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
31418
+ border-color: #0080ff;
31419
+ background: #0080ff;
31678
31420
  }
31679
31421
 
31680
- .E_a1wfy30z .ant-input-number-input-wrap::after {
31681
- content: var(--a1wfy30z-1);
31682
- display: var(--a1wfy30z-2);
31683
- flex: none;
31684
- align-items: center;
31685
- margin-left: 4px;
31422
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
31423
+ top: 4px;
31424
+ left: 4px;
31425
+ width: 6px;
31426
+ height: 6px;
31427
+ background: #fff;
31686
31428
  }
31687
31429
 
31688
- .E_a1wfy30z .ant-input-number-input-wrap::before {
31689
- content: var(--a1wfy30z-3);
31690
- display: var(--a1wfy30z-4);
31691
- flex: none;
31692
- align-items: center;
31693
- margin-right: 4px;
31694
- cursor: auto;
31430
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
31431
+ opacity: 0.5;
31695
31432
  }
31696
31433
 
31697
- .E_a1wfy30z .ant-input-number-input {
31698
- padding: 0;
31699
- margin: 0;
31700
- height: auto;
31701
- font-size: inherit;
31434
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
31435
+ border-color: rgba(107, 128, 167, 0.6);
31436
+ background: rgba(211, 218, 235, 0.6);
31702
31437
  }
31703
31438
 
31704
- .E_s1sck0th {
31705
- padding: 0 8px;
31706
- border-radius: 4px;
31439
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
31440
+ background: #00122e;
31707
31441
  }
31708
31442
 
31709
- .E_m855nr1 {
31710
- padding: 2px 8px;
31711
- border-radius: 3px;
31443
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
31444
+ color: #00122e;
31445
+ opacity: 0.5;
31712
31446
  }
31713
31447
 
31714
- .E_l1270xpg {
31715
- padding: 3px 8px;
31716
- border-radius: 2px;
31448
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
31449
+ color: #00122e;
31717
31450
  }
31718
31451
 
31719
- .E_t14rextb.ant-tag:hover {
31720
- opacity: unset;
31452
+ .E_rapgekc.ant-radio-wrapper .ant-radio + span {
31453
+ display: inline-block;
31454
+ padding: 0;
31455
+ padding-left: 10px;
31721
31456
  }
31722
31457
 
31723
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
31724
- margin: 0;
31725
- margin-right: 8px;
31726
- display: inline-flex;
31727
- align-items: center;
31728
- border: none;
31458
+ .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
31459
+ margin-bottom: 0;
31460
+ white-space: pre-wrap;
31461
+ color: rgba(44, 56, 82, 0.6);
31729
31462
  }
31730
31463
 
31731
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
31732
- width: 16px;
31733
- height: 16px;
31734
- color: inherit;
31735
- margin-left: 4px;
31736
- opacity: 0.6;
31737
- display: inline-flex;
31464
+ .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
31465
+ padding-left: 8px;
31738
31466
  }
31739
31467
 
31740
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
31741
- opacity: 1;
31468
+ .E_rp906go .ant-radio-button-wrapper:first-child {
31469
+ border-radius: 5px 0 0 5px;
31742
31470
  }
31743
31471
 
31744
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
31745
- color: #0080ff;
31746
- background-color: rgba(0, 136, 255, 0.1);
31472
+ .E_rp906go .ant-radio-button-wrapper:last-child {
31473
+ border-radius: 0 5px 5px 0;
31747
31474
  }
31748
31475
 
31749
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
31750
- color: #f0483e;
31751
- background-color: rgba(255, 74, 74, 0.1);
31476
+ .E_rcc63c8 {
31477
+ color: #00122e;
31478
+ border-color: #ccd4e3;
31752
31479
  }
31753
31480
 
31754
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
31755
- color: #e07f00;
31756
- background-color: rgba(255, 187, 0, 0.1);
31481
+ .E_rcc63c8:first-child {
31482
+ border-color: #a3b4cc;
31757
31483
  }
31758
31484
 
31759
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
31760
- color: #008f4c;
31761
- background-color: rgba(30, 201, 127, 0.1);
31485
+ .E_rcc63c8.ant-radio-button-wrapper {
31486
+ padding: 0 12px;
31487
+ line-height: 32px;
31488
+ height: 32px;
31762
31489
  }
31763
31490
 
31764
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
31765
- color: #1d326c;
31766
- background-color: rgba(225, 230, 241, 0.6);
31491
+ .E_rcc63c8.ant-radio-button-wrapper > span + span {
31492
+ white-space: nowrap;
31767
31493
  }
31768
31494
 
31769
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
31770
- color: #7E41FF;
31771
- background-color: rgba(126, 65, 255, 0.1);
31495
+ .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
31496
+ height: 22px;
31497
+ padding: 0 7px;
31498
+ line-height: 20px;
31772
31499
  }
31773
31500
 
31774
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
31775
- color: #fff;
31501
+ .E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
31502
+ background: #ccd4e3;
31776
31503
  }
31777
31504
 
31778
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
31779
- background-color: #f0483e;
31505
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
31506
+ background: #0080ff;
31780
31507
  }
31781
31508
 
31782
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
31783
- background-color: #fea008;
31509
+ .E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
31510
+ background: #ccd4e3;
31511
+ opacity: 0.5;
31784
31512
  }
31785
31513
 
31786
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
31787
- background-color: #00ba5d;
31514
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
31515
+ border-right-color: #0080ff;
31788
31516
  }
31789
31517
 
31790
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
31791
- background-color: #0080ff;
31518
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
31519
+ border-color: #0080ff;
31792
31520
  }
31793
31521
 
31794
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
31795
- background-color: #6b7d99;
31522
+ .E_rcc63c8.ant-radio-button-wrapper-checked {
31523
+ background: rgba(0, 136, 255, 0.1);
31796
31524
  }
31797
31525
 
31798
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
31799
- background-color: #7E41FF;
31526
+ .E_rcc63c8.ant-radio-button-wrapper-disabled {
31527
+ background: rgba(211, 218, 235, 0.6);
31528
+ border-color: #ccd4e3;
31529
+ opacity: 0.5;
31800
31530
  }
31801
31531
 
31802
- .E_t1m2x205 .ant-tooltip-arrow {
31803
- display: none;
31532
+ .E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
31533
+ color: #00122e;
31534
+ border-color: #ccd4e3;
31804
31535
  }
31805
31536
 
31806
- .E_t1m2x205 .ant-tooltip-inner {
31807
- background: rgba(23, 38, 64, 0.8);
31808
- border-radius: 4px;
31537
+ .E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
31538
+ color: #00122e;
31539
+ border-color: #ccd4e3;
31540
+ background: rgba(172, 186, 211, 0.6);
31809
31541
  }
31810
31542
 
31811
- .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31812
- visibility: hidden;
31543
+ .E_rcc63c8 .ant-radio-button-input {
31544
+ margin-right: 8px;
31545
+ display: inline;
31546
+ border: none;
31547
+ padding: 0;
31548
+ width: 36px;
31549
+ background: transparent;
31813
31550
  }
31814
31551
 
31815
- .E_s1dni7lo {
31816
- width: 430px !important;
31552
+ .E_rcc63c8 .ant-radio-button-input:focus {
31553
+ box-shadow: none;
31817
31554
  }
31818
31555
 
31819
- .E_d1wwmmm5 .ant-select-item-group {
31820
- padding: 8px 16px;
31821
- line-height: 18px;
31556
+ .E_rcc63c8 .ant-radio-button-input.ant-input-number {
31557
+ margin-right: 0;
31558
+ width: initial;
31559
+ box-shadow: none;
31560
+ }
31561
+
31562
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
31563
+ display: none;
31564
+ }
31565
+
31566
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
31567
+ display: inline;
31568
+ }
31569
+
31570
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
31571
+ display: inline;
31572
+ margin-right: 8px;
31573
+ padding: 0;
31574
+ width: 36px;
31575
+ }
31576
+
31577
+ .E_i11gg7mj .ant-input-prefix {
31578
+ margin-right: 8px;
31579
+ }
31580
+
31581
+ .E_i11gg7mj .ant-input-suffix {
31582
+ margin-left: 8px;
31583
+ }
31584
+
31585
+ .E_cc368xp {
31586
+ color: #00122e;
31587
+ border-right: 1px solid rgba(172, 186, 211, 0.6);
31588
+ margin-right: 8px;
31589
+ padding-right: 8px;
31590
+ }
31591
+
31592
+ .E_i11o6xqj {
31593
+ display: flex;
31594
+ gap: 4px;
31595
+ }
31596
+
31597
+ .E_i11o6xqj .icon-wrapper {
31598
+ cursor: pointer;
31599
+ }
31600
+
31601
+ .E_d19ruhdj.icon-wrapper {
31602
+ cursor: not-allowed;
31603
+ }
31604
+
31605
+ .E_s1dizucg.ant-switch {
31606
+ min-width: 40px;
31607
+ height: 24px;
31608
+ background: rgba(172, 186, 211, 0.6);
31609
+ overflow: hidden;
31610
+ }
31611
+
31612
+ .E_s1dizucg.ant-switch:focus {
31613
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
31614
+ }
31615
+
31616
+ .E_s1dizucg.ant-switch-small {
31617
+ min-width: 26px;
31618
+ height: 16px;
31619
+ }
31620
+
31621
+ .E_s1dizucg.ant-switch-large {
31622
+ min-width: 52px;
31623
+ height: 32px;
31624
+ }
31625
+
31626
+ .E_s1dizucg.ant-switch .ant-switch-handle {
31627
+ height: 20px;
31628
+ width: 20px;
31629
+ }
31630
+
31631
+ .E_s1dizucg.ant-switch .ant-switch-handle::before {
31632
+ border-radius: 10px;
31633
+ transition-delay: 120ms;
31634
+ }
31635
+
31636
+ .E_s1dizucg.ant-switch-small .ant-switch-handle {
31637
+ height: 14px;
31638
+ width: 14px;
31639
+ top: 1px;
31640
+ left: 1px;
31641
+ }
31642
+
31643
+ .E_s1dizucg.ant-switch-large .ant-switch-handle {
31644
+ height: 28px;
31645
+ width: 28px;
31646
+ }
31647
+
31648
+ .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
31649
+ border-radius: 14px;
31650
+ }
31651
+
31652
+ .E_s1dizucg.ant-switch-checked {
31653
+ background-color: #00ba5d;
31654
+ }
31655
+
31656
+ .E_s1dizucg.ant-switch-checked .ant-switch-handle {
31657
+ left: calc(100% - 20px - 2px);
31658
+ }
31659
+
31660
+ .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
31661
+ left: calc(100% - 14px - 1px);
31662
+ }
31663
+
31664
+ .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
31665
+ left: calc(100% - 28px - 2px);
31666
+ }
31667
+
31668
+ .E_c1up6e3y {
31669
+ margin-left: 5px;
31670
+ }
31671
+
31672
+ .E_tju3gfj .date {
31673
+ margin-right: 4px;
31674
+ }
31675
+
31676
+ .E_s1sck0th {
31677
+ padding: 0 8px;
31678
+ border-radius: 4px;
31679
+ }
31680
+
31681
+ .E_m855nr1 {
31682
+ padding: 2px 8px;
31683
+ border-radius: 3px;
31684
+ }
31685
+
31686
+ .E_l1270xpg {
31687
+ padding: 3px 8px;
31688
+ border-radius: 2px;
31689
+ }
31690
+
31691
+ .E_t14rextb.ant-tag:hover {
31692
+ opacity: unset;
31693
+ }
31694
+
31695
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
31696
+ margin: 0;
31697
+ margin-right: 8px;
31698
+ display: inline-flex;
31699
+ align-items: center;
31700
+ border: none;
31701
+ }
31702
+
31703
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
31704
+ width: 16px;
31705
+ height: 16px;
31706
+ color: inherit;
31707
+ margin-left: 4px;
31708
+ opacity: 0.6;
31709
+ display: inline-flex;
31710
+ }
31711
+
31712
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
31713
+ opacity: 1;
31714
+ }
31715
+
31716
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
31717
+ color: #0080ff;
31718
+ background-color: rgba(0, 136, 255, 0.1);
31719
+ }
31720
+
31721
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
31722
+ color: #f0483e;
31723
+ background-color: rgba(255, 74, 74, 0.1);
31724
+ }
31725
+
31726
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
31727
+ color: #e07f00;
31728
+ background-color: rgba(255, 187, 0, 0.1);
31729
+ }
31730
+
31731
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
31732
+ color: #008f4c;
31733
+ background-color: rgba(30, 201, 127, 0.1);
31734
+ }
31735
+
31736
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
31737
+ color: #1d326c;
31738
+ background-color: rgba(225, 230, 241, 0.6);
31739
+ }
31740
+
31741
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
31742
+ color: #7E41FF;
31743
+ background-color: rgba(126, 65, 255, 0.1);
31744
+ }
31745
+
31746
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
31747
+ color: #fff;
31748
+ }
31749
+
31750
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
31751
+ background-color: #f0483e;
31752
+ }
31753
+
31754
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
31755
+ background-color: #fea008;
31756
+ }
31757
+
31758
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
31759
+ background-color: #00ba5d;
31760
+ }
31761
+
31762
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
31763
+ background-color: #0080ff;
31764
+ }
31765
+
31766
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
31767
+ background-color: #6b7d99;
31768
+ }
31769
+
31770
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
31771
+ background-color: #7E41FF;
31772
+ }
31773
+
31774
+ .E_fzh9mnb {
31775
+ width: 100%;
31776
+ height: 100%;
31777
+ min-height: 124px;
31778
+ display: flex;
31779
+ flex-direction: column;
31780
+ justify-content: center;
31781
+ align-items: center;
31782
+ }
31783
+
31784
+ .E_fzh9mnb .error-text {
31785
+ color: rgba(10, 37, 85, 0.6);
31786
+ margin-bottom: 16px;
31787
+ font-size: 18px;
31788
+ }
31789
+
31790
+ .E_iq1gosr {
31791
+ display: inline-block;
31792
+ }
31793
+
31794
+ .E_s1dni7lo {
31795
+ width: 430px !important;
31796
+ }
31797
+
31798
+ .E_d1wwmmm5 .ant-select-item-group {
31799
+ padding: 8px 16px;
31800
+ line-height: 18px;
31822
31801
  border-top: 1px solid rgba(211, 218, 235, 0.6);
31823
31802
  height: 34px;
31824
31803
  min-height: 34px;
@@ -31942,24 +31921,8 @@ button.E_n7k2c6r {
31942
31921
  min-height: 0px;
31943
31922
  }
31944
31923
 
31945
- .E_fzh9mnb {
31946
- width: 100%;
31947
- height: 100%;
31948
- min-height: 124px;
31949
- display: flex;
31950
- flex-direction: column;
31951
- justify-content: center;
31952
- align-items: center;
31953
- }
31954
-
31955
- .E_fzh9mnb .error-text {
31956
- color: rgba(10, 37, 85, 0.6);
31957
- margin-bottom: 16px;
31958
- font-size: 18px;
31959
- }
31960
-
31961
- .E_ai7qkf2 .ant-input-number-handler-wrap {
31962
- display: var(--ai7qkf2-0);
31924
+ .E_ai7qkf2 .ant-input-number-handler-wrap {
31925
+ display: var(--ai7qkf2-0);
31963
31926
  }
31964
31927
 
31965
31928
  .E_ai7qkf2 .ant-input-number-input-wrap {
@@ -32028,6 +31991,62 @@ button.E_n7k2c6r {
32028
31991
  padding: 2px 8px;
32029
31992
  }
32030
31993
 
31994
+ .E_atcz0kf .ant-input-suffix {
31995
+ margin-left: 8px;
31996
+ }
31997
+
31998
+ .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
31999
+ padding: 2px 7px 2px 12px;
32000
+ }
32001
+
32002
+ .E_i1inqkme {
32003
+ height: 18px;
32004
+ line-height: 18px;
32005
+ padding: 0 4px;
32006
+ border-radius: 4px;
32007
+ background: rgba(235, 239, 245, 0.6);
32008
+ border: 1px solid rgba(223, 228, 235, 0.6);
32009
+ display: flex;
32010
+ align-items: center;
32011
+ white-space: nowrap;
32012
+ margin-right: 4px;
32013
+ }
32014
+
32015
+ .E_a1wfy30z .ant-input-number-handler-wrap {
32016
+ display: var(--a1wfy30z-0);
32017
+ }
32018
+
32019
+ .E_a1wfy30z .ant-input-number-input-wrap {
32020
+ padding: 4px 11px;
32021
+ display: inline-flex;
32022
+ line-height: 1.5715;
32023
+ height: inherit;
32024
+ }
32025
+
32026
+ .E_a1wfy30z .ant-input-number-input-wrap::after {
32027
+ content: var(--a1wfy30z-1);
32028
+ display: var(--a1wfy30z-2);
32029
+ flex: none;
32030
+ align-items: center;
32031
+ margin-left: 4px;
32032
+ }
32033
+
32034
+ .E_a1wfy30z .ant-input-number-input-wrap::before {
32035
+ content: var(--a1wfy30z-3);
32036
+ display: var(--a1wfy30z-4);
32037
+ flex: none;
32038
+ align-items: center;
32039
+ margin-right: 4px;
32040
+ cursor: auto;
32041
+ }
32042
+
32043
+ .E_a1wfy30z .ant-input-number-input {
32044
+ padding: 0;
32045
+ margin: 0;
32046
+ height: auto;
32047
+ font-size: inherit;
32048
+ }
32049
+
32031
32050
  .E_iouxfgt {
32032
32051
  display: inline-flex;
32033
32052
  align-items: center;
@@ -32049,6 +32068,19 @@ button.E_n7k2c6r {
32049
32068
  animation: rotate 680ms linear infinite;
32050
32069
  }
32051
32070
 
32071
+ .E_t1m2x205 .ant-tooltip-arrow {
32072
+ display: none;
32073
+ }
32074
+
32075
+ .E_t1m2x205 .ant-tooltip-inner {
32076
+ background: rgba(23, 38, 64, 0.8);
32077
+ border-radius: 4px;
32078
+ }
32079
+
32080
+ .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
32081
+ visibility: hidden;
32082
+ }
32083
+
32052
32084
  .E_owd0kml {
32053
32085
  display: inline-block;
32054
32086
  }
@@ -32058,6 +32090,39 @@ button.E_n7k2c6r {
32058
32090
  position: absolute;
32059
32091
  }
32060
32092
 
32093
+ .E_a1b5xrg3 .user-icon-inner {
32094
+ display: inline-flex;
32095
+ align-items: center;
32096
+ justify-content: center;
32097
+ color: #fff;
32098
+ font-weight: bold;
32099
+ font-size: 12px;
32100
+ width: 24px;
32101
+ height: 24px;
32102
+ border-radius: 50%;
32103
+ background: var(--a1b5xrg3-0);
32104
+ }
32105
+
32106
+ .E_a1b5xrg3.btn-item {
32107
+ transition: all 160ms ease;
32108
+ cursor: pointer;
32109
+ width: 56px;
32110
+ height: 40px;
32111
+ display: inline-flex;
32112
+ align-items: center;
32113
+ justify-content: center;
32114
+ border-radius: 6px;
32115
+ }
32116
+
32117
+ .E_a1b5xrg3.btn-item:hover {
32118
+ box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
32119
+ }
32120
+
32121
+ .E_a1b5xrg3.btn-item:active {
32122
+ transform: translateY(2px);
32123
+ transition: all 320ms ease;
32124
+ }
32125
+
32061
32126
  .E_dsnbhzf {
32062
32127
  font-family: Inter;
32063
32128
  font-style: normal;
@@ -32533,43 +32598,6 @@ button.E_n7k2c6r {
32533
32598
  line-height: 12px;
32534
32599
  }
32535
32600
 
32536
- .E_a1b5xrg3 .user-icon-inner {
32537
- display: inline-flex;
32538
- align-items: center;
32539
- justify-content: center;
32540
- color: #fff;
32541
- font-weight: bold;
32542
- font-size: 12px;
32543
- width: 24px;
32544
- height: 24px;
32545
- border-radius: 50%;
32546
- background: var(--a1b5xrg3-0);
32547
- }
32548
-
32549
- .E_a1b5xrg3.btn-item {
32550
- transition: all 160ms ease;
32551
- cursor: pointer;
32552
- width: 56px;
32553
- height: 40px;
32554
- display: inline-flex;
32555
- align-items: center;
32556
- justify-content: center;
32557
- border-radius: 6px;
32558
- }
32559
-
32560
- .E_a1b5xrg3.btn-item:hover {
32561
- box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
32562
- }
32563
-
32564
- .E_a1b5xrg3.btn-item:active {
32565
- transform: translateY(2px);
32566
- transition: all 320ms ease;
32567
- }
32568
-
32569
- .E_m196gn1d {
32570
- min-width: 1280px;
32571
- }
32572
-
32573
32601
  .E_cnujxq2 {
32574
32602
  display: flex;
32575
32603
  flex-direction: column;
@@ -33358,12 +33386,122 @@ input.E_rf8rlle.ant-input {
33358
33386
  color: rgba(44, 56, 82, 0.7490196078);
33359
33387
  }
33360
33388
 
33389
+ .E_m196gn1d {
33390
+ min-width: 1280px;
33391
+ }
33392
+
33393
+ .E_i5w779o {
33394
+ padding: 8px 0;
33395
+ }
33396
+
33397
+ .E_i5w779o .col-label {
33398
+ flex-shrink: unset;
33399
+ }
33400
+
33401
+ .E_i5w779o .col-label * {
33402
+ line-height: 18px;
33403
+ }
33404
+
33405
+ .E_i5w779o .col-content {
33406
+ flex: 1 1 0;
33407
+ display: flex;
33408
+ align-items: center;
33409
+ }
33410
+
33411
+ .E_i5w779o .col-content * {
33412
+ line-height: 18px;
33413
+ }
33414
+
33415
+ .E_l18dja44 {
33416
+ padding: 6px 0;
33417
+ }
33418
+
33419
+ .E_l18dja44 .col-label * {
33420
+ font-size: 13px;
33421
+ line-height: 20px;
33422
+ }
33423
+
33424
+ .E_l18dja44 .col-content * {
33425
+ font-size: 14px;
33426
+ line-height: 20px;
33427
+ }
33428
+
33429
+ .E_c8c2hys {
33430
+ display: flex;
33431
+ justify-content: space-between;
33432
+ flex: 1;
33433
+ min-width: 0;
33434
+ }
33435
+
33436
+ .E_n4m6c4d {
33437
+ color: rgba(0, 21, 64, 0.3);
33438
+ }
33439
+
33361
33440
  .E_h1ol2wl7 {
33362
33441
  font-weight: bold;
33363
33442
  background-color: unset;
33364
33443
  padding: unset;
33365
33444
  }
33366
33445
 
33446
+ .E_cyms3br {
33447
+ background: #fff;
33448
+ width: 100%;
33449
+ border-radius: 8px;
33450
+ border: 1px solid rgb(228, 233, 242);
33451
+ }
33452
+
33453
+ .E_cyms3br .ant-list {
33454
+ padding: 12px;
33455
+ }
33456
+
33457
+ .E_cyms3br .ant-list-item {
33458
+ padding: 4px 0;
33459
+ }
33460
+
33461
+ .E_cyms3br .ant-alert {
33462
+ margin-left: 24px;
33463
+ }
33464
+
33465
+ .E_cyms3br header {
33466
+ background: rgba(225, 230, 241, 0.6);
33467
+ font-size: 12px;
33468
+ color: rgb(29, 50, 108);
33469
+ font-weight: 700;
33470
+ padding: 6px 12px;
33471
+ display: flex;
33472
+ flex-direction: row;
33473
+ align-items: center;
33474
+ justify-content: space-between;
33475
+ }
33476
+
33477
+ .E_cyms3br header .switch-text {
33478
+ display: flex;
33479
+ flex-direction: row;
33480
+ align-items: center;
33481
+ justify-content: space-between;
33482
+ gap: 6px;
33483
+ font-size: 12px;
33484
+ font-weight: 400;
33485
+ color: rgb(0, 18, 46);
33486
+ }
33487
+
33488
+ .E_c157gu4z .ant-list-item {
33489
+ display: flex;
33490
+ flex-direction: row;
33491
+ }
33492
+
33493
+ .E_c157gu4z .description {
33494
+ flex-grow: 1;
33495
+ margin-left: 8px;
33496
+ }
33497
+
33498
+ .E_eu1sysj {
33499
+ display: flex;
33500
+ flex-direction: column;
33501
+ align-items: center;
33502
+ justify-content: center;
33503
+ }
33504
+
33367
33505
  .E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
33368
33506
  border-radius: 6px;
33369
33507
  }
@@ -33650,6 +33788,23 @@ input.E_rf8rlle.ant-input {
33650
33788
  margin-right: 6px;
33651
33789
  }
33652
33790
 
33791
+ .E_w1dxz879 {
33792
+ display: flex;
33793
+ flex-direction: column;
33794
+ gap: 6px;
33795
+ }
33796
+
33797
+ .E_w1dxz879 .ellipsis-tooltip {
33798
+ max-height: var(--w1dxz879-0);
33799
+ text-overflow: clip;
33800
+ overflow: hidden;
33801
+ }
33802
+
33803
+ .E_w1dxz879 .tips {
33804
+ color: #fff;
33805
+ opacity: 0.8;
33806
+ }
33807
+
33653
33808
  .E_hrhfj7c {
33654
33809
  display: none;
33655
33810
  }
@@ -33912,27 +34067,10 @@ input.E_rf8rlle.ant-input {
33912
34067
  font-size: 14px;
33913
34068
  }
33914
34069
 
33915
- .E_w1dxz879 {
33916
- display: flex;
33917
- flex-direction: column;
33918
- gap: 6px;
33919
- }
33920
-
33921
- .E_w1dxz879 .ellipsis-tooltip {
33922
- max-height: var(--w1dxz879-0);
33923
- text-overflow: clip;
33924
- overflow: hidden;
33925
- }
33926
-
33927
- .E_w1dxz879 .tips {
33928
- color: #fff;
33929
- opacity: 0.8;
33930
- }
33931
-
33932
- .E_h12yihis {
33933
- height: 50px;
33934
- border-bottom: 2px solid #edf0f7;
33935
- background: #fff;
34070
+ .E_h12yihis {
34071
+ height: 50px;
34072
+ border-bottom: 2px solid #edf0f7;
34073
+ background: #fff;
33936
34074
  display: flex;
33937
34075
  justify-content: space-between;
33938
34076
  align-items: center;
@@ -34189,6 +34327,59 @@ input.E_rf8rlle.ant-input {
34189
34327
  position: static;
34190
34328
  }
34191
34329
 
34330
+ .E_c14ouk5o {
34331
+ width: 100%;
34332
+ height: 100%;
34333
+ display: flex;
34334
+ font-size: 12px;
34335
+ line-height: 18px;
34336
+ padding: 8px 0;
34337
+ box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
34338
+ }
34339
+
34340
+ .E_c14ouk5o:last-of-type {
34341
+ box-shadow: none;
34342
+ padding-bottom: 0;
34343
+ }
34344
+
34345
+ .E_c14ouk5o.collapsed {
34346
+ flex-direction: column;
34347
+ }
34348
+
34349
+ .E_c14ouk5o.collapsed .collapsed-content {
34350
+ display: flex;
34351
+ }
34352
+
34353
+ .E_c14ouk5o.collapsed .collapsed-content > span {
34354
+ flex: 1;
34355
+ display: flex;
34356
+ justify-content: space-between;
34357
+ }
34358
+
34359
+ .E_c14ouk5o.collapsed .collapsed-content > span .ant-btn {
34360
+ height: auto;
34361
+ }
34362
+
34363
+ .E_c14ouk5o.collapsed .extra-content {
34364
+ margin-left: 162px;
34365
+ }
34366
+
34367
+ .E_c14ouk5o .col-label {
34368
+ width: 216px;
34369
+ color: rgba(44, 56, 82, 0.6);
34370
+ margin-right: 12px;
34371
+ flex-shrink: 0;
34372
+ }
34373
+
34374
+ .E_c14ouk5o .col-content {
34375
+ color: #2d3a56;
34376
+ /* make btn link in info row have the same height as normal text */
34377
+ }
34378
+
34379
+ .E_c14ouk5o .col-content .ant-btn-link {
34380
+ height: auto;
34381
+ }
34382
+
34192
34383
  .E_c1kchka8 {
34193
34384
  height: 100%;
34194
34385
  width: 100%;
@@ -34595,7 +34786,7 @@ input.E_rf8rlle.ant-input {
34595
34786
  gap: 8px;
34596
34787
  background: #fff;
34597
34788
  border-radius: 5px;
34598
- border: 1px solid #e4e9f2;
34789
+ border: 1px solid rgba(172, 186, 211, 0.6);
34599
34790
  transition: all 0.2s ease-in-out;
34600
34791
  }
34601
34792
 
@@ -34751,6 +34942,31 @@ input.E_rf8rlle.ant-input {
34751
34942
  padding: 0;
34752
34943
  }
34753
34944
 
34945
+ .E_l12xdkhl {
34946
+ width: 64px;
34947
+ height: 64px;
34948
+ max-width: 64px;
34949
+ max-height: 64px;
34950
+ overflow: hidden;
34951
+ display: flex;
34952
+ align-items: center;
34953
+ justify-content: center;
34954
+ position: relative;
34955
+ opacity: 0.6;
34956
+ }
34957
+
34958
+ .E_l12xdkhl .icon-wrapper {
34959
+ animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34960
+ }
34961
+
34962
+ @keyframes rotate {
34963
+ from {
34964
+ transform: rotate(0deg);
34965
+ }
34966
+ to {
34967
+ transform: rotate(360deg);
34968
+ }
34969
+ }
34754
34970
  .E_s11wux3h .antd5-segmented-item:not(:last-child) {
34755
34971
  margin-right: 2px;
34756
34972
  }
@@ -34790,32 +35006,9 @@ input.E_rf8rlle.ant-input {
34790
35006
  background-color: transparent;
34791
35007
  }
34792
35008
 
34793
- .E_l12xdkhl {
34794
- width: 64px;
34795
- height: 64px;
34796
- max-width: 64px;
34797
- max-height: 64px;
34798
- overflow: hidden;
34799
- display: flex;
34800
- align-items: center;
34801
- justify-content: center;
34802
- position: relative;
34803
- opacity: 0.6;
34804
- }
34805
-
34806
- .E_l12xdkhl .icon-wrapper {
34807
- animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34808
- }
34809
-
34810
- @keyframes rotate {
34811
- from {
34812
- transform: rotate(0deg);
34813
- }
34814
- to {
34815
- transform: rotate(360deg);
34816
- }
34817
- }
34818
- button.E_l48ei06.ant-btn {
35009
+ button.E_l48ei06.ant-btn,
35010
+ button.E_l48ei06.ant-btn.ant-btn-sm,
35011
+ button.E_l48ei06.ant-btn.ant-btn-lg {
34819
35012
  font-size: 12px;
34820
35013
  line-height: 18px;
34821
35014
  height: 18px;
@@ -35504,59 +35697,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35504
35697
  margin-left: 24px;
35505
35698
  }
35506
35699
 
35507
- .E_lht19u8 {
35508
- width: 64px;
35509
- height: 64px;
35510
- display: flex;
35511
- align-items: center;
35512
- justify-content: center;
35513
- position: relative;
35514
- opacity: 0.2;
35515
- }
35516
-
35517
- .E_lk3gkp4 {
35518
- position: absolute;
35519
- width: 5px;
35520
- height: 48px;
35521
- left: 9.33px;
35522
- top: 40.5px;
35523
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35524
- border-radius: 5px;
35525
- transform: rotate(-128deg);
35526
- transform-origin: top left;
35527
- animation: loading-indicator1 1100ms ease-out infinite;
35528
- }
35529
-
35530
- .E_ll4n94n {
35531
- position: absolute;
35532
- width: 5px;
35533
- height: 48px;
35534
- left: 40.8px;
35535
- top: 8.4px;
35536
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35537
- border-radius: 5px;
35538
- transform: rotate(-8deg);
35539
- transform-origin: top left;
35540
- animation: loading-indicator2 1100ms ease-out infinite;
35541
- }
35542
-
35543
- .E_l17lbdo6 {
35544
- position: absolute;
35545
- width: 5px;
35546
- height: 48px;
35547
- left: 52.9px;
35548
- top: 51.8px;
35549
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35550
- border-radius: 5px;
35551
- transform: rotate(112deg);
35552
- transform-origin: top left;
35553
- animation: loading-indicator3 1100ms ease-out infinite;
35554
- }
35555
-
35556
- .E_c1yd35n {
35557
- padding: 0 12px 14px 12px;
35558
- }
35559
-
35560
35700
  .E_c1kghdax {
35561
35701
  color: #2d3a56;
35562
35702
  padding: 7px 12px;
@@ -35604,312 +35744,115 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35604
35744
  margin-right: 2px;
35605
35745
  }
35606
35746
 
35607
- .E_w7ob4th.outside-tag {
35608
- padding-left: 0;
35609
- }
35610
-
35611
- .E_w7ob4th.outside-tag .inside-tag {
35612
- border-radius: 4px 0 0 4px;
35613
- padding-right: 4px;
35614
- margin-right: 4px;
35615
- }
35616
-
35617
- .E_b14q2gmw {
35618
- 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);
35619
- }
35620
-
35621
- .E_c1eym6el {
35622
- border-radius: 8px;
35623
- background-color: white;
35624
- }
35625
-
35626
- .E_c1eym6el.hoverable {
35627
- cursor: pointer;
35628
- }
35629
-
35630
- .E_c1eym6el.hoverable:hover {
35631
- transition: all 200ms ease;
35632
- box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
35633
- transform: translateY(-4px);
35634
- }
35635
-
35636
- .E_slr2ynn {
35637
- padding: 0 8px;
35638
- height: 18px;
35639
- }
35640
-
35641
- .E_m140wbb6 {
35642
- padding: 2px 8px;
35643
- height: 24px;
35644
- }
35645
-
35646
- .E_t1fozc1i {
35647
- margin: 0;
35648
- }
35649
-
35650
- .E_i1vxv4ln {
35651
- margin-right: 4px;
35652
- height: 16px;
35653
- }
35654
-
35655
- .E_n1afl31m.ant-tag.ant-tag-gray {
35656
- font-weight: 700;
35657
- color: #00122e;
35658
- background-color: rgba(237, 241, 250, 0.6);
35659
- border: 1px solid rgba(211, 218, 235, 0.6);
35660
- word-break: break-all;
35661
- display: inline;
35662
- white-space: normal;
35747
+ .E_c1yd35n {
35748
+ padding: 0 12px 14px 12px;
35663
35749
  }
35664
35750
 
35665
- .E_r77hffu {
35751
+ .E_lht19u8 {
35752
+ width: 64px;
35753
+ height: 64px;
35666
35754
  display: flex;
35667
35755
  align-items: center;
35668
- justify-content: space-between;
35669
- column-gap: 6px;
35670
- }
35671
-
35672
- .E_p1cmxsf7 {
35673
- display: flex;
35674
- flex-direction: column;
35675
35756
  justify-content: center;
35676
- row-gap: var(--p1cmxsf7-0);
35677
- }
35678
-
35679
- .E_p1cmxsf7 .antd5-progress-line {
35680
- font-size: 0;
35681
- }
35682
-
35683
- .E_sjob3jg {
35684
- --item-min-width: 60px;
35685
- }
35686
-
35687
- .E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
35688
- display: none !important;
35689
- }
35690
-
35691
- .E_sjob3jg .ant-steps-item.ant-steps-item-active {
35692
- flex-shrink: 0 !important;
35693
- }
35694
-
35695
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
35696
- color: #0080ff;
35697
- }
35698
-
35699
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35700
- color: #0080ff;
35701
- font-weight: normal;
35702
- }
35703
-
35704
- .E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title, .E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container:hover .ant-steps-item-content .ant-steps-item-title {
35705
- color: rgba(44, 56, 82, 0.6);
35706
- }
35707
-
35708
- .E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35709
- color: #00122e;
35710
- }
35711
-
35712
- .E_sjob3jg .step-item-text {
35713
- display: inline-block;
35714
- }
35715
-
35716
- .E_sjob3jg .step-item-title {
35717
- overflow: hidden;
35718
- white-space: nowrap;
35719
- text-overflow: ellipsis;
35720
- }
35721
-
35722
- .E_hjvj6s6 .ant-steps-item-container {
35723
- min-width: var(--item-min-width);
35724
- }
35725
-
35726
- .E_hjvj6s6 .ant-steps-item-disabled {
35727
- cursor: not-allowed !important;
35728
- }
35729
-
35730
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
35731
- flex-direction: row;
35732
- justify-content: stretch;
35733
- }
35734
-
35735
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
35736
- padding: 0;
35737
- margin-right: 4px;
35738
- flex: 1;
35739
- overflow: visible;
35740
- }
35741
-
35742
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
35743
- width: 100%;
35744
- min-height: unset;
35745
- }
35746
-
35747
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
35748
- height: 26px;
35749
- line-height: 26px;
35750
- width: 100%;
35751
- padding: 0;
35752
- font-size: 12px;
35753
- }
35754
-
35755
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
35756
- margin-right: 10px;
35757
- }
35758
-
35759
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
35760
- display: none;
35761
- }
35762
-
35763
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
35764
- padding-left: 8px;
35765
- padding-right: 4px;
35766
- border-radius: 4px 0 0 4px;
35767
- }
35768
-
35769
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
35770
- margin-right: 0;
35771
- }
35772
-
35773
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
35774
- padding-right: 8px;
35775
- padding-left: 12px;
35776
- border-radius: 0 4px 4px 0;
35777
- }
35778
-
35779
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
35780
- content: "";
35781
- width: 0;
35782
- height: 0;
35783
- border: 13px solid transparent;
35784
- position: absolute;
35785
- top: 0;
35786
- border-left: 8px solid rgba(237, 241, 250, 0.6);
35787
- z-index: 2;
35788
35757
  position: relative;
35789
- top: -50%;
35790
- right: -100%;
35758
+ opacity: 0.2;
35791
35759
  }
35792
35760
 
35793
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
35794
- padding: 0 4px 0 12px;
35761
+ .E_lk3gkp4 {
35762
+ position: absolute;
35763
+ width: 5px;
35764
+ height: 48px;
35765
+ left: 9.33px;
35766
+ top: 40.5px;
35767
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35768
+ border-radius: 5px;
35769
+ transform: rotate(-128deg);
35770
+ transform-origin: top left;
35771
+ animation: loading-indicator1 1100ms ease-out infinite;
35795
35772
  }
35796
35773
 
35797
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
35798
- content: "";
35799
- width: 0;
35800
- height: 0;
35801
- border: 13px solid transparent;
35774
+ .E_ll4n94n {
35802
35775
  position: absolute;
35803
- top: 0;
35804
- border-left: 8px solid #fff;
35805
- left: 0;
35776
+ width: 5px;
35777
+ height: 48px;
35778
+ left: 40.8px;
35779
+ top: 8.4px;
35780
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35781
+ border-radius: 5px;
35782
+ transform: rotate(-8deg);
35783
+ transform-origin: top left;
35784
+ animation: loading-indicator2 1100ms ease-out infinite;
35806
35785
  }
35807
35786
 
35808
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
35809
- max-width: calc(100% - var(--item-min-width) * 2);
35787
+ .E_l17lbdo6 {
35788
+ position: absolute;
35789
+ width: 5px;
35790
+ height: 48px;
35791
+ left: 52.9px;
35792
+ top: 51.8px;
35793
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35794
+ border-radius: 5px;
35795
+ transform: rotate(112deg);
35796
+ transform-origin: top left;
35797
+ animation: loading-indicator3 1100ms ease-out infinite;
35810
35798
  }
35811
35799
 
35812
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
35813
- background-color: rgba(0, 136, 255, 0.1);
35800
+ .E_b14q2gmw {
35801
+ 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);
35814
35802
  }
35815
35803
 
35816
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
35817
- border-left-color: rgba(0, 136, 255, 0.1) !important;
35804
+ .E_c1eym6el {
35805
+ border-radius: 8px;
35806
+ background-color: white;
35818
35807
  }
35819
35808
 
35820
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
35809
+ .E_c1eym6el.hoverable {
35821
35810
  cursor: pointer;
35822
- min-width: var(--item-min-width);
35823
- }
35824
-
35825
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
35826
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
35827
- min-width: var(--item-min-width);
35828
35811
  }
35829
35812
 
35830
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
35831
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
35832
- background-color: rgba(237, 241, 250, 0.6);
35833
- }
35834
-
35835
- .E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
35836
- padding: 0;
35837
- }
35838
-
35839
- .E_v4tv3mf .ant-steps.ant-steps-vertical {
35840
- width: 192px;
35841
- row-gap: 2px;
35842
- }
35843
-
35844
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
35845
- background-color: rgba(225, 230, 241, 0.6);
35813
+ .E_c1eym6el.hoverable:hover {
35814
+ transition: all 200ms ease;
35815
+ box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
35816
+ transform: translateY(-4px);
35846
35817
  }
35847
35818
 
35848
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
35849
- color: #00122e !important;
35819
+ .E_w7ob4th.outside-tag {
35820
+ padding-left: 0;
35850
35821
  }
35851
35822
 
35852
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-disabled) .ant-steps-item-container:hover {
35853
- background-color: rgba(225, 230, 241, 0.6);
35823
+ .E_w7ob4th.outside-tag .inside-tag {
35824
+ border-radius: 4px 0 0 4px;
35825
+ padding-right: 4px;
35826
+ margin-right: 4px;
35854
35827
  }
35855
35828
 
35856
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
35829
+ .E_slr2ynn {
35857
35830
  padding: 0 8px;
35858
- border-radius: 4px;
35859
- height: 32px;
35860
- display: flex;
35861
- align-items: center;
35862
- }
35863
-
35864
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
35865
- min-height: auto;
35866
- white-space: nowrap;
35867
- }
35868
-
35869
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35870
- font-size: 13px;
35871
- line-height: 20px;
35872
- max-width: 100%;
35873
- padding-right: 0;
35874
- }
35875
-
35876
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
35877
- background: rgba(0, 128, 255, 0.1);
35831
+ height: 18px;
35878
35832
  }
35879
35833
 
35880
- .E_h6l1tj4 {
35881
- width: 100%;
35882
- display: inline-flex;
35883
- align-items: center;
35884
- justify-content: center;
35885
- column-gap: 4px;
35834
+ .E_m140wbb6 {
35835
+ padding: 2px 8px;
35836
+ height: 24px;
35886
35837
  }
35887
35838
 
35888
- .E_h6l1tj4 .step-item-prefix-container {
35889
- display: inline-flex;
35890
- align-items: center;
35891
- width: 18px;
35892
- height: 18px;
35893
- color: rgba(44, 56, 82, 0.75);
35894
- justify-content: center;
35839
+ .E_t1fozc1i {
35840
+ margin: 0;
35895
35841
  }
35896
35842
 
35897
- .E_v18frne8 {
35898
- width: 100%;
35899
- display: flex;
35900
- align-items: center;
35901
- justify-content: center;
35902
- column-gap: 6px;
35903
- font-size: 13px;
35843
+ .E_i1vxv4ln {
35844
+ margin-right: 4px;
35845
+ height: 16px;
35904
35846
  }
35905
35847
 
35906
- .E_v18frne8 .step-item-prefix-container {
35907
- display: inline-flex;
35908
- align-items: center;
35909
- min-width: 20px;
35910
- min-height: 20px;
35911
- color: rgba(44, 56, 82, 0.75);
35912
- justify-content: center;
35848
+ .E_n1afl31m.ant-tag.ant-tag-gray {
35849
+ font-weight: 700;
35850
+ color: #00122e;
35851
+ background-color: rgba(237, 241, 250, 0.6);
35852
+ border: 1px solid rgba(211, 218, 235, 0.6);
35853
+ word-break: break-all;
35854
+ display: inline;
35855
+ white-space: normal;
35913
35856
  }
35914
35857
 
35915
35858
  .E_t1dtlqs1 {
@@ -36004,145 +35947,397 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36004
35947
  margin-bottom: 0;
36005
35948
  }
36006
35949
 
36007
- .E_tmoyoag .ant-list .eagle-table-form-row {
36008
- display: flex;
36009
- justify-content: flex-start;
36010
- align-items: flex-start;
36011
- flex-wrap: wrap;
36012
- padding: 8px;
36013
- border: none;
35950
+ .E_tmoyoag .ant-list .eagle-table-form-row {
35951
+ display: flex;
35952
+ justify-content: flex-start;
35953
+ align-items: flex-start;
35954
+ flex-wrap: wrap;
35955
+ padding: 8px;
35956
+ border: none;
35957
+ }
35958
+
35959
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
35960
+ flex-basis: 100%;
35961
+ margin: 12px 0 0;
35962
+ order: 99;
35963
+ color: rgba(44, 56, 82, 0.6);
35964
+ }
35965
+
35966
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
35967
+ color: #f0483e;
35968
+ flex-basis: 100%;
35969
+ order: 98;
35970
+ margin: 12px 0 0;
35971
+ }
35972
+
35973
+ .E_tmoyoag .ant-list .eagle-table-form-row:hover {
35974
+ background-color: rgba(237, 241, 250, 0.6);
35975
+ }
35976
+
35977
+ .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
35978
+ background-color: rgba(0, 136, 255, 0.1);
35979
+ }
35980
+
35981
+ .E_tmoyoag .ant-list .eagle-table-form-cell {
35982
+ flex: 1 0 0;
35983
+ overflow: hidden;
35984
+ }
35985
+
35986
+ .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
35987
+ color: rgba(44, 56, 82, 0.6);
35988
+ margin: 0;
35989
+ }
35990
+
35991
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
35992
+ text-align: center;
35993
+ }
35994
+
35995
+ .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 > * {
35996
+ text-align: center;
35997
+ }
35998
+
35999
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
36000
+ text-align: left;
36001
+ }
36002
+
36003
+ .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 > * {
36004
+ text-align: left;
36005
+ }
36006
+
36007
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
36008
+ text-align: right;
36009
+ }
36010
+
36011
+ .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 > * {
36012
+ text-align: right;
36013
+ }
36014
+
36015
+ .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
36016
+ margin-right: 8px;
36017
+ }
36018
+
36019
+ .E_tmoyoag .ant-list .ant-list-item-action {
36020
+ padding: 4px;
36021
+ width: 24px;
36022
+ height: 24px;
36023
+ overflow: hidden;
36024
+ }
36025
+
36026
+ .E_tmoyoag .ant-list .ant-list-item-action li {
36027
+ padding: 0;
36028
+ }
36029
+
36030
+ .E_tmoyoag .ant-list .delete-row-icon.disabled {
36031
+ cursor: not-allowed;
36032
+ opacity: 0.5;
36033
+ }
36034
+
36035
+ .E_tmoyoag .ant-list.size-default .ant-list-item-action {
36036
+ margin: 0;
36037
+ }
36038
+
36039
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
36040
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
36041
+ border-radius: 5px;
36042
+ font-size: 12px;
36043
+ }
36044
+
36045
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
36046
+ font-size: inherit;
36047
+ }
36048
+
36049
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
36050
+ min-height: 24px;
36051
+ font-size: 12px;
36052
+ position: relative;
36053
+ }
36054
+
36055
+ .E_tmoyoag.row-split-by-border .eagle-table-form-row {
36056
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
36057
+ }
36058
+
36059
+ .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
36060
+ background-color: rgba(237, 241, 250, 0.6);
36061
+ }
36062
+
36063
+ .E_a138syjm {
36064
+ display: flex;
36065
+ align-items: center;
36066
+ margin-top: 8px;
36067
+ }
36068
+
36069
+ .E_a138syjm button.ant-btn {
36070
+ padding: 2px 8px;
36071
+ height: 24px;
36072
+ }
36073
+
36074
+ .E_a138syjm > span.maximum-desc {
36075
+ display: none;
36076
+ margin-left: 8px;
36077
+ color: rgba(44, 56, 82, 0.6);
36078
+ }
36079
+
36080
+ .E_a138syjm > span.maximum-desc.disabled {
36081
+ display: inline;
36082
+ }
36083
+
36084
+ .E_d77i8u0 {
36085
+ width: 24px;
36086
+ height: 24px;
36087
+ padding: 4px;
36088
+ margin-right: 8px;
36089
+ }
36090
+
36091
+ .E_sjob3jg {
36092
+ --item-min-width: 60px;
36093
+ }
36094
+
36095
+ .E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
36096
+ display: none !important;
36097
+ }
36098
+
36099
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active {
36100
+ flex-shrink: 0 !important;
36101
+ }
36102
+
36103
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
36104
+ color: #0080ff;
36105
+ }
36106
+
36107
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
36108
+ color: #0080ff;
36109
+ font-weight: normal;
36110
+ }
36111
+
36112
+ .E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title, .E_sjob3jg .ant-steps-item.ant-steps-item-finish .ant-steps-item-container:hover .ant-steps-item-content .ant-steps-item-title {
36113
+ color: rgba(44, 56, 82, 0.6);
36114
+ }
36115
+
36116
+ .E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
36117
+ color: #00122e;
36118
+ }
36119
+
36120
+ .E_sjob3jg .step-item-text {
36121
+ display: inline-block;
36122
+ }
36123
+
36124
+ .E_sjob3jg .step-item-title {
36125
+ overflow: hidden;
36126
+ white-space: nowrap;
36127
+ text-overflow: ellipsis;
36128
+ }
36129
+
36130
+ .E_hjvj6s6 .ant-steps-item-container {
36131
+ min-width: var(--item-min-width);
36132
+ }
36133
+
36134
+ .E_hjvj6s6 .ant-steps-item-disabled {
36135
+ cursor: not-allowed !important;
36136
+ }
36137
+
36138
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
36139
+ flex-direction: row;
36140
+ justify-content: stretch;
36141
+ }
36142
+
36143
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
36144
+ padding: 0;
36145
+ margin-right: 4px;
36146
+ flex: 1;
36147
+ overflow: visible;
36148
+ }
36149
+
36150
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
36151
+ width: 100%;
36152
+ min-height: unset;
36153
+ }
36154
+
36155
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
36156
+ height: 26px;
36157
+ line-height: 26px;
36158
+ width: 100%;
36159
+ padding: 0;
36160
+ font-size: 12px;
36161
+ }
36162
+
36163
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
36164
+ margin-right: 10px;
36165
+ }
36166
+
36167
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
36168
+ display: none;
36169
+ }
36170
+
36171
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
36172
+ padding-left: 8px;
36173
+ padding-right: 4px;
36174
+ border-radius: 4px 0 0 4px;
36014
36175
  }
36015
36176
 
36016
- .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
36017
- flex-basis: 100%;
36018
- margin: 12px 0 0;
36019
- order: 99;
36020
- color: rgba(44, 56, 82, 0.6);
36177
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
36178
+ margin-right: 0;
36021
36179
  }
36022
36180
 
36023
- .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
36024
- color: #f0483e;
36025
- flex-basis: 100%;
36026
- order: 98;
36027
- margin: 12px 0 0;
36181
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
36182
+ padding-right: 8px;
36183
+ padding-left: 12px;
36184
+ border-radius: 0 4px 4px 0;
36028
36185
  }
36029
36186
 
36030
- .E_tmoyoag .ant-list .eagle-table-form-row:hover {
36031
- background-color: rgba(237, 241, 250, 0.6);
36187
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
36188
+ content: "";
36189
+ width: 0;
36190
+ height: 0;
36191
+ border: 13px solid transparent;
36192
+ position: absolute;
36193
+ top: 0;
36194
+ border-left: 8px solid rgba(237, 241, 250, 0.6);
36195
+ z-index: 2;
36196
+ position: relative;
36197
+ top: -50%;
36198
+ right: -100%;
36032
36199
  }
36033
36200
 
36034
- .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
36035
- background-color: rgba(0, 136, 255, 0.1);
36201
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
36202
+ padding: 0 4px 0 12px;
36036
36203
  }
36037
36204
 
36038
- .E_tmoyoag .ant-list .eagle-table-form-cell {
36039
- flex: 1 0 0;
36040
- overflow: hidden;
36205
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
36206
+ content: "";
36207
+ width: 0;
36208
+ height: 0;
36209
+ border: 13px solid transparent;
36210
+ position: absolute;
36211
+ top: 0;
36212
+ border-left: 8px solid #fff;
36213
+ left: 0;
36041
36214
  }
36042
36215
 
36043
- .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
36044
- color: rgba(44, 56, 82, 0.6);
36045
- margin: 0;
36216
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
36217
+ max-width: calc(100% - var(--item-min-width) * 2);
36046
36218
  }
36047
36219
 
36048
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
36049
- text-align: center;
36220
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
36221
+ background-color: rgba(0, 136, 255, 0.1);
36050
36222
  }
36051
36223
 
36052
- .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 > * {
36053
- text-align: center;
36224
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
36225
+ border-left-color: rgba(0, 136, 255, 0.1) !important;
36054
36226
  }
36055
36227
 
36056
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
36057
- text-align: left;
36228
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
36229
+ cursor: pointer;
36230
+ min-width: var(--item-min-width);
36058
36231
  }
36059
36232
 
36060
- .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 > * {
36061
- text-align: left;
36233
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
36234
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
36235
+ min-width: var(--item-min-width);
36062
36236
  }
36063
36237
 
36064
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
36065
- text-align: right;
36238
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
36239
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
36240
+ background-color: rgba(237, 241, 250, 0.6);
36066
36241
  }
36067
36242
 
36068
- .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 > * {
36069
- text-align: right;
36243
+ .E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
36244
+ padding: 0;
36070
36245
  }
36071
36246
 
36072
- .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
36073
- margin-right: 8px;
36247
+ .E_v4tv3mf .ant-steps.ant-steps-vertical {
36248
+ width: 192px;
36249
+ row-gap: 2px;
36074
36250
  }
36075
36251
 
36076
- .E_tmoyoag .ant-list .ant-list-item-action {
36077
- padding: 4px;
36078
- width: 24px;
36079
- height: 24px;
36080
- overflow: hidden;
36252
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
36253
+ background-color: rgba(225, 230, 241, 0.6);
36081
36254
  }
36082
36255
 
36083
- .E_tmoyoag .ant-list .ant-list-item-action li {
36084
- padding: 0;
36256
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
36257
+ color: #00122e !important;
36085
36258
  }
36086
36259
 
36087
- .E_tmoyoag .ant-list .delete-row-icon.disabled {
36088
- cursor: not-allowed;
36089
- opacity: 0.5;
36260
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-disabled) .ant-steps-item-container:hover {
36261
+ background-color: rgba(225, 230, 241, 0.6);
36090
36262
  }
36091
36263
 
36092
- .E_tmoyoag .ant-list.size-default .ant-list-item-action {
36093
- margin: 0;
36264
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
36265
+ padding: 0 8px;
36266
+ border-radius: 4px;
36267
+ height: 32px;
36268
+ display: flex;
36269
+ align-items: center;
36094
36270
  }
36095
36271
 
36096
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
36097
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
36098
- border-radius: 5px;
36099
- font-size: 12px;
36272
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
36273
+ min-height: auto;
36274
+ white-space: nowrap;
36100
36275
  }
36101
36276
 
36102
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
36103
- font-size: inherit;
36277
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
36278
+ font-size: 13px;
36279
+ line-height: 20px;
36280
+ max-width: 100%;
36281
+ padding-right: 0;
36104
36282
  }
36105
36283
 
36106
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
36107
- min-height: 24px;
36108
- font-size: 12px;
36109
- position: relative;
36284
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
36285
+ background: rgba(0, 128, 255, 0.1);
36110
36286
  }
36111
36287
 
36112
- .E_tmoyoag.row-split-by-border .eagle-table-form-row {
36113
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
36288
+ .E_h6l1tj4 {
36289
+ width: 100%;
36290
+ display: inline-flex;
36291
+ align-items: center;
36292
+ justify-content: center;
36293
+ column-gap: 4px;
36114
36294
  }
36115
36295
 
36116
- .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
36117
- background-color: rgba(237, 241, 250, 0.6);
36296
+ .E_h6l1tj4 .step-item-prefix-container {
36297
+ display: inline-flex;
36298
+ align-items: center;
36299
+ width: 18px;
36300
+ height: 18px;
36301
+ color: rgba(44, 56, 82, 0.75);
36302
+ justify-content: center;
36118
36303
  }
36119
36304
 
36120
- .E_a138syjm {
36305
+ .E_v18frne8 {
36306
+ width: 100%;
36121
36307
  display: flex;
36122
36308
  align-items: center;
36123
- margin-top: 8px;
36309
+ justify-content: center;
36310
+ column-gap: 6px;
36311
+ font-size: 13px;
36124
36312
  }
36125
36313
 
36126
- .E_a138syjm button.ant-btn {
36127
- padding: 2px 8px;
36128
- height: 24px;
36314
+ .E_v18frne8 .step-item-prefix-container {
36315
+ display: inline-flex;
36316
+ align-items: center;
36317
+ min-width: 20px;
36318
+ min-height: 20px;
36319
+ color: rgba(44, 56, 82, 0.75);
36320
+ justify-content: center;
36129
36321
  }
36130
36322
 
36131
- .E_a138syjm > span.maximum-desc {
36132
- display: none;
36133
- margin-left: 8px;
36134
- color: rgba(44, 56, 82, 0.6);
36323
+ .E_r77hffu {
36324
+ display: flex;
36325
+ align-items: center;
36326
+ justify-content: space-between;
36327
+ column-gap: 6px;
36135
36328
  }
36136
36329
 
36137
- .E_a138syjm > span.maximum-desc.disabled {
36138
- display: inline;
36330
+ .E_p1cmxsf7 {
36331
+ display: flex;
36332
+ flex-direction: column;
36333
+ justify-content: center;
36334
+ row-gap: var(--p1cmxsf7-0);
36139
36335
  }
36140
36336
 
36141
- .E_d77i8u0 {
36142
- width: 24px;
36143
- height: 24px;
36144
- padding: 4px;
36145
- margin-right: 8px;
36337
+ .E_p1cmxsf7 .antd5-progress-line {
36338
+ font-size: 0;
36339
+ margin-bottom: unset;
36340
+ margin-inline-end: unset;
36146
36341
  }
36147
36342
 
36148
36343
  .E_t13ef470 {
@@ -36396,6 +36591,60 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36396
36591
  margin-left: 8px;
36397
36592
  }
36398
36593
 
36594
+ .E_t59qhqp {
36595
+ background: #FFFFFF;
36596
+ padding: 24px 32px;
36597
+ border-radius: 8px;
36598
+ }
36599
+
36600
+ .E_t59qhqp .ant-timeline-item {
36601
+ margin-bottom: 16px;
36602
+ padding-bottom: 0px;
36603
+ }
36604
+
36605
+ .E_t59qhqp .ant-timeline-item-last,
36606
+ .E_t59qhqp .compact.ant-timeline-item-last {
36607
+ margin-bottom: 0;
36608
+ }
36609
+
36610
+ .E_t59qhqp .compact.ant-timeline-item {
36611
+ margin-bottom: 12px;
36612
+ }
36613
+
36614
+ .E_t59qhqp .info-action {
36615
+ align-self: baseline;
36616
+ }
36617
+
36618
+ .E_t2e44lg .ant-timeline-item-content {
36619
+ margin-left: 18px;
36620
+ }
36621
+
36622
+ .E_t2e44lg .item-time {
36623
+ display: flex;
36624
+ flex-direction: column;
36625
+ gap: 4px;
36626
+ margin-top: 4px;
36627
+ }
36628
+
36629
+ .E_t2e44lg:last-child .ant-timeline-item-content {
36630
+ padding-bottom: 0;
36631
+ }
36632
+
36633
+ .E_e14ua30y {
36634
+ display: flex;
36635
+ flex-direction: column;
36636
+ align-items: center;
36637
+ justify-content: center;
36638
+ }
36639
+
36640
+ .E_s1ikqzph {
36641
+ color: rgba(44, 56, 82, 0.7490196078);
36642
+ }
36643
+
36644
+ .E_i15astnl {
36645
+ color: #00122E;
36646
+ }
36647
+
36399
36648
  .E_s20iney.skeleton-box {
36400
36649
  display: flex;
36401
36650
  align-items: center;
@@ -36483,18 +36732,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36483
36732
  display: block;
36484
36733
  }
36485
36734
 
36486
- .E_i14c7jc8 {
36487
- color: var(--i14c7jc8-0);
36488
- }
36489
-
36490
- .E_i1ibuolf {
36491
- display: flex;
36492
- align-items: center;
36493
- column-gap: 4px;
36494
- font-size: 12px;
36495
- color: rgba(44, 56, 82, 0.7490196078);
36496
- }
36497
-
36498
36735
  .E_d1u4ndxc {
36499
36736
  color: rgba(44, 56, 82, 0.7490196078);
36500
36737
  font-size: 12px;
@@ -36525,4 +36762,15 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36525
36762
  to {
36526
36763
  transform: translateX(100%);
36527
36764
  }
36765
+ }
36766
+ .E_i14c7jc8 {
36767
+ color: var(--i14c7jc8-0);
36768
+ }
36769
+
36770
+ .E_i1ibuolf {
36771
+ display: flex;
36772
+ align-items: center;
36773
+ column-gap: 4px;
36774
+ font-size: 12px;
36775
+ color: rgba(44, 56, 82, 0.7490196078);
36528
36776
  }