@cloudtower/eagle 0.34.2 → 0.34.4

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 (33) hide show
  1. package/dist/cjs/core/ImmersiveDialog/index.js +33 -11
  2. package/dist/cjs/core/MediumDialog/MediumDialog.js +6 -3
  3. package/dist/cjs/core/SmallDialog/SmallDialog.js +30 -10
  4. package/dist/cjs/core/SmallDialog/SmallDialog.style.js +6 -0
  5. package/dist/cjs/core/SmallDialog/SmallDialog.widget.js +28 -0
  6. package/dist/cjs/core/TableForm/AddRowButton.js +9 -2
  7. package/dist/cjs/index.js +3 -0
  8. package/dist/cjs/stats1.html +1 -1
  9. package/dist/components.css +1853 -1794
  10. package/dist/esm/core/ImmersiveDialog/index.js +32 -11
  11. package/dist/esm/core/MediumDialog/MediumDialog.js +6 -3
  12. package/dist/esm/core/SmallDialog/SmallDialog.js +30 -10
  13. package/dist/esm/core/SmallDialog/SmallDialog.style.js +4 -1
  14. package/dist/esm/core/SmallDialog/SmallDialog.widget.js +20 -0
  15. package/dist/esm/core/TableForm/AddRowButton.js +9 -2
  16. package/dist/esm/index.js +1 -1
  17. package/dist/esm/stats1.html +1 -1
  18. package/dist/linaria.merged.scss +2386 -2314
  19. package/dist/src/core/ImmersiveDialog/type.d.ts +4 -0
  20. package/dist/src/core/MediumDialog/MediumDialog.d.ts +2 -2
  21. package/dist/src/core/MediumDialog/MediumDialog.type.d.ts +5 -0
  22. package/dist/src/core/SmallDialog/SmallDialog.style.d.ts +3 -0
  23. package/dist/src/core/SmallDialog/SmallDialog.type.d.ts +8 -0
  24. package/dist/src/core/SmallDialog/SmallDialog.widget.d.ts +8 -0
  25. package/dist/src/core/TableForm/types.d.ts +1 -0
  26. package/dist/stories/docs/core/ImmersiveDialog.stories.d.ts +6 -0
  27. package/dist/stories/docs/core/MediumDialog.stories.d.ts +8 -0
  28. package/dist/stories/docs/core/SmallDialog.stories.d.ts +4 -0
  29. package/dist/stories/docs/core/TableForm.stories.d.ts +3 -0
  30. package/dist/stories/docs/core/WizardDialog.stories.d.ts +3 -0
  31. package/dist/stories/utils.d.ts +12 -0
  32. package/dist/style.css +1853 -1794
  33. package/package.json +4 -4
@@ -29586,6 +29586,26 @@ html body {
29586
29586
  font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
29587
29587
  }
29588
29588
  }
29589
+ .E_m74vjol {
29590
+ display: flex;
29591
+ justify-content: space-between;
29592
+ width: 100%;
29593
+ }
29594
+ .E_m74vjol .action {
29595
+ margin-left: 16px;
29596
+ }
29597
+
29598
+ .E_a1o35uvh.ant-alert-closable {
29599
+ padding-right: 12px;
29600
+ }
29601
+ .E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
29602
+ height: fit-content;
29603
+ margin-left: 16px;
29604
+ }
29605
+ .E_a1o35uvh .ant-alert-message {
29606
+ flex: 1;
29607
+ }
29608
+
29589
29609
  .E_c18gxmrl {
29590
29610
  border: 1px solid #d8deeb;
29591
29611
  border-radius: 4px;
@@ -29606,24 +29626,109 @@ html body {
29606
29626
  padding: 8px 12px;
29607
29627
  }
29608
29628
 
29609
- .E_m74vjol {
29629
+ .E_c1uzzomf {
29630
+ margin-bottom: 16px;
29631
+ }
29632
+ .E_c1uzzomf .card-title {
29633
+ font-size: 16px;
29634
+ color: rgba(44, 56, 82, 0.6);
29635
+ font-weight: 700;
29636
+ line-height: 32px;
29637
+ }
29638
+ .E_c1uzzomf .card-body {
29639
+ padding: 24px;
29640
+ border-radius: 8px;
29641
+ background: #fff;
29642
+ }
29643
+ .E_c1uzzomf .empty {
29644
+ font-weight: 700;
29645
+ font-size: 14px;
29646
+ line-height: 22px;
29647
+ color: rgba(0, 21, 64, 0.3);
29648
+ text-align: center;
29649
+ }
29650
+
29651
+ .E_d1bw7c5z {
29652
+ position: relative;
29653
+ max-width: 388px;
29654
+ min-width: 285px;
29655
+ }
29656
+ .E_d1bw7c5z .center {
29657
+ position: absolute;
29658
+ font-size: 12px;
29659
+ width: 80px;
29660
+ height: 100px;
29661
+ top: 0;
29662
+ left: 35px;
29610
29663
  display: flex;
29611
- justify-content: space-between;
29664
+ flex-direction: column;
29665
+ justify-content: center;
29666
+ align-items: center;
29667
+ color: #00122e;
29668
+ }
29669
+ .E_d1bw7c5z .center .number {
29670
+ font-size: 24px;
29671
+ font-weight: 700;
29672
+ }
29673
+ .E_d1bw7c5z .center .text {
29674
+ padding: 0 5px;
29675
+ font-size: 12px;
29676
+ width: inherit;
29677
+ text-align: center;
29678
+ }
29679
+ .E_d1bw7c5z .recharts-wrapper {
29680
+ display: flex;
29681
+ }
29682
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
29683
+ position: relative !important;
29684
+ min-width: calc(100% - var(--d1bw7c5z-0)) !important;
29685
+ left: 0 !important;
29686
+ bottom: 0 !important;
29687
+ display: flex;
29688
+ align-items: center;
29689
+ }
29690
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
29612
29691
  width: 100%;
29613
29692
  }
29614
- .E_m74vjol .action {
29615
- margin-left: 16px;
29693
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
29694
+ width: 100%;
29695
+ margin-right: 0 !important;
29696
+ line-height: 18px;
29697
+ }
29698
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
29699
+ border-radius: 2px;
29700
+ }
29701
+ .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
29702
+ min-width: 75px;
29703
+ max-width: 198px;
29704
+ width: calc(100% - 20px);
29705
+ margin-left: 2px;
29706
+ color: #00122e !important;
29707
+ display: inline-flex;
29708
+ justify-content: space-between;
29709
+ }
29710
+ .E_d1bw7c5z .tooltip-text {
29711
+ maxwidth: calc(100% - 12px);
29712
+ cursor: pointer;
29713
+ border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
29714
+ overflow: hidden;
29715
+ text-overflow: ellipsis;
29716
+ white-space: nowrap;
29717
+ }
29718
+ .E_d1bw7c5z .value {
29719
+ color: rgba(44, 56, 82, 0.75);
29616
29720
  }
29617
29721
 
29618
- .E_a1o35uvh.ant-alert-closable {
29619
- padding-right: 12px;
29722
+ .E_t10pqbtc {
29723
+ width: 140px;
29620
29724
  }
29621
- .E_a1o35uvh.ant-alert-closable .ant-alert-close-icon {
29622
- height: fit-content;
29623
- margin-left: 16px;
29725
+ .E_t10pqbtc .item {
29726
+ margin: 6px auto;
29727
+ display: flex;
29728
+ justify-content: space-between;
29624
29729
  }
29625
- .E_a1o35uvh .ant-alert-message {
29626
- flex: 1;
29730
+ .E_t10pqbtc .item .name {
29731
+ width: 102px;
29627
29732
  }
29628
29733
 
29629
29734
  .E_berrcjl {
@@ -29642,35 +29747,6 @@ html body {
29642
29747
  color: #005ed1;
29643
29748
  }
29644
29749
 
29645
- .E_b1nip9bk {
29646
- padding: 4px 11px;
29647
- }
29648
-
29649
- .E_bqamoqe {
29650
- white-space: nowrap;
29651
- filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
29652
- }
29653
- .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
29654
- --color: #0080ff;
29655
- }
29656
- .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] {
29657
- --color: #0080ff;
29658
- }
29659
- .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
29660
- margin-left: 1px;
29661
- }
29662
- .E_bqamoqe > .ant-btn:not(:only-child):first-child {
29663
- border-top-right-radius: 0;
29664
- border-bottom-right-radius: 0;
29665
- }
29666
- .E_bqamoqe > .ant-btn:not(:only-child):last-child {
29667
- border-top-left-radius: 0;
29668
- border-bottom-left-radius: 0;
29669
- }
29670
- .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
29671
- border-radius: unset;
29672
- }
29673
-
29674
29750
  .E_b1wx3t3t.ant-btn-icon-only {
29675
29751
  justify-content: center;
29676
29752
  }
@@ -29928,144 +30004,68 @@ html body {
29928
30004
  justify-content: center;
29929
30005
  }
29930
30006
 
29931
- .E_c1uzzomf {
29932
- margin-bottom: 16px;
29933
- }
29934
- .E_c1uzzomf .card-title {
29935
- font-size: 16px;
30007
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
30008
+ padding: 4px 8px 0 8px;
29936
30009
  color: rgba(44, 56, 82, 0.6);
29937
- font-weight: 700;
29938
- line-height: 32px;
30010
+ font-size: 12px;
29939
30011
  }
29940
- .E_c1uzzomf .card-body {
29941
- padding: 24px;
29942
- border-radius: 8px;
29943
- background: #fff;
30012
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
30013
+ padding-bottom: 6px;
29944
30014
  }
29945
- .E_c1uzzomf .empty {
29946
- font-weight: 700;
29947
- font-size: 14px;
29948
- line-height: 22px;
29949
- color: rgba(0, 21, 64, 0.3);
29950
- text-align: center;
30015
+ .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
30016
+ padding-top: 4px;
30017
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
29951
30018
  }
29952
30019
 
