@cloudtower/eagle 0.33.0 → 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 (107) hide show
  1. package/README.md +6 -0
  2. package/dist/cjs/UIKitProvider/index.js +3 -4
  3. package/dist/cjs/antd.js +6 -6
  4. package/dist/cjs/core/Alert/index.js +10 -4
  5. package/dist/cjs/core/BitPerSecond/index.js +3 -3
  6. package/dist/cjs/core/KitStoreProvider/index.js +10 -0
  7. package/dist/cjs/core/Modal/index.js +53 -42
  8. package/dist/cjs/core/ModalStack/index.js +6 -0
  9. package/dist/cjs/core/Progress/progress.widgets.js +2 -5
  10. package/dist/cjs/core/SearchInput/index.js +21 -11
  11. package/dist/cjs/core/TableForm/TableFormBodyCell.js +2 -1
  12. package/dist/cjs/core/TableForm/TableFormHeaderCell.js +4 -2
  13. package/dist/cjs/core/Timeline/Timeline.style.js +13 -0
  14. package/dist/cjs/core/Timeline/Timeline.widget.js +114 -0
  15. package/dist/cjs/core/Timeline/index.js +122 -0
  16. package/dist/cjs/core/message/index.js +7 -2
  17. package/dist/cjs/core/message-group/index.js +3 -1
  18. package/dist/cjs/coreX/CheckPointList/checkpointlist.style.js +9 -0
  19. package/dist/cjs/coreX/CheckPointList/index.js +90 -0
  20. package/dist/cjs/coreX/DateRangePicker/common.js +7 -5
  21. package/dist/cjs/coreX/DateRangePicker/index.js +10 -5
  22. package/dist/cjs/coreX/InfoRowList/InfoRow.js +31 -0
  23. package/dist/cjs/coreX/InfoRowList/InfoRowList.js +60 -0
  24. package/dist/cjs/coreX/Show/index.js +20 -0
  25. package/dist/cjs/index.js +123 -112
  26. package/dist/cjs/stats1.html +1 -1
  27. package/dist/cjs/store/modal.js +3 -0
  28. package/dist/cjs/styles/token/color.js +24 -0
  29. package/dist/cjs/utils/constants.js +11 -0
  30. package/dist/components.css +2098 -1744
  31. package/dist/esm/UIKitProvider/index.js +3 -4
  32. package/dist/esm/antd.js +3 -3
  33. package/dist/esm/core/Alert/index.js +10 -4
  34. package/dist/esm/core/BitPerSecond/index.js +3 -3
  35. package/dist/esm/core/KitStoreProvider/index.js +10 -1
  36. package/dist/esm/core/Modal/index.js +53 -42
  37. package/dist/esm/core/ModalStack/index.js +7 -1
  38. package/dist/esm/core/Progress/progress.widgets.js +1 -4
  39. package/dist/esm/core/SearchInput/index.js +21 -11
  40. package/dist/esm/core/TableForm/TableFormBodyCell.js +2 -1
  41. package/dist/esm/core/TableForm/TableFormHeaderCell.js +4 -2
  42. package/dist/esm/core/Timeline/Timeline.style.js +7 -0
  43. package/dist/esm/core/Timeline/Timeline.widget.js +107 -0
  44. package/dist/esm/core/Timeline/index.js +115 -0
  45. package/dist/esm/core/message/index.js +7 -3
  46. package/dist/esm/core/message-group/index.js +3 -1
  47. package/dist/esm/coreX/CheckPointList/checkpointlist.style.js +5 -0
  48. package/dist/esm/coreX/CheckPointList/index.js +83 -0
  49. package/dist/esm/coreX/DateRangePicker/common.js +7 -5
  50. package/dist/esm/coreX/DateRangePicker/index.js +10 -5
  51. package/dist/esm/coreX/InfoRowList/InfoRow.js +25 -0
  52. package/dist/esm/coreX/InfoRowList/InfoRowList.js +54 -0
  53. package/dist/esm/coreX/Show/index.js +14 -0
  54. package/dist/esm/index.js +9 -5
  55. package/dist/esm/stats1.html +1 -1
  56. package/dist/esm/store/modal.js +3 -0
  57. package/dist/esm/styles/token/color.js +24 -0
  58. package/dist/esm/utils/constants.js +7 -1
  59. package/dist/src/UIKitProvider/index.d.ts +4 -4
  60. package/dist/src/antd.d.ts +2 -2
  61. package/dist/src/core/Alert/alert.type.d.ts +5 -4
  62. package/dist/src/core/BitPerSecond/index.d.ts +2 -2
  63. package/dist/src/core/KitStoreProvider/index.d.ts +1 -0
  64. package/dist/src/core/Legend/__test__/h5_css.test.d.ts +1 -0
  65. package/dist/src/core/Legend/index.d.ts +9 -0
  66. package/dist/src/core/Legend/legend.type.d.ts +25 -0
  67. package/dist/src/core/Modal/modal.type.d.ts +25 -2
  68. package/dist/src/core/SearchInput/searchInput.type.d.ts +33 -0
  69. package/dist/src/core/TableForm/types.d.ts +1 -0
  70. package/dist/src/core/Timeline/Timeline.style.d.ts +5 -0
  71. package/dist/src/core/Timeline/Timeline.type.d.ts +209 -0
  72. package/dist/src/core/Timeline/Timeline.widget.d.ts +5 -0
  73. package/dist/src/core/Timeline/index.d.ts +10 -0
  74. package/dist/src/core/index.d.ts +1 -0
  75. package/dist/src/core/message/index.d.ts +1 -0
  76. package/dist/src/coreX/CheckPointList/checkpointlist.style.d.ts +3 -0
  77. package/dist/src/coreX/CheckPointList/checkpointlist.type.d.ts +93 -0
  78. package/dist/src/coreX/CheckPointList/index.d.ts +8 -0
  79. package/dist/src/coreX/DateRangePicker/dateRangePicker.type.d.ts +6 -1
  80. package/dist/src/coreX/InfoRowList/InfoRow.d.ts +7 -0
  81. package/dist/src/coreX/InfoRowList/InfoRowList.d.ts +3 -0
  82. package/dist/src/coreX/InfoRowList/InfoRowList.type.d.ts +63 -0
  83. package/dist/src/coreX/InfoRowList/index.d.ts +1 -0
  84. package/dist/src/coreX/Show/index.d.ts +3 -0
  85. package/dist/src/coreX/Show/show.type.d.ts +13 -0
  86. package/dist/src/coreX/index.d.ts +5 -2
  87. package/dist/src/store/modal.d.ts +8 -2
  88. package/dist/src/styles/token/color.d.ts +24 -0
  89. package/dist/src/utils/constants.d.ts +2 -0
  90. package/dist/stories/docs/core/Button.stories.d.ts +11 -0
  91. package/dist/stories/docs/core/KitStoreProvider.stories.d.ts +1 -1
  92. package/dist/stories/docs/core/Legend.stories.d.ts +19 -0
  93. package/dist/stories/docs/core/Modal.stories.d.ts +4 -0
  94. package/dist/stories/docs/core/SearchInput.stories.d.ts +20 -20
  95. package/dist/stories/docs/core/Select.stories.d.ts +94 -13
  96. package/dist/stories/docs/core/StatusCapsule.stories.d.ts +8 -0
  97. package/dist/stories/docs/core/Timeline.stories.d.ts +38 -0
  98. package/dist/stories/docs/core/message-group.stories.d.ts +4 -0
  99. package/dist/stories/docs/coreX/CheckPointList.stories.d.ts +67 -0
  100. package/dist/stories/docs/coreX/DateRangePicker.stories.d.ts +1 -0
  101. package/dist/stories/docs/coreX/I18nNameTag.stories.d.ts +8 -0
  102. package/dist/stories/docs/coreX/InfoRowList.stories.d.ts +36 -0
  103. package/dist/stories/docs/coreX/Show.stories.d.ts +31 -0
  104. package/dist/style.css +1592 -1271
  105. package/dist/token.css +20 -26
  106. package/dist/variables.scss +21 -0
  107. package/package.json +7 -7
@@ -28603,6 +28603,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
28603
28603
  line-height: 20px;
28604
28604
  font-size: 20px;
28605
28605
  color: #3e4652;
28606
+ position: unset;
28606
28607
  }
28607
28608
 
28608
28609
  .ant-modal .ant-modal-close-x .anticon-close-circle {
@@ -28648,7 +28649,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
28648
28649
  font-size: 14px;
28649
28650
  font-weight: bold;
28650
28651
  padding: 0 16px;
28651
- border: none;
28652
28652
  }
28653
28653
 
28654
28654
  .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost {
@@ -28660,6 +28660,10 @@ div.ant-typography-edit-content.ant-typography-rtl {
28660
28660
  background: rgba(223, 228, 235, 0.6);
28661
28661
  }
28662
28662
 
28663
+ .ant-modal .ant-modal-footer .footer-content.no-button-border button {
28664
+ border: none;
28665
+ }
28666
+
28663
28667
  .ant-modal .ant-modal-footer .footer-content button + button {
28664
28668
  margin-left: 8px;
28665
28669
  }
@@ -29341,6 +29345,31 @@ td .ant-btn-link {
29341
29345
  background-color: rgba(211, 218, 235, 0.6);
29342
29346
  }
29343
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
+ }
29344
29373
  @media screen and (min-width: 1280px) {
29345
29374
  .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
29346
29375
  .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
@@ -29377,6 +29406,92 @@ td .ant-btn-link {
29377
29406
  width: calc(8.3% - 16px);
29378
29407
  }
29379
29408
  }
29409
+ .ant-alert[class],
29410
+ .ant-anchor[class],
29411
+ .ant-slider[class],
29412
+ .ant-avatar[class],
29413
+ .ant-table[class],
29414
+ .ant-switch[class],
29415
+ .ant-spin[class],
29416
+ .ant-statistic[class],
29417
+ .ant-steps[class],
29418
+ .ant-select-auto-complete[class],
29419
+ .ant-back-top[class],
29420
+ .ant-badge[class],
29421
+ .ant-breadcrumb[class],
29422
+ .ant-picker-calendar[class],
29423
+ .ant-picker-dropdown[class],
29424
+ .ant-picker[class],
29425
+ .ant-card[class],
29426
+ .ant-carousel[class],
29427
+ .ant-cascader-picker[class],
29428
+ .ant-cascader[class],
29429
+ .ant-breadcrumb[class],
29430
+ .ant-btn[class],
29431
+ .ant-checkbox[class],
29432
+ .ant-tree-checkbox[class],
29433
+ .ant-tree-checkbox-wrapper[class],
29434
+ .ant-tree-checkbox-group[class],
29435
+ .ant-select-tree-checkbox-wrapper[class],
29436
+ .ant-select-tree-checkbox-group[class],
29437
+ .ant-select-tree-checkbox[class],
29438
+ .ant-checkbox-wrapper[class],
29439
+ .ant-checkbox-group[class],
29440
+ .ant-tree[class],
29441
+ .ant-select-tree[class],
29442
+ .ant-typography[class],
29443
+ .ant-upload[class],
29444
+ .ant-upload-list[class],
29445
+ .ant-back-top[class],
29446
+ .ant-badge[class],
29447
+ .ant-avatar[class],
29448
+ .ant-select-auto-complete[class],
29449
+ .ant-anchor[class],
29450
+ .ant-transfer[class],
29451
+ .ant-transfer-list[class],
29452
+ .ant-transfer-operation[class],
29453
+ .ant-tooltip[class],
29454
+ .ant-timeline[class],
29455
+ .ant-select[class],
29456
+ .ant-radio[class],
29457
+ .ant-rate[class],
29458
+ .ant-select-dropdown[class],
29459
+ .ant-radio-wrapper[class],
29460
+ .ant-radio-group[class],
29461
+ .ant-radio-button-wrapper[class],
29462
+ .ant-progress[class],
29463
+ .ant-popover[class],
29464
+ .ant-pagination[class],
29465
+ .ant-modal[class],
29466
+ .ant-message[class],
29467
+ .ant-menu[class],
29468
+ .ant-input-number[class],
29469
+ .ant-input-group[class],
29470
+ .ant-input[class],
29471
+ .ant-form[class],
29472
+ .ant-form-item[class],
29473
+ .ant-dropdown[class],
29474
+ .ant-drawer[class],
29475
+ .ant-divider[class],
29476
+ .ant-descriptions[class],
29477
+ .ant-collapse[class],
29478
+ .ant-calendar[class],
29479
+ .ant-alert[class],
29480
+ .ant-list[class],
29481
+ .ant-mentions[class],
29482
+ .ant-mentions-measure[class],
29483
+ .ant-mentions-dropdown[class],
29484
+ .ant-mentions > textarea[class],
29485
+ .ant-notification[class],
29486
+ .ant-page-header[class],
29487
+ .ant-table-filter-dropdown[class],
29488
+ .ant-tabs-dropdown[class],
29489
+ .ant-tabs[class],
29490
+ .ant-tag[class],
29491
+ .ant-timeline[class] {
29492
+ font-variant-ligatures: no-contextual;
29493
+ }
29494
+
29380
29495
  /* http://meyerweb.com/eric/tools/css/reset/
29381
29496
  Modified based on Eric Meyer’s
29382
29497
  */
@@ -29589,89 +29704,87 @@ html body {
29589
29704
  margin-left: 1px;
29590
29705
  }
29591
29706
 
