@cloudtower/eagle 481.0.2 → 490.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/dist/cjs/core/Duration/index.js +78 -0
  2. package/dist/cjs/core/LocalUpload/LocalUpload.hooks.js +66 -0
  3. package/dist/cjs/core/LocalUpload/LocalUpload.js +103 -0
  4. package/dist/cjs/core/LocalUpload/LocalUpload.style.js +13 -0
  5. package/dist/cjs/core/LocalUpload/LocalUpload.widget.js +379 -0
  6. package/dist/cjs/core/MediumDialog/MediumDialog.js +1 -1
  7. package/dist/cjs/core/TableForm/AddRowButton.js +2 -1
  8. package/dist/cjs/core/TableForm/index.js +1 -0
  9. package/dist/cjs/core/index.js +15 -12
  10. package/dist/cjs/coreX/Copy/CopyButton.js +40 -0
  11. package/dist/cjs/coreX/Copy/CopyTooltip.js +66 -0
  12. package/dist/cjs/coreX/Dialogs/RejectDialog/RejectDialog.js +16 -4
  13. package/dist/cjs/hooks/useFormatDuration.js +35 -0
  14. package/dist/cjs/index.js +253 -245
  15. package/dist/cjs/stats1.html +1 -1
  16. package/dist/cjs/utils/formatDuration.js +67 -0
  17. package/dist/components.css +1899 -1722
  18. package/dist/esm/core/Duration/index.js +72 -0
  19. package/dist/esm/core/LocalUpload/LocalUpload.hooks.js +63 -0
  20. package/dist/esm/core/LocalUpload/LocalUpload.js +97 -0
  21. package/dist/esm/core/LocalUpload/LocalUpload.style.js +10 -0
  22. package/dist/esm/core/LocalUpload/LocalUpload.widget.js +365 -0
  23. package/dist/esm/core/MediumDialog/MediumDialog.js +1 -1
  24. package/dist/esm/core/TableForm/AddRowButton.js +2 -1
  25. package/dist/esm/core/TableForm/index.js +1 -0
  26. package/dist/esm/core/index.js +4 -2
  27. package/dist/esm/coreX/Copy/CopyButton.js +34 -0
  28. package/dist/esm/coreX/Copy/CopyTooltip.js +59 -0
  29. package/dist/esm/coreX/Dialogs/RejectDialog/RejectDialog.js +16 -4
  30. package/dist/esm/hooks/useFormatDuration.js +33 -0
  31. package/dist/esm/index.js +4 -0
  32. package/dist/esm/stats1.html +1 -1
  33. package/dist/esm/utils/formatDuration.js +65 -0
  34. package/dist/linaria.merged.scss +2144 -1955
  35. package/dist/src/core/Duration/duration.type.d.ts +42 -0
  36. package/dist/src/core/Duration/index.d.ts +4 -0
  37. package/dist/src/core/LocalUpload/LocalUpload.d.ts +15 -0
  38. package/dist/src/core/LocalUpload/LocalUpload.hooks.d.ts +32 -0
  39. package/dist/src/core/LocalUpload/LocalUpload.style.d.ts +3 -0
  40. package/dist/src/core/LocalUpload/LocalUpload.type.d.ts +175 -0
  41. package/dist/src/core/LocalUpload/LocalUpload.widget.d.ts +23 -0
  42. package/dist/src/core/LocalUpload/index.d.ts +2 -0
  43. package/dist/src/core/TableForm/types.d.ts +1 -0
  44. package/dist/src/core/index.d.ts +5 -0
  45. package/dist/src/coreX/Copy/CopyButton.d.ts +5 -0
  46. package/dist/src/coreX/Copy/CopyButton.type.d.ts +8 -0
  47. package/dist/src/coreX/Copy/CopyTooltip.d.ts +5 -0
  48. package/dist/src/coreX/Copy/CopyTooltip.typs.d.ts +16 -0
  49. package/dist/src/coreX/Copy/index.d.ts +2 -0
  50. package/dist/src/coreX/Dialogs/RejectDialog/RejectDialog.type.d.ts +5 -1
  51. package/dist/src/coreX/index.d.ts +3 -0
  52. package/dist/src/hooks/__tests__/useFormatDuration.test.d.ts +1 -0
  53. package/dist/src/hooks/index.d.ts +1 -0
  54. package/dist/src/hooks/useFormatDuration.d.ts +31 -0
  55. package/dist/src/utils/__test__/formatDuration.spec.d.ts +1 -0
  56. package/dist/src/utils/formatDuration.d.ts +28 -0
  57. package/dist/src/utils/index.d.ts +1 -0
  58. package/dist/stories/docs/core/Duration.stories.d.ts +88 -0
  59. package/dist/stories/docs/core/LocalUpload.stories.d.ts +74 -0
  60. package/dist/stories/docs/coreX/Copy/CopyButton.stories.d.ts +66 -0
  61. package/dist/stories/docs/coreX/Copy/CopyTooltip.stories.d.ts +66 -0
  62. package/dist/stories/docs/coreX/Dialogs/RejectDialog.stories.d.ts +3 -1
  63. package/dist/style.css +1899 -1722
  64. package/package.json +6 -4
package/dist/style.css CHANGED
@@ -29713,6 +29713,57 @@ body {
29713
29713
  flex: 1;
29714
29714
  }
29715
29715
 
29716
+ .E_berrcjl {
29717
+ color: rgba(10, 37, 85, 0.6);
29718
+ margin-bottom: 4px;
29719
+ }
29720
+ .E_berrcjl .breadcrumb-link {
29721
+ color: rgba(10, 37, 85, 0.6);
29722
+ cursor: pointer;
29723
+ transition: color 160ms ease;
29724
+ }
29725
+ .E_berrcjl .breadcrumb-link:hover {
29726
+ color: #0080ff;
29727
+ }
29728
+ .E_berrcjl .breadcrumb-link:active {
29729
+ color: #005ed1;
29730
+ }
29731
+
29732
+ .E_c1uzzomf {
29733
+ margin-bottom: 16px;
29734
+ }
29735
+ .E_c1uzzomf .card-title {
29736
+ font-size: 16px;
29737
+ color: rgba(44, 56, 82, 0.6);
29738
+ font-weight: 700;
29739
+ line-height: 32px;
29740
+ }
29741
+ .E_c1uzzomf .card-body {
29742
+ padding: 24px;
29743
+ border-radius: 8px;
29744
+ background: #fff;
29745
+ }
29746
+ .E_c1uzzomf .empty {
29747
+ font-weight: 700;
29748
+ font-size: 14px;
29749
+ line-height: 22px;
29750
+ color: rgba(0, 21, 64, 0.3);
29751
+ text-align: center;
29752
+ }
29753
+
29754
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
29755
+ padding: 4px 8px 0 8px;
29756
+ color: rgba(44, 56, 82, 0.6);
29757
+ font-size: 12px;
29758
+ }
29759
+ .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
29760
+ padding-bottom: 6px;
29761
+ }
29762
+ .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
29763
+ padding-top: 4px;
29764
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
29765
+ }
29766
+
29716
29767
  .E_b1nip9bk {
29717
29768
  padding: 4px 11px;
29718
29769
  }
@@ -29742,22 +29793,6 @@ body {
29742
29793
  border-radius: unset;
29743
29794
  }
29744
29795
 
29745
- .E_berrcjl {
29746
- color: rgba(10, 37, 85, 0.6);
29747
- margin-bottom: 4px;
29748
- }
29749
- .E_berrcjl .breadcrumb-link {
29750
- color: rgba(10, 37, 85, 0.6);
29751
- cursor: pointer;
29752
- transition: color 160ms ease;
29753
- }
29754
- .E_berrcjl .breadcrumb-link:hover {
29755
- color: #0080ff;
29756
- }
29757
- .E_berrcjl .breadcrumb-link:active {
29758
- color: #005ed1;
29759
- }
29760
-
29761
29796
  .E_b1wx3t3t.ant-btn-icon-only {
29762
29797
  justify-content: center;
29763
29798
  }
@@ -30015,48 +30050,6 @@ body {
30015
30050
  justify-content: center;
30016
30051
  }
30017
30052
 
30018
- .E_c1uzzomf {
30019
- margin-bottom: 16px;
30020
- }
30021
- .E_c1uzzomf .card-title {
30022
- font-size: 16px;
30023
- color: rgba(44, 56, 82, 0.6);
30024
- font-weight: 700;
30025
- line-height: 32px;
30026
- }
30027
- .E_c1uzzomf .card-body {
30028
- padding: 24px;
30029
- border-radius: 8px;
30030
- background: #fff;
30031
- }
30032
- .E_c1uzzomf .empty {
30033
- font-weight: 700;
30034
- font-size: 14px;
30035
- line-height: 22px;
30036
- color: rgba(0, 21, 64, 0.3);
30037
- text-align: center;
30038
- }
30039
-
30040
- .E_c1yyuluq {
30041
- border-radius: 8px;
30042
- }
30043
- .E_c1yyuluq .ant-card-body {
30044
- padding: 20px 24px 24px 24px;
30045
- }
30046
-
30047
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
30048
- padding: 4px 8px 0 8px;
30049
- color: rgba(44, 56, 82, 0.6);
30050
- font-size: 12px;
30051
- }
30052
- .E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-list {
30053
- padding-bottom: 6px;
30054
- }
30055
- .E_d133fzv0 .ant-dropdown-menu-item-group:not(:first-child) {
30056
- padding-top: 4px;
30057
- border-top: 1px solid rgba(211, 218, 235, 0.6);
30058
- }
30059
-
30060
30053
  .E_ccrbeuz .ant-collapse-item {
30061
30054
  border: 0px;
30062
30055
  background-color: #fff;
@@ -30079,20 +30072,11 @@ body {
30079
30072
  cursor: default;
30080
30073
  }
30081
30074
 
30082
- .E_sx1bpnu .ant-input-sm {
30083
- line-height: 18px;
30084
- }
30085
-
30086
- .E_itxley7.ant-input-group.ant-input-group-compact {
30087
- display: flex;
30088
- }
30089
- .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 {
30090
- border-bottom-left-radius: 5px;
30091
- border-top-left-radius: 5px;
30075
+ .E_c1yyuluq {
30076
+ border-radius: 8px;
30092
30077
  }
30093
- .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 {
30094
- border-bottom-right-radius: 5px;
30095
- border-top-right-radius: 5px;
30078
+ .E_c1yyuluq .ant-card-body {
30079
+ padding: 20px 24px 24px 24px;
30096
30080
  }
30097
30081
 
30098
30082
  .E_d1bw7c5z {
@@ -30178,93 +30162,22 @@ body {
30178
30162
  width: 102px;
30179
30163
  }
30180
30164
 
30181
- .E_phljevk {
30182
- display: flex;
30183
- justify-content: space-between;
30184
- align-items: center;
30185
- padding: 10px 0;
30186
- color: rgba(44, 56, 82, 0.6);
30187
- font-size: 12px;
30188
- line-height: 24px;
30189
- }
30190
- .E_phljevk .pagination-left {
30191
- padding: 2px 8px;
30192
- }
30193
- .E_phljevk .dropdown-trigger {
30194
- display: flex;
30195
- align-items: center;
30196
- border-radius: 6px;
30197
- cursor: pointer;
30198
- transition: all 0.3s ease;
30199
- }
30200
- .E_phljevk .dropdown-trigger:hover {
30201
- background: rgba(211, 218, 235, 0.6);
30202
- color: #0080ff;
30203
- }
30204
- .E_phljevk .dropdown-trigger .icon-inner {
30205
- margin-left: 4px;
30206
- }
30207
- .E_phljevk .pagination-right {
30165
+ .E_itxley7.ant-input-group.ant-input-group-compact {
30208
30166
  display: flex;
30209
- align-items: center;
30210
- color: #0080ff;
30211
- font-weight: bold;
30212
- }
30213
- .E_phljevk .pagination-right .icon-inner {
30214
- margin-left: 4px;
30215
30167
  }
30216
- .E_phljevk .pagination-right .prev-btn,
30217
- .E_phljevk .pagination-right .next-btn {
30218
- padding: 0 8px;
30219
- }
30220
- .E_phljevk .pagination-right .prev-btn > span,
30221
- .E_phljevk .pagination-right .next-btn > span {
30222
- color: #0080ff;
30168
+ .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 {
30169
+ border-bottom-left-radius: 5px;
30170
+ border-top-left-radius: 5px;
30223
30171
  }
30224
- .E_phljevk .pagination-right .next-btn .icon-inner {
30225
- transform: rotate(180deg);
30172
+ .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 {
30173
+ border-bottom-right-radius: 5px;
30174
+ border-top-right-radius: 5px;
30226
30175
  }
30227
30176
 
30228
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
30229
- max-height: calc(100vh - 128px);
30230
- overflow-y: auto;
30231
- }
30232
- .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30233
- padding: 4px 20px;
30234
- font-size: 12px;
30177
+ .E_sx1bpnu .ant-input-sm {
30235
30178
  line-height: 18px;
30236
30179
  }
30237
30180
 
30238
- .E_i11gg7mj .ant-input-prefix {
30239
- margin-right: 8px;
30240
- }
30241
- .E_i11gg7mj .ant-input-suffix {
30242
- margin-left: 8px;
30243
- }
30244
-
30245
- .E_cc368xp {
30246
- color: #00122e;
30247
- border-right: 1px solid rgba(172, 186, 211, 0.6);
30248
- margin-right: 8px;
30249
- padding-right: 8px;
30250
- }
30251
-
30252
- .E_i11o6xqj {
30253
- display: flex;
30254
- gap: 4px;
30255
- }
30256
- .E_i11o6xqj .icon-wrapper {
30257
- cursor: pointer;
30258
- }
30259
-
30260
- .E_d19ruhdj.icon-wrapper {
30261
- cursor: not-allowed;
30262
- }
30263
-
30264
- .E_tju3gfj .date {
30265
- margin-right: 4px;
30266
- }
30267
-
30268
30181
  .E_c1bus5hc {
30269
30182
  --color: white;
30270
30183
  height: 14px;
@@ -30305,170 +30218,24 @@ body {
30305
30218
  transform: rotate(0deg);
30306
30219
  }
30307
30220
 
30308
- .E_s1dni7lo {
30309
- width: 430px !important;
30310
- }
30311
-
30312
- .E_d1wwmmm5 .ant-select-item-group {
30313
- padding: 8px 16px;
30314
- line-height: 18px;
30315
- border-top: 1px solid rgba(211, 218, 235, 0.6);
30316
- height: 34px;
30317
- min-height: 34px;
30318
- box-sizing: border-box;
30319
- margin-top: 8px;
30320
- }
30321
-
30322
- .E_o1ugr09p {
30323
- display: flex;
30324
- flex-direction: column;
30325
- margin: 1px 8px;
30326
- padding: 8px;
30327
- border-radius: 4px;
30221
+ .E_rapgekc.ant-radio-wrapper {
30222
+ display: inline-flex;
30223
+ align-items: baseline;
30224
+ white-space: pre-wrap;
30328
30225
  }
30329
- .E_o1ugr09p .selected-icon {
30330
- display: none;
30226
+ .E_rapgekc.ant-radio-wrapper .ant-radio {
30227
+ position: relative;
30228
+ top: 3px;
30331
30229
  }
30332
- .E_o1ugr09p.ant-select-item-option-grouped {
30333
- padding-left: 8px;
30230
+ .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
30231
+ border-color: rgba(107, 128, 167, 0.6);
30334
30232
  }
30335
- .E_o1ugr09p.ant-select-item-option-selected {
30336
- background-color: white;
30233
+ .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
30234
+ border-color: #0080ff;
30337
30235
  }
30338
- .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
30339
- color: #0080ff;
30340
- }
30341
- .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
30342
- display: block;
30343
- }
30344
- .E_o1ugr09p.ant-select-item-option-active {
30345
- background: rgba(0, 136, 255, 0.16);
30346
- }
30347
- .E_o1ugr09p.ant-select-item-option-active .timezone-title {
30348
- color: #0080ff;
30349
- }
30350
- .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
30351
- background: rgba(0, 136, 255, 0.1);
30352
- color: #0080ff;
30353
- }
30354
-
30355
- .E_o1ifxsq4 {
30356
- display: flex;
30357
- justify-content: space-between;
30358
- height: 20px;
30359
- line-height: 20px;
30360
- }
30361
- .E_o1ifxsq4 .timezone-title {
30362
- color: #2d3a56;
30363
- overflow: hidden;
30364
- text-overflow: ellipsis;
30365
- }
30366
-
30367
- .E_o1zue7 {
30368
- display: flex;
30369
- justify-content: space-between;
30370
- color: rgba(44, 56, 82, 0.6);
30371
- height: 18px;
30372
- line-height: 18px;
30373
- margin-top: 2px;
30374
- }
30375
-
30376
- .E_tyfmlxg {
30377
- border: none;
30378
- margin-right: 0;
30379
- background: rgba(225, 230, 241, 0.6);
30380
- }
30381
-
30382
- .E_o18uybox {
30383
- pointer-events: none;
30384
- height: 32px;
30385
- width: 100%;
30386
- opacity: 0;
30387
- }
30388
-
30389
- .E_ivqqkzv {
30390
- height: 24px;
30391
- width: 56px !important;
30392
- margin-right: 4px;
30393
- }
30394
-
30395
- .E_c1wk4q29 {
30396
- color: rgba(44, 56, 82, 0.6);
30397
- }
30398
-
30399
- .E_s1dizucg.ant-switch {
30400
- min-width: 40px;
30401
- height: 24px;
30402
- background: rgba(172, 186, 211, 0.6);
30403
- overflow: hidden;
30404
- }
30405
- .E_s1dizucg.ant-switch:focus {
30406
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
30407
- }
30408
- .E_s1dizucg.ant-switch-small {
30409
- min-width: 26px;
30410
- height: 16px;
30411
- }
30412
- .E_s1dizucg.ant-switch-large {
30413
- min-width: 52px;
30414
- height: 32px;
30415
- }
30416
- .E_s1dizucg.ant-switch .ant-switch-handle {
30417
- height: 20px;
30418
- width: 20px;
30419
- }
30420
- .E_s1dizucg.ant-switch .ant-switch-handle::before {
30421
- border-radius: 10px;
30422
- transition-delay: 120ms;
30423
- }
30424
- .E_s1dizucg.ant-switch-small .ant-switch-handle {
30425
- height: 14px;
30426
- width: 14px;
30427
- top: 1px;
30428
- left: 1px;
30429
- }
30430
- .E_s1dizucg.ant-switch-large .ant-switch-handle {
30431
- height: 28px;
30432
- width: 28px;
30433
- }
30434
- .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
30435
- border-radius: 14px;
30436
- }
30437
- .E_s1dizucg.ant-switch-checked {
30438
- background-color: #00ba5d;
30439
- }
30440
- .E_s1dizucg.ant-switch-checked .ant-switch-handle {
30441
- left: calc(100% - 20px - 2px);
30442
- }
30443
- .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
30444
- left: calc(100% - 14px - 1px);
30445
- }
30446
- .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
30447
- left: calc(100% - 28px - 2px);
30448
- }
30449
-
30450
- .E_c1up6e3y {
30451
- margin-left: 5px;
30452
- }
30453
-
30454
- .E_rapgekc.ant-radio-wrapper {
30455
- display: inline-flex;
30456
- align-items: baseline;
30457
- white-space: pre-wrap;
30458
- }
30459
- .E_rapgekc.ant-radio-wrapper .ant-radio {
30460
- position: relative;
30461
- top: 3px;
30462
- }
30463
- .E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
30464
- border-color: rgba(107, 128, 167, 0.6);
30465
- }
30466
- .E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
30467
- border-color: #0080ff;
30468
- }
30469
- .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
30470
- border-color: #0080ff;
30471
- background: #0080ff;
30236
+ .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
30237
+ border-color: #0080ff;
30238
+ background: #0080ff;
30472
30239
  }