29953
- .E_d1bw7c5z {
29954
- position: relative;
29955
- max-width: 388px;
29956
- min-width: 285px;
30020
+ .E_b1nip9bk {
30021
+ padding: 4px 11px;
29957
30022
  }
29958
- .E_d1bw7c5z .center {
29959
- position: absolute;
29960
- font-size: 12px;
29961
- width: 80px;
29962
- height: 100px;
29963
- top: 0;
29964
- left: 35px;
29965
- display: flex;
29966
- flex-direction: column;
29967
- justify-content: center;
29968
- align-items: center;
29969
- color: #00122e;
30023
+
30024
+ .E_bqamoqe {
30025
+ white-space: nowrap;
30026
+ filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
29970
30027
  }
29971
- .E_d1bw7c5z .center .number {
29972
- font-size: 24px;
29973
- font-weight: 700;
30028
+ .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
30029
+ --color: #0080ff;
29974
30030
  }
29975
- .E_d1bw7c5z .center .text {
29976
- padding: 0 5px;
29977
- font-size: 12px;
29978
- width: inherit;
29979
- text-align: center;
30031
+ .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] {
30032
+ --color: #0080ff;
29980
30033
  }
29981
- .E_d1bw7c5z .recharts-wrapper {
29982
- display: flex;
30034
+ .E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
30035
+ margin-left: 1px;
29983
30036
  }
29984
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper {
29985
- position: relative !important;
29986
- min-width: calc(100% - var(--d1bw7c5z-0)) !important;
29987
- left: 0 !important;
29988
- bottom: 0 !important;
30037
+ .E_bqamoqe > .ant-btn:not(:only-child):first-child {
30038
+ border-top-right-radius: 0;
30039
+ border-bottom-right-radius: 0;
30040
+ }
30041
+ .E_bqamoqe > .ant-btn:not(:only-child):last-child {
30042
+ border-top-left-radius: 0;
30043
+ border-bottom-left-radius: 0;
30044
+ }
30045
+ .E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
30046
+ border-radius: unset;
30047
+ }
30048
+
30049
+ .E_fzh9mnb {
30050
+ width: 100%;
30051
+ height: 100%;
30052
+ min-height: 124px;
29989
30053
  display: flex;
30054
+ flex-direction: column;
30055
+ justify-content: center;
29990
30056
  align-items: center;
29991
30057
  }
29992
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper .recharts-default-legend {
29993
- width: 100%;
30058
+ .E_fzh9mnb .error-text {
30059
+ color: rgba(10, 37, 85, 0.6);
30060
+ margin-bottom: 16px;
30061
+ font-size: 18px;
29994
30062
  }
29995
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li {
30063
+
30064
+ .E_f7pxqmh {
29996
30065
  width: 100%;
29997
- margin-right: 0 !important;
29998
- line-height: 18px;
29999
- }
30000
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > svg {
30001
- border-radius: 2px;
30002
- }
30003
- .E_d1bw7c5z .recharts-wrapper .recharts-legend-wrapper li > .recharts-legend-item-text {
30004
- min-width: 75px;
30005
- max-width: 198px;
30006
- width: calc(100% - 20px);
30007
- margin-left: 2px;
30008
- color: #00122e !important;
30009
- display: inline-flex;
30010
- justify-content: space-between;
30011
- }
30012
- .E_d1bw7c5z .tooltip-text {
30013
- maxwidth: calc(100% - 12px);
30014
- cursor: pointer;
30015
- border-bottom: 1px dashed rgba(107, 128, 167, 0.6);
30016
- overflow: hidden;
30017
- text-overflow: ellipsis;
30018
- white-space: nowrap;
30019
- }
30020
- .E_d1bw7c5z .value {
30021
- color: rgba(44, 56, 82, 0.75);
30022
- }
30023
-
30024
- .E_t10pqbtc {
30025
- width: 140px;
30026
- }
30027
- .E_t10pqbtc .item {
30028
- margin: 6px auto;
30029
- display: flex;
30030
- justify-content: space-between;
30031
- }
30032
- .E_t10pqbtc .item .name {
30033
- width: 102px;
30034
- }
30035
-
30036
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
30037
- padding: 4px 8px 0 8px;
30038
- color: rgba(44, 56, 82, 0.6);
30039
- font-size: 12px;
30040
- }
30041
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
30042
- padding-bottom: 6px;
30043
- }
30044
- .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
30045
- padding-top: 4px;
30046
- border-top: 1px solid rgba(211, 218, 235, 0.6);
30047
- }
30048
-
30049
- .E_fzh9mnb {
30050
- width: 100%;
30051
- height: 100%;
30052
- min-height: 124px;
30053
- display: flex;
30054
- flex-direction: column;
30055
- justify-content: center;
30056
- align-items: center;
30057
- }
30058
- .E_fzh9mnb .error-text {
30059
- color: rgba(10, 37, 85, 0.6);
30060
- margin-bottom: 16px;
30061
- font-size: 18px;
30062
- }
30063
-
30064
- .E_f7pxqmh {
30065
- width: 100%;
30066
- margin-bottom: 0 !important;
30067
- flex-flow: nowrap !important;
30068
- line-break: auto;
30066
+ margin-bottom: 0 !important;
30067
+ flex-flow: nowrap !important;
30068
+ line-break: auto;
30069
30069
  }
30070
30070
  .E_f7pxqmh > .ant-form-item-label {
30071
30071
  text-align: left !important;
@@ -30113,20 +30113,21 @@ html body {
30113
30113
  animation: rotate 680ms linear infinite;
30114
30114
  }
30115
30115
 
30116
- .E_sx1bpnu .ant-input-sm {
30116
+ .E_i1inqkme {
30117
+ height: 18px;
30117
30118
  line-height: 18px;
30118
- }
30119
-
30120
- .E_itxley7.ant-input-group.ant-input-group-compact {
30119
+ padding: 0 4px;
30120
+ border-radius: 4px;
30121
+ background: rgba(235, 239, 245, 0.6);
30122
+ border: 1px solid rgba(223, 228, 235, 0.6);
30121
30123
  display: flex;
30124
+ align-items: center;
30125
+ white-space: nowrap;
30126
+ margin-right: 4px;
30122
30127
  }
30123
- .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 {
30124
- border-bottom-left-radius: 5px;
30125
- border-top-left-radius: 5px;
30126
- }
30127
- .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 {
30128
- border-bottom-right-radius: 5px;
30129
- border-top-right-radius: 5px;
30128
+
30129
+ .E_sx1bpnu .ant-input-sm {
30130
+ line-height: 18px;
30130
30131
  }
30131
30132
 
30132
30133
  .E_ai7qkf2 .ant-input-number-handler-wrap {
@@ -30189,26 +30190,6 @@ html body {
30189
30190
  padding: 2px 8px;
30190
30191
  }
30191
30192
 
30192
- .E_i1inqkme {
30193
- height: 18px;
30194
- line-height: 18px;
30195
- padding: 0 4px;
30196
- border-radius: 4px;
30197
- background: rgba(235, 239, 245, 0.6);
30198
- border: 1px solid rgba(223, 228, 235, 0.6);
30199
- display: flex;
30200
- align-items: center;
30201
- white-space: nowrap;
30202
- margin-right: 4px;
30203
- }
30204
-
30205
- .E_atcz0kf .ant-input-suffix {
30206
- margin-left: 8px;
30207
- }
30208
- .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
30209
- padding: 2px 7px 2px 12px;
30210
- }
30211
-
30212
30193
  .E_a1wfy30z .ant-input-number-handler-wrap {
30213
30194
  display: var(--a1wfy30z-0);
30214
30195
  }
@@ -30240,84 +30221,245 @@ html body {
30240
30221
  font-size: inherit;
30241
30222
  }
30242
30223
 
30243
- .E_rapgekc.ant-radio-wrapper {
30244
- display: inline-flex;
30245
- align-items: baseline;
30246
- white-space: pre-wrap;
30247
- }
30248
- .E_rapgekc.ant-radio-wrapper .ant-radio {
30249
- position: relative;
30250
- top: 3px;
30224
+ .E_atcz0kf .ant-input-suffix {
30225
+ margin-left: 8px;
30251
30226
  }
30252
- .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
30253
- border-color: rgba(107, 128, 167, 0.6);
30227
+ .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
30228
+ padding: 2px 7px 2px 12px;
30254
30229
  }
30255
- .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
30256
- border-color: #0080ff;
30230
+
30231
+ .E_itxley7.ant-input-group.ant-input-group-compact {
30232
+ display: flex;
30257
30233
  }
30258
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
30259
- border-color: #0080ff;
30260
- background: #0080ff;
30234
+ .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 {
30235
+ border-bottom-left-radius: 5px;
30236
+ border-top-left-radius: 5px;
30261
30237
  }
30262
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
30263
- top: 4px;
30264
- left: 4px;
30265
- width: 6px;
30266
- height: 6px;
30267
- background: #fff;
30238
+ .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 {
30239
+ border-bottom-right-radius: 5px;
30240
+ border-top-right-radius: 5px;
30268
30241
  }
30269
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
30270
- opacity: 0.5;
30242
+
30243
+ .E_owd0kml {
30244
+ display: inline-block;
30271
30245
  }
30272
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
30273
- border-color: rgba(107, 128, 167, 0.6);
30274
- background: rgba(211, 218, 235, 0.6);
30246
+
30247
+ .E_h1jsgezc {
30248
+ visibility: hidden;
30249
+ position: absolute;
30275
30250
  }
30276
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
30277
- background: #00122e;
30251
+
30252
+ .E_c1bus5hc {
30253
+ --color: white;
30254
+ height: 14px;
30255
+ width: 14px;
30256
+ border-radius: 50%;
30257
+ flex-shrink: 0;
30258
+ display: flex;
30259
+ align-items: center;
30260
+ justify-content: center;
30261
+ border: 1px solid var(--color);
30278
30262
  }
30279
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
30280
- color: #00122e;
30281
- opacity: 0.5;
30263
+ .E_c1bus5hc .circle-inner {
30264
+ position: relative;
30265
+ height: 10px;
30266
+ width: 10px;
30267
+ border-radius: 50%;
30268
+ overflow: hidden;
30282
30269
  }
30283
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
30284
- color: #00122e;
30270
+ .E_c1bus5hc .circle-content {
30271
+ position: absolute;
30272
+ height: 100%;
30273
+ width: 100%;
30274
+ left: 0;
30275
+ top: 0;
30276
+ border-radius: 50%;
30277
+ background: linear-gradient(to right, var(--color) 50%, white 50%);
30278
+ transform: rotate(180deg);
30285
30279
  }
30286
- .E_rapgekc.ant-radio-wrapper .ant-radio + span {
30287
- display: inline-block;
30288
- padding: 0;
30289
- padding-left: 10px;
30280
+ .E_c1bus5hc .circle-child {
30281
+ position: absolute;
30282
+ height: 100%;
30283
+ width: 100%;
30284
+ left: 0;
30285
+ top: 0;
30286
+ margin-left: 50%;
30287
+ transform-origin: left;
30288
+ background: white;
30289
+ transform: rotate(0deg);
30290
30290
  }
30291
- .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
30292
- margin-bottom: 0;
30293
- white-space: pre-wrap;
30291
+
30292
+ .E_phljevk {
30293
+ display: flex;
30294
+ justify-content: space-between;
30295
+ align-items: center;
30296
+ padding: 10px 0;
30294
30297
  color: rgba(44, 56, 82, 0.6);
30298
+ font-size: 12px;
30299
+ line-height: 24px;
30295
30300
  }
30296
- .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
30297
- padding-left: 8px;
30301
+ .E_phljevk .pagination-left {
30302
+ padding: 2px 8px;
30298
30303
  }
30299
-
30300
- .E_rp906go .ant-radio-button-wrapper:first-child {
30301
- border-radius: 5px 0 0 5px;
30304
+ .E_phljevk .dropdown-trigger {
30305
+ display: flex;
30306
+ align-items: center;
30307
+ border-radius: 6px;
30308
+ cursor: pointer;
30309
+ transition: all 0.3s ease;
30302
30310
  }
30303
- .E_rp906go .ant-radio-button-wrapper:last-child {
30304
- border-radius: 0 5px 5px 0;
30311
+ .E_phljevk .dropdown-trigger:hover {
30312
+ background: rgba(211, 218, 235, 0.6);
30313
+ color: #0080ff;
30305
30314
  }
30306
-
30307
- .E_rcc63c8 {
30308
- color: #00122e;
30309
- border-color: #ccd4e3;
30315
+ .E_phljevk .dropdown-trigger .icon-inner {
30316
+ margin-left: 4px;
30310
30317
  }
30311
- .E_rcc63c8:first-child {
30312
- border-color: #a3b4cc;
30318
+ .E_phljevk .pagination-right {
30319
+ display: flex;
30320
+ align-items: center;
30321
+ color: #0080ff;
30322
+ font-weight: bold;
30313
30323
  }
30314
- .E_rcc63c8.ant-radio-button-wrapper {
30315
- padding: 0 12px;
30316
- line-height: 32px;
30317
- height: 32px;
30324
+ .E_phljevk .pagination-right .icon-inner {
30325
+ margin-left: 4px;
30318
30326
  }
30319
- .E_rcc63c8.ant-radio-button-wrapper > span + span {
30320
- white-space: nowrap;
30327
+ .E_phljevk .pagination-right .prev-btn,
30328
+ .E_phljevk .pagination-right .next-btn {
30329
+ padding: 0 8px;
30330
+ }
30331
+ .E_phljevk .pagination-right .prev-btn > span,
30332
+ .E_phljevk .pagination-right .next-btn > span {
30333
+ color: #0080ff;
30334
+ }
30335
+ .E_phljevk .pagination-right .next-btn .icon-inner {
30336
+ transform: rotate(180deg);
30337
+ }
30338
+
30339
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
30340
+ max-height: calc(100vh - 128px);
30341
+ overflow-y: auto;
30342
+ }
30343
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30344
+ padding: 4px 20px;
30345
+ font-size: 12px;
30346
+ line-height: 18px;
30347
+ }
30348
+
30349
+ .E_i11gg7mj .ant-input-prefix {
30350
+ margin-right: 8px;
30351
+ }
30352
+ .E_i11gg7mj .ant-input-suffix {
30353
+ margin-left: 8px;
30354
+ }
30355
+
30356
+ .E_cc368xp {
30357
+ color: #00122e;
30358
+ border-right: 1px solid rgba(172, 186, 211, 0.6);
30359
+ margin-right: 8px;
30360
+ padding-right: 8px;
30361
+ }
30362
+
30363
+ .E_i11o6xqj {
30364
+ display: flex;
30365
+ gap: 4px;
30366
+ }
30367
+ .E_i11o6xqj .icon-wrapper {
30368
+ cursor: pointer;
30369
+ }
30370
+
30371
+ .E_d19ruhdj.icon-wrapper {
30372
+ cursor: not-allowed;
30373
+ }
30374
+
30375
+ .E_ivqqkzv {
30376
+ height: 24px;
30377
+ width: 56px !important;
30378
+ margin-right: 4px;
30379
+ }
30380
+
30381
+ .E_c1wk4q29 {
30382
+ color: rgba(44, 56, 82, 0.6);
30383
+ }
30384
+
30385
+ .E_rapgekc.ant-radio-wrapper {
30386
+ display: inline-flex;
30387
+ align-items: baseline;
30388
+ white-space: pre-wrap;
30389
+ }
30390
+ .E_rapgekc.ant-radio-wrapper .ant-radio {
30391
+ position: relative;
30392
+ top: 3px;
30393
+ }
30394
+ .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
30395
+ border-color: rgba(107, 128, 167, 0.6);
30396
+ }
30397
+ .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
30398
+ border-color: #0080ff;
30399
+ }
30400
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
30401
+ border-color: #0080ff;
30402
+ background: #0080ff;
30403
+ }
30404
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
30405
+ top: 4px;
30406
+ left: 4px;
30407
+ width: 6px;
30408
+ height: 6px;
30409
+ background: #fff;
30410
+ }
30411
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
30412
+ opacity: 0.5;
30413
+ }
30414
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
30415
+ border-color: rgba(107, 128, 167, 0.6);
30416
+ background: rgba(211, 218, 235, 0.6);
30417
+ }
30418
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
30419
+ background: #00122e;
30420
+ }
30421
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
30422
+ color: #00122e;
30423
+ opacity: 0.5;
30424
+ }
30425
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
30426
+ color: #00122e;
30427
+ }
30428
+ .E_rapgekc.ant-radio-wrapper .ant-radio + span {
30429
+ display: inline-block;
30430
+ padding: 0;
30431
+ padding-left: 10px;
30432
+ }
30433
+ .E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
30434
+ margin-bottom: 0;
30435
+ white-space: pre-wrap;
30436
+ color: rgba(44, 56, 82, 0.6);
30437
+ }
30438
+ .E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
30439
+ padding-left: 8px;
30440
+ }
30441
+
30442
+ .E_rp906go .ant-radio-button-wrapper:first-child {
30443
+ border-radius: 5px 0 0 5px;
30444
+ }
30445
+ .E_rp906go .ant-radio-button-wrapper:last-child {
30446
+ border-radius: 0 5px 5px 0;
30447
+ }
30448
+
30449
+ .E_rcc63c8 {
30450
+ color: #00122e;
30451
+ border-color: #ccd4e3;
30452
+ }
30453
+ .E_rcc63c8:first-child {
30454
+ border-color: #a3b4cc;
30455
+ }
30456
+ .E_rcc63c8.ant-radio-button-wrapper {
30457
+ padding: 0 12px;
30458
+ line-height: 32px;
30459
+ height: 32px;
30460
+ }
30461
+ .E_rcc63c8.ant-radio-button-wrapper > span + span {
30462
+ white-space: nowrap;
30321
30463
  }
30322
30464
  .ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
30323
30465
  height: 22px;
@@ -30386,146 +30528,148 @@ html body {
30386
30528
  width: 36px;
30387
30529
  }
30388
30530
 