29592
- .E_c18bcrac {
29593
- display: inline-block;
29594
- width: 100%;
29595
- }
29596
-
29597
- .E_c18bcrac .recharts-wrapper {
29598
- margin-left: 4px;
29599
- }
29600
-
29601
- .E_cro7kg2 {
29602
- padding: 4px;
29707
+ .E_s1ebs0ra {
29708
+ display: flex;
29709
+ align-items: center;
29710
+ justify-content: space-between;
29711
+ background: #edf0f7;
29712
+ padding: 8px 12px;
29713
+ position: sticky;
29714
+ top: 0;
29715
+ z-index: 1;
29716
+ margin-bottom: -52px;
29603
29717
  }
29604
29718
 
29605
- .E_c14wcxf0 {
29719
+ .E_s1ebs0ra .select-total {
29606
29720
  display: flex;
29607
- justify-content: space-between;
29608
29721
  align-items: center;
29609
- font-size: 13px;
29610
- line-height: 24px;
29611
- color: #cccccc;
29612
- white-space: nowrap;
29722
+ font-weight: 700;
29723
+ flex-shrink: 0;
29613
29724
  }
29614
29725
 
29615
- .E_c14wcxf0 label {
29616
- margin-right: 32px;
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;
29617
29733
  }
29618
29734
 
29619
- .E_coy29mj.E_c14wcxf0 {
29620
- font-weight: bold;
29621
- color: white;
29735
+ .E_s1ebs0ra .select-total .icon-wrapper:hover {
29736
+ background: rgba(225, 230, 241, 0.6);
29622
29737
  }
29623
29738
 
29624
- .E_s11212zy {
29625
- width: 8px;
29626
- height: 8px;
29627
- border-radius: 2px;
29628
- display: inline-block;
29629
- background: var(--s11212zy-0);
29630
- border: 1px solid #fff;
29631
- box-sizing: content-box;
29632
- margin-right: 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;
29633
29748
  }
29634
29749
 
29635
- .E_p1lyky6c > :first-child {
29636
- font-weight: bold;
29637
- color: white;
29638
- margin-right: 4px;
29750
+ .E_s1ebs0ra .action-group .sub-menu-delete {
29751
+ transform: translateY(-4px);
29639
29752
  }
29640
29753
 
29641
- .E_gmyahx3 {
29642
- cursor: pointer;
29754
+ .E_s1ebs0ra .action-group button {
29755
+ border: none;
29643
29756
  }
29644
29757
 
29645
- .E_gmyahx3 .link-text {
29646
- color: rgba(0, 21, 64, 0.3);
29758
+ .E_s1ebs0ra .action-group > *:not(:last-child) {
29759
+ margin-right: 8px;
29647
29760
  }
29648
29761
 
29649
- .E_gmyahx3:hover .link-text {
29650
- color: #0080ff;
29762
+ .E_s1ebs0ra .action-group > button:last-child {
29763
+ margin-right: 4px;
29651
29764
  }
29652
29765
 
29653
- span.E_tqjc4ui {
29654
- margin: 0 2px;
29766
+ .E_s1ebs0ra .action-group .more-btn {
29767
+ cursor: pointer;
29768
+ width: 32px;
29769
+ height: 32px;
29770
+ justify-content: center;
29771
+ border-radius: 50%;
29655
29772
  }
29656
29773
 
29657
- .E_n12mqh7z {
29658
- display: flex;
29659
- align-items: center;
29660
- font-size: 12px;
29661
- line-height: 18px;
29774
+ .E_s1ebs0ra .action-group .more-btn:hover {
29775
+ background: #fff;
29662
29776
  }
29663
29777
 
29664
- .E_n12mqh7z:not(:last-child) {
29665
- margin-bottom: 4px;
29778
+ .E_gmyahx3 {
29779
+ cursor: pointer;
29666
29780
  }
29667
29781
 
29668
- .E_tf5bynu {
29669
- margin: 0 3px;
29782
+ .E_gmyahx3 .link-text {
29783
+ color: rgba(0, 21, 64, 0.3);
29670
29784
  }
29671
29785
 
29672
- .E_tcckoz1 {
29673
- max-height: 400px;
29674
- overflow: auto;
29786
+ .E_gmyahx3:hover .link-text {
29787
+ color: #0080ff;
29675
29788
  }
29676
29789
 
29677
29790
  .E_clm1wy1 {
@@ -29783,294 +29896,107 @@ span.E_tqjc4ui {
29783
29896
  border-radius: 2px;
29784
29897
  }
29785
29898
 
29786
- .E_ou7iq30 {
29787
- overflow: hidden;
29788
- text-overflow: ellipsis;
29899
+ .E_c18bcrac {
29900
+ display: inline-block;
29901
+ width: 100%;
29789
29902
  }
29790
29903
 
29791
- .E_s1tui002 {
29792
- white-space: nowrap;
29904
+ .E_c18bcrac .recharts-wrapper {
29905
+ margin-left: 4px;
29793
29906
  }
29794
29907
 
29795
- .E_mxrc2zg {
29796
- display: -webkit-box;
29797
- -webkit-line-clamp: var(--mxrc2zg-0);
29798
- -webkit-box-orient: vertical;
29799
- word-break: break-all;
29908
+ .E_cro7kg2 {
29909
+ padding: 4px;
29800
29910
  }
29801
29911
 
29802
- .E_t1vv6d68 .ant-tooltip-arrow {
29803
- display: none;
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;
29804
29920
  }
29805
29921
 
29806
- .E_t1vv6d68 .ant-tooltip-inner {
29807
- background: rgba(23, 38, 64, 0.8);
29808
- border-radius: 4px;
29922
+ .E_c14wcxf0 label {
29923
+ margin-right: 32px;
29809
29924
  }
29810
29925
 
29811
- .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
29812
- visibility: hidden;
29926
+ .E_coy29mj.E_c14wcxf0 {
29927
+ font-weight: bold;
29928
+ color: white;
29813
29929
  }
29814
29930
 
29815
- .E_s1at6qmn.ant-layout-sider {
29816
- background: #edf0f7;
29817
- padding: 32px 8px;
29818
- overflow: auto;
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;
29819
29940
  }
29820
29941
 
29821
- .E_s1at6qmn .ant-layout-sider-children {
29822
- display: flex;
29823
- flex-direction: column;
29824
- justify-content: space-between;
29942
+ .E_p1lyky6c > :first-child {
29943
+ font-weight: bold;
29944
+ color: white;
29945
+ margin-right: 4px;
29825
29946
  }
29826
29947
 
29827
- .E_s1at6qmn footer {
29828
- display: flex;
29948
+ .E_c1up1pdz {
29949
+ width: 648px;
29829
29950
  }
29830
29951
 
29831
- .E_s1at6qmn .ant-menu {
29832
- background: #edf0f7;
29952
+ .E_c1up1pdz.active {
29953
+ border-color: #0080ff;
29833
29954
  }
29834
29955
 
29835
- .E_s1at6qmn .ant-menu a {
29836
- color: #00122e;
29837
- width: 180px;
29838
- overflow: hidden;
29839
- text-overflow: ellipsis;
29956
+ .E_c1up1pdz.active > header {
29957
+ background: rgba(0, 128, 255, 0.1);
29840
29958
  }
29841
29959
 
29842
- .E_s1at6qmn .ant-menu-vertical {
29843
- margin-bottom: 24px;
29960
+ .E_c1up1pdz .expand {
29961
+ padding: 12px;
29844
29962
  }
29845
29963
 
29846
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
29847
- margin: 0;
29964
+ .E_c1up1pdz .field-item {
29965
+ display: flex;
29966
+ padding: 10px 0;
29967
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
29848
29968
  }
29849
29969
 
29850
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
29851
- font-size: 12px;
29852
- padding: 0 8px 4px;
29853
- line-height: 18px;
29970
+ .E_c1up1pdz .field-item:last-child {
29971
+ border-bottom: none;
29972
+ padding-bottom: 0;
29854
29973
  }
29855
29974
 
29856
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
29857
- padding: 0;
29975
+ .E_c1up1pdz .field-item label {
29976
+ line-height: 32px;
29977
+ width: 100px;
29978
+ color: rgba(62, 70, 82, 0.6);
29858
29979
  }
29859
29980
 
29860
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
29861
- padding-bottom: 24px;
29981
+ .E_c1up1pdz .help {
29982
+ color: rgba(62, 70, 82, 0.6);
29983
+ margin-top: 5px;
29862
29984
  }
29863
29985
 
29864
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
29865
- margin-bottom: 24px;
29866
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
29986
+ .E_c1up1pdz .ant-input-affix-wrapper,
29987
+ .E_c1up1pdz .ant-picker {
29988
+ width: 128px;
29867
29989
  }
29868
29990
 
29869
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
29870
- transition: none;
29991
+ .E_c156wh19 {
29871
29992
  display: flex;
29872
29993
  align-items: center;
29873
- height: 32px;
29874
- line-height: 22px;
29875
- padding: 0 8px;
29994
+ justify-content: space-between;
29995
+ word-break: keep-all;
29876
29996
  }
29877
29997
 
29878
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
29879
- margin-right: 12px;
29880
- }
29881
-
29882
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
29883
- margin: 0;
29884
- margin-bottom: 2px;
29885
- }
29886
-
29887
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
29888
- background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
29889
- box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
29890
- border-radius: 6px;
29891
- color: #fff;
29892
- }
29893
-
29894
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
29895
- color: #fff;
29896
- }
29897
-
29898
- .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 {
29899
- background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
29900
- box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
29901
- border-radius: 6px;
29902
- }
29903
-
29904
- .E_s1wu0lms .ant-menu-item-group-title {
29905
- white-space: nowrap;
29906
- transition: all 0s;
29907
- }
29908
-
29909
- .E_s1wu0lms.shrink {
29910
- transition: all 0s;
29911
- overflow: hidden;
29912
- }
29913
-
29914
- .E_s1wu0lms.shrink .ant-menu-item-group-title {
29915
- visibility: hidden;
29916
- }
29917
-
29918
- .E_s1wu0lms.shrink .ant-menu-item {
29919
- width: 36px;
29920
- padding: 0 6px;
29921
- }
29922
-
29923
- .E_n1ugzfva {
29924
- display: flex;
29925
- place-items: center;
29926
- width: 100% !important;
29927
- }
29928
-
29929
- .E_n1ugzfva[disabled] {
29930
- color: rgba(0, 0, 0, 0.25) !important;
29931
- opacity: 1 !important;
29932
- }
29933
-
29934
- .E_n1ugzfva.ant-btn {
29935
- width: 100%;
29936
- color: #00122e;
29937
- }
29938
-
29939
- .E_n1ugzfva .icon-wrapper {
29940
- margin-right: 12px;
29941
- }
29942
-
29943
- .E_n1ugzfva .link-title {
29944
- flex: 1;
29945
- overflow: hidden;
29946
- white-space: nowrap;
29947
- text-overflow: ellipsis;
29948
- text-align: left;
29949
- }
29950
-
29951
- .E_s1ebs0ra {
29952
- display: flex;
29953
- align-items: center;
29954
- justify-content: space-between;
29955
- background: #edf0f7;
29956
- padding: 8px 12px;
29957
- position: sticky;
29958
- top: 0;
29959
- z-index: 1;
29960
- margin-bottom: -52px;
29961
- }
29962
-
29963
- .E_s1ebs0ra .select-total {
29964
- display: flex;
29965
- align-items: center;
29966
- font-weight: 700;
29967
- flex-shrink: 0;
29968
- }
29969
-
29970
- .E_s1ebs0ra .select-total .icon-wrapper {
29971
- cursor: pointer;
29972
- margin-left: 8px;
29973
- width: 32px;
29974
- height: 32px;
29975
- border-radius: 50%;
29976
- justify-content: center;
29977
- }
29978
-
29979
- .E_s1ebs0ra .select-total .icon-wrapper:hover {
29980
- background: rgba(225, 230, 241, 0.6);
29981
- }
29982
-
29983
- .E_s1ebs0ra .action-group {
29984
- flex: 1;
29985
- margin-left: 88px;
29986
- white-space: nowrap;
29987
- text-align: right;
29988
- position: relative;
29989
- padding: 4px 0;
29990
- margin-top: -4px;
29991
- overflow: hidden;
29992
- }
29993
-
29994
- .E_s1ebs0ra .action-group .sub-menu-delete {
29995
- transform: translateY(-4px);
29996
- }
29997
-
29998
- .E_s1ebs0ra .action-group button {
29999
- border: none;
30000
- }
30001
-
30002
- .E_s1ebs0ra .action-group > *:not(:last-child) {
30003
- margin-right: 8px;
30004
- }
30005
-
30006
- .E_s1ebs0ra .action-group > button:last-child {
30007
- margin-right: 4px;
30008
- }
30009
-
30010
- .E_s1ebs0ra .action-group .more-btn {
30011
- cursor: pointer;
30012
- width: 32px;
30013
- height: 32px;
30014
- justify-content: center;
30015
- border-radius: 50%;
30016
- }
30017
-
30018
- .E_s1ebs0ra .action-group .more-btn:hover {
30019
- background: #fff;
30020
- }
30021
-
30022
- .E_c1up1pdz {
30023
- width: 648px;
30024
- }
30025
-
30026
- .E_c1up1pdz.active {
30027
- border-color: #0080ff;
30028
- }
30029
-
30030
- .E_c1up1pdz.active > header {
30031
- background: rgba(0, 128, 255, 0.1);
30032
- }
30033
-
30034
- .E_c1up1pdz .expand {
30035
- padding: 12px;
30036
- }
30037
-
30038
- .E_c1up1pdz .field-item {
30039
- display: flex;
30040
- padding: 10px 0;
30041
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
30042
- }
30043
-
30044
- .E_c1up1pdz .field-item:last-child {
30045
- border-bottom: none;
30046
- padding-bottom: 0;
30047
- }
30048
-
30049
- .E_c1up1pdz .field-item label {
30050
- line-height: 32px;
30051
- width: 100px;
30052
- color: rgba(62, 70, 82, 0.6);
30053
- }
30054
-
30055
- .E_c1up1pdz .help {
30056
- color: rgba(62, 70, 82, 0.6);
30057
- margin-top: 5px;
30058
- }
30059
-
30060
- .E_c1up1pdz .ant-input-affix-wrapper,
30061
- .E_c1up1pdz .ant-picker {
30062
- width: 128px;
30063
- }
30064
-
30065
- .E_c156wh19 {
30066
- display: flex;
30067
- align-items: center;
30068
- justify-content: space-between;
30069
- word-break: keep-all;
30070
- }
30071
-
30072
- .E_c156wh19 .title {
30073
- margin: 0 16px 0 8px;
29998
+ .E_c156wh19 .title {
29999
+ margin: 0 16px 0 8px;
30074
30000
  }
30075
30001
 
30076
30002
  .E_c156wh19 .retain {
@@ -30185,119 +30111,57 @@ span.E_tqjc4ui {
30185
30111
  color: #fff;
30186
30112
  }
30187
30113
 
30188
- .E_t1sqg15u {
30189
- background: white;
30114
+ .E_ou7iq30 {
30115
+ overflow: hidden;
30116
+ text-overflow: ellipsis;
30190
30117
  }
30191
30118
 
30192
- .E_t1sqg15u.inline .table-row {
30193
- flex-direction: column;
30119
+ .E_s1tui002 {
30120
+ white-space: nowrap;
30194
30121
  }
30195
30122
 
30196
- .E_t1sqg15u.inline .table-row > label {
30197
- padding: 0 16px 7px 0;
30123
+ .E_mxrc2zg {
30124
+ display: -webkit-box;
30125
+ -webkit-line-clamp: var(--mxrc2zg-0);
30126
+ -webkit-box-orient: vertical;
30127
+ word-break: break-all;
30198
30128
  }
30199
30129
 
30200
- .E_t1sqg15u.has-border .table-header {
30201
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
30130
+ .E_t1vv6d68 .ant-tooltip-arrow {
30131
+ display: none;
30202
30132
  }
30203
30133
 
30204
- .E_t1sqg15u.has-border .hiddenBorder {
30205
- border-top: none !important;
30134
+ .E_t1vv6d68 .ant-tooltip-inner {
30135
+ background: rgba(23, 38, 64, 0.8);
30136
+ border-radius: 4px;
30206
30137
  }
30207
30138
 
30208
- .E_t1sqg15u.has-border .table-row + .table-row {
30209
- border-top: 1px solid rgba(225, 230, 241, 0.6);
30139
+ .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
30140
+ visibility: hidden;
30210
30141
  }
30211
30142
 
30212
- .E_t1sqg15u.has-border .table-row:last-of-type {
30213
- padding-bottom: 0;
30143
+ span.E_tqjc4ui {
30144
+ margin: 0 2px;
30214
30145
  }
30215
30146
 
30216
- .E_t1sqg15u.align-right .content {
30217
- text-align: right;
30147
+ .E_n12mqh7z {
30148
+ display: flex;
30149
+ align-items: center;
30150
+ font-size: 12px;
30151
+ line-height: 18px;
30218
30152
  }
30219
30153
 
30220
- .E_t1sqg15u .uuid-row {
30221
- display: flex;
30222
- justify-content: space-between;
30154
+ .E_n12mqh7z:not(:last-child) {
30155
+ margin-bottom: 4px;
30223
30156
  }
30224
30157
 
30225
- .E_t1sqg15u .uuid-row .id-text {
30226
- white-space: nowrap;
30227
- overflow: hidden;
30228
- text-overflow: ellipsis;
30158
+ .E_tf5bynu {
30159
+ margin: 0 3px;
30229
30160
  }
30230
30161
 
30231
- .E_t4zczcp {
30232
- display: flex;
30233
- justify-content: space-between;
30234
- align-items: center;
30235
- padding: 8px;
30236
- min-height: 32px;
30237
- }
30238
-
30239
- .E_t4zczcp .table-title {
30240
- color: rgba(44, 56, 82, 0.6);
30241
- font-weight: 600;
30242
- font-size: 12px;
30243
- line-height: 8px;
30244
- }
30245
-
30246
- .E_t4zczcp .edit-icon {
30247
- font-size: 16px;
30248
- color: rgba(10, 37, 85, 0.6);
30249
- cursor: pointer;
30250
- }
30251
-
30252
- .E_t1s7goww {
30253
- font-size: 12px;
30254
- line-height: 18px;
30255
- }
30256
-
30257
- .E_t93e4cf {
30258
- display: flex;
30259
- padding: 8px 0;
30260
- color: #2d3a56;
30261
- }
30262
-
30263
- .E_t93e4cf .hidden {
30264
- display: none;
30265
- }
30266
-
30267
- .E_t93e4cf .ant-btn-link {
30268
- height: auto;
30269
- }
30270
-
30271
- .E_t93e4cf .content {
30272
- overflow: hidden;
30273
- overflow-x: auto;
30274
- width: 100%;
30275
- white-space: pre-wrap;
30276
- }
30277
-
30278
- .E_t93e4cf .content .ant-btn {
30279
- white-space: pre-wrap;
30280
- text-align: left;
30281
- }
30282
-
30283
- .E_t93e4cf .content .unit-chart {
30284
- justify-content: flex-start;
30285
- }
30286
-
30287
- .E_rhz2uv5 {
30288
- width: var(--rhz2uv5-0);
30289
- flex-shrink: 0;
30290
- color: rgba(44, 56, 82, 0.6);
30291
- padding-right: 12px;
30292
- }
30293
-
30294
- .E_s1iv0tp1 .enabled-switch {
30295
- display: flex;
30296
- align-items: center;
30297
- }
30298
-
30299
- .E_s1iv0tp1 .enabled-text {
30300
- margin-right: 8px;
30162
+ .E_tcckoz1 {
30163
+ max-height: 400px;
30164
+ overflow: auto;
30301
30165
  }
30302
30166
 
30303
30167
  .E_c18gxmrl {
@@ -30344,328 +30208,278 @@ span.E_tqjc4ui {
30344
30208
  color: #005ed1;
30345
30209
  }
30346
30210
 
30347
- .E_m74vjol {
30211
+ .E_s1at6qmn.ant-layout-sider {
30212
+ background: #edf0f7;
30213
+ padding: 32px 8px;
30214
+ overflow: auto;
30215
+ }
30216
+
30217
+ .E_s1at6qmn .ant-layout-sider-children {
30348
30218
  display: flex;
30219
+ flex-direction: column;
30349
30220
  justify-content: space-between;
30350
- width: 100%;
30351
30221
  }
30352
30222
 
30353
- .E_m74vjol .action {
30354
- margin-left: 16px;
30223
+ .E_s1at6qmn footer {
30224
+ display: flex;
30355
30225
  }
30356
30226
 
30357
- .E_a1o35uvh .ant-alert-message {
30358
- width: 100%;
30227
+ .E_s1at6qmn .ant-menu {
30228
+ background: #edf0f7;
30359
30229
  }
30360
30230
 
30361
- .E_wg1tsps {
30362
- display: flex;
30363
- align-items: center;
30364
- justify-content: flex-end;
30231
+ .E_s1at6qmn .ant-menu a {
30232
+ color: #00122e;
30233
+ width: 180px;
30234
+ overflow: hidden;
30235
+ text-overflow: ellipsis;
30365
30236
  }
30366
30237
 
30367
- .E_b1ctd5xy {
30368
- display: flex;
30369
- align-items: center;
30370
- width: calc(100% - 40px);
30238
+ .E_s1at6qmn .ant-menu-vertical {
30239
+ margin-bottom: 24px;
30371
30240
  }
30372
30241
 
30373
- .E_b1ctd5xy .chart {
30374
- display: inline-block;
30375
- width: 100%;
30242
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
30243
+ margin: 0;
30376
30244
  }
30377
30245
 
30378
- .E_u1p8acpn {
30379
- min-width: 40px;
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;
30380
30250
  }
30381
30251
 
30382
- .E_u1p8acpn .unit {
30383
- color: #00122e !important;
30252
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
30253
+ padding: 0;
30384
30254
  }
30385
30255
 
30386
- .E_t160l1cm {
30387
- display: flex;
30388
- flex-direction: column;
30389
- flex: 1;
30390
- /* FIXME:(yanzhen) do this better */
30256
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
30257
+ padding-bottom: 24px;
30391
30258
  }
30392
30259
 
30393
- .E_t160l1cm .tab-bar {
30394
- flex-shrink: 0;
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;
30395
30267
  display: flex;
30396
- border-bottom: 1px solid rgba(172, 186, 211, 0.6);
30268
+ align-items: center;
30269
+ height: 32px;
30270
+ line-height: 22px;
30271
+ padding: 0 8px;
30397
30272
  }
30398
30273
 
30399
- .E_t160l1cm .tab-content {
30400
- height: 100%;
30274
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
30275
+ margin-right: 12px;
30401
30276
  }
30402
30277
 
30403
- .E_t160l1cm .tab-menu-item {
30404
- margin-right: 2px;
30405
- padding: 1px 12px;
30406
- line-height: 24px;
30407
- height: 24px;
30408
- color: rgba(44, 56, 82, 0.6);
30409
- border-radius: 4px 4px 0 0;
30410
- cursor: pointer;
30411
- transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
30278
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
30279
+ margin: 0;
30280
+ margin-bottom: 2px;
30412
30281
  }
30413
30282
 
30414
- .E_t160l1cm .tab-menu-item:first-child {
30415
- padding-left: 0;
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;
30416
30288
  }
30417
30289
 
30418
- .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30419
- padding-left: 12px;
30290
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
30291
+ color: #fff;
30420
30292
  }
30421
30293
 
30422
- .E_t160l1cm .tab-menu-item:hover {
30423
- color: #0080ff;
30424
- background: rgba(211, 218, 235, 0.6);
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;
30425
30298
  }
30426
30299
 
30427
- .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30428
- fill: #0080ff;
30300
+ .E_s1wu0lms .ant-menu-item-group-title {
30301
+ white-space: nowrap;
30302
+ transition: all 0s;
30429
30303
  }
30430
30304
 
30431
- .E_t160l1cm .tab-menu-item:active {
30432
- background: rgba(192, 203, 224, 0.6);
30305
+ .E_s1wu0lms.shrink {
30306
+ transition: all 0s;
30307
+ overflow: hidden;
30433
30308
  }
30434
30309
 
30435
- .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30436
- color: #0080ff;
30437
- background: rgba(211, 218, 235, 0.6);
30310
+ .E_s1wu0lms.shrink .ant-menu-item-group-title {
30311
+ visibility: hidden;
30438
30312
  }
30439
30313
 
30440
- .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30441
- background: rgba(192, 203, 224, 0.6);
30314
+ .E_s1wu0lms.shrink .ant-menu-item {
30315
+ width: 36px;
30316
+ padding: 0 6px;
30442
30317
  }
30443
30318
 
30444
- .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30445
- background: rgba(0, 128, 255, 0.16);
30319
+ .E_n1ugzfva {
30320
+ display: flex;
30321
+ place-items: center;
30322
+ width: 100% !important;
30446
30323
  }
30447
30324
 
30448
- .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30449
- fill: #0080ff;
30325
+ .E_n1ugzfva[disabled] {
30326
+ color: rgba(0, 0, 0, 0.25) !important;
30327
+ opacity: 1 !important;
30450
30328
  }
30451
30329
 
30452
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30453
- color: #0080ff;
30454
- background: rgba(0, 128, 255, 0.1);
30330
+ .E_n1ugzfva.ant-btn {
30331
+ width: 100%;
30332
+ color: #00122e;
30455
30333
  }
30456
30334
 
30457
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30458
- background: rgba(0, 128, 255, 0.16);
30335
+ .E_n1ugzfva .icon-wrapper {
30336
+ margin-right: 12px;
30459
30337
  }
30460
30338
 
30461
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30462
- fill: #1d326c;
30339
+ .E_n1ugzfva .link-title {
30340
+ flex: 1;
30341
+ overflow: hidden;
30342
+ white-space: nowrap;
30343
+ text-overflow: ellipsis;
30344
+ text-align: left;
30463
30345
  }
30464
30346
 
30465
- .E_t160l1cm .tab-menu-item .expand-arrow {
30466
- margin-left: 8px;
30467
- height: 22px;
30347
+ .E_t1sqg15u {
30348
+ background: white;
30468
30349
  }
30469
30350
 
30470
- .E_t160l1cm .tab-menu-item .expand-arrow path {
30471
- fill: rgba(44, 56, 82, 0.6);
30351
+ .E_t1sqg15u.inline .table-row {
30352
+ flex-direction: column;
30472
30353
  }
30473
30354
 
30474
- .E_t160l1cm .tab-menu-item-group {
30475
- padding: 0;
30476
- display: flex;
30477
- align-items: center;
30478
- overflow: hidden;
30355
+ .E_t1sqg15u.inline .table-row > label {
30356
+ padding: 0 16px 7px 0;
30479
30357
  }
30480
30358
 
30481
- .E_t160l1cm .tab-menu-item-group .main-title {
30482
- opacity: 0;
30483
- max-width: 0;
30484
- transition: max-width 320ms ease, opacity 240ms ease;
30359
+ .E_t1sqg15u.has-border .table-header {
30360
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
30485
30361
  }
30486
30362
 
30487
- .E_t160l1cm .tab-menu-item-group .sub-title {
30488
- padding: 1px 12px;
30489
- position: relative;
30490
- display: flex;
30363
+ .E_t1sqg15u.has-border .hiddenBorder {
30364
+ border-top: none !important;
30491
30365
  }
30492
30366
 
30493
- .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
30494
- opacity: 0;
30495
- position: absolute;
30496
- top: 50%;
30497
- left: 0;
30498
- transform: translate(-50%, -50%);
30499
- transition: opacity 100ms linear;
30500
- fill: rgba(0, 128, 255, 0.2);
30367
+ .E_t1sqg15u.has-border .table-row + .table-row {
30368
+ border-top: 1px solid rgba(225, 230, 241, 0.6);
30501
30369
  }
30502
30370
 
30503
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
30504
- color: #0080ff;
30371
+ .E_t1sqg15u.has-border .table-row:last-of-type {
30372
+ padding-bottom: 0;
30505
30373
  }
30506
30374
 
30507
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
30508
- padding: 1px 12px;
30509
- display: inline-block;
30510
- opacity: 1;
30511
- max-width: 160px;
30512
- }
30513
-
30514
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30515
- padding: 1px 12px;
30516
- color: #005ed1;
30517
- }
30518
-
30519
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30520
- opacity: 1;
30521
- }
30522
-
30523
- .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 {
30524
- background: rgba(0, 128, 255, 0.16);
30525
- }
30526
-
30527
- .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 {
30528
- opacity: 0;
30529
- }
30530
-
30531
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30532
- padding: 4px 16px;
30533
- height: 32px;
30534
- border-radius: 6px 6px 0 0;
30535
- }
30536
-
30537
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30538
- padding-left: 0;
30539
- }
30540
-
30541
- .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 {
30542
- padding-left: 16px;
30543
- }
30544
-
30545
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
30546
- margin-left: 11px;
30547
- height: 24px;
30548
- }
30549
-
30550
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
30551
- padding: 0;
30552
- }
30553
-
30554
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
30555
- padding: 4px 16px;
30556
- }
30557
-
30558
- .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 {
30559
- padding: 4px 16px;
30560
- }
30561
-
30562
- .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
30563
- background: #fff;
30375
+ .E_t1sqg15u.align-right .content {
30376
+ text-align: right;
30564
30377
  }
30565
30378
 
30566
- .E_t160l1cm .tab-menu-item-light:active {
30567
- color: #005ed1;
30379
+ .E_t1sqg15u .uuid-row {
30380
+ display: flex;
30381
+ justify-content: space-between;
30568
30382
  }
30569
30383
 
30570
- .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
30571
- background: #fff;
30572
- color: #1d326c;
30384
+ .E_t1sqg15u .uuid-row .id-text {
30385
+ white-space: nowrap;
30386
+ overflow: hidden;
30387
+ text-overflow: ellipsis;
30573
30388
  }
30574
30389
 
30575
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
30576
- color: rgba(45, 58, 86, 0.6);
30390
+ .E_t4zczcp {
30391
+ display: flex;
30392
+ justify-content: space-between;
30393
+ align-items: center;
30394
+ padding: 8px;
30395
+ min-height: 32px;
30577
30396
  }
30578
30397
 
30579
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
30580
- color: #1d326c;
30398
+ .E_t4zczcp .table-title {
30399
+ color: rgba(44, 56, 82, 0.6);
30400
+ font-weight: 600;
30401
+ font-size: 12px;
30402
+ line-height: 8px;
30581
30403
  }
30582
30404
 
30583
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30584
- fill: #d8deeb;
30405
+ .E_t4zczcp .edit-icon {
30406
+ font-size: 16px;
30407
+ color: rgba(10, 37, 85, 0.6);
30408
+ cursor: pointer;
30585
30409
  }
30586
30410
 
30587
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
30588
- fill: #1d326c;
30411
+ .E_t1s7goww {
30412
+ font-size: 12px;
30413
+ line-height: 18px;
30589
30414
  }
30590
30415
 
30591
- .E_t160l1cm .tab-content {
30592
- flex: 1;
30416
+ .E_t93e4cf {
30593
30417
  display: flex;
30594
- flex-direction: column;
30595
- }
30596
-
30597
- .E_t160l1cm.is-overview .tab-content {
30598
- overflow: visible;
30418
+ padding: 8px 0;
30419
+ color: #2d3a56;
30599
30420
  }
30600
30421
 
30601
- .E_t14npdqr {
30602
- max-width: 240px;
30603
- animation: none;
30422
+ .E_t93e4cf .hidden {
30423
+ display: none;
30604
30424
  }
30605
30425
 
30606
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
30607
- border: 1px solid #0080ff;
30608
- padding: 0;
30426
+ .E_t93e4cf .ant-btn-link {
30427
+ height: auto;
30609
30428
  }
30610
30429
 
30611
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30612
- margin: 0;
30613
- height: 32px;
30614
- line-height: 32px;
30615
- font-size: 13px;
30616
- padding: 0 10px;
30617
- display: block;
30430
+ .E_t93e4cf .content {
30618
30431
  overflow: hidden;
30619
- text-overflow: ellipsis;
30620
- white-space: nowrap;
30432
+ overflow-x: auto;
30433
+ width: 100%;
30434
+ white-space: pre-wrap;
30621
30435
  }
30622
30436
 
30623
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
30624
- content: " ";
30625
- height: 1px;
30626
- width: calc(100% + 10px);
30627
- background: rgba(172, 186, 211, 0.6);
30628
- display: block;
30437
+ .E_t93e4cf .content .ant-btn {
30438
+ white-space: pre-wrap;
30439
+ text-align: left;
30629
30440
  }
30630
30441
 
30631
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
30632
- color: #0080ff;
30633
- background: transparent;
30442
+ .E_t93e4cf .content .unit-chart {
30443
+ justify-content: flex-start;
30634
30444
  }
30635
30445
 
30636
- .E_b1nip9bk {
30637
- padding: 4px 11px;
30446
+ .E_rhz2uv5 {
30447
+ width: var(--rhz2uv5-0);
30448
+ flex-shrink: 0;
30449
+ color: rgba(44, 56, 82, 0.6);
30450
+ padding-right: 12px;
30638
30451
  }
30639
30452
 
30640
- .E_bqamoqe {
30641
- white-space: nowrap;
30642
- filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
30453
+ .E_m74vjol {
30454
+ display: flex;
30455
+ justify-content: space-between;
30456
+ width: 100%;
30643
30457
  }
30644
30458
 
30645
- .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30646
- --color: #0080ff;
30459
+ .E_m74vjol .action {
30460
+ margin-left: 16px;
30647
30461
  }
30648
30462
 
30649
- .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] {
30650
- --color: #0080ff;
30463
+ .E_a1o35uvh.ant-alert-closable {
30464
+ padding-right: 12px;
30651
30465
  }
30652
30466
 
30653
- .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30654
- margin-left: 1px;
30467
+ .E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
30468
+ height: fit-content;
30469
+ margin-left: 16px;
30655
30470
  }
30656
30471
 
30657
- .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30658
- border-top-right-radius: 0;
30659
- border-bottom-right-radius: 0;
30472
+ .E_a1o35uvh .ant-alert-message {
30473
+ flex: 1;
30660
30474
  }
30661
30475
 
30662
- .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30663
- border-top-left-radius: 0;
30664
- border-bottom-left-radius: 0;
30476
+ .E_s1iv0tp1 .enabled-switch {
30477
+ display: flex;
30478
+ align-items: center;
30665
30479
  }
30666
30480
 
30667
- .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30668
- border-radius: unset;
30481
+ .E_s1iv0tp1 .enabled-text {
30482
+ margin-right: 8px;
30669
30483
  }
30670
30484
 
30671
30485
  .E_b1wx3t3t.ant-btn-icon-only {
@@ -30681,16 +30495,19 @@ span.E_tqjc4ui {
30681
30495
  line-height: 22px;
30682
30496
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
30683
30497
  transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
30498
+ padding: 5px 12px;
30684
30499
  }
30685
30500
 
30686
30501
  .E_b1wx3t3t.ant-btn.ant-btn-lg {
30687
30502
  height: 40px;
30688
30503
  line-height: 24px;
30504
+ padding: 8px 16px;
30689
30505
  }
30690
30506
 
30691
30507
  .E_b1wx3t3t.ant-btn.ant-btn-sm {
30692
30508
  height: 24px;
30693
30509
  line-height: 20px;
30510
+ padding: 2px 8px;
30694
30511
  }
30695
30512
 
30696
30513
  .E_b1wx3t3t.ant-btn.ant-btn-circle, .E_b1wx3t3t.ant-btn.ant-btn-circle-outline {
@@ -30741,6 +30558,7 @@ span.E_tqjc4ui {
30741
30558
  background: var(--background-color-disabled, var(--background-color));
30742
30559
  border-color: var(--border-color-disabled, var(--border-color, transparent));
30743
30560
  opacity: 0.5;
30561
+ --transY: 0;
30744
30562
  }
30745
30563
 
30746
30564
  .E_b1wx3t3t.ant-btn-link[disabled] {
@@ -30960,912 +30778,1107 @@ button.E_n7k2c6r {
30960
30778
  padding: 0;
30961
30779
  }
30962
30780
 
30963
- .E_c1uzzomf {
30964
- margin-bottom: 16px;
30781
+ .E_b1nip9bk {
30782
+ padding: 4px 11px;
30965
30783
  }
30966
30784
 
30967
- .E_c1uzzomf .card-title {
30968
- font-size: 16px;
30969
- color: rgba(44, 56, 82, 0.6);
30970
- font-weight: 700;
30971
- line-height: 32px;
30785
+ .E_bqamoqe {
30786
+ white-space: nowrap;
30787
+ filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
30972
30788
  }
30973
30789
 
30974
- .E_c1uzzomf .card-body {
30975
- padding: 24px;
30976
- border-radius: 8px;
30977
- background: #fff;
30790
+ .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30791
+ --color: #0080ff;
30978
30792
  }
30979
30793
 
30980
- .E_c1uzzomf .empty {
30981
- font-weight: 700;
30982
- font-size: 14px;
30983
- line-height: 22px;
30984
- color: rgba(0, 21, 64, 0.3);
30985
- 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;
30986
30796
  }
30987
30797
 
30988
- .E_itxley7.ant-input-group.ant-input-group-compact {
30989
- display: flex;
30798
+ .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30799
+ margin-left: 1px;
30990
30800
  }
30991
30801
 
30992
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
30993
- padding: 4px 8px 0 8px;
30994
- color: rgba(44, 56, 82, 0.6);
30995
- font-size: 12px;
30802
+ .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30803
+ border-top-right-radius: 0;
30804
+ border-bottom-right-radius: 0;
30996
30805
  }
30997
30806
 
30998
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
30999
- padding-bottom: 6px;
30807
+ .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30808
+ border-top-left-radius: 0;
30809
+ border-bottom-left-radius: 0;
31000
30810
  }
31001
30811
 
31002
- .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
31003
- padding-top: 4px;
31004
- border-top: 1px solid rgba(211, 218, 235, 0.6);
30812
+ .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30813
+ border-radius: unset;
31005
30814
  }
31006
30815
 
31007
- .E_sx1bpnu .ant-input-sm {
31008
- line-height: 18px;
30816
+ .E_wg1tsps {
30817
+ display: flex;
30818
+ align-items: center;
30819
+ justify-content: flex-end;
31009
30820
  }
31010
30821
 
31011
- .E_c1yyuluq {
31012
- border-radius: 8px;
30822
+ .E_b1ctd5xy {
30823
+ display: flex;
30824
+ align-items: center;
30825
+ width: calc(100% - 40px);
31013
30826
  }
31014
30827
 
31015
- .E_c1yyuluq .ant-card-body {
31016
- padding: 20px 24px 24px 24px;
30828
+ .E_b1ctd5xy .chart {
30829
+ display: inline-block;
30830
+ width: 100%;
31017
30831
  }
31018
30832
 
31019
- .E_d1bw7c5z {
31020
- position: relative;
31021
- max-width: 388px;
31022
- min-width: 285px;
30833
+ .E_u1p8acpn {
30834
+ min-width: 40px;
31023
30835
  }
31024
30836
 
31025
- .E_d1bw7c5z .center {
31026
- position: absolute;
31027
- font-size: 12px;
31028
- width: 80px;
31029
- height: 100px;
31030
- top: 0;
31031
- left: 35px;
31032
- display: flex;
31033
- flex-direction: column;
31034
- justify-content: center;
31035
- align-items: center;
31036
- color: #00122e;
30837
+ .E_u1p8acpn .unit {
30838
+ color: #00122e !important;
31037
30839
  }
31038
30840
 
31039
- .E_d1bw7c5z .center .number {
31040
- font-size: 24px;
31041
- font-weight: 700;
30841
+ .E_t160l1cm {
30842
+ display: flex;
30843
+ flex-direction: column;
30844
+ flex: 1;
30845
+ /* FIXME:(yanzhen) do this better */
31042
30846
  }
31043
30847
 
31044
- .E_d1bw7c5z .center .text {
31045
- padding: 0 5px;
31046
- font-size: 12px;
31047
- width: inherit;
31048
- text-align: center;
30848
+ .E_t160l1cm .tab-bar {
30849
+ flex-shrink: 0;
30850
+ display: flex;
30851
+ border-bottom: 1px solid rgba(172, 186, 211, 0.6);
31049
30852
  }
31050
30853
 
31051
- .E_d1bw7c5z .recharts-wrapper {
31052
- display: flex;
30854
+ .E_t160l1cm .tab-content {
30855
+ height: 100%;
31053
30856
  }
31054
30857
 
31055
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
31056
- position: relative !important;
31057
- min-width: calc(100% - var(--d1bw7c5z-0)) !important;
31058
- left: 0 !important;
31059
- bottom: 0 !important;
31060
- display: flex;
31061
- align-items: center;
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;
31062
30867
  }
31063
30868
 
31064
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
31065
- width: 100%;
30869
+ .E_t160l1cm .tab-menu-item:first-child {
30870
+ padding-left: 0;
31066
30871
  }
31067
30872
 
31068
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
31069
- width: 100%;
31070
- margin-right: 0 !important;
31071
- line-height: 18px;
30873
+ .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30874
+ padding-left: 12px;
31072
30875
  }
31073
30876
 
31074
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
31075
- border-radius: 2px;
30877
+ .E_t160l1cm .tab-menu-item:hover {
30878
+ color: #0080ff;
30879
+ background: rgba(211, 218, 235, 0.6);
31076
30880
  }
31077
30881
 
31078
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
31079
- min-width: 75px;
31080
- max-width: 198px;
31081
- width: calc(100% - 20px);
31082
- margin-left: 2px;
31083
- color: #00122e !important;
31084
- display: inline-flex;
31085
- justify-content: space-between;
30882
+ .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30883
+ fill: #0080ff;
31086
30884
  }
31087
30885
 
31088
- .E_d1bw7c5z .tooltip-text {
31089
- maxwidth: calc(100% - 12px);
31090
- cursor: pointer;
31091
- border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
31092
- overflow: hidden;
31093
- text-overflow: ellipsis;
31094
- white-space: nowrap;
30886
+ .E_t160l1cm .tab-menu-item:active {
30887
+ background: rgba(192, 203, 224, 0.6);
31095
30888
  }
31096
30889
 
31097
- .E_d1bw7c5z .value {
31098
- color: rgba(44, 56, 82, 0.75);
30890
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30891
+ color: #0080ff;
30892
+ background: rgba(211, 218, 235, 0.6);
31099
30893
  }
31100
30894
 
31101
- .E_t10pqbtc {
31102
- width: 140px;
30895
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30896
+ background: rgba(192, 203, 224, 0.6);
31103
30897
  }
31104
30898
 
31105
- .E_t10pqbtc .item {
31106
- margin: 6px auto;
31107
- display: flex;
31108
- justify-content: space-between;
30899
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30900
+ background: rgba(0, 128, 255, 0.16);
31109
30901
  }
31110
30902
 
31111
- .E_t10pqbtc .item .name {
31112
- width: 102px;
30903
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30904
+ fill: #0080ff;
31113
30905
  }
31114
30906
 
31115
- .E_phljevk {
31116
- display: flex;
31117
- justify-content: space-between;
31118
- align-items: center;
31119
- padding: 10px 0;
31120
- color: rgba(44, 56, 82, 0.6);
31121
- font-size: 12px;
31122
- line-height: 24px;
30907
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30908
+ color: #0080ff;
30909
+ background: rgba(0, 128, 255, 0.1);
31123
30910
  }
31124
30911
 
31125
- .E_phljevk .pagination-left {
31126
- padding: 2px 8px;
30912
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30913
+ background: rgba(0, 128, 255, 0.16);
31127
30914
  }
31128
30915
 
31129
- .E_phljevk .dropdown-trigger {
31130
- display: flex;
31131
- align-items: center;
31132
- border-radius: 6px;
31133
- cursor: pointer;
31134
- transition: all 0.3s ease;
30916
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30917
+ fill: #1d326c;
31135
30918
  }
31136
30919
 
31137
- .E_phljevk .dropdown-trigger:hover {
31138
- background: rgba(211, 218, 235, 0.6);
31139
- color: #0080ff;
30920
+ .E_t160l1cm .tab-menu-item .expand-arrow {
30921
+ margin-left: 8px;
30922
+ height: 22px;
31140
30923
  }
31141
30924
 
31142
- .E_phljevk .dropdown-trigger .icon-inner {
31143
- margin-left: 4px;
30925
+ .E_t160l1cm .tab-menu-item .expand-arrow path {
30926
+ fill: rgba(44, 56, 82, 0.6);
31144
30927
  }
31145
30928
 
31146
- .E_phljevk .pagination-right {
30929
+ .E_t160l1cm .tab-menu-item-group {
30930
+ padding: 0;
31147
30931
  display: flex;
31148
30932
  align-items: center;
31149
- color: #0080ff;
31150
- font-weight: bold;
30933
+ overflow: hidden;
31151
30934
  }
31152
30935
 
31153
- .E_phljevk .pagination-right .icon-inner {
31154
- margin-left: 4px;
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;
31155
30940
  }
31156
30941
 
31157
- .E_phljevk .pagination-right .prev-btn,
31158
- .E_phljevk .pagination-right .next-btn {
31159
- padding: 0 8px;
30942
+ .E_t160l1cm .tab-menu-item-group .sub-title {
30943
+ padding: 1px 12px;
30944
+ position: relative;
30945
+ display: flex;
31160
30946
  }
31161
30947
 
31162
- .E_phljevk .pagination-right .prev-btn > span,
31163
- .E_phljevk .pagination-right .next-btn > span {
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);
30956
+ }
30957
+
30958
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
31164
30959
  color: #0080ff;
31165
30960
  }
31166
30961
 
31167
- .E_phljevk .pagination-right .next-btn .icon-inner {
31168
- transform: rotate(180deg);
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;
31169
30967
  }
31170
30968
 
31171
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
31172
- max-height: calc(100vh - 128px);
31173
- overflow-y: auto;
30969
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30970
+ padding: 1px 12px;
30971
+ color: #005ed1;
31174
30972
  }
31175
30973
 
31176
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
31177
- padding: 4px 20px;
31178
- font-size: 12px;
31179
- line-height: 18px;
30974
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30975
+ opacity: 1;
31180
30976
  }
31181
30977
 
31182
- .E_ccrbeuz .ant-collapse-item {
31183
- border: 0px;
31184
- background-color: #fff;
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);
31185
30980
  }
31186
30981
 
31187
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
31188
- padding-top: 0px;
31189
- padding-bottom: 0px;
31190
- padding-left: 0px !important;
31191
- padding-right: 24px;
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;
31192
30984
  }
31193
30985
 
31194
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
31195
- right: 0px;
30986
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30987
+ padding: 4px 16px;
30988
+ height: 32px;
30989
+ border-radius: 6px 6px 0 0;
31196
30990
  }
31197
30991
 
31198
- .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
31199
- padding: 0px;
30992
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30993
+ padding-left: 0;
31200
30994
  }
31201
30995
 
31202
- .E_c1fljvag .ant-collapse-item .ant-collapse-header {
31203
- padding-right: 0px;
31204
- cursor: default;
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;
31205
30998
  }
31206
30999
 
31207
- .E_tju3gfj .date {
31208
- margin-right: 4px;
31000
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
31001
+ margin-left: 11px;
31002
+ height: 24px;
31209
31003
  }
31210
31004
 
31211
- .E_rapgekc.ant-radio-wrapper {
31212
- display: inline-flex;
31213
- align-items: baseline;
31214
- white-space: pre-wrap;
31005
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
31006
+ padding: 0;
31215
31007
  }
31216
31008
 
31217
- .E_rapgekc.ant-radio-wrapper .ant-radio {
31218
- position: relative;
31219
- top: 3px;
31009
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
31010
+ padding: 4px 16px;
31220
31011
  }
31221
31012
 
31222
- .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
31223
- border-color: rgba(107, 128, 167, 0.6);
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;
31224
31015
  }
31225
31016
 
31226
- .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
31227
- border-color: #0080ff;
31017
+ .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
31018
+ background: #fff;
31228
31019
  }
31229
31020
 
31230
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
31231
- border-color: #0080ff;
31232
- background: #0080ff;
31021
+ .E_t160l1cm .tab-menu-item-light:active {
31022
+ color: #005ed1;
31233
31023
  }
31234
31024
 
31235
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
31236
- top: 4px;
31237
- left: 4px;
31238
- width: 6px;
31239
- height: 6px;
31025
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
31240
31026
  background: #fff;
31027
+ color: #1d326c;
31241
31028
  }
31242
31029
 
31243
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
31244
- opacity: 0.5;
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);
31245
31032
  }
31246
31033
 
31247
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
31248
- border-color: rgba(107, 128, 167, 0.6);
31249
- background: rgba(211, 218, 235, 0.6);
31034
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
31035
+ color: #1d326c;
31250
31036
  }
31251
31037
 
31252
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
31253
- background: #00122e;
31038
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
31039
+ fill: #d8deeb;
31254
31040
  }
31255
31041
 
31256
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
31257
- color: #00122e;
31258
- opacity: 0.5;
31042
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
31043
+ fill: #1d326c;
31259
31044
  }
31260
31045
 
31261
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
31262
- color: #00122e;
31046
+ .E_t160l1cm .tab-content {
31047
+ flex: 1;
31048
+ display: flex;
31049
+ flex-direction: column;
31263
31050
  }
31264
31051
 
31265
- .E_rapgekc.ant-radio-wrapper .ant-radio + span {
31266
- display: inline-block;
31267
- padding: 0;
31268
- padding-left: 10px;
31052
+ .E_t160l1cm.is-overview .tab-content {
31053
+ overflow: visible;
31269
31054
  }
31270
31055
 
31271
- .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
31272
- margin-bottom: 0;
31273
- white-space: pre-wrap;
31274
- color: rgba(44, 56, 82, 0.6);
31056
+ .E_t14npdqr {
31057
+ max-width: 240px;
31058
+ animation: none;
31275
31059
  }
31276
31060
 
31277
- .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
31278
- padding-left: 8px;
31061
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
31062
+ border: 1px solid #0080ff;
31063
+ padding: 0;
31279
31064
  }
31280
31065
 
31281
- .E_rp906go .ant-radio-button-wrapper:first-child {
31282
- border-radius: 5px 0 0 5px;
31066
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
31067
+ margin: 0;
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;
31283
31076
  }
31284
31077
 
31285
- .E_rp906go .ant-radio-button-wrapper:last-child {
31286
- border-radius: 0 5px 5px 0;
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;
31287
31084
  }
31288
31085
 
31289
- .E_rcc63c8 {
31290
- color: #00122e;
31291
- border-color: #ccd4e3;
31086
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
31087
+ color: #0080ff;
31088
+ background: transparent;
31292
31089
  }
31293
31090
 
31294
- .E_rcc63c8:first-child {
31295
- border-color: #a3b4cc;
31091
+ .E_c1yyuluq {
31092
+ border-radius: 8px;
31296
31093
  }
31297
31094
 
31298
- .E_rcc63c8.ant-radio-button-wrapper {
31299
- padding: 0 12px;
31300
- line-height: 32px;
31301
- height: 32px;
31095
+ .E_c1yyuluq .ant-card-body {
31096
+ padding: 20px 24px 24px 24px;
31302
31097
  }
31303
31098
 
31304
- .E_rcc63c8.ant-radio-button-wrapper > span + span {
31305
- white-space: nowrap;
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;
31306
31103
  }
31307
31104
 
31308
- .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
31309
- height: 22px;
31310
- padding: 0 7px;
31311
- line-height: 20px;
31105
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
31106
+ padding-bottom: 6px;
31312
31107
  }
31313
31108
 
31314
- .E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
31315
- background: #ccd4e3;
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);
31316
31112
  }
31317
31113
 
31318
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
31319
- background: #0080ff;
31114
+ .E_sx1bpnu .ant-input-sm {
31115
+ line-height: 18px;
31320
31116
  }
31321
31117
 
31322
- .E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
31323
- background: #ccd4e3;
31324
- opacity: 0.5;
31118
+ .E_ccrbeuz .ant-collapse-item {
31119
+ border: 0px;
31120
+ background-color: #fff;
31325
31121
  }
31326
31122
 
31327
- .E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
31328
- border-right-color: #0080ff;
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;
31329
31128
  }
31330
31129
 
31331
- .E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
31332
- border-color: #0080ff;
31130
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
31131
+ right: 0px;
31333
31132
  }
31334
31133
 
31335
- .E_rcc63c8.ant-radio-button-wrapper-checked {
31336
- background: rgba(0, 136, 255, 0.1);
31134
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
31135
+ padding: 0px;
31337
31136
  }
31338
31137
 
31339
- .E_rcc63c8.ant-radio-button-wrapper-disabled {
31340
- background: rgba(211, 218, 235, 0.6);
31341
- border-color: #ccd4e3;
31342
- opacity: 0.5;
31138
+ .E_c1fljvag .ant-collapse-item .ant-collapse-header {
31139
+ padding-right: 0px;
31140
+ cursor: default;
31343
31141
  }
31344
31142
 
31345
- .E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
31346
- color: #00122e;
31347
- border-color: #ccd4e3;
31143
+ .E_itxley7.ant-input-group.ant-input-group-compact {
31144
+ display: flex;
31348
31145
  }
31349
31146
 
31350
- .E_rcc63c8.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
31351
- color: #00122e;
31352
- border-color: #ccd4e3;
31353
- background: rgba(172, 186, 211, 0.6);
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;
31354
31150
  }
31355
31151
 
31356
- .E_rcc63c8 .ant-radio-button-input {
31357
- margin-right: 8px;
31358
- display: inline;
31359
- border: none;
31360
- padding: 0;
31361
- width: 36px;
31362
- background: transparent;
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;
31363
31155
  }
31364
31156
 
31365
- .E_rcc63c8 .ant-radio-button-input:focus {
31366
- box-shadow: none;
31157
+ .E_c1uzzomf {
31158
+ margin-bottom: 16px;
31367
31159
  }
31368
31160
 
31369
- .E_rcc63c8 .ant-radio-button-input.ant-input-number {
31370
- margin-right: 0;
31371
- width: initial;
31372
- box-shadow: none;
31161
+ .E_c1uzzomf .card-title {
31162
+ font-size: 16px;
31163
+ color: rgba(44, 56, 82, 0.6);
31164
+ font-weight: 700;
31165
+ line-height: 32px;
31373
31166
  }
31374
31167
 
31375
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
31376
- display: none;
31168
+ .E_c1uzzomf .card-body {
31169
+ padding: 24px;
31170
+ border-radius: 8px;
31171
+ background: #fff;
31377
31172
  }
31378
31173
 
31379
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
31380
- display: inline;
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;
31381
31180
  }
31382
31181
 
31383
- .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap input {
31384
- display: inline;
31385
- margin-right: 8px;
31386
- padding: 0;
31387
- width: 36px;
31182
+ .E_d1bw7c5z {
31183
+ position: relative;
31184
+ max-width: 388px;
31185
+ min-width: 285px;
31388
31186
  }
31389
31187
 
31390
- .E_c1bus5hc {
31391
- --color: white;
31392
- height: 14px;
31393
- width: 14px;
31394
- border-radius: 50%;
31395
- flex-shrink: 0;
31188
+ .E_d1bw7c5z .center {
31189
+ position: absolute;
31190
+ font-size: 12px;
31191
+ width: 80px;
31192
+ height: 100px;
31193
+ top: 0;
31194
+ left: 35px;
31396
31195
  display: flex;
31397
- align-items: center;
31196
+ flex-direction: column;
31398
31197
  justify-content: center;
31399
- border: 1px solid var(--color);
31198
+ align-items: center;
31199
+ color: #00122e;
31400
31200
  }
31401
31201
 
31402
- .E_c1bus5hc .circle-inner {
31403
- position: relative;
31404
- height: 10px;
31405
- width: 10px;
31406
- border-radius: 50%;
31407
- overflow: hidden;
31202
+ .E_d1bw7c5z .center .number {
31203
+ font-size: 24px;
31204
+ font-weight: 700;
31408
31205
  }
31409
31206
 
31410
- .E_c1bus5hc .circle-content {
31411
- position: absolute;
31412
- height: 100%;
31413
- width: 100%;
31414
- left: 0;
31415
- top: 0;
31416
- border-radius: 50%;
31417
- background: linear-gradient(to right, var(--color) 50%, white 50%);
31418
- transform: rotate(180deg);
31207
+ .E_d1bw7c5z .center .text {
31208
+ padding: 0 5px;
31209
+ font-size: 12px;
31210
+ width: inherit;
31211
+ text-align: center;
31419
31212
  }
31420
31213
 
31421
- .E_c1bus5hc .circle-child {
31422
- position: absolute;
31423
- height: 100%;
31424
- width: 100%;
31425
- left: 0;
31426
- top: 0;
31427
- margin-left: 50%;
31428
- transform-origin: left;
31429
- background: white;
31430
- transform: rotate(0deg);
31214
+ .E_d1bw7c5z .recharts-wrapper {
31215
+ display: flex;
31431
31216
  }
31432
31217
 
31433
- .E_ivqqkzv {
31434
- height: 24px;
31435
- width: 56px !important;
31436
- margin-right: 4px;
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;
31437
31225
  }
31438
31226
 
31439
- .E_c1wk4q29 {
31440
- color: rgba(44, 56, 82, 0.6);
31227
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
31228
+ width: 100%;
31441
31229
  }
31442
31230
 
31443
- .E_s1dizucg.ant-switch {
31444
- min-width: 40px;
31445
- height: 24px;
31446
- background: rgba(172, 186, 211, 0.6);
31447
- overflow: hidden;
31231
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
31232
+ width: 100%;
31233
+ margin-right: 0 !important;
31234
+ line-height: 18px;
31448
31235
  }
31449
31236
 
31450
- .E_s1dizucg.ant-switch:focus {
31451
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
31237
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
31238
+ border-radius: 2px;
31452
31239
  }
31453
31240
 
31454
- .E_s1dizucg.ant-switch-small {
31455
- min-width: 26px;
31456
- height: 16px;
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;
31457
31249
  }
31458
31250
 
31459
- .E_s1dizucg.ant-switch-large {
31460
- min-width: 52px;
31461
- height: 32px;
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;
31462
31258
  }
31463
31259
 
31464
- .E_s1dizucg.ant-switch .ant-switch-handle {
31465
- height: 20px;
31466
- width: 20px;
31260
+ .E_d1bw7c5z .value {
31261
+ color: rgba(44, 56, 82, 0.75);
31467
31262
  }
31468
31263
 
31469
- .E_s1dizucg.ant-switch .ant-switch-handle::before {
31470
- border-radius: 10px;
31471
- transition-delay: 120ms;
31264
+ .E_t10pqbtc {
31265
+ width: 140px;
31472
31266
  }
31473
31267
 
31474
- .E_s1dizucg.ant-switch-small .ant-switch-handle {
31475
- height: 14px;
31476
- width: 14px;
31477
- top: 1px;
31478
- left: 1px;
31268
+ .E_t10pqbtc .item {
31269
+ margin: 6px auto;
31270
+ display: flex;
31271
+ justify-content: space-between;
31479
31272
  }
31480
31273
 
31481
- .E_s1dizucg.ant-switch-large .ant-switch-handle {
31482
- height: 28px;
31483
- width: 28px;
31274
+ .E_t10pqbtc .item .name {
31275
+ width: 102px;
31484
31276
  }
31485
31277
 
31486
- .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
31487
- border-radius: 14px;
31278
+ .E_phljevk {
31279
+ display: flex;
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;
31488
31286
  }
31489
31287
 
31490
- .E_s1dizucg.ant-switch-checked {
31491
- background-color: #00ba5d;
31288
+ .E_phljevk .pagination-left {
31289
+ padding: 2px 8px;
31492
31290
  }
31493
31291
 
31494
- .E_s1dizucg.ant-switch-checked .ant-switch-handle {
31495
- left: calc(100% - 20px - 2px);
31292
+ .E_phljevk .dropdown-trigger {
31293
+ display: flex;
31294
+ align-items: center;
31295
+ border-radius: 6px;
31296
+ cursor: pointer;
31297
+ transition: all 0.3s ease;
31496
31298
  }
31497
31299
 
31498
- .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
31499
- left: calc(100% - 14px - 1px);
31300
+ .E_phljevk .dropdown-trigger:hover {
31301
+ background: rgba(211, 218, 235, 0.6);
31302
+ color: #0080ff;
31500
31303
  }
31501
31304
 
31502
- .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
31503
- left: calc(100% - 28px - 2px);
31305
+ .E_phljevk .dropdown-trigger .icon-inner {
31306
+ margin-left: 4px;
31504
31307
  }
31505
31308
 
31506
- .E_c1up6e3y {
31507
- margin-left: 5px;
31309
+ .E_phljevk .pagination-right {
31310
+ display: flex;
31311
+ align-items: center;
31312
+ color: #0080ff;
31313
+ font-weight: bold;
31508
31314
  }
31509
31315
 
31510
- .E_i11gg7mj .ant-input-prefix {
31511
- margin-right: 8px;
31316
+ .E_phljevk .pagination-right .icon-inner {
31317
+ margin-left: 4px;
31512
31318
  }
31513
31319
 
31514
- .E_i11gg7mj .ant-input-suffix {
31515
- margin-left: 8px;
31320
+ .E_phljevk .pagination-right .prev-btn,
31321
+ .E_phljevk .pagination-right .next-btn {
31322
+ padding: 0 8px;
31516
31323
  }
31517
31324
 
31518
- .E_cc368xp {
31519
- color: #00122e;
31520
- border-right: 1px solid rgba(172, 186, 211, 0.6);
31521
- margin-right: 8px;
31522
- padding-right: 8px;
31325
+ .E_phljevk .pagination-right .prev-btn > span,
31326
+ .E_phljevk .pagination-right .next-btn > span {
31327
+ color: #0080ff;
31523
31328
  }
31524
31329
 
31525
- .E_i11o6xqj {
31526
- display: flex;
31527
- gap: 4px;
31330
+ .E_phljevk .pagination-right .next-btn .icon-inner {
31331
+ transform: rotate(180deg);
31528
31332
  }
31529
31333
 
31530
- .E_i11o6xqj .icon-wrapper {
31531
- cursor: pointer;
31334
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
31335
+ max-height: calc(100vh - 128px);
31336
+ overflow-y: auto;
31532
31337
  }
31533
31338
 
31534
- .E_d19ruhdj.icon-wrapper {
31535
- cursor: not-allowed;
31339
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
31340
+ padding: 4px 20px;
31341
+ font-size: 12px;
31342
+ line-height: 18px;
31536
31343
  }
31537
31344
 
31538
- .E_s1sck0th {
31539
- padding: 0 8px;
31540
- border-radius: 4px;
31345
+ .E_c1bus5hc {
31346
+ --color: white;
31347
+ height: 14px;
31348
+ width: 14px;
31349
+ border-radius: 50%;
31350
+ flex-shrink: 0;
31351
+ display: flex;
31352
+ align-items: center;
31353
+ justify-content: center;
31354
+ border: 1px solid var(--color);
31541
31355
  }
31542
31356
 
31543
- .E_m855nr1 {
31544
- padding: 2px 8px;
31545
- border-radius: 3px;
31357
+ .E_c1bus5hc .circle-inner {
31358
+ position: relative;
31359
+ height: 10px;
31360
+ width: 10px;
31361
+ border-radius: 50%;
31362
+ overflow: hidden;
31546
31363
  }
31547
31364
 
31548
- .E_l1270xpg {
31549
- padding: 3px 8px;
31550
- border-radius: 2px;
31365
+ .E_c1bus5hc .circle-content {
31366
+ position: absolute;
31367
+ height: 100%;
31368
+ width: 100%;
31369
+ left: 0;
31370
+ top: 0;
31371
+ border-radius: 50%;
31372
+ background: linear-gradient(to right, var(--color) 50%, white 50%);
31373
+ transform: rotate(180deg);
31551
31374
  }
31552
31375
 
31553
- .E_t14rextb.ant-tag:hover {
31554
- opacity: unset;
31376
+ .E_c1bus5hc .circle-child {
31377
+ position: absolute;
31378
+ height: 100%;
31379
+ width: 100%;
31380
+ left: 0;
31381
+ top: 0;
31382
+ margin-left: 50%;
31383
+ transform-origin: left;
31384
+ background: white;
31385
+ transform: rotate(0deg);
31555
31386
  }
31556
31387
 
31557
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
31558
- margin: 0;
31559
- margin-right: 8px;
31560
- display: inline-flex;
31561
- align-items: center;
31562
- border: none;
31388
+ .E_ivqqkzv {
31389
+ height: 24px;
31390
+ width: 56px !important;
31391
+ margin-right: 4px;
31563
31392
  }
31564
31393
 
31565
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
31566
- width: 16px;
31567
- height: 16px;
31568
- color: inherit;
31569
- margin-left: 4px;
31570
- opacity: 0.6;
31571
- display: inline-flex;
31394
+ .E_c1wk4q29 {
31395
+ color: rgba(44, 56, 82, 0.6);
31572
31396
  }
31573
31397
 
31574
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
31575
- opacity: 1;
31398
+ .E_rapgekc.ant-radio-wrapper {
31399
+ display: inline-flex;
31400
+ align-items: baseline;
31401
+ white-space: pre-wrap;
31576
31402
  }
31577
31403
 
31578
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
31579
- color: #0080ff;
31580
- background-color: rgba(0, 136, 255, 0.1);
31404
+ .E_rapgekc.ant-radio-wrapper .ant-radio {
31405
+ position: relative;
31406
+ top: 3px;
31581
31407
  }
31582
31408
 
31583
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
31584
- color: #f0483e;
31585
- background-color: rgba(255, 74, 74, 0.1);
31409
+ .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
31410
+ border-color: rgba(107, 128, 167, 0.6);
31586
31411
  }
31587
31412
 
31588
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
31589
- color: #e07f00;
31590
- background-color: rgba(255, 187, 0, 0.1);
31413
+ .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
31414
+ border-color: #0080ff;
31591
31415
  }
31592
31416
 
31593
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
31594
- color: #008f4c;
31595
- background-color: rgba(30, 201, 127, 0.1);
31417
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
31418
+ border-color: #0080ff;
31419
+ background: #0080ff;
31596
31420
  }
31597
31421
 
31598
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
31599
- color: #1d326c;
31600
- background-color: rgba(225, 230, 241, 0.6);
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;
31601
31428
  }
31602
31429
 
31603
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
31604
- color: #7E41FF;
31605
- background-color: rgba(126, 65, 255, 0.1);
31430
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
31431
+ opacity: 0.5;
31606
31432
  }
31607
31433
 
31608
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
31609
- color: #fff;
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);
31610
31437
  }
31611
31438
 
31612
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
31613
- background-color: #f0483e;
31439
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
31440
+ background: #00122e;
31614
31441
  }
31615
31442
 
31616
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
31617
- background-color: #fea008;
31443
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
31444
+ color: #00122e;
31445
+ opacity: 0.5;
31618
31446
  }
31619
31447
 
31620
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
31621
- background-color: #00ba5d;
31448
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
31449
+ color: #00122e;
31622
31450
  }
31623
31451
 
31624
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
31625
- background-color: #0080ff;
31452
+ .E_rapgekc.ant-radio-wrapper .ant-radio + span {
31453
+ display: inline-block;
31454
+ padding: 0;
31455
+ padding-left: 10px;
31626
31456
  }
31627
31457
 
31628
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
31629
- background-color: #6b7d99;
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);
31630
31462
  }
31631
31463
 
31632
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
31633
- background-color: #7E41FF;
31464
+ .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
31465
+ padding-left: 8px;
31634
31466
  }
31635
31467
 
31636
- .E_s1dni7lo {
31637
- width: 430px !important;
31468
+ .E_rp906go .ant-radio-button-wrapper:first-child {
31469
+ border-radius: 5px 0 0 5px;
31638
31470
  }
31639
31471
 
31640
- .E_d1wwmmm5 .ant-select-item-group {
31641
- padding: 8px 16px;
31642
- line-height: 18px;
31643
- border-top: 1px solid rgba(211, 218, 235, 0.6);
31644
- height: 34px;
31645
- min-height: 34px;
31646
- box-sizing: border-box;
31647
- margin-top: 8px;
31472
+ .E_rp906go .ant-radio-button-wrapper:last-child {
31473
+ border-radius: 0 5px 5px 0;
31648
31474
  }
31649
31475
 
31650
- .E_o1ugr09p {
31651
- display: flex;
31652
- flex-direction: column;
31653
- margin: 1px 8px;
31654
- padding: 8px;
31655
- border-radius: 4px;
31476
+ .E_rcc63c8 {
31477
+ color: #00122e;
31478
+ border-color: #ccd4e3;
31656
31479
  }
31657
31480
 
31658
- .E_o1ugr09p .selected-icon {
31659
- display: none;
31481
+ .E_rcc63c8:first-child {
31482
+ border-color: #a3b4cc;
31660
31483
  }
31661
31484
 
31662
- .E_o1ugr09p.ant-select-item-option-grouped {
31663
- padding-left: 8px;
31485
+ .E_rcc63c8.ant-radio-button-wrapper {
31486
+ padding: 0 12px;
31487
+ line-height: 32px;
31488
+ height: 32px;
31664
31489
  }
31665
31490
 
31666
- .E_o1ugr09p.ant-select-item-option-selected {
31667
- background-color: white;
31491
+ .E_rcc63c8.ant-radio-button-wrapper > span + span {
31492
+ white-space: nowrap;
31668
31493
  }
31669
31494
 
31670
- .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
31671
- color: #0080ff;
31495
+ .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
31496
+ height: 22px;
31497
+ padding: 0 7px;
31498
+ line-height: 20px;
31672
31499
  }
31673
31500
 
31674
- .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
31675
- display: block;
31501
+ .E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
31502
+ background: #ccd4e3;
31676
31503
  }
31677
31504
 
31678
- .E_o1ugr09p.ant-select-item-option-active {
31679
- background: rgba(0, 136, 255, 0.16);
31505
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
31506
+ background: #0080ff;
31680
31507
  }
31681
31508
 
31682
- .E_o1ugr09p.ant-select-item-option-active .timezone-title {
31683
- color: #0080ff;
31509
+ .E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
31510
+ background: #ccd4e3;
31511
+ opacity: 0.5;
31684
31512
  }
31685
31513
 
31686
- .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
31687
- background: rgba(0, 136, 255, 0.1);
31688
- color: #0080ff;
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;
31689
31516
  }
31690
31517
 
31691
- .E_o1ifxsq4 {
31692
- display: flex;
31693
- justify-content: space-between;
31694
- height: 20px;
31695
- line-height: 20px;
31518
+ .E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
31519
+ border-color: #0080ff;
31696
31520
  }
31697
31521
 
31698
- .E_o1ifxsq4 .timezone-title {
31699
- color: #2d3a56;
31700
- overflow: hidden;
31701
- text-overflow: ellipsis;
31522
+ .E_rcc63c8.ant-radio-button-wrapper-checked {
31523
+ background: rgba(0, 136, 255, 0.1);
31702
31524
  }
31703
31525
 
31704
- .E_o1zue7 {
31705
- display: flex;
31706
- justify-content: space-between;
31707
- color: rgba(44, 56, 82, 0.6);
31708
- height: 18px;
31709
- line-height: 18px;
31710
- margin-top: 2px;
31526
+ .E_rcc63c8.ant-radio-button-wrapper-disabled {
31527
+ background: rgba(211, 218, 235, 0.6);
31528
+ border-color: #ccd4e3;
31529
+ opacity: 0.5;
31711
31530
  }
31712
31531
 
31713
- .E_tyfmlxg {
31714
- border: none;
31715
- margin-right: 0;
31716
- background: rgba(225, 230, 241, 0.6);
31532
+ .E_rcc63c8.ant-radio-button-wrapper-disabled:hover {
31533
+ color: #00122e;
31534
+ border-color: #ccd4e3;
31717
31535
  }
31718
31536
 
31719
- .E_o18uybox {
31720
- pointer-events: none;
31721
- height: 32px;
31722
- width: 100%;
31723
- opacity: 0;
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);
31724
31541
  }
31725
31542
 
31726
- .E_i1inqkme {
31727
- height: 18px;
31728
- line-height: 18px;
31729
- padding: 0 4px;
31730
- border-radius: 4px;
31731
- background: rgba(235, 239, 245, 0.6);
31732
- border: 1px solid rgba(223, 228, 235, 0.6);
31733
- display: flex;
31734
- align-items: center;
31735
- white-space: nowrap;
31736
- margin-right: 4px;
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;
31737
31550
  }
31738
31551
 
31739
- .E_fzh9mnb {
31740
- width: 100%;
31741
- height: 100%;
31742
- min-height: 124px;
31743
- display: flex;
31744
- flex-direction: column;
31745
- justify-content: center;
31746
- align-items: center;
31552
+ .E_rcc63c8 .ant-radio-button-input:focus {
31553
+ box-shadow: none;
31747
31554
  }
31748
31555
 
31749
- .E_fzh9mnb .error-text {
31750
- color: rgba(10, 37, 85, 0.6);
31751
- margin-bottom: 16px;
31752
- font-size: 18px;
31556
+ .E_rcc63c8 .ant-radio-button-input.ant-input-number {
31557
+ margin-right: 0;
31558
+ width: initial;
31559
+ box-shadow: none;
31753
31560
  }
31754
31561
 
31755
- .E_iq1gosr {
31756
- display: inline-block;
31562
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-handler-wrap {
31563
+ display: none;
31757
31564
  }
31758
31565
 
31759
- .E_iouxfgt {
31760
- display: inline-flex;
31761
- align-items: center;
31566
+ .E_rcc63c8 .ant-radio-button-input .ant-input-number-input-wrap {
31567
+ display: inline;
31762
31568
  }
31763
31569
 
31764
- .E_iouxfgt .icon-inner {
31765
- display: inline-flex;
31766
- align-items: center;
31767
- justify-content: center;
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;
31768
31575
  }
31769
31576
 
31770
- .E_iouxfgt .icon-inner + span,
31771
- .E_iouxfgt span + .icon-inner.suffix {
31772
- margin-left: 4px;
31577
+ .E_i11gg7mj .ant-input-prefix {
31578
+ margin-right: 8px;
31773
31579
  }
31774
31580
 
31775
- .E_iouxfgt.is-rotate img,
31776
- .E_iouxfgt.is-rotate svg {
31777
- animation: rotate 680ms linear infinite;
31581
+ .E_i11gg7mj .ant-input-suffix {
31582
+ margin-left: 8px;
31778
31583
  }
31779
31584
 
31780
- .E_t1m2x205 .ant-tooltip-arrow {
31781
- display: none;
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;
31782
31590
  }
31783
31591
 
31784
- .E_t1m2x205 .ant-tooltip-inner {
31785
- background: rgba(23, 38, 64, 0.8);
31786
- border-radius: 4px;
31592
+ .E_i11o6xqj {
31593
+ display: flex;
31594
+ gap: 4px;
31787
31595
  }
31788
31596
 
31789
- .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31790
- visibility: hidden;
31597
+ .E_i11o6xqj .icon-wrapper {
31598
+ cursor: pointer;
31791
31599
  }
31792
31600
 
31793
- .E_ai7qkf2 .ant-input-number-handler-wrap {
31794
- display: var(--ai7qkf2-0);
31601
+ .E_d19ruhdj.icon-wrapper {
31602
+ cursor: not-allowed;
31795
31603
  }
31796
31604
 
31797
- .E_ai7qkf2 .ant-input-number-input-wrap {
31798
- display: inline-flex;
31799
- line-height: 1.5715;
31800
- height: 100%;
31801
- width: 100%;
31605
+ .E_s1dizucg.ant-switch {
31606
+ min-width: 40px;
31607
+ height: 24px;
31608
+ background: rgba(172, 186, 211, 0.6);
31609
+ overflow: hidden;
31802
31610
  }
31803
31611
 
31804
- .E_ai7qkf2 .ant-input-number-input-wrap::after {
31805
- content: var(--ai7qkf2-1);
31806
- display: var(--ai7qkf2-2);
31807
- flex: none;
31808
- align-items: center;
31809
- margin-left: 4px;
31810
- padding: 5px 12px 5px 0;
31811
- color: rgba(44, 56, 82, 0.6);
31612
+ .E_s1dizucg.ant-switch:focus {
31613
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
31812
31614
  }
31813
31615
 
31814
- .E_ai7qkf2 .ant-input-number-input-wrap::before {
31815
- content: var(--ai7qkf2-3);
31816
- display: var(--ai7qkf2-4);
31817
- flex: none;
31818
- align-items: center;
31819
- margin-right: 4px;
31820
- cursor: auto;
31821
- color: rgba(44, 56, 82, 0.6);
31616
+ .E_s1dizucg.ant-switch-small {
31617
+ min-width: 26px;
31618
+ height: 16px;
31822
31619
  }
31823
31620
 
31824
- .ant-input-group.ant-input-group-compact > .E_ai7qkf2 {
31825
- border-radius: 0;
31621
+ .E_s1dizucg.ant-switch-large {
31622
+ min-width: 52px;
31623
+ height: 32px;
31826
31624
  }
31827
31625
 
31828
- .E_ai7qkf2.ant-input-number {
31829
- width: 100%;
31830
- border-radius: 6px;
31626
+ .E_s1dizucg.ant-switch .ant-switch-handle {
31627
+ height: 20px;
31628
+ width: 20px;
31831
31629
  }
31832
31630
 
31833
- .E_ai7qkf2.ant-input-number:not([disabled]):focus, .E_ai7qkf2.ant-input-number:not([disabled]):active, .E_ai7qkf2.ant-input-number:not([disabled]).ant-input-number-focused {
31834
- border-color: #0096ff;
31835
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
31836
- z-index: 1;
31631
+ .E_s1dizucg.ant-switch .ant-switch-handle::before {
31632
+ border-radius: 10px;
31633
+ transition-delay: 120ms;
31837
31634
  }
31838
31635
 
31839
- .E_ai7qkf2.ant-input-number.error:not([disabled]):hover, .E_ai7qkf2.ant-input-number.error:not([disabled]).ant-input-number-focused {
31840
- border-color: #e75a3a;
31841
- box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
31636
+ .E_s1dizucg.ant-switch-small .ant-switch-handle {
31637
+ height: 14px;
31638
+ width: 14px;
31639
+ top: 1px;
31640
+ left: 1px;
31842
31641
  }
31843
31642
 
31844
- .E_ai7qkf2 .ant-input-number-input {
31845
- height: 30px;
31846
- border: 1px;
31847
- padding: 5px 12px;
31848
- font-size: inherit;
31643
+ .E_s1dizucg.ant-switch-large .ant-switch-handle {
31644
+ height: 28px;
31645
+ width: 28px;
31849
31646
  }
31850
31647
 
31851
- .E_ai7qkf2.ant-input-number-lg input {
31852
- height: 38px;
31853
- border: 1px;
31854
- padding: 8px 16px;
31648
+ .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
31649
+ border-radius: 14px;
31855
31650
  }
31856
31651
 
31857
- .E_ai7qkf2.ant-input-number-sm input {
31858
- height: 22px;
31859
- border: 1px;
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 {
31860
31682
  padding: 2px 8px;
31683
+ border-radius: 3px;
31861
31684
  }
31862
31685
 
31863
- .E_atcz0kf .ant-input-suffix {
31864
- margin-left: 8px;
31686
+ .E_l1270xpg {
31687
+ padding: 3px 8px;
31688
+ border-radius: 2px;
31865
31689
  }
31866
31690
 
31867
- .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
31868
- padding: 2px 7px 2px 12px;
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;
31801
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
31802
+ height: 34px;
31803
+ min-height: 34px;
31804
+ box-sizing: border-box;
31805
+ margin-top: 8px;
31806
+ }
31807
+
31808
+ .E_o1ugr09p {
31809
+ display: flex;
31810
+ flex-direction: column;
31811
+ margin: 1px 8px;
31812
+ padding: 8px;
31813
+ border-radius: 4px;
31814
+ }
31815
+
31816
+ .E_o1ugr09p .selected-icon {
31817
+ display: none;
31818
+ }
31819
+
31820
+ .E_o1ugr09p.ant-select-item-option-grouped {
31821
+ padding-left: 8px;
31822
+ }
31823
+
31824
+ .E_o1ugr09p.ant-select-item-option-selected {
31825
+ background-color: white;
31826
+ }
31827
+
31828
+ .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
31829
+ color: #0080ff;
31830
+ }
31831
+
31832
+ .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
31833
+ display: block;
31834
+ }
31835
+
31836
+ .E_o1ugr09p.ant-select-item-option-active {
31837
+ background: rgba(0, 136, 255, 0.16);
31838
+ }
31839
+
31840
+ .E_o1ugr09p.ant-select-item-option-active .timezone-title {
31841
+ color: #0080ff;
31842
+ }
31843
+
31844
+ .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
31845
+ background: rgba(0, 136, 255, 0.1);
31846
+ color: #0080ff;
31847
+ }
31848
+
31849
+ .E_o1ifxsq4 {
31850
+ display: flex;
31851
+ justify-content: space-between;
31852
+ height: 20px;
31853
+ line-height: 20px;
31854
+ }
31855
+
31856
+ .E_o1ifxsq4 .timezone-title {
31857
+ color: #2d3a56;
31858
+ overflow: hidden;
31859
+ text-overflow: ellipsis;
31860
+ }
31861
+
31862
+ .E_o1zue7 {
31863
+ display: flex;
31864
+ justify-content: space-between;
31865
+ color: rgba(44, 56, 82, 0.6);
31866
+ height: 18px;
31867
+ line-height: 18px;
31868
+ margin-top: 2px;
31869
+ }
31870
+
31871
+ .E_tyfmlxg {
31872
+ border: none;
31873
+ margin-right: 0;
31874
+ background: rgba(225, 230, 241, 0.6);
31875
+ }
31876
+
31877
+ .E_o18uybox {
31878
+ pointer-events: none;
31879
+ height: 32px;
31880
+ width: 100%;
31881
+ opacity: 0;
31869
31882
  }
31870
31883
 
31871
31884
  .E_f7pxqmh {
@@ -31908,6 +31921,97 @@ button.E_n7k2c6r {
31908
31921
  min-height: 0px;
31909
31922
  }
31910
31923
 
31924
+ .E_ai7qkf2 .ant-input-number-handler-wrap {
31925
+ display: var(--ai7qkf2-0);
31926
+ }
31927
+
31928
+ .E_ai7qkf2 .ant-input-number-input-wrap {
31929
+ display: inline-flex;
31930
+ line-height: 1.5715;
31931
+ height: 100%;
31932
+ width: 100%;
31933
+ }
31934
+
31935
+ .E_ai7qkf2 .ant-input-number-input-wrap::after {
31936
+ content: var(--ai7qkf2-1);
31937
+ display: var(--ai7qkf2-2);
31938
+ flex: none;
31939
+ align-items: center;
31940
+ margin-left: 4px;
31941
+ padding: 5px 12px 5px 0;
31942
+ color: rgba(44, 56, 82, 0.6);
31943
+ }
31944
+
31945
+ .E_ai7qkf2 .ant-input-number-input-wrap::before {
31946
+ content: var(--ai7qkf2-3);
31947
+ display: var(--ai7qkf2-4);
31948
+ flex: none;
31949
+ align-items: center;
31950
+ margin-right: 4px;
31951
+ cursor: auto;
31952
+ color: rgba(44, 56, 82, 0.6);
31953
+ }
31954
+
31955
+ .ant-input-group.ant-input-group-compact > .E_ai7qkf2 {
31956
+ border-radius: 0;
31957
+ }
31958
+
31959
+ .E_ai7qkf2.ant-input-number {
31960
+ width: 100%;
31961
+ border-radius: 6px;
31962
+ }
31963
+
31964
+ .E_ai7qkf2.ant-input-number:not([disabled]):focus.ant-input-number, .E_ai7qkf2.ant-input-number:not([disabled]):active.ant-input-number, .E_ai7qkf2.ant-input-number:not([disabled]).ant-input-number-focused.ant-input-number {
31965
+ border-color: #0096ff;
31966
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
31967
+ z-index: 1;
31968
+ }
31969
+
31970
+ .E_ai7qkf2.ant-input-number:not([disabled]).error:hover.ant-input-number, .E_ai7qkf2.ant-input-number:not([disabled]).error.ant-input-number-focused.ant-input-number {
31971
+ border-color: #e75a3a;
31972
+ box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
31973
+ }
31974
+
31975
+ .E_ai7qkf2 .ant-input-number-input {
31976
+ height: 30px;
31977
+ border: 1px;
31978
+ padding: 5px 12px;
31979
+ font-size: inherit;
31980
+ }
31981
+
31982
+ .E_ai7qkf2.ant-input-number-lg input {
31983
+ height: 38px;
31984
+ border: 1px;
31985
+ padding: 8px 16px;
31986
+ }
31987
+
31988
+ .E_ai7qkf2.ant-input-number-sm input {
31989
+ height: 22px;
31990
+ border: 1px;
31991
+ padding: 2px 8px;
31992
+ }
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
+
31911
32015
  .E_a1wfy30z .ant-input-number-handler-wrap {
31912
32016
  display: var(--a1wfy30z-0);
31913
32017
  }
@@ -31943,6 +32047,40 @@ button.E_n7k2c6r {
31943
32047
  font-size: inherit;
31944
32048
  }
31945
32049
 
32050
+ .E_iouxfgt {
32051
+ display: inline-flex;
32052
+ align-items: center;
32053
+ }
32054
+
32055
+ .E_iouxfgt .icon-inner {
32056
+ display: inline-flex;
32057
+ align-items: center;
32058
+ justify-content: center;
32059
+ }
32060
+
32061
+ .E_iouxfgt .icon-inner + span,
32062
+ .E_iouxfgt span + .icon-inner.suffix {
32063
+ margin-left: 4px;
32064
+ }
32065
+
32066
+ .E_iouxfgt.is-rotate img,
32067
+ .E_iouxfgt.is-rotate svg {
32068
+ animation: rotate 680ms linear infinite;
32069
+ }
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
+
31946
32084
  .E_owd0kml {
31947
32085
  display: inline-block;
31948
32086
  }
@@ -31952,8 +32090,37 @@ button.E_n7k2c6r {
31952
32090
  position: absolute;
31953
32091
  }
31954
32092
 
31955
- .E_m196gn1d {
31956
- min-width: 1280px;
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;
31957
32124
  }
31958
32125
 
31959
32126
  .E_dsnbhzf {
@@ -32431,39 +32598,6 @@ button.E_n7k2c6r {
32431
32598
  line-height: 12px;
32432
32599
  }
32433
32600
 
32434
- .E_a1b5xrg3 .user-icon-inner {
32435
- display: inline-flex;
32436
- align-items: center;
32437
- justify-content: center;
32438
- color: #fff;
32439
- font-weight: bold;
32440
- font-size: 12px;
32441
- width: 24px;
32442
- height: 24px;
32443
- border-radius: 50%;
32444
- background: var(--a1b5xrg3-0);
32445
- }
32446
-
32447
- .E_a1b5xrg3.btn-item {
32448
- transition: all 160ms ease;
32449
- cursor: pointer;
32450
- width: 56px;
32451
- height: 40px;
32452
- display: inline-flex;
32453
- align-items: center;
32454
- justify-content: center;
32455
- border-radius: 6px;
32456
- }
32457
-
32458
- .E_a1b5xrg3.btn-item:hover {
32459
- box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
32460
- }
32461
-
32462
- .E_a1b5xrg3.btn-item:active {
32463
- transform: translateY(2px);
32464
- transition: all 320ms ease;
32465
- }
32466
-
32467
32601
  .E_cnujxq2 {
32468
32602
  display: flex;
32469
32603
  flex-direction: column;
@@ -33252,12 +33386,122 @@ input.E_rf8rlle.ant-input {
33252
33386
  color: rgba(44, 56, 82, 0.7490196078);
33253
33387
  }
33254
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
+
33255
33440
  .E_h1ol2wl7 {
33256
33441
  font-weight: bold;
33257
33442
  background-color: unset;
33258
33443
  padding: unset;
33259
33444
  }
33260
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
+
33261
33505
  .E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
33262
33506
  border-radius: 6px;
33263
33507
  }
@@ -33478,7 +33722,7 @@ input.E_rf8rlle.ant-input {
33478
33722
  right: 4px;
33479
33723
  }
33480
33724
 
33481
- .E_swwhohx.ant-select .ant-select-selection-item {
33725
+ .E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
33482
33726
  padding-right: 24px;
33483
33727
  }
33484
33728
 
@@ -34083,6 +34327,59 @@ input.E_rf8rlle.ant-input {
34083
34327
  position: static;
34084
34328
  }
34085
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
+
34086
34383
  .E_c1kchka8 {
34087
34384
  height: 100%;
34088
34385
  width: 100%;
@@ -34489,7 +34786,7 @@ input.E_rf8rlle.ant-input {
34489
34786
  gap: 8px;
34490
34787
  background: #fff;
34491
34788
  border-radius: 5px;
34492
- border: 1px solid #e4e9f2;
34789
+ border: 1px solid rgba(172, 186, 211, 0.6);
34493
34790
  transition: all 0.2s ease-in-out;
34494
34791
  }
34495
34792
 
@@ -34641,80 +34938,35 @@ input.E_rf8rlle.ant-input {
34641
34938
  display: none;
34642
34939
  }
34643
34940
 
34644
- .E_rzaik16 .ant-popover-inner-content {
34645
- padding: 0;
34646
- }
34647
-
34648
- .E_c1yd35n {
34649
- padding: 0 12px 14px 12px;
34650
- }
34651
-
34652
- .E_c1kghdax {
34653
- color: #2d3a56;
34654
- padding: 7px 12px;
34655
- display: flex;
34656
- justify-content: space-between;
34657
- align-items: center;
34658
- }
34659
-
34660
- .E_c1kghdax.has-arrow {
34661
- padding-left: 10px;
34662
- }
34663
-
34664
- .E_c1kghdax.has-arrow .title-wrapper {
34665
- cursor: pointer;
34666
- color: #00122e;
34667
- }
34668
-
34669
- .E_c1kghdax.has-arrow .title-wrapper.is-open {
34670
- color: #2d3a56;
34671
- font-weight: 600;
34672
- }
34673
-
34674
- .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
34675
- transform: rotate(90deg);
34676
- }
34677
-
34678
- .E_c1kghdax .sub-info {
34679
- font-size: 12px;
34680
- line-height: 18px;
34681
- }
34682
-
34683
- .E_c1kghdax .title-wrapper {
34684
- display: flex;
34685
- align-items: center;
34686
- user-select: none;
34687
- flex-grow: 1;
34688
- font-size: 12px;
34689
- line-height: 18px;
34690
- color: #2d3a56;
34691
- font-weight: 700;
34692
- }
34693
-
34694
- .E_c1kghdax .collapse-arrow {
34695
- transition: all 50ms ease-out 0ms;
34696
- margin-right: 2px;
34697
- }
34698
-
34699
- .E_b14q2gmw {
34700
- 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);
34701
- }
34702
-
34703
- .E_c1eym6el {
34704
- border-radius: 8px;
34705
- background-color: white;
34941
+ .E_rzaik16 .ant-popover-inner-content {
34942
+ padding: 0;
34706
34943
  }
34707
34944
 
34708
- .E_c1eym6el.hoverable {
34709
- cursor: pointer;
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;
34710
34956
  }
34711
34957
 
34712
- .E_c1eym6el.hoverable:hover {
34713
- transition: all 200ms ease;
34714
- box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
34715
- transform: translateY(-4px);
34958
+ .E_l12xdkhl .icon-wrapper {
34959
+ animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34716
34960
  }
34717
34961
 
34962
+ @keyframes rotate {
34963
+ from {
34964
+ transform: rotate(0deg);
34965
+ }
34966
+ to {
34967
+ transform: rotate(360deg);
34968
+ }
34969
+ }
34718
34970
  .E_s11wux3h .antd5-segmented-item:not(:last-child) {
34719
34971
  margin-right: 2px;
34720
34972
  }
@@ -34754,7 +35006,9 @@ input.E_rf8rlle.ant-input {
34754
35006
  background-color: transparent;
34755
35007
  }
34756
35008
 
34757
- 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 {
34758
35012
  font-size: 12px;
34759
35013
  line-height: 18px;
34760
35014
  height: 18px;
@@ -34817,31 +35071,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34817
35071
  color: rgba(44, 56, 82, 0.7490196078);
34818
35072
  }
34819
35073
 
34820
- .E_l12xdkhl {
34821
- width: 64px;
34822
- height: 64px;
34823
- max-width: 64px;
34824
- max-height: 64px;
34825
- overflow: hidden;
34826
- display: flex;
34827
- align-items: center;
34828
- justify-content: center;
34829
- position: relative;
34830
- opacity: 0.6;
34831
- }
34832
-
34833
- .E_l12xdkhl .icon-wrapper {
34834
- animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34835
- }
34836
-
34837
- @keyframes rotate {
34838
- from {
34839
- transform: rotate(0deg);
34840
- }
34841
- to {
34842
- transform: rotate(360deg);
34843
- }
34844
- }
34845
35074
  .E_sddwhm6 {
34846
35075
  margin: 0;
34847
35076
  border-radius: 20px;
@@ -35385,432 +35614,247 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35385
35614
  }
35386
35615
 
35387
35616
  .E_t1fisho6 div.ant-table td.cell__action_ .menu-button:hover {
35388
- background: #fff;
35389
- }
35390
-
35391
- .E_ckui4s7 {
35392
- color: #2d3a56;
35393
- line-height: 22px;
35394
- display: inline-flex;
35395
- }
35396
-
35397
- .E_ckui4s7 .ant-checkbox {
35398
- height: 22px;
35399
- display: flex;
35400
- align-items: center;
35401
- top: 0;
35402
- }
35403
-
35404
- .E_ckui4s7 .ant-checkbox-checked::after {
35405
- border: none;
35406
- }
35407
-
35408
- .E_ckui4s7.ant-checkbox-wrapper:hover .ant-checkbox-inner, .E_ckui4s7.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox:hover .ant-checkbox-inner {
35409
- border-color: #0080ff;
35410
- }
35411
-
35412
- .E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
35413
- border: 1px solid rgba(107, 128, 167, 0.6);
35414
- }
35415
-
35416
- .E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
35417
- border: 1px solid #0080ff;
35418
- }
35419
-
35420
- .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
35421
- background: #0080ff;
35422
- }
35423
-
35424
- .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
35425
- background-color: #fff;
35426
- height: 2px;
35427
- width: 10px;
35428
- border-radius: 2px;
35429
- }
35430
-
35431
- .E_ckui4s7.ant-checkbox-wrapper-disabled {
35432
- opacity: 0.5;
35433
- }
35434
-
35435
- .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
35436
- background: rgba(211, 218, 235, 0.6);
35437
- border-color: rgba(107, 128, 167, 0.6) !important;
35438
- }
35439
-
35440
- .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
35441
- border-color: #2d3a56;
35442
- }
35443
-
35444
- .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
35445
- background: #2d3a56;
35446
- }
35447
-
35448
- .E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
35449
- padding: 0;
35450
- }
35451
-
35452
- .E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
35453
- display: inline-block;
35454
- margin-left: 12px;
35455
- color: #2d3a56;
35456
- }
35457
-
35458
- .E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
35459
- margin-left: 28px;
35460
- color: rgba(44, 56, 82, 0.6);
35461
- }
35462
-
35463
- .E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
35464
- margin-left: 8px;
35465
- }
35466
-
35467
- .E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
35468
- margin-left: 24px;
35469
- }
35470
-
35471
- .E_lht19u8 {
35472
- width: 64px;
35473
- height: 64px;
35474
- display: flex;
35475
- align-items: center;
35476
- justify-content: center;
35477
- position: relative;
35478
- opacity: 0.2;
35479
- }
35480
-
35481
- .E_lk3gkp4 {
35482
- position: absolute;
35483
- width: 5px;
35484
- height: 48px;
35485
- left: 9.33px;
35486
- top: 40.5px;
35487
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35488
- border-radius: 5px;
35489
- transform: rotate(-128deg);
35490
- transform-origin: top left;
35491
- animation: loading-indicator1 1100ms ease-out infinite;
35492
- }
35493
-
35494
- .E_ll4n94n {
35495
- position: absolute;
35496
- width: 5px;
35497
- height: 48px;
35498
- left: 40.8px;
35499
- top: 8.4px;
35500
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35501
- border-radius: 5px;
35502
- transform: rotate(-8deg);
35503
- transform-origin: top left;
35504
- animation: loading-indicator2 1100ms ease-out infinite;
35505
- }
35506
-
35507
- .E_l17lbdo6 {
35508
- position: absolute;
35509
- width: 5px;
35510
- height: 48px;
35511
- left: 52.9px;
35512
- top: 51.8px;
35513
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
35514
- border-radius: 5px;
35515
- transform: rotate(112deg);
35516
- transform-origin: top left;
35517
- animation: loading-indicator3 1100ms ease-out infinite;
35518
- }
35519
-
35520
- .E_w7ob4th.outside-tag {
35521
- padding-left: 0;
35522
- }
35523
-
35524
- .E_w7ob4th.outside-tag .inside-tag {
35525
- border-radius: 4px 0 0 4px;
35526
- padding-right: 4px;
35527
- margin-right: 4px;
35528
- }
35529
-
35530
- .E_slr2ynn {
35531
- padding: 0 8px;
35532
- height: 18px;
35533
- }
35534
-
35535
- .E_m140wbb6 {
35536
- padding: 2px 8px;
35537
- height: 24px;
35538
- }
35539
-
35540
- .E_t1fozc1i {
35541
- margin: 0;
35542
- }
35543
-
35544
- .E_i1vxv4ln {
35545
- margin-right: 4px;
35546
- height: 16px;
35547
- }
35548
-
35549
- .E_n1afl31m.ant-tag.ant-tag-gray {
35550
- font-weight: 700;
35551
- color: #00122e;
35552
- background-color: rgba(237, 241, 250, 0.6);
35553
- border: 1px solid rgba(211, 218, 235, 0.6);
35554
- word-break: break-all;
35555
- display: inline;
35556
- white-space: normal;
35557
- }
35558
-
35559
- .E_r77hffu {
35560
- display: flex;
35561
- align-items: center;
35562
- justify-content: space-between;
35563
- column-gap: 6px;
35564
- }
35565
-
35566
- .E_p1cmxsf7 {
35567
- display: flex;
35568
- flex-direction: column;
35569
- justify-content: center;
35570
- row-gap: var(--p1cmxsf7-0);
35571
- }
35572
-
35573
- .E_p1cmxsf7 .antd5-progress-line {
35574
- font-size: 0;
35575
- }
35576
-
35577
- .E_sjob3jg {
35578
- --item-min-width: 60px;
35579
- }
35580
-
35581
- .E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
35582
- display: none !important;
35583
- }
35584
-
35585
- .E_sjob3jg .ant-steps-item.ant-steps-item-active {
35586
- flex-shrink: 0 !important;
35617
+ background: #fff;
35587
35618
  }
35588
35619
 
35589
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
35590
- color: #0080ff;
35620
+ .E_ckui4s7 {
35621
+ color: #2d3a56;
35622
+ line-height: 22px;
35623
+ display: inline-flex;
35591
35624
  }
35592
35625
 
35593
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35594
- color: #0080ff;
35595
- font-weight: normal;
35626
+ .E_ckui4s7 .ant-checkbox {
35627
+ height: 22px;
35628
+ display: flex;
35629
+ align-items: center;
35630
+ top: 0;
35596
35631
  }
35597
35632
 
35598
- .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 {
35599
- color: rgba(44, 56, 82, 0.6);
35633
+ .E_ckui4s7 .ant-checkbox-checked::after {
35634
+ border: none;
35600
35635
  }
35601
35636
 
35602
- .E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35603
- color: #00122e;
35637
+ .E_ckui4s7.ant-checkbox-wrapper:hover .ant-checkbox-inner, .E_ckui4s7.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox:hover .ant-checkbox-inner {
35638
+ border-color: #0080ff;
35604
35639
  }
35605
35640
 
35606
- .E_sjob3jg .step-item-text {
35607
- display: inline-block;
35641
+ .E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
35642
+ border: 1px solid rgba(107, 128, 167, 0.6);
35608
35643
  }
35609
35644
 
35610
- .E_sjob3jg .step-item-title {
35611
- overflow: hidden;
35612
- white-space: nowrap;
35613
- text-overflow: ellipsis;
35645
+ .E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
35646
+ border: 1px solid #0080ff;
35614
35647
  }
35615
35648
 
35616
- .E_hjvj6s6 .ant-steps-item-container {
35617
- min-width: var(--item-min-width);
35649
+ .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
35650
+ background: #0080ff;
35618
35651
  }
35619
35652
 
35620
- .E_hjvj6s6 .ant-steps-item-disabled {
35621
- cursor: not-allowed !important;
35653
+ .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
35654
+ background-color: #fff;
35655
+ height: 2px;
35656
+ width: 10px;
35657
+ border-radius: 2px;
35622
35658
  }
35623
35659
 
35624
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
35625
- flex-direction: row;
35626
- justify-content: stretch;
35660
+ .E_ckui4s7.ant-checkbox-wrapper-disabled {
35661
+ opacity: 0.5;
35627
35662
  }
35628
35663
 
35629
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
35630
- padding: 0;
35631
- margin-right: 4px;
35632
- flex: 1;
35633
- overflow: visible;
35664
+ .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
35665
+ background: rgba(211, 218, 235, 0.6);
35666
+ border-color: rgba(107, 128, 167, 0.6) !important;
35634
35667
  }
35635
35668
 
35636
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
35637
- width: 100%;
35638
- min-height: unset;
35669
+ .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
35670
+ border-color: #2d3a56;
35639
35671
  }
35640
35672
 
35641
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
35642
- height: 26px;
35643
- line-height: 26px;
35644
- width: 100%;
35645
- padding: 0;
35646
- font-size: 12px;
35673
+ .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
35674
+ background: #2d3a56;
35647
35675
  }
35648
35676
 
35649
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
35650
- margin-right: 10px;
35677
+ .E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
35678
+ padding: 0;
35651
35679
  }
35652
35680
 
35653
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
35654
- display: none;
35681
+ .E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
35682
+ display: inline-block;
35683
+ margin-left: 12px;
35684
+ color: #2d3a56;
35655
35685
  }
35656
35686
 
35657
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
35658
- padding-left: 8px;
35659
- padding-right: 4px;
35660
- border-radius: 4px 0 0 4px;
35687
+ .E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
35688
+ margin-left: 28px;
35689
+ color: rgba(44, 56, 82, 0.6);
35661
35690
  }
35662
35691
 
35663
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
35664
- margin-right: 0;
35692
+ .E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
35693
+ margin-left: 8px;
35665
35694
  }
35666
35695
 
35667
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
35668
- padding-right: 8px;
35669
- padding-left: 12px;
35670
- border-radius: 0 4px 4px 0;
35696
+ .E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
35697
+ margin-left: 24px;
35671
35698
  }
35672
35699
 
35673
- .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 {
35674
- content: "";
35675
- width: 0;
35676
- height: 0;
35677
- border: 13px solid transparent;
35678
- position: absolute;
35679
- top: 0;
35680
- border-left: 8px solid rgba(237, 241, 250, 0.6);
35681
- z-index: 2;
35682
- position: relative;
35683
- top: -50%;
35684
- right: -100%;
35700
+ .E_c1kghdax {
35701
+ color: #2d3a56;
35702
+ padding: 7px 12px;
35703
+ display: flex;
35704
+ justify-content: space-between;
35705
+ align-items: center;
35685
35706
  }
35686
35707
 
35687
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
35688
- padding: 0 4px 0 12px;
35708
+ .E_c1kghdax.has-arrow {
35709
+ padding-left: 10px;
35689
35710
  }
35690
35711
 
35691
- .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 {
35692
- content: "";
35693
- width: 0;
35694
- height: 0;
35695
- border: 13px solid transparent;
35696
- position: absolute;
35697
- top: 0;
35698
- border-left: 8px solid #fff;
35699
- left: 0;
35712
+ .E_c1kghdax.has-arrow .title-wrapper {
35713
+ cursor: pointer;
35714
+ color: #00122e;
35700
35715
  }
35701
35716
 
35702
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
35703
- max-width: calc(100% - var(--item-min-width) * 2);
35717
+ .E_c1kghdax.has-arrow .title-wrapper.is-open {
35718
+ color: #2d3a56;
35719
+ font-weight: 600;
35704
35720
  }
35705
35721
 
35706
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
35707
- background-color: rgba(0, 136, 255, 0.1);
35722
+ .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
35723
+ transform: rotate(90deg);
35708
35724
  }
35709
35725
 
35710
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
35711
- border-left-color: rgba(0, 136, 255, 0.1) !important;
35726
+ .E_c1kghdax .sub-info {
35727
+ font-size: 12px;
35728
+ line-height: 18px;
35712
35729
  }
35713
35730
 
35714
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
35715
- cursor: pointer;
35716
- min-width: var(--item-min-width);
35731
+ .E_c1kghdax .title-wrapper {
35732
+ display: flex;
35733
+ align-items: center;
35734
+ user-select: none;
35735
+ flex-grow: 1;
35736
+ font-size: 12px;
35737
+ line-height: 18px;
35738
+ color: #2d3a56;
35739
+ font-weight: 700;
35717
35740
  }
35718
35741
 
35719
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
35720
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
35721
- min-width: var(--item-min-width);
35742
+ .E_c1kghdax .collapse-arrow {
35743
+ transition: all 50ms ease-out 0ms;
35744
+ margin-right: 2px;
35722
35745
  }
35723
35746
 
35724
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
35725
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
35726
- background-color: rgba(237, 241, 250, 0.6);
35747
+ .E_c1yd35n {
35748
+ padding: 0 12px 14px 12px;
35727
35749
  }
35728
35750
 
35729
- .E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
35730
- padding: 0;
35751
+ .E_lht19u8 {
35752
+ width: 64px;
35753
+ height: 64px;
35754
+ display: flex;
35755
+ align-items: center;
35756
+ justify-content: center;
35757
+ position: relative;
35758
+ opacity: 0.2;
35731
35759
  }
35732
35760
 
35733
- .E_v4tv3mf .ant-steps.ant-steps-vertical {
35734
- width: 192px;
35735
- row-gap: 2px;
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;
35736
35772
  }
35737
35773
 
35738
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
35739
- background-color: rgba(225, 230, 241, 0.6);
35774
+ .E_ll4n94n {
35775
+ position: absolute;
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;
35740
35785
  }
35741
35786
 
35742
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
35743
- color: #00122e !important;
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;
35744
35798
  }
35745
35799
 
35746
- .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 {
35747
- background-color: rgba(225, 230, 241, 0.6);
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);
35748
35802
  }
35749
35803
 
35750
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
35751
- padding: 0 8px;
35752
- border-radius: 4px;
35753
- height: 32px;
35754
- display: flex;
35755
- align-items: center;
35804
+ .E_c1eym6el {
35805
+ border-radius: 8px;
35806
+ background-color: white;
35756
35807
  }
35757
35808
 
35758
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
35759
- min-height: auto;
35760
- white-space: nowrap;
35809
+ .E_c1eym6el.hoverable {
35810
+ cursor: pointer;
35761
35811
  }
35762
35812
 
35763
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35764
- font-size: 13px;
35765
- line-height: 20px;
35766
- max-width: 100%;
35767
- padding-right: 0;
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);
35768
35817
  }
35769
35818
 
35770
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
35771
- background: rgba(0, 128, 255, 0.1);
35819
+ .E_w7ob4th.outside-tag {
35820
+ padding-left: 0;
35772
35821
  }
35773
35822
 
35774
- .E_h6l1tj4 {
35775
- width: 100%;
35776
- display: inline-flex;
35777
- align-items: center;
35778
- justify-content: center;
35779
- column-gap: 4px;
35823
+ .E_w7ob4th.outside-tag .inside-tag {
35824
+ border-radius: 4px 0 0 4px;
35825
+ padding-right: 4px;
35826
+ margin-right: 4px;
35780
35827
  }
35781
35828
 
35782
- .E_h6l1tj4 .step-item-prefix-container {
35783
- display: inline-flex;
35784
- align-items: center;
35785
- width: 18px;
35829
+ .E_slr2ynn {
35830
+ padding: 0 8px;
35786
35831
  height: 18px;
35787
- color: rgba(44, 56, 82, 0.75);
35788
- justify-content: center;
35789
35832
  }
35790
35833
 
35791
- .E_v18frne8 {
35792
- width: 100%;
35793
- display: flex;
35794
- align-items: center;
35795
- justify-content: center;
35796
- column-gap: 6px;
35797
- font-size: 13px;
35834
+ .E_m140wbb6 {
35835
+ padding: 2px 8px;
35836
+ height: 24px;
35798
35837
  }
35799
35838
 
35800
- .E_v18frne8 .step-item-prefix-container {
35801
- display: inline-flex;
35802
- align-items: center;
35803
- min-width: 20px;
35804
- min-height: 20px;
35805
- color: rgba(44, 56, 82, 0.75);
35806
- justify-content: center;
35839
+ .E_t1fozc1i {
35840
+ margin: 0;
35807
35841
  }
35808
35842
 
35809
- .E_i1g85yz3 {
35843
+ .E_i1vxv4ln {
35810
35844
  margin-right: 4px;
35811
35845
  height: 16px;
35812
35846
  }
35813
35847
 
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;
35856
+ }
35857
+
35814
35858
  .E_t1dtlqs1 {
35815
35859
  margin-bottom: 4px;
35816
35860
  color: rgba(44, 56, 82, 0.6);
@@ -35930,118 +35974,370 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35930
35974
  background-color: rgba(237, 241, 250, 0.6);
35931
35975
  }
35932
35976
 
35933
- .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
35934
- background-color: rgba(0, 136, 255, 0.1);
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;
36175
+ }
36176
+
36177
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
36178
+ margin-right: 0;
36179
+ }
36180
+
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;
36185
+ }
36186
+
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%;
36199
+ }
36200
+
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;
35935
36203
  }
35936
36204
 
35937
- .E_tmoyoag .ant-list .eagle-table-form-cell {
35938
- flex: 1 0 0;
35939
- 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;
35940
36214
  }
35941
36215
 
35942
- .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
35943
- color: rgba(44, 56, 82, 0.6);
35944
- 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);
35945
36218
  }
35946
36219
 
35947
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
35948
- 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);
35949
36222
  }
35950
36223
 
35951
- .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 > * {
35952
- 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;
35953
36226
  }
35954
36227
 
35955
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
35956
- 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);
35957
36231
  }
35958
36232
 
35959
- .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 > * {
35960
- 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);
35961
36236
  }
35962
36237
 
35963
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
35964
- 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);
35965
36241
  }
35966
36242
 
35967
- .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 > * {
35968
- 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;
35969
36245
  }
35970
36246
 
35971
- .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
35972
- margin-right: 8px;
36247
+ .E_v4tv3mf .ant-steps.ant-steps-vertical {
36248
+ width: 192px;
36249
+ row-gap: 2px;
35973
36250
  }
35974
36251
 
35975
- .E_tmoyoag .ant-list .ant-list-item-action {
35976
- padding: 4px;
35977
- width: 24px;
35978
- height: 24px;
35979
- 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);
35980
36254
  }
35981
36255
 
35982
- .E_tmoyoag .ant-list .ant-list-item-action li {
35983
- 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;
35984
36258
  }
35985
36259
 
35986
- .E_tmoyoag .ant-list .delete-row-icon.disabled {
35987
- cursor: not-allowed;
35988
- 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);
35989
36262
  }
35990
36263
 
35991
- .E_tmoyoag .ant-list.size-default .ant-list-item-action {
35992
- 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;
35993
36270
  }
35994
36271
 
35995
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
35996
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
35997
- border-radius: 5px;
35998
- 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;
35999
36275
  }
36000
36276
 
36001
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
36002
- 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;
36003
36282
  }
36004
36283
 
36005
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
36006
- min-height: 24px;
36007
- font-size: 12px;
36008
- 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);
36009
36286
  }
36010
36287
 
36011
- .E_tmoyoag.row-split-by-border .eagle-table-form-row {
36012
- 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;
36013
36294
  }
36014
36295
 
36015
- .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
36016
- 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;
36017
36303
  }
36018
36304
 
36019
- .E_a138syjm {
36305
+ .E_v18frne8 {
36306
+ width: 100%;
36020
36307
  display: flex;
36021
36308
  align-items: center;
36022
- margin-top: 8px;
36309
+ justify-content: center;
36310
+ column-gap: 6px;
36311
+ font-size: 13px;
36023
36312
  }
36024
36313
 
36025
- .E_a138syjm button.ant-btn {
36026
- padding: 2px 8px;
36027
- 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;
36028
36321
  }
36029
36322
 
36030
- .E_a138syjm > span.maximum-desc {
36031
- display: none;
36032
- margin-left: 8px;
36033
- 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;
36034
36328
  }
36035
36329
 
36036
- .E_a138syjm > span.maximum-desc.disabled {
36037
- display: inline;
36330
+ .E_p1cmxsf7 {
36331
+ display: flex;
36332
+ flex-direction: column;
36333
+ justify-content: center;
36334
+ row-gap: var(--p1cmxsf7-0);
36038
36335
  }
36039
36336
 
36040
- .E_d77i8u0 {
36041
- width: 24px;
36042
- height: 24px;
36043
- padding: 4px;
36044
- margin-right: 8px;
36337
+ .E_p1cmxsf7 .antd5-progress-line {
36338
+ font-size: 0;
36339
+ margin-bottom: unset;
36340
+ margin-inline-end: unset;
36045
36341
  }
36046
36342
 
36047
36343
  .E_t13ef470 {
@@ -36081,6 +36377,36 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36081
36377
  background: rgba(163, 180, 204, 0.18);
36082
36378
  }
36083
36379
 
36380
+ .E_i1g85yz3 {
36381
+ margin-right: 4px;
36382
+ height: 16px;
36383
+ }
36384
+
36385
+ .E_t1gvlxt5 {
36386
+ min-width: 0;
36387
+ flex: 1;
36388
+ }
36389
+
36390
+ .E_t1gvlxt5 .tag {
36391
+ flex: 0 0 auto;
36392
+ }
36393
+
36394
+ .E_t1gvlxt5 .progress-title {
36395
+ flex: 2;
36396
+ max-width: fit-content;
36397
+ }
36398
+
36399
+ .E_t1gvlxt5 .progress-desc {
36400
+ flex: 1;
36401
+ max-width: fit-content;
36402
+ }
36403
+
36404
+ .E_a1ji6r68 {
36405
+ display: flex;
36406
+ align-items: center;
36407
+ column-gap: var(--a1ji6r68-0);
36408
+ }
36409
+
36084
36410
  .E_msn7nxt {
36085
36411
  color: rgba(44, 56, 82, 0.6);
36086
36412
  text-align: center;
@@ -36265,29 +36591,58 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36265
36591
  margin-left: 8px;
36266
36592
  }
36267
36593
 
36268
- .E_t1gvlxt5 {
36269
- min-width: 0;
36270
- flex: 1;
36594
+ .E_t59qhqp {
36595
+ background: #FFFFFF;
36596
+ padding: 24px 32px;
36597
+ border-radius: 8px;
36271
36598
  }
36272
36599
 
36273
- .E_t1gvlxt5 .tag {
36274
- flex: 0 0 auto;
36600
+ .E_t59qhqp .ant-timeline-item {
36601
+ margin-bottom: 16px;
36602
+ padding-bottom: 0px;
36275
36603
  }
36276
36604
 
36277
- .E_t1gvlxt5 .progress-title {
36278
- flex: 2;
36279
- max-width: fit-content;
36605
+ .E_t59qhqp .ant-timeline-item-last,
36606
+ .E_t59qhqp .compact.ant-timeline-item-last {
36607
+ margin-bottom: 0;
36280
36608
  }
36281
36609
 
36282
- .E_t1gvlxt5 .progress-desc {
36283
- flex: 1;
36284
- max-width: fit-content;
36610
+ .E_t59qhqp .compact.ant-timeline-item {
36611
+ margin-bottom: 12px;
36285
36612
  }
36286
36613
 
36287
- .E_a1ji6r68 {
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 {
36288
36634
  display: flex;
36635
+ flex-direction: column;
36289
36636
  align-items: center;
36290
- column-gap: var(--a1ji6r68-0);
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;
36291
36646
  }
36292
36647
 
36293
36648
  .E_s20iney.skeleton-box {
@@ -36377,18 +36732,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36377
36732
  display: block;
36378
36733
  }
36379
36734
 
36380
- .E_i14c7jc8 {
36381
- color: var(--i14c7jc8-0);
36382
- }
36383
-
36384
- .E_i1ibuolf {
36385
- display: flex;
36386
- align-items: center;
36387
- column-gap: 4px;
36388
- font-size: 12px;
36389
- color: rgba(44, 56, 82, 0.7490196078);
36390
- }
36391
-
36392
36735
  .E_d1u4ndxc {
36393
36736
  color: rgba(44, 56, 82, 0.7490196078);
36394
36737
  font-size: 12px;
@@ -36419,4 +36762,15 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
36419
36762
  to {
36420
36763
  transform: translateX(100%);
36421
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);
36422
36776
  }