30473
30240
  .E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
30474
30241
  top: 4px;
@@ -30597,94 +30364,327 @@ body {
30597
30364
  width: 36px;
30598
30365
  }
30599
30366
 
30600
- .E_s1sck0th {
30601
- padding: 0 8px;
30602
- border-radius: 4px;
30367
+ .E_phljevk {
30368
+ display: flex;
30369
+ justify-content: space-between;
30370
+ align-items: center;
30371
+ padding: 10px 0;
30372
+ color: rgba(44, 56, 82, 0.6);
30373
+ font-size: 12px;
30374
+ line-height: 24px;
30603
30375
  }
30604
-
30605
- .E_m855nr1 {
30376
+ .E_phljevk .pagination-left {
30606
30377
  padding: 2px 8px;
30607
- border-radius: 3px;
30608
- }
30609
-
30610
- .E_l1270xpg {
30611
- padding: 3px 8px;
30612
- border-radius: 2px;
30613
- }
30614
-
30615
- .E_t14rextb.ant-tag:hover {
30616
- opacity: unset;
30617
30378
  }
30618
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
30619
- margin: 0;
30620
- margin-right: 8px;
30621
- display: inline-flex;
30379
+ .E_phljevk .dropdown-trigger {
30380
+ display: flex;
30622
30381
  align-items: center;
30623
- border: none;
30382
+ border-radius: 6px;
30383
+ cursor: pointer;
30384
+ transition: all 0.3s ease;
30624
30385
  }
30625
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
30626
- width: 16px;
30627
- height: 16px;
30628
- color: inherit;
30629
- margin-left: 4px;
30630
- opacity: 0.6;
30631
- display: inline-flex;
30386
+ .E_phljevk .dropdown-trigger:hover {
30387
+ background: rgba(211, 218, 235, 0.6);
30388
+ color: #0080ff;
30632
30389
  }
30633
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
30634
- opacity: 1;
30390
+ .E_phljevk .dropdown-trigger .icon-inner {
30391
+ margin-left: 4px;
30635
30392
  }
30636
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
30393
+ .E_phljevk .pagination-right {
30394
+ display: flex;
30395
+ align-items: center;
30637
30396
  color: #0080ff;
30638
- background-color: rgba(0, 136, 255, 0.1);
30639
- }
30640
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
30641
- color: #f0483e;
30642
- background-color: rgba(255, 74, 74, 0.1);
30397
+ font-weight: bold;
30643
30398
  }
30644
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
30645
- color: #e07f00;
30646
- background-color: rgba(255, 187, 0, 0.1);
30399
+ .E_phljevk .pagination-right .icon-inner {
30400
+ margin-left: 4px;
30647
30401
  }
30648
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
30649
- color: #008f4c;
30650
- background-color: rgba(30, 201, 127, 0.1);
30402
+ .E_phljevk .pagination-right .prev-btn,
30403
+ .E_phljevk .pagination-right .next-btn {
30404
+ padding: 0 8px;
30651
30405
  }
30652
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
30653
- color: #1d326c;
30654
- background-color: rgba(225, 230, 241, 0.6);
30406
+ .E_phljevk .pagination-right .prev-btn > span,
30407
+ .E_phljevk .pagination-right .next-btn > span {
30408
+ color: #0080ff;
30655
30409
  }
30656
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
30657
- color: #7E41FF;
30658
- background-color: rgba(126, 65, 255, 0.1);
30410
+ .E_phljevk .pagination-right .next-btn .icon-inner {
30411
+ transform: rotate(180deg);
30659
30412
  }
30660
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
30661
- color: #fff;
30413
+
30414
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
30415
+ max-height: calc(100vh - 128px);
30416
+ overflow-y: auto;
30662
30417
  }
30663
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
30664
- background-color: #f0483e;
30418
+ .E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
30419
+ padding: 4px 20px;
30420
+ font-size: 12px;
30421
+ line-height: 18px;
30665
30422
  }
30666
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
30667
- background-color: #fea008;
30423
+
30424
+ .E_i11gg7mj .ant-input-prefix {
30425
+ margin-right: 8px;
30668
30426
  }
30669
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
30670
- background-color: #00ba5d;
30427
+ .E_i11gg7mj .ant-input-suffix {
30428
+ margin-left: 8px;
30671
30429
  }
30672
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
30673
- background-color: #0080ff;
30430
+
30431
+ .E_cc368xp {
30432
+ color: #00122e;
30433
+ border-right: 1px solid rgba(172, 186, 211, 0.6);
30434
+ margin-right: 8px;
30435
+ padding-right: 8px;
30674
30436
  }
30675
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
30676
- background-color: #6b7d99;
30437
+
30438
+ .E_i11o6xqj {
30439
+ display: flex;
30440
+ gap: 4px;
30677
30441
  }
30678
- .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
30679
- background-color: #7E41FF;
30442
+ .E_i11o6xqj .icon-wrapper {
30443
+ cursor: pointer;
30680
30444
  }
30681
30445
 
30682
- .E_iq1gosr {
30683
- display: inline-block;
30446
+ .E_d19ruhdj.icon-wrapper {
30447
+ cursor: not-allowed;
30684
30448
  }
30685
30449
 
30686
- .E_t1m2x205 .ant-tooltip-arrow {
30687
- display: none;
30450
+ .E_ivqqkzv {
30451
+ height: 24px;
30452
+ width: 56px !important;
30453
+ margin-right: 4px;
30454
+ }
30455
+
30456
+ .E_c1wk4q29 {
30457
+ color: rgba(44, 56, 82, 0.6);
30458
+ }
30459
+
30460
+ .E_s1dizucg.ant-switch {
30461
+ min-width: 40px;
30462
+ height: 24px;
30463
+ background: rgba(172, 186, 211, 0.6);
30464
+ overflow: hidden;
30465
+ }
30466
+ .E_s1dizucg.ant-switch:focus {
30467
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
30468
+ }
30469
+ .E_s1dizucg.ant-switch-small {
30470
+ min-width: 26px;
30471
+ height: 16px;
30472
+ }
30473
+ .E_s1dizucg.ant-switch-large {
30474
+ min-width: 52px;
30475
+ height: 32px;
30476
+ }
30477
+ .E_s1dizucg.ant-switch .ant-switch-handle {
30478
+ height: 20px;
30479
+ width: 20px;
30480
+ }
30481
+ .E_s1dizucg.ant-switch .ant-switch-handle::before {
30482
+ border-radius: 10px;
30483
+ transition-delay: 120ms;
30484
+ }
30485
+ .E_s1dizucg.ant-switch-small .ant-switch-handle {
30486
+ height: 14px;
30487
+ width: 14px;
30488
+ top: 1px;
30489
+ left: 1px;
30490
+ }
30491
+ .E_s1dizucg.ant-switch-large .ant-switch-handle {
30492
+ height: 28px;
30493
+ width: 28px;
30494
+ }
30495
+ .E_s1dizucg.ant-switch-large .ant-switch-handle::before {
30496
+ border-radius: 14px;
30497
+ }
30498
+ .E_s1dizucg.ant-switch-checked {
30499
+ background-color: #00ba5d;
30500
+ }
30501
+ .E_s1dizucg.ant-switch-checked .ant-switch-handle {
30502
+ left: calc(100% - 20px - 2px);
30503
+ }
30504
+ .E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
30505
+ left: calc(100% - 14px - 1px);
30506
+ }
30507
+ .E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
30508
+ left: calc(100% - 28px - 2px);
30509
+ }
30510
+
30511
+ .E_c1up6e3y {
30512
+ margin-left: 5px;
30513
+ }
30514
+
30515
+ .E_tju3gfj .date {
30516
+ margin-right: 4px;
30517
+ }
30518
+
30519
+ .E_s1dni7lo {
30520
+ width: 430px !important;
30521
+ }
30522
+
30523
+ .E_d1wwmmm5 .ant-select-item-group {
30524
+ padding: 8px 16px;
30525
+ line-height: 18px;
30526
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
30527
+ height: 34px;
30528
+ min-height: 34px;
30529
+ box-sizing: border-box;
30530
+ margin-top: 8px;
30531
+ }
30532
+
30533
+ .E_o1ugr09p {
30534
+ display: flex;
30535
+ flex-direction: column;
30536
+ margin: 1px 8px;
30537
+ padding: 8px;
30538
+ border-radius: 4px;
30539
+ }
30540
+ .E_o1ugr09p .selected-icon {
30541
+ display: none;
30542
+ }
30543
+ .E_o1ugr09p.ant-select-item-option-grouped {
30544
+ padding-left: 8px;
30545
+ }
30546
+ .E_o1ugr09p.ant-select-item-option-selected {
30547
+ background-color: white;
30548
+ }
30549
+ .E_o1ugr09p.ant-select-item-option-selected .timezone-title {
30550
+ color: #0080ff;
30551
+ }
30552
+ .E_o1ugr09p.ant-select-item-option-selected .selected-icon {
30553
+ display: block;
30554
+ }
30555
+ .E_o1ugr09p.ant-select-item-option-active {
30556
+ background: rgba(0, 136, 255, 0.16);
30557
+ }
30558
+ .E_o1ugr09p.ant-select-item-option-active .timezone-title {
30559
+ color: #0080ff;
30560
+ }
30561
+ .E_o1ugr09p.ant-select-item-option-active .timezone-tag {
30562
+ background: rgba(0, 136, 255, 0.1);
30563
+ color: #0080ff;
30564
+ }
30565
+
30566
+ .E_o1ifxsq4 {
30567
+ display: flex;
30568
+ justify-content: space-between;
30569
+ height: 20px;
30570
+ line-height: 20px;
30571
+ }
30572
+ .E_o1ifxsq4 .timezone-title {
30573
+ color: #2d3a56;
30574
+ overflow: hidden;
30575
+ text-overflow: ellipsis;
30576
+ }
30577
+
30578
+ .E_o1zue7 {
30579
+ display: flex;
30580
+ justify-content: space-between;
30581
+ color: rgba(44, 56, 82, 0.6);
30582
+ height: 18px;
30583
+ line-height: 18px;
30584
+ margin-top: 2px;
30585
+ }
30586
+
30587
+ .E_tyfmlxg {
30588
+ border: none;
30589
+ margin-right: 0;
30590
+ background: rgba(225, 230, 241, 0.6);
30591
+ }
30592
+
30593
+ .E_o18uybox {
30594
+ pointer-events: none;
30595
+ height: 32px;
30596
+ width: 100%;
30597
+ opacity: 0;
30598
+ }
30599
+
30600
+ .E_s1sck0th {
30601
+ padding: 0 8px;
30602
+ border-radius: 4px;
30603
+ }
30604
+
30605
+ .E_m855nr1 {
30606
+ padding: 2px 8px;
30607
+ border-radius: 3px;
30608
+ }
30609
+
30610
+ .E_l1270xpg {
30611
+ padding: 3px 8px;
30612
+ border-radius: 2px;
30613
+ }
30614
+
30615
+ .E_t14rextb.ant-tag:hover {
30616
+ opacity: unset;
30617
+ }
30618
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
30619
+ margin: 0;
30620
+ margin-right: 8px;
30621
+ display: inline-flex;
30622
+ align-items: center;
30623
+ border: none;
30624
+ }
30625
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
30626
+ width: 16px;
30627
+ height: 16px;
30628
+ color: inherit;
30629
+ margin-left: 4px;
30630
+ opacity: 0.6;
30631
+ display: inline-flex;
30632
+ }
30633
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
30634
+ opacity: 1;
30635
+ }
30636
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
30637
+ color: #0080ff;
30638
+ background-color: rgba(0, 136, 255, 0.1);
30639
+ }
30640
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
30641
+ color: #f0483e;
30642
+ background-color: rgba(255, 74, 74, 0.1);
30643
+ }
30644
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
30645
+ color: #e07f00;
30646
+ background-color: rgba(255, 187, 0, 0.1);
30647
+ }
30648
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
30649
+ color: #008f4c;
30650
+ background-color: rgba(30, 201, 127, 0.1);
30651
+ }
30652
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
30653
+ color: #1d326c;
30654
+ background-color: rgba(225, 230, 241, 0.6);
30655
+ }
30656
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
30657
+ color: #7E41FF;
30658
+ background-color: rgba(126, 65, 255, 0.1);
30659
+ }
30660
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
30661
+ color: #fff;
30662
+ }
30663
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
30664
+ background-color: #f0483e;
30665
+ }
30666
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
30667
+ background-color: #fea008;
30668
+ }
30669
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
30670
+ background-color: #00ba5d;
30671
+ }
30672
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
30673
+ background-color: #0080ff;
30674
+ }
30675
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
30676
+ background-color: #6b7d99;
30677
+ }
30678
+ .E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
30679
+ background-color: #7E41FF;
30680
+ }
30681
+
30682
+ .E_iq1gosr {
30683
+ display: inline-block;
30684
+ }
30685
+
30686
+ .E_t1m2x205 .ant-tooltip-arrow {
30687
+ display: none;
30688
30688
  }
