@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
package/dist/style.css CHANGED
@@ -28581,6 +28581,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
28581
28581
  line-height: 20px;
28582
28582
  font-size: 20px;
28583
28583
  color: #3e4652;
28584
+ position: unset;
28584
28585
  }
28585
28586
  .ant-modal .ant-modal-close-x .anticon-close-circle {
28586
28587
  transition: opacity 320ms 80ms;
@@ -28618,7 +28619,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
28618
28619
  font-size: 14px;
28619
28620
  font-weight: bold;
28620
28621
  padding: 0 16px;
28621
- border: none;
28622
28622
  }
28623
28623
  .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost {
28624
28624
  background: transparent;
@@ -28627,6 +28627,9 @@ div.ant-typography-edit-content.ant-typography-rtl {
28627
28627
  .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button:hover, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost:hover {
28628
28628
  background: rgba(223, 228, 235, 0.6);
28629
28629
  }
28630
+ .ant-modal .ant-modal-footer .footer-content.no-button-border button {
28631
+ border: none;
28632
+ }
28630
28633
  .ant-modal .ant-modal-footer .footer-content button + button {
28631
28634
  margin-left: 8px;
28632
28635
  }
@@ -29239,6 +29242,29 @@ td .ant-btn-link {
29239
29242
  background-color: rgba(211, 218, 235, 0.6);
29240
29243
  }
29241
29244
 
29245
+ .ant-message > div > .ant-message-notice {
29246
+ padding: 4px;
29247
+ }
29248
+ .ant-message > div > .ant-message-notice:first-child {
29249
+ margin-top: -4px;
29250
+ }
29251
+ .ant-message > div > .ant-message-notice.move-up-leave.move-up-leave-active {
29252
+ animation-name: MessageMoveOut;
29253
+ animation-duration: 0.3s;
29254
+ }
29255
+ @keyframes MessageMoveOut {
29256
+ 0% {
29257
+ max-height: 150px;
29258
+ padding: 4px;
29259
+ opacity: 1;
29260
+ }
29261
+ 100% {
29262
+ max-height: 0;
29263
+ padding: 0;
29264
+ opacity: 0;
29265
+ }
29266
+ }
29267
+
29242
29268
  @media screen and (min-width: 1280px) {
29243
29269
  .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
29244
29270
  .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
@@ -29275,6 +29301,92 @@ td .ant-btn-link {
29275
29301
  width: calc(8.3% - 16px);
29276
29302
  }
29277
29303
  }
29304
+ .ant-alert[class],
29305
+ .ant-anchor[class],
29306
+ .ant-slider[class],
29307
+ .ant-avatar[class],
29308
+ .ant-table[class],
29309
+ .ant-switch[class],
29310
+ .ant-spin[class],
29311
+ .ant-statistic[class],
29312
+ .ant-steps[class],
29313
+ .ant-select-auto-complete[class],
29314
+ .ant-back-top[class],
29315
+ .ant-badge[class],
29316
+ .ant-breadcrumb[class],
29317
+ .ant-picker-calendar[class],
29318
+ .ant-picker-dropdown[class],
29319
+ .ant-picker[class],
29320
+ .ant-card[class],
29321
+ .ant-carousel[class],
29322
+ .ant-cascader-picker[class],
29323
+ .ant-cascader[class],
29324
+ .ant-breadcrumb[class],
29325
+ .ant-btn[class],
29326
+ .ant-checkbox[class],
29327
+ .ant-tree-checkbox[class],
29328
+ .ant-tree-checkbox-wrapper[class],
29329
+ .ant-tree-checkbox-group[class],
29330
+ .ant-select-tree-checkbox-wrapper[class],
29331
+ .ant-select-tree-checkbox-group[class],
29332
+ .ant-select-tree-checkbox[class],
29333
+ .ant-checkbox-wrapper[class],
29334
+ .ant-checkbox-group[class],
29335
+ .ant-tree[class],
29336
+ .ant-select-tree[class],
29337
+ .ant-typography[class],
29338
+ .ant-upload[class],
29339
+ .ant-upload-list[class],
29340
+ .ant-back-top[class],
29341
+ .ant-badge[class],
29342
+ .ant-avatar[class],
29343
+ .ant-select-auto-complete[class],
29344
+ .ant-anchor[class],
29345
+ .ant-transfer[class],
29346
+ .ant-transfer-list[class],
29347
+ .ant-transfer-operation[class],
29348
+ .ant-tooltip[class],
29349
+ .ant-timeline[class],
29350
+ .ant-select[class],
29351
+ .ant-radio[class],
29352
+ .ant-rate[class],
29353
+ .ant-select-dropdown[class],
29354
+ .ant-radio-wrapper[class],
29355
+ .ant-radio-group[class],
29356
+ .ant-radio-button-wrapper[class],
29357
+ .ant-progress[class],
29358
+ .ant-popover[class],
29359
+ .ant-pagination[class],
29360
+ .ant-modal[class],
29361
+ .ant-message[class],
29362
+ .ant-menu[class],
29363
+ .ant-input-number[class],
29364
+ .ant-input-group[class],
29365
+ .ant-input[class],
29366
+ .ant-form[class],
29367
+ .ant-form-item[class],
29368
+ .ant-dropdown[class],
29369
+ .ant-drawer[class],
29370
+ .ant-divider[class],
29371
+ .ant-descriptions[class],
29372
+ .ant-collapse[class],
29373
+ .ant-calendar[class],
29374
+ .ant-alert[class],
29375
+ .ant-list[class],
29376
+ .ant-mentions[class],
29377
+ .ant-mentions-measure[class],
29378
+ .ant-mentions-dropdown[class],
29379
+ .ant-mentions > textarea[class],
29380
+ .ant-notification[class],
29381
+ .ant-page-header[class],
29382
+ .ant-table-filter-dropdown[class],
29383
+ .ant-tabs-dropdown[class],
29384
+ .ant-tabs[class],
29385
+ .ant-tag[class],
29386
+ .ant-timeline[class] {
29387
+ font-variant-ligatures: no-contextual;
29388
+ }
29389
+
29278
29390
  /* http://meyerweb.com/eric/tools/css/reset/
29279
29391
  Modified based on Eric Meyer’s
29280
29392
  */
@@ -29573,52 +29685,66 @@ html body {
29573
29685
  margin-left: 1px;
29574
29686
  }
29575
29687
 
29576
- .E_c18bcrac {
29577
- display: inline-block;
29578
- width: 100%;
29579
- }
29580
- .E_c18bcrac .recharts-wrapper {
29581
- margin-left: 4px;
29582
- }
29583
-
29584
- .E_cro7kg2 {
29585
- padding: 4px;
29586
- }
29587
-
29588
- .E_c14wcxf0 {
29688
+ .E_s1ebs0ra {
29589
29689
  display: flex;
29690
+ align-items: center;
29590
29691
  justify-content: space-between;
29692
+ background: #edf0f7;
29693
+ padding: 8px 12px;
29694
+ position: sticky;
29695
+ top: 0;
29696
+ z-index: 1;
29697
+ margin-bottom: -52px;
29698
+ }
29699
+ .E_s1ebs0ra .select-total {
29700
+ display: flex;
29591
29701
  align-items: center;
29592
- font-size: 13px;
29593
- line-height: 24px;
29594
- color: #cccccc;
29702
+ font-weight: 700;
29703
+ flex-shrink: 0;
29704
+ }
29705
+ .E_s1ebs0ra .select-total .icon-wrapper {
29706
+ cursor: pointer;
29707
+ margin-left: 8px;
29708
+ width: 32px;
29709
+ height: 32px;
29710
+ border-radius: 50%;
29711
+ justify-content: center;
29712
+ }
29713
+ .E_s1ebs0ra .select-total .icon-wrapper:hover {
29714
+ background: rgba(225, 230, 241, 0.6);
29715
+ }
29716
+ .E_s1ebs0ra .action-group {
29717
+ flex: 1;
29718
+ margin-left: 88px;
29595
29719
  white-space: nowrap;
29720
+ text-align: right;
29721
+ position: relative;
29722
+ padding: 4px 0;
29723
+ margin-top: -4px;
29724
+ overflow: hidden;
29596
29725
  }
29597
- .E_c14wcxf0 label {
29598
- margin-right: 32px;
29726
+ .E_s1ebs0ra .action-group .sub-menu-delete {
29727
+ transform: translateY(-4px);
29599
29728
  }
29600
-
29601
- .E_coy29mj.E_c14wcxf0 {
29602
- font-weight: bold;
29603
- color: white;
29729
+ .E_s1ebs0ra .action-group button {
29730
+ border: none;
29604
29731
  }
29605
-
29606
- .E_s11212zy {
29607
- width: 8px;
29608
- height: 8px;
29609
- border-radius: 2px;
29610
- display: inline-block;
29611
- background: var(--s11212zy-0);
29612
- border: 1px solid #fff;
29613
- box-sizing: content-box;
29614
- margin-right: 6px;
29732
+ .E_s1ebs0ra .action-group > *:not(:last-child) {
29733
+ margin-right: 8px;
29615
29734
  }
29616
-
29617
- .E_p1lyky6c > :first-child {
29618
- font-weight: bold;
29619
- color: white;
29735
+ .E_s1ebs0ra .action-group > button:last-child {
29620
29736
  margin-right: 4px;
29621
29737
  }
29738
+ .E_s1ebs0ra .action-group .more-btn {
29739
+ cursor: pointer;
29740
+ width: 32px;
29741
+ height: 32px;
29742
+ justify-content: center;
29743
+ border-radius: 50%;
29744
+ }
29745
+ .E_s1ebs0ra .action-group .more-btn:hover {
29746
+ background: #fff;
29747
+ }
29622
29748
 
29623
29749
  .E_gmyahx3 {
29624
29750
  cursor: pointer;
@@ -29630,29 +29756,6 @@ html body {
29630
29756
  color: #0080ff;
29631
29757
  }
29632
29758
 
29633
- span.E_tqjc4ui {
29634
- margin: 0 2px;
29635
- }
29636
-
29637
- .E_n12mqh7z {
29638
- display: flex;
29639
- align-items: center;
29640
- font-size: 12px;
29641
- line-height: 18px;
29642
- }
29643
- .E_n12mqh7z:not(:last-child) {
29644
- margin-bottom: 4px;
29645
- }
29646
-
29647
- .E_tf5bynu {
29648
- margin: 0 3px;
29649
- }
29650
-
29651
- .E_tcckoz1 {
29652
- max-height: 400px;
29653
- overflow: auto;
29654
- }
29655
-
29656
29759
  .E_clm1wy1 {
29657
29760
  width: 192px;
29658
29761
  height: 246px;
@@ -29746,247 +29849,93 @@ span.E_tqjc4ui {
29746
29849
  border-radius: 2px;
29747
29850
  }
29748
29851
 
29749
- .E_ou7iq30 {
29750
- overflow: hidden;
29751
- text-overflow: ellipsis;
29852
+ .E_c18bcrac {
29853
+ display: inline-block;
29854
+ width: 100%;
29752
29855
  }
29753
-
29754
- .E_s1tui002 {
29755
- white-space: nowrap;
29856
+ .E_c18bcrac .recharts-wrapper {
29857
+ margin-left: 4px;
29756
29858
  }
29757
29859
 
29758
- .E_mxrc2zg {
29759
- display: -webkit-box;
29760
- -webkit-line-clamp: var(--mxrc2zg-0);
29761
- -webkit-box-orient: vertical;
29762
- word-break: break-all;
29860
+ .E_cro7kg2 {
29861
+ padding: 4px;
29763
29862
  }
29764
29863
 
29765
- .E_t1vv6d68 .ant-tooltip-arrow {
29766
- display: none;
29864
+ .E_c14wcxf0 {
29865
+ display: flex;
29866
+ justify-content: space-between;
29867
+ align-items: center;
29868
+ font-size: 13px;
29869
+ line-height: 24px;
29870
+ color: #cccccc;
29871
+ white-space: nowrap;
29767
29872
  }
29768
- .E_t1vv6d68 .ant-tooltip-inner {
29769
- background: rgba(23, 38, 64, 0.8);
29770
- border-radius: 4px;
29873
+ .E_c14wcxf0 label {
29874
+ margin-right: 32px;
29771
29875
  }
29772
- .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
29773
- visibility: hidden;
29876
+
29877
+ .E_coy29mj.E_c14wcxf0 {
29878
+ font-weight: bold;
29879
+ color: white;
29774
29880
  }
29775
29881
 
29776
- .E_s1at6qmn.ant-layout-sider {
29777
- background: #edf0f7;
29778
- padding: 32px 8px;
29779
- overflow: auto;
29882
+ .E_s11212zy {
29883
+ width: 8px;
29884
+ height: 8px;
29885
+ border-radius: 2px;
29886
+ display: inline-block;
29887
+ background: var(--s11212zy-0);
29888
+ border: 1px solid #fff;
29889
+ box-sizing: content-box;
29890
+ margin-right: 6px;
29780
29891
  }
29781
- .E_s1at6qmn .ant-layout-sider-children {
29782
- display: flex;
29783
- flex-direction: column;
29784
- justify-content: space-between;
29892
+
29893
+ .E_p1lyky6c > :first-child {
29894
+ font-weight: bold;
29895
+ color: white;
29896
+ margin-right: 4px;
29785
29897
  }
29786
- .E_s1at6qmn footer {
29787
- display: flex;
29898
+
29899
+ .E_c1up1pdz {
29900
+ width: 648px;
29788
29901
  }
29789
- .E_s1at6qmn .ant-menu {
29790
- background: #edf0f7;
29902
+ .E_c1up1pdz.active {
29903
+ border-color: #0080ff;
29791
29904
  }
29792
- .E_s1at6qmn .ant-menu a {
29793
- color: #00122e;
29794
- width: 180px;
29795
- overflow: hidden;
29796
- text-overflow: ellipsis;
29905
+ .E_c1up1pdz.active > header {
29906
+ background: rgba(0, 128, 255, 0.1);
29797
29907
  }
29798
- .E_s1at6qmn .ant-menu-vertical {
29799
- margin-bottom: 24px;
29908
+ .E_c1up1pdz .expand {
29909
+ padding: 12px;
29800
29910
  }
29801
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
29802
- margin: 0;
29911
+ .E_c1up1pdz .field-item {
29912
+ display: flex;
29913
+ padding: 10px 0;
29914
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
29803
29915
  }
29804
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
29805
- font-size: 12px;
29806
- padding: 0 8px 4px;
29807
- line-height: 18px;
29916
+ .E_c1up1pdz .field-item:last-child {
29917
+ border-bottom: none;
29918
+ padding-bottom: 0;
29808
29919
  }
29809
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
29810
- padding: 0;
29920
+ .E_c1up1pdz .field-item label {
29921
+ line-height: 32px;
29922
+ width: 100px;
29923
+ color: rgba(62, 70, 82, 0.6);
29811
29924
  }
29812
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
29813
- padding-bottom: 24px;
29925
+ .E_c1up1pdz .help {
29926
+ color: rgba(62, 70, 82, 0.6);
29927
+ margin-top: 5px;
29814
29928
  }
29815
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
29816
- margin-bottom: 24px;
29817
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
29929
+ .E_c1up1pdz .ant-input-affix-wrapper,
29930
+ .E_c1up1pdz .ant-picker {
29931
+ width: 128px;
29818
29932
  }
29819
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
29820
- transition: none;
29933
+
29934
+ .E_c156wh19 {
29821
29935
  display: flex;
29822
29936
  align-items: center;
29823
- height: 32px;
29824
- line-height: 22px;
29825
- padding: 0 8px;
29826
- }
29827
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
29828
- margin-right: 12px;
29829
- }
29830
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
29831
- margin: 0;
29832
- margin-bottom: 2px;
29833
- }
29834
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
29835
- background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
29836
- box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
29837
- border-radius: 6px;
29838
- color: #fff;
29839
- }
29840
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
29841
- color: #fff;
29842
- }
29843
- .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 {
29844
- background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
29845
- box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
29846
- border-radius: 6px;
29847
- }
29848
-
29849
- .E_s1wu0lms .ant-menu-item-group-title {
29850
- white-space: nowrap;
29851
- transition: all 0s;
29852
- }
29853
- .E_s1wu0lms.shrink {
29854
- transition: all 0s;
29855
- overflow: hidden;
29856
- }
29857
- .E_s1wu0lms.shrink .ant-menu-item-group-title {
29858
- visibility: hidden;
29859
- }
29860
- .E_s1wu0lms.shrink .ant-menu-item {
29861
- width: 36px;
29862
- padding: 0 6px;
29863
- }
29864
-
29865
- .E_n1ugzfva {
29866
- display: flex;
29867
- place-items: center;
29868
- width: 100% !important;
29869
- }
29870
- .E_n1ugzfva[disabled] {
29871
- color: rgba(0, 0, 0, 0.25) !important;
29872
- opacity: 1 !important;
29873
- }
29874
- .E_n1ugzfva.ant-btn {
29875
- width: 100%;
29876
- color: #00122e;
29877
- }
29878
- .E_n1ugzfva .icon-wrapper {
29879
- margin-right: 12px;
29880
- }
29881
- .E_n1ugzfva .link-title {
29882
- flex: 1;
29883
- overflow: hidden;
29884
- white-space: nowrap;
29885
- text-overflow: ellipsis;
29886
- text-align: left;
29887
- }
29888
-
29889
- .E_s1ebs0ra {
29890
- display: flex;
29891
- align-items: center;
29892
- justify-content: space-between;
29893
- background: #edf0f7;
29894
- padding: 8px 12px;
29895
- position: sticky;
29896
- top: 0;
29897
- z-index: 1;
29898
- margin-bottom: -52px;
29899
- }
29900
- .E_s1ebs0ra .select-total {
29901
- display: flex;
29902
- align-items: center;
29903
- font-weight: 700;
29904
- flex-shrink: 0;
29905
- }
29906
- .E_s1ebs0ra .select-total .icon-wrapper {
29907
- cursor: pointer;
29908
- margin-left: 8px;
29909
- width: 32px;
29910
- height: 32px;
29911
- border-radius: 50%;
29912
- justify-content: center;
29913
- }
29914
- .E_s1ebs0ra .select-total .icon-wrapper:hover {
29915
- background: rgba(225, 230, 241, 0.6);
29916
- }
29917
- .E_s1ebs0ra .action-group {
29918
- flex: 1;
29919
- margin-left: 88px;
29920
- white-space: nowrap;
29921
- text-align: right;
29922
- position: relative;
29923
- padding: 4px 0;
29924
- margin-top: -4px;
29925
- overflow: hidden;
29926
- }
29927
- .E_s1ebs0ra .action-group .sub-menu-delete {
29928
- transform: translateY(-4px);
29929
- }
29930
- .E_s1ebs0ra .action-group button {
29931
- border: none;
29932
- }
29933
- .E_s1ebs0ra .action-group > *:not(:last-child) {
29934
- margin-right: 8px;
29935
- }
29936
- .E_s1ebs0ra .action-group > button:last-child {
29937
- margin-right: 4px;
29938
- }
29939
- .E_s1ebs0ra .action-group .more-btn {
29940
- cursor: pointer;
29941
- width: 32px;
29942
- height: 32px;
29943
- justify-content: center;
29944
- border-radius: 50%;
29945
- }
29946
- .E_s1ebs0ra .action-group .more-btn:hover {
29947
- background: #fff;
29948
- }
29949
-
29950
- .E_c1up1pdz {
29951
- width: 648px;
29952
- }
29953
- .E_c1up1pdz.active {
29954
- border-color: #0080ff;
29955
- }
29956
- .E_c1up1pdz.active > header {
29957
- background: rgba(0, 128, 255, 0.1);
29958
- }
29959
- .E_c1up1pdz .expand {
29960
- padding: 12px;
29961
- }
29962
- .E_c1up1pdz .field-item {
29963
- display: flex;
29964
- padding: 10px 0;
29965
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
29966
- }
29967
- .E_c1up1pdz .field-item:last-child {
29968
- border-bottom: none;
29969
- padding-bottom: 0;
29970
- }
29971
- .E_c1up1pdz .field-item label {
29972
- line-height: 32px;
29973
- width: 100px;
29974
- color: rgba(62, 70, 82, 0.6);
29975
- }
29976
- .E_c1up1pdz .help {
29977
- color: rgba(62, 70, 82, 0.6);
29978
- margin-top: 5px;
29979
- }
29980
- .E_c1up1pdz .ant-input-affix-wrapper,
29981
- .E_c1up1pdz .ant-picker {
29982
- width: 128px;
29983
- }
29984
-
29985
- .E_c156wh19 {
29986
- display: flex;
29987
- align-items: center;
29988
- justify-content: space-between;
29989
- word-break: keep-all;
29937
+ justify-content: space-between;
29938
+ word-break: keep-all;
29990
29939
  }
29991
29940
  .E_c156wh19 .title {
29992
29941
  margin: 0 16px 0 8px;
@@ -30087,110 +30036,62 @@ span.E_tqjc4ui {
30087
30036
  color: #fff;
30088
30037
  }
30089
30038
 
30090
- .E_t1sqg15u {
30091
- background: white;
30092
- }
30093
- .E_t1sqg15u.inline .table-row {
30094
- flex-direction: column;
30095
- }
30096
- .E_t1sqg15u.inline .table-row > label {
30097
- padding: 0 16px 7px 0;
30098
- }
30099
- .E_t1sqg15u.has-border .table-header {
30100
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
30039
+ .E_ou7iq30 {
30040
+ overflow: hidden;
30041
+ text-overflow: ellipsis;
30101
30042
  }
30102
- .E_t1sqg15u.has-border .hiddenBorder {
30103
- border-top: none !important;
30043
+
30044
+ .E_s1tui002 {
30045
+ white-space: nowrap;
30104
30046
  }
30105
- .E_t1sqg15u.has-border .table-row + .table-row {
30106
- border-top: 1px solid rgba(225, 230, 241, 0.6);
30047
+
30048
+ .E_mxrc2zg {
30049
+ display: -webkit-box;
30050
+ -webkit-line-clamp: var(--mxrc2zg-0);
30051
+ -webkit-box-orient: vertical;
30052
+ word-break: break-all;
30107
30053
  }
30108
- .E_t1sqg15u.has-border .table-row:last-of-type {
30109
- padding-bottom: 0;
30054
+
30055
+ .E_t1vv6d68 .ant-tooltip-arrow {
30056
+ display: none;
30110
30057
  }
30111
- .E_t1sqg15u.align-right .content {
30112
- text-align: right;
30058
+ .E_t1vv6d68 .ant-tooltip-inner {
30059
+ background: rgba(23, 38, 64, 0.8);
30060
+ border-radius: 4px;
30113
30061
  }
30114
- .E_t1sqg15u .uuid-row {
30115
- display: flex;
30116
- justify-content: space-between;
30062
+ .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
30063
+ visibility: hidden;
30117
30064
  }
30118
- .E_t1sqg15u .uuid-row .id-text {
30119
- white-space: nowrap;
30120
- overflow: hidden;
30121
- text-overflow: ellipsis;
30065
+
30066
+ span.E_tqjc4ui {
30067
+ margin: 0 2px;
30122
30068
  }
30123
30069
 
30124
- .E_t4zczcp {
30070
+ .E_n12mqh7z {
30125
30071
  display: flex;
30126
- justify-content: space-between;
30127
30072
  align-items: center;
30128
- padding: 8px;
30129
- min-height: 32px;
30130
- }
30131
- .E_t4zczcp .table-title {
30132
- color: rgba(44, 56, 82, 0.6);
30133
- font-weight: 600;
30134
30073
  font-size: 12px;
30135
- line-height: 8px;
30074
+ line-height: 18px;
30136
30075
  }
30137
- .E_t4zczcp .edit-icon {
30138
- font-size: 16px;
30139
- color: rgba(10, 37, 85, 0.6);
30140
- cursor: pointer;
30076
+ .E_n12mqh7z:not(:last-child) {
30077
+ margin-bottom: 4px;
30141
30078
  }
30142
30079
 
30143
- .E_t1s7goww {
30144
- font-size: 12px;
30145
- line-height: 18px;
30080
+ .E_tf5bynu {
30081
+ margin: 0 3px;
30146
30082
  }
30147
30083
 
30148
- .E_t93e4cf {
30149
- display: flex;
30150
- padding: 8px 0;
30151
- color: #2d3a56;
30152
- }
30153
- .E_t93e4cf .hidden {
30154
- display: none;
30084
+ .E_tcckoz1 {
30085
+ max-height: 400px;
30086
+ overflow: auto;
30155
30087
  }
30156
- .E_t93e4cf .ant-btn-link {
30157
- height: auto;
30088
+
30089
+ .E_c18gxmrl {
30090
+ border: 1px solid #d8deeb;
30091
+ border-radius: 4px;
30158
30092
  }
30159
- .E_t93e4cf .content {
30160
- overflow: hidden;
30161
- overflow-x: auto;
30162
- width: 100%;
30163
- white-space: pre-wrap;
30164
- }
30165
- .E_t93e4cf .content .ant-btn {
30166
- white-space: pre-wrap;
30167
- text-align: left;
30168
- }
30169
- .E_t93e4cf .content .unit-chart {
30170
- justify-content: flex-start;
30171
- }
30172
-
30173
- .E_rhz2uv5 {
30174
- width: var(--rhz2uv5-0);
30175
- flex-shrink: 0;
30176
- color: rgba(44, 56, 82, 0.6);
30177
- padding-right: 12px;
30178
- }
30179
-
30180
- .E_s1iv0tp1 .enabled-switch {
30181
- display: flex;
30182
- align-items: center;
30183
- }
30184
- .E_s1iv0tp1 .enabled-text {
30185
- margin-right: 8px;
30186
- }
30187
-
30188
- .E_c18gxmrl {
30189
- border: 1px solid #d8deeb;
30190
- border-radius: 4px;
30191
- }
30192
- .E_c18gxmrl + .E_c18gxmrl {
30193
- margin-top: 8px;
30093
+ .E_c18gxmrl + .E_c18gxmrl {
30094
+ margin-top: 8px;
30194
30095
  }
30195
30096
  .E_c18gxmrl:hover {
30196
30097
  border-color: #0080ff;
@@ -30221,272 +30122,235 @@ span.E_tqjc4ui {
30221
30122
  color: #005ed1;
30222
30123
  }
30223
30124
 
30224
- .E_m74vjol {
30225
- display: flex;
30226
- justify-content: space-between;
30227
- width: 100%;
30228
- }
30229
- .E_m74vjol .action {
30230
- margin-left: 16px;
30231
- }
30232
-
30233
- .E_a1o35uvh .ant-alert-message {
30234
- width: 100%;
30235
- }
30236
-
30237
- .E_wg1tsps {
30238
- display: flex;
30239
- align-items: center;
30240
- justify-content: flex-end;
30241
- }
30242
-
30243
- .E_b1ctd5xy {
30244
- display: flex;
30245
- align-items: center;
30246
- width: calc(100% - 40px);
30247
- }
30248
- .E_b1ctd5xy .chart {
30249
- display: inline-block;
30250
- width: 100%;
30251
- }
30252
-
30253
- .E_u1p8acpn {
30254
- min-width: 40px;
30255
- }
30256
- .E_u1p8acpn .unit {
30257
- color: #00122e !important;
30125
+ .E_s1at6qmn.ant-layout-sider {
30126
+ background: #edf0f7;
30127
+ padding: 32px 8px;
30128
+ overflow: auto;
30258
30129
  }
30259
-
30260
- .E_t160l1cm {
30130
+ .E_s1at6qmn .ant-layout-sider-children {
30261
30131
  display: flex;
30262
30132
  flex-direction: column;
30263
- flex: 1;
30264
- /* FIXME:(yanzhen) do this better */
30133
+ justify-content: space-between;
30265
30134
  }
30266
- .E_t160l1cm .tab-bar {
30267
- flex-shrink: 0;
30135
+ .E_s1at6qmn footer {
30268
30136
  display: flex;
30269
- border-bottom: 1px solid rgba(172, 186, 211, 0.6);
30270
- }
30271
- .E_t160l1cm .tab-content {
30272
- height: 100%;
30273
30137
  }
30274
- .E_t160l1cm .tab-menu-item {
30275
- margin-right: 2px;
30276
- padding: 1px 12px;
30277
- line-height: 24px;
30278
- height: 24px;
30279
- color: rgba(44, 56, 82, 0.6);
30280
- border-radius: 4px 4px 0 0;
30281
- cursor: pointer;
30282
- transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
30138
+ .E_s1at6qmn .ant-menu {
30139
+ background: #edf0f7;
30283
30140
  }
30284
- .E_t160l1cm .tab-menu-item:first-child {
30285
- padding-left: 0;
30141
+ .E_s1at6qmn .ant-menu a {
30142
+ color: #00122e;
30143
+ width: 180px;
30144
+ overflow: hidden;
30145
+ text-overflow: ellipsis;
30286
30146
  }
30287
- .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30288
- padding-left: 12px;
30147
+ .E_s1at6qmn .ant-menu-vertical {
30148
+ margin-bottom: 24px;
30289
30149
  }
30290
- .E_t160l1cm .tab-menu-item:hover {
30291
- color: #0080ff;
30292
- background: rgba(211, 218, 235, 0.6);
30150
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
30151
+ margin: 0;
30293
30152
  }
30294
- .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30295
- fill: #0080ff;
30153
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
30154
+ font-size: 12px;
30155
+ padding: 0 8px 4px;
30156
+ line-height: 18px;
30296
30157
  }
30297
- .E_t160l1cm .tab-menu-item:active {
30298
- background: rgba(192, 203, 224, 0.6);
30158
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
30159
+ padding: 0;
30299
30160
  }
30300
- .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30301
- color: #0080ff;
30302
- background: rgba(211, 218, 235, 0.6);
30161
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
30162
+ padding-bottom: 24px;
30303
30163
  }
30304
- .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30305
- background: rgba(192, 203, 224, 0.6);
30164
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
30165
+ margin-bottom: 24px;
30166
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
30306
30167
  }
30307
- .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30308
- background: rgba(0, 128, 255, 0.16);
30168
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
30169
+ transition: none;
30170
+ display: flex;
30171
+ align-items: center;
30172
+ height: 32px;
30173
+ line-height: 22px;
30174
+ padding: 0 8px;
30309
30175
  }
30310
- .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30311
- fill: #0080ff;
30176
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
30177
+ margin-right: 12px;
30312
30178
  }
30313
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30314
- color: #0080ff;
30315
- background: rgba(0, 128, 255, 0.1);
30179
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
30180
+ margin: 0;
30181
+ margin-bottom: 2px;
30316
30182
  }
30317
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30318
- background: rgba(0, 128, 255, 0.16);
30183
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
30184
+ background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
30185
+ box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
30186
+ border-radius: 6px;
30187
+ color: #fff;
30319
30188
  }
30320
- .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30321
- fill: #1d326c;
30189
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
30190
+ color: #fff;
30322
30191
  }
30323
- .E_t160l1cm .tab-menu-item .expand-arrow {
30324
- margin-left: 8px;
30325
- height: 22px;
30192
+ .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 {
30193
+ background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
30194
+ box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
30195
+ border-radius: 6px;
30326
30196
  }
30327
- .E_t160l1cm .tab-menu-item .expand-arrow path {
30328
- fill: rgba(44, 56, 82, 0.6);
30197
+
30198
+ .E_s1wu0lms .ant-menu-item-group-title {
30199
+ white-space: nowrap;
30200
+ transition: all 0s;
30329
30201
  }
30330
- .E_t160l1cm .tab-menu-item-group {
30331
- padding: 0;
30332
- display: flex;
30333
- align-items: center;
30202
+ .E_s1wu0lms.shrink {
30203
+ transition: all 0s;
30334
30204
  overflow: hidden;
30335
30205
  }
30336
- .E_t160l1cm .tab-menu-item-group .main-title {
30337
- opacity: 0;
30338
- max-width: 0;
30339
- transition: max-width 320ms ease, opacity 240ms ease;
30340
- }
30341
- .E_t160l1cm .tab-menu-item-group .sub-title {
30342
- padding: 1px 12px;
30343
- position: relative;
30344
- display: flex;
30345
- }
30346
- .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
30347
- opacity: 0;
30348
- position: absolute;
30349
- top: 50%;
30350
- left: 0;
30351
- transform: translate(-50%, -50%);
30352
- transition: opacity 100ms linear;
30353
- fill: rgba(0, 128, 255, 0.2);
30206
+ .E_s1wu0lms.shrink .ant-menu-item-group-title {
30207
+ visibility: hidden;
30354
30208
  }
30355
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
30356
- color: #0080ff;
30209
+ .E_s1wu0lms.shrink .ant-menu-item {
30210
+ width: 36px;
30211
+ padding: 0 6px;
30357
30212
  }
30358
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
30359
- padding: 1px 12px;
30360
- display: inline-block;
30361
- opacity: 1;
30362
- max-width: 160px;
30213
+
30214
+ .E_n1ugzfva {
30215
+ display: flex;
30216
+ place-items: center;
30217
+ width: 100% !important;
30363
30218
  }
30364
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30365
- padding: 1px 12px;
30366
- color: #005ed1;
30219
+ .E_n1ugzfva[disabled] {
30220
+ color: rgba(0, 0, 0, 0.25) !important;
30221
+ opacity: 1 !important;
30367
30222
  }
30368
- .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30369
- opacity: 1;
30223
+ .E_n1ugzfva.ant-btn {
30224
+ width: 100%;
30225
+ color: #00122e;
30370
30226
  }
30371
- .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 {
30372
- background: rgba(0, 128, 255, 0.16);
30227
+ .E_n1ugzfva .icon-wrapper {
30228
+ margin-right: 12px;
30373
30229
  }
30374
- .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 {
30375
- opacity: 0;
30230
+ .E_n1ugzfva .link-title {
30231
+ flex: 1;
30232
+ overflow: hidden;
30233
+ white-space: nowrap;
30234
+ text-overflow: ellipsis;
30235
+ text-align: left;
30376
30236
  }
30377
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30378
- padding: 4px 16px;
30379
- height: 32px;
30380
- border-radius: 6px 6px 0 0;
30237
+
30238
+ .E_t1sqg15u {
30239
+ background: white;
30381
30240
  }
30382
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30383
- padding-left: 0;
30241
+ .E_t1sqg15u.inline .table-row {
30242
+ flex-direction: column;
30384
30243
  }
30385
- .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 {
30386
- padding-left: 16px;
30244
+ .E_t1sqg15u.inline .table-row > label {
30245
+ padding: 0 16px 7px 0;
30387
30246
  }
30388
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
30389
- margin-left: 11px;
30390
- height: 24px;
30247
+ .E_t1sqg15u.has-border .table-header {
30248
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
30391
30249
  }
30392
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
30393
- padding: 0;
30250
+ .E_t1sqg15u.has-border .hiddenBorder {
30251
+ border-top: none !important;
30394
30252
  }
30395
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
30396
- padding: 4px 16px;
30253
+ .E_t1sqg15u.has-border .table-row + .table-row {
30254
+ border-top: 1px solid rgba(225, 230, 241, 0.6);
30397
30255
  }
30398
- .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 {
30399
- padding: 4px 16px;
30256
+ .E_t1sqg15u.has-border .table-row:last-of-type {
30257
+ padding-bottom: 0;
30400
30258
  }
30401
- .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
30402
- background: #fff;
30259
+ .E_t1sqg15u.align-right .content {
30260
+ text-align: right;
30403
30261
  }
30404
- .E_t160l1cm .tab-menu-item-light:active {
30405
- color: #005ed1;
30262
+ .E_t1sqg15u .uuid-row {
30263
+ display: flex;
30264
+ justify-content: space-between;
30406
30265
  }
30407
- .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
30408
- background: #fff;
30409
- color: #1d326c;
30266
+ .E_t1sqg15u .uuid-row .id-text {
30267
+ white-space: nowrap;
30268
+ overflow: hidden;
30269
+ text-overflow: ellipsis;
30410
30270
  }
30411
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
30412
- color: rgba(45, 58, 86, 0.6);
30271
+
30272
+ .E_t4zczcp {
30273
+ display: flex;
30274
+ justify-content: space-between;
30275
+ align-items: center;
30276
+ padding: 8px;
30277
+ min-height: 32px;
30413
30278
  }
30414
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
30415
- color: #1d326c;
30279
+ .E_t4zczcp .table-title {
30280
+ color: rgba(44, 56, 82, 0.6);
30281
+ font-weight: 600;
30282
+ font-size: 12px;
30283
+ line-height: 8px;
30416
30284
  }
30417
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30418
- fill: #d8deeb;
30285
+ .E_t4zczcp .edit-icon {
30286
+ font-size: 16px;
30287
+ color: rgba(10, 37, 85, 0.6);
30288
+ cursor: pointer;
30419
30289
  }
30420
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
30421
- fill: #1d326c;
30290
+
30291
+ .E_t1s7goww {
30292
+ font-size: 12px;
30293
+ line-height: 18px;
30422
30294
  }
30423
- .E_t160l1cm .tab-content {
30424
- flex: 1;
30295
+
30296
+ .E_t93e4cf {
30425
30297
  display: flex;
30426
- flex-direction: column;
30427
- }
30428
- .E_t160l1cm.is-overview .tab-content {
30429
- overflow: visible;
30298
+ padding: 8px 0;
30299
+ color: #2d3a56;
30430
30300
  }
30431
-
30432
- .E_t14npdqr {
30433
- max-width: 240px;
30434
- animation: none;
30301
+ .E_t93e4cf .hidden {
30302
+ display: none;
30435
30303
  }
30436
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
30437
- border: 1px solid #0080ff;
30438
- padding: 0;
30304
+ .E_t93e4cf .ant-btn-link {
30305
+ height: auto;
30439
30306
  }
30440
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30441
- margin: 0;
30442
- height: 32px;
30443
- line-height: 32px;
30444
- font-size: 13px;
30445
- padding: 0 10px;
30446
- display: block;
30307
+ .E_t93e4cf .content {
30447
30308
  overflow: hidden;
30448
- text-overflow: ellipsis;
30449
- white-space: nowrap;
30309
+ overflow-x: auto;
30310
+ width: 100%;
30311
+ white-space: pre-wrap;
30450
30312
  }
30451
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
30452
- content: " ";
30453
- height: 1px;
30454
- width: calc(100% + 10px);
30455
- background: rgba(172, 186, 211, 0.6);
30456
- display: block;
30313
+ .E_t93e4cf .content .ant-btn {
30314
+ white-space: pre-wrap;
30315
+ text-align: left;
30457
30316
  }
30458
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
30459
- color: #0080ff;
30460
- background: transparent;
30317
+ .E_t93e4cf .content .unit-chart {
30318
+ justify-content: flex-start;
30461
30319
  }
30462
30320
 
30463
- .E_b1nip9bk {
30464
- padding: 4px 11px;
30321
+ .E_rhz2uv5 {
30322
+ width: var(--rhz2uv5-0);
30323
+ flex-shrink: 0;
30324
+ color: rgba(44, 56, 82, 0.6);
30325
+ padding-right: 12px;
30465
30326
  }
30466
30327
 
30467
- .E_bqamoqe {
30468
- white-space: nowrap;
30469
- filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
30328
+ .E_m74vjol {
30329
+ display: flex;
30330
+ justify-content: space-between;
30331
+ width: 100%;
30470
30332
  }
30471
- .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30472
- --color: #0080ff;
30333
+ .E_m74vjol .action {
30334
+ margin-left: 16px;
30473
30335
  }
30474
- .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] {
30475
- --color: #0080ff;
30336
+
30337
+ .E_a1o35uvh.ant-alert-closable {
30338
+ padding-right: 12px;
30476
30339
  }
30477
- .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30478
- margin-left: 1px;
30340
+ .E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
30341
+ height: fit-content;
30342
+ margin-left: 16px;
30479
30343
  }
30480
- .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30481
- border-top-right-radius: 0;
30482
- border-bottom-right-radius: 0;
30344
+ .E_a1o35uvh .ant-alert-message {
30345
+ flex: 1;
30483
30346
  }
30484
- .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30485
- border-top-left-radius: 0;
30486
- border-bottom-left-radius: 0;
30347
+
30348
+ .E_s1iv0tp1 .enabled-switch {
30349
+ display: flex;
30350
+ align-items: center;
30487
30351
  }
30488
- .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30489
- border-radius: unset;
30352
+ .E_s1iv0tp1 .enabled-text {
30353
+ margin-right: 8px;
30490
30354
  }
30491
30355
 
30492
30356
  .E_b1wx3t3t.ant-btn-icon-only {
@@ -30501,14 +30365,17 @@ span.E_tqjc4ui {
30501
30365
  line-height: 22px;
30502
30366
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
30503
30367
  transform: scale(var(--scale)) translateY(var(--transY)) translateZ(0);
30368
+ padding: 5px 12px;
30504
30369
  }
30505
30370
  .E_b1wx3t3t.ant-btn.ant-btn-lg {
30506
30371
  height: 40px;
30507
30372
  line-height: 24px;
30373
+ padding: 8px 16px;
30508
30374
  }
30509
30375
  .E_b1wx3t3t.ant-btn.ant-btn-sm {
30510
30376
  height: 24px;
30511
30377
  line-height: 20px;
30378
+ padding: 2px 8px;
30512
30379
  }
30513
30380
  .E_b1wx3t3t.ant-btn.ant-btn-circle, .E_b1wx3t3t.ant-btn.ant-btn-circle-outline {
30514
30381
  border-radius: 50%;
@@ -30550,6 +30417,7 @@ span.E_tqjc4ui {
30550
30417
  background: var(--background-color-disabled, var(--background-color));
30551
30418
  border-color: var(--border-color-disabled, var(--border-color, transparent));
30552
30419
  opacity: 0.5;
30420
+ --transY: 0;
30553
30421
  }
30554
30422
  .E_b1wx3t3t.ant-btn-link[disabled] {
30555
30423
  color: #0080ff;
@@ -30678,95 +30546,331 @@ span.E_tqjc4ui {
30678
30546
  #ffffff;
30679
30547
  --box-shadow-color-focus: rgba(255, 74, 74, 0.16);
30680
30548
  }
30681
- .E_b1wx3t3t.ant-btn-ordinary-onTint {
30682
- --color: #1d326c;
30683
- --border-color: #fff;
30684
- --background-color: #fff;
30685
- --background-color-hover: rgba(211, 218, 235, 0.6);
30686
- --background-color-active: rgba(192, 203, 224, 0.6);
30687
- --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30688
- box-shadow: none;
30549
+ .E_b1wx3t3t.ant-btn-ordinary-onTint {
30550
+ --color: #1d326c;
30551
+ --border-color: #fff;
30552
+ --background-color: #fff;
30553
+ --background-color-hover: rgba(211, 218, 235, 0.6);
30554
+ --background-color-active: rgba(192, 203, 224, 0.6);
30555
+ --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30556
+ box-shadow: none;
30557
+ }
30558
+ .E_b1wx3t3t.ant-btn-ordinary-onTint.ordinary-blue {
30559
+ --color: #0080ff;
30560
+ --border-color: #fff;
30561
+ --background-color: #fff;
30562
+ --background-color-hover: rgba(0, 136, 255, 0.16);
30563
+ --background-color-active: rgba(0, 136, 255, 0.2);
30564
+ --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30565
+ box-shadow: none;
30566
+ }
30567
+ .E_b1wx3t3t.ant-btn-ordinary-onTint.ant-btn-dangerous {
30568
+ --color: #f0483e;
30569
+ --background-color-hover: rgba(255, 74, 74, 0.16);
30570
+ --background-color-active: rgba(255, 74, 74, 0.2);
30571
+ --box-shadow-color-focus: rgba(255, 74, 74, 0.16);
30572
+ }
30573
+ .E_b1wx3t3t.ant-btn-quiet {
30574
+ --color: rgba(44, 56, 82, 0.6);
30575
+ --border-width: 0;
30576
+ --background-color: transparent;
30577
+ --background-color-hover: rgba(211, 218, 235, 0.6);
30578
+ --background-color-active: rgba(192, 203, 224, 0.6);
30579
+ --background-color-focus: #fff;
30580
+ --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30581
+ box-shadow: none;
30582
+ }
30583
+ .E_b1wx3t3t.ant-btn-quiet.ant-btn-dangerous {
30584
+ --color: #f0483e;
30585
+ --background-color-hover: rgba(255, 74, 74, 0.16);
30586
+ --background-color-active: rgba(255, 74, 74, 0.2);
30587
+ --box-shadow-color-focus: rgba(255, 74, 74, 0.16);
30588
+ }
30589
+ .E_b1wx3t3t.ant-btn-quiet.quiet-blue {
30590
+ --color: #0080ff;
30591
+ --background-color: transparent;
30592
+ --background-color-hover: rgba(0, 136, 255, 0.16);
30593
+ --background-color-active: rgba(0, 136, 255, 0.2);
30594
+ --background-color-focus: #fff;
30595
+ --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30596
+ }
30597
+ .E_b1wx3t3t .button-prefix-icon {
30598
+ margin-right: 8px;
30599
+ display: inline-flex;
30600
+ }
30601
+ .E_b1wx3t3t .button-suffix-icon {
30602
+ margin-left: 8px;
30603
+ display: inline-flex;
30604
+ }
30605
+ .E_b1wx3t3t .icon-wrapper {
30606
+ display: flex;
30607
+ justify-content: center;
30608
+ }
30609
+
30610
+ button.E_n7k2c6r {
30611
+ padding: 0;
30612
+ }
30613
+
30614
+ .E_b1nip9bk {
30615
+ padding: 4px 11px;
30616
+ }
30617
+
30618
+ .E_bqamoqe {
30619
+ white-space: nowrap;
30620
+ filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
30621
+ }
30622
+ .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30623
+ --color: #0080ff;
30624
+ }
30625
+ .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] {
30626
+ --color: #0080ff;
30627
+ }
30628
+ .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30629
+ margin-left: 1px;
30630
+ }
30631
+ .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30632
+ border-top-right-radius: 0;
30633
+ border-bottom-right-radius: 0;
30634
+ }
30635
+ .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30636
+ border-top-left-radius: 0;
30637
+ border-bottom-left-radius: 0;
30638
+ }
30639
+ .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30640
+ border-radius: unset;
30641
+ }
30642
+
30643
+ .E_wg1tsps {
30644
+ display: flex;
30645
+ align-items: center;
30646
+ justify-content: flex-end;
30647
+ }
30648
+
30649
+ .E_b1ctd5xy {
30650
+ display: flex;
30651
+ align-items: center;
30652
+ width: calc(100% - 40px);
30653
+ }
30654
+ .E_b1ctd5xy .chart {
30655
+ display: inline-block;
30656
+ width: 100%;
30657
+ }
30658
+
30659
+ .E_u1p8acpn {
30660
+ min-width: 40px;
30661
+ }
30662
+ .E_u1p8acpn .unit {
30663
+ color: #00122e !important;
30664
+ }
30665
+
30666
+ .E_t160l1cm {
30667
+ display: flex;
30668
+ flex-direction: column;
30669
+ flex: 1;
30670
+ /* FIXME:(yanzhen) do this better */
30671
+ }
30672
+ .E_t160l1cm .tab-bar {
30673
+ flex-shrink: 0;
30674
+ display: flex;
30675
+ border-bottom: 1px solid rgba(172, 186, 211, 0.6);
30676
+ }
30677
+ .E_t160l1cm .tab-content {
30678
+ height: 100%;
30679
+ }
30680
+ .E_t160l1cm .tab-menu-item {
30681
+ margin-right: 2px;
30682
+ padding: 1px 12px;
30683
+ line-height: 24px;
30684
+ height: 24px;
30685
+ color: rgba(44, 56, 82, 0.6);
30686
+ border-radius: 4px 4px 0 0;
30687
+ cursor: pointer;
30688
+ transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
30689
+ }
30690
+ .E_t160l1cm .tab-menu-item:first-child {
30691
+ padding-left: 0;
30692
+ }
30693
+ .E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
30694
+ padding-left: 12px;
30695
+ }
30696
+ .E_t160l1cm .tab-menu-item:hover {
30697
+ color: #0080ff;
30698
+ background: rgba(211, 218, 235, 0.6);
30699
+ }
30700
+ .E_t160l1cm .tab-menu-item:hover .expand-arrow path {
30701
+ fill: #0080ff;
30702
+ }
30703
+ .E_t160l1cm .tab-menu-item:active {
30704
+ background: rgba(192, 203, 224, 0.6);
30705
+ }
30706
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open {
30707
+ color: #0080ff;
30708
+ background: rgba(211, 218, 235, 0.6);
30709
+ }
30710
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
30711
+ background: rgba(192, 203, 224, 0.6);
30712
+ }
30713
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
30714
+ background: rgba(0, 128, 255, 0.16);
30715
+ }
30716
+ .E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
30717
+ fill: #0080ff;
30718
+ }
30719
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected {
30720
+ color: #0080ff;
30721
+ background: rgba(0, 128, 255, 0.1);
30722
+ }
30723
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
30724
+ background: rgba(0, 128, 255, 0.16);
30725
+ }
30726
+ .E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
30727
+ fill: #1d326c;
30728
+ }
30729
+ .E_t160l1cm .tab-menu-item .expand-arrow {
30730
+ margin-left: 8px;
30731
+ height: 22px;
30732
+ }
30733
+ .E_t160l1cm .tab-menu-item .expand-arrow path {
30734
+ fill: rgba(44, 56, 82, 0.6);
30735
+ }
30736
+ .E_t160l1cm .tab-menu-item-group {
30737
+ padding: 0;
30738
+ display: flex;
30739
+ align-items: center;
30740
+ overflow: hidden;
30741
+ }
30742
+ .E_t160l1cm .tab-menu-item-group .main-title {
30743
+ opacity: 0;
30744
+ max-width: 0;
30745
+ transition: max-width 320ms ease, opacity 240ms ease;
30746
+ }
30747
+ .E_t160l1cm .tab-menu-item-group .sub-title {
30748
+ padding: 1px 12px;
30749
+ position: relative;
30750
+ display: flex;
30751
+ }
30752
+ .E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
30753
+ opacity: 0;
30754
+ position: absolute;
30755
+ top: 50%;
30756
+ left: 0;
30757
+ transform: translate(-50%, -50%);
30758
+ transition: opacity 100ms linear;
30759
+ fill: rgba(0, 128, 255, 0.2);
30760
+ }
30761
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
30762
+ color: #0080ff;
30763
+ }
30764
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
30765
+ padding: 1px 12px;
30766
+ display: inline-block;
30767
+ opacity: 1;
30768
+ max-width: 160px;
30769
+ }
30770
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
30771
+ padding: 1px 12px;
30772
+ color: #005ed1;
30773
+ }
30774
+ .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30775
+ opacity: 1;
30776
+ }
30777
+ .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 {
30778
+ background: rgba(0, 128, 255, 0.16);
30779
+ }
30780
+ .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 {
30781
+ opacity: 0;
30782
+ }
30783
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
30784
+ padding: 4px 16px;
30785
+ height: 32px;
30786
+ border-radius: 6px 6px 0 0;
30787
+ }
30788
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
30789
+ padding-left: 0;
30790
+ }
30791
+ .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 {
30792
+ padding-left: 16px;
30793
+ }
30794
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
30795
+ margin-left: 11px;
30796
+ height: 24px;
30797
+ }
30798
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
30799
+ padding: 0;
30689
30800
  }
30690
- .E_b1wx3t3t.ant-btn-ordinary-onTint.ordinary-blue {
30691
- --color: #0080ff;
30692
- --border-color: #fff;
30693
- --background-color: #fff;
30694
- --background-color-hover: rgba(0, 136, 255, 0.16);
30695
- --background-color-active: rgba(0, 136, 255, 0.2);
30696
- --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30697
- box-shadow: none;
30801
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
30802
+ padding: 4px 16px;
30698
30803
  }
30699
- .E_b1wx3t3t.ant-btn-ordinary-onTint.ant-btn-dangerous {
30700
- --color: #f0483e;
30701
- --background-color-hover: rgba(255, 74, 74, 0.16);
30702
- --background-color-active: rgba(255, 74, 74, 0.2);
30703
- --box-shadow-color-focus: rgba(255, 74, 74, 0.16);
30804
+ .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 {
30805
+ padding: 4px 16px;
30704
30806
  }
30705
- .E_b1wx3t3t.ant-btn-quiet {
30706
- --color: rgba(44, 56, 82, 0.6);
30707
- --border-width: 0;
30708
- --background-color: transparent;
30709
- --background-color-hover: rgba(211, 218, 235, 0.6);
30710
- --background-color-active: rgba(192, 203, 224, 0.6);
30711
- --background-color-focus: #fff;
30712
- --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30713
- box-shadow: none;
30807
+ .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
30808
+ background: #fff;
30714
30809
  }
30715
- .E_b1wx3t3t.ant-btn-quiet.ant-btn-dangerous {
30716
- --color: #f0483e;
30717
- --background-color-hover: rgba(255, 74, 74, 0.16);
30718
- --background-color-active: rgba(255, 74, 74, 0.2);
30719
- --box-shadow-color-focus: rgba(255, 74, 74, 0.16);
30810
+ .E_t160l1cm .tab-menu-item-light:active {
30811
+ color: #005ed1;
30720
30812
  }
30721
- .E_b1wx3t3t.ant-btn-quiet.quiet-blue {
30722
- --color: #0080ff;
30723
- --background-color: transparent;
30724
- --background-color-hover: rgba(0, 136, 255, 0.16);
30725
- --background-color-active: rgba(0, 136, 255, 0.2);
30726
- --background-color-focus: #fff;
30727
- --box-shadow-color-focus: rgba(0, 136, 255, 0.16);
30813
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
30814
+ background: #fff;
30815
+ color: #1d326c;
30728
30816
  }
30729
- .E_b1wx3t3t .button-prefix-icon {
30730
- margin-right: 8px;
30731
- display: inline-flex;
30817
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
30818
+ color: rgba(45, 58, 86, 0.6);
30732
30819
  }
30733
- .E_b1wx3t3t .button-suffix-icon {
30734
- margin-left: 8px;
30735
- display: inline-flex;
30820
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
30821
+ color: #1d326c;
30736
30822
  }
30737
- .E_b1wx3t3t .icon-wrapper {
30823
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
30824
+ fill: #d8deeb;
30825
+ }
30826
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
30827
+ fill: #1d326c;
30828
+ }
30829
+ .E_t160l1cm .tab-content {
30830
+ flex: 1;
30738
30831
  display: flex;
30739
- justify-content: center;
30832
+ flex-direction: column;
30740
30833
  }
30741
-
30742
- button.E_n7k2c6r {
30743
- padding: 0;
30834
+ .E_t160l1cm.is-overview .tab-content {
30835
+ overflow: visible;
30744
30836
  }
30745
30837
 
30746
- .E_c1uzzomf {
30747
- margin-bottom: 16px;
30838
+ .E_t14npdqr {
30839
+ max-width: 240px;
30840
+ animation: none;
30748
30841
  }
30749
- .E_c1uzzomf .card-title {
30750
- font-size: 16px;
30751
- color: rgba(44, 56, 82, 0.6);
30752
- font-weight: 700;
30842
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
30843
+ border: 1px solid #0080ff;
30844
+ padding: 0;
30845
+ }
30846
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30847
+ margin: 0;
30848
+ height: 32px;
30753
30849
  line-height: 32px;
30850
+ font-size: 13px;
30851
+ padding: 0 10px;
30852
+ display: block;
30853
+ overflow: hidden;
30854
+ text-overflow: ellipsis;
30855
+ white-space: nowrap;
30754
30856
  }
30755
- .E_c1uzzomf .card-body {
30756
- padding: 24px;
30757
- border-radius: 8px;
30758
- background: #fff;
30857
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
30858
+ content: " ";
30859
+ height: 1px;
30860
+ width: calc(100% + 10px);
30861
+ background: rgba(172, 186, 211, 0.6);
30862
+ display: block;
30759
30863
  }
30760
- .E_c1uzzomf .empty {
30761
- font-weight: 700;
30762
- font-size: 14px;
30763
- line-height: 22px;
30764
- color: rgba(0, 21, 64, 0.3);
30765
- text-align: center;
30864
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
30865
+ color: #0080ff;
30866
+ background: transparent;
30766
30867
  }
30767
30868
 
30768
- .E_itxley7.ant-input-group.ant-input-group-compact {
30769
- display: flex;
30869
+ .E_c1yyuluq {
30870
+ border-radius: 8px;
30871
+ }
30872
+ .E_c1yyuluq .ant-card-body {
30873
+ padding: 20px 24px 24px 24px;
30770
30874
  }
30771
30875
 
30772
30876
  .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
@@ -30786,11 +30890,60 @@ button.E_n7k2c6r {
30786
30890
  line-height: 18px;
30787
30891
  }
30788
30892
 
30789
- .E_c1yyuluq {
30893
+ .E_ccrbeuz .ant-collapse-item {
30894
+ border: 0px;
30895
+ background-color: #fff;
30896
+ }
30897
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
30898
+ padding-top: 0px;
30899
+ padding-bottom: 0px;
30900
+ padding-left: 0px !important;
30901
+ padding-right: 24px;
30902
+ }
30903
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
30904
+ right: 0px;
30905
+ }
30906
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
30907
+ padding: 0px;
30908
+ }
30909
+
30910
+ .E_c1fljvag .ant-collapse-item .ant-collapse-header {
30911
+ padding-right: 0px;
30912
+ cursor: default;
30913
+ }
30914
+
30915
+ .E_itxley7.ant-input-group.ant-input-group-compact {
30916
+ display: flex;
30917
+ }
30918
+ .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 {
30919
+ border-bottom-left-radius: 5px;
30920
+ border-top-left-radius: 5px;
30921
+ }
30922
+ .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 {
30923
+ border-bottom-right-radius: 5px;
30924
+ border-top-right-radius: 5px;
30925
+ }
30926
+
30927
+ .E_c1uzzomf {
30928
+ margin-bottom: 16px;
30929
+ }
30930
+ .E_c1uzzomf .card-title {
30931
+ font-size: 16px;
30932
+ color: rgba(44, 56, 82, 0.6);
30933
+ font-weight: 700;
30934
+ line-height: 32px;
30935
+ }
30936
+ .E_c1uzzomf .card-body {
30937
+ padding: 24px;
30790
30938
  border-radius: 8px;
30939
+ background: #fff;
30791
30940
  }
30792
- .E_c1yyuluq .ant-card-body {
30793
- padding: 20px 24px 24px 24px;
30941
+ .E_c1uzzomf .empty {
30942
+ font-weight: 700;
30943
+ font-size: 14px;
30944
+ line-height: 22px;
30945
+ color: rgba(0, 21, 64, 0.3);
30946
+ text-align: center;
30794
30947
  }
30795
30948
 
30796
30949
  .E_d1bw7c5z {
@@ -30933,30 +31086,54 @@ button.E_n7k2c6r {
30933
31086
  line-height: 18px;
30934
31087
  }
30935
31088
 
30936
- .E_ccrbeuz .ant-collapse-item {
30937
- border: 0px;
30938
- background-color: #fff;
31089
+ .E_c1bus5hc {
31090
+ --color: white;
31091
+ height: 14px;
31092
+ width: 14px;
31093
+ border-radius: 50%;
31094
+ flex-shrink: 0;
31095
+ display: flex;
31096
+ align-items: center;
31097
+ justify-content: center;
31098
+ border: 1px solid var(--color);
30939
31099
  }
30940
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
30941
- padding-top: 0px;
30942
- padding-bottom: 0px;
30943
- padding-left: 0px !important;
30944
- padding-right: 24px;
31100
+ .E_c1bus5hc .circle-inner {
31101
+ position: relative;
31102
+ height: 10px;
31103
+ width: 10px;
31104
+ border-radius: 50%;
31105
+ overflow: hidden;
30945
31106
  }
30946
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
30947
- right: 0px;
31107
+ .E_c1bus5hc .circle-content {
31108
+ position: absolute;
31109
+ height: 100%;
31110
+ width: 100%;
31111
+ left: 0;
31112
+ top: 0;
31113
+ border-radius: 50%;
31114
+ background: linear-gradient(to right, var(--color) 50%, white 50%);
31115
+ transform: rotate(180deg);
30948
31116
  }
30949
- .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
30950
- padding: 0px;
31117
+ .E_c1bus5hc .circle-child {
31118
+ position: absolute;
31119
+ height: 100%;
31120
+ width: 100%;
31121
+ left: 0;
31122
+ top: 0;
31123
+ margin-left: 50%;
31124
+ transform-origin: left;
31125
+ background: white;
31126
+ transform: rotate(0deg);
30951
31127
  }
30952
31128
 
30953
- .E_c1fljvag .ant-collapse-item .ant-collapse-header {
30954
- padding-right: 0px;
30955
- cursor: default;
31129
+ .E_ivqqkzv {
31130
+ height: 24px;
31131
+ width: 56px !important;
31132
+ margin-right: 4px;
30956
31133
  }
30957
31134
 
30958
- .E_tju3gfj .date {
30959
- margin-right: 4px;
31135
+ .E_c1wk4q29 {
31136
+ color: rgba(44, 56, 82, 0.6);
30960
31137
  }
30961
31138
 
30962
31139
  .E_rapgekc.ant-radio-wrapper {
@@ -31105,54 +31282,30 @@ button.E_n7k2c6r {
31105
31282
  width: 36px;
31106
31283
  }
31107
31284
 
31108
- .E_c1bus5hc {
31109
- --color: white;
31110
- height: 14px;
31111
- width: 14px;
31112
- border-radius: 50%;
31113
- flex-shrink: 0;
31114
- display: flex;
31115
- align-items: center;
31116
- justify-content: center;
31117
- border: 1px solid var(--color);
31118
- }
31119
- .E_c1bus5hc .circle-inner {
31120
- position: relative;
31121
- height: 10px;
31122
- width: 10px;
31123
- border-radius: 50%;
31124
- overflow: hidden;
31285
+ .E_i11gg7mj .ant-input-prefix {
31286
+ margin-right: 8px;
31125
31287
  }
31126
- .E_c1bus5hc .circle-content {
31127
- position: absolute;
31128
- height: 100%;
31129
- width: 100%;
31130
- left: 0;
31131
- top: 0;
31132
- border-radius: 50%;
31133
- background: linear-gradient(to right, var(--color) 50%, white 50%);
31134
- transform: rotate(180deg);
31288
+ .E_i11gg7mj .ant-input-suffix {
31289
+ margin-left: 8px;
31135
31290
  }
31136
- .E_c1bus5hc .circle-child {
31137
- position: absolute;
31138
- height: 100%;
31139
- width: 100%;
31140
- left: 0;
31141
- top: 0;
31142
- margin-left: 50%;
31143
- transform-origin: left;
31144
- background: white;
31145
- transform: rotate(0deg);
31291
+
31292
+ .E_cc368xp {
31293
+ color: #00122e;
31294
+ border-right: 1px solid rgba(172, 186, 211, 0.6);
31295
+ margin-right: 8px;
31296
+ padding-right: 8px;
31146
31297
  }
31147
31298
 
31148
- .E_ivqqkzv {
31149
- height: 24px;
31150
- width: 56px !important;
31151
- margin-right: 4px;
31299
+ .E_i11o6xqj {
31300
+ display: flex;
31301
+ gap: 4px;
31302
+ }
31303
+ .E_i11o6xqj .icon-wrapper {
31304
+ cursor: pointer;
31152
31305
  }
31153
31306
 
31154
- .E_c1wk4q29 {
31155
- color: rgba(44, 56, 82, 0.6);
31307
+ .E_d19ruhdj.icon-wrapper {
31308
+ cursor: not-allowed;
31156
31309
  }
31157
31310
 
31158
31311
  .E_s1dizucg.ant-switch {
@@ -31210,30 +31363,8 @@ button.E_n7k2c6r {
31210
31363
  margin-left: 5px;
31211
31364
  }
31212
31365
 
31213
- .E_i11gg7mj .ant-input-prefix {
31214
- margin-right: 8px;
31215
- }
31216
- .E_i11gg7mj .ant-input-suffix {
31217
- margin-left: 8px;
31218
- }
31219
-
31220
- .E_cc368xp {
31221
- color: #00122e;
31222
- border-right: 1px solid rgba(172, 186, 211, 0.6);
31223
- margin-right: 8px;
31224
- padding-right: 8px;
31225
- }
31226
-
31227
- .E_i11o6xqj {
31228
- display: flex;
31229
- gap: 4px;
31230
- }
31231
- .E_i11o6xqj .icon-wrapper {
31232
- cursor: pointer;
31233
- }
31234
-
31235
- .E_d19ruhdj.icon-wrapper {
31236
- cursor: not-allowed;
31366
+ .E_tju3gfj .date {
31367
+ margin-right: 4px;
31237
31368
  }
31238
31369
 
31239
31370
  .E_s1sck0th {
@@ -31318,6 +31449,25 @@ button.E_n7k2c6r {
31318
31449
  background-color: #7E41FF;
31319
31450
  }
31320
31451
 
31452
+ .E_fzh9mnb {
31453
+ width: 100%;
31454
+ height: 100%;
31455
+ min-height: 124px;
31456
+ display: flex;
31457
+ flex-direction: column;
31458
+ justify-content: center;
31459
+ align-items: center;
31460
+ }
31461
+ .E_fzh9mnb .error-text {
31462
+ color: rgba(10, 37, 85, 0.6);
31463
+ margin-bottom: 16px;
31464
+ font-size: 18px;
31465
+ }
31466
+
31467
+ .E_iq1gosr {
31468
+ display: inline-block;
31469
+ }
31470
+
31321
31471
  .E_s1dni7lo {
31322
31472
  width: 430px !important;
31323
31473
  }
@@ -31399,65 +31549,38 @@ button.E_n7k2c6r {
31399
31549
  opacity: 0;
31400
31550
  }
31401
31551
 
31402
- .E_i1inqkme {
31403
- height: 18px;
31404
- line-height: 18px;
31405
- padding: 0 4px;
31406
- border-radius: 4px;
31407
- background: rgba(235, 239, 245, 0.6);
31408
- border: 1px solid rgba(223, 228, 235, 0.6);
31409
- display: flex;
31410
- align-items: center;
31411
- white-space: nowrap;
31412
- margin-right: 4px;
31413
- }
31414
-
31415
- .E_fzh9mnb {
31552
+ .E_f7pxqmh {
31416
31553
  width: 100%;
31417
- height: 100%;
31418
- min-height: 124px;
31419
- display: flex;
31420
- flex-direction: column;
31421
- justify-content: center;
31422
- align-items: center;
31423
- }
31424
- .E_fzh9mnb .error-text {
31425
- color: rgba(10, 37, 85, 0.6);
31426
- margin-bottom: 16px;
31427
- font-size: 18px;
31428
- }
31429
-
31430
- .E_iq1gosr {
31431
- display: inline-block;
31432
- }
31433
-
31434
- .E_iouxfgt {
31435
- display: inline-flex;
31436
- align-items: center;
31554
+ margin-bottom: 0 !important;
31555
+ flex-flow: nowrap !important;
31556
+ line-break: auto;
31437
31557
  }
31438
- .E_iouxfgt .icon-inner {
31439
- display: inline-flex;
31440
- align-items: center;
31441
- justify-content: center;
31558
+ .E_f7pxqmh > .ant-form-item-label {
31559
+ text-align: left !important;
31560
+ padding-bottom: 0 !important;
31442
31561
  }
31443
- .E_iouxfgt .icon-inner + span,
31444
- .E_iouxfgt span + .icon-inner.suffix {
31445
- margin-left: 4px;
31562
+ .E_f7pxqmh > .ant-form-item-label > label {
31563
+ min-height: 32px;
31564
+ height: auto;
31565
+ font-size: 13px;
31566
+ color: rgba(44, 56, 82, 0.6);
31567
+ white-space: normal;
31446
31568
  }
31447
- .E_iouxfgt.is-rotate img,
31448
- .E_iouxfgt.is-rotate svg {
31449
- animation: rotate 680ms linear infinite;
31569
+ .E_f7pxqmh.ant-form-item-has-error .ant-input {
31570
+ border-color: #ff4d4f !important;
31450
31571
  }
31451
-
31452
- .E_t1m2x205 .ant-tooltip-arrow {
31453
- display: none;
31572
+ .E_f7pxqmh.ant-form-item-has-error .ant-input-password {
31573
+ border-color: #ff4d4f !important;
31454
31574
  }
31455
- .E_t1m2x205 .ant-tooltip-inner {
31456
- background: rgba(23, 38, 64, 0.8);
31457
- border-radius: 4px;
31575
+ .E_f7pxqmh .ant-form-item-explain {
31576
+ margin-top: 4px;
31577
+ font-size: 12px;
31578
+ min-height: 0px;
31458
31579
  }
31459
- .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31460
- visibility: hidden;
31580
+ .E_f7pxqmh .ant-form-item-extra {
31581
+ font-size: 12px;
31582
+ color: rgba(44, 56, 82, 0.6);
31583
+ min-height: 0px;
31461
31584
  }
31462
31585
 
31463
31586
  .E_ai7qkf2 .ant-input-number-handler-wrap {
@@ -31494,12 +31617,12 @@ button.E_n7k2c6r {
31494
31617
  width: 100%;
31495
31618
  border-radius: 6px;
31496
31619
  }
31497
- .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 {
31620
+ .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 {
31498
31621
  border-color: #0096ff;
31499
31622
  box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
31500
31623
  z-index: 1;
31501
31624
  }
31502
- .E_ai7qkf2.ant-input-number.error:not([disabled]):hover, .E_ai7qkf2.ant-input-number.error:not([disabled]).ant-input-number-focused {
31625
+ .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 {
31503
31626
  border-color: #e75a3a;
31504
31627
  box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
31505
31628
  }
@@ -31527,38 +31650,17 @@ button.E_n7k2c6r {
31527
31650
  padding: 2px 7px 2px 12px;
31528
31651
  }
31529
31652
 
31530
- .E_f7pxqmh {
31531
- width: 100%;
31532
- margin-bottom: 0 !important;
31533
- flex-flow: nowrap !important;
31534
- line-break: auto;
31535
- }
31536
- .E_f7pxqmh > .ant-form-item-label {
31537
- text-align: left !important;
31538
- padding-bottom: 0 !important;
31539
- }
31540
- .E_f7pxqmh > .ant-form-item-label > label {
31541
- min-height: 32px;
31542
- height: auto;
31543
- font-size: 13px;
31544
- color: rgba(44, 56, 82, 0.6);
31545
- white-space: normal;
31546
- }
31547
- .E_f7pxqmh.ant-form-item-has-error .ant-input {
31548
- border-color: #ff4d4f !important;
31549
- }
31550
- .E_f7pxqmh.ant-form-item-has-error .ant-input-password {
31551
- border-color: #ff4d4f !important;
31552
- }
31553
- .E_f7pxqmh .ant-form-item-explain {
31554
- margin-top: 4px;
31555
- font-size: 12px;
31556
- min-height: 0px;
31557
- }
31558
- .E_f7pxqmh .ant-form-item-extra {
31559
- font-size: 12px;
31560
- color: rgba(44, 56, 82, 0.6);
31561
- min-height: 0px;
31653
+ .E_i1inqkme {
31654
+ height: 18px;
31655
+ line-height: 18px;
31656
+ padding: 0 4px;
31657
+ border-radius: 4px;
31658
+ background: rgba(235, 239, 245, 0.6);
31659
+ border: 1px solid rgba(223, 228, 235, 0.6);
31660
+ display: flex;
31661
+ align-items: center;
31662
+ white-space: nowrap;
31663
+ margin-right: 4px;
31562
31664
  }
31563
31665
 
31564
31666
  .E_a1wfy30z .ant-input-number-handler-wrap {
@@ -31591,18 +31693,73 @@ button.E_n7k2c6r {
31591
31693
  height: auto;
31592
31694
  font-size: inherit;
31593
31695
  }
31594
-
31595
- .E_owd0kml {
31596
- display: inline-block;
31696
+
31697
+ .E_iouxfgt {
31698
+ display: inline-flex;
31699
+ align-items: center;
31700
+ }
31701
+ .E_iouxfgt .icon-inner {
31702
+ display: inline-flex;
31703
+ align-items: center;
31704
+ justify-content: center;
31705
+ }
31706
+ .E_iouxfgt .icon-inner + span,
31707
+ .E_iouxfgt span + .icon-inner.suffix {
31708
+ margin-left: 4px;
31709
+ }
31710
+ .E_iouxfgt.is-rotate img,
31711
+ .E_iouxfgt.is-rotate svg {
31712
+ animation: rotate 680ms linear infinite;
31713
+ }
31714
+
31715
+ .E_t1m2x205 .ant-tooltip-arrow {
31716
+ display: none;
31717
+ }
31718
+ .E_t1m2x205 .ant-tooltip-inner {
31719
+ background: rgba(23, 38, 64, 0.8);
31720
+ border-radius: 4px;
31721
+ }
31722
+ .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31723
+ visibility: hidden;
31724
+ }
31725
+
31726
+ .E_owd0kml {
31727
+ display: inline-block;
31728
+ }
31729
+
31730
+ .E_h1jsgezc {
31731
+ visibility: hidden;
31732
+ position: absolute;
31733
+ }
31734
+
31735
+ .E_a1b5xrg3 .user-icon-inner {
31736
+ display: inline-flex;
31737
+ align-items: center;
31738
+ justify-content: center;
31739
+ color: #fff;
31740
+ font-weight: bold;
31741
+ font-size: 12px;
31742
+ width: 24px;
31743
+ height: 24px;
31744
+ border-radius: 50%;
31745
+ background: var(--a1b5xrg3-0);
31746
+ }
31747
+ .E_a1b5xrg3.btn-item {
31748
+ transition: all 160ms ease;
31749
+ cursor: pointer;
31750
+ width: 56px;
31751
+ height: 40px;
31752
+ display: inline-flex;
31753
+ align-items: center;
31754
+ justify-content: center;
31755
+ border-radius: 6px;
31597
31756
  }
31598
-
31599
- .E_h1jsgezc {
31600
- visibility: hidden;
31601
- position: absolute;
31757
+ .E_a1b5xrg3.btn-item:hover {
31758
+ box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
31602
31759
  }
31603
-
31604
- .E_m196gn1d {
31605
- min-width: 1280px;
31760
+ .E_a1b5xrg3.btn-item:active {
31761
+ transform: translateY(2px);
31762
+ transition: all 320ms ease;
31606
31763
  }
31607
31764
 
31608
31765
  .E_dsnbhzf {
@@ -32080,36 +32237,6 @@ button.E_n7k2c6r {
32080
32237
  line-height: 12px;
32081
32238
  }
32082
32239
 
32083
- .E_a1b5xrg3 .user-icon-inner {
32084
- display: inline-flex;
32085
- align-items: center;
32086
- justify-content: center;
32087
- color: #fff;
32088
- font-weight: bold;
32089
- font-size: 12px;
32090
- width: 24px;
32091
- height: 24px;
32092
- border-radius: 50%;
32093
- background: var(--a1b5xrg3-0);
32094
- }
32095
- .E_a1b5xrg3.btn-item {
32096
- transition: all 160ms ease;
32097
- cursor: pointer;
32098
- width: 56px;
32099
- height: 40px;
32100
- display: inline-flex;
32101
- align-items: center;
32102
- justify-content: center;
32103
- border-radius: 6px;
32104
- }
32105
- .E_a1b5xrg3.btn-item:hover {
32106
- box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
32107
- }
32108
- .E_a1b5xrg3.btn-item:active {
32109
- transform: translateY(2px);
32110
- transition: all 320ms ease;
32111
- }
32112
-
32113
32240
  .E_cnujxq2 {
32114
32241
  display: flex;
32115
32242
  flex-direction: column;
@@ -32799,12 +32926,110 @@ input.E_rf8rlle.ant-input {
32799
32926
  color: rgba(44, 56, 82, 0.7490196078);
32800
32927
  }
32801
32928
 
32929
+ .E_m196gn1d {
32930
+ min-width: 1280px;
32931
+ }
32932
+
32933
+ .E_i5w779o {
32934
+ padding: 8px 0;
32935
+ }
32936
+ .E_i5w779o .col-label {
32937
+ flex-shrink: unset;
32938
+ }
32939
+ .E_i5w779o .col-label * {
32940
+ line-height: 18px;
32941
+ }
32942
+ .E_i5w779o .col-content {
32943
+ flex: 1 1 0;
32944
+ display: flex;
32945
+ align-items: center;
32946
+ }
32947
+ .E_i5w779o .col-content * {
32948
+ line-height: 18px;
32949
+ }
32950
+
32951
+ .E_l18dja44 {
32952
+ padding: 6px 0;
32953
+ }
32954
+ .E_l18dja44 .col-label * {
32955
+ font-size: 13px;
32956
+ line-height: 20px;
32957
+ }
32958
+ .E_l18dja44 .col-content * {
32959
+ font-size: 14px;
32960
+ line-height: 20px;
32961
+ }
32962
+
32963
+ .E_c8c2hys {
32964
+ display: flex;
32965
+ justify-content: space-between;
32966
+ flex: 1;
32967
+ min-width: 0;
32968
+ }
32969
+
32970
+ .E_n4m6c4d {
32971
+ color: rgba(0, 21, 64, 0.3);
32972
+ }
32973
+
32802
32974
  .E_h1ol2wl7 {
32803
32975
  font-weight: bold;
32804
32976
  background-color: unset;
32805
32977
  padding: unset;
32806
32978
  }
32807
32979
 
32980
+ .E_cyms3br {
32981
+ background: #fff;
32982
+ width: 100%;
32983
+ border-radius: 8px;
32984
+ border: 1px solid rgb(228, 233, 242);
32985
+ }
32986
+ .E_cyms3br .ant-list {
32987
+ padding: 12px;
32988
+ }
32989
+ .E_cyms3br .ant-list-item {
32990
+ padding: 4px 0;
32991
+ }
32992
+ .E_cyms3br .ant-alert {
32993
+ margin-left: 24px;
32994
+ }
32995
+ .E_cyms3br header {
32996
+ background: rgba(225, 230, 241, 0.6);
32997
+ font-size: 12px;
32998
+ color: rgb(29, 50, 108);
32999
+ font-weight: 700;
33000
+ padding: 6px 12px;
33001
+ display: flex;
33002
+ flex-direction: row;
33003
+ align-items: center;
33004
+ justify-content: space-between;
33005
+ }
33006
+ .E_cyms3br header .switch-text {
33007
+ display: flex;
33008
+ flex-direction: row;
33009
+ align-items: center;
33010
+ justify-content: space-between;
33011
+ gap: 6px;
33012
+ font-size: 12px;
33013
+ font-weight: 400;
33014
+ color: rgb(0, 18, 46);
33015
+ }
33016
+
33017
+ .E_c157gu4z .ant-list-item {
33018
+ display: flex;
33019
+ flex-direction: row;
33020
+ }
33021
+ .E_c157gu4z .description {
33022
+ flex-grow: 1;
33023
+ margin-left: 8px;
33024
+ }
33025
+
33026
+ .E_eu1sysj {
33027
+ display: flex;
33028
+ flex-direction: column;
33029
+ align-items: center;
33030
+ justify-content: center;
33031
+ }
33032
+
32808
33033
  .E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
32809
33034
  border-radius: 6px;
32810
33035
  }
@@ -32981,7 +33206,7 @@ input.E_rf8rlle.ant-input {
32981
33206
  .E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
32982
33207
  right: 4px;
32983
33208
  }
32984
- .E_swwhohx.ant-select .ant-select-selection-item {
33209
+ .E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
32985
33210
  padding-right: 24px;
32986
33211
  }
32987
33212
 
@@ -33497,6 +33722,50 @@ input.E_rf8rlle.ant-input {
33497
33722
  position: static;
33498
33723
  }
33499
33724
 
33725
+ .E_c14ouk5o {
33726
+ width: 100%;
33727
+ height: 100%;
33728
+ display: flex;
33729
+ font-size: 12px;
33730
+ line-height: 18px;
33731
+ padding: 8px 0;
33732
+ box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
33733
+ }
33734
+ .E_c14ouk5o:last-of-type {
33735
+ box-shadow: none;
33736
+ padding-bottom: 0;
33737
+ }
33738
+ .E_c14ouk5o.collapsed {
33739
+ flex-direction: column;
33740
+ }
33741
+ .E_c14ouk5o.collapsed .collapsed-content {
33742
+ display: flex;
33743
+ }
33744
+ .E_c14ouk5o.collapsed .collapsed-content > span {
33745
+ flex: 1;
33746
+ display: flex;
33747
+ justify-content: space-between;
33748
+ }
33749
+ .E_c14ouk5o.collapsed .collapsed-content > span .ant-btn {
33750
+ height: auto;
33751
+ }
33752
+ .E_c14ouk5o.collapsed .extra-content {
33753
+ margin-left: 162px;
33754
+ }
33755
+ .E_c14ouk5o .col-label {
33756
+ width: 216px;
33757
+ color: rgba(44, 56, 82, 0.6);
33758
+ margin-right: 12px;
33759
+ flex-shrink: 0;
33760
+ }
33761
+ .E_c14ouk5o .col-content {
33762
+ color: #2d3a56;
33763
+ /* make btn link in info row have the same height as normal text */
33764
+ }
33765
+ .E_c14ouk5o .col-content .ant-btn-link {
33766
+ height: auto;
33767
+ }
33768
+
33500
33769
  .E_c1kchka8 {
33501
33770
  height: 100%;
33502
33771
  width: 100%;
@@ -33846,7 +34115,7 @@ input.E_rf8rlle.ant-input {
33846
34115
  gap: 8px;
33847
34116
  background: #fff;
33848
34117
  border-radius: 5px;
33849
- border: 1px solid #e4e9f2;
34118
+ border: 1px solid rgba(172, 186, 211, 0.6);
33850
34119
  transition: all 0.2s ease-in-out;
33851
34120
  }
33852
34121
  .E_dhqt3dw.date-range-picker .default-calendar-icon {
@@ -33974,65 +34243,28 @@ input.E_rf8rlle.ant-input {
33974
34243
  padding: 0;
33975
34244
  }
33976
34245
 
33977
- .E_c1yd35n {
33978
- padding: 0 12px 14px 12px;
33979
- }
33980
-
33981
- .E_c1kghdax {
33982
- color: #2d3a56;
33983
- padding: 7px 12px;
33984
- display: flex;
33985
- justify-content: space-between;
33986
- align-items: center;
33987
- }
33988
- .E_c1kghdax.has-arrow {
33989
- padding-left: 10px;
33990
- }
33991
- .E_c1kghdax.has-arrow .title-wrapper {
33992
- cursor: pointer;
33993
- color: #00122e;
33994
- }
33995
- .E_c1kghdax.has-arrow .title-wrapper.is-open {
33996
- color: #2d3a56;
33997
- font-weight: 600;
33998
- }
33999
- .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
34000
- transform: rotate(90deg);
34001
- }
34002
- .E_c1kghdax .sub-info {
34003
- font-size: 12px;
34004
- line-height: 18px;
34005
- }
34006
- .E_c1kghdax .title-wrapper {
34246
+ .E_l12xdkhl {
34247
+ width: 64px;
34248
+ height: 64px;
34249
+ max-width: 64px;
34250
+ max-height: 64px;
34251
+ overflow: hidden;
34007
34252
  display: flex;
34008
34253
  align-items: center;
34009
- user-select: none;
34010
- flex-grow: 1;
34011
- font-size: 12px;
34012
- line-height: 18px;
34013
- color: #2d3a56;
34014
- font-weight: 700;
34015
- }
34016
- .E_c1kghdax .collapse-arrow {
34017
- transition: all 50ms ease-out 0ms;
34018
- margin-right: 2px;
34019
- }
34020
-
34021
- .E_b14q2gmw {
34022
- 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);
34023
- }
34024
-
34025
- .E_c1eym6el {
34026
- border-radius: 8px;
34027
- background-color: white;
34254
+ justify-content: center;
34255
+ position: relative;
34256
+ opacity: 0.6;
34028
34257
  }
34029
- .E_c1eym6el.hoverable {
34030
- cursor: pointer;
34258
+ .E_l12xdkhl .icon-wrapper {
34259
+ animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34031
34260
  }
34032
- .E_c1eym6el.hoverable:hover {
34033
- transition: all 200ms ease;
34034
- box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
34035
- transform: translateY(-4px);
34261
+ @keyframes rotate {
34262
+ from {
34263
+ transform: rotate(0deg);
34264
+ }
34265
+ to {
34266
+ transform: rotate(360deg);
34267
+ }
34036
34268
  }
34037
34269
 
34038
34270
  .E_s11wux3h .antd5-segmented-item:not(:last-child) {
@@ -34069,7 +34301,9 @@ input.E_rf8rlle.ant-input {
34069
34301
  background-color: transparent;
34070
34302
  }
34071
34303
 
34072
- button.E_l48ei06.ant-btn {
34304
+ button.E_l48ei06.ant-btn,
34305
+ button.E_l48ei06.ant-btn.ant-btn-sm,
34306
+ button.E_l48ei06.ant-btn.ant-btn-lg {
34073
34307
  font-size: 12px;
34074
34308
  line-height: 18px;
34075
34309
  height: 18px;
@@ -34109,38 +34343,14 @@ button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
34109
34343
  button.E_l48ei06.ui-kit-link-secondary {
34110
34344
  color: rgba(44, 56, 82, 0.7490196078);
34111
34345
  }
34112
- button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
34113
- color: #0080FF;
34114
- }
34115
- button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
34116
- color: #005ED1;
34117
- }
34118
- button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34119
- color: rgba(44, 56, 82, 0.7490196078);
34120
- }
34121
-
34122
- .E_l12xdkhl {
34123
- width: 64px;
34124
- height: 64px;
34125
- max-width: 64px;
34126
- max-height: 64px;
34127
- overflow: hidden;
34128
- display: flex;
34129
- align-items: center;
34130
- justify-content: center;
34131
- position: relative;
34132
- opacity: 0.6;
34346
+ button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
34347
+ color: #0080FF;
34133
34348
  }
34134
- .E_l12xdkhl .icon-wrapper {
34135
- animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
34349
+ button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
34350
+ color: #005ED1;
34136
34351
  }
34137
- @keyframes rotate {
34138
- from {
34139
- transform: rotate(0deg);
34140
- }
34141
- to {
34142
- transform: rotate(360deg);
34143
- }
34352
+ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34353
+ color: rgba(44, 56, 82, 0.7490196078);
34144
34354
  }
34145
34355
 
34146
34356
  .E_sddwhm6 {
@@ -34652,6 +34862,50 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34652
34862
  margin-left: 24px;
34653
34863
  }
34654
34864
 
34865
+ .E_c1kghdax {
34866
+ color: #2d3a56;
34867
+ padding: 7px 12px;
34868
+ display: flex;
34869
+ justify-content: space-between;
34870
+ align-items: center;
34871
+ }
34872
+ .E_c1kghdax.has-arrow {
34873
+ padding-left: 10px;
34874
+ }
34875
+ .E_c1kghdax.has-arrow .title-wrapper {
34876
+ cursor: pointer;
34877
+ color: #00122e;
34878
+ }
34879
+ .E_c1kghdax.has-arrow .title-wrapper.is-open {
34880
+ color: #2d3a56;
34881
+ font-weight: 600;
34882
+ }
34883
+ .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
34884
+ transform: rotate(90deg);
34885
+ }
34886
+ .E_c1kghdax .sub-info {
34887
+ font-size: 12px;
34888
+ line-height: 18px;
34889
+ }
34890
+ .E_c1kghdax .title-wrapper {
34891
+ display: flex;
34892
+ align-items: center;
34893
+ user-select: none;
34894
+ flex-grow: 1;
34895
+ font-size: 12px;
34896
+ line-height: 18px;
34897
+ color: #2d3a56;
34898
+ font-weight: 700;
34899
+ }
34900
+ .E_c1kghdax .collapse-arrow {
34901
+ transition: all 50ms ease-out 0ms;
34902
+ margin-right: 2px;
34903
+ }
34904
+
34905
+ .E_c1yd35n {
34906
+ padding: 0 12px 14px 12px;
34907
+ }
34908
+
34655
34909
  .E_lht19u8 {
34656
34910
  width: 64px;
34657
34911
  height: 64px;
@@ -34700,262 +34954,62 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34700
34954
  transform-origin: top left;
34701
34955
  animation: loading-indicator3 1100ms ease-out infinite;
34702
34956
  }
34703
-
34704
- .E_w7ob4th.outside-tag {
34705
- padding-left: 0;
34706
- }
34707
- .E_w7ob4th.outside-tag .inside-tag {
34708
- border-radius: 4px 0 0 4px;
34709
- padding-right: 4px;
34710
- margin-right: 4px;
34711
- }
34712
-
34713
- .E_slr2ynn {
34714
- padding: 0 8px;
34715
- height: 18px;
34716
- }
34717
-
34718
- .E_m140wbb6 {
34719
- padding: 2px 8px;
34720
- height: 24px;
34721
- }
34722
-
34723
- .E_t1fozc1i {
34724
- margin: 0;
34725
- }
34726
-
34727
- .E_i1vxv4ln {
34728
- margin-right: 4px;
34729
- height: 16px;
34730
- }
34731
-
34732
- .E_n1afl31m.ant-tag.ant-tag-gray {
34733
- font-weight: 700;
34734
- color: #00122e;
34735
- background-color: rgba(237, 241, 250, 0.6);
34736
- border: 1px solid rgba(211, 218, 235, 0.6);
34737
- word-break: break-all;
34738
- display: inline;
34739
- white-space: normal;
34740
- }
34741
-
34742
- .E_r77hffu {
34743
- display: flex;
34744
- align-items: center;
34745
- justify-content: space-between;
34746
- column-gap: 6px;
34747
- }
34748
-
34749
- .E_p1cmxsf7 {
34750
- display: flex;
34751
- flex-direction: column;
34752
- justify-content: center;
34753
- row-gap: var(--p1cmxsf7-0);
34754
- }
34755
- .E_p1cmxsf7 .antd5-progress-line {
34756
- font-size: 0;
34757
- }
34758
-
34759
- .E_sjob3jg {
34760
- --item-min-width: 60px;
34761
- }
34762
- .E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
34763
- display: none !important;
34764
- }
34765
- .E_sjob3jg .ant-steps-item.ant-steps-item-active {
34766
- flex-shrink: 0 !important;
34767
- }
34768
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
34769
- color: #0080ff;
34770
- }
34771
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34772
- color: #0080ff;
34773
- font-weight: normal;
34774
- }
34775
- .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 {
34776
- color: rgba(44, 56, 82, 0.6);
34777
- }
34778
- .E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34779
- color: #00122e;
34780
- }
34781
- .E_sjob3jg .step-item-text {
34782
- display: inline-block;
34783
- }
34784
- .E_sjob3jg .step-item-title {
34785
- overflow: hidden;
34786
- white-space: nowrap;
34787
- text-overflow: ellipsis;
34788
- }
34789
-
34790
- .E_hjvj6s6 .ant-steps-item-container {
34791
- min-width: var(--item-min-width);
34792
- }
34793
- .E_hjvj6s6 .ant-steps-item-disabled {
34794
- cursor: not-allowed !important;
34795
- }
34796
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
34797
- flex-direction: row;
34798
- justify-content: stretch;
34799
- }
34800
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
34801
- padding: 0;
34802
- margin-right: 4px;
34803
- flex: 1;
34804
- overflow: visible;
34805
- }
34806
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
34807
- width: 100%;
34808
- min-height: unset;
34809
- }
34810
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
34811
- height: 26px;
34812
- line-height: 26px;
34813
- width: 100%;
34814
- padding: 0;
34815
- font-size: 12px;
34816
- }
34817
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
34818
- margin-right: 10px;
34819
- }
34820
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
34821
- display: none;
34822
- }
34823
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
34824
- padding-left: 8px;
34825
- padding-right: 4px;
34826
- border-radius: 4px 0 0 4px;
34827
- }
34828
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
34829
- margin-right: 0;
34830
- }
34831
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
34832
- padding-right: 8px;
34833
- padding-left: 12px;
34834
- border-radius: 0 4px 4px 0;
34835
- }
34836
- .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 {
34837
- content: "";
34838
- width: 0;
34839
- height: 0;
34840
- border: 13px solid transparent;
34841
- position: absolute;
34842
- top: 0;
34843
- border-left: 8px solid rgba(237, 241, 250, 0.6);
34844
- z-index: 2;
34845
- position: relative;
34846
- top: -50%;
34847
- right: -100%;
34848
- }
34849
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
34850
- padding: 0 4px 0 12px;
34851
- }
34852
- .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 {
34853
- content: "";
34854
- width: 0;
34855
- height: 0;
34856
- border: 13px solid transparent;
34857
- position: absolute;
34858
- top: 0;
34859
- border-left: 8px solid #fff;
34860
- left: 0;
34861
- }
34862
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
34863
- max-width: calc(100% - var(--item-min-width) * 2);
34864
- }
34865
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
34866
- background-color: rgba(0, 136, 255, 0.1);
34867
- }
34868
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
34869
- border-left-color: rgba(0, 136, 255, 0.1) !important;
34870
- }
34871
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
34872
- cursor: pointer;
34873
- min-width: var(--item-min-width);
34874
- }
34875
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
34876
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
34877
- min-width: var(--item-min-width);
34878
- }
34879
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
34880
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
34881
- background-color: rgba(237, 241, 250, 0.6);
34882
- }
34883
- .E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
34884
- padding: 0;
34885
- }
34886
-
34887
- .E_v4tv3mf .ant-steps.ant-steps-vertical {
34888
- width: 192px;
34889
- row-gap: 2px;
34890
- }
34891
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
34892
- background-color: rgba(225, 230, 241, 0.6);
34893
- }
34894
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
34895
- color: #00122e !important;
34896
- }
34897
- .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 {
34898
- background-color: rgba(225, 230, 241, 0.6);
34899
- }
34900
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
34901
- padding: 0 8px;
34902
- border-radius: 4px;
34903
- height: 32px;
34904
- display: flex;
34905
- align-items: center;
34957
+
34958
+ .E_b14q2gmw {
34959
+ 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);
34906
34960
  }
34907
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
34908
- min-height: auto;
34909
- white-space: nowrap;
34961
+
34962
+ .E_c1eym6el {
34963
+ border-radius: 8px;
34964
+ background-color: white;
34910
34965
  }
34911
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34912
- font-size: 13px;
34913
- line-height: 20px;
34914
- max-width: 100%;
34915
- padding-right: 0;
34966
+ .E_c1eym6el.hoverable {
34967
+ cursor: pointer;
34916
34968
  }
34917
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
34918
- background: rgba(0, 128, 255, 0.1);
34969
+ .E_c1eym6el.hoverable:hover {
34970
+ transition: all 200ms ease;
34971
+ box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
34972
+ transform: translateY(-4px);
34919
34973
  }
34920
34974
 
34921
- .E_h6l1tj4 {
34922
- width: 100%;
34923
- display: inline-flex;
34924
- align-items: center;
34925
- justify-content: center;
34926
- column-gap: 4px;
34975
+ .E_w7ob4th.outside-tag {
34976
+ padding-left: 0;
34927
34977
  }
34928
- .E_h6l1tj4 .step-item-prefix-container {
34929
- display: inline-flex;
34930
- align-items: center;
34931
- width: 18px;
34978
+ .E_w7ob4th.outside-tag .inside-tag {
34979
+ border-radius: 4px 0 0 4px;
34980
+ padding-right: 4px;
34981
+ margin-right: 4px;
34982
+ }
34983
+
34984
+ .E_slr2ynn {
34985
+ padding: 0 8px;
34932
34986
  height: 18px;
34933
- color: rgba(44, 56, 82, 0.75);
34934
- justify-content: center;
34935
34987
  }
34936
34988
 
34937
- .E_v18frne8 {
34938
- width: 100%;
34939
- display: flex;
34940
- align-items: center;
34941
- justify-content: center;
34942
- column-gap: 6px;
34943
- font-size: 13px;
34989
+ .E_m140wbb6 {
34990
+ padding: 2px 8px;
34991
+ height: 24px;
34944
34992
  }
34945
- .E_v18frne8 .step-item-prefix-container {
34946
- display: inline-flex;
34947
- align-items: center;
34948
- min-width: 20px;
34949
- min-height: 20px;
34950
- color: rgba(44, 56, 82, 0.75);
34951
- justify-content: center;
34993
+
34994
+ .E_t1fozc1i {
34995
+ margin: 0;
34952
34996
  }
34953
34997
 
34954
- .E_i1g85yz3 {
34998
+ .E_i1vxv4ln {
34955
34999
  margin-right: 4px;
34956
35000
  height: 16px;
34957
35001
  }
34958
35002
 
35003
+ .E_n1afl31m.ant-tag.ant-tag-gray {
35004
+ font-weight: 700;
35005
+ color: #00122e;
35006
+ background-color: rgba(237, 241, 250, 0.6);
35007
+ border: 1px solid rgba(211, 218, 235, 0.6);
35008
+ word-break: break-all;
35009
+ display: inline;
35010
+ white-space: normal;
35011
+ }
35012
+
34959
35013
  .E_t1dtlqs1 {
34960
35014
  margin-bottom: 4px;
34961
35015
  color: rgba(44, 56, 82, 0.6);
@@ -35059,97 +35113,311 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35059
35113
  .E_tmoyoag .ant-list .eagle-table-form-row:hover {
35060
35114
  background-color: rgba(237, 241, 250, 0.6);
35061
35115
  }
35062
- .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
35063
- background-color: rgba(0, 136, 255, 0.1);
35116
+ .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
35117
+ background-color: rgba(0, 136, 255, 0.1);
35118
+ }
35119
+ .E_tmoyoag .ant-list .eagle-table-form-cell {
35120
+ flex: 1 0 0;
35121
+ overflow: hidden;
35122
+ }
35123
+ .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
35124
+ color: rgba(44, 56, 82, 0.6);
35125
+ margin: 0;
35126
+ }
35127
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
35128
+ text-align: center;
35129
+ }
35130
+ .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 > * {
35131
+ text-align: center;
35132
+ }
35133
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
35134
+ text-align: left;
35135
+ }
35136
+ .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 > * {
35137
+ text-align: left;
35138
+ }
35139
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
35140
+ text-align: right;
35141
+ }
35142
+ .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 > * {
35143
+ text-align: right;
35144
+ }
35145
+ .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
35146
+ margin-right: 8px;
35147
+ }
35148
+ .E_tmoyoag .ant-list .ant-list-item-action {
35149
+ padding: 4px;
35150
+ width: 24px;
35151
+ height: 24px;
35152
+ overflow: hidden;
35153
+ }
35154
+ .E_tmoyoag .ant-list .ant-list-item-action li {
35155
+ padding: 0;
35156
+ }
35157
+ .E_tmoyoag .ant-list .delete-row-icon.disabled {
35158
+ cursor: not-allowed;
35159
+ opacity: 0.5;
35160
+ }
35161
+ .E_tmoyoag .ant-list.size-default .ant-list-item-action {
35162
+ margin: 0;
35163
+ }
35164
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
35165
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
35166
+ border-radius: 5px;
35167
+ font-size: 12px;
35168
+ }
35169
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
35170
+ font-size: inherit;
35171
+ }
35172
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
35173
+ min-height: 24px;
35174
+ font-size: 12px;
35175
+ position: relative;
35176
+ }
35177
+ .E_tmoyoag.row-split-by-border .eagle-table-form-row {
35178
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35179
+ }
35180
+ .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
35181
+ background-color: rgba(237, 241, 250, 0.6);
35182
+ }
35183
+
35184
+ .E_a138syjm {
35185
+ display: flex;
35186
+ align-items: center;
35187
+ margin-top: 8px;
35188
+ }
35189
+ .E_a138syjm button.ant-btn {
35190
+ padding: 2px 8px;
35191
+ height: 24px;
35192
+ }
35193
+ .E_a138syjm > span.maximum-desc {
35194
+ display: none;
35195
+ margin-left: 8px;
35196
+ color: rgba(44, 56, 82, 0.6);
35197
+ }
35198
+ .E_a138syjm > span.maximum-desc.disabled {
35199
+ display: inline;
35200
+ }
35201
+
35202
+ .E_d77i8u0 {
35203
+ width: 24px;
35204
+ height: 24px;
35205
+ padding: 4px;
35206
+ margin-right: 8px;
35207
+ }
35208
+
35209
+ .E_sjob3jg {
35210
+ --item-min-width: 60px;
35211
+ }
35212
+ .E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
35213
+ display: none !important;
35214
+ }
35215
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active {
35216
+ flex-shrink: 0 !important;
35217
+ }
35218
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
35219
+ color: #0080ff;
35220
+ }
35221
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35222
+ color: #0080ff;
35223
+ font-weight: normal;
35224
+ }
35225
+ .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 {
35226
+ color: rgba(44, 56, 82, 0.6);
35227
+ }
35228
+ .E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35229
+ color: #00122e;
35230
+ }
35231
+ .E_sjob3jg .step-item-text {
35232
+ display: inline-block;
35233
+ }
35234
+ .E_sjob3jg .step-item-title {
35235
+ overflow: hidden;
35236
+ white-space: nowrap;
35237
+ text-overflow: ellipsis;
35238
+ }
35239
+
35240
+ .E_hjvj6s6 .ant-steps-item-container {
35241
+ min-width: var(--item-min-width);
35242
+ }
35243
+ .E_hjvj6s6 .ant-steps-item-disabled {
35244
+ cursor: not-allowed !important;
35245
+ }
35246
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
35247
+ flex-direction: row;
35248
+ justify-content: stretch;
35249
+ }
35250
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
35251
+ padding: 0;
35252
+ margin-right: 4px;
35253
+ flex: 1;
35254
+ overflow: visible;
35255
+ }
35256
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
35257
+ width: 100%;
35258
+ min-height: unset;
35259
+ }
35260
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
35261
+ height: 26px;
35262
+ line-height: 26px;
35263
+ width: 100%;
35264
+ padding: 0;
35265
+ font-size: 12px;
35266
+ }
35267
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
35268
+ margin-right: 10px;
35269
+ }
35270
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
35271
+ display: none;
35272
+ }
35273
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
35274
+ padding-left: 8px;
35275
+ padding-right: 4px;
35276
+ border-radius: 4px 0 0 4px;
35277
+ }
35278
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
35279
+ margin-right: 0;
35280
+ }
35281
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
35282
+ padding-right: 8px;
35283
+ padding-left: 12px;
35284
+ border-radius: 0 4px 4px 0;
35285
+ }
35286
+ .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 {
35287
+ content: "";
35288
+ width: 0;
35289
+ height: 0;
35290
+ border: 13px solid transparent;
35291
+ position: absolute;
35292
+ top: 0;
35293
+ border-left: 8px solid rgba(237, 241, 250, 0.6);
35294
+ z-index: 2;
35295
+ position: relative;
35296
+ top: -50%;
35297
+ right: -100%;
35298
+ }
35299
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
35300
+ padding: 0 4px 0 12px;
35064
35301
  }
35065
- .E_tmoyoag .ant-list .eagle-table-form-cell {
35066
- flex: 1 0 0;
35067
- overflow: hidden;
35302
+ .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 {
35303
+ content: "";
35304
+ width: 0;
35305
+ height: 0;
35306
+ border: 13px solid transparent;
35307
+ position: absolute;
35308
+ top: 0;
35309
+ border-left: 8px solid #fff;
35310
+ left: 0;
35068
35311
  }
35069
- .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
35070
- color: rgba(44, 56, 82, 0.6);
35071
- margin: 0;
35312
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
35313
+ max-width: calc(100% - var(--item-min-width) * 2);
35072
35314
  }
35073
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
35074
- text-align: center;
35315
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
35316
+ background-color: rgba(0, 136, 255, 0.1);
35075
35317
  }
35076
- .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 > * {
35077
- text-align: center;
35318
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
35319
+ border-left-color: rgba(0, 136, 255, 0.1) !important;
35078
35320
  }
35079
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
35080
- text-align: left;
35321
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
35322
+ cursor: pointer;
35323
+ min-width: var(--item-min-width);
35081
35324
  }
35082
- .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 > * {
35083
- text-align: left;
35325
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
35326
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
35327
+ min-width: var(--item-min-width);
35084
35328
  }
35085
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
35086
- text-align: right;
35329
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
35330
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
35331
+ background-color: rgba(237, 241, 250, 0.6);
35087
35332
  }
35088
- .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 > * {
35089
- text-align: right;
35333
+ .E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
35334
+ padding: 0;
35090
35335
  }
35091
- .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
35092
- margin-right: 8px;
35336
+
35337
+ .E_v4tv3mf .ant-steps.ant-steps-vertical {
35338
+ width: 192px;
35339
+ row-gap: 2px;
35093
35340
  }
35094
- .E_tmoyoag .ant-list .ant-list-item-action {
35095
- padding: 4px;
35096
- width: 24px;
35097
- height: 24px;
35098
- overflow: hidden;
35341
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
35342
+ background-color: rgba(225, 230, 241, 0.6);
35099
35343
  }
35100
- .E_tmoyoag .ant-list .ant-list-item-action li {
35101
- padding: 0;
35344
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
35345
+ color: #00122e !important;
35102
35346
  }
35103
- .E_tmoyoag .ant-list .delete-row-icon.disabled {
35104
- cursor: not-allowed;
35105
- opacity: 0.5;
35347
+ .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 {
35348
+ background-color: rgba(225, 230, 241, 0.6);
35106
35349
  }
35107
- .E_tmoyoag .ant-list.size-default .ant-list-item-action {
35108
- margin: 0;
35350
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
35351
+ padding: 0 8px;
35352
+ border-radius: 4px;
35353
+ height: 32px;
35354
+ display: flex;
35355
+ align-items: center;
35109
35356
  }
35110
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
35111
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
35112
- border-radius: 5px;
35113
- font-size: 12px;
35357
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
35358
+ min-height: auto;
35359
+ white-space: nowrap;
35114
35360
  }
35115
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
35116
- font-size: inherit;
35361
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
35362
+ font-size: 13px;
35363
+ line-height: 20px;
35364
+ max-width: 100%;
35365
+ padding-right: 0;
35117
35366
  }
35118
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
35119
- min-height: 24px;
35120
- font-size: 12px;
35121
- position: relative;
35367
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
35368
+ background: rgba(0, 128, 255, 0.1);
35122
35369
  }
35123
- .E_tmoyoag.row-split-by-border .eagle-table-form-row {
35124
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35370
+
35371
+ .E_h6l1tj4 {
35372
+ width: 100%;
35373
+ display: inline-flex;
35374
+ align-items: center;
35375
+ justify-content: center;
35376
+ column-gap: 4px;
35125
35377
  }
35126
- .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
35127
- background-color: rgba(237, 241, 250, 0.6);
35378
+ .E_h6l1tj4 .step-item-prefix-container {
35379
+ display: inline-flex;
35380
+ align-items: center;
35381
+ width: 18px;
35382
+ height: 18px;
35383
+ color: rgba(44, 56, 82, 0.75);
35384
+ justify-content: center;
35128
35385
  }
35129
35386
 
35130
- .E_a138syjm {
35387
+ .E_v18frne8 {
35388
+ width: 100%;
35131
35389
  display: flex;
35132
35390
  align-items: center;
35133
- margin-top: 8px;
35134
- }
35135
- .E_a138syjm button.ant-btn {
35136
- padding: 2px 8px;
35137
- height: 24px;
35391
+ justify-content: center;
35392
+ column-gap: 6px;
35393
+ font-size: 13px;
35138
35394
  }
35139
- .E_a138syjm > span.maximum-desc {
35140
- display: none;
35141
- margin-left: 8px;
35142
- color: rgba(44, 56, 82, 0.6);
35395
+ .E_v18frne8 .step-item-prefix-container {
35396
+ display: inline-flex;
35397
+ align-items: center;
35398
+ min-width: 20px;
35399
+ min-height: 20px;
35400
+ color: rgba(44, 56, 82, 0.75);
35401
+ justify-content: center;
35143
35402
  }
35144
- .E_a138syjm > span.maximum-desc.disabled {
35145
- display: inline;
35403
+
35404
+ .E_r77hffu {
35405
+ display: flex;
35406
+ align-items: center;
35407
+ justify-content: space-between;
35408
+ column-gap: 6px;
35146
35409
  }
35147
35410
 
35148
- .E_d77i8u0 {
35149
- width: 24px;
35150
- height: 24px;
35151
- padding: 4px;
35152
- margin-right: 8px;
35411
+ .E_p1cmxsf7 {
35412
+ display: flex;
35413
+ flex-direction: column;
35414
+ justify-content: center;
35415
+ row-gap: var(--p1cmxsf7-0);
35416
+ }
35417
+ .E_p1cmxsf7 .antd5-progress-line {
35418
+ font-size: 0;
35419
+ margin-bottom: unset;
35420
+ margin-inline-end: unset;
35153
35421
  }
35154
35422
 
35155
35423
  .E_t13ef470 {
@@ -35182,6 +35450,33 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35182
35450
  background: rgba(163, 180, 204, 0.18);
35183
35451
  }
35184
35452
 
35453
+ .E_i1g85yz3 {
35454
+ margin-right: 4px;
35455
+ height: 16px;
35456
+ }
35457
+
35458
+ .E_t1gvlxt5 {
35459
+ min-width: 0;
35460
+ flex: 1;
35461
+ }
35462
+ .E_t1gvlxt5 .tag {
35463
+ flex: 0 0 auto;
35464
+ }
35465
+ .E_t1gvlxt5 .progress-title {
35466
+ flex: 2;
35467
+ max-width: fit-content;
35468
+ }
35469
+ .E_t1gvlxt5 .progress-desc {
35470
+ flex: 1;
35471
+ max-width: fit-content;
35472
+ }
35473
+
35474
+ .E_a1ji6r68 {
35475
+ display: flex;
35476
+ align-items: center;
35477
+ column-gap: var(--a1ji6r68-0);
35478
+ }
35479
+
35185
35480
  .E_msn7nxt {
35186
35481
  color: rgba(44, 56, 82, 0.6);
35187
35482
  text-align: center;
@@ -35343,26 +35638,52 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35343
35638
  margin-left: 8px;
35344
35639
  }
35345
35640
 
35346
- .E_t1gvlxt5 {
35347
- min-width: 0;
35348
- flex: 1;
35641
+ .E_t59qhqp {
35642
+ background: #FFFFFF;
35643
+ padding: 24px 32px;
35644
+ border-radius: 8px;
35349
35645
  }
35350
- .E_t1gvlxt5 .tag {
35351
- flex: 0 0 auto;
35646
+ .E_t59qhqp .ant-timeline-item {
35647
+ margin-bottom: 16px;
35648
+ padding-bottom: 0px;
35352
35649
  }
35353
- .E_t1gvlxt5 .progress-title {
35354
- flex: 2;
35355
- max-width: fit-content;
35650
+ .E_t59qhqp .ant-timeline-item-last,
35651
+ .E_t59qhqp .compact.ant-timeline-item-last {
35652
+ margin-bottom: 0;
35356
35653
  }
35357
- .E_t1gvlxt5 .progress-desc {
35358
- flex: 1;
35359
- max-width: fit-content;
35654
+ .E_t59qhqp .compact.ant-timeline-item {
35655
+ margin-bottom: 12px;
35656
+ }
35657
+ .E_t59qhqp .info-action {
35658
+ align-self: baseline;
35360
35659
  }
35361
35660
 
35362
- .E_a1ji6r68 {
35661
+ .E_t2e44lg .ant-timeline-item-content {
35662
+ margin-left: 18px;
35663
+ }
35664
+ .E_t2e44lg .item-time {
35665
+ display: flex;
35666
+ flex-direction: column;
35667
+ gap: 4px;
35668
+ margin-top: 4px;
35669
+ }
35670
+ .E_t2e44lg:last-child .ant-timeline-item-content {
35671
+ padding-bottom: 0;
35672
+ }
35673
+
35674
+ .E_e14ua30y {
35363
35675
  display: flex;
35676
+ flex-direction: column;
35364
35677
  align-items: center;
35365
- column-gap: var(--a1ji6r68-0);
35678
+ justify-content: center;
35679
+ }
35680
+
35681
+ .E_s1ikqzph {
35682
+ color: rgba(44, 56, 82, 0.7490196078);
35683
+ }
35684
+
35685
+ .E_i15astnl {
35686
+ color: #00122E;
35366
35687
  }
35367
35688
 
35368
35689
  .E_s20iney.skeleton-box {
@@ -35442,18 +35763,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35442
35763
  display: block;
35443
35764
  }
35444
35765
 
35445
- .E_i14c7jc8 {
35446
- color: var(--i14c7jc8-0);
35447
- }
35448
-
35449
- .E_i1ibuolf {
35450
- display: flex;
35451
- align-items: center;
35452
- column-gap: 4px;
35453
- font-size: 12px;
35454
- color: rgba(44, 56, 82, 0.7490196078);
35455
- }
35456
-
35457
35766
  .E_d1u4ndxc {
35458
35767
  color: rgba(44, 56, 82, 0.7490196078);
35459
35768
  font-size: 12px;
@@ -35483,4 +35792,16 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35483
35792
  to {
35484
35793
  transform: translateX(100%);
35485
35794
  }
35795
+ }
35796
+
35797
+ .E_i14c7jc8 {
35798
+ color: var(--i14c7jc8-0);
35799
+ }
35800
+
35801
+ .E_i1ibuolf {
35802
+ display: flex;
35803
+ align-items: center;
35804
+ column-gap: 4px;
35805
+ font-size: 12px;
35806
+ color: rgba(44, 56, 82, 0.7490196078);
35486
35807
  }