30389
- .E_phljevk {
30390
- display: flex;
30391
- justify-content: space-between;
30392
- align-items: center;
30393
- padding: 10px 0;
30394
- color: rgba(44, 56, 82, 0.6);
30395
- font-size: 12px;
30396
- line-height: 24px;
30531
+ .E_tju3gfj .date {
30532
+ margin-right: 4px;
30397
30533
  }
30398
- .E_phljevk .pagination-left {
30399
- padding: 2px 8px;
30534
+
30535
+ .E_s1dni7lo {
30536
+ width: 430px !important;
30400
30537
  }
30401
- .E_phljevk .dropdown-trigger {
30538
+
30539
+ .E_d1wwmmm5 .ant-select-item-group {
30540
+ padding: 8px 16px;
30541
+ line-height: 18px;
30542
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
30543
+ height: 34px;
30544
+ min-height: 34px;
30545
+ box-sizing: border-box;
30546
+ margin-top: 8px;
30547
+ }
30548
+
30549
+ .E_o1ugr09p {
30402
30550
  display: flex;
30403
- align-items: center;
30404
- border-radius: 6px;
30405
- cursor: pointer;
30406
- transition: all 0.3s ease;
30551
+ flex-direction: column;
30552
+ margin: 1px 8px;
30553
+ padding: 8px;
30554
+ border-radius: 4px;
30407
30555
  }
30408
- .E_phljevk .dropdown-trigger:hover {
30409
- background: rgba(211, 218, 235, 0.6);
30410
- color: #0080ff;
30556
+ .E_o1ugr09p .selected-icon {
30557
+ display: none;
30411
30558
  }
30412
- .E_phljevk .dropdown-trigger .icon-inner {
30413
- margin-left: 4px;
30559
+ .E_o1ugr09p.ant-select-item-option-grouped {
30560
+ padding-left: 8px;
30414
30561
  }
30415
- .E_phljevk .pagination-right {
30416
- display: flex;
30417
- align-items: center;
30562
+ .E_o1ugr09p.ant-select-item-option-selected {
30563
+ background-color: white;
30564
+ }
30565
+ .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
30418
30566
  color: #0080ff;
30419
- font-weight: bold;
30420
30567
  }
30421
- .E_phljevk .pagination-right .icon-inner {
30422
- margin-left: 4px;
30568
+ .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
30569
+ display: block;
30423
30570
  }
30424
- .E_phljevk .pagination-right .prev-btn,
30425
- .E_phljevk .pagination-right .next-btn {
30426
- padding: 0 8px;
30571
+ .E_o1ugr09p.ant-select-item-option-active {
30572
+ background: rgba(0, 136, 255, 0.16);
30427
30573
  }
30428
- .E_phljevk .pagination-right .prev-btn > span,
30429
- .E_phljevk .pagination-right .next-btn > span {
30574
+ .E_o1ugr09p.ant-select-item-option-active .timezone-title {
30430
30575
  color: #0080ff;
30431
30576
  }
30432
- .E_phljevk .pagination-right .next-btn .icon-inner {
30433
- transform: rotate(180deg);
30577
+ .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
30578
+ background: rgba(0, 136, 255, 0.1);
30579
+ color: #0080ff;
30434
30580
  }
30435
30581
 
30436
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
30437
- max-height: calc(100vh - 128px);
30438
- overflow-y: auto;
30582
+ .E_o1ifxsq4 {
30583
+ display: flex;
30584
+ justify-content: space-between;
30585
+ height: 20px;
30586
+ line-height: 20px;
30439
30587
  }
30440
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30441
- padding: 4px 20px;
30442
- font-size: 12px;
30443
- line-height: 18px;
30588
+ .E_o1ifxsq4 .timezone-title {
30589
+ color: #2d3a56;
30590
+ overflow: hidden;
30591
+ text-overflow: ellipsis;
30444
30592
  }
30445
30593
 
30446
- .E_owd0kml {
30447
- display: inline-block;
30594
+ .E_o1zue7 {
30595
+ display: flex;
30596
+ justify-content: space-between;
30597
+ color: rgba(44, 56, 82, 0.6);
30598
+ height: 18px;
30599
+ line-height: 18px;
30600
+ margin-top: 2px;
30448
30601
  }
30449
30602
 
30450
- .E_h1jsgezc {
30451
- visibility: hidden;
30452
- position: absolute;
30603
+ .E_tyfmlxg {
30604
+ border: none;
30605
+ margin-right: 0;
30606
+ background: rgba(225, 230, 241, 0.6);
30453
30607
  }
30454
30608
 
30455
- .E_i11gg7mj .ant-input-prefix {
30456
- margin-right: 8px;
30457
- }
30458
- .E_i11gg7mj .ant-input-suffix {
30459
- margin-left: 8px;
30609
+ .E_o18uybox {
30610
+ pointer-events: none;
30611
+ height: 32px;
30612
+ width: 100%;
30613
+ opacity: 0;
30460
30614
  }
30461
30615
 
30462
- .E_cc368xp {
30463
- color: #00122e;
30464
- border-right: 1px solid rgba(172, 186, 211, 0.6);
30465
- margin-right: 8px;
30466
- padding-right: 8px;
30616
+ .E_iq1gosr {
30617
+ display: inline-block;
30467
30618
  }
30468
30619
 
30469
- .E_i11o6xqj {
30470
- display: flex;
30471
- gap: 4px;
30620
+ .E_s1dizucg.ant-switch {
30621
+ min-width: 40px;
30622
+ height: 24px;
30623
+ background: rgba(172, 186, 211, 0.6);
30624
+ overflow: hidden;
30472
30625
  }
30473
- .E_i11o6xqj .icon-wrapper {
30474
- cursor: pointer;
30626
+ .E_s1dizucg.ant-switch:focus {
30627
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
30475
30628
  }
30476
-
30477
- .E_d19ruhdj.icon-wrapper {
30478
- cursor: not-allowed;
30629
+ .E_s1dizucg.ant-switch-small {
30630
+ min-width: 26px;
30631
+ height: 16px;
30479
30632
  }
30480
-
30481
- .E_ivqqkzv {
30482
- height: 24px;
30483
- width: 56px !important;
30484
- margin-right: 4px;
30633
+ .E_s1dizucg.ant-switch-large {
30634
+ min-width: 52px;
30635
+ height: 32px;
30485
30636
  }
30486
-
30487
- .E_c1wk4q29 {
30488
- color: rgba(44, 56, 82, 0.6);
30637
+ .E_s1dizucg.ant-switch .ant-switch-handle {
30638
+ height: 20px;
30639
+ width: 20px;
30489
30640
  }
30490
-
30491
- .E_c1bus5hc {
30492
- --color: white;
30641
+ .E_s1dizucg.ant-switch .ant-switch-handle::before {
30642
+ border-radius: 10px;
30643
+ transition-delay: 120ms;
30644
+ }
30645
+ .E_s1dizucg.ant-switch-small .ant-switch-handle {
30493
30646
  height: 14px;
30494
30647
  width: 14px;
30495
- border-radius: 50%;
30496
- flex-shrink: 0;
30497
- display: flex;
30498
- align-items: center;
30499
- justify-content: center;
30500
- border: 1px solid var(--color);
30648
+ top: 1px;
30649
+ left: 1px;
30501
30650
  }
30502
- .E_c1bus5hc .circle-inner {
30503
- position: relative;
30504
- height: 10px;
30505
- width: 10px;
30506
- border-radius: 50%;
30507
- overflow: hidden;
30651
+ .E_s1dizucg.ant-switch-large .ant-switch-handle {
30652
+ height: 28px;
30653
+ width: 28px;
30508
30654
  }
30509
- .E_c1bus5hc .circle-content {
30510
- position: absolute;
30511
- height: 100%;
30512
- width: 100%;
30513
- left: 0;
30514
- top: 0;
30515
- border-radius: 50%;
30516
- background: linear-gradient(to right, var(--color) 50%, white 50%);
30517
- transform: rotate(180deg);
30655
+ .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
30656
+ border-radius: 14px;
30518
30657
  }
30519
- .E_c1bus5hc .circle-child {
30520
- position: absolute;
30521
- height: 100%;
30522
- width: 100%;
30523
- left: 0;
30524
- top: 0;
30525
- margin-left: 50%;
30526
- transform-origin: left;
30527
- background: white;
30528
- transform: rotate(0deg);
30658
+ .E_s1dizucg.ant-switch-checked {
30659
+ background-color: #00ba5d;
30660
+ }
30661
+ .E_s1dizucg.ant-switch-checked .ant-switch-handle {
30662
+ left: calc(100% - 20px - 2px);
30663
+ }
30664
+ .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
30665
+ left: calc(100% - 14px - 1px);
30666
+ }
30667
+ .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
30668
+ left: calc(100% - 28px - 2px);
30669
+ }
30670
+
30671
+ .E_c1up6e3y {
30672
+ margin-left: 5px;
30529
30673
  }
30530
30674
 
30531
30675
  .E_cnujxq2 {
@@ -31218,157 +31362,6 @@ input.E_rf8rlle.ant-input {
31218
31362
  color: rgba(44, 56, 82, 0.7490196078);
31219
31363
  }
31220
31364
 
31221
- .E_iq1gosr {
31222
- display: inline-block;
31223
- }
31224
-
31225
- .E_s1dni7lo {
31226
- width: 430px !important;
31227
- }
31228
-
31229
- .E_d1wwmmm5 .ant-select-item-group {
31230
- padding: 8px 16px;
31231
- line-height: 18px;
31232
- border-top: 1px solid rgba(211, 218, 235, 0.6);
31233
- height: 34px;
31234
- min-height: 34px;
31235
- box-sizing: border-box;
31236
- margin-top: 8px;
31237
- }
31238
-
31239
- .E_o1ugr09p {
31240
- display: flex;
31241
- flex-direction: column;
31242
- margin: 1px 8px;
31243
- padding: 8px;
31244
- border-radius: 4px;
31245
- }
31246
- .E_o1ugr09p .selected-icon {
31247
- display: none;
31248
- }
31249
- .E_o1ugr09p.ant-select-item-option-grouped {
31250
- padding-left: 8px;
31251
- }
31252
- .E_o1ugr09p.ant-select-item-option-selected {
31253
- background-color: white;
31254
- }
31255
- .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
31256
- color: #0080ff;
31257
- }
31258
- .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
31259
- display: block;
31260
- }
31261
- .E_o1ugr09p.ant-select-item-option-active {
31262
- background: rgba(0, 136, 255, 0.16);
31263
- }
31264
- .E_o1ugr09p.ant-select-item-option-active .timezone-title {
31265
- color: #0080ff;
31266
- }
31267
- .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
31268
- background: rgba(0, 136, 255, 0.1);
31269
- color: #0080ff;
31270
- }
31271
-
31272
- .E_o1ifxsq4 {
31273
- display: flex;
31274
- justify-content: space-between;
31275
- height: 20px;
31276
- line-height: 20px;
31277
- }
31278
- .E_o1ifxsq4 .timezone-title {
31279
- color: #2d3a56;
31280
- overflow: hidden;
31281
- text-overflow: ellipsis;
31282
- }
31283
-
31284
- .E_o1zue7 {
31285
- display: flex;
31286
- justify-content: space-between;
31287
- color: rgba(44, 56, 82, 0.6);
31288
- height: 18px;
31289
- line-height: 18px;
31290
- margin-top: 2px;
31291
- }
31292
-
31293
- .E_tyfmlxg {
31294
- border: none;
31295
- margin-right: 0;
31296
- background: rgba(225, 230, 241, 0.6);
31297
- }
31298
-
31299
- .E_o18uybox {
31300
- pointer-events: none;
31301
- height: 32px;
31302
- width: 100%;
31303
- opacity: 0;
31304
- }
31305
-
31306
- .E_s1dizucg.ant-switch {
31307
- min-width: 40px;
31308
- height: 24px;
31309
- background: rgba(172, 186, 211, 0.6);
31310
- overflow: hidden;
31311
- }
31312
- .E_s1dizucg.ant-switch:focus {
31313
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
31314
- }
31315
- .E_s1dizucg.ant-switch-small {
31316
- min-width: 26px;
31317
- height: 16px;
31318
- }
31319
- .E_s1dizucg.ant-switch-large {
31320
- min-width: 52px;
31321
- height: 32px;
31322
- }
31323
- .E_s1dizucg.ant-switch .ant-switch-handle {
31324
- height: 20px;
31325
- width: 20px;
31326
- }
31327
- .E_s1dizucg.ant-switch .ant-switch-handle::before {
31328
- border-radius: 10px;
31329
- transition-delay: 120ms;
31330
- }
31331
- .E_s1dizucg.ant-switch-small .ant-switch-handle {
31332
- height: 14px;
31333
- width: 14px;
31334
- top: 1px;
31335
- left: 1px;
31336
- }
31337
- .E_s1dizucg.ant-switch-large .ant-switch-handle {
31338
- height: 28px;
31339
- width: 28px;
31340
- }
31341
- .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
31342
- border-radius: 14px;
31343
- }
31344
- .E_s1dizucg.ant-switch-checked {
31345
- background-color: #00ba5d;
31346
- }
31347
- .E_s1dizucg.ant-switch-checked .ant-switch-handle {
31348
- left: calc(100% - 20px - 2px);
31349
- }
31350
- .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
31351
- left: calc(100% - 14px - 1px);
31352
- }
31353
- .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
31354
- left: calc(100% - 28px - 2px);
31355
- }
31356
-
31357
- .E_c1up6e3y {
31358
- margin-left: 5px;
31359
- }
31360
-
31361
- .E_t1m2x205 .ant-tooltip-arrow {
31362
- display: none;
31363
- }
31364
- .E_t1m2x205 .ant-tooltip-inner {
31365
- background: rgba(23, 38, 64, 0.8);
31366
- border-radius: 4px;
31367
- }
31368
- .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31369
- visibility: hidden;
31370
- }
31371
-
31372
31365
  .E_s1sck0th {
31373
31366
  padding: 0 8px;
31374
31367
  border-radius: 4px;
@@ -31451,37 +31444,45 @@ input.E_rf8rlle.ant-input {
31451
31444
  background-color: #7E41FF;
31452
31445
  }
31453
31446
 
31454
- .E_tju3gfj .date {
31455
- margin-right: 4px;
31447
+ .E_a1b5xrg3 .user-icon-inner {
31448
+ display: inline-flex;
31449
+ align-items: center;
31450
+ justify-content: center;
31451
+ color: #fff;
31452
+ font-weight: bold;
31453
+ font-size: 12px;
31454
+ width: 24px;
31455
+ height: 24px;
31456
+ border-radius: 50%;
31457
+ background: var(--a1b5xrg3-0);
31456
31458
  }
31457
-
31458
- .E_c1yyuluq {
31459
- border-radius: 8px;
31460
- }
31461
- .E_c1yyuluq .ant-card-body {
31462
- padding: 20px 24px 24px 24px;
31459
+ .E_a1b5xrg3.btn-item {
31460
+ transition: all 160ms ease;
31461
+ cursor: pointer;
31462
+ width: 56px;
31463
+ height: 40px;
31464
+ display: inline-flex;
31465
+ align-items: center;
31466
+ justify-content: center;
31467
+ border-radius: 6px;
31463
31468
  }
31464
-
31465
- .E_ccrbeuz .ant-collapse-item {
31466
- border: 0px;
31467
- background-color: #fff;
31469
+ .E_a1b5xrg3.btn-item:hover {
31470
+ box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
31468
31471
  }
31469
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
31470
- padding-top: 0px;
31471
- padding-bottom: 0px;
31472
- padding-left: 0px !important;
31473
- padding-right: 24px;
31472
+ .E_a1b5xrg3.btn-item:active {
31473
+ transform: translateY(2px);
31474
+ transition: all 320ms ease;
31474
31475
  }
31475
- .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
31476
- right: 0px;
31476
+
31477
+ .E_t1m2x205 .ant-tooltip-arrow {
31478
+ display: none;
31477
31479
  }
31478
- .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
31479
- padding: 0px;
31480
+ .E_t1m2x205 .ant-tooltip-inner {
31481
+ background: rgba(23, 38, 64, 0.8);
31482
+ border-radius: 4px;
31480
31483
  }
31481
-
31482
- .E_c1fljvag .ant-collapse-item .ant-collapse-header {
31483
- padding-right: 0px;
31484
- cursor: default;
31484
+ .E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
31485
+ visibility: hidden;
31485
31486
  }
31486
31487
 
31487
31488
  .E_dsnbhzf {
@@ -31959,38 +31960,66 @@ input.E_rf8rlle.ant-input {
31959
31960
  line-height: 12px;
31960
31961
  }
31961
31962
 
31962
- .E_a1b5xrg3 .user-icon-inner {
31963
- display: inline-flex;
31963
+ .E_m196gn1d {
31964
+ min-width: 1280px;
31965
+ }
31966
+
31967
+ .E_c1yyuluq {
31968
+ border-radius: 8px;
31969
+ }
31970
+ .E_c1yyuluq .ant-card-body {
31971
+ padding: 20px 24px 24px 24px;
31972
+ }
31973
+
31974
+ .E_ccrbeuz .ant-collapse-item {
31975
+ border: 0px;
31976
+ background-color: #fff;
31977
+ }
31978
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header {
31979
+ padding-top: 0px;
31980
+ padding-bottom: 0px;
31981
+ padding-left: 0px !important;
31982
+ padding-right: 24px;
31983
+ }
31984
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
31985
+ right: 0px;
31986
+ }
31987
+ .E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
31988
+ padding: 0px;
31989
+ }
31990
+
31991
+ .E_c1fljvag .ant-collapse-item .ant-collapse-header {
31992
+ padding-right: 0px;
31993
+ cursor: default;
31994
+ }
31995
+
31996
+ .E_ryby9ds {
31997
+ display: flex;
31964
31998
  align-items: center;
31965
- justify-content: center;
31966
- color: #fff;
31967
- font-weight: bold;
31968
- font-size: 12px;
31969
- width: 24px;
31970
- height: 24px;
31971
- border-radius: 50%;
31972
- background: var(--a1b5xrg3-0);
31973
31999
  }
31974
- .E_a1b5xrg3.btn-item {
31975
- transition: all 160ms ease;
31976
- cursor: pointer;
31977
- width: 56px;
31978
- height: 40px;
31979
- display: inline-flex;
32000
+ .E_ryby9ds .order {
32001
+ height: 24px;
32002
+ width: 24px;
32003
+ border-radius: 20px;
32004
+ color: #0080ff;
32005
+ background: rgba(0, 136, 255, 0.1);
32006
+ display: flex;
31980
32007
  align-items: center;
31981
32008
  justify-content: center;
31982
- border-radius: 6px;
32009
+ margin-right: 6px;
31983
32010
  }
31984
- .E_a1b5xrg3.btn-item:hover {
31985
- box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
32011
+
32012
+ .E_suhck3k {
32013
+ height: 24px;
32014
+ width: 24px;
32015
+ border-radius: 6px;
32016
+ padding: 4px;
31986
32017
  }
31987
- .E_a1b5xrg3.btn-item:active {
31988
- transform: translateY(2px);
31989
- transition: all 320ms ease;
32018
+ .E_suhck3k:hover {
32019
+ background-color: rgba(0, 136, 255, 0.1);
31990
32020
  }
31991
-
31992
- .E_m196gn1d {
31993
- min-width: 1280px;
32021
+ .E_suhck3k:hover svg path {
32022
+ fill: blue;
31994
32023
  }
31995
32024
 
31996
32025
  .E_hrhfj7c {
@@ -32212,35 +32241,6 @@ input.E_rf8rlle.ant-input {
32212
32241
  font-size: 14px;
32213
32242
  }
32214
32243
 
32215
- .E_suhck3k {
32216
- height: 24px;
32217
- width: 24px;
32218
- border-radius: 6px;
32219
- padding: 4px;
32220
- }
32221
- .E_suhck3k:hover {
32222
- background-color: rgba(0, 136, 255, 0.1);
32223
- }
32224
- .E_suhck3k:hover svg path {
32225
- fill: blue;
32226
- }
32227
-
32228
- .E_ryby9ds {
32229
- display: flex;
32230
- align-items: center;
32231
- }
32232
- .E_ryby9ds .order {
32233
- height: 24px;
32234
- width: 24px;
32235
- border-radius: 20px;
32236
- color: #0080ff;
32237
- background: rgba(0, 136, 255, 0.1);
32238
- display: flex;
32239
- align-items: center;
32240
- justify-content: center;
32241
- margin-right: 6px;
32242
- }
32243
-
32244
32244
  .E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
32245
32245
  border-radius: 6px;
32246
32246
  }
@@ -32298,6 +32298,64 @@ input.E_rf8rlle.ant-input {
32298
32298
  transform: rotate(180deg);
32299
32299
  }
32300
32300
 
32301
+ .E_m5foqp8 {
32302
+ --footer-height: 96px;
32303
+ --header-height: 80px;
32304
+ --modal-content-width: 720px;
32305
+ --modal-content-min-height: 200px;
32306
+ --modal-content-max-height: calc(
32307
+ 100vh - 136px - var(--header-height) - var(--footer-height)
32308
+ );
32309
+ --modal-header-padding: 40px 60px 8px;
32310
+ --modal-content-padding-top: 24px;
32311
+ --modal-content-padding-bottom: 32px;
32312
+ --modal-content-padding-x: 60px;
32313
+ --modal-footer-padding: 0 60px;
32314
+ }
32315
+ .E_m5foqp8.content-full.ant-modal {
32316
+ height: calc(100vh - 80px);
32317
+ width: calc(100vw - 160px);
32318
+ }
32319
+ .E_m5foqp8.content-full.ant-modal .ant-modal-content {
32320
+ width: 100%;
32321
+ height: 100%;
32322
+ max-width: unset;
32323
+ max-height: unset;
32324
+ display: flex;
32325
+ flex-direction: column;
32326
+ }
32327
+ .E_m5foqp8.content-full.ant-modal .ant-modal-body {
32328
+ flex: 1;
32329
+ }
32330
+ .E_m5foqp8 .initializing-title {
32331
+ height: 32px;
32332
+ }
32333
+
32334
+ .E_oa99sl3 {
32335
+ display: flex;
32336
+ justify-content: space-between;
32337
+ align-items: center;
32338
+ gap: 8px;
32339
+ }
32340
+ .E_oa99sl3,
32341
+ .E_oa99sl3 :first-child {
32342
+ line-height: inherit !important;
32343
+ }
32344
+
32345
+ .E_lvp5pj7 {
32346
+ display: flex;
32347
+ justify-content: space-between;
32348
+ align-items: center;
32349
+ gap: 8px;
32350
+ min-width: 0;
32351
+ }
32352
+
32353
+ .E_s1io1lws {
32354
+ display: flex;
32355
+ align-items: center;
32356
+ flex-shrink: 0;
32357
+ }
32358
+
32301
32359
  .E_s4ivdfu.ant-select .ant-select-selection-placeholder {
32302
32360
  opacity: 1;
32303
32361
  }
@@ -32425,45 +32483,6 @@ input.E_rf8rlle.ant-input {
32425
32483
  color: rgba(0, 21, 64, 0.3);
32426
32484
  }
32427
32485
 
32428
- .E_m5foqp8 {
32429
- --footer-height: 96px;
32430
- --header-height: 80px;
32431
- --modal-content-width: 720px;
32432
- --modal-content-min-height: 200px;
32433
- --modal-content-max-height: calc(
32434
- 100vh - 136px - var(--header-height) - var(--footer-height)
32435
- );
32436
- --modal-header-padding: 36px 60px 0;
32437
- --modal-content-padding-y: 36px;
32438
- --modal-content-padding-x: 60px;
32439
- --modal-footer-padding: 0 60px;
32440
- }
32441
-
32442
- .E_oa99sl3 {
32443
- display: flex;
32444
- justify-content: space-between;
32445
- align-items: center;
32446
- gap: 8px;
32447
- }
32448
- .E_oa99sl3,
32449
- .E_oa99sl3 :first-child {
32450
- line-height: inherit !important;
32451
- }
32452
-
32453
- .E_lvp5pj7 {
32454
- display: flex;
32455
- justify-content: space-between;
32456
- align-items: center;
32457
- gap: 8px;
32458
- min-width: 0;
32459
- }
32460
-
32461
- .E_s1io1lws {
32462
- display: flex;
32463
- align-items: center;
32464
- flex-shrink: 0;
32465
- }
32466
-
32467
32486
  .E_w1dxz879 {
32468
32487
  display: flex;
32469
32488
  flex-direction: column;
@@ -32699,6 +32718,25 @@ input.E_rf8rlle.ant-input {
32699
32718
  position: static;
32700
32719
  }
32701
32720
 
32721
+ .E_r77hffu {
32722
+ display: flex;
32723
+ align-items: center;
32724
+ justify-content: space-between;
32725
+ column-gap: 6px;
32726
+ }
32727
+
32728
+ .E_p1cmxsf7 {
32729
+ display: flex;
32730
+ flex-direction: column;
32731
+ justify-content: center;
32732
+ row-gap: var(--p1cmxsf7-0);
32733
+ }
32734
+ .E_p1cmxsf7 .antd5-progress-line {
32735
+ font-size: 0;
32736
+ margin-bottom: unset;
32737
+ margin-inline-end: unset;
32738
+ }
32739
+
32702
32740
  .E_s11wux3h .antd5-segmented-item:not(:last-child) {
32703
32741
  margin-right: 2px;
32704
32742
  }
@@ -32734,67 +32772,21 @@ input.E_rf8rlle.ant-input {
32734
32772
  background-color: transparent;
32735
32773
  }
32736
32774
 
32737
- .E_r77hffu {
32738
- display: flex;
32739
- align-items: center;
32740
- justify-content: space-between;
32741
- column-gap: 6px;
32742
- }
32743
-
32744
- .E_p1cmxsf7 {
32745
- display: flex;
32746
- flex-direction: column;
32747
- justify-content: center;
32748
- row-gap: var(--p1cmxsf7-0);
32749
- }
32750
- .E_p1cmxsf7 .antd5-progress-line {
32751
- font-size: 0;
32752
- margin-bottom: unset;
32753
- margin-inline-end: unset;
32754
- }
32755
-
32756
- .E_c1yd35n {
32757
- padding: 0 12px 14px 12px;
32775
+ .E_b14q2gmw {
32776
+ 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);
32758
32777
  }
32759
32778
 
32760
- .E_c1kghdax {
32761
- color: #2d3a56;
32762
- padding: 7px 12px;
32763
- display: flex;
32764
- justify-content: space-between;
32765
- align-items: center;
32766
- }
32767
- .E_c1kghdax.has-arrow {
32768
- padding-left: 10px;
32779
+ .E_c1eym6el {
32780
+ border-radius: 8px;
32781
+ background-color: white;
32769
32782
  }
32770
- .E_c1kghdax.has-arrow .title-wrapper {
32783
+ .E_c1eym6el.hoverable {
32771
32784
  cursor: pointer;
32772
- color: #00122e;
32773
- }
32774
- .E_c1kghdax.has-arrow .title-wrapper.is-open {
32775
- color: #2d3a56;
32776
- font-weight: 600;
32777
- }
32778
- .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
32779
- transform: rotate(90deg);
32780
- }
32781
- .E_c1kghdax .sub-info {
32782
- font-size: 12px;
32783
- line-height: 18px;
32784
32785
  }
32785
- .E_c1kghdax .title-wrapper {
32786
- display: flex;
32787
- align-items: center;
32788
- user-select: none;
32789
- flex-grow: 1;
32790
- font-size: 12px;
32791
- line-height: 18px;
32792
- color: #2d3a56;
32793
- font-weight: 700;
32794
- }
32795
- .E_c1kghdax .collapse-arrow {
32796
- transition: all 50ms ease-out 0ms;
32797
- margin-right: 2px;
32786
+ .E_c1eym6el.hoverable:hover {
32787
+ transition: all 200ms ease;
32788
+ box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
32789
+ transform: translateY(-4px);
32798
32790
  }
32799
32791
 
32800
32792
  .E_ckui4s7 {
@@ -32861,212 +32853,146 @@ input.E_rf8rlle.ant-input {
32861
32853
  margin-left: 24px;
32862
32854
  }
32863
32855
 
32864
- .E_b14q2gmw {
32865
- 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);
32866
- }
32867
-
32868
- .E_c1eym6el {
32869
- border-radius: 8px;
32870
- background-color: white;
32871
- }
32872
- .E_c1eym6el.hoverable {
32873
- cursor: pointer;
32874
- }
32875
- .E_c1eym6el.hoverable:hover {
32876
- transition: all 200ms ease;
32877
- box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
32878
- transform: translateY(-4px);
32856
+ .E_c1yd35n {
32857
+ padding: 0 12px 14px 12px;
32879
32858
  }
32880
32859
 
32881
- .E_l1ucdodl {
32882
- margin: 0;
32883
- border-radius: 20px;
32884
- padding: 2px 10px;
32885
- height: 22px;
32860
+ .E_c1kghdax {
32861
+ color: #2d3a56;
32862
+ padding: 7px 12px;
32886
32863
  display: flex;
32864
+ justify-content: space-between;
32887
32865
  align-items: center;
32888
32866
  }
32889
- .E_l1ucdodl.ui-kit-status-legend.on-tint {
32890
- color: #FFFFFF;
32867
+ .E_c1kghdax.has-arrow {
32868
+ padding-left: 10px;
32891
32869
  }
32892
- .E_l1ucdodl.tag-hover {
32870
+ .E_c1kghdax.has-arrow .title-wrapper {
32893
32871
  cursor: pointer;
32894
- }
32895
- .E_l1ucdodl.ui-kit-status-legend {
32896
32872
  color: #00122e;
32897
32873
  }
32898
- .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
32899
- margin-right: 6px;
32900
- }
32901
- .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
32902
- margin-left: 8px;
32903
- color: rgba(44, 56, 82, 0.6);
32904
- }
32905
- .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
32906
- color: #FFFFFF;
32874
+ .E_c1kghdax.has-arrow .title-wrapper.is-open {
32875
+ color: #2d3a56;
32876
+ font-weight: 600;
32907
32877
  }
32908
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
32909
- background-color: #0080ff;
32878
+ .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
32879
+ transform: rotate(90deg);
32910
32880
  }
32911
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
32912
- background-color: #f0483e;
32881
+ .E_c1kghdax .sub-info {
32882
+ font-size: 12px;
32883
+ line-height: 18px;
32913
32884
  }
32914
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
32915
- background-color: #fea008;
32885
+ .E_c1kghdax .title-wrapper {
32886
+ display: flex;
32887
+ align-items: center;
32888
+ user-select: none;
32889
+ flex-grow: 1;
32890
+ font-size: 12px;
32891
+ line-height: 18px;
32892
+ color: #2d3a56;
32893
+ font-weight: 700;
32916
32894
  }
32917
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
32918
- background-color: #00ba5d;
32895
+ .E_c1kghdax .collapse-arrow {
32896
+ transition: all 50ms ease-out 0ms;
32897
+ margin-right: 2px;
32919
32898
  }
32920
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
32921
- background-color: #6b7d99;
32899
+
32900
+ .E_lht19u8 {
32901
+ width: 64px;
32902
+ height: 64px;
32903
+ display: flex;
32904
+ align-items: center;
32905
+ justify-content: center;
32906
+ position: relative;
32907
+ opacity: 0.2;
32922
32908
  }
32923
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
32924
- background-color: #7E41FF;
32909
+
32910
+ .E_lk3gkp4 {
32911
+ position: absolute;
32912
+ width: 5px;
32913
+ height: 48px;
32914
+ left: 9.33px;
32915
+ top: 40.5px;
32916
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
32917
+ border-radius: 5px;
32918
+ transform: rotate(-128deg);
32919
+ transform-origin: top left;
32920
+ animation: loading-indicator1 1100ms ease-out infinite;
32925
32921
  }
32926
32922
 
32927
- .E_s1qj66nc {
32928
- width: 8px;
32929
- height: 8px;
32930
- border-radius: 50%;
32931
- display: inline-block;
32923
+ .E_ll4n94n {
32924
+ position: absolute;
32925
+ width: 5px;
32926
+ height: 48px;
32927
+ left: 40.8px;
32928
+ top: 8.4px;
32929
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
32930
+ border-radius: 5px;
32931
+ transform: rotate(-8deg);
32932
+ transform-origin: top left;
32933
+ animation: loading-indicator2 1100ms ease-out infinite;
32932
32934
  }
32933
32935
 
32934
- .E_s5x1boq {
32935
- width: 8px;
32936
- height: 8px;
32937
- border-radius: 2px;
32938
- display: inline-block;
32936
+ .E_l17lbdo6 {
32937
+ position: absolute;
32938
+ width: 5px;
32939
+ height: 48px;
32940
+ left: 52.9px;
32941
+ top: 51.8px;
32942
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
32943
+ border-radius: 5px;
32944
+ transform: rotate(112deg);
32945
+ transform-origin: top left;
32946
+ animation: loading-indicator3 1100ms ease-out infinite;
32939
32947
  }
32940
32948
 
32941
- .E_c1xm185 {
32949
+ .E_m11nzl2x {
32942
32950
  color: rgba(44, 56, 82, 0.6);
32951
+ text-align: center;
32952
+ display: flex;
32953
+ align-items: center;
32954
+ justify-content: center;
32955
+ flex-direction: column;
32956
+ height: 100%;
32943
32957
  }
32944
-
32945
- .E_c1x5l5qc {
32946
- flex: 1;
32958
+ .E_m11nzl2x .link {
32959
+ color: #0080ff;
32960
+ cursor: pointer;
32947
32961
  }
32948
32962
 
32949
- button.E_l48ei06.ant-btn,
32950
- button.E_l48ei06.ant-btn.ant-btn-sm,
32951
- button.E_l48ei06.ant-btn.ant-btn-lg {
32952
- font-size: 12px;
32953
- line-height: 18px;
32954
- height: 18px;
32963
+ .E_mn7joto {
32964
+ width: 100%;
32965
+ height: 100%;
32966
+ display: flex;
32967
+ flex-direction: column;
32955
32968
  }
32956
-
32957
- button.E_l48ei06 {
32958
- color: #0080FF;
32959
- height: unset;
32969
+ .E_mn7joto .name-toolbar {
32970
+ width: 100%;
32971
+ display: flex;
32972
+ line-height: 30px;
32973
+ justify-content: space-between;
32960
32974
  }
32961
- button.E_l48ei06 .button-prefix-icon {
32962
- margin-right: 4px;
32975
+ .E_mn7joto .name-toolbar .metric-extra {
32976
+ display: flex;
32977
+ font-size: 12px;
32978
+ align-items: center;
32963
32979
  }
32964
- button.E_l48ei06 .button-suffix-icon {
32965
- margin-left: 4px;
32980
+ .E_mn7joto .name-toolbar .metric-extra .info-item {
32981
+ color: #a3b4cc;
32966
32982
  }
32967
- button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
32968
- color: #009DFF;
32983
+ .E_mn7joto .name-toolbar .metric-extra .info-item + .info-item {
32984
+ margin-left: 10px;
32969
32985
  }
32970
- button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
32971
- color: #005ED1;
32986
+ .E_mn7joto .name-toolbar .metric-extra .menu-trigger {
32987
+ margin-left: 10px;
32988
+ cursor: pointer;
32972
32989
  }
32973
- button.E_l48ei06.ui-kit-link-disabled {
32974
- color: #0080FF;
32975
- }
32976
- button.E_l48ei06.ui-kit-link-primary {
32977
- color: #00122E;
32978
- }
32979
- button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
32980
- color: #0080FF;
32981
- }
32982
- button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
32983
- color: #005ED1;
32984
- }
32985
- button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
32986
- color: #00122E;
32987
- }
32988
- button.E_l48ei06.ui-kit-link-secondary {
32989
- color: rgba(44, 56, 82, 0.7490196078);
32990
- }
32991
- button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
32992
- color: #0080FF;
32993
- }
32994
- button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
32995
- color: #005ED1;
32996
- }
32997
- button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
32998
- color: rgba(44, 56, 82, 0.7490196078);
32999
- }
33000
-
33001
- .E_t1gvlxt5 {
33002
- min-width: 0;
33003
- flex: 1;
33004
- }
33005
- .E_t1gvlxt5 .tag {
33006
- flex: 0 0 auto;
33007
- }
33008
- .E_t1gvlxt5 .progress-title {
33009
- flex: 2;
33010
- max-width: fit-content;
33011
- }
33012
- .E_t1gvlxt5 .progress-desc {
33013
- flex: 1;
33014
- max-width: fit-content;
33015
- }
33016
-
33017
- .E_a1ji6r68 {
33018
- display: flex;
33019
- align-items: center;
33020
- column-gap: var(--a1ji6r68-0);
33021
- }
33022
-
33023
- .E_m11nzl2x {
33024
- color: rgba(44, 56, 82, 0.6);
33025
- text-align: center;
33026
- display: flex;
33027
- align-items: center;
33028
- justify-content: center;
33029
- flex-direction: column;
33030
- height: 100%;
33031
- }
33032
- .E_m11nzl2x .link {
33033
- color: #0080ff;
33034
- cursor: pointer;
33035
- }
33036
-
33037
- .E_mn7joto {
33038
- width: 100%;
33039
- height: 100%;
33040
- display: flex;
33041
- flex-direction: column;
33042
- }
33043
- .E_mn7joto .name-toolbar {
33044
- width: 100%;
33045
- display: flex;
33046
- line-height: 30px;
33047
- justify-content: space-between;
33048
- }
33049
- .E_mn7joto .name-toolbar .metric-extra {
33050
- display: flex;
33051
- font-size: 12px;
33052
- align-items: center;
33053
- }
33054
- .E_mn7joto .name-toolbar .metric-extra .info-item {
33055
- color: #a3b4cc;
33056
- }
33057
- .E_mn7joto .name-toolbar .metric-extra .info-item + .info-item {
33058
- margin-left: 10px;
33059
- }
33060
- .E_mn7joto .name-toolbar .metric-extra .menu-trigger {
33061
- margin-left: 10px;
33062
- cursor: pointer;
33063
- }
33064
- .E_mn7joto .content {
33065
- flex: 1;
33066
- width: 100%;
33067
- display: flex;
33068
- justify-content: center;
33069
- align-items: center;
32990
+ .E_mn7joto .content {
32991
+ flex: 1;
32992
+ width: 100%;
32993
+ display: flex;
32994
+ justify-content: center;
32995
+ align-items: center;
33070
32996
  }
33071
32997
  .E_mn7joto .single-content {
33072
32998
  height: 65px;
@@ -33204,35 +33130,533 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33204
33130
  padding: 8px;
33205
33131
  }
33206
33132
 
33207
- .E_tecdsj7 {
33133
+ .E_tecdsj7 {
33134
+ display: flex;
33135
+ align-items: center;
33136
+ background-color: unset;
33137
+ color: #FFFFFF;
33138
+ justify-content: space-between;
33139
+ font-size: 12px;
33140
+ padding-top: 6px;
33141
+ }
33142
+ .E_tecdsj7:first-child {
33143
+ padding-top: 3px;
33144
+ }
33145
+ .E_tecdsj7:last-child {
33146
+ padding-bottom: 3px;
33147
+ }
33148
+ .E_tecdsj7 .column-value {
33149
+ color: #FFFFFF;
33150
+ margin-left: 8px;
33151
+ }
33152
+
33153
+ .E_ljhvvia {
33154
+ display: inline-block;
33155
+ height: 8px;
33156
+ width: 8px;
33157
+ margin-right: 8px;
33158
+ border-radius: 2px;
33159
+ }
33160
+ .E_ljhvvia.borderd {
33161
+ border: 1px solid #fff;
33162
+ }
33163
+
33164
+ .E_t1gvlxt5 {
33165
+ min-width: 0;
33166
+ flex: 1;
33167
+ }
33168
+ .E_t1gvlxt5 .tag {
33169
+ flex: 0 0 auto;
33170
+ }
33171
+ .E_t1gvlxt5 .progress-title {
33172
+ flex: 2;
33173
+ max-width: fit-content;
33174
+ }
33175
+ .E_t1gvlxt5 .progress-desc {
33176
+ flex: 1;
33177
+ max-width: fit-content;
33178
+ }
33179
+
33180
+ .E_a1ji6r68 {
33181
+ display: flex;
33182
+ align-items: center;
33183
+ column-gap: var(--a1ji6r68-0);
33184
+ }
33185
+
33186
+ .E_msn7nxt {
33187
+ color: rgba(44, 56, 82, 0.6);
33188
+ text-align: center;
33189
+ display: flex;
33190
+ align-items: center;
33191
+ justify-content: center;
33192
+ flex-direction: column;
33193
+ height: 100%;
33194
+ }
33195
+ .E_msn7nxt .link {
33196
+ color: #0080ff;
33197
+ cursor: pointer;
33198
+ }
33199
+
33200
+ .E_mp64wfi {
33201
+ width: 100%;
33202
+ height: 100%;
33203
+ display: flex;
33204
+ flex-direction: column;
33205
+ }
33206
+ .E_mp64wfi .name-toolbar {
33207
+ width: 100%;
33208
+ display: flex;
33209
+ line-height: 30px;
33210
+ padding: 0 16px;
33211
+ justify-content: space-between;
33212
+ }
33213
+ .E_mp64wfi .name-toolbar .metric-extra {
33214
+ display: flex;
33215
+ font-size: 12px;
33216
+ align-items: center;
33217
+ }
33218
+ .E_mp64wfi .name-toolbar .metric-extra .info-item {
33219
+ color: #a3b4cc;
33220
+ }
33221
+ .E_mp64wfi .name-toolbar .metric-extra .info-item + .info-item {
33222
+ margin-left: 10px;
33223
+ }
33224
+ .E_mp64wfi .name-toolbar .metric-extra .menu-trigger {
33225
+ margin-left: 10px;
33226
+ cursor: pointer;
33227
+ }
33228
+ .E_mp64wfi .content {
33229
+ flex: 1;
33230
+ width: 100%;
33231
+ display: flex;
33232
+ justify-content: center;
33233
+ align-items: center;
33234
+ }
33235
+ .E_mp64wfi .single-content {
33236
+ height: 65px;
33237
+ }
33238
+
33239
+ .E_l1oyigan {
33240
+ display: flex;
33241
+ align-items: center;
33242
+ white-space: nowrap;
33243
+ overflow: hidden;
33244
+ width: 100%;
33245
+ }
33246
+ .E_l1oyigan .ant-dropdown-trigger {
33247
+ margin-left: auto;
33248
+ font-size: 12px;
33249
+ }
33250
+
33251
+ .E_l1noi4n1 {
33252
+ display: flex;
33253
+ justify-content: flex-start;
33254
+ align-items: center;
33255
+ font-size: 12px;
33256
+ cursor: pointer;
33257
+ }
33258
+ .E_l1noi4n1:not(:last-child) {
33259
+ margin-right: 20px;
33260
+ }
33261
+ .E_l1noi4n1.deselected {
33262
+ opacity: 0.4;
33263
+ }
33264
+ .E_l1noi4n1.deselected .color-block {
33265
+ background: #b4beca !important;
33266
+ }
33267
+
33268
+ .E_cz19rz6 {
33269
+ display: inline-block;
33270
+ height: 8px;
33271
+ width: 8px;
33272
+ margin-right: 8px;
33273
+ }
33274
+
33275
+ .E_e17r5r9c .ant-dropdown-menu-item {
33276
+ display: flex;
33277
+ align-items: center;
33278
+ font-size: 12px;
33279
+ margin: 0;
33280
+ }
33281
+
33282
+ .E_m1y1hhnr {
33283
+ position: relative;
33284
+ }
33285
+ .E_m1y1hhnr.hidden-xaxis .pointer-wrapper {
33286
+ bottom: -12px;
33287
+ }
33288
+ .E_m1y1hhnr .metric-toolbar {
33289
+ display: flex;
33290
+ justify-content: space-between;
33291
+ line-height: 30px;
33292
+ margin: 0 16px;
33293
+ }
33294
+ .E_m1y1hhnr .metric-toolbar .metric-extra {
33295
+ display: flex;
33296
+ font-size: 12px;
33297
+ align-items: center;
33298
+ }
33299
+ .E_m1y1hhnr .metric-toolbar .metric-extra .info-item {
33300
+ color: #a3b4cc;
33301
+ }
33302
+ .E_m1y1hhnr .metric-toolbar .metric-extra .info-item + .info-item {
33303
+ margin-left: 10px;
33304
+ }
33305
+ .E_m1y1hhnr .metric-toolbar .metric-extra .menu-trigger {
33306
+ margin-left: 10px;
33307
+ cursor: pointer;
33308
+ }
33309
+ .E_m1y1hhnr .recharts-xAxis {
33310
+ font-size: 12px;
33311
+ }
33312
+ .E_m1y1hhnr .pointer-wrapper {
33313
+ position: absolute;
33314
+ bottom: 10px;
33315
+ padding: 0 8px;
33316
+ border-radius: 4px;
33317
+ font-size: 12px;
33318
+ color: #fff;
33319
+ background: rgba(0, 0, 0, 0.75);
33320
+ transform: translateX(-50%);
33321
+ }
33322
+
33323
+ .E_tnvijvs {
33324
+ min-width: 200px;
33325
+ }
33326
+
33327
+ .E_t1ub2aex {
33328
+ display: flex;
33329
+ align-items: center;
33330
+ justify-content: space-between;
33331
+ background-color: rgba(0, 0, 0, 0.75);
33332
+ color: #b4beca;
33333
+ font-size: 12px;
33334
+ padding: 3px 6px;
33335
+ }
33336
+ .E_t1ub2aex:first-child {
33337
+ padding-top: 3px;
33338
+ }
33339
+ .E_t1ub2aex:last-child {
33340
+ padding-bottom: 3px;
33341
+ }
33342
+ .E_t1ub2aex .column-value {
33343
+ color: #fff;
33344
+ margin-left: 8px;
33345
+ }
33346
+
33347
+ .E_sjob3jg {
33348
+ --item-min-width: 60px;
33349
+ }
33350
+ .E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
33351
+ display: none !important;
33352
+ }
33353
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active {
33354
+ flex-shrink: 0 !important;
33355
+ }
33356
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
33357
+ color: #0080ff;
33358
+ }
33359
+ .E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
33360
+ color: #0080ff;
33361
+ font-weight: normal;
33362
+ }
33363
+ .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 {
33364
+ color: rgba(44, 56, 82, 0.6);
33365
+ }
33366
+ .E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
33367
+ color: #00122e;
33368
+ }
33369
+ .E_sjob3jg .step-item-text {
33370
+ display: inline-block;
33371
+ }
33372
+ .E_sjob3jg .step-item-title {
33373
+ overflow: hidden;
33374
+ white-space: nowrap;
33375
+ text-overflow: ellipsis;
33376
+ }
33377
+
33378
+ .E_hjvj6s6 .ant-steps-item-container {
33379
+ min-width: var(--item-min-width);
33380
+ }
33381
+ .E_hjvj6s6 .ant-steps-item-disabled {
33382
+ cursor: not-allowed !important;
33383
+ }
33384
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
33385
+ flex-direction: row;
33386
+ justify-content: stretch;
33387
+ }
33388
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
33389
+ padding: 0;
33390
+ margin-right: 4px;
33391
+ flex: 1;
33392
+ overflow: visible;
33393
+ }
33394
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
33395
+ width: 100%;
33396
+ min-height: unset;
33397
+ }
33398
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
33399
+ height: 26px;
33400
+ line-height: 26px;
33401
+ width: 100%;
33402
+ padding: 0;
33403
+ font-size: 12px;
33404
+ }
33405
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
33406
+ margin-right: 10px;
33407
+ }
33408
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
33409
+ display: none;
33410
+ }
33411
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
33412
+ padding-left: 8px;
33413
+ padding-right: 4px;
33414
+ border-radius: 4px 0 0 4px;
33415
+ }
33416
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
33417
+ margin-right: 0;
33418
+ }
33419
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
33420
+ padding-right: 8px;
33421
+ padding-left: 12px;
33422
+ border-radius: 0 4px 4px 0;
33423
+ }
33424
+ .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 {
33425
+ content: "";
33426
+ width: 0;
33427
+ height: 0;
33428
+ border: 13px solid transparent;
33429
+ position: absolute;
33430
+ top: 0;
33431
+ border-left: 8px solid rgba(237, 241, 250, 0.6);
33432
+ z-index: 2;
33433
+ position: relative;
33434
+ top: -50%;
33435
+ right: -100%;
33436
+ }
33437
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
33438
+ padding: 0 4px 0 12px;
33439
+ }
33440
+ .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 {
33441
+ content: "";
33442
+ width: 0;
33443
+ height: 0;
33444
+ border: 13px solid transparent;
33445
+ position: absolute;
33446
+ top: 0;
33447
+ border-left: 8px solid #fff;
33448
+ left: 0;
33449
+ }
33450
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
33451
+ max-width: calc(100% - var(--item-min-width) * 2);
33452
+ }
33453
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
33454
+ background-color: rgba(0, 136, 255, 0.1);
33455
+ }
33456
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
33457
+ border-left-color: rgba(0, 136, 255, 0.1) !important;
33458
+ }
33459
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
33460
+ cursor: pointer;
33461
+ min-width: var(--item-min-width);
33462
+ }
33463
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
33464
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
33465
+ min-width: var(--item-min-width);
33466
+ }
33467
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
33468
+ .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
33469
+ background-color: rgba(237, 241, 250, 0.6);
33470
+ }
33471
+ .E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
33472
+ padding: 0;
33473
+ }
33474
+
33475
+ .E_v4tv3mf .ant-steps.ant-steps-vertical {
33476
+ width: 192px;
33477
+ row-gap: 2px;
33478
+ }
33479
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
33480
+ background-color: rgba(225, 230, 241, 0.6);
33481
+ }
33482
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
33483
+ color: #00122e !important;
33484
+ }
33485
+ .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 {
33486
+ background-color: rgba(225, 230, 241, 0.6);
33487
+ }
33488
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
33489
+ padding: 0 8px;
33490
+ border-radius: 4px;
33491
+ height: 32px;
33492
+ display: flex;
33493
+ align-items: center;
33494
+ }
33495
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
33496
+ min-height: auto;
33497
+ white-space: nowrap;
33498
+ }
33499
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
33500
+ font-size: 13px;
33501
+ line-height: 20px;
33502
+ max-width: 100%;
33503
+ padding-right: 0;
33504
+ }
33505
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
33506
+ background: rgba(0, 128, 255, 0.1);
33507
+ }
33508
+
33509
+ .E_h6l1tj4 {
33510
+ width: 100%;
33511
+ display: inline-flex;
33512
+ align-items: center;
33513
+ justify-content: center;
33514
+ column-gap: 4px;
33515
+ }
33516
+ .E_h6l1tj4 .step-item-prefix-container {
33517
+ display: inline-flex;
33518
+ align-items: center;
33519
+ width: 18px;
33520
+ height: 18px;
33521
+ color: rgba(44, 56, 82, 0.75);
33522
+ justify-content: center;
33523
+ }
33524
+
33525
+ .E_v18frne8 {
33526
+ width: 100%;
33527
+ display: flex;
33528
+ align-items: center;
33529
+ justify-content: center;
33530
+ column-gap: 6px;
33531
+ font-size: 13px;
33532
+ }
33533
+ .E_v18frne8 .step-item-prefix-container {
33534
+ display: inline-flex;
33535
+ align-items: center;
33536
+ min-width: 20px;
33537
+ min-height: 20px;
33538
+ color: rgba(44, 56, 82, 0.75);
33539
+ justify-content: center;
33540
+ }
33541
+
33542
+ button.E_l48ei06.ant-btn,
33543
+ button.E_l48ei06.ant-btn.ant-btn-sm,
33544
+ button.E_l48ei06.ant-btn.ant-btn-lg {
33545
+ font-size: 12px;
33546
+ line-height: 18px;
33547
+ height: 18px;
33548
+ }
33549
+
33550
+ button.E_l48ei06 {
33551
+ color: #0080FF;
33552
+ height: unset;
33553
+ }
33554
+ button.E_l48ei06 .button-prefix-icon {
33555
+ margin-right: 4px;
33556
+ }
33557
+ button.E_l48ei06 .button-suffix-icon {
33558
+ margin-left: 4px;
33559
+ }
33560
+ button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
33561
+ color: #009DFF;
33562
+ }
33563
+ button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
33564
+ color: #005ED1;
33565
+ }
33566
+ button.E_l48ei06.ui-kit-link-disabled {
33567
+ color: #0080FF;
33568
+ }
33569
+ button.E_l48ei06.ui-kit-link-primary {
33570
+ color: #00122E;
33571
+ }
33572
+ button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
33573
+ color: #0080FF;
33574
+ }
33575
+ button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
33576
+ color: #005ED1;
33577
+ }
33578
+ button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
33579
+ color: #00122E;
33580
+ }
33581
+ button.E_l48ei06.ui-kit-link-secondary {
33582
+ color: rgba(44, 56, 82, 0.7490196078);
33583
+ }
33584
+ button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
33585
+ color: #0080FF;
33586
+ }
33587
+ button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
33588
+ color: #005ED1;
33589
+ }
33590
+ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33591
+ color: rgba(44, 56, 82, 0.7490196078);
33592
+ }
33593
+
33594
+ .E_l1ucdodl {
33595
+ margin: 0;
33596
+ border-radius: 20px;
33597
+ padding: 2px 10px;
33598
+ height: 22px;
33208
33599
  display: flex;
33209
33600
  align-items: center;
33210
- background-color: unset;
33601
+ }
33602
+ .E_l1ucdodl.ui-kit-status-legend.on-tint {
33211
33603
  color: #FFFFFF;
33212
- justify-content: space-between;
33213
- font-size: 12px;
33214
- padding-top: 6px;
33215
33604
  }