30689
30689
  .E_t1m2x205 .ant-tooltip-inner {
30690
30690
  background: rgba(23, 38, 64, 0.8);
@@ -30694,6 +30694,41 @@ body {
30694
30694
  visibility: hidden;
30695
30695
  }
30696
30696
 
30697
+ .E_fzh9mnb {
30698
+ width: 100%;
30699
+ height: 100%;
30700
+ min-height: 124px;
30701
+ display: flex;
30702
+ flex-direction: column;
30703
+ justify-content: center;
30704
+ align-items: center;
30705
+ }
30706
+ .E_fzh9mnb .error-text {
30707
+ color: rgba(10, 37, 85, 0.6);
30708
+ margin-bottom: 16px;
30709
+ font-size: 18px;
30710
+ }
30711
+
30712
+ .E_atcz0kf .ant-input-suffix {
30713
+ margin-left: 8px;
30714
+ }
30715
+ .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
30716
+ padding: 2px 7px 2px 12px;
30717
+ }
30718
+
30719
+ .E_i1inqkme {
30720
+ height: 18px;
30721
+ line-height: 18px;
30722
+ padding: 0 4px;
30723
+ border-radius: 4px;
30724
+ background: rgba(235, 239, 245, 0.6);
30725
+ border: 1px solid rgba(223, 228, 235, 0.6);
30726
+ display: flex;
30727
+ align-items: center;
30728
+ white-space: nowrap;
30729
+ margin-right: 4px;
30730
+ }
30731
+
30697
30732
  .E_f7pxqmh {
30698
30733
  width: 100%;
30699
30734
  margin-bottom: 0 !important;
@@ -30728,19 +30763,35 @@ body {
30728
30763
  min-height: 0px;
30729
30764
  }
30730
30765
 
30731
- .E_fzh9mnb {
30732
- width: 100%;
30733
- height: 100%;
30734
- min-height: 124px;
30735
- display: flex;
30736
- flex-direction: column;
30737
- justify-content: center;
30766
+ .E_a1wfy30z .ant-input-number-handler-wrap {
30767
+ display: var(--a1wfy30z-0);
30768
+ }
30769
+ .E_a1wfy30z .ant-input-number-input-wrap {
30770
+ padding: 4px 11px;
30771
+ display: inline-flex;
30772
+ line-height: 1.5715;
30773
+ height: inherit;
30774
+ }
30775
+ .E_a1wfy30z .ant-input-number-input-wrap::after {
30776
+ content: var(--a1wfy30z-1);
30777
+ display: var(--a1wfy30z-2);
30778
+ flex: none;
30738
30779
  align-items: center;
30780
+ margin-left: 4px;
30739
30781
  }
30740
- .E_fzh9mnb .error-text {
30741
- color: rgba(10, 37, 85, 0.6);
30742
- margin-bottom: 16px;
30743
- font-size: 18px;
30782
+ .E_a1wfy30z .ant-input-number-input-wrap::before {
30783
+ content: var(--a1wfy30z-3);
30784
+ display: var(--a1wfy30z-4);
30785
+ flex: none;
30786
+ align-items: center;
30787
+ margin-right: 4px;
30788
+ cursor: auto;
30789
+ }
30790
+ .E_a1wfy30z .ant-input-number-input {
30791
+ padding: 0;
30792
+ margin: 0;
30793
+ height: auto;
30794
+ font-size: inherit;
30744
30795
  }
30745
30796
 
30746
30797
  .E_ai7qkf2 .ant-input-number-handler-wrap {
@@ -30803,57 +30854,6 @@ body {
30803
30854
  padding: 2px 8px;
30804
30855
  }
30805
30856
 
30806
- .E_a1wfy30z .ant-input-number-handler-wrap {
30807
- display: var(--a1wfy30z-0);
30808
- }
30809
- .E_a1wfy30z .ant-input-number-input-wrap {
30810
- padding: 4px 11px;
30811
- display: inline-flex;
30812
- line-height: 1.5715;
30813
- height: inherit;
30814
- }
30815
- .E_a1wfy30z .ant-input-number-input-wrap::after {
30816
- content: var(--a1wfy30z-1);
30817
- display: var(--a1wfy30z-2);
30818
- flex: none;
30819
- align-items: center;
30820
- margin-left: 4px;
30821
- }
30822
- .E_a1wfy30z .ant-input-number-input-wrap::before {
30823
- content: var(--a1wfy30z-3);
30824
- display: var(--a1wfy30z-4);
30825
- flex: none;
30826
- align-items: center;
30827
- margin-right: 4px;
30828
- cursor: auto;
30829
- }
30830
- .E_a1wfy30z .ant-input-number-input {
30831
- padding: 0;
30832
- margin: 0;
30833
- height: auto;
30834
- font-size: inherit;
30835
- }
30836
-
30837
- .E_i1inqkme {
30838
- height: 18px;
30839
- line-height: 18px;
30840
- padding: 0 4px;
30841
- border-radius: 4px;
30842
- background: rgba(235, 239, 245, 0.6);
30843
- border: 1px solid rgba(223, 228, 235, 0.6);
30844
- display: flex;
30845
- align-items: center;
30846
- white-space: nowrap;
30847
- margin-right: 4px;
30848
- }
30849
-
30850
- .E_atcz0kf .ant-input-suffix {
30851
- margin-left: 8px;
30852
- }
30853
- .E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
30854
- padding: 2px 7px 2px 12px;
30855
- }
30856
-
30857
30857
  .E_iouxfgt {
30858
30858
  display: inline-flex;
30859
30859
  align-items: center;
@@ -30911,6 +30911,10 @@ body {
30911
30911
  transition: all 320ms ease;
30912
30912
  }
30913
30913
 
30914
+ .E_m196gn1d {
30915
+ min-width: 1280px;
30916
+ }
30917
+
30914
30918
  .E_cnujxq2 {
30915
30919
  display: flex;
30916
30920
  flex-direction: column;
@@ -31601,10 +31605,6 @@ input.E_rf8rlle.ant-input {
31601
31605
  color: rgba(44, 56, 82, 0.7490196078);
31602
31606
  }
31603
31607
 
31604
- .E_m196gn1d {
31605
- min-width: 1280px;
31606
- }
31607
-
31608
31608
  .E_dsnbhzf {
31609
31609
  font-family: Inter;
31610
31610
  font-style: normal;
@@ -32080,63 +32080,6 @@ input.E_rf8rlle.ant-input {
32080
32080
  line-height: 12px;
32081
32081
  }
32082
32082
 
32083
- .E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
32084
- border-radius: 6px;
32085
- }
32086
- .E_s17wv897.ant-select.ant-select-single {
32087
- width: 100%;
32088
- color: #2d3a56;
32089
- border-color: rgba(211, 218, 235, 0.6);
32090
- transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
32091
- font-size: 13px;
32092
- }
32093
- .E_s17wv897.ant-select.ant-select-single[data-size=middle] {
32094
- height: 30px;
32095
- }
32096
- .E_s17wv897.ant-select.ant-select-single.ant-select-lg {
32097
- height: 38px;
32098
- font-size: 13px;
32099
- }
32100
- .E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
32101
- .E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
32102
- transition: 160ms ease;
32103
- }
32104
- .E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
32105
- color: #0080ff;
32106
- }
32107
- .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
32108
- border-color: rgba(107, 128, 167, 0.6);
32109
- box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
32110
- }
32111
- .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
32112
- color: #0080ff;
32113
- }
32114
- .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
32115
- border-color: #0080ff;
32116
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
32117
- }
32118
- .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
32119
- transform: rotate(180deg);
32120
- }
32121
- .E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
32122
- background: rgba(211, 218, 235, 0.6);
32123
- border-color: rgba(172, 186, 211, 0.6);
32124
- cursor: "not-allowed";
32125
- }
32126
- .E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
32127
- border-color: #f0483e !important;
32128
- }
32129
- .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
32130
- color: #1d326c;
32131
- }
32132
- .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
32133
- border-color: #0080ff;
32134
- box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
32135
- }
32136
- .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
32137
- transform: rotate(180deg);
32138
- }
32139
-
32140
32083
  .E_s4ivdfu.ant-select .ant-select-selection-placeholder {
32141
32084
  opacity: 1;
32142
32085
  }
@@ -32228,40 +32171,97 @@ input.E_rf8rlle.ant-input {
32228
32171
  .E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-suffix {
32229
32172
  display: none;
32230
32173
  }
32231
- .E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
32232
- display: inline;
32174
+ .E_sks9xr8.ant-select:not(.ant-select-disabled).select-error:not(.ant-select-open):focus .select-error-focus-suffix {
32175
+ display: inline;
32176
+ }
32177
+
32178
+ .E_swwhohx.ant-select .ant-select-selector {
32179
+ padding: 0 7px 0 12px;
32180
+ }
32181
+ .E_swwhohx.ant-select .ant-select-arrow {
32182
+ right: 8px;
32183
+ top: 50%;
32184
+ margin-top: -8px;
32185
+ width: 16px;
32186
+ height: 16px;
32187
+ display: flex;
32188
+ align-items: center;
32189
+ }
32190
+ .E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
32191
+ padding: 0 11px 0 16px;
32192
+ }
32193
+ .E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
32194
+ right: 12px;
32195
+ }
32196
+ .E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
32197
+ padding: 0 3px 0 8px;
32198
+ }
32199
+ .E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
32200
+ right: 4px;
32201
+ }
32202
+ .E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
32203
+ padding-right: 24px;
32204
+ }
32205
+
32206
+ .E_p2sxmsl {
32207
+ color: rgba(0, 21, 64, 0.3);
32208
+ }
32209
+
32210
+ .E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
32211
+ border-radius: 6px;
32212
+ }
32213
+ .E_s17wv897.ant-select.ant-select-single {
32214
+ width: 100%;
32215
+ color: #2d3a56;
32216
+ border-color: rgba(211, 218, 235, 0.6);
32217
+ transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
32218
+ font-size: 13px;
32219
+ }
32220
+ .E_s17wv897.ant-select.ant-select-single[data-size=middle] {
32221
+ height: 30px;
32222
+ }
32223
+ .E_s17wv897.ant-select.ant-select-single.ant-select-lg {
32224
+ height: 38px;
32225
+ font-size: 13px;
32226
+ }
32227
+ .E_s17wv897.ant-select.ant-select-single .ant-select-arrow,
32228
+ .E_s17wv897.ant-select.ant-select-single .ant-select-arrow .anticon-down {
32229
+ transition: 160ms ease;
32230
+ }
32231
+ .E_s17wv897.ant-select.ant-select-single .ant-select-arrow-loading {
32232
+ color: #0080ff;
32233
+ }
32234
+ .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
32235
+ border-color: rgba(107, 128, 167, 0.6);
32236
+ box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
32233
32237
  }
32234
-
32235
- .E_swwhohx.ant-select .ant-select-selector {
32236
- padding: 0 7px 0 12px;
32238
+ .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
32239
+ color: #0080ff;
32237
32240
  }
32238
- .E_swwhohx.ant-select .ant-select-arrow {
32239
- right: 8px;
32240
- top: 50%;
32241
- margin-top: -8px;
32242
- width: 16px;
32243
- height: 16px;
32244
- display: flex;
32245
- align-items: center;
32241
+ .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
32242
+ border-color: #0080ff;
32243
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
32246
32244
  }
32247
- .E_swwhohx.ant-select.ant-select-lg .ant-select-selector {
32248
- padding: 0 11px 0 16px;
32245
+ .E_s17wv897.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
32246
+ transform: rotate(180deg);
32249
32247
  }
32250
- .E_swwhohx.ant-select.ant-select-lg .ant-select-arrow {
32251
- right: 12px;
32248
+ .E_s17wv897.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
32249
+ background: rgba(211, 218, 235, 0.6);
32250
+ border-color: rgba(172, 186, 211, 0.6);
32251
+ cursor: "not-allowed";
32252
32252
  }
32253
- .E_swwhohx.ant-select.ant-select-sm .ant-select-selector {
32254
- padding: 0 3px 0 8px;
32253
+ .E_s17wv897.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
32254
+ border-color: #f0483e !important;
32255
32255
  }
32256
- .E_swwhohx.ant-select.ant-select-sm .ant-select-arrow {
32257
- right: 4px;
32256
+ .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
32257
+ color: #1d326c;
32258
32258
  }
32259
- .E_swwhohx.ant-select.ant-select-single.ant-select-show-arrow .ant-select-selection-item {
32260
- padding-right: 24px;
32259
+ .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
32260
+ border-color: #0080ff;
32261
+ box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
32261
32262
  }
32262
-
32263
- .E_p2sxmsl {
32264
- color: rgba(0, 21, 64, 0.3);
32263
+ .E_s17wv897.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
32264
+ transform: rotate(180deg);
32265
32265
  }
32266
32266
 
32267
32267
  .E_oa99sl3 {
@@ -32304,54 +32304,6 @@ input.E_rf8rlle.ant-input {
32304
32304
  opacity: 0.8;
32305
32305
  }
32306
32306
 
32307
- .E_suhck3k {
32308
- height: 24px;
32309
- width: 24px;
32310
- border-radius: 6px;
32311
- padding: 4px;
32312
- }
32313
- .E_suhck3k:hover {
32314
- background-color: rgba(0, 136, 255, 0.1);
32315
- }
32316
- .E_suhck3k:hover svg path {
32317
- fill: blue;
32318
- }
32319
-
32320
- .E_s11wux3h .antd5-segmented-item:not(:last-child) {
32321
- margin-right: 2px;
32322
- }
32323
-
32324
- .E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
32325
- padding-left: 8px;
32326
- padding-right: 8px;
32327
- font-size: 12px;
32328
- }
32329
- .E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
32330
- border-radius: 4px;
32331
- }
32332
- .E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
32333
- border-radius: 4px;
32334
- }
32335
-
32336
- .E_ma64lna .antd5-segmented-item-label {
32337
- padding-left: 12px;
32338
- padding-right: 12px;
32339
- }
32340
-
32341
- .E_ckld275 {
32342
- background-color: rgba(225, 230, 241, 0.6);
32343
- }
32344
- .E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
32345
- background-color: rgba(255, 255, 255, 0.6);
32346
- color: rgba(44, 56, 82, 0.75);
32347
- }
32348
- .E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
32349
- background-color: transparent;
32350
- }
32351
- .E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
32352
- background-color: transparent;
32353
- }
32354
-
32355
32307
  .E_ryby9ds {
32356
32308
  display: flex;
32357
32309
  align-items: center;
@@ -32368,70 +32320,17 @@ input.E_rf8rlle.ant-input {
32368
32320
  margin-right: 6px;
32369
32321
  }
32370
32322
 
32371
- .E_b1lj76ty {
32372
- width: 100%;
32373
- height: 100%;
32374
- margin: 0 auto;
32375
- display: flex;
32376
- flex-direction: column;
32377
- align-items: center;
32378
- justify-content: center;
32379
- color: rgba(0, 21, 64, 0.3);
32380
- }
32381
- .E_b1lj76ty.large {
32382
- max-width: 648px;
32383
- }
32384
- .E_b1lj76ty.medium {
32385
- max-width: 412px;
32386
- }
32387
- .E_b1lj76ty.gray {
32388
- background-color: rgba(237, 241, 250, 0.6);
32389
- }
32390
- .E_b1lj76ty.white {
32391
- background-color: rgba(255, 255, 255, 0.6);
32392
- }
32393
- .E_b1lj76ty .title {
32394
- margin-bottom: 4px;
32395
- }
32396
- .E_b1lj76ty .title,
32397
- .E_b1lj76ty .desc {
32398
- word-break: break-all;
32399
- text-align: center;
32400
- }
32401
- .E_b1lj76ty .action-button.middle {
32402
- margin-top: 16px;
32403
- }
32404
- .E_b1lj76ty .action-button.small {
32405
- margin-top: 8px;
32406
- }
32407
-
32408
- .E_m5foqp8 {
32409
- --footer-height: 96px;
32410
- --modal-content-width: 720px;
32411
- --modal-content-min-height: 200px;
32412
- --modal-header-padding: 40px 60px 8px;
32413
- --modal-content-padding-top: 24px;
32414
- --modal-content-padding-bottom: 32px;
32415
- --modal-content-padding-x: 60px;
32416
- --modal-footer-padding: 0 60px;
32417
- }
32418
- .E_m5foqp8.content-full.ant-modal {
32419
- height: calc(100vh - 80px);
32420
- width: calc(100vw - 160px);
32421
- }
32422
- .E_m5foqp8.content-full.ant-modal .ant-modal-content {
32423
- width: 100%;
32424
- height: 100%;
32425
- max-width: unset;
32426
- max-height: unset;
32427
- display: flex;
32428
- flex-direction: column;
32323
+ .E_suhck3k {
32324
+ height: 24px;
32325
+ width: 24px;
32326
+ border-radius: 6px;
32327
+ padding: 4px;
32429
32328
  }
32430
- .E_m5foqp8.content-full.ant-modal .ant-modal-body {
32431
- flex: 1;
32329
+ .E_suhck3k:hover {
32330
+ background-color: rgba(0, 136, 255, 0.1);
32432
32331
  }
32433
- .E_m5foqp8 .initializing-title {
32434
- height: 32px;
32332
+ .E_suhck3k:hover svg path {
32333
+ fill: blue;
32435
32334
  }
32436
32335
 
32437
32336
  .E_hrhfj7c {
@@ -32509,7 +32408,6 @@ input.E_rf8rlle.ant-input {
32509
32408
  justify-content: space-between;
32510
32409
  align-items: center;
32511
32410
  border-bottom: 1px solid #e4e9f2;
32512
- gap: 4px;
32513
32411
  }
32514
32412
 
32515
32413
  .E_ckhyuyx {
@@ -32598,60 +32496,161 @@ input.E_rf8rlle.ant-input {
32598
32496
  .E_ckhyuyx.antd5-cascader-checkbox-wrapper-disabled .antd5-cascader-checkbox-disabled.antd5-cascader-checkbox-indeterminate .antd5-cascader-checkbox-inner:after {
32599
32497
  background: #2d3a56;
32600
32498
  }
32601
- .E_ckhyuyx .antd5-cascader-checkbox + span, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span {
32602
- padding: 0;
32499
+ .E_ckhyuyx .antd5-cascader-checkbox + span, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span {
32500
+ padding: 0;
32501
+ }
32502
+ .E_ckhyuyx .antd5-cascader-checkbox + span .main, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .main {
32503
+ display: inline-block;
32504
+ margin-left: 12px;
32505
+ color: #2d3a56;
32506
+ }
32507
+ .E_ckhyuyx .antd5-cascader-checkbox + span .sub, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .sub {
32508
+ margin-left: 28px;
32509
+ color: rgba(44, 56, 82, 0.6);
32510
+ }
32511
+ .E_ckhyuyx.compact .antd5-cascader-checkbox + span .main, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .main {
32512
+ margin-left: 8px;
32513
+ }
32514
+ .E_ckhyuyx.compact .antd5-cascader-checkbox + span .sub, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .sub {
32515
+ margin-left: 24px;
32516
+ }
32517
+ .E_ckhyuyx .E_dt9qoak {
32518
+ width: 400px;
32519
+ }
32520
+
32521
+ .E_c1fmq9lv ul.antd5-cascader-menu {
32522
+ padding: 4px;
32523
+ height: 158px;
32524
+ }
32525
+ .E_c1fmq9lv.E_ckhyuyx {
32526
+ border-radius: 6px;
32527
+ }
32528
+ .E_c1fmq9lv.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
32529
+ min-width: 200px;
32530
+ font-size: 12px;
32531
+ }
32532
+ .E_c1fmq9lv.E_ckhyuyx .E_c1iye0zj {
32533
+ padding: 6px 12px;
32534
+ height: 18px;
32535
+ font-size: 12px;
32536
+ }
32537
+
32538
+ .E_c1evusvc ul.antd5-cascader-menu {
32539
+ padding: 8px;
32540
+ height: 320px;
32541
+ }
32542
+ .E_c1evusvc.E_ckhyuyx {
32543
+ border-radius: 10px;
32544
+ }
32545
+ .E_c1evusvc.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
32546
+ min-width: 296px;
32547
+ padding: 8px;
32548
+ }
32549
+ .E_c1evusvc.E_ckhyuyx .E_c1iye0zj {
32550
+ height: 22px;
32551
+ padding: 8px 16px;
32552
+ font-size: 14px;
32553
+ }
32554
+
32555
+ .E_b1lj76ty {
32556
+ width: 100%;
32557
+ height: 100%;
32558
+ margin: 0 auto;
32559
+ display: flex;
32560
+ flex-direction: column;
32561
+ align-items: center;
32562
+ justify-content: center;
32563
+ color: rgba(0, 21, 64, 0.3);
32564
+ }
32565
+ .E_b1lj76ty.large {
32566
+ max-width: 648px;
32567
+ }
32568
+ .E_b1lj76ty.medium {
32569
+ max-width: 412px;
32570
+ }
32571
+ .E_b1lj76ty.gray {
32572
+ background-color: rgba(237, 241, 250, 0.6);
32573
+ }
32574
+ .E_b1lj76ty.white {
32575
+ background-color: rgba(255, 255, 255, 0.6);
32576
+ }
32577
+ .E_b1lj76ty .title {
32578
+ margin-bottom: 4px;
32579
+ }
32580
+ .E_b1lj76ty .title,
32581
+ .E_b1lj76ty .desc {
32582
+ word-break: break-all;
32583
+ text-align: center;
32584
+ }
32585
+ .E_b1lj76ty .action-button.middle {
32586
+ margin-top: 16px;
32587
+ }
32588
+ .E_b1lj76ty .action-button.small {
32589
+ margin-top: 8px;
32590
+ }
32591
+
32592
+ .E_m5foqp8.medium {
32593
+ --footer-height: 96px;
32594
+ --modal-content-width: 720px;
32595
+ --modal-content-min-height: 200px;
32596
+ --modal-header-padding: 40px 60px 8px;
32597
+ --modal-content-padding-top: 24px;
32598
+ --modal-content-padding-bottom: 32px;
32599
+ --modal-content-padding-x: 60px;
32600
+ --modal-footer-padding: 0 60px;
32603
32601
  }
32604
- .E_ckhyuyx .antd5-cascader-checkbox + span .main, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .main {
32605
- display: inline-block;
32606
- margin-left: 12px;
32607
- color: #2d3a56;
32602
+ .E_m5foqp8.medium.content-full.ant-modal {
32603
+ height: calc(100vh - 80px);
32604
+ width: calc(100vw - 160px);
32608
32605
  }
32609
- .E_ckhyuyx .antd5-cascader-checkbox + span .sub, .E_ckhyuyx .antd5-cascader-checkbox-disabled + span .sub {
32610
- margin-left: 28px;
32611
- color: rgba(44, 56, 82, 0.6);
32606
+ .E_m5foqp8.medium.content-full.ant-modal .ant-modal-content {
32607
+ width: 100%;
32608
+ height: 100%;
32609
+ max-width: unset;
32610
+ max-height: unset;
32611
+ display: flex;
32612
+ flex-direction: column;
32612
32613
  }
32613
- .E_ckhyuyx.compact .antd5-cascader-checkbox + span .main, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .main {
32614
- margin-left: 8px;
32614
+ .E_m5foqp8.medium.content-full.ant-modal .ant-modal-body {
32615
+ flex: 1;
32615
32616
  }
32616
- .E_ckhyuyx.compact .antd5-cascader-checkbox + span .sub, .E_ckhyuyx.compact .antd5-cascader-checkbox-disabled + span .sub {
32617
- margin-left: 24px;
32617
+ .E_m5foqp8.medium .initializing-title {
32618
+ height: 32px;
32618
32619
  }
32619
- .E_ckhyuyx .E_dt9qoak {
32620
- width: 400px;
32620
+
32621
+ .E_s11wux3h .antd5-segmented-item:not(:last-child) {
32622
+ margin-right: 2px;
32621
32623
  }
32622
32624
 
32623
- .E_c1fmq9lv ul.antd5-cascader-menu {
32624
- padding: 4px;
32625
- height: 158px;
32625
+ .E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-label {
32626
+ padding-left: 8px;
32627
+ padding-right: 8px;
32628
+ font-size: 12px;
32626
32629
  }
32627
- .E_c1fmq9lv.E_ckhyuyx {
32628
- border-radius: 6px;
32630
+ .E_s1t2an3z.antd5-segmented-sm .antd5-segmented-item-selected {
32631
+ border-radius: 4px;
32629
32632
  }
32630
- .E_c1fmq9lv.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
32631
- min-width: 200px;
32632
- font-size: 12px;
32633
+ .E_s1t2an3z.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
32634
+ border-radius: 4px;
32633
32635
  }
32634
- .E_c1fmq9lv.E_ckhyuyx .E_c1iye0zj {
32635
- padding: 6px 12px;
32636
- height: 18px;
32637
- font-size: 12px;
32636
+
32637
+ .E_ma64lna .antd5-segmented-item-label {
32638
+ padding-left: 12px;
32639
+ padding-right: 12px;
32638
32640
  }
32639
32641
 
32640
- .E_c1evusvc ul.antd5-cascader-menu {
32641
- padding: 8px;
32642
- height: 320px;
32642
+ .E_ckld275 {
32643
+ background-color: rgba(225, 230, 241, 0.6);
32643
32644
  }
32644
- .E_c1evusvc.E_ckhyuyx {
32645
- border-radius: 10px;
32645
+ .E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
32646
+ background-color: rgba(255, 255, 255, 0.6);
32647
+ color: rgba(44, 56, 82, 0.75);
32646
32648
  }
32647
- .E_c1evusvc.E_ckhyuyx:not(:has(.E_c1iq43vd)) li.antd5-menu-item {
32648
- min-width: 296px;
32649
- padding: 8px;
32649
+ .E_ckld275.antd5-segmented .antd5-segmented-thumb ~ .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled) {
32650
+ background-color: transparent;
32650
32651
  }
32651
- .E_c1evusvc.E_ckhyuyx .E_c1iye0zj {
32652
- height: 22px;
32653
- padding: 8px 16px;
32654
- font-size: 14px;
32652
+ .E_ckld275.antd5-segmented .antd5-segmented-item:hover:not(.antd5-segmented-item-selected):not(.antd5-segmented-item-disabled)::after {
32653
+ background-color: transparent;
32655
32654
  }
32656
32655
 
32657
32656
  .E_ckaaqep {
@@ -33380,403 +33379,227 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33380
33379
  background: #fff;
33381
33380
  }
33382
33381
 
33383
- .E_ckui4s7 {
33384
- color: #2d3a56;
33385
- line-height: 22px;
33386
- display: inline-flex;
33387
- }
33388
- .E_ckui4s7 .ant-checkbox {
33389
- height: 22px;
33390
- display: flex;
33391
- align-items: center;
33392
- top: 0;
33393
- }
33394
- .E_ckui4s7 .ant-checkbox-checked::after {
33395
- border: none;
33396
- }
33397
- .E_ckui4s7.ant-checkbox-wrapper:hover .ant-checkbox-inner, .E_ckui4s7.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox:hover .ant-checkbox-inner {
33398
- border-color: #0080ff;
33399
- }
33400
- .E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
33401
- border: 1px solid rgba(107, 128, 167, 0.6);
33402
- }
33403
- .E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
33404
- border: 1px solid #0080ff;
33405
- }
33406
- .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
33407
- background: #0080ff;
33408
- }
33409
- .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
33410
- background-color: #fff;
33411
- height: 2px;
33412
- width: 10px;
33413
- border-radius: 2px;
33414
- }
33415
- .E_ckui4s7.ant-checkbox-wrapper-disabled {
33416
- opacity: 0.5;
33417
- }
33418
- .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
33419
- background: rgba(211, 218, 235, 0.6);
33420
- border-color: rgba(107, 128, 167, 0.6) !important;
33421
- }
33422
- .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
33423
- border-color: #2d3a56;
33424
- }
33425
- .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
33426
- background: #2d3a56;
33427
- }
33428
- .E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
33429
- padding: 0;
33430
- }
33431
- .E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
33432
- display: inline-block;
33433
- margin-left: 12px;
33434
- color: #2d3a56;
33435
- }
33436
- .E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
33437
- margin-left: 28px;
33438
- color: rgba(44, 56, 82, 0.6);
33439
- }
33440
- .E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
33441
- margin-left: 8px;
33442
- }
33443
- .E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
33444
- margin-left: 24px;
33445
- }
33446
-
33447
- .E_b14q2gmw {
33448
- 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);
33449
- }
33450
-
33451
- .E_c1eym6el {
33452
- border-radius: 8px;
33453
- background-color: white;
33454
- }
33455
- .E_c1eym6el.hoverable {
33456
- cursor: pointer;
33457
- }
33458
- .E_c1eym6el.hoverable:hover {
33459
- transition: all 200ms ease;
33460
- box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
33461
- transform: translateY(-4px);
33462
- }
33463
-
33464
- .E_c1yd35n {
33465
- padding: 0 12px 14px 12px;
33466
- }
33467
-
33468
- .E_c1kghdax {
33469
- color: #2d3a56;
33470
- padding: 7px 12px;
33471
- display: flex;
33472
- justify-content: space-between;
33473
- align-items: center;
33474
- }
33475
- .E_c1kghdax.has-arrow {
33476
- padding-left: 10px;
33477
- }
33478
- .E_c1kghdax.has-arrow .title-wrapper {
33479
- cursor: pointer;
33480
- color: #00122e;
33481
- }
33482
- .E_c1kghdax.has-arrow .title-wrapper.is-open {
33483
- color: #2d3a56;
33484
- font-weight: 600;
33485
- }
33486
- .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
33487
- transform: rotate(90deg);
33488
- }
33489
- .E_c1kghdax .sub-info {
33490
- font-size: 12px;
33491
- line-height: 18px;
33492
- }
33493
- .E_c1kghdax .title-wrapper {
33494
- display: flex;
33495
- align-items: center;
33496
- user-select: none;
33497
- flex-grow: 1;
33498
- font-size: 12px;
33499
- line-height: 18px;
33500
- color: #2d3a56;
33501
- font-weight: 700;
33502
- }
33503
- .E_c1kghdax .collapse-arrow {
33504
- transition: all 50ms ease-out 0ms;
33505
- margin-right: 2px;
33506
- }
33507
-
33508
- .E_lht19u8 {
33509
- width: 64px;
33510
- height: 64px;
33511
- display: flex;
33512
- align-items: center;
33513
- justify-content: center;
33382
+ .E_u3l9ivi {
33383
+ width: 100%;
33514
33384
  position: relative;
33515
- opacity: 0.2;
33516
- }
33517
-
33518
- .E_lk3gkp4 {
33519
- position: absolute;
33520
- width: 5px;
33521
- height: 48px;
33522
- left: 9.33px;
33523
- top: 40.5px;
33524
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33525
- border-radius: 5px;
33526
- transform: rotate(-128deg);
33527
- transform-origin: top left;
33528
- animation: loading-indicator1 1100ms ease-out infinite;
33529
- }
33530
-
33531
- .E_ll4n94n {
33532
- position: absolute;
33533
- width: 5px;
33534
- height: 48px;
33535
- left: 40.8px;
33536
- top: 8.4px;
33537
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33538
- border-radius: 5px;
33539
- transform: rotate(-8deg);
33540
- transform-origin: top left;
33541
- animation: loading-indicator2 1100ms ease-out infinite;
33542
- }
33543
-
33544
- .E_l17lbdo6 {
33545
- position: absolute;
33546
- width: 5px;
33547
- height: 48px;
33548
- left: 52.9px;
33549
- top: 51.8px;
33550
- background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33551
- border-radius: 5px;
33552
- transform: rotate(112deg);
33553
- transform-origin: top left;
33554
- animation: loading-indicator3 1100ms ease-out infinite;
33555
33385
  }
33556
-
33557
- .E_t1dtlqs1 {
33386
+ .E_u3l9ivi .upload-label {
33387
+ color: #00122e;
33388
+ word-break: break-word;
33558
33389
  margin-bottom: 4px;
33559
- color: rgba(44, 56, 82, 0.6);
33390
+ display: block;
33560
33391
  }
33561
-
33562
- .E_s1ese5oy {
33392
+ .E_u3l9ivi .upload-description {
33563
33393
  color: rgba(44, 56, 82, 0.6);
33564
- line-height: 32px;
33565
- height: 32px;
33566
- margin-bottom: 0;
33394
+ word-break: break-word;
33567
33395
  }
33568
- .E_s1ese5oy.primary, .E_s1ese5oy.info {
33569
- color: #0080ff;
33396
+ .E_u3l9ivi .upload-button {
33397
+ display: block;
33570
33398
  }
33571
- .E_s1ese5oy.warning {
33572
- color: #ffa500;
33399
+ .E_u3l9ivi .upload-button:not(:first-child),
33400
+ .E_u3l9ivi .upload-drag:not(:first-child) {
33401
+ margin-top: 8px;
33573
33402
  }
33574
- .E_s1ese5oy.success {
33575
- color: #00ba5d;
33403
+ .E_u3l9ivi .upload-button:not(:last-child),
33404
+ .E_u3l9ivi .upload-drag:not(:last-child) {
33405
+ margin-bottom: 8px;
33576
33406
  }
33577
- .E_s1ese5oy.danger, .E_s1ese5oy.error {
33578
- color: #f0483e;
33407
+ .E_u3l9ivi .upload-drag-area {
33408
+ padding: 32px 16px;
33409
+ border-radius: 4px;
33410
+ border: 1px dashed rgba(107, 128, 167, 0.6);
33411
+ background: rgba(237, 241, 250, 0.6);
33412
+ display: flex;
33413
+ flex-direction: column;
33414
+ align-items: center;
33579
33415
  }
33580
- .E_s1ese5oy.normal {
33581
- color: rgba(44, 56, 82, 0.6);
33416
+ .E_u3l9ivi .upload-drag-area .upload-drag-text {
33417
+ text-align: center;
33582
33418
  }
33583
-
33584
- .E_b1ibis43 {
33585
- margin-bottom: 0;
33419
+ .E_u3l9ivi .upload-drag-area .ant-upload-drag-container {
33586
33420
  color: #00122e;
33587
33421
  }
33588
-
33589
- .E_b11xxjd2 {
33590
- line-height: 32px;
33591
- margin-right: 6px;
33422
+ .E_u3l9ivi .upload-drag-area.has-file {
33423
+ padding: 16px;
33592
33424
  }
33593
-
33594
- .E_bsub5bw.with-description {
33425
+ .E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container {
33426
+ display: flex;
33427
+ flex-direction: row;
33428
+ justify-content: center;
33429
+ align-items: flex-start;
33430
+ }
33431
+ .E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link {
33595
33432
  height: 24px;
33596
- flex: 1;
33597
- position: relative;
33598
- top: -7px;
33599
33433
  }
33600
- .E_bsub5bw p {
33601
- width: 100%;
33602
- overflow: hidden;
33603
- text-overflow: ellipsis;
33604
- white-space: nowrap;
33434
+ .E_u3l9ivi .upload-drag-area.has-file .ant-upload-drag-container .ant-btn.ant-btn-link[disabled] {
33435
+ color: #00122e;
33436
+ opacity: 1;
33605
33437
  }
33606
-
33607
- .E_tmoyoag {
33608
- border: 1px solid rgba(211, 218, 235, 0.6);
33609
- border-radius: 8px;
33610
- overflow: auto;
33438
+ .E_u3l9ivi .upload-drag-area.has-file .upload-drag-text {
33439
+ margin-left: 8px;
33440
+ text-align: left;
33611
33441
  }
33612
- .E_tmoyoag .ant-list {
33613
- position: relative;
33442
+ .E_u3l9ivi .upload-drag-area.has-file .upload-drag-text .ant-btn.ant-btn-link {
33443
+ height: 24px;
33614
33444
  }
33615
- .E_tmoyoag .ant-list .ant-list-item:last-child {
33616
- border-bottom: none;
33445
+ .E_u3l9ivi .upload-drag-area.has-file.single {
33446
+ padding: 12px;
33447
+ line-height: 24px;
33617
33448
  }
33618
- .E_tmoyoag .ant-list .eagle-table-form-header {
33619
- position: sticky;
33620
- top: 0;
33621
- z-index: 2;
33449
+ .E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container {
33622
33450
  display: flex;
33623
- padding: 8px;
33624
- flex-wrap: nowrap;
33625
- justify-content: flex-start;
33626
- background: #f2f5fa;
33627
- font-size: 14px;
33628
- color: rgba(44, 56, 82, 0.6);
33629
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
33451
+ flex-direction: row;
33452
+ align-items: flex-start;
33453
+ justify-content: space-between;
33454
+ line-height: 24px;
33455
+ word-break: break-all;
33630
33456
  }
33631
- .E_tmoyoag .ant-list .eagle-table-form-header {
33632
- align-items: inherit;
33457
+ .E_u3l9ivi .upload-drag-area.has-file.single .ant-upload-drag-container .ant-btn.ant-btn-link {
33458
+ height: 24px;
33633
33459
  }
33634
- .E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
33635
- margin-bottom: 0;
33460
+ .E_u3l9ivi .upload-drag-area.file-error.single {
33461
+ border-color: #f0483e;
33462
+ background: rgba(255, 74, 74, 0.1);
33636
33463
  }
33637
- .E_tmoyoag .ant-list .eagle-table-form-row {
33464
+ .E_u3l9ivi .upload-drag-area .file-info {
33638
33465
  display: flex;
33639
- justify-content: flex-start;
33466
+ cursor: default;
33640
33467
  align-items: flex-start;
33641
- flex-wrap: wrap;
33642
- padding: 8px;
33643
- border: none;
33644
33468
  }
33645
- .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
33646
- flex-basis: 100%;
33647
- margin: 12px 0 0;
33648
- order: 99;
33649
- color: rgba(44, 56, 82, 0.6);
33469
+ .E_u3l9ivi .upload-drag-area .file-info .icon-wrapper {
33470
+ margin: 4px 0;
33650
33471
  }
33651
- .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
33652
- color: #f0483e;
33653
- flex-basis: 100%;
33654
- order: 98;
33655
- margin: 12px 0 0;
33472
+ .E_u3l9ivi .upload-drag-area .file-info .file-name {
33473
+ margin: 3px 4px;
33474
+ text-align: left;
33656
33475
  }
33657
- .E_tmoyoag .ant-list .eagle-table-form-row:hover {
33658
- background-color: rgba(237, 241, 250, 0.6);
33476
+ .E_u3l9ivi .upload-drag-area:not(.ant-upload-disabled):not(.file-error):hover {
33477
+ border-color: #0080ff;
33478
+ background: rgba(0, 136, 255, 0.1);
33659
33479
  }
33660
- .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
33661
- background-color: rgba(0, 136, 255, 0.1);
33480
+ .E_u3l9ivi .upload-drag-area.ant-upload-disabled {
33481
+ opacity: 0.5;
33662
33482
  }
33663
- .E_tmoyoag .ant-list .eagle-table-form-cell {
33664
- flex: 1 0 0;
33665
- overflow: hidden;
33483
+ .E_u3l9ivi .upload-drag-area.ant-upload-disabled.reach-max-count {
33484
+ color: rgba(0, 21, 64, 0.3);
33666
33485
  }
33667
- .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
33668
- color: rgba(44, 56, 82, 0.6);
33669
- margin: 0;
33486
+ .E_u3l9ivi .upload-error {
33487
+ margin-top: 8px;
33488
+ color: #f0483e;
33670
33489
  }
33671
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
33672
- text-align: center;
33490
+ .E_u3l9ivi .upload-file-info-list {
33491
+ gap: 4px;
33492
+ display: flex;
33493
+ flex-direction: column;
33673
33494
  }
33674
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
33675
- text-align: center;
33495
+ .E_u3l9ivi .upload-file-list {
33496
+ width: 100%;
33676
33497
  }
33677
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
33678
- text-align: left;
33498
+ .E_u3l9ivi .upload-file-list .upload-file-item {
33499
+ padding-bottom: 4px;
33679
33500
  }
33680
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content > * {
33681
- text-align: left;
33501
+ .E_u3l9ivi .upload-file-list .upload-file-item:not(:last-child) {
33502
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
33503
+ margin-bottom: 4px;
33682
33504
  }
33683
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
33684
- text-align: right;
33505
+ .E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info {
33506
+ display: flex;
33507
+ align-items: flex-start;
33685
33508
  }
33686
- .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content > * {
33687
- text-align: right;
33509
+ .E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info {
33510
+ display: flex;
33511
+ align-items: flex-start;
33512
+ width: calc(100% - 25px);
33688
33513
  }
33689
- .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
33690
- margin-right: 8px;
33514
+ .E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .validating {
33515
+ color: rgba(0, 21, 64, 0.3);
33691
33516
  }
33692
- .E_tmoyoag .ant-list .ant-list-item-action {
33693
- padding: 4px;
33694
- width: 24px;
33695
- height: 24px;
33696
- overflow: hidden;
33517
+ .E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .file-info .icon-wrapper {
33518
+ margin: 0 4px;
33697
33519
  }
33698
- .E_tmoyoag .ant-list .ant-list-item-action li {
33699
- padding: 0;
33520
+ .E_u3l9ivi .upload-file-list .upload-file-item .upload-file-info .remove-button {
33521
+ margin-left: auto;
33700
33522
  }
33701
- .E_tmoyoag .ant-list .delete-row-icon.disabled {
33702
- cursor: not-allowed;
33703
- opacity: 0.5;
33523
+ .E_u3l9ivi .upload-file-list .upload-file-item .upload-file-error {
33524
+ color: #e75a3a;
33525
+ margin-left: 24px;
33704
33526
  }
33705
- .E_tmoyoag .ant-list.size-default .ant-list-item-action {
33706
- margin: 0;
33527
+
33528
+ .E_ftdwz1g {
33529
+ display: flex;
33530
+ width: 100%;
33531
+ flex-direction: row;
33532
+ background: rgba(237, 241, 250, 0.6);
33533
+ padding: 7px 8px;
33534
+ border-radius: 4px;
33535
+ gap: 4px;
33536
+ align-items: self-start;
33537
+ color: #00122e;
33707
33538
  }
33708
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
33709
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
33710
- border-radius: 5px;
33711
- font-size: 12px;
33539
+ .E_ftdwz1g .file-size,
33540
+ .E_ftdwz1g .file-size-unit {
33541
+ color: rgba(44, 56, 82, 0.6);
33712
33542
  }
33713
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
33714
- font-size: inherit;
33543
+ .E_ftdwz1g .file-info {
33544
+ flex-grow: 1;
33545
+ overflow: hidden;
33715
33546
  }
33716
- .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
33717
- min-height: 24px;
33718
- font-size: 12px;
33719
- position: relative;
33547
+ .E_ftdwz1g .icon-wrapper {
33548
+ margin-top: 2px;
33549
+ cursor: pointer;
33720
33550
  }
33721
- .E_tmoyoag.row-split-by-border .eagle-table-form-row {
33722
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
33551
+ .E_ftdwz1g .upload-file-error {
33552
+ color: #f0483e;
33723
33553
  }
33724
- .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
33725
- background-color: rgba(237, 241, 250, 0.6);
33554
+ .E_ftdwz1g.file-error-wrapper {
33555
+ background: rgba(255, 74, 74, 0.1);
33556
+ }
33557
+ .E_ftdwz1g.disabled {
33558
+ opacity: 0.5;
33726
33559
  }
33727
33560
 
33728
- .E_a138syjm {
33561
+ .E_c1kghdax {
33562
+ color: #2d3a56;
33563
+ padding: 7px 12px;
33729
33564
  display: flex;
33565
+ justify-content: space-between;
33730
33566
  align-items: center;
33731
- margin-top: 8px;
33732
- gap: 8px;
33733
- }
33734
- .E_a138syjm button.ant-btn {
33735
- padding: 2px 8px;
33736
- height: 24px;
33737
- }
33738
- .E_a138syjm > span.maximum-desc {
33739
- display: none;
33740
- color: rgba(44, 56, 82, 0.6);
33741
33567
  }
33742
- .E_a138syjm > span.maximum-desc.disabled {
33743
- display: inline;
33568
+ .E_c1kghdax.has-arrow {
33569
+ padding-left: 10px;
33744
33570
  }
33745
-
33746
- .E_d77i8u0 {
33747
- width: 24px;
33748
- height: 24px;
33749
- padding: 4px;
33750
- margin-right: 8px;
33571
+ .E_c1kghdax.has-arrow .title-wrapper {
33572
+ cursor: pointer;
33573
+ color: #00122e;
33751
33574
  }
33752
-
33753
- .E_slr2ynn {
33754
- padding: 0 8px;
33755
- height: 18px;
33575
+ .E_c1kghdax.has-arrow .title-wrapper.is-open {
33576
+ color: #2d3a56;
33577
+ font-weight: 600;
33756
33578
  }
33757
-
33758
- .E_m140wbb6 {
33759
- padding: 2px 8px;
33760
- height: 24px;
33579
+ .E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
33580
+ transform: rotate(90deg);
33761
33581
  }
33762
-
33763
- .E_t1fozc1i {
33764
- margin: 0;
33582
+ .E_c1kghdax .sub-info {
33583
+ font-size: 12px;
33584
+ line-height: 18px;
33765
33585
  }
33766
-
33767
- .E_i1vxv4ln {
33768
- margin-right: 4px;
33769
- height: 16px;
33586
+ .E_c1kghdax .title-wrapper {
33587
+ display: flex;
33588
+ align-items: center;
33589
+ user-select: none;
33590
+ flex-grow: 1;
33591
+ font-size: 12px;
33592
+ line-height: 18px;
33593
+ color: #2d3a56;
33594
+ font-weight: 700;
33595
+ }
33596
+ .E_c1kghdax .collapse-arrow {
33597
+ transition: all 50ms ease-out 0ms;
33598
+ margin-right: 2px;
33770
33599
  }
33771
33600
 
33772
- .E_n1afl31m.ant-tag.ant-tag-gray {
33773
- font-weight: 700;
33774
- color: #00122e;
33775
- background-color: rgba(237, 241, 250, 0.6);
33776
- border: 1px solid rgba(211, 218, 235, 0.6);
33777
- word-break: break-all;
33778
- display: inline;
33779
- white-space: normal;
33601
+ .E_c1yd35n {
33602
+ padding: 0 12px 14px 12px;
33780
33603
  }
33781
33604
 
33782
33605
  .E_t1tbywr9 {
@@ -33940,13 +33763,134 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
33940
33763
  height: 16px;
33941
33764
  }
33942
33765
 
33943
- .E_w7ob4th.outside-tag {
33944
- padding-left: 0;
33766
+ .E_b14q2gmw {
33767
+ 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);
33945
33768
  }
33946
- .E_w7ob4th.outside-tag .inside-tag {
33947
- border-radius: 4px 0 0 4px;
33948
- padding-right: 4px;
33949
- margin-right: 4px;
33769
+
33770
+ .E_c1eym6el {
33771
+ border-radius: 8px;
33772
+ background-color: white;
33773
+ }
33774
+ .E_c1eym6el.hoverable {
33775
+ cursor: pointer;
33776
+ }
33777
+ .E_c1eym6el.hoverable:hover {
33778
+ transition: all 200ms ease;
33779
+ box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
33780
+ transform: translateY(-4px);
33781
+ }
33782
+
33783
+ .E_ckui4s7 {
33784
+ color: #2d3a56;
33785
+ line-height: 22px;
33786
+ display: inline-flex;
33787
+ }
33788
+ .E_ckui4s7 .ant-checkbox {
33789
+ height: 22px;
33790
+ display: flex;
33791
+ align-items: center;
33792
+ top: 0;
33793
+ }
33794
+ .E_ckui4s7 .ant-checkbox-checked::after {
33795
+ border: none;
33796
+ }
33797
+ .E_ckui4s7.ant-checkbox-wrapper:hover .ant-checkbox-inner, .E_ckui4s7.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox:hover .ant-checkbox-inner {
33798
+ border-color: #0080ff;
33799
+ }
33800
+ .E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
33801
+ border: 1px solid rgba(107, 128, 167, 0.6);
33802
+ }
33803
+ .E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
33804
+ border: 1px solid #0080ff;
33805
+ }
33806
+ .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
33807
+ background: #0080ff;
33808
+ }
33809
+ .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
33810
+ background-color: #fff;
33811
+ height: 2px;
33812
+ width: 10px;
33813
+ border-radius: 2px;
33814
+ }
33815
+ .E_ckui4s7.ant-checkbox-wrapper-disabled {
33816
+ opacity: 0.5;
33817
+ }
33818
+ .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
33819
+ background: rgba(211, 218, 235, 0.6);
33820
+ border-color: rgba(107, 128, 167, 0.6) !important;
33821
+ }
33822
+ .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
33823
+ border-color: #2d3a56;
33824
+ }
33825
+ .E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
33826
+ background: #2d3a56;
33827
+ }
33828
+ .E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
33829
+ padding: 0;
33830
+ }
33831
+ .E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
33832
+ display: inline-block;
33833
+ margin-left: 12px;
33834
+ color: #2d3a56;
33835
+ }
33836
+ .E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
33837
+ margin-left: 28px;
33838
+ color: rgba(44, 56, 82, 0.6);
33839
+ }
33840
+ .E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
33841
+ margin-left: 8px;
33842
+ }
33843
+ .E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
33844
+ margin-left: 24px;
33845
+ }
33846
+
33847
+ .E_lht19u8 {
33848
+ width: 64px;
33849
+ height: 64px;
33850
+ display: flex;
33851
+ align-items: center;
33852
+ justify-content: center;
33853
+ position: relative;
33854
+ opacity: 0.2;
33855
+ }
33856
+
33857
+ .E_lk3gkp4 {
33858
+ position: absolute;
33859
+ width: 5px;
33860
+ height: 48px;
33861
+ left: 9.33px;
33862
+ top: 40.5px;
33863
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33864
+ border-radius: 5px;
33865
+ transform: rotate(-128deg);
33866
+ transform-origin: top left;
33867
+ animation: loading-indicator1 1100ms ease-out infinite;
33868
+ }
33869
+
33870
+ .E_ll4n94n {
33871
+ position: absolute;
33872
+ width: 5px;
33873
+ height: 48px;
33874
+ left: 40.8px;
33875
+ top: 8.4px;
33876
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33877
+ border-radius: 5px;
33878
+ transform: rotate(-8deg);
33879
+ transform-origin: top left;
33880
+ animation: loading-indicator2 1100ms ease-out infinite;
33881
+ }
33882
+
33883
+ .E_l17lbdo6 {
33884
+ position: absolute;
33885
+ width: 5px;
33886
+ height: 48px;
33887
+ left: 52.9px;
33888
+ top: 51.8px;
33889
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
33890
+ border-radius: 5px;
33891
+ transform: rotate(112deg);
33892
+ transform-origin: top left;
33893
+ animation: loading-indicator3 1100ms ease-out infinite;
33950
33894
  }
33951
33895
 
33952
33896
  .E_sjob3jg {
@@ -34097,58 +34041,178 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34097
34041
  display: flex;
34098
34042
  align-items: center;
34099
34043
  }
34100
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
34101
- min-height: auto;
34102
- white-space: nowrap;
34044
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
34045
+ min-height: auto;
34046
+ white-space: nowrap;
34047
+ }
34048
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34049
+ font-size: 13px;
34050
+ line-height: 20px;
34051
+ max-width: 100%;
34052
+ padding-right: 0;
34053
+ }
34054
+ .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
34055
+ background: rgba(0, 128, 255, 0.1);
34056
+ }
34057
+
34058
+ .E_h6l1tj4 {
34059
+ width: 100%;
34060
+ display: inline-flex;
34061
+ align-items: center;
34062
+ justify-content: center;
34063
+ column-gap: 4px;
34064
+ }
34065
+ .E_h6l1tj4 .step-item-prefix-container {
34066
+ display: inline-flex;
34067
+ align-items: center;
34068
+ width: 18px;
34069
+ height: 18px;
34070
+ color: rgba(44, 56, 82, 0.75);
34071
+ justify-content: center;
34072
+ }
34073
+
34074
+ .E_v18frne8 {
34075
+ width: 100%;
34076
+ display: flex;
34077
+ align-items: center;
34078
+ justify-content: center;
34079
+ column-gap: 6px;
34080
+ font-size: 13px;
34081
+ }
34082
+ .E_v18frne8 .step-item-prefix-container {
34083
+ display: inline-flex;
34084
+ align-items: center;
34085
+ min-width: 20px;
34086
+ min-height: 20px;
34087
+ color: rgba(44, 56, 82, 0.75);
34088
+ justify-content: center;
34089
+ }
34090
+
34091
+ .E_w7ob4th.outside-tag {
34092
+ padding-left: 0;
34093
+ }
34094
+ .E_w7ob4th.outside-tag .inside-tag {
34095
+ border-radius: 4px 0 0 4px;
34096
+ padding-right: 4px;
34097
+ margin-right: 4px;
34098
+ }
34099
+
34100
+ .E_l1ucdodl {
34101
+ margin: 0;
34102
+ border-radius: 20px;
34103
+ padding: 2px 10px;
34104
+ height: 22px;
34105
+ display: flex;
34106
+ align-items: center;
34107
+ }
34108
+ .E_l1ucdodl.ui-kit-status-legend.on-tint {
34109
+ color: #FFFFFF;
34110
+ }
34111
+ .E_l1ucdodl.tag-hover {
34112
+ cursor: pointer;
34113
+ }
34114
+ .E_l1ucdodl.ui-kit-status-legend {
34115
+ color: #00122e;
34116
+ }
34117
+ .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
34118
+ margin-right: 6px;
34119
+ }
34120
+ .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
34121
+ margin-left: 8px;
34122
+ color: rgba(44, 56, 82, 0.6);
34123
+ }
34124
+ .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
34125
+ color: #FFFFFF;
34126
+ }
34127
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
34128
+ background-color: #0080ff;
34129
+ }
34130
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
34131
+ background-color: #f0483e;
34132
+ }
34133
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
34134
+ background-color: #fea008;
34135
+ }
34136
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
34137
+ background-color: #00ba5d;
34138
+ }
34139
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
34140
+ background-color: #6b7d99;
34141
+ }
34142
+ .E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
34143
+ background-color: #7E41FF;
34144
+ }
34145
+
34146
+ .E_s1qj66nc {
34147
+ width: 8px;
34148
+ height: 8px;
34149
+ border-radius: 50%;
34150
+ display: inline-block;
34151
+ }
34152
+
34153
+ .E_s5x1boq {
34154
+ width: 8px;
34155
+ height: 8px;
34156
+ border-radius: 2px;
34157
+ display: inline-block;
34103
34158
  }
34104
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
34105
- font-size: 13px;
34106
- line-height: 20px;
34107
- max-width: 100%;
34108
- padding-right: 0;
34159
+
34160
+ .E_c1xm185 {
34161
+ color: rgba(44, 56, 82, 0.6);
34109
34162
  }
34110
- .E_v4tv3mf .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
34111
- background: rgba(0, 128, 255, 0.1);
34163
+
34164
+ .E_c1x5l5qc {
34165
+ flex: 1;
34112
34166
  }
34113
34167
 
34114
- .E_h6l1tj4 {
34115
- width: 100%;
34116
- display: inline-flex;
34168
+ .E_r77hffu {
34169
+ display: flex;
34117
34170
  align-items: center;
34171
+ justify-content: space-between;
34172
+ column-gap: 6px;
34173
+ }
34174
+
34175
+ .E_p1cmxsf7 {
34176
+ display: flex;
34177
+ flex-direction: column;
34118
34178
  justify-content: center;
34119
- column-gap: 4px;
34179
+ row-gap: var(--p1cmxsf7-0);
34120
34180
  }
34121
- .E_h6l1tj4 .step-item-prefix-container {
34122
- display: inline-flex;
34123
- align-items: center;
34124
- width: 18px;
34181
+ .E_p1cmxsf7 .antd5-progress-line {
34182
+ font-size: 0;
34183
+ margin-bottom: unset;
34184
+ margin-inline-end: unset;
34185
+ }
34186
+
34187
+ .E_slr2ynn {
34188
+ padding: 0 8px;
34125
34189
  height: 18px;
34126
- color: rgba(44, 56, 82, 0.75);
34127
- justify-content: center;
34128
34190
  }
34129
34191
 
34130
- .E_v18frne8 {
34131
- width: 100%;
34132
- display: flex;
34133
- align-items: center;
34134
- justify-content: center;
34135
- column-gap: 6px;
34136
- font-size: 13px;
34192
+ .E_m140wbb6 {
34193
+ padding: 2px 8px;
34194
+ height: 24px;
34137
34195
  }
34138
- .E_v18frne8 .step-item-prefix-container {
34139
- display: inline-flex;
34140
- align-items: center;
34141
- min-width: 20px;
34142
- min-height: 20px;
34143
- color: rgba(44, 56, 82, 0.75);
34144
- justify-content: center;
34196
+
34197
+ .E_t1fozc1i {
34198
+ margin: 0;
34145
34199
  }
34146
34200
 
34147
- .E_i1g85yz3 {
34201
+ .E_i1vxv4ln {
34148
34202
  margin-right: 4px;
34149
34203
  height: 16px;
34150
34204
  }
34151
34205
 
34206
+ .E_n1afl31m.ant-tag.ant-tag-gray {
34207
+ font-weight: 700;
34208
+ color: #00122e;
34209
+ background-color: rgba(237, 241, 250, 0.6);
34210
+ border: 1px solid rgba(211, 218, 235, 0.6);
34211
+ word-break: break-all;
34212
+ display: inline;
34213
+ white-space: normal;
34214
+ }
34215
+
34152
34216
  .E_t13ef470 {
34153
34217
  height: 100%;
34154
34218
  }
@@ -34179,91 +34243,204 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34179
34243
  background: rgba(163, 180, 204, 0.18);
34180
34244
  }
34181
34245
 
34182
- .E_l1ucdodl {
34183
- margin: 0;
34184
- border-radius: 20px;
34185
- padding: 2px 10px;
34186
- height: 22px;
34187
- display: flex;
34188
- align-items: center;
34246
+ .E_i1g85yz3 {
34247
+ margin-right: 4px;
34248
+ height: 16px;
34189
34249
  }
34190
- .E_l1ucdodl.ui-kit-status-legend.on-tint {
34191
- color: #FFFFFF;
34250
+
34251
+ .E_t1dtlqs1 {
34252
+ margin-bottom: 4px;
34253
+ color: rgba(44, 56, 82, 0.6);
34192
34254
  }
34193
- .E_l1ucdodl.tag-hover {
34194
- cursor: pointer;
34255
+
34256
+ .E_s1ese5oy {
34257
+ color: rgba(44, 56, 82, 0.6);
34258
+ line-height: 32px;
34259
+ height: 32px;
34260
+ margin-bottom: 0;
34195
34261
  }
34196
- .E_l1ucdodl.ui-kit-status-legend {
34262
+ .E_s1ese5oy.primary, .E_s1ese5oy.info {
34263
+ color: #0080ff;
34264
+ }
34265
+ .E_s1ese5oy.warning {
34266
+ color: #ffa500;
34267
+ }
34268
+ .E_s1ese5oy.success {
34269
+ color: #00ba5d;
34270
+ }
34271
+ .E_s1ese5oy.danger, .E_s1ese5oy.error {
34272
+ color: #f0483e;
34273
+ }
34274
+ .E_s1ese5oy.normal {
34275
+ color: rgba(44, 56, 82, 0.6);
34276
+ }
34277
+
34278
+ .E_b1ibis43 {
34279
+ margin-bottom: 0;
34197
34280
  color: #00122e;
34198
34281
  }
34199
- .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
34282
+
34283
+ .E_b11xxjd2 {
34284
+ line-height: 32px;
34200
34285
  margin-right: 6px;
34201
34286
  }
34202
- .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
34203
- margin-left: 8px;
34287
+
34288
+ .E_bsub5bw.with-description {
34289
+ height: 24px;
34290
+ flex: 1;
34291
+ position: relative;
34292
+ top: -7px;
34293
+ }
34294
+ .E_bsub5bw p {
34295
+ width: 100%;
34296
+ overflow: hidden;
34297
+ text-overflow: ellipsis;
34298
+ white-space: nowrap;
34299
+ }
34300
+
34301
+ .E_tmoyoag {
34302
+ border: 1px solid rgba(211, 218, 235, 0.6);
34303
+ border-radius: 8px;
34304
+ overflow: auto;
34305
+ }
34306
+ .E_tmoyoag .ant-list {
34307
+ position: relative;
34308
+ }
34309
+ .E_tmoyoag .ant-list .ant-list-item:last-child {
34310
+ border-bottom: none;
34311
+ }
34312
+ .E_tmoyoag .ant-list .eagle-table-form-header {
34313
+ position: sticky;
34314
+ top: 0;
34315
+ z-index: 2;
34316
+ display: flex;
34317
+ padding: 8px;
34318
+ flex-wrap: nowrap;
34319
+ justify-content: flex-start;
34320
+ background: #f2f5fa;
34321
+ font-size: 14px;
34204
34322
  color: rgba(44, 56, 82, 0.6);
34323
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
34205
34324
  }
34206
- .E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
34207
- color: #FFFFFF;
34325
+ .E_tmoyoag .ant-list .eagle-table-form-header {
34326
+ align-items: inherit;
34208
34327
  }
34209
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
34210
- background-color: #0080ff;
34328
+ .E_tmoyoag .ant-list .eagle-table-form-header .eagle-table-form-cell > p {
34329
+ margin-bottom: 0;
34211
34330
  }
34212
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
34213
- background-color: #f0483e;
34331
+ .E_tmoyoag .ant-list .eagle-table-form-row {
34332
+ display: flex;
34333
+ justify-content: flex-start;
34334
+ align-items: flex-start;
34335
+ flex-wrap: wrap;
34336
+ padding: 8px;
34337
+ border: none;
34214
34338
  }
34215
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
34216
- background-color: #fea008;
34339
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-description {
34340
+ flex-basis: 100%;
34341
+ margin: 12px 0 0;
34342
+ order: 99;
34343
+ color: rgba(44, 56, 82, 0.6);
34217
34344
  }
34218
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
34219
- background-color: #00ba5d;
34345
+ .E_tmoyoag .ant-list .eagle-table-form-row .row-error-message {
34346
+ color: #f0483e;
34347
+ flex-basis: 100%;
34348
+ order: 98;
34349
+ margin: 12px 0 0;
34220
34350
  }
34221
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
34222
- background-color: #6b7d99;
34351
+ .E_tmoyoag .ant-list .eagle-table-form-row:hover {
34352
+ background-color: rgba(237, 241, 250, 0.6);
34223
34353
  }
34224
- .E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
34225
- background-color: #7E41FF;
34354
+ .E_tmoyoag .ant-list .eagle-table-form-row.isDragging {
34355
+ background-color: rgba(0, 136, 255, 0.1);
34356
+ }
34357
+ .E_tmoyoag .ant-list .eagle-table-form-cell {
34358
+ flex: 1 0 0;
34359
+ overflow: hidden;
34360
+ }
34361
+ .E_tmoyoag .ant-list .eagle-table-form-cell .cell-description {
34362
+ color: rgba(44, 56, 82, 0.6);
34363
+ margin: 0;
34364
+ }
34365
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-center > * {
34366
+ text-align: center;
34367
+ }
34368
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
34369
+ text-align: center;
34370
+ }
34371
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-left > * {
34372
+ text-align: left;
34373
+ }
34374
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content > * {
34375
+ text-align: left;
34376
+ }
34377
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-right > * {
34378
+ text-align: right;
34379
+ }
34380
+ .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content, .E_tmoyoag .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content > * {
34381
+ text-align: right;
34382
+ }
34383
+ .E_tmoyoag .ant-list .eagle-table-form-cell:not(:last-of-type) {
34384
+ margin-right: 8px;
34385
+ }
34386
+ .E_tmoyoag .ant-list .ant-list-item-action {
34387
+ padding: 4px;
34388
+ width: 24px;
34389
+ height: 24px;
34390
+ overflow: hidden;
34391
+ }
34392
+ .E_tmoyoag .ant-list .ant-list-item-action li {
34393
+ padding: 0;
34394
+ }
34395
+ .E_tmoyoag .ant-list .delete-row-icon.disabled {
34396
+ cursor: not-allowed;
34397
+ opacity: 0.5;
34398
+ }
34399
+ .E_tmoyoag .ant-list.size-default .ant-list-item-action {
34400
+ margin: 0;
34401
+ }
34402
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input,
34403
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
34404
+ border-radius: 5px;
34405
+ font-size: 12px;
34226
34406
  }
34227
-
34228
- .E_s1qj66nc {
34229
- width: 8px;
34230
- height: 8px;
34231
- border-radius: 50%;
34232
- display: inline-block;
34407
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
34408
+ font-size: inherit;
34233
34409
  }
34234
-
34235
- .E_s5x1boq {
34236
- width: 8px;
34237
- height: 8px;
34238
- border-radius: 2px;
34239
- display: inline-block;
34410
+ .E_tmoyoag .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
34411
+ min-height: 24px;
34412
+ font-size: 12px;
34413
+ position: relative;
34240
34414
  }
34241
-
34242
- .E_c1xm185 {
34243
- color: rgba(44, 56, 82, 0.6);
34415
+ .E_tmoyoag.row-split-by-border .eagle-table-form-row {
34416
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
34244
34417
  }
34245
-
34246
- .E_c1x5l5qc {
34247
- flex: 1;
34418
+ .E_tmoyoag.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
34419
+ background-color: rgba(237, 241, 250, 0.6);
34248
34420
  }
34249
34421
 
34250
- .E_r77hffu {
34422
+ .E_a138syjm {
34251
34423
  display: flex;
34252
34424
  align-items: center;
34253
- justify-content: space-between;
34254
- column-gap: 6px;
34425
+ gap: 8px;
34255
34426
  }
34256
-
34257
- .E_p1cmxsf7 {
34258
- display: flex;
34259
- flex-direction: column;
34260
- justify-content: center;
34261
- row-gap: var(--p1cmxsf7-0);
34427
+ .E_a138syjm button.ant-btn {
34428
+ padding: 2px 8px;
34429
+ height: 24px;
34262
34430
  }
34263
- .E_p1cmxsf7 .antd5-progress-line {
34264
- font-size: 0;
34265
- margin-bottom: unset;
34266
- margin-inline-end: unset;
34431
+ .E_a138syjm > span.maximum-desc {
34432
+ display: none;
34433
+ color: rgba(44, 56, 82, 0.6);
34434
+ }
34435
+ .E_a138syjm > span.maximum-desc.disabled {
34436
+ display: inline;
34437
+ }
34438
+
34439
+ .E_d77i8u0 {
34440
+ width: 24px;
34441
+ height: 24px;
34442
+ padding: 4px;
34443
+ margin-right: 8px;
34267
34444
  }
34268
34445
 
34269
34446
  .E_m11nzl2x {
@@ -34669,10 +34846,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34669
34846
  background-color: #E07F00;
34670
34847
  }
34671
34848
 
34672
- .E_b1jaupqb {
34673
- color: #F0483E;
34674
- }
34675
-
34676
34849
  .E_t59qhqp {
34677
34850
  padding: 0px;
34678
34851
  padding-top: 5px;
@@ -34721,6 +34894,10 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
34721
34894
  color: #00122E;
34722
34895
  }
34723
34896
 
34897
+ .E_b1jaupqb {
34898
+ color: #F0483E;
34899
+ }
34900
+
34724
34901
  .E_icab5o7 {
34725
34902
  --modal-to-viewport-margin: 10px;
34726
34903
  --modal-body-padding-bottom: 40px;
@@ -35147,10 +35324,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35147
35324
  background: rgba(225, 230, 241, 0.6);
35148
35325
  }
35149
35326
 
35150
- .E_t1616y1o {
35151
- color: #fff;
35152
- }
35153
-
35154
35327
  .E_t1gvlxt5 {
35155
35328
  min-width: 0;
35156
35329
  flex: 1;
@@ -35165,265 +35338,88 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
35165
35338
  }
35166
35339
  .E_t1gvlxt5 .progress-desc {
35167
35340
  flex: 1;
35168
- max-width: fit-content;
35169
- }
35170
-
35171
- .E_a1ji6r68 {
35172
- display: flex;
35173
- align-items: center;
35174
- column-gap: var(--a1ji6r68-0);
35175
- }
35176
-
35177
- .E_f16blduf.ant-form-item {
35178
- margin-bottom: 0;
35179
- }
35180
- .E_f16blduf .ant-form-item-explain {
35181
- display: none;
35182
- min-height: 18px;
35183
- margin-top: 5px;
35184
- font-family: "Inter";
35185
- font-weight: 400;
35186
- font-size: 12px;
35187
- line-height: 18px;
35188
- }
35189
- .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
35190
- white-space: pre-wrap;
35191
- }
35192
- .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
35193
- display: block;
35194
- }
35195
-
35196
- .E_a9y3flr {
35197
- margin-left: 8px;
35198
- }
35199
-
35200
- .E_a1njc627 {
35201
- font-size: 12px;
35202
- color: #00122e;
35203
- }
35204
-
35205
- .E_d1u4ndxc {
35206
- color: rgba(44, 56, 82, 0.7490196078);
35207
- font-size: 12px;
35208
- }
35209
-
35210
- .E_f6xb0iv {
35211
- min-width: 0;
35212
- flex: 1;
35213
- }
35214
-
35215
- .E_b1dhu7ov.antd5-progress {
35216
- width: 220px;
35217
- }
35218
-
35219
- .E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
35220
- content: "";
35221
- display: block;
35222
- height: 8px;
35223
- background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
35224
- animation: loading 1600ms ease-out infinite;
35225
- opacity: 1;
35226
- }
35227
- @keyframes loading {
35228
- from {
35229
- transform: translateX(-100%);
35230
- }
35231
- to {
35232
- transform: translateX(100%);
35233
- }
35234
- }
35235
-
35236
- .E_i14c7jc8 {
35237
- color: var(--i14c7jc8-0);
35238
- }
35239
-
35240
- .E_i1ibuolf {
35241
- display: flex;
35242
- align-items: center;
35243
- column-gap: 4px;
35244
- font-size: 12px;
35245
- color: rgba(44, 56, 82, 0.7490196078);
35246
- }
35247
-
35248
- .E_gmyahx3 {
35249
- cursor: pointer;
35250
- }
35251
- .E_gmyahx3 .link-text {
35252
- color: rgba(0, 21, 64, 0.3);
35253
- }
35254
- .E_gmyahx3:hover .link-text {
35255
- color: #0080ff;
35256
- }
35257
-
35258
- .E_c18bcrac {
35259
- display: inline-block;
35260
- width: 100%;
35261
- }
35262
- .E_c18bcrac .recharts-wrapper {
35263
- margin-left: 4px;
35264
- }
35265
-
35266
- .E_cro7kg2 {
35267
- padding: 4px;
35268
- }
35269
- .E_cro7kg2 .unit {
35270
- color: white;
35271
- }
35272
-
35273
- .E_c14wcxf0 {
35274
- display: flex;
35275
- justify-content: space-between;
35276
- align-items: center;
35277
- font-size: 13px;
35278
- line-height: 24px;
35279
- color: #cccccc;
35280
- white-space: nowrap;
35281
- }
35282
- .E_c14wcxf0 label {
35283
- margin-right: 32px;
35284
- }
35285
-
35286
- .E_coy29mj.E_c14wcxf0 {
35287
- font-weight: bold;
35288
- color: white;
35289
- }
35290
-
35291
- .E_s11212zy {
35292
- width: 8px;
35293
- height: 8px;
35294
- border-radius: 2px;
35295
- display: inline-block;
35296
- background: var(--s11212zy-0);
35297
- border: 1px solid #fff;
35298
- box-sizing: content-box;
35299
- margin-right: 6px;
35300
- }
35301
-
35302
- .E_p1lyky6c > :first-child {
35303
- font-weight: bold;
35304
- color: white;
35305
- margin-right: 4px;
35306
- }
35307
-
35308
- span.E_tqjc4ui {
35309
- margin: 0 2px;
35310
- }
35311
-
35312
- .E_s1iv0tp1 .enabled-switch {
35313
- display: flex;
35314
- align-items: center;
35315
- }
35316
- .E_s1iv0tp1 .enabled-text {
35317
- margin-right: 8px;
35318
- }
35319
-
35320
- .E_t1sqg15u {
35321
- background: white;
35322
- }
35323
- .E_t1sqg15u.inline .table-row {
35324
- flex-direction: column;
35325
- }
35326
- .E_t1sqg15u.inline .table-row > label {
35327
- padding: 0 16px 7px 0;
35328
- }
35329
- .E_t1sqg15u.has-border .table-header {
35330
- border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35331
- }
35332
- .E_t1sqg15u.has-border .hiddenBorder {
35333
- border-top: none !important;
35334
- }
35335
- .E_t1sqg15u.has-border .table-row + .table-row {
35336
- border-top: 1px solid rgba(225, 230, 241, 0.6);
35337
- }
35338
- .E_t1sqg15u.has-border .table-row:last-of-type {
35339
- padding-bottom: 0;
35340
- }
35341
- .E_t1sqg15u.align-right .content {
35342
- text-align: right;
35343
- }
35344
- .E_t1sqg15u .uuid-row {
35345
- display: flex;
35346
- justify-content: space-between;
35347
- }
35348
- .E_t1sqg15u .uuid-row .id-text {
35349
- white-space: nowrap;
35350
- overflow: hidden;
35351
- text-overflow: ellipsis;
35341
+ max-width: fit-content;
35352
35342
  }
35353
35343
 
35354
- .E_t4zczcp {
35344
+ .E_a1ji6r68 {
35355
35345
  display: flex;
35356
- justify-content: space-between;
35357
35346
  align-items: center;
35358
- padding: 8px;
35359
- min-height: 32px;
35360
- }
35361
- .E_t4zczcp .table-title {
35362
- color: rgba(44, 56, 82, 0.6);
35363
- font-weight: 600;
35364
- font-size: 12px;
35365
- line-height: 8px;
35366
- }
35367
- .E_t4zczcp .edit-icon {
35368
- font-size: 16px;
35369
- color: rgba(10, 37, 85, 0.6);
35370
- cursor: pointer;
35347
+ column-gap: var(--a1ji6r68-0);
35371
35348
  }
35372
35349
 
35373
- .E_t1s7goww {
35374
- font-size: 12px;
35375
- line-height: 18px;
35350
+ .E_t1616y1o {
35351
+ color: #fff;
35376
35352
  }
35377
35353
 
35378
- .E_t93e4cf {
35379
- display: flex;
35380
- padding: 8px 0;
35381
- color: #2d3a56;
35354
+ .E_f16blduf.ant-form-item {
35355
+ margin-bottom: 0;
35382
35356
  }
35383
- .E_t93e4cf .hidden {
35357
+ .E_f16blduf .ant-form-item-explain {
35384
35358
  display: none;
35359
+ min-height: 18px;
35360
+ margin-top: 5px;
35361
+ font-family: "Inter";
35362
+ font-weight: 400;
35363
+ font-size: 12px;
35364
+ line-height: 18px;
35385
35365
  }
35386
- .E_t93e4cf .ant-btn.ant-btn-link {
35387
- height: auto;
35388
- }
35389
- .E_t93e4cf .content {
35390
- overflow: hidden;
35391
- overflow-x: auto;
35392
- width: 100%;
35366
+ .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
35393
35367
  white-space: pre-wrap;
35394
35368
  }
35395
- .E_t93e4cf .content .ant-btn {
35396
- white-space: pre-wrap;
35397
- text-align: left;
35369
+ .E_f16blduf.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
35370
+ display: block;
35398
35371
  }
35399
- .E_t93e4cf .content .unit-chart {
35400
- justify-content: flex-start;
35372
+
35373
+ .E_a9y3flr {
35374
+ margin-left: 8px;
35401
35375
  }
35402
35376
 
35403
- .E_rhz2uv5 {
35404
- width: var(--rhz2uv5-0);
35405
- flex-shrink: 0;
35406
- color: rgba(44, 56, 82, 0.6);
35407
- padding-right: 12px;
35377
+ .E_a1njc627 {
35378
+ font-size: 12px;
35379
+ color: #00122e;
35408
35380
  }
35409
35381
 
35410
- .E_n12mqh7z {
35411
- display: flex;
35412
- align-items: center;
35382
+ .E_d1u4ndxc {
35383
+ color: rgba(44, 56, 82, 0.7490196078);
35413
35384
  font-size: 12px;
35414
- line-height: 18px;
35415
35385
  }
35416
- .E_n12mqh7z:not(:last-child) {
35417
- margin-bottom: 4px;
35386
+
35387
+ .E_f6xb0iv {
35388
+ min-width: 0;
35389
+ flex: 1;
35418
35390
  }
35419
35391
 
35420
- .E_tf5bynu {
35421
- margin: 0 3px;
35392
+ .E_b1dhu7ov.antd5-progress {
35393
+ width: 220px;
35422
35394
  }
35423
35395
 
35424
- .E_tcckoz1 {
35425
- max-height: 400px;
35426
- overflow: auto;
35396
+ .E_p1as1j2z .antd5-progress.antd5-progress-status-active .antd5-progress-bg::before {
35397
+ content: "";
35398
+ display: block;
35399
+ height: 8px;
35400
+ background: linear-gradient(90deg, #0080ff 0%, #9ecfff 50%, #0080ff 100%);
35401
+ animation: loading 1600ms ease-out infinite;
35402
+ opacity: 1;
35403
+ }
35404
+ @keyframes loading {
35405
+ from {
35406
+ transform: translateX(-100%);
35407
+ }
35408
+ to {
35409
+ transform: translateX(100%);
35410
+ }
35411
+ }
35412
+
35413
+ .E_i14c7jc8 {
35414
+ color: var(--i14c7jc8-0);
35415
+ }
35416
+
35417
+ .E_i1ibuolf {
35418
+ display: flex;
35419
+ align-items: center;
35420
+ column-gap: 4px;
35421
+ font-size: 12px;
35422
+ color: rgba(44, 56, 82, 0.7490196078);
35427
35423
  }
35428
35424
 
35429
35425
  .E_skwah65 {
@@ -35439,167 +35435,54 @@ span.E_tqjc4ui {
35439
35435
  margin-left: 1px;
35440
35436
  }
35441
35437
 
35442
- .E_wg1tsps {
35443
- display: flex;
35444
- align-items: center;
35445
- justify-content: flex-end;
35446
- }
35447
-
35448
- .E_b1ctd5xy {
35449
- display: flex;
35450
- align-items: center;
35451
- width: calc(100% - 40px);
35452
- }
35453
- .E_b1ctd5xy .chart {
35438
+ .E_c18bcrac {
35454
35439
  display: inline-block;
35455
35440
  width: 100%;
35456
35441
  }
35457
-
35458
- .E_u1p8acpn {
35459
- min-width: 40px;
35460
- }
35461
- .E_u1p8acpn .unit {
35462
- color: #00122e !important;
35442
+ .E_c18bcrac .recharts-wrapper {
35443
+ margin-left: 4px;
35463
35444
  }
35464
35445
 
35465
- .E_c1up1pdz {
35466
- width: 648px;
35467
- }
35468
- .E_c1up1pdz.active {
35469
- border-color: #0080ff;
35470
- }
35471
- .E_c1up1pdz.active > header {
35472
- background: rgba(0, 128, 255, 0.1);
35473
- }
35474
- .E_c1up1pdz .expand {
35475
- padding: 12px;
35476
- }
35477
- .E_c1up1pdz .field-item {
35478
- display: flex;
35479
- padding: 10px 0;
35480
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35481
- }
35482
- .E_c1up1pdz .field-item:last-child {
35483
- border-bottom: none;
35484
- padding-bottom: 0;
35485
- }
35486
- .E_c1up1pdz .field-item label {
35487
- line-height: 32px;
35488
- width: 100px;
35489
- color: rgba(62, 70, 82, 0.6);
35490
- }
35491
- .E_c1up1pdz .help {
35492
- color: rgba(62, 70, 82, 0.6);
35493
- margin-top: 5px;
35446
+ .E_cro7kg2 {
35447
+ padding: 4px;
35494
35448
  }
35495
- .E_c1up1pdz .ant-input-affix-wrapper,
35496
- .E_c1up1pdz .ant-picker {
35497
- width: 128px;
35449
+ .E_cro7kg2 .unit {
35450
+ color: white;
35498
35451
  }
35499
35452
 
35500
- .E_c156wh19 {
35453
+ .E_c14wcxf0 {
35501
35454
  display: flex;
35502
- align-items: center;
35503
35455
  justify-content: space-between;
35504
- word-break: keep-all;
35505
- }
35506
- .E_c156wh19 .title {
35507
- margin: 0 16px 0 8px;
35508
- }
35509
- .E_c156wh19 .retain {
35510
- color: rgba(129, 138, 153, 0.6);
35511
- }
35512
- .E_c156wh19 div.left {
35513
- flex: 1;
35514
- display: flex;
35515
- overflow: hidden;
35516
35456
  align-items: center;
35517
- justify-content: flex-start;
35457
+ font-size: 13px;
35458
+ line-height: 24px;
35459
+ color: #cccccc;
35518
35460
  white-space: nowrap;
35519
35461
  }
35520
- .E_c156wh19 div.left .title {
35521
- max-width: 100%;
35522
- overflow: hidden;
35523
- text-overflow: ellipsis;
35524
- }
35525
- .E_c156wh19 div.right {
35526
- display: flex;
35527
- align-items: center;
35528
- }
35529
- .E_c156wh19 .reverse {
35530
- display: flex;
35531
- flex-direction: row-reverse;
35532
- align-items: center;
35533
- }
35534
- .E_c156wh19 .reverse .ant-switch {
35535
- margin-left: 8px;
35536
- }
35537
- .E_c156wh19 .close {
35538
- padding-left: 14px;
35539
- margin-left: 14px;
35540
- border-left: 1px solid rgba(129, 138, 153, 0.6);
35541
- cursor: pointer;
35542
- }
35543
-
35544
- .E_m126spxy {
35545
- padding-bottom: 4px;
35546
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35547
- }
35548
- .E_m126spxy .ant-btn.ant-btn-link {
35549
- padding: 1px 10px;
35550
- color: rgba(62, 70, 82, 0.6);
35551
- border-radius: 4px;
35552
- }
35553
- .E_m126spxy .ant-btn.ant-btn-link.active {
35554
- background: rgba(0, 128, 255, 0.1);
35555
- color: #0096ff;
35556
- }
35557
-
35558
- .E_wpbf4pq {
35559
- padding: 10px 0;
35560
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35561
- }
35562
- .E_wpbf4pq .ant-input,
35563
- .E_wpbf4pq .ant-picker {
35564
- width: 80px;
35565
- margin: 0 9px;
35566
- text-align: center;
35567
- }
35568
- .E_wpbf4pq .options {
35569
- padding: 12px 0 12px 16px;
35570
- border-left: 2px solid rgba(129, 138, 153, 0.6);
35571
- margin: 5px 0 5px 8px;
35572
- }
35573
- .E_wpbf4pq .week-day-option,
35574
- .E_wpbf4pq .month-day-option {
35575
- background: #f5f7fa;
35576
- box-sizing: border-box;
35577
- border-radius: 16px;
35578
- margin-right: 8px;
35579
- }
35580
- .E_wpbf4pq .week-day-option:focus,
35581
- .E_wpbf4pq .month-day-option:focus {
35582
- color: inherit;
35583
- border-color: #d9d9d9;
35584
- }
35585
- .E_wpbf4pq .week-day-option.active {
35586
- background-color: #0096ff;
35587
- border-color: #0096ff;
35588
- color: #fff;
35462
+ .E_c14wcxf0 label {
35463
+ margin-right: 32px;
35589
35464
  }
35590
- .E_wpbf4pq .week-day-option.en-text {
35591
- width: 110px;
35592
- margin-top: 4px;
35465
+
35466
+ .E_coy29mj.E_c14wcxf0 {
35467
+ font-weight: bold;
35468
+ color: white;
35593
35469
  }
35594
- .E_wpbf4pq .month-day-option {
35595
- width: 32px;
35596
- padding: 0;
35597
- margin-bottom: 8px;
35470
+
35471
+ .E_s11212zy {
35472
+ width: 8px;
35473
+ height: 8px;
35474
+ border-radius: 2px;
35475
+ display: inline-block;
35476
+ background: var(--s11212zy-0);
35477
+ border: 1px solid #fff;
35478
+ box-sizing: content-box;
35479
+ margin-right: 6px;
35598
35480
  }
35599
- .E_wpbf4pq .month-day-option.active {
35600
- background-color: #0096ff;
35601
- border-color: #0096ff;
35602
- color: #fff;
35481
+
35482
+ .E_p1lyky6c > :first-child {
35483
+ font-weight: bold;
35484
+ color: white;
35485
+ margin-right: 4px;
35603
35486
  }
35604
35487
 
35605
35488
  .E_s1ebs0ra {
@@ -35762,6 +35645,179 @@ span.E_tqjc4ui {
35762
35645
  border-radius: 2px;
35763
35646
  }
35764
35647
 
35648
+ .E_gmyahx3 {
35649
+ cursor: pointer;
35650
+ }
35651
+ .E_gmyahx3 .link-text {
35652
+ color: rgba(0, 21, 64, 0.3);
35653
+ }
35654
+ .E_gmyahx3:hover .link-text {
35655
+ color: #0080ff;
35656
+ }
35657
+
35658
+ .E_c1up1pdz {
35659
+ width: 648px;
35660
+ }
35661
+ .E_c1up1pdz.active {
35662
+ border-color: #0080ff;
35663
+ }
35664
+ .E_c1up1pdz.active > header {
35665
+ background: rgba(0, 128, 255, 0.1);
35666
+ }
35667
+ .E_c1up1pdz .expand {
35668
+ padding: 12px;
35669
+ }
35670
+ .E_c1up1pdz .field-item {
35671
+ display: flex;
35672
+ padding: 10px 0;
35673
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35674
+ }
35675
+ .E_c1up1pdz .field-item:last-child {
35676
+ border-bottom: none;
35677
+ padding-bottom: 0;
35678
+ }
35679
+ .E_c1up1pdz .field-item label {
35680
+ line-height: 32px;
35681
+ width: 100px;
35682
+ color: rgba(62, 70, 82, 0.6);
35683
+ }
35684
+ .E_c1up1pdz .help {
35685
+ color: rgba(62, 70, 82, 0.6);
35686
+ margin-top: 5px;
35687
+ }
35688
+ .E_c1up1pdz .ant-input-affix-wrapper,
35689
+ .E_c1up1pdz .ant-picker {
35690
+ width: 128px;
35691
+ }
35692
+
35693
+ .E_c156wh19 {
35694
+ display: flex;
35695
+ align-items: center;
35696
+ justify-content: space-between;
35697
+ word-break: keep-all;
35698
+ }
35699
+ .E_c156wh19 .title {
35700
+ margin: 0 16px 0 8px;
35701
+ }
35702
+ .E_c156wh19 .retain {
35703
+ color: rgba(129, 138, 153, 0.6);
35704
+ }
35705
+ .E_c156wh19 div.left {
35706
+ flex: 1;
35707
+ display: flex;
35708
+ overflow: hidden;
35709
+ align-items: center;
35710
+ justify-content: flex-start;
35711
+ white-space: nowrap;
35712
+ }
35713
+ .E_c156wh19 div.left .title {
35714
+ max-width: 100%;
35715
+ overflow: hidden;
35716
+ text-overflow: ellipsis;
35717
+ }
35718
+ .E_c156wh19 div.right {
35719
+ display: flex;
35720
+ align-items: center;
35721
+ }
35722
+ .E_c156wh19 .reverse {
35723
+ display: flex;
35724
+ flex-direction: row-reverse;
35725
+ align-items: center;
35726
+ }
35727
+ .E_c156wh19 .reverse .ant-switch {
35728
+ margin-left: 8px;
35729
+ }
35730
+ .E_c156wh19 .close {
35731
+ padding-left: 14px;
35732
+ margin-left: 14px;
35733
+ border-left: 1px solid rgba(129, 138, 153, 0.6);
35734
+ cursor: pointer;
35735
+ }
35736
+
35737
+ .E_m126spxy {
35738
+ padding-bottom: 4px;
35739
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35740
+ }
35741
+ .E_m126spxy .ant-btn.ant-btn-link {
35742
+ padding: 1px 10px;
35743
+ color: rgba(62, 70, 82, 0.6);
35744
+ border-radius: 4px;
35745
+ }
35746
+ .E_m126spxy .ant-btn.ant-btn-link.active {
35747
+ background: rgba(0, 128, 255, 0.1);
35748
+ color: #0096ff;
35749
+ }
35750
+
35751
+ .E_wpbf4pq {
35752
+ padding: 10px 0;
35753
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
35754
+ }
35755
+ .E_wpbf4pq .ant-input,
35756
+ .E_wpbf4pq .ant-picker {
35757
+ width: 80px;
35758
+ margin: 0 9px;
35759
+ text-align: center;
35760
+ }
35761
+ .E_wpbf4pq .options {
35762
+ padding: 12px 0 12px 16px;
35763
+ border-left: 2px solid rgba(129, 138, 153, 0.6);
35764
+ margin: 5px 0 5px 8px;
35765
+ }
35766
+ .E_wpbf4pq .week-day-option,
35767
+ .E_wpbf4pq .month-day-option {
35768
+ background: #f5f7fa;
35769
+ box-sizing: border-box;
35770
+ border-radius: 16px;
35771
+ margin-right: 8px;
35772
+ }
35773
+ .E_wpbf4pq .week-day-option:focus,
35774
+ .E_wpbf4pq .month-day-option:focus {
35775
+ color: inherit;
35776
+ border-color: #d9d9d9;
35777
+ }
35778
+ .E_wpbf4pq .week-day-option.active {
35779
+ background-color: #0096ff;
35780
+ border-color: #0096ff;
35781
+ color: #fff;
35782
+ }
35783
+ .E_wpbf4pq .week-day-option.en-text {
35784
+ width: 110px;
35785
+ margin-top: 4px;
35786
+ }
35787
+ .E_wpbf4pq .month-day-option {
35788
+ width: 32px;
35789
+ padding: 0;
35790
+ margin-bottom: 8px;
35791
+ }
35792
+ .E_wpbf4pq .month-day-option.active {
35793
+ background-color: #0096ff;
35794
+ border-color: #0096ff;
35795
+ color: #fff;
35796
+ }
35797
+
35798
+ span.E_tqjc4ui {
35799
+ margin: 0 2px;
35800
+ }
35801
+
35802
+ .E_n12mqh7z {
35803
+ display: flex;
35804
+ align-items: center;
35805
+ font-size: 12px;
35806
+ line-height: 18px;
35807
+ }
35808
+ .E_n12mqh7z:not(:last-child) {
35809
+ margin-bottom: 4px;
35810
+ }
35811
+
35812
+ .E_tf5bynu {
35813
+ margin: 0 3px;
35814
+ }
35815
+
35816
+ .E_tcckoz1 {
35817
+ max-height: 400px;
35818
+ overflow: auto;
35819
+ }
35820
+
35765
35821
  .E_ou7iq30 {
35766
35822
  overflow: hidden;
35767
35823
  text-overflow: ellipsis;
@@ -35789,133 +35845,94 @@ span.E_tqjc4ui {
35789
35845
  visibility: hidden;
35790
35846
  }
35791
35847
 
35792
- .E_s1at6qmn.ant-layout-sider {
35793
- background: #edf0f7;
35794
- padding: 32px 8px;
35795
- overflow: auto;
35848
+ .E_t1sqg15u {
35849
+ background: white;
35796
35850
  }
35797
- .E_s1at6qmn .ant-layout-sider-children {
35798
- display: flex;
35851
+ .E_t1sqg15u.inline .table-row {
35799
35852
  flex-direction: column;
35800
- justify-content: space-between;
35801
- }
35802
- .E_s1at6qmn footer {
35803
- display: flex;
35804
- }
35805
- .E_s1at6qmn .ant-menu {
35806
- background: #edf0f7;
35807
- }
35808
- .E_s1at6qmn .ant-menu a {
35809
- color: #00122e;
35810
- width: 180px;
35811
- overflow: hidden;
35812
- text-overflow: ellipsis;
35813
- }
35814
- .E_s1at6qmn .ant-menu-vertical {
35815
- margin-bottom: 24px;
35816
- }
35817
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
35818
- margin: 0;
35819
- }
35820
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
35821
- font-size: 12px;
35822
- padding: 0 8px 4px;
35823
- line-height: 18px;
35824
- }
35825
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
35826
- padding: 0;
35827
- }
35828
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
35829
- padding-bottom: 24px;
35830
35853
  }
35831
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
35832
- margin-bottom: 24px;
35833
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
35854
+ .E_t1sqg15u.inline .table-row > label {
35855
+ padding: 0 16px 7px 0;
35834
35856
  }
35835
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
35836
- transition: none;
35837
- display: flex;
35838
- align-items: center;
35839
- height: 32px;
35840
- line-height: 22px;
35841
- padding: 0 8px;
35857
+ .E_t1sqg15u.has-border .table-header {
35858
+ border-bottom: 1px solid rgba(225, 230, 241, 0.6);
35842
35859
  }
35843
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
35844
- margin-right: 12px;
35860
+ .E_t1sqg15u.has-border .hiddenBorder {
35861
+ border-top: none !important;
35845
35862
  }
35846
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
35847
- margin: 0;
35848
- margin-bottom: 2px;
35863
+ .E_t1sqg15u.has-border .table-row + .table-row {
35864
+ border-top: 1px solid rgba(225, 230, 241, 0.6);
35849
35865
  }
35850
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
35851
- background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
35852
- box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
35853
- border-radius: 6px;
35854
- color: #fff;
35866
+ .E_t1sqg15u.has-border .table-row:last-of-type {
35867
+ padding-bottom: 0;
35855
35868
  }
35856
- .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
35857
- color: #fff;
35869
+ .E_t1sqg15u.align-right .content {
35870
+ text-align: right;
35858
35871
  }
35859
- .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 {
35860
- background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
35861
- box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
35862
- border-radius: 6px;
35872
+ .E_t1sqg15u .uuid-row {
35873
+ display: flex;
35874
+ justify-content: space-between;
35863
35875
  }
35864
-
35865
- .E_s1wu0lms .ant-menu-item-group-title {
35876
+ .E_t1sqg15u .uuid-row .id-text {
35866
35877
  white-space: nowrap;
35867
- transition: all 0s;
35868
- }
35869
- .E_s1wu0lms.shrink {
35870
- transition: all 0s;
35871
35878
  overflow: hidden;
35872
- }
35873
- .E_s1wu0lms.shrink .ant-menu-item-group-title {
35874
- visibility: hidden;
35875
- }
35876
- .E_s1wu0lms.shrink .ant-menu-item {
35877
- width: 36px;
35878
- padding: 0 6px;
35879
+ text-overflow: ellipsis;
35879
35880
  }
35880
35881
 
35881
- .E_n1ugzfva {
35882
+ .E_t4zczcp {
35882
35883
  display: flex;
35883
- place-items: center;
35884
- width: 100% !important;
35885
- }
35886
- .E_n1ugzfva[disabled] {
35887
- color: rgba(0, 0, 0, 0.25) !important;
35888
- opacity: 1 !important;
35884
+ justify-content: space-between;
35885
+ align-items: center;
35886
+ padding: 8px;
35887
+ min-height: 32px;
35889
35888
  }
35890
- .E_n1ugzfva.ant-btn {
35891
- width: 100%;
35892
- color: #00122e;
35889
+ .E_t4zczcp .table-title {
35890
+ color: rgba(44, 56, 82, 0.6);
35891
+ font-weight: 600;
35892
+ font-size: 12px;
35893
+ line-height: 8px;
35893
35894
  }
35894
- .E_n1ugzfva .icon-wrapper {
35895
- margin-right: 12px;
35895
+ .E_t4zczcp .edit-icon {
35896
+ font-size: 16px;
35897
+ color: rgba(10, 37, 85, 0.6);
35898
+ cursor: pointer;
35896
35899
  }
35897
- .E_n1ugzfva .link-title {
35898
- flex: 1;
35899
- overflow: hidden;
35900
- white-space: nowrap;
35901
- text-overflow: ellipsis;
35902
- text-align: left;
35900
+
35901
+ .E_t1s7goww {
35902
+ font-size: 12px;
35903
+ line-height: 18px;
35903
35904
  }
35904
35905
 
35905
- .E_u15heuvq.content {
35906
- cursor: default !important;
35906
+ .E_t93e4cf {
35907
+ display: flex;
35908
+ padding: 8px 0;
35909
+ color: #2d3a56;
35907
35910
  }
35908
- .E_u15heuvq.content.link {
35909
- cursor: pointer !important;
35911
+ .E_t93e4cf .hidden {
35912
+ display: none;
35910
35913
  }
35911
- .E_u15heuvq.content.link:hover {
35912
- color: #0080ff;
35914
+ .E_t93e4cf .ant-btn.ant-btn-link {
35915
+ height: auto;
35913
35916
  }
35914
- .E_u15heuvq.content.black {
35915
- color: #00122e;
35917
+ .E_t93e4cf .content {
35918
+ overflow: hidden;
35919
+ overflow-x: auto;
35920
+ width: 100%;
35921
+ white-space: pre-wrap;
35916
35922
  }
35917
- .E_u15heuvq.content.gray {
35918
- color: rgba(44, 56, 82, 0.75);
35923
+ .E_t93e4cf .content .ant-btn {
35924
+ white-space: pre-wrap;
35925
+ text-align: left;
35926
+ }
35927
+ .E_t93e4cf .content .unit-chart {
35928
+ justify-content: flex-start;
35929
+ }
35930
+
35931
+ .E_rhz2uv5 {
35932
+ width: var(--rhz2uv5-0);
35933
+ flex-shrink: 0;
35934
+ color: rgba(44, 56, 82, 0.6);
35935
+ padding-right: 12px;
35919
35936
  }
35920
35937
 
35921
35938
  .E_t160l1cm {
@@ -36035,90 +36052,250 @@ span.E_tqjc4ui {
36035
36052
  .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title > .slash-arrow, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title > .slash-arrow {
36036
36053
  opacity: 0;
36037
36054
  }
36038
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
36039
- padding: 4px 16px;
36055
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item {
36056
+ padding: 4px 16px;
36057
+ height: 32px;
36058
+ border-radius: 6px 6px 0 0;
36059
+ }
36060
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
36061
+ padding-left: 0;
36062
+ }
36063
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item-medium.tab-menu-item.tab-menu-item-selected:first-child {
36064
+ padding-left: 16px;
36065
+ }
36066
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
36067
+ margin-left: 11px;
36068
+ height: 24px;
36069
+ }
36070
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
36071
+ padding: 0;
36072
+ }
36073
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
36074
+ padding: 4px 16px;
36075
+ }
36076
+ .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .sub-title, .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .main-title {
36077
+ padding: 4px 16px;
36078
+ }
36079
+ .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
36080
+ background: #fff;
36081
+ }
36082
+ .E_t160l1cm .tab-menu-item-light:active {
36083
+ color: #005ed1;
36084
+ }
36085
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
36086
+ background: #fff;
36087
+ color: #1d326c;
36088
+ }
36089
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
36090
+ color: rgba(45, 58, 86, 0.6);
36091
+ }
36092
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
36093
+ color: #1d326c;
36094
+ }
36095
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
36096
+ fill: #d8deeb;
36097
+ }
36098
+ .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
36099
+ fill: #1d326c;
36100
+ }
36101
+ .E_t160l1cm .tab-content {
36102
+ flex: 1;
36103
+ display: flex;
36104
+ flex-direction: column;
36105
+ }
36106
+ .E_t160l1cm.is-overview .tab-content {
36107
+ overflow: visible;
36108
+ }
36109
+
36110
+ .E_t14npdqr {
36111
+ max-width: 240px;
36112
+ animation: none;
36113
+ }
36114
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
36115
+ border: 1px solid #0080ff;
36116
+ padding: 0;
36117
+ }
36118
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
36119
+ margin: 0;
36120
+ height: 32px;
36121
+ line-height: 32px;
36122
+ font-size: 13px;
36123
+ padding: 0 10px;
36124
+ display: block;
36125
+ overflow: hidden;
36126
+ text-overflow: ellipsis;
36127
+ white-space: nowrap;
36128
+ }
36129
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
36130
+ content: " ";
36131
+ height: 1px;
36132
+ width: calc(100% + 10px);
36133
+ background: rgba(172, 186, 211, 0.6);
36134
+ display: block;
36135
+ }
36136
+ .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
36137
+ color: #0080ff;
36138
+ background: transparent;
36139
+ }
36140
+
36141
+ .E_u15heuvq.content {
36142
+ cursor: default !important;
36143
+ }
36144
+ .E_u15heuvq.content.link {
36145
+ cursor: pointer !important;
36146
+ }
36147
+ .E_u15heuvq.content.link:hover {
36148
+ color: #0080ff;
36149
+ }
36150
+ .E_u15heuvq.content.black {
36151
+ color: #00122e;
36152
+ }
36153
+ .E_u15heuvq.content.gray {
36154
+ color: rgba(44, 56, 82, 0.75);
36155
+ }
36156
+
36157
+ .E_s1at6qmn.ant-layout-sider {
36158
+ background: #edf0f7;
36159
+ padding: 32px 8px;
36160
+ overflow: auto;
36161
+ }
36162
+ .E_s1at6qmn .ant-layout-sider-children {
36163
+ display: flex;
36164
+ flex-direction: column;
36165
+ justify-content: space-between;
36166
+ }
36167
+ .E_s1at6qmn footer {
36168
+ display: flex;
36169
+ }
36170
+ .E_s1at6qmn .ant-menu {
36171
+ background: #edf0f7;
36172
+ }
36173
+ .E_s1at6qmn .ant-menu a {
36174
+ color: #00122e;
36175
+ width: 180px;
36176
+ overflow: hidden;
36177
+ text-overflow: ellipsis;
36178
+ }
36179
+ .E_s1at6qmn .ant-menu-vertical {
36180
+ margin-bottom: 24px;
36181
+ }
36182
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
36183
+ margin: 0;
36184
+ }
36185
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
36186
+ font-size: 12px;
36187
+ padding: 0 8px 4px;
36188
+ line-height: 18px;
36189
+ }
36190
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
36191
+ padding: 0;
36192
+ }
36193
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
36194
+ padding-bottom: 24px;
36195
+ }
36196
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
36197
+ margin-bottom: 24px;
36198
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
36199
+ }
36200
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item {
36201
+ transition: none;
36202
+ display: flex;
36203
+ align-items: center;
36040
36204
  height: 32px;
36041
- border-radius: 6px 6px 0 0;
36205
+ line-height: 22px;
36206
+ padding: 0 8px;
36042
36207
  }
36043
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
36044
- padding-left: 0;
36208
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
36209
+ margin-right: 12px;
36045
36210
  }
36046
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item-medium.tab-menu-item.tab-menu-item-selected:first-child {
36047
- padding-left: 16px;
36211
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
36212
+ margin: 0;
36213
+ margin-bottom: 2px;
36048
36214
  }
36049
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
36050
- margin-left: 11px;
36051
- height: 24px;
36215
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
36216
+ background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
36217
+ box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
36218
+ border-radius: 6px;
36219
+ color: #fff;
36052
36220
  }
36053
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
36054
- padding: 0;
36221
+ .E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
36222
+ color: #fff;
36055
36223
  }
36056
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
36057
- padding: 4px 16px;
36224
+ .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 {
36225
+ background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
36226
+ box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
36227
+ border-radius: 6px;
36058
36228
  }
36059
- .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .sub-title, .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .main-title {
36060
- padding: 4px 16px;
36229
+
36230
+ .E_s1wu0lms .ant-menu-item-group-title {
36231
+ white-space: nowrap;
36232
+ transition: all 0s;
36061
36233
  }
36062
- .E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
36063
- background: #fff;
36234
+ .E_s1wu0lms.shrink {
36235
+ transition: all 0s;
36236
+ overflow: hidden;
36064
36237
  }
36065
- .E_t160l1cm .tab-menu-item-light:active {
36066
- color: #005ed1;
36238
+ .E_s1wu0lms.shrink .ant-menu-item-group-title {
36239
+ visibility: hidden;
36067
36240
  }
36068
- .E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
36069
- background: #fff;
36070
- color: #1d326c;
36241
+ .E_s1wu0lms.shrink .ant-menu-item {
36242
+ width: 36px;
36243
+ padding: 0 6px;
36071
36244
  }
36072
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
36073
- color: rgba(45, 58, 86, 0.6);
36245
+
36246
+ .E_n1ugzfva {
36247
+ display: flex;
36248
+ place-items: center;
36249
+ width: 100% !important;
36074
36250
  }
36075
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
36076
- color: #1d326c;
36251
+ .E_n1ugzfva[disabled] {
36252
+ color: rgba(0, 0, 0, 0.25) !important;
36253
+ opacity: 1 !important;
36077
36254
  }
36078
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
36079
- fill: #d8deeb;
36255
+ .E_n1ugzfva.ant-btn {
36256
+ width: 100%;
36257
+ color: #00122e;
36080
36258
  }
36081
- .E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
36082
- fill: #1d326c;
36259
+ .E_n1ugzfva .icon-wrapper {
36260
+ margin-right: 12px;
36083
36261
  }
36084
- .E_t160l1cm .tab-content {
36262
+ .E_n1ugzfva .link-title {
36085
36263
  flex: 1;
36264
+ overflow: hidden;
36265
+ white-space: nowrap;
36266
+ text-overflow: ellipsis;
36267
+ text-align: left;
36268
+ }
36269
+
36270
+ .E_s1iv0tp1 .enabled-switch {
36086
36271
  display: flex;
36087
- flex-direction: column;
36272
+ align-items: center;
36088
36273
  }
36089
- .E_t160l1cm.is-overview .tab-content {
36090
- overflow: visible;
36274
+ .E_s1iv0tp1 .enabled-text {
36275
+ margin-right: 8px;
36091
36276
  }
36092
36277
 
36093
- .E_t14npdqr {
36094
- max-width: 240px;
36095
- animation: none;
36278
+ .E_wg1tsps {
36279
+ display: flex;
36280
+ align-items: center;
36281
+ justify-content: flex-end;
36096
36282
  }
36097
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu {
36098
- border: 1px solid #0080ff;
36099
- padding: 0;
36283
+
36284
+ .E_b1ctd5xy {
36285
+ display: flex;
36286
+ align-items: center;
36287
+ width: calc(100% - 40px);
36100
36288
  }
36101
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
36102
- margin: 0;
36103
- height: 32px;
36104
- line-height: 32px;
36105
- font-size: 13px;
36106
- padding: 0 10px;
36107
- display: block;
36108
- overflow: hidden;
36109
- text-overflow: ellipsis;
36110
- white-space: nowrap;
36289
+ .E_b1ctd5xy .chart {
36290
+ display: inline-block;
36291
+ width: 100%;
36111
36292
  }
36112
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
36113
- content: " ";
36114
- height: 1px;
36115
- width: calc(100% + 10px);
36116
- background: rgba(172, 186, 211, 0.6);
36117
- display: block;
36293
+
36294
+ .E_u1p8acpn {
36295
+ min-width: 40px;
36118
36296
  }
36119
- .E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
36120
- color: #0080ff;
36121
- background: transparent;
36297
+ .E_u1p8acpn .unit {
36298
+ color: #00122e !important;
36122
36299
  }
36123
36300
 
36124
36301
  .E_cyms3br {
@@ -36196,6 +36373,12 @@ span.E_tqjc4ui {
36196
36373
  justify-content: center;
36197
36374
  }
36198
36375
 
36376
+ .E_h1ol2wl7 {
36377
+ font-weight: bold;
36378
+ background-color: unset;
36379
+ padding: unset;
36380
+ }
36381
+
36199
36382
  .E_i5w779o {
36200
36383
  padding: 8px 0;
36201
36384
  }
@@ -36237,12 +36420,6 @@ span.E_tqjc4ui {
36237
36420
  color: rgba(0, 21, 64, 0.3);
36238
36421
  }
36239
36422
 
36240
- .E_h1ol2wl7 {
36241
- font-weight: bold;
36242
- background-color: unset;
36243
- padding: unset;
36244
- }
36245
-
36246
36423
  .E_kr6am0s .ant-modal-body {
36247
36424
  padding: 60px 128px;
36248
36425
  }
@@ -36330,50 +36507,6 @@ span.E_tqjc4ui {
36330
36507
  }
36331
36508
  }
36332
36509
 
36333
- .E_c14ouk5o {
36334
- width: 100%;
36335
- height: 100%;
36336
- display: flex;
36337
- font-size: 12px;
36338
- line-height: 18px;
36339
- padding: 8px 0;
36340
- box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
36341
- }
36342
- .E_c14ouk5o:last-of-type {
36343
- box-shadow: none;
36344
- padding-bottom: 0;
36345
- }
36346
- .E_c14ouk5o.collapsed {
36347
- flex-direction: column;
36348
- }
36349
- .E_c14ouk5o.collapsed .collapsed-content {
36350
- display: flex;
36351
- }
36352
- .E_c14ouk5o.collapsed .collapsed-content > span {
36353
- flex: 1;
36354
- display: flex;
36355
- justify-content: space-between;
36356
- }
36357
- .E_c14ouk5o.collapsed .collapsed-content > span .ant-btn {
36358
- height: auto;
36359
- }
36360
- .E_c14ouk5o.collapsed .extra-content {
36361
- margin-left: 162px;
36362
- }
36363
- .E_c14ouk5o .col-label {
36364
- width: 216px;
36365
- color: rgba(44, 56, 82, 0.6);
36366
- margin-right: 12px;
36367
- flex-shrink: 0;
36368
- }
36369
- .E_c14ouk5o .col-content {
36370
- color: #2d3a56;
36371
- /* make btn link in info row have the same height as normal text */
36372
- }
36373
- .E_c14ouk5o .col-content .ant-btn.ant-btn-link {
36374
- height: auto;
36375
- }
36376
-
36377
36510
  .E_c1kchka8 {
36378
36511
  height: 100%;
36379
36512
  width: 100%;
@@ -36866,6 +36999,59 @@ span.E_tqjc4ui {
36866
36999
  padding: 0;
36867
37000
  }
36868
37001
 
37002
+ .E_cevhqx7 {
37003
+ color: #00122e;
37004
+ }
37005
+
37006
+ .E_snbqlt4 {
37007
+ margin-top: 8px;
37008
+ color: rgba(44, 56, 82, 0.6);
37009
+ }
37010
+
37011
+ .E_c14ouk5o {
37012
+ width: 100%;
37013
+ height: 100%;
37014
+ display: flex;
37015
+ font-size: 12px;
37016
+ line-height: 18px;
37017
+ padding: 8px 0;
37018
+ box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
37019
+ }
37020
+ .E_c14ouk5o:last-of-type {
37021
+ box-shadow: none;
37022
+ padding-bottom: 0;
37023
+ }
37024
+ .E_c14ouk5o.collapsed {
37025
+ flex-direction: column;
37026
+ }
37027
+ .E_c14ouk5o.collapsed .collapsed-content {
37028
+ display: flex;
37029
+ }
37030
+ .E_c14ouk5o.collapsed .collapsed-content > span {
37031
+ flex: 1;
37032
+ display: flex;
37033
+ justify-content: space-between;
37034
+ }
37035
+ .E_c14ouk5o.collapsed .collapsed-content > span .ant-btn {
37036
+ height: auto;
37037
+ }
37038
+ .E_c14ouk5o.collapsed .extra-content {
37039
+ margin-left: 162px;
37040
+ }
37041
+ .E_c14ouk5o .col-label {
37042
+ width: 216px;
37043
+ color: rgba(44, 56, 82, 0.6);
37044
+ margin-right: 12px;
37045
+ flex-shrink: 0;
37046
+ }
37047
+ .E_c14ouk5o .col-content {
37048
+ color: #2d3a56;
37049
+ /* make btn link in info row have the same height as normal text */
37050
+ }
37051
+ .E_c14ouk5o .col-content .ant-btn.ant-btn-link {
37052
+ height: auto;
37053
+ }
37054
+
36869
37055
  .E_c1ss4prm {
36870
37056
  color: rgba(44, 56, 82, 0.6);
36871
37057
  }
@@ -36915,13 +37101,4 @@ span.E_tqjc4ui {
36915
37101
  height: 1px;
36916
37102
  background: #e4e9f2;
36917
37103
  margin: 16px 0;
36918
- }
36919
-
36920
- .E_cevhqx7 {
36921
- color: #00122e;
36922
- }
36923
-
36924
- .E_snbqlt4 {
36925
- margin-top: 8px;
36926
- color: rgba(44, 56, 82, 0.6);
36927
37104
  }