33216
- .E_tecdsj7:first-child {
33217
- padding-top: 3px;
33605
+ .E_l1ucdodl.tag-hover {
33606
+ cursor: pointer;
33218
33607
  }
33219
- .E_tecdsj7:last-child {
33220
- padding-bottom: 3px;
33608
+ .E_l1ucdodl.ui-kit-status-legend {
33609
+ color: #00122e;
33221
33610
  }
33222
- .E_tecdsj7 .column-value {
33223
- color: #FFFFFF;
33611
+ .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
33612
+ margin-right: 6px;
33613
+ }
33614
+ .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
33224
33615
  margin-left: 8px;
33616
+ color: rgba(44, 56, 82, 0.6);
33617
+ }
33618
+ .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
33619
+ color: #FFFFFF;
33620
+ }
33621
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
33622
+ background-color: #0080ff;
33623
+ }
33624
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
33625
+ background-color: #f0483e;
33626
+ }
33627
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
33628
+ background-color: #fea008;
33629
+ }
33630
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
33631
+ background-color: #00ba5d;
33632
+ }
33633
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
33634
+ background-color: #6b7d99;
33635
+ }
33636
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
33637
+ background-color: #7E41FF;
33225
33638
  }
33226
33639
 
33227
- .E_ljhvvia {
33228
- display: inline-block;
33640
+ .E_s1qj66nc {
33641
+ width: 8px;
33229
33642
  height: 8px;
33643
+ border-radius: 50%;
33644
+ display: inline-block;
33645
+ }
33646
+
33647
+ .E_s5x1boq {
33230
33648
  width: 8px;
33231
- margin-right: 8px;
33649
+ height: 8px;
33232
33650
  border-radius: 2px;
33651
+ display: inline-block;
33233
33652
  }
33234
- .E_ljhvvia.borderd {
33235
- border: 1px solid #fff;
33653
+
33654
+ .E_c1xm185 {
33655
+ color: rgba(44, 56, 82, 0.6);
33656
+ }
33657
+
33658
+ .E_c1x5l5qc {
33659
+ flex: 1;
33236
33660
  }
33237
33661
 
33238
33662
  .E_sddwhm6 {
@@ -33655,240 +34079,30 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33655
34079
  color: rgba(10, 37, 85, 0.6);
33656
34080
  }
33657
34081
  .E_t1fisho6 div.ant-table th.ant-table-cell-scrollbar,
33658
- .E_t1fisho6 div.ant-table th.cell__action_ {
33659
- z-index: 10;
33660
- }
33661
- .E_t1fisho6 div.ant-table td.cell__action_ {
33662
- padding: 0 !important;
33663
- position: relative;
33664
- background: #fff;
33665
- }
33666
- .E_t1fisho6 div.ant-table td.cell__action_ > * {
33667
- height: 100%;
33668
- display: flex;
33669
- align-items: center;
33670
- justify-content: flex-end;
33671
- padding-right: 8px;
33672
- }
33673
- .E_t1fisho6 div.ant-table td.cell__action_ .menu-button {
33674
- width: 24px;
33675
- height: 24px;
33676
- cursor: pointer;
33677
- justify-content: center;
33678
- border-radius: 4px;
33679
- }
33680
- .E_t1fisho6 div.ant-table td.cell__action_ .menu-button:hover {
33681
- background: #fff;
33682
- }
33683
-
33684
- .E_msn7nxt {
33685
- color: rgba(44, 56, 82, 0.6);
33686
- text-align: center;
33687
- display: flex;
33688
- align-items: center;
33689
- justify-content: center;
33690
- flex-direction: column;
33691
- height: 100%;
33692
- }
33693
- .E_msn7nxt .link {
33694
- color: #0080ff;
33695
- cursor: pointer;
33696
- }
33697
-
33698
- .E_mp64wfi {
33699
- width: 100%;
33700
- height: 100%;
33701
- display: flex;
33702
- flex-direction: column;
33703
- }
33704
- .E_mp64wfi .name-toolbar {
33705
- width: 100%;
33706
- display: flex;
33707
- line-height: 30px;
33708
- padding: 0 16px;
33709
- justify-content: space-between;
33710
- }
33711
- .E_mp64wfi .name-toolbar .metric-extra {
33712
- display: flex;
33713
- font-size: 12px;
33714
- align-items: center;
33715
- }
33716
- .E_mp64wfi .name-toolbar .metric-extra .info-item {
33717
- color: #a3b4cc;
33718
- }
33719
- .E_mp64wfi .name-toolbar .metric-extra .info-item + .info-item {
33720
- margin-left: 10px;
33721
- }
33722
- .E_mp64wfi .name-toolbar .metric-extra .menu-trigger {
33723
- margin-left: 10px;
33724
- cursor: pointer;
33725
- }
33726
- .E_mp64wfi .content {
33727
- flex: 1;
33728
- width: 100%;
33729
- display: flex;
33730
- justify-content: center;
33731
- align-items: center;
33732
- }
33733
- .E_mp64wfi .single-content {
33734
- height: 65px;
33735
- }
33736
-
33737
- .E_l1oyigan {
33738
- display: flex;
33739
- align-items: center;
33740
- white-space: nowrap;
33741
- overflow: hidden;
33742
- width: 100%;
33743
- }
33744
- .E_l1oyigan .ant-dropdown-trigger {
33745
- margin-left: auto;
33746
- font-size: 12px;
33747
- }
33748
-
33749
- .E_l1noi4n1 {
33750
- display: flex;
33751
- justify-content: flex-start;
33752
- align-items: center;
33753
- font-size: 12px;
33754
- cursor: pointer;
33755
- }
33756
- .E_l1noi4n1:not(:last-child) {
33757
- margin-right: 20px;
33758
- }
33759
- .E_l1noi4n1.deselected {
33760
- opacity: 0.4;
33761
- }
33762
- .E_l1noi4n1.deselected .color-block {
33763
- background: #b4beca !important;
33764
- }
33765
-
33766
- .E_cz19rz6 {
33767
- display: inline-block;
33768
- height: 8px;
33769
- width: 8px;
33770
- margin-right: 8px;
33771
- }
33772
-
33773
- .E_e17r5r9c .ant-dropdown-menu-item {
33774
- display: flex;
33775
- align-items: center;
33776
- font-size: 12px;
33777
- margin: 0;
33778
- }
33779
-
33780
- .E_m1y1hhnr {
33781
- position: relative;
33782
- }
33783
- .E_m1y1hhnr.hidden-xaxis .pointer-wrapper {
33784
- bottom: -12px;
33785
- }
33786
- .E_m1y1hhnr .metric-toolbar {
33787
- display: flex;
33788
- justify-content: space-between;
33789
- line-height: 30px;
33790
- margin: 0 16px;
33791
- }
33792
- .E_m1y1hhnr .metric-toolbar .metric-extra {
33793
- display: flex;
33794
- font-size: 12px;
33795
- align-items: center;
33796
- }
33797
- .E_m1y1hhnr .metric-toolbar .metric-extra .info-item {
33798
- color: #a3b4cc;
33799
- }
33800
- .E_m1y1hhnr .metric-toolbar .metric-extra .info-item + .info-item {
33801
- margin-left: 10px;
33802
- }
33803
- .E_m1y1hhnr .metric-toolbar .metric-extra .menu-trigger {
33804
- margin-left: 10px;
33805
- cursor: pointer;
33806
- }
33807
- .E_m1y1hhnr .recharts-xAxis {
33808
- font-size: 12px;
33809
- }
33810
- .E_m1y1hhnr .pointer-wrapper {
33811
- position: absolute;
33812
- bottom: 10px;
33813
- padding: 0 8px;
33814
- border-radius: 4px;
33815
- font-size: 12px;
33816
- color: #fff;
33817
- background: rgba(0, 0, 0, 0.75);
33818
- transform: translateX(-50%);
33819
- }
33820
-
33821
- .E_tnvijvs {
33822
- min-width: 200px;
33823
- }
33824
-
33825
- .E_t1ub2aex {
33826
- display: flex;
33827
- align-items: center;
33828
- justify-content: space-between;
33829
- background-color: rgba(0, 0, 0, 0.75);
33830
- color: #b4beca;
33831
- font-size: 12px;
33832
- padding: 3px 6px;
33833
- }
33834
- .E_t1ub2aex:first-child {
33835
- padding-top: 3px;
33836
- }
33837
- .E_t1ub2aex:last-child {
33838
- padding-bottom: 3px;
34082
+ .E_t1fisho6 div.ant-table th.cell__action_ {
34083
+ z-index: 10;
33839
34084
  }
33840
- .E_t1ub2aex .column-value {
33841
- color: #fff;
33842
- margin-left: 8px;
34085
+ .E_t1fisho6 div.ant-table td.cell__action_ {
34086
+ padding: 0 !important;
34087
+ position: relative;
34088
+ background: #fff;
33843
34089
  }
33844
-
33845
- .E_lht19u8 {
33846
- width: 64px;
33847
- height: 64px;
34090
+ .E_t1fisho6 div.ant-table td.cell__action_ > * {
34091
+ height: 100%;
33848
34092
  display: flex;
33849
34093
  align-items: center;
33850
- justify-content: center;
33851
- position: relative;
33852
- opacity: 0.2;
33853
- }
33854
-
33855
- .E_lk3gkp4 {
33856
- position: absolute;
33857
- width: 5px;
33858
- height: 48px;
33859
- left: 9.33px;
33860
- top: 40.5px;
33861
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33862
- border-radius: 5px;
33863
- transform: rotate(-128deg);
33864
- transform-origin: top left;
33865
- animation: loading-indicator1 1100ms ease-out infinite;
34094
+ justify-content: flex-end;
34095
+ padding-right: 8px;
33866
34096
  }
33867
-
33868
- .E_ll4n94n {
33869
- position: absolute;
33870
- width: 5px;
33871
- height: 48px;
33872
- left: 40.8px;
33873
- top: 8.4px;
33874
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33875
- border-radius: 5px;
33876
- transform: rotate(-8deg);
33877
- transform-origin: top left;
33878
- animation: loading-indicator2 1100ms ease-out infinite;
34097
+ .E_t1fisho6 div.ant-table td.cell__action_ .menu-button {
34098
+ width: 24px;
34099
+ height: 24px;
34100
+ cursor: pointer;
34101
+ justify-content: center;
34102
+ border-radius: 4px;
33879
34103
  }
33880
-
33881
- .E_l17lbdo6 {
33882
- position: absolute;
33883
- width: 5px;
33884
- height: 48px;
33885
- left: 52.9px;
33886
- top: 51.8px;
33887
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33888
- border-radius: 5px;
33889
- transform: rotate(112deg);
33890
- transform-origin: top left;
33891
- animation: loading-indicator3 1100ms ease-out infinite;
34104
+ .E_t1fisho6 div.ant-table td.cell__action_ .menu-button:hover {
34105
+ background: #fff;
33892
34106
  }
33893
34107
 
33894
34108
  .E_w7ob4th.outside-tag {
@@ -33900,35 +34114,11 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33900
34114
  margin-right: 4px;
33901
34115
  }
33902
34116
 
33903
- .E_slr2ynn {
33904
- padding: 0 8px;
33905
- height: 18px;
33906
- }
33907
-
33908
- .E_m140wbb6 {
33909
- padding: 2px 8px;
33910
- height: 24px;
33911
- }
33912
-
33913
- .E_t1fozc1i {
33914
- margin: 0;
33915
- }
33916
-
33917
- .E_i1vxv4ln {
34117
+ .E_i1g85yz3 {
33918
34118
  margin-right: 4px;
33919
34119
  height: 16px;
33920
34120
  }
33921
34121
 
33922
- .E_n1afl31m.ant-tag.ant-tag-gray {
33923
- font-weight: 700;
33924
- color: #00122e;
33925
- background-color: rgba(237, 241, 250, 0.6);
33926
- border: 1px solid rgba(211, 218, 235, 0.6);
33927
- word-break: break-all;
33928
- display: inline;
33929
- white-space: normal;
33930
- }
33931
-
33932
34122
  .E_t1dtlqs1 {
33933
34123
  margin-bottom: 4px;
33934
34124
  color: rgba(44, 56, 82, 0.6);
@@ -34104,6 +34294,7 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34104
34294
  display: flex;
34105
34295
  align-items: center;
34106
34296
  margin-top: 8px;
34297
+ gap: 8px;
34107
34298
  }
34108
34299
  .E_a138syjm button.ant-btn {
34109
34300
  padding: 2px 8px;
@@ -34111,7 +34302,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34111
34302
  }
34112
34303
  .E_a138syjm > span.maximum-desc {
34113
34304
  display: none;
34114
- margin-left: 8px;
34115
34305
  color: rgba(44, 56, 82, 0.6);
34116
34306
  }
34117
34307
  .E_a138syjm > span.maximum-desc.disabled {
@@ -34122,209 +34312,38 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34122
34312
  width: 24px;
34123
34313
  height: 24px;
34124
34314
  padding: 4px;
34125
- margin-right: 8px;
34126
- }
34127
-
34128
- .E_sjob3jg {
34129
- --item-min-width: 60px;
34130
- }
34131
- .E_sjob3jg .ant-steps-item-tail, .E_sjob3jg .ant-steps-item-icon {
34132
- display: none !important;
34133
- }
34134
- .E_sjob3jg .ant-steps-item.ant-steps-item-active {
34135
- flex-shrink: 0 !important;
34136
- }
34137
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
34138
- color: #0080ff;
34139
- }
34140
- .E_sjob3jg .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34141
- color: #0080ff;
34142
- font-weight: normal;
34143
- }
34144
- .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 {
34145
- color: rgba(44, 56, 82, 0.6);
34146
- }
34147
- .E_sjob3jg .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34148
- color: #00122e;
34149
- }
34150
- .E_sjob3jg .step-item-text {
34151
- display: inline-block;
34152
- }
34153
- .E_sjob3jg .step-item-title {
34154
- overflow: hidden;
34155
- white-space: nowrap;
34156
- text-overflow: ellipsis;
34157
- }
34158
-
34159
- .E_hjvj6s6 .ant-steps-item-container {
34160
- min-width: var(--item-min-width);
34161
- }
34162
- .E_hjvj6s6 .ant-steps-item-disabled {
34163
- cursor: not-allowed !important;
34164
- }
34165
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal {
34166
- flex-direction: row;
34167
- justify-content: stretch;
34168
- }
34169
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
34170
- padding: 0;
34171
- margin-right: 4px;
34172
- flex: 1;
34173
- overflow: visible;
34174
- }
34175
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
34176
- width: 100%;
34177
- min-height: unset;
34178
- }
34179
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
34180
- height: 26px;
34181
- line-height: 26px;
34182
- width: 100%;
34183
- padding: 0;
34184
- font-size: 12px;
34185
- }
34186
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
34187
- margin-right: 10px;
34188
- }
34189
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
34190
- display: none;
34191
- }
34192
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
34193
- padding-left: 8px;
34194
- padding-right: 4px;
34195
- border-radius: 4px 0 0 4px;
34196
- }
34197
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
34198
- margin-right: 0;
34199
- }
34200
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
34201
- padding-right: 8px;
34202
- padding-left: 12px;
34203
- border-radius: 0 4px 4px 0;
34204
- }
34205
- .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 {
34206
- content: "";
34207
- width: 0;
34208
- height: 0;
34209
- border: 13px solid transparent;
34210
- position: absolute;
34211
- top: 0;
34212
- border-left: 8px solid rgba(237, 241, 250, 0.6);
34213
- z-index: 2;
34214
- position: relative;
34215
- top: -50%;
34216
- right: -100%;
34217
- }
34218
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
34219
- padding: 0 4px 0 12px;
34220
- }
34221
- .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 {
34222
- content: "";
34223
- width: 0;
34224
- height: 0;
34225
- border: 13px solid transparent;
34226
- position: absolute;
34227
- top: 0;
34228
- border-left: 8px solid #fff;
34229
- left: 0;
34230
- }
34231
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
34232
- max-width: calc(100% - var(--item-min-width) * 2);
34233
- }
34234
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
34235
- background-color: rgba(0, 136, 255, 0.1);
34236
- }
34237
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
34238
- border-left-color: rgba(0, 136, 255, 0.1) !important;
34239
- }
34240
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
34241
- cursor: pointer;
34242
- min-width: var(--item-min-width);
34243
- }
34244
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
34245
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
34246
- min-width: var(--item-min-width);
34247
- }
34248
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
34249
- .E_hjvj6s6 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
34250
- background-color: rgba(237, 241, 250, 0.6);
34251
- }
34252
- .E_hjvj6s6 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
34253
- padding: 0;
34254
- }
34255
-
34256
- .E_v4tv3mf .ant-steps.ant-steps-vertical {
34257
- width: 192px;
34258
- row-gap: 2px;
34259
- }
34260
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container:hover {
34261
- background-color: rgba(225, 230, 241, 0.6);
34262
- }
34263
- .E_v4tv3mf .ant-steps.ant-steps-vertical .preview-mode:not(.ant-steps-item-active) .ant-steps-item-container .ant-steps-item-title {
34264
- color: #00122e !important;
34265
- }
34266
- .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 {
34267
- background-color: rgba(225, 230, 241, 0.6);
34268
- }
34269
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container {
34270
- padding: 0 8px;
34271
- border-radius: 4px;
34272
- height: 32px;
34273
- display: flex;
34274
- align-items: center;
34275
- }
34276
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
34277
- min-height: auto;
34278
- white-space: nowrap;
34279
- }
34280
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34281
- font-size: 13px;
34282
- line-height: 20px;
34283
- max-width: 100%;
34284
- padding-right: 0;
34285
- }
34286
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
34287
- background: rgba(0, 128, 255, 0.1);
34315
+ margin-right: 8px;
34288
34316
  }
34289
34317
 
34290
- .E_h6l1tj4 {
34291
- width: 100%;
34292
- display: inline-flex;
34293
- align-items: center;
34294
- justify-content: center;
34295
- column-gap: 4px;
34296
- }
34297
- .E_h6l1tj4 .step-item-prefix-container {
34298
- display: inline-flex;
34299
- align-items: center;
34300
- width: 18px;
34318
+ .E_slr2ynn {
34319
+ padding: 0 8px;
34301
34320
  height: 18px;
34302
- color: rgba(44, 56, 82, 0.75);
34303
- justify-content: center;
34304
34321
  }
34305
34322
 
34306
- .E_v18frne8 {
34307
- width: 100%;
34308
- display: flex;
34309
- align-items: center;
34310
- justify-content: center;
34311
- column-gap: 6px;
34312
- font-size: 13px;
34323
+ .E_m140wbb6 {
34324
+ padding: 2px 8px;
34325
+ height: 24px;
34313
34326
  }
34314
- .E_v18frne8 .step-item-prefix-container {
34315
- display: inline-flex;
34316
- align-items: center;
34317
- min-width: 20px;
34318
- min-height: 20px;
34319
- color: rgba(44, 56, 82, 0.75);
34320
- justify-content: center;
34327
+
34328
+ .E_t1fozc1i {
34329
+ margin: 0;
34321
34330
  }
34322
34331
 
34323
- .E_i1g85yz3 {
34332
+ .E_i1vxv4ln {
34324
34333
  margin-right: 4px;
34325
34334
  height: 16px;
34326
34335
  }
34327
34336
 
34337
+ .E_n1afl31m.ant-tag.ant-tag-gray {
34338
+ font-weight: 700;
34339
+ color: #00122e;
34340
+ background-color: rgba(237, 241, 250, 0.6);
34341
+ border: 1px solid rgba(211, 218, 235, 0.6);
34342
+ word-break: break-all;
34343
+ display: inline;
34344
+ white-space: normal;
34345
+ }
34346
+
34328
34347
  .E_t13ef470 {
34329
34348
  height: 100%;
34330
34349
  }
@@ -34433,6 +34452,15 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34433
34452
  background: rgba(172, 186, 211, 0.6);
34434
34453
  border-radius: 8px;
34435
34454
  }
34455
+ .E_icab5o7.ant-modal.initializing-error .ant-modal-body {
34456
+ display: flex;
34457
+ justify-content: center;
34458
+ align-items: center;
34459
+ height: 100%;
34460
+ }
34461
+ .E_icab5o7.ant-modal .initializing-title {
34462
+ height: 40px;
34463
+ }
34436
34464
  .E_icab5o7.ant-modal .ant-modal-footer {
34437
34465
  border-top: 1px solid rgba(225, 230, 241, 0.6);
34438
34466
  padding: 24px 0 60px 0;
@@ -34605,35 +34633,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34605
34633
  color: #00122E;
34606
34634
  }
34607
34635
 
34608
- .E_s20iney.skeleton-box {
34609
- display: flex;
34610
- align-items: center;
34611
- justify-content: center;
34612
- position: relative;
34613
- border-radius: 2px;
34614
- background: rgba(225, 230, 241, 0.6);
34615
- overflow: hidden;
34616
- }
34617
- .E_s20iney.skeleton-box > .skeleton-shimmer {
34618
- width: 200%;
34619
- height: 200%;
34620
- transform: rotate(15deg);
34621
- position: absolute;
34622
- top: -50%;
34623
- flex-shrink: 0;
34624
- opacity: 0.8;
34625
- background: linear-gradient(90deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 85%);
34626
- animation: shimmer 1100ms infinite;
34627
- }
34628
- @keyframes shimmer {
34629
- from {
34630
- left: -120%;
34631
- }
34632
- to {
34633
- left: 100%;
34634
- }
34635
- }
34636
-
34637
34636
  .E_dxyv8bv {
34638
34637
  --footer-height: 80px;
34639
34638
  --header-height: 56px;
@@ -34643,7 +34642,8 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34643
34642
  100vh - 144px - var(--header-height) - var(--footer-height)
34644
34643
  );
34645
34644
  --modal-header-padding: 32px 40px 0;
34646
- --modal-content-padding-y: 32px;
34645
+ --modal-content-padding-top: 32px;
34646
+ --modal-content-padding-bottom: 32px;
34647
34647
  --modal-content-padding-x: 40px;
34648
34648
  --modal-footer-padding: 0 40px;
34649
34649
  }
@@ -34667,7 +34667,7 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34667
34667
  top: 24px;
34668
34668
  }
34669
34669
  .E_dxyv8bv .ant-modal-body {
34670
- padding: var(--modal-content-padding-y) var(--modal-content-padding-x);
34670
+ padding: var(--modal-content-padding-top) var(--modal-content-padding-x) var(--modal-content-padding-bottom);
34671
34671
  padding-right: calc(var(--modal-content-padding-x) - 6px);
34672
34672
  min-height: var(--modal-content-min-height);
34673
34673
  max-height: var(--modal-content-max-height);
@@ -34685,6 +34685,12 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34685
34685
  background: rgba(172, 186, 211, 0.6);
34686
34686
  border-radius: 8px;
34687
34687
  }
34688
+ .E_dxyv8bv.initializing-error .ant-modal-body {
34689
+ display: flex;
34690
+ justify-content: center;
34691
+ align-items: center;
34692
+ height: 100%;
34693
+ }
34688
34694
  .E_dxyv8bv .ant-modal-footer {
34689
34695
  height: var(--footer-height);
34690
34696
  padding: var(--modal-footer-padding);
@@ -34726,6 +34732,59 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34726
34732
  transition: 0.3s ease-out;
34727
34733
  }
34728
34734
 
34735
+ .E_m1k84ymw {
34736
+ width: 132px;
34737
+ height: 24px;
34738
+ }
34739
+
34740
+ .E_m15ds5xe {
34741
+ width: 100%;
34742
+ height: 100%;
34743
+ }
34744
+ .E_m15ds5xe .skeleton-wrapper {
34745
+ width: 100%;
34746
+ height: 32px;
34747
+ }
34748
+
34749
+ .E_ma56n19 {
34750
+ display: flex;
34751
+ flex-direction: column;
34752
+ gap: 4px;
34753
+ justify-content: center;
34754
+ align-items: center;
34755
+ height: 100%;
34756
+ color: rgba(0, 21, 64, 0.3019607843);
34757
+ }
34758
+
34759
+ .E_s20iney.skeleton-box {
34760
+ display: flex;
34761
+ align-items: center;
34762
+ justify-content: center;
34763
+ position: relative;
34764
+ border-radius: 2px;
34765
+ background: rgba(225, 230, 241, 0.6);
34766
+ overflow: hidden;
34767
+ }
34768
+ .E_s20iney.skeleton-box > .skeleton-shimmer {
34769
+ width: 200%;
34770
+ height: 200%;
34771
+ transform: rotate(15deg);
34772
+ position: absolute;
34773
+ top: -50%;
34774
+ flex-shrink: 0;
34775
+ opacity: 0.8;
34776
+ background: linear-gradient(90deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 85%);
34777
+ animation: shimmer 1100ms infinite;
34778
+ }
34779
+ @keyframes shimmer {
34780
+ from {
34781
+ left: -120%;
34782
+ }
34783
+ to {
34784
+ left: 100%;
34785
+ }
34786
+ }
34787
+
34729
34788
  .E_sqv6dmy {
34730
34789
  display: flex;
34731
34790
  justify-content: flex-end;
@@ -34760,6 +34819,10 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34760
34819
  border-radius: 8px;
34761
34820
  }
34762
34821
 
34822
+ .E_t1616y1o {
34823
+ color: #fff;
34824
+ }
34825
+
34763
34826
  .E_t1g36k2w {
34764
34827
  overflow: hidden;
34765
34828
  height: 100%;
@@ -34789,10 +34852,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34789
34852
  background: rgba(225, 230, 241, 0.6);
34790
34853
  }
34791
34854
 
34792
- .E_t1616y1o {
34793
- color: #fff;
34794
- }
34795
-
34796
34855
  .E_a9y3flr {
34797
34856
  margin-left: 8px;
34798
34857
  }
@@ -34814,117 +34873,193 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34814
34873
  font-size: 12px;
34815
34874
  line-height: 18px;
34816
34875
  }
34817
- .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
34818
- white-space: pre-wrap;
34876
+ .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
34877
+ white-space: pre-wrap;
34878
+ }
34879
+ .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
34880
+ display: block;
34881
+ }
34882
+
34883
+ .E_i14c7jc8 {
34884
+ color: var(--i14c7jc8-0);
34885
+ }
34886
+
34887
+ .E_i1ibuolf {
34888
+ display: flex;
34889
+ align-items: center;
34890
+ column-gap: 4px;
34891
+ font-size: 12px;
34892
+ color: rgba(44, 56, 82, 0.7490196078);
34893
+ }
34894
+
34895
+ .E_d1u4ndxc {
34896
+ color: rgba(44, 56, 82, 0.7490196078);
34897
+ font-size: 12px;
34898
+ }
34899
+
34900
+ .E_f6xb0iv {
34901
+ min-width: 0;
34902
+ flex: 1;
34903
+ }
34904
+
34905
+ .E_b1dhu7ov.antd5-progress {
34906
+ width: 220px;
34907
+ }
34908
+
34909
+ .E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
34910
+ content: "";
34911
+ display: block;
34912
+ height: 8px;
34913
+ background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
34914
+ animation: loading 1600ms ease-out infinite;
34915
+ opacity: 1;
34916
+ }
34917
+ @keyframes loading {
34918
+ from {
34919
+ transform: translateX(-100%);
34920
+ }
34921
+ to {
34922
+ transform: translateX(100%);
34923
+ }
34924
+ }
34925
+
34926
+ .E_skwah65 {
34927
+ height: 8px;
34928
+ box-sizing: border-box;
34929
+ border-radius: 2px;
34930
+ background: #f5f7fa;
34931
+ display: flex;
34932
+ width: 100%;
34933
+ overflow: hidden;
34934
+ }
34935
+ .E_skwah65 .stack-bar-item + .stack-bar-item {
34936
+ margin-left: 1px;
34937
+ }
34938
+
34939
+ .E_gmyahx3 {
34940
+ cursor: pointer;
34941
+ }
34942
+ .E_gmyahx3 .link-text {
34943
+ color: rgba(0, 21, 64, 0.3);
34944
+ }
34945
+ .E_gmyahx3:hover .link-text {
34946
+ color: #0080ff;
34947
+ }
34948
+
34949
+ .E_clm1wy1 {
34950
+ width: 192px;
34951
+ height: 246px;
34952
+ border-radius: 4px;
34953
+ }
34954
+ .E_clm1wy1 > .ant-picker-calendar,
34955
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
34956
+ width: 100%;
34957
+ background-color: rgba(245, 247, 250, 0.6);
34958
+ border-top: none;
34959
+ }
34960
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
34961
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
34962
+ padding: 0 16px;
34963
+ }
34964
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
34965
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
34966
+ width: 100%;
34967
+ height: 180px;
34968
+ border-spacing: 0;
34969
+ }
34970
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
34971
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
34972
+ margin-bottom: 8px;
34973
+ }
34974
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
34975
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
34976
+ width: 22px;
34977
+ }
34978
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-content td,
34979
+ .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
34980
+ padding: 0;
34981
+ }
34982
+ .E_clm1wy1 .ant-picker-cell {
34983
+ color: rgba(62, 70, 82, 0.6);
34984
+ opacity: 0.4;
34985
+ }
34986
+ .E_clm1wy1 .ant-picker-cell-in-view {
34987
+ color: rgba(62, 70, 82, 0.6);
34988
+ opacity: 1;
34989
+ }
34990
+ .E_clm1wy1 .ant-picker-cell-in-view > .active {
34991
+ color: #3e4652;
34819
34992
  }
34820
- .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
34821
- display: block;
34993
+ .E_clm1wy1 .ant-picker-cell::before {
34994
+ pointer-events: none;
34822
34995
  }
34823
34996
 
34824
- .E_i14c7jc8 {
34825
- color: var(--i14c7jc8-0);
34997
+ .E_t1tsm00v {
34998
+ color: rgba(129, 138, 153, 0.6);
34999
+ box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
35000
+ backdrop-filter: blur(10px);
35001
+ padding: 7px 10px;
34826
35002
  }
34827
35003
 
34828
- .E_i1ibuolf {
35004
+ .E_c167wnad {
35005
+ color: rgba(62, 70, 82, 0.6);
34829
35006
  display: flex;
35007
+ justify-content: space-between;
34830
35008
  align-items: center;
34831
- column-gap: 4px;
34832
- font-size: 12px;
34833
- color: rgba(44, 56, 82, 0.7490196078);
34834
- }
34835
-
34836
- .E_d1u4ndxc {
34837
- color: rgba(44, 56, 82, 0.7490196078);
34838
- font-size: 12px;
35009
+ padding: 8px 16px;
34839
35010
  }
34840
-
34841
- .E_f6xb0iv {
34842
- min-width: 0;
34843
- flex: 1;
35011
+ .E_c167wnad .anticon {
35012
+ cursor: pointer;
34844
35013
  }
34845
-
34846
- .E_b1dhu7ov.antd5-progress {
34847
- width: 220px;
35014
+ .E_c167wnad .anticon:hover {
35015
+ color: #0096ff;
34848
35016
  }
34849
35017
 
34850
- .E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
34851
- content: "";
34852
- display: block;
34853
- height: 8px;
34854
- background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
34855
- animation: loading 1600ms ease-out infinite;
34856
- opacity: 1;
34857
- }
34858
- @keyframes loading {
34859
- from {
34860
- transform: translateX(-100%);
34861
- }
34862
- to {
34863
- transform: translateX(100%);
34864
- }
35018
+ .E_cxhf7dh {
35019
+ text-align: center;
34865
35020
  }
34866
-
34867
- .E_skwah65 {
34868
- height: 8px;
34869
- box-sizing: border-box;
34870
- border-radius: 2px;
34871
- background: #f5f7fa;
35021
+ .E_cxhf7dh .dots {
34872
35022
  display: flex;
34873
- width: 100%;
34874
- overflow: hidden;
34875
- }
34876
- .E_skwah65 .stack-bar-item + .stack-bar-item {
34877
- margin-left: 1px;
35023
+ justify-content: center;
34878
35024
  }
34879
-
34880
- .E_c18bcrac {
35025
+ .E_cxhf7dh .dot {
34881
35026
  display: inline-block;
34882
- width: 100%;
34883
- }
34884
- .E_c18bcrac .recharts-wrapper {
34885
- margin-left: 4px;
35027
+ width: 2px;
35028
+ height: 2px;
35029
+ border-radius: 1px;
35030
+ background: #0096ff;
34886
35031
  }
34887
-
34888
- .E_cro7kg2 {
34889
- padding: 4px;
35032
+ .E_cxhf7dh .dot:not(:last-child) {
35033
+ margin-right: 2px;
34890
35034
  }
34891
- .E_cro7kg2 .unit {
34892
- color: white;
35035
+ .E_cxhf7dh .bar {
35036
+ width: 9px;
35037
+ height: 2px;
35038
+ background: #0096ff;
35039
+ border-radius: 2px;
34893
35040
  }
34894
35041
 
34895
- .E_c14wcxf0 {
35042
+ .E_n12mqh7z {
34896
35043
  display: flex;
34897
- justify-content: space-between;
34898
35044
  align-items: center;
34899
- font-size: 13px;
34900
- line-height: 24px;
34901
- color: #cccccc;
34902
- white-space: nowrap;
35045
+ font-size: 12px;
35046
+ line-height: 18px;
34903
35047
  }
34904
- .E_c14wcxf0 label {
34905
- margin-right: 32px;
35048
+ .E_n12mqh7z:not(:last-child) {
35049
+ margin-bottom: 4px;
34906
35050
  }
34907
35051
 
34908
- .E_coy29mj.E_c14wcxf0 {
34909
- font-weight: bold;
34910
- color: white;
35052
+ .E_tf5bynu {
35053
+ margin: 0 3px;
34911
35054
  }
34912
35055
 
34913
- .E_s11212zy {
34914
- width: 8px;
34915
- height: 8px;
34916
- border-radius: 2px;
34917
- display: inline-block;
34918
- background: var(--s11212zy-0);
34919
- border: 1px solid #fff;
34920
- box-sizing: content-box;
34921
- margin-right: 6px;
35056
+ .E_tcckoz1 {
35057
+ max-height: 400px;
35058
+ overflow: auto;
34922
35059
  }
34923
35060
 
34924
- .E_p1lyky6c > :first-child {
34925
- font-weight: bold;
34926
- color: white;
34927
- margin-right: 4px;
35061
+ span.E_tqjc4ui {
35062
+ margin: 0 2px;
34928
35063
  }
34929
35064
 
34930
35065
  .E_s1ebs0ra {
@@ -34988,157 +35123,194 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34988
35123
  background: #fff;
34989
35124
  }
34990
35125
 
34991
- .E_clm1wy1 {
34992
- width: 192px;
34993
- height: 246px;
34994
- border-radius: 4px;
35126
+ .E_ou7iq30 {
35127
+ overflow: hidden;
35128
+ text-overflow: ellipsis;
34995
35129
  }
34996
- .E_clm1wy1 > .ant-picker-calendar,
34997
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel {
34998
- width: 100%;
34999
- background-color: rgba(245, 247, 250, 0.6);
35000
- border-top: none;
35130
+
35131
+ .E_s1tui002 {
35132
+ white-space: nowrap;
35001
35133
  }
35002
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-body,
35003
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
35004
- padding: 0 16px;
35134
+
35135
+ .E_mxrc2zg {
35136
+ display: -webkit-box;
35137
+ -webkit-line-clamp: var(--mxrc2zg-0);
35138
+ -webkit-box-orient: vertical;
35139
+ word-break: break-all;
35005
35140
  }
35006
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-content,
35007
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
35141
+
35142
+ .E_t1vv6d68 .ant-tooltip-arrow {
35143
+ display: none;
35144
+ }
35145
+ .E_t1vv6d68 .ant-tooltip-inner {
35146
+ background: rgba(23, 38, 64, 0.8);
35147
+ border-radius: 4px;
35148
+ }
35149
+ .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
35150
+ visibility: hidden;
35151
+ }
35152
+
35153
+ .E_c18bcrac {
35154
+ display: inline-block;
35008
35155
  width: 100%;
35009
- height: 180px;
35010
- border-spacing: 0;
35011
35156
  }
35012
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
35013
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
35014
- margin-bottom: 8px;
35157
+ .E_c18bcrac .recharts-wrapper {
35158
+ margin-left: 4px;
35015
35159
  }
35016
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-content th,
35017
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
35018
- width: 22px;
35160
+
35161
+ .E_cro7kg2 {
35162
+ padding: 4px;
35019
35163
  }
35020
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-content td,
35021
- .E_clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
35022
- padding: 0;
35164
+ .E_cro7kg2 .unit {
35165
+ color: white;
35023
35166
  }
35024
- .E_clm1wy1 .ant-picker-cell {
35025
- color: rgba(62, 70, 82, 0.6);
35026
- opacity: 0.4;
35167
+
35168
+ .E_c14wcxf0 {
35169
+ display: flex;
35170
+ justify-content: space-between;
35171
+ align-items: center;
35172
+ font-size: 13px;
35173
+ line-height: 24px;
35174
+ color: #cccccc;
35175
+ white-space: nowrap;
35027
35176
  }
35028
- .E_clm1wy1 .ant-picker-cell-in-view {
35029
- color: rgba(62, 70, 82, 0.6);
35030
- opacity: 1;
35177
+ .E_c14wcxf0 label {
35178
+ margin-right: 32px;
35031
35179
  }
35032
- .E_clm1wy1 .ant-picker-cell-in-view > .active {
35033
- color: #3e4652;
35180
+
35181
+ .E_coy29mj.E_c14wcxf0 {
35182
+ font-weight: bold;
35183
+ color: white;
35034
35184
  }
35035
- .E_clm1wy1 .ant-picker-cell::before {
35036
- pointer-events: none;
35185
+
35186
+ .E_s11212zy {
35187
+ width: 8px;
35188
+ height: 8px;
35189
+ border-radius: 2px;
35190
+ display: inline-block;
35191
+ background: var(--s11212zy-0);
35192
+ border: 1px solid #fff;
35193
+ box-sizing: content-box;
35194
+ margin-right: 6px;
35037
35195
  }
35038
35196
 
35039
- .E_t1tsm00v {
35040
- color: rgba(129, 138, 153, 0.6);
35041
- box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
35042
- backdrop-filter: blur(10px);
35043
- padding: 7px 10px;
35197
+ .E_p1lyky6c > :first-child {
35198
+ font-weight: bold;
35199
+ color: white;
35200
+ margin-right: 4px;
35044
35201
  }
35045
35202
 
35046
- .E_c167wnad {
35047
- color: rgba(62, 70, 82, 0.6);
35203
+ .E_s1at6qmn.ant-layout-sider {
35204
+ background: #edf0f7;
35205
+ padding: 32px 8px;
35206
+ overflow: auto;
35207
+ }
35208
+ .E_s1at6qmn .ant-layout-sider-children {
35048
35209
  display: flex;
35210
+ flex-direction: column;
35049
35211
  justify-content: space-between;
35050
- align-items: center;
35051
- padding: 8px 16px;
35052
35212
  }
35053
- .E_c167wnad .anticon {
35054
- cursor: pointer;
35213
+ .E_s1at6qmn footer {
35214
+ display: flex;
35055
35215
  }
35056
- .E_c167wnad .anticon:hover {
35057
- color: #0096ff;
35216
+ .E_s1at6qmn .ant-menu {
35217
+ background: #edf0f7;
35218
+ }
35219
+ .E_s1at6qmn .ant-menu a {
35220
+ color: #00122e;
35221
+ width: 180px;
35222
+ overflow: hidden;
35223
+ text-overflow: ellipsis;
35058
35224
  }
35059
-
35060
- .E_cxhf7dh {
35061
- text-align: center;
35225
+ .E_s1at6qmn .ant-menu-vertical {
35226
+ margin-bottom: 24px;
35062
35227
  }
35063
- .E_cxhf7dh .dots {
35064
- display: flex;
35065
- justify-content: center;
35228
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
35229
+ margin: 0;
35066
35230
  }
35067
- .E_cxhf7dh .dot {
35068
- display: inline-block;
35069
- width: 2px;
35070
- height: 2px;
35071
- border-radius: 1px;
35072
- background: #0096ff;
35231
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
35232
+ font-size: 12px;
35233
+ padding: 0 8px 4px;
35234
+ line-height: 18px;
35073
35235
  }
35074
- .E_cxhf7dh .dot:not(:last-child) {
35075
- margin-right: 2px;
35236
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
35237
+ padding: 0;
35076
35238
  }
35077
- .E_cxhf7dh .bar {
35078
- width: 9px;
35079
- height: 2px;
35080
- background: #0096ff;
35081
- border-radius: 2px;
35239
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
35240
+ padding-bottom: 24px;
35082
35241
  }
35083
-
35084
- span.E_tqjc4ui {
35085
- margin: 0 2px;
35242
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
35243
+ margin-bottom: 24px;
35244
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
35086
35245
  }
35087
-
35088
- .E_n12mqh7z {
35246
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
35247
+ transition: none;
35089
35248
  display: flex;
35090
35249
  align-items: center;
35091
- font-size: 12px;
35092
- line-height: 18px;
35093
- }
35094
- .E_n12mqh7z:not(:last-child) {
35095
- margin-bottom: 4px;
35250
+ height: 32px;
35251
+ line-height: 22px;
35252
+ padding: 0 8px;
35096
35253
  }
35097
-
35098
- .E_tf5bynu {
35099
- margin: 0 3px;
35254
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
35255
+ margin-right: 12px;
35100
35256
  }
35101
-
35102
- .E_tcckoz1 {
35103
- max-height: 400px;
35104
- overflow: auto;
35257
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
35258
+ margin: 0;
35259
+ margin-bottom: 2px;
35105
35260
  }
35106
-
35107
- .E_gmyahx3 {
35108
- cursor: pointer;
35261
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
35262
+ background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
35263
+ box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
35264
+ border-radius: 6px;
35265
+ color: #fff;
35109
35266
  }
35110
- .E_gmyahx3 .link-text {
35111
- color: rgba(0, 21, 64, 0.3);
35267
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
35268
+ color: #fff;
35112
35269
  }
35113
- .E_gmyahx3:hover .link-text {
35114
- color: #0080ff;
35270
+ .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 {
35271
+ background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
35272
+ box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
35273
+ border-radius: 6px;
35115
35274
  }
35116
35275
 
35117
- .E_ou7iq30 {
35276
+ .E_s1wu0lms .ant-menu-item-group-title {
35277
+ white-space: nowrap;
35278
+ transition: all 0s;
35279
+ }
35280
+ .E_s1wu0lms.shrink {
35281
+ transition: all 0s;
35118
35282
  overflow: hidden;
35119
- text-overflow: ellipsis;
35120
35283
  }
35121
-
35122
- .E_s1tui002 {
35123
- white-space: nowrap;
35284
+ .E_s1wu0lms.shrink .ant-menu-item-group-title {
35285
+ visibility: hidden;
35124
35286
  }
35125
-
35126
- .E_mxrc2zg {
35127
- display: -webkit-box;
35128
- -webkit-line-clamp: var(--mxrc2zg-0);
35129
- -webkit-box-orient: vertical;
35130
- word-break: break-all;
35287
+ .E_s1wu0lms.shrink .ant-menu-item {
35288
+ width: 36px;
35289
+ padding: 0 6px;
35131
35290
  }
35132
35291
 
35133
- .E_t1vv6d68 .ant-tooltip-arrow {
35134
- display: none;
35292
+ .E_n1ugzfva {
35293
+ display: flex;
35294
+ place-items: center;
35295
+ width: 100% !important;
35135
35296
  }
35136
- .E_t1vv6d68 .ant-tooltip-inner {
35137
- background: rgba(23, 38, 64, 0.8);
35138
- border-radius: 4px;
35297
+ .E_n1ugzfva[disabled] {
35298
+ color: rgba(0, 0, 0, 0.25) !important;
35299
+ opacity: 1 !important;
35139
35300
  }
35140
- .E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
35141
- visibility: hidden;
35301
+ .E_n1ugzfva.ant-btn {
35302
+ width: 100%;
35303
+ color: #00122e;
35304
+ }
35305
+ .E_n1ugzfva .icon-wrapper {
35306
+ margin-right: 12px;
35307
+ }
35308
+ .E_n1ugzfva .link-title {
35309
+ flex: 1;
35310
+ overflow: hidden;
35311
+ white-space: nowrap;
35312
+ text-overflow: ellipsis;
35313
+ text-align: left;
35142
35314
  }
35143
35315
 
35144
35316
  .E_c1up1pdz {
@@ -35217,181 +35389,68 @@ span.E_tqjc4ui {
35217
35389
  padding-left: 14px;
35218
35390
  margin-left: 14px;
35219
35391
  border-left: 1px solid rgba(129, 138, 153, 0.6);
35220
- cursor: pointer;
35221
- }
35222
-
35223
- .E_m126spxy {
35224
- padding-bottom: 4px;
35225
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35226
- }
35227
- .E_m126spxy .ant-btn.ant-btn-link {
35228
- padding: 1px 10px;
35229
- color: rgba(62, 70, 82, 0.6);
35230
- border-radius: 4px;
35231
- }
35232
- .E_m126spxy .ant-btn.ant-btn-link.active {
35233
- background: rgba(0, 128, 255, 0.1);
35234
- color: #0096ff;
35235
- }
35236
-
35237
- .E_wpbf4pq {
35238
- padding: 10px 0;
35239
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35240
- }
35241
- .E_wpbf4pq .ant-input,
35242
- .E_wpbf4pq .ant-picker {
35243
- width: 80px;
35244
- margin: 0 9px;
35245
- text-align: center;
35246
- }
35247
- .E_wpbf4pq .options {
35248
- padding: 12px 0 12px 16px;
35249
- border-left: 2px solid rgba(129, 138, 153, 0.6);
35250
- margin: 5px 0 5px 8px;
35251
- }
35252
- .E_wpbf4pq .week-day-option,
35253
- .E_wpbf4pq .month-day-option {
35254
- background: #f5f7fa;
35255
- box-sizing: border-box;
35256
- border-radius: 16px;
35257
- margin-right: 8px;
35258
- }
35259
- .E_wpbf4pq .week-day-option:focus,
35260
- .E_wpbf4pq .month-day-option:focus {
35261
- color: inherit;
35262
- border-color: #d9d9d9;
35263
- }
35264
- .E_wpbf4pq .week-day-option.active {
35265
- background-color: #0096ff;
35266
- border-color: #0096ff;
35267
- color: #fff;
35268
- }
35269
- .E_wpbf4pq .week-day-option.en-text {
35270
- width: 110px;
35271
- margin-top: 4px;
35272
- }
35273
- .E_wpbf4pq .month-day-option {
35274
- width: 32px;
35275
- padding: 0;
35276
- margin-bottom: 8px;
35277
- }
35278
- .E_wpbf4pq .month-day-option.active {
35279
- background-color: #0096ff;
35280
- border-color: #0096ff;
35281
- color: #fff;
35282
- }
35283
-
35284
- .E_s1at6qmn.ant-layout-sider {
35285
- background: #edf0f7;
35286
- padding: 32px 8px;
35287
- overflow: auto;
35288
- }
35289
- .E_s1at6qmn .ant-layout-sider-children {
35290
- display: flex;
35291
- flex-direction: column;
35292
- justify-content: space-between;
35293
- }
35294
- .E_s1at6qmn footer {
35295
- display: flex;
35296
- }
35297
- .E_s1at6qmn .ant-menu {
35298
- background: #edf0f7;
35299
- }
35300
- .E_s1at6qmn .ant-menu a {
35301
- color: #00122e;
35302
- width: 180px;
35303
- overflow: hidden;
35304
- text-overflow: ellipsis;
35305
- }
35306
- .E_s1at6qmn .ant-menu-vertical {
35307
- margin-bottom: 24px;
35308
- }
35309
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
35310
- margin: 0;
35311
- }
35312
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
35313
- font-size: 12px;
35314
- padding: 0 8px 4px;
35315
- line-height: 18px;
35316
- }
35317
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
35318
- padding: 0;
35319
- }
35320
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
35321
- padding-bottom: 24px;
35322
- }
35323
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
35324
- margin-bottom: 24px;
35325
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
35326
- }
35327
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
35328
- transition: none;
35329
- display: flex;
35330
- align-items: center;
35331
- height: 32px;
35332
- line-height: 22px;
35333
- padding: 0 8px;
35334
- }
35335
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
35336
- margin-right: 12px;
35337
- }
35338
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
35339
- margin: 0;
35340
- margin-bottom: 2px;
35341
- }
35342
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
35343
- background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
35344
- box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
35345
- border-radius: 6px;
35346
- color: #fff;
35392
+ cursor: pointer;
35347
35393
  }
35348
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
35349
- color: #fff;
35394
+
35395
+ .E_m126spxy {
35396
+ padding-bottom: 4px;
35397
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35350
35398
  }
35351
- .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 {
35352
- background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
35353
- box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
35354
- border-radius: 6px;
35399
+ .E_m126spxy .ant-btn.ant-btn-link {
35400
+ padding: 1px 10px;
35401
+ color: rgba(62, 70, 82, 0.6);
35402
+ border-radius: 4px;
35403
+ }
35404
+ .E_m126spxy .ant-btn.ant-btn-link.active {
35405
+ background: rgba(0, 128, 255, 0.1);
35406
+ color: #0096ff;
35355
35407
  }
35356
35408
 
35357
- .E_s1wu0lms .ant-menu-item-group-title {
35358
- white-space: nowrap;
35359
- transition: all 0s;
35409
+ .E_wpbf4pq {
35410
+ padding: 10px 0;
35411
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35360
35412
  }
35361
- .E_s1wu0lms.shrink {
35362
- transition: all 0s;
35363
- overflow: hidden;
35413
+ .E_wpbf4pq .ant-input,
35414
+ .E_wpbf4pq .ant-picker {
35415
+ width: 80px;
35416
+ margin: 0 9px;
35417
+ text-align: center;
35364
35418
  }
35365
- .E_s1wu0lms.shrink .ant-menu-item-group-title {
35366
- visibility: hidden;
35419
+ .E_wpbf4pq .options {
35420
+ padding: 12px 0 12px 16px;
35421
+ border-left: 2px solid rgba(129, 138, 153, 0.6);
35422
+ margin: 5px 0 5px 8px;
35367
35423
  }
35368
- .E_s1wu0lms.shrink .ant-menu-item {
35369
- width: 36px;
35370
- padding: 0 6px;
35424
+ .E_wpbf4pq .week-day-option,
35425
+ .E_wpbf4pq .month-day-option {
35426
+ background: #f5f7fa;
35427
+ box-sizing: border-box;
35428
+ border-radius: 16px;
35429
+ margin-right: 8px;
35371
35430
  }
35372
-
35373
- .E_n1ugzfva {
35374
- display: flex;
35375
- place-items: center;
35376
- width: 100% !important;
35431
+ .E_wpbf4pq .week-day-option:focus,
35432
+ .E_wpbf4pq .month-day-option:focus {
35433
+ color: inherit;
35434
+ border-color: #d9d9d9;
35377
35435
  }
35378
- .E_n1ugzfva[disabled] {
35379
- color: rgba(0, 0, 0, 0.25) !important;
35380
- opacity: 1 !important;
35436
+ .E_wpbf4pq .week-day-option.active {
35437
+ background-color: #0096ff;
35438
+ border-color: #0096ff;
35439
+ color: #fff;
35381
35440
  }
35382
- .E_n1ugzfva.ant-btn {
35383
- width: 100%;
35384
- color: #00122e;
35441
+ .E_wpbf4pq .week-day-option.en-text {
35442
+ width: 110px;
35443
+ margin-top: 4px;
35385
35444
  }
35386
- .E_n1ugzfva .icon-wrapper {
35387
- margin-right: 12px;
35445
+ .E_wpbf4pq .month-day-option {
35446
+ width: 32px;
35447
+ padding: 0;
35448
+ margin-bottom: 8px;
35388
35449
  }
35389
- .E_n1ugzfva .link-title {
35390
- flex: 1;
35391
- overflow: hidden;
35392
- white-space: nowrap;
35393
- text-overflow: ellipsis;
35394
- text-align: left;
35450
+ .E_wpbf4pq .month-day-option.active {
35451
+ background-color: #0096ff;
35452
+ border-color: #0096ff;
35453
+ color: #fff;
35395
35454
  }
35396
35455
 
35397
35456
  .E_t1sqg15u {
@@ -35507,14 +35566,6 @@ span.E_tqjc4ui {
35507
35566
  color: #00122e !important;
35508
35567
  }
35509
35568
 
35510
- .E_s1iv0tp1 .enabled-switch {
35511
- display: flex;
35512
- align-items: center;
35513
- }
35514
- .E_s1iv0tp1 .enabled-text {
35515
- margin-right: 8px;
35516
- }
35517
-
35518
35569
  .E_t160l1cm {
35519
35570
  display: flex;
35520
35571
  flex-direction: column;
@@ -35718,6 +35769,20 @@ span.E_tqjc4ui {
35718
35769
  background: transparent;
35719
35770
  }
35720
35771
 
35772
+ .E_s1iv0tp1 .enabled-switch {
35773
+ display: flex;
35774
+ align-items: center;
35775
+ }
35776
+ .E_s1iv0tp1 .enabled-text {
35777
+ margin-right: 8px;
35778
+ }
35779
+
35780
+ .E_h1ol2wl7 {
35781
+ font-weight: bold;
35782
+ background-color: unset;
35783
+ padding: unset;
35784
+ }
35785
+
35721
35786
  .E_i5w779o {
35722
35787
  padding: 8px 0;
35723
35788
  }
@@ -35812,12 +35877,6 @@ span.E_tqjc4ui {
35812
35877
  justify-content: center;
35813
35878
  }
35814
35879
 
35815
- .E_h1ol2wl7 {
35816
- font-weight: bold;
35817
- background-color: unset;
35818
- padding: unset;
35819
- }
35820
-
35821
35880
  .E_kr6am0s .ant-modal-body {
35822
35881
  padding: 60px 128px;
35823
35882
  }
@@ -35881,77 +35940,6 @@ span.E_tqjc4ui {
35881
35940
  background-image: linear-gradient(211.41deg, #929dad 0%, #d3dbe3 100%);
35882
35941
  }
35883
35942
 
35884
- .E_l12xdkhl {
35885
- width: 64px;
35886
- height: 64px;
35887
- max-width: 64px;
35888
- max-height: 64px;
35889
- overflow: hidden;
35890
- display: flex;
35891
- align-items: center;
35892
- justify-content: center;
35893
- position: relative;
35894
- opacity: 0.6;
35895
- }
35896
- .E_l12xdkhl .icon-wrapper {
35897
- animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
35898
- }
35899
- @keyframes rotate {
35900
- from {
35901
- transform: rotate(0deg);
35902
- }
35903
- to {
35904
- transform: rotate(360deg);
35905
- }
35906
- }
35907
-
35908
- .E_cevhqx7 {
35909
- color: #00122e;
35910
- }
35911
-
35912
- .E_snbqlt4 {
35913
- margin-top: 8px;
35914
- color: rgba(44, 56, 82, 0.6);
35915
- }
35916
-
35917
- .E_c1ss4prm {
35918
- color: rgba(44, 56, 82, 0.6);
35919
- }
35920
- .E_c1ss4prm li {
35921
- margin-bottom: 4px;
35922
- }
35923
- .E_c1ss4prm li:last-child {
35924
- margin-bottom: 0;
35925
- }
35926
-
35927
- .E_ms3tlei {
35928
- background: rgba(225, 230, 241, 0.6);
35929
- padding: 8px;
35930
- border-radius: 6px;
35931
- color: rgba(44, 56, 82, 0.6);
35932
- }
35933
- .E_ms3tlei li {
35934
- margin-bottom: 4px;
35935
- }
35936
- .E_ms3tlei li:last-child {
35937
- margin-bottom: 0;
35938
- }
35939
-
35940
- .E_du44iy7 {
35941
- margin-bottom: 4px;
35942
- }
35943
-
35944
- .E_s1qmhanr {
35945
- color: rgba(44, 56, 82, 0.6);
35946
- margin-bottom: 8px;
35947
- }
35948
-
35949
- .E_drje1h0 {
35950
- height: 1px;
35951
- background: #e4e9f2;
35952
- margin: 16px 0;
35953
- }
35954
-
35955
35943
  .E_c1kchka8 {
35956
35944
  height: 100%;
35957
35945
  width: 100%;
@@ -36486,4 +36474,75 @@ span.E_tqjc4ui {
36486
36474
  }
36487
36475
  .E_c14ouk5o .col-content .ant-btn.ant-btn-link {
36488
36476
  height: auto;
36477
+ }
36478
+
36479
+ .E_cevhqx7 {
36480
+ color: #00122e;
36481
+ }
36482
+
36483
+ .E_snbqlt4 {
36484
+ margin-top: 8px;
36485
+ color: rgba(44, 56, 82, 0.6);
36486
+ }
36487
+
36488
+ .E_c1ss4prm {
36489
+ color: rgba(44, 56, 82, 0.6);
36490
+ }
36491
+ .E_c1ss4prm li {
36492
+ margin-bottom: 4px;
36493
+ }
36494
+ .E_c1ss4prm li:last-child {
36495
+ margin-bottom: 0;
36496
+ }
36497
+
36498
+ .E_ms3tlei {
36499
+ background: rgba(225, 230, 241, 0.6);
36500
+ padding: 8px;
36501
+ border-radius: 6px;
36502
+ color: rgba(44, 56, 82, 0.6);
36503
+ }
36504
+ .E_ms3tlei li {
36505
+ margin-bottom: 4px;
36506
+ }
36507
+ .E_ms3tlei li:last-child {
36508
+ margin-bottom: 0;
36509
+ }
36510
+
36511
+ .E_du44iy7 {
36512
+ margin-bottom: 4px;
36513
+ }
36514
+
36515
+ .E_s1qmhanr {
36516
+ color: rgba(44, 56, 82, 0.6);
36517
+ margin-bottom: 8px;
36518
+ }
36519
+
36520
+ .E_drje1h0 {
36521
+ height: 1px;
36522
+ background: #e4e9f2;
36523
+ margin: 16px 0;
36524
+ }
36525
+
36526
+ .E_l12xdkhl {
36527
+ width: 64px;
36528
+ height: 64px;
36529
+ max-width: 64px;
36530
+ max-height: 64px;
36531
+ overflow: hidden;
36532
+ display: flex;
36533
+ align-items: center;
36534
+ justify-content: center;
36535
+ position: relative;
36536
+ opacity: 0.6;
36537
+ }
36538
+ .E_l12xdkhl .icon-wrapper {
36539
+ animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
36540
+ }
36541
+ @keyframes rotate {
36542
+ from {
36543
+ transform: rotate(0deg);
36544
+ }
36545
+ to {
36546
+ transform: rotate(360deg);
36547
+ }
36489
36548
  }