@cloudtower/eagle 0.27.2-alpha.0 → 0.27.2-calendar

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 (36) hide show
  1. package/dist/components/Calendar/index.d.ts +3 -0
  2. package/dist/components/Fields/FieldsString/FieldsString.stories.d.ts +1 -1
  3. package/dist/components/I18nNameTag/index.d.ts +2 -8
  4. package/dist/components/Loading/style.d.ts +4 -0
  5. package/dist/components/Metric/metric.d.ts +1 -1
  6. package/dist/components/Tag/Tag.stories.d.ts +2 -2
  7. package/dist/components/Tag/style.d.ts +1 -0
  8. package/dist/components.css +1031 -1071
  9. package/dist/core/StepProgress/StepProgress.stories.d.ts +8 -0
  10. package/dist/core/StepProgress/index.d.ts +3 -0
  11. package/dist/coreX/CronCalendar/CronCalendar.stories.d.ts +6 -0
  12. package/dist/coreX/CronCalendar/index.d.ts +4 -0
  13. package/dist/coreX/CronPlan/CronPlan.stories.d.ts +9 -0
  14. package/dist/coreX/CronPlan/index.d.ts +18 -0
  15. package/dist/coreX/SwitchWithText/SwitchWithText.stories.d.ts +9 -0
  16. package/dist/coreX/SwitchWithText/__tests__/h5_css.test.d.ts +1 -0
  17. package/dist/coreX/SwitchWithText/index.d.ts +4 -0
  18. package/dist/coreX/common/getCalendarTitle.d.ts +2 -0
  19. package/dist/esm/index.js +3802 -2635
  20. package/dist/esm/stats1.html +1 -1
  21. package/dist/spec/base.d.ts +50 -9
  22. package/dist/spec/type.d.ts +6 -0
  23. package/dist/style.css +1448 -1488
  24. package/dist/umd/index.js +3770 -2604
  25. package/dist/umd/stats1.html +1 -1
  26. package/dist/utils/__test__/compute.spec.d.ts +1 -0
  27. package/dist/utils/__test__/cron-time.spec.d.ts +1 -0
  28. package/dist/utils/__test__/time.spec.d.ts +1 -0
  29. package/dist/utils/compute.d.ts +1 -0
  30. package/dist/utils/cron-time.d.ts +65 -0
  31. package/dist/utils/icon.d.ts +2 -1
  32. package/dist/utils/index.d.ts +3 -0
  33. package/dist/utils/time.d.ts +25 -0
  34. package/dist/variables.scss +2 -0
  35. package/package.json +6 -6
  36. package/dist/components/images/index.d.ts +0 -15
package/dist/style.css CHANGED
@@ -28320,102 +28320,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
28320
28320
  transform: rotate(360deg);
28321
28321
  }
28322
28322
  }
28323
- /* // basic */
28324
- /* FishEye Color Variables and Functions */
28325
- /*
28326
- --------------------------- Primary Color ---------------------------
28327
- */
28328
- /*
28329
- ---------------------------When necessary to add at any time---------------------------
28330
- */
28331
- /* computed */
28332
- /* blue */
28333
- /* green */
28334
- /* yellow */
28335
- /* red */
28336
- /* purple */
28337
- /* palette global token*/
28338
- /* color opaque */
28339
- /* color transparent */
28340
- /* blue transparent */
28341
- /* green transparent */
28342
- /* yellow transparent */
28343
- /* red transparent */
28344
- /* gray transparent */
28345
- /* white transparent */
28346
- /* gradient opaque */
28347
- /* blue radial gradient */
28348
- /* blue linear gradient */
28349
- /* green radial gradient */
28350
- /* yellow radial gradient */
28351
- /* red radial gradient */
28352
- /* gray radial gradient */
28353
- /* white to gray radial gradient */
28354
- /* white to gray linear gradient */
28355
- /* gradient transparent */
28356
- /* secondary palette */
28357
- /* purple radial gradient */
28358
- /* refine alias color */
28359
- /* text */
28360
- /* link */
28361
- /* fill */
28362
- /* fill element */
28363
- /* fill interaction */
28364
- /* stroke */
28365
- /* background */
28366
- /* dim */
28367
- /* box shadow */
28368
- /* fisheye */
28369
- /* z-index */
28370
- .loading {
28371
- width: 64px;
28372
- height: 64px;
28373
- display: flex;
28374
- align-items: center;
28375
- justify-content: center;
28376
- position: relative;
28377
- opacity: 0.2;
28378
- }
28379
-
28380
- .loading-indicator__line1 {
28381
- position: absolute;
28382
- width: 5px;
28383
- height: 48px;
28384
- left: 9.33px;
28385
- top: 40.5px;
28386
- background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
28387
- border-radius: 5px;
28388
- transform: rotate(-128deg);
28389
- transform-origin: top left;
28390
- animation: loading-indicator1 1100ms ease-out infinite;
28391
- }
28392
-
28393
- .loading-indicator__line2 {
28394
- position: absolute;
28395
- width: 5px;
28396
- height: 48px;
28397
- left: 40.8px;
28398
- top: 8.4px;
28399
- background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
28400
- border-radius: 5px;
28401
- transform: rotate(-8deg);
28402
- transform-origin: top left;
28403
- animation: loading-indicator2 1100ms ease-out infinite;
28404
- }
28405
-
28406
- .loading-indicator__line3 {
28407
- position: absolute;
28408
- width: 5px;
28409
- height: 48px;
28410
- left: 52.9px;
28411
- top: 51.8px;
28412
- background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
28413
- border-radius: 5px;
28414
- transform: rotate(112deg);
28415
- transform-origin: top left;
28416
- animation: loading-indicator3 1100ms ease-out infinite;
28417
- }
28418
-
28419
28323
  @keyframes loading-indicator1 {
28420
28324
  0% {
28421
28325
  height: 48px;
@@ -28482,53 +28386,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
28482
28386
  top: 51.8px;
28483
28387
  }
28484
28388
  }
28485
- /* // basic */
28486
- /* FishEye Color Variables and Functions */
28487
- /*
28488
- --------------------------- Primary Color ---------------------------
28489
- */
28490
- /*
28491
- ---------------------------When necessary to add at any time---------------------------
28492
- */
28493
- /* computed */
28494
- /* blue */
28495
- /* green */
28496
- /* yellow */
28497
- /* red */
28498
- /* purple */
28499
- /* palette global token*/
28500
- /* color opaque */
28501
- /* color transparent */
28502
- /* blue transparent */
28503
- /* green transparent */
28504
- /* yellow transparent */
28505
- /* red transparent */
28506
- /* gray transparent */
28507
- /* white transparent */
28508
- /* gradient opaque */
28509
- /* blue radial gradient */
28510
- /* blue linear gradient */
28511
- /* green radial gradient */
28512
- /* yellow radial gradient */
28513
- /* red radial gradient */
28514
- /* gray radial gradient */
28515
- /* white to gray radial gradient */
28516
- /* white to gray linear gradient */
28517
- /* gradient transparent */
28518
- /* secondary palette */
28519
- /* purple radial gradient */
28520
- /* refine alias color */
28521
- /* text */
28522
- /* link */
28523
- /* fill */
28524
- /* fill element */
28525
- /* fill interaction */
28526
- /* stroke */
28527
- /* background */
28528
- /* dim */
28529
- /* box shadow */
28530
- /* fisheye */
28531
- /* z-index */
28532
28389
  .ant-dropdown,
28533
28390
  .ant-dropdown-menu-submenu {
28534
28391
  background: #fff;
@@ -28652,307 +28509,67 @@ div.ant-typography-edit-content.ant-typography-rtl {
28652
28509
  text-overflow: ellipsis;
28653
28510
  }
28654
28511
 
28655
- #top_bar {
28656
- display: flex;
28657
- align-items: center;
28658
- justify-content: space-between;
28659
- background: #222;
28660
- color: #cec17e;
28661
- height: 36px;
28662
- padding: 0 4px;
28512
+ .disable-select {
28513
+ -webkit-touch-callout: none;
28514
+ -webkit-user-select: none;
28515
+ -khtml-user-select: none;
28516
+ -moz-user-select: none;
28517
+ -ms-user-select: none;
28518
+ user-select: none;
28663
28519
  }
28664
28520
 
28665
- #shortcuts {
28666
- padding: 4px 6px;
28667
- color: #eee;
28668
- cursor: pointer;
28669
- outline: none;
28670
- border-radius: 2px;
28671
- border: 0;
28672
- background: #525252;
28521
+ .relative {
28673
28522
  position: relative;
28674
28523
  }
28675
28524
 
28676
- #shortcuts ul {
28677
- display: none;
28525
+ .drag {
28678
28526
  position: absolute;
28679
- right: 0px;
28680
- top: 30px;
28681
- word-wrap: none;
28682
- white-space: nowrap;
28527
+ right: -4px;
28528
+ top: 0;
28529
+ width: 8px;
28530
+ z-index: 9;
28531
+ height: 100%;
28532
+ cursor: col-resize;
28683
28533
  }
28684
28534
 
28685
- #shortcuts:hover ul {
28686
- display: inherit;
28535
+ .table-wrapper {
28536
+ position: relative;
28537
+ }
28538
+ .table-wrapper.table-sticky-header .no-scroll-bar th.cell__action_ {
28539
+ right: 0 !important;
28540
+ }
28541
+ .table-wrapper.table-sticky-header .no-scroll-bar th.ant-table-cell-scrollbar {
28542
+ display: none;
28543
+ }
28544
+ .table-wrapper.table-sticky-header .ant-table-header {
28545
+ position: sticky;
28546
+ top: 0px;
28547
+ }
28548
+ .table-wrapper.table-sticky-header .ant-table-body {
28549
+ overflow: auto visible !important;
28687
28550
  }
28688
28551
 
28689
- #sendCtrlAltDelButton {
28690
- padding: 4px 6px;
28691
- color: #eee;
28692
- cursor: pointer;
28693
- outline: none;
28694
- border-radius: 2px;
28695
- border: 0;
28696
- background: #525252;
28697
- opacity: 0.8;
28552
+ .table-wrapper.dragging .ant-table-column-has-sorters {
28553
+ pointer-events: none;
28698
28554
  }
28699
28555
 
28700
- #sendCtrlAltDelButton:hover {
28701
- opacity: 1;
28556
+ .ant-picker.ant-picker-disabled {
28557
+ background: rgba(211, 218, 235, 0.6);
28558
+ border-color: rgba(211, 218, 235, 0.6);
28559
+ }
28560
+ .ant-picker.error:not(.ant-picker-disabled) {
28561
+ border-color: #e75a3a;
28702
28562
  }
28703
28563
 
28704
- #screen canvas {
28705
- margin-top: 0 !important;
28564
+ .ant-picker-cell {
28565
+ vertical-align: middle;
28706
28566
  }
28707
28567
 
28708
- /* // basic */
28709
- /* FishEye Color Variables and Functions */
28710
- /*
28711
- --------------------------- Primary Color ---------------------------
28712
- */
28713
- /*
28714
- ---------------------------When necessary to add at any time---------------------------
28715
- */
28716
- /* computed */
28717
- /* blue */
28718
- /* green */
28719
- /* yellow */
28720
- /* red */
28721
- /* purple */
28722
- /* palette global token*/
28723
- /* color opaque */
28724
- /* color transparent */
28725
- /* blue transparent */
28726
- /* green transparent */
28727
- /* yellow transparent */
28728
- /* red transparent */
28729
- /* gray transparent */
28730
- /* white transparent */
28731
- /* gradient opaque */
28732
- /* blue radial gradient */
28733
- /* blue linear gradient */
28734
- /* green radial gradient */
28735
- /* yellow radial gradient */
28736
- /* red radial gradient */
28737
- /* gray radial gradient */
28738
- /* white to gray radial gradient */
28739
- /* white to gray linear gradient */
28740
- /* gradient transparent */
28741
- /* secondary palette */
28742
- /* purple radial gradient */
28743
- /* refine alias color */
28744
- /* text */
28745
- /* link */
28746
- /* fill */
28747
- /* fill element */
28748
- /* fill interaction */
28749
- /* stroke */
28750
- /* background */
28751
- /* dim */
28752
- /* box shadow */
28753
- /* fisheye */
28754
- /* z-index */
28755
- .ant-dropdown,
28756
- .ant-dropdown-menu-submenu {
28757
- background: #fff;
28758
- border-radius: 3px;
28759
- min-width: 130px;
28760
- box-sizing: content-box !important;
28761
- box-shadow: none;
28762
- border: none;
28763
- }
28764
- .ant-dropdown > .ant-dropdown-menu,
28765
- .ant-dropdown-menu-submenu > .ant-dropdown-menu {
28766
- border: 1px solid #dfe4eb;
28767
- box-shadow: 0px 8px 16px rgba(129, 138, 153, 0.18), 0px 0px 4px rgba(235, 239, 245, 0.6);
28768
- }
28769
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-title,
28770
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-title {
28771
- font-family: Inter;
28772
- font-style: normal;
28773
- font-weight: normal;
28774
- text-transform: uppercase;
28775
- font-feature-settings: "cpsp" on;
28776
- font-size: 12px;
28777
- line-height: 18px;
28778
- padding: 4px 16px;
28779
- color: rgba(129, 138, 153, 0.6);
28780
- }
28781
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-list,
28782
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-list {
28783
- margin: 0;
28784
- }
28785
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
28786
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item {
28787
- min-width: 128px;
28788
- }
28789
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
28790
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title,
28791
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item,
28792
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title {
28793
- display: flex;
28794
- padding: 4px 22px 4px 10px;
28795
- font-family: Inter;
28796
- font-style: normal;
28797
- font-weight: normal;
28798
- font-size: 14px;
28799
- line-height: 22px;
28800
- color: #2d3a56;
28801
- }
28802
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
28803
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover,
28804
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
28805
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover {
28806
- background-color: rgba(0, 128, 255, 0.1);
28807
- color: #005ed1;
28808
- }
28809
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
28810
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
28811
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
28812
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled {
28813
- opacity: 0.5;
28814
- }
28815
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
28816
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger,
28817
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
28818
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger {
28819
- color: #f0483e;
28820
- }
28821
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
28822
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover,
28823
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
28824
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover {
28825
- background-color: rgba(240, 72, 62, 0.1);
28826
- color: #f0483e;
28827
- }
28828
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
28829
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled,
28830
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
28831
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled {
28832
- color: #f0483e;
28833
- opacity: 0.5;
28834
- }
28835
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
28836
- .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider,
28837
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
28838
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider {
28839
- margin-left: 0;
28840
- margin-right: 0;
28841
- background: rgba(213, 219, 227, 0.6);
28842
- }
28843
- .ant-dropdown > .ant-dropdown-menu .icon-wrapper,
28844
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper {
28845
- display: flex;
28846
- width: 100%;
28847
- }
28848
- .ant-dropdown > .ant-dropdown-menu .icon-wrapper .icon-inner,
28849
- .ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper .icon-inner {
28850
- margin-right: 4px;
28851
- }
28852
-
28853
- .ant-dropdown-menu-submenu.ant-dropdown-menu {
28854
- padding: 0;
28855
- }
28856
- .ant-dropdown-menu-submenu.ant-dropdown-menu > [role=menu] {
28857
- margin: 0;
28858
- }
28859
-
28860
- .ant-dropdown.no-animation-enter {
28861
- display: block;
28862
- opacity: 1 !important;
28863
- }
28864
-
28865
- .ant-dropdown.no-animation-leave {
28866
- display: none;
28867
- }
28868
-
28869
- .ant-message-notice-content {
28870
- max-width: 800px;
28871
- }
28872
- .ant-message-notice-content .ant-message-custom-content {
28873
- overflow: hidden;
28874
- white-space: nowrap;
28875
- text-overflow: ellipsis;
28876
- }
28877
-
28878
- body {
28879
- font-feature-settings: normal;
28880
- -webkit-font-feature-settings: normal;
28881
- font-variant: normal;
28882
- min-width: 1280px;
28883
- overflow: hidden;
28884
- }
28885
-
28886
- p {
28887
- margin: 0;
28888
- }
28889
-
28890
- #root {
28891
- width: 100vw;
28892
- overflow-x: auto;
28893
- }
28894
-
28895
- .disable-select {
28896
- -webkit-touch-callout: none;
28897
- -webkit-user-select: none;
28898
- -khtml-user-select: none;
28899
- -moz-user-select: none;
28900
- -ms-user-select: none;
28901
- user-select: none;
28902
- }
28903
-
28904
- .relative {
28905
- position: relative;
28906
- }
28907
-
28908
- .drag {
28909
- position: absolute;
28910
- right: -4px;
28911
- top: 0;
28912
- width: 8px;
28913
- z-index: 9;
28914
- height: 100%;
28915
- cursor: col-resize;
28916
- }
28917
-
28918
- .table-wrapper {
28919
- position: relative;
28920
- }
28921
- .table-wrapper.table-sticky-header .no-scroll-bar th.cell__action_ {
28922
- right: 0 !important;
28923
- }
28924
- .table-wrapper.table-sticky-header .no-scroll-bar th.ant-table-cell-scrollbar {
28925
- display: none;
28926
- }
28927
- .table-wrapper.table-sticky-header .ant-table-header {
28928
- position: sticky;
28929
- top: 0px;
28930
- }
28931
- .table-wrapper.table-sticky-header .ant-table-body {
28932
- overflow: auto visible !important;
28933
- }
28934
-
28935
- .table-wrapper.dragging .ant-table-column-has-sorters {
28936
- pointer-events: none;
28937
- }
28938
-
28939
- .ant-picker.ant-picker-disabled {
28940
- background: rgba(211, 218, 235, 0.6);
28941
- border-color: rgba(211, 218, 235, 0.6);
28942
- }
28943
- .ant-picker.error:not(.ant-picker-disabled) {
28944
- border-color: #e75a3a;
28945
- }
28946
-
28947
- .ant-picker-cell {
28948
- vertical-align: middle;
28949
- }
28950
-
28951
- .ant-modal {
28952
- margin: 0 auto;
28953
- max-width: 100%;
28954
- top: 50%;
28955
- transform: translateY(-50%);
28568
+ .ant-modal {
28569
+ margin: 0 auto;
28570
+ max-width: 100%;
28571
+ top: 50%;
28572
+ transform: translateY(-50%);
28956
28573
  }
28957
28574
  .ant-modal .ant-modal-close-x {
28958
28575
  width: 20px;
@@ -29829,6 +29446,20 @@ input[type=submit] {
29829
29446
  cursor: pointer;
29830
29447
  }
29831
29448
 
29449
+ /* move from override.csss */
29450
+ body {
29451
+ font-feature-settings: normal;
29452
+ -webkit-font-feature-settings: normal;
29453
+ font-variant: normal;
29454
+ min-width: 1280px;
29455
+ overflow: hidden;
29456
+ }
29457
+
29458
+ #root {
29459
+ width: 100vw;
29460
+ overflow-x: auto;
29461
+ }
29462
+
29832
29463
  @font-face {
29833
29464
  font-family: "Inter";
29834
29465
  font-style: normal;
@@ -29927,6 +29558,21 @@ html body {
29927
29558
  font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
29928
29559
  }
29929
29560
  }
29561
+ .fde5mpd {
29562
+ width: 100%;
29563
+ height: 100%;
29564
+ min-height: 124px;
29565
+ display: flex;
29566
+ flex-direction: column;
29567
+ justify-content: center;
29568
+ align-items: center;
29569
+ }
29570
+ .fde5mpd .error-text {
29571
+ color: rgba(10, 37, 85, 0.6);
29572
+ margin-bottom: 16px;
29573
+ font-size: 18px;
29574
+ }
29575
+
29930
29576
  .buj61ew.ant-btn-icon-only {
29931
29577
  justify-content: center;
29932
29578
  }
@@ -30177,6 +29823,24 @@ html body {
30177
29823
  padding: 0;
30178
29824
  }
30179
29825
 
29826
+ .i1mrf09m {
29827
+ display: inline-flex;
29828
+ align-items: center;
29829
+ }
29830
+ .i1mrf09m .icon-inner {
29831
+ display: inline-flex;
29832
+ align-items: center;
29833
+ justify-content: center;
29834
+ }
29835
+ .i1mrf09m .icon-inner + span,
29836
+ .i1mrf09m span + .icon-inner.suffix {
29837
+ margin-left: 4px;
29838
+ }
29839
+ .i1mrf09m.is-rotate img,
29840
+ .i1mrf09m.is-rotate svg {
29841
+ animation: rotate 680ms linear infinite;
29842
+ }
29843
+
30180
29844
  .bpq0js6 {
30181
29845
  padding: 4px 11px;
30182
29846
  }
@@ -30206,72 +29870,17 @@ html body {
30206
29870
  border-radius: unset;
30207
29871
  }
30208
29872
 
30209
- .fde5mpd {
30210
- width: 100%;
30211
- height: 100%;
30212
- min-height: 124px;
29873
+ .p12gwtiw {
30213
29874
  display: flex;
30214
- flex-direction: column;
30215
- justify-content: center;
29875
+ justify-content: space-between;
30216
29876
  align-items: center;
29877
+ padding: 10px 0;
29878
+ color: rgba(44, 56, 82, 0.6);
29879
+ font-size: 12px;
29880
+ line-height: 24px;
30217
29881
  }
30218
- .fde5mpd .error-text {
30219
- color: rgba(10, 37, 85, 0.6);
30220
- margin-bottom: 16px;
30221
- font-size: 18px;
30222
- }
30223
-
30224
- .i1mrf09m {
30225
- display: inline-flex;
30226
- align-items: center;
30227
- }
30228
- .i1mrf09m .icon-inner {
30229
- display: inline-flex;
30230
- align-items: center;
30231
- justify-content: center;
30232
- }
30233
- .i1mrf09m .icon-inner + span,
30234
- .i1mrf09m span + .icon-inner.suffix {
30235
- margin-left: 4px;
30236
- }
30237
- .i1mrf09m.is-rotate img,
30238
- .i1mrf09m.is-rotate svg {
30239
- animation: rotate 680ms linear infinite;
30240
- }
30241
-
30242
- .iap75of {
30243
- height: 18px;
30244
- line-height: 18px;
30245
- padding: 0 4px;
30246
- border-radius: 4px;
30247
- background: rgba(235, 239, 245, 0.6);
30248
- border: 1px solid rgba(223, 228, 235, 0.6);
30249
- display: flex;
30250
- align-items: center;
30251
- white-space: nowrap;
30252
- margin-right: 4px;
30253
- }
30254
-
30255
- .obf05yr {
30256
- display: inline-block;
30257
- }
30258
-
30259
- .hsms1n6 {
30260
- visibility: hidden;
30261
- position: absolute;
30262
- }
30263
-
30264
- .p12gwtiw {
30265
- display: flex;
30266
- justify-content: space-between;
30267
- align-items: center;
30268
- padding: 10px 0;
30269
- color: rgba(44, 56, 82, 0.6);
30270
- font-size: 12px;
30271
- line-height: 24px;
30272
- }
30273
- .p12gwtiw .pagination-left {
30274
- padding: 2px 8px;
29882
+ .p12gwtiw .pagination-left {
29883
+ padding: 2px 8px;
30275
29884
  }
30276
29885
  .p12gwtiw .dropdown-trigger {
30277
29886
  display: flex;
@@ -30464,6 +30073,28 @@ html body {
30464
30073
  width: 36px;
30465
30074
  }
30466
30075
 
30076
+ .obf05yr {
30077
+ display: inline-block;
30078
+ }
30079
+
30080
+ .hsms1n6 {
30081
+ visibility: hidden;
30082
+ position: absolute;
30083
+ }
30084
+
30085
+ .iap75of {
30086
+ height: 18px;
30087
+ line-height: 18px;
30088
+ padding: 0 4px;
30089
+ border-radius: 4px;
30090
+ background: rgba(235, 239, 245, 0.6);
30091
+ border: 1px solid rgba(223, 228, 235, 0.6);
30092
+ display: flex;
30093
+ align-items: center;
30094
+ white-space: nowrap;
30095
+ margin-right: 4px;
30096
+ }
30097
+
30467
30098
  .s34f1qb.ant-switch {
30468
30099
  min-width: 40px;
30469
30100
  height: 24px;
@@ -31131,928 +30762,928 @@ input.rrg1fkn.ant-input {
31131
30762
  border-bottom-left-radius: 0;
31132
30763
  }
31133
30764
 
31134
- .s1fc623g {
31135
- width: 430px !important;
30765
+ .t1upn1sz {
30766
+ height: 100%;
31136
30767
  }
31137
30768
 
31138
- .da3mx0o .ant-select-item-group {
31139
- padding: 8px 16px;
31140
- line-height: 18px;
31141
- border-top: 1px solid rgba(211, 218, 235, 0.6);
31142
- height: 34px;
31143
- min-height: 34px;
31144
- box-sizing: border-box;
31145
- margin-top: 8px;
30769
+ .tta5kd2 {
30770
+ height: 100%;
31146
30771
  }
31147
-
31148
- .onr9gzt {
31149
- display: flex;
31150
- flex-direction: column;
31151
- margin: 1px 8px;
31152
- padding: 8px;
31153
- border-radius: 4px;
30772
+ .tta5kd2.empty-table .ant-table-content {
30773
+ overflow: visible !important;
30774
+ height: 100%;
31154
30775
  }
31155
- .onr9gzt .selected-icon {
30776
+ .tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
30777
+ height: 100%;
30778
+ }
30779
+ .tta5kd2.empty-table .ant-table-content table {
30780
+ width: 100% !important;
30781
+ height: 100%;
30782
+ }
30783
+ .tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
30784
+ padding: 15px 0;
30785
+ }
30786
+ .tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
31156
30787
  display: none;
31157
30788
  }
31158
- .onr9gzt.ant-select-item-option-grouped {
31159
- padding-left: 8px;
30789
+ .tta5kd2 .active-row td:nth-child(1) {
30790
+ font-weight: 700;
31160
30791
  }
31161
- .onr9gzt.ant-select-item-option-selected {
31162
- background-color: white;
30792
+ .tta5kd2.has-selection .active-row td:nth-child(2) {
30793
+ font-weight: 700;
31163
30794
  }
31164
- .onr9gzt.ant-select-item-option-selected .timezone-title {
31165
- color: #0080ff;
30795
+ .tta5kd2 .ant-spin-nested-loading {
30796
+ height: 100%;
31166
30797
  }
31167
- .onr9gzt.ant-select-item-option-selected .selected-icon {
31168
- display: block;
30798
+ .tta5kd2 .ant-spin-nested-loading .ant-spin-container {
30799
+ height: 100%;
30800
+ overflow: visible;
31169
30801
  }
31170
- .onr9gzt.ant-select-item-option-active {
31171
- background: rgba(0, 136, 255, 0.16);
30802
+ .tta5kd2 .ant-spin-nested-loading .ant-spin {
30803
+ max-height: none;
31172
30804
  }
31173
- .onr9gzt.ant-select-item-option-active .timezone-title {
31174
- color: #0080ff;
30805
+ .tta5kd2.table-init-loading .ant-spin-blur thead,
30806
+ .tta5kd2.table-init-loading .ant-spin-blur tbody {
30807
+ display: none;
31175
30808
  }
31176
- .onr9gzt.ant-select-item-option-active .timezone-tag {
31177
- background: rgba(0, 136, 255, 0.1);
31178
- color: #0080ff;
30809
+ .tta5kd2 td.ant-table-column-sort {
30810
+ background: transparent;
31179
30811
  }
31180
-
31181
- .oiy0apc {
30812
+ .tta5kd2 td.ant-table-cell-fix-left,
30813
+ .tta5kd2 td.ant-table-cell-fix-right {
30814
+ background: #fff;
30815
+ padding: 0 !important;
30816
+ }
30817
+ .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content,
30818
+ .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content {
31182
30819
  display: flex;
31183
- justify-content: space-between;
31184
- height: 20px;
31185
- line-height: 20px;
30820
+ align-items: center;
30821
+ height: 100%;
30822
+ padding: 8px;
31186
30823
  }
31187
- .oiy0apc .timezone-title {
31188
- color: #2d3a56;
30824
+ .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content > span,
30825
+ .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content > span {
31189
30826
  overflow: hidden;
31190
30827
  text-overflow: ellipsis;
30828
+ width: 100%;
31191
30829
  }
31192
-
31193
- .of4y382 {
31194
- display: flex;
31195
- justify-content: space-between;
31196
- color: rgba(44, 56, 82, 0.6);
31197
- height: 18px;
31198
- line-height: 18px;
31199
- margin-top: 2px;
30830
+ .tta5kd2 .ant-table-container {
30831
+ height: 100%;
31200
30832
  }
31201
-
31202
- .t19903l9 {
31203
- border: none;
31204
- margin-right: 0;
31205
- background: rgba(225, 230, 241, 0.6);
30833
+ .tta5kd2 .ant-table-container::before, .tta5kd2 .ant-table-container::after {
30834
+ box-shadow: none !important;
31206
30835
  }
31207
-
31208
- .ohwbvxu {
31209
- pointer-events: none;
31210
- height: 32px;
31211
- width: 100%;
31212
- opacity: 0;
30836
+ .tta5kd2 .ant-table {
30837
+ border-radius: 0px;
30838
+ border-left: none;
30839
+ border-right: none;
30840
+ border-bottom: none;
30841
+ height: 100%;
30842
+ font-size: 12px;
30843
+ background: transparent;
31213
30844
  }
31214
-
31215
- .i1e4sgug {
31216
- display: inline-block;
30845
+ .tta5kd2 .ant-table .ant-table-header {
30846
+ position: relative;
30847
+ z-index: 3;
30848
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
30849
+ margin-bottom: -1px;
31217
30850
  }
31218
-
31219
- .d6j0lbj {
31220
- font-family: Inter;
31221
- font-style: normal;
31222
- font-weight: bold;
31223
- font-size: 32px;
31224
- line-height: 40px;
30851
+ .tta5kd2 .ant-table .time-wrapper .date,
30852
+ .tta5kd2 .ant-table .value {
30853
+ color: #2d3a56;
31225
30854
  }
31226
-
31227
- .d1xhvvxe {
31228
- font-family: Inter;
31229
- font-style: normal;
31230
- font-weight: bold;
31231
- font-size: 24px;
31232
- line-height: 32px;
30855
+ .tta5kd2 .ant-table .time-wrapper .time,
30856
+ .tta5kd2 .ant-table .unit {
30857
+ color: rgba(44, 56, 82, 0.6);
31233
30858
  }
31234
-
31235
- .dk10mxq {
31236
- font-family: Inter;
31237
- font-style: normal;
31238
- font-weight: normal;
31239
- font-size: 32px;
31240
- line-height: 40px;
30859
+ .tta5kd2 .ant-table .ant-table-selection {
30860
+ position: unset;
30861
+ text-align: center;
31241
30862
  }
31242
-
31243
- .dxsait {
31244
- font-family: Inter;
31245
- font-style: normal;
31246
- font-weight: bold;
31247
- font-size: 20px;
31248
- line-height: 24px;
30863
+ .tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
30864
+ background: #fff;
31249
30865
  }
31250
-
31251
- .dokn0h3 {
31252
- font-family: Inter;
31253
- font-style: normal;
31254
- font-weight: normal;
31255
- font-size: 20px;
31256
- line-height: 24px;
30866
+ .tta5kd2 .ant-table .anticon-setting {
30867
+ cursor: pointer;
30868
+ position: absolute;
30869
+ top: 50%;
30870
+ right: 12px;
30871
+ transform: translateY(-50%);
31257
30872
  }
31258
-
31259
- .dobau4p {
31260
- font-family: Inter;
31261
- font-style: normal;
31262
- font-weight: bold;
31263
- font-size: 18px;
31264
- line-height: 22px;
31265
- }
31266
-
31267
- .dvolwok {
31268
- font-family: Inter;
31269
- font-style: normal;
31270
- font-weight: normal;
31271
- font-size: 18px;
31272
- line-height: 22px;
31273
- }
31274
-
31275
- .h181qhg4 {
31276
- font-family: Inter;
31277
- font-style: normal;
31278
- font-weight: bold;
31279
- font-size: 16px;
31280
- line-height: 22px;
31281
- }
31282
-
31283
- .h1phgmcq {
31284
- font-family: Inter;
31285
- font-style: normal;
31286
- font-weight: normal;
31287
- font-size: 16px;
31288
- line-height: 22px;
31289
- }
31290
-
31291
- .h173xnl1 {
31292
- font-family: Inter;
31293
- font-style: normal;
31294
- font-weight: bold;
31295
- font-size: 14px;
31296
- line-height: 20px;
30873
+ .tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
30874
+ box-shadow: none;
30875
+ width: 1px;
30876
+ background: rgba(213, 219, 227, 0.6);
31297
30877
  }
31298
-
31299
- .hedm4pz {
31300
- font-family: Inter;
31301
- font-style: normal;
31302
- font-weight: normal;
31303
- font-size: 14px;
31304
- line-height: 20px;
30878
+ .tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
30879
+ box-shadow: none;
30880
+ width: 1px;
30881
+ background: rgba(213, 219, 227, 0.6);
31305
30882
  }
31306
-
31307
- .h1kd8xld {
31308
- font-family: Inter;
31309
- font-style: normal;
31310
- font-weight: bold;
31311
- font-size: 12px;
31312
- line-height: 18px;
30883
+ .tta5kd2 .ant-table .ant-table-tbody {
30884
+ position: relative;
31313
30885
  }
31314
-
31315
- .hp14fr {
31316
- font-family: Inter;
31317
- font-style: normal;
31318
- font-weight: normal;
31319
- font-size: 12px;
31320
- line-height: 18px;
30886
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
30887
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
30888
+ border-bottom: 1px solid white;
30889
+ height: 40px;
30890
+ vertical-align: middle;
30891
+ transition: background 0ms;
30892
+ color: #00122e;
31321
30893
  }
31322
-
31323
- .hgrg7mn {
31324
- font-family: Inter;
31325
- font-style: normal;
31326
- font-weight: bold;
31327
- text-transform: uppercase;
31328
- font-feature-settings: "cpsp" on;
31329
- font-size: 12px;
31330
- line-height: 18px;
30894
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
30895
+ background: #f2f5fa;
30896
+ border-bottom-color: #f2f5fa;
31331
30897
  }
31332
-
31333
- .h6zme9x {
31334
- font-family: Inter;
31335
- font-style: normal;
31336
- font-weight: normal;
31337
- text-transform: uppercase;
31338
- font-feature-settings: "cpsp" on;
30898
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
30899
+ height: auto;
30900
+ color: #00122e;
31339
30901
  font-size: 12px;
31340
- line-height: 18px;
31341
- }
31342
-
31343
- .locjvsv {
31344
- font-family: Inter;
31345
- font-style: normal;
31346
- font-weight: normal;
31347
- font-size: 16px;
31348
- line-height: 24px;
31349
- }
31350
-
31351
- .l13gi131 {
31352
- font-family: Inter;
31353
- font-style: normal;
31354
- font-weight: bold;
31355
- font-size: 16px;
31356
- line-height: 24px;
31357
- }
31358
-
31359
- .l1ynemsu {
31360
- font-family: Inter;
31361
- font-style: normal;
31362
- font-weight: normal;
31363
- font-size: 16px;
31364
- line-height: 24px;
31365
- }
31366
-
31367
- .l1cft1cx {
31368
- font-family: Inter;
31369
- font-style: normal;
31370
- font-weight: bold;
31371
- font-size: 16px;
31372
- line-height: 24px;
31373
- }
31374
-
31375
- .l17tqc8p {
31376
- font-family: Inter;
31377
- font-style: normal;
31378
- font-weight: normal;
31379
- text-transform: uppercase;
31380
- font-feature-settings: "cpsp" on;
31381
- font-size: 16px;
31382
- line-height: 24px;
30902
+ text-align: left;
30903
+ transition: none;
30904
+ overflow: hidden;
30905
+ text-overflow: ellipsis;
30906
+ white-space: nowrap;
31383
30907
  }
31384
-
31385
- .l1j1e5w7 {
31386
- font-family: Inter;
31387
- font-style: normal;
31388
- font-weight: bold;
31389
- text-transform: uppercase;
31390
- font-feature-settings: "cpsp" on;
31391
- font-size: 16px;
31392
- line-height: 24px;
30908
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
30909
+ color: #0096ff;
31393
30910
  }
31394
-
31395
- .l1gf91jb {
31396
- font-family: Inter;
31397
- font-style: normal;
31398
- font-weight: normal;
31399
- font-size: 14px;
31400
- line-height: 22px;
30911
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
30912
+ overflow: hidden;
30913
+ text-overflow: ellipsis;
30914
+ width: 100%;
30915
+ vertical-align: middle;
31401
30916
  }
31402
-
31403
- .lu7hlr6 {
31404
- font-family: Inter;
31405
- font-style: normal;
31406
- font-weight: 500;
31407
- font-size: 14px;
31408
- line-height: 22px;
30917
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
30918
+ line-height: 0px;
31409
30919
  }
31410
-
31411
- .l3l3jf0 {
31412
- font-family: Inter;
31413
- font-style: normal;
31414
- font-weight: bold;
31415
- font-size: 14px;
31416
- line-height: 22px;
30920
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.align-right {
30921
+ padding-right: 25px;
31417
30922
  }
31418
-
31419
- .l12j5nqp {
31420
- font-family: Inter;
31421
- font-style: normal;
31422
- font-weight: normal;
31423
- font-size: 14px;
31424
- line-height: 22px;
30923
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
30924
+ border-top-color: transparent;
31425
30925
  }
31426
-
31427
- .l1tecqht {
31428
- font-family: Inter;
31429
- font-style: normal;
31430
- font-weight: bold;
31431
- font-size: 14px;
31432
- line-height: 22px;
30926
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
30927
+ background: rgba(225, 230, 241, 0.6);
30928
+ border-color: transparent transparent white;
31433
30929
  }
31434
-
31435
- .l6sa990 {
31436
- font-family: Inter;
31437
- font-style: normal;
31438
- font-weight: normal;
31439
- text-transform: uppercase;
31440
- font-feature-settings: "cpsp" on;
31441
- font-size: 14px;
31442
- line-height: 22px;
30930
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
30931
+ border-radius: 8px 0 0 8px;
31443
30932
  }
31444
-
31445
- .lckqe8j {
31446
- font-family: Inter;
31447
- font-style: normal;
31448
- font-weight: bold;
31449
- text-transform: uppercase;
31450
- font-feature-settings: "cpsp" on;
31451
- font-size: 14px;
31452
- line-height: 22px;
30933
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
30934
+ border-radius: 8px 0 0 8px;
31453
30935
  }
31454
-
31455
- .l1kuminb {
31456
- font-family: Inter;
31457
- font-style: normal;
31458
- font-weight: normal;
31459
- font-size: 13px;
31460
- line-height: 20px;
30936
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
30937
+ content: "";
30938
+ width: 4px;
30939
+ top: -1px;
30940
+ bottom: -1px;
30941
+ background: white;
31461
30942
  }
31462
-
31463
- .l1pbuf5j {
31464
- font-family: Inter;
31465
- font-style: normal;
31466
- font-weight: 600;
31467
- font-size: 13px;
31468
- line-height: 20px;
30943
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
30944
+ border-radius: 0 8px 8px 0;
31469
30945
  }
31470
-
31471
- .l1r4ztu {
31472
- font-family: Inter;
31473
- font-style: normal;
31474
- font-weight: bold;
31475
- font-size: 13px;
31476
- line-height: 20px;
30946
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
30947
+ border-radius: 0;
30948
+ background: white;
30949
+ border-top: none;
31477
30950
  }
31478
-
31479
- .ly8vzok {
31480
- font-family: Inter;
31481
- font-style: normal;
31482
- font-weight: normal;
31483
- font-size: 13px;
31484
- line-height: 20px;
30951
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
30952
+ border-top: 1px solid transparent;
30953
+ border-radius: 0 8px 8px 0;
30954
+ background: rgba(225, 230, 241, 0.6);
31485
30955
  }
31486
-
31487
- .lumfmf {
31488
- font-family: Inter;
31489
- font-style: normal;
31490
- font-weight: 600;
31491
- font-size: 13px;
31492
- line-height: 20px;
30956
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
30957
+ background: white;
30958
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
31493
30959
  }
31494
-
31495
- .l16ujwmv {
31496
- font-family: Inter;
31497
- font-style: normal;
31498
- font-weight: bold;
31499
- font-size: 13px;
31500
- line-height: 20px;
30960
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
30961
+ display: flex;
30962
+ align-items: center;
30963
+ height: 100%;
30964
+ background: rgba(225, 230, 241, 0.6);
31501
30965
  }
31502
-
31503
- .l17o1ffr {
31504
- font-family: Inter;
31505
- font-style: normal;
31506
- font-weight: normal;
31507
- text-transform: uppercase;
31508
- font-feature-settings: "cpsp" on;
31509
- font-size: 13px;
31510
- line-height: 20px;
30966
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
30967
+ background: white;
30968
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
31511
30969
  }
31512
-
31513
- .lngllvn {
31514
- font-family: Inter;
31515
- font-style: normal;
31516
- font-weight: bold;
31517
- text-transform: uppercase;
31518
- font-feature-settings: "cpsp" on;
31519
- font-size: 13px;
31520
- line-height: 20px;
30970
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
30971
+ display: flex;
30972
+ align-items: center;
30973
+ height: 100%;
30974
+ background: rgba(225, 230, 241, 0.6);
31521
30975
  }
31522
-
31523
- .l2i7fo9 {
31524
- font-family: Inter;
31525
- font-style: normal;
31526
- font-weight: normal;
31527
- font-size: 12px;
31528
- line-height: 18px;
30976
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
30977
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
31529
30978
  }
31530
-
31531
- .l1x7hscx {
31532
- font-family: Inter;
31533
- font-style: normal;
31534
- font-weight: 500;
31535
- font-size: 12px;
31536
- line-height: 18px;
30979
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
30980
+ box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
30981
+ border-radius: 8px;
31537
30982
  }
31538
-
31539
- .le1jwan {
31540
- font-family: Inter;
31541
- font-style: normal;
31542
- font-weight: bold;
31543
- font-size: 12px;
31544
- line-height: 18px;
30983
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
30984
+ border-top-color: white;
31545
30985
  }
31546
-
31547
- .lyxynfj {
31548
- font-family: Inter;
31549
- font-style: normal;
31550
- font-weight: normal;
31551
- font-size: 12px;
31552
- line-height: 18px;
30986
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td {
30987
+ background: rgba(0, 136, 255, 0.1);
30988
+ border-bottom-color: transparent;
30989
+ border-top-color: transparent;
31553
30990
  }
31554
-
31555
- .lpb2nxv {
31556
- font-family: Inter;
31557
- font-style: normal;
31558
- font-weight: 500;
31559
- font-size: 12px;
31560
- line-height: 18px;
30991
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
30992
+ border-radius: 8px 0 0 8px;
31561
30993
  }
31562
-
31563
- .l1r8o3vv {
31564
- font-family: Inter;
31565
- font-style: normal;
31566
- font-weight: bold;
31567
- font-size: 12px;
31568
- line-height: 18px;
30994
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
30995
+ border-radius: 0 8px 8px 0;
31569
30996
  }
31570
-
31571
- .lemnjy2 {
31572
- font-family: Inter;
31573
- font-style: normal;
31574
- font-weight: normal;
31575
- text-transform: uppercase;
31576
- font-feature-settings: "cpsp" on;
31577
- font-size: 12px;
31578
- line-height: 18px;
30997
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
30998
+ background: rgba(0, 136, 255, 0.1);
31579
30999
  }
31580
-
31581
- .lrc42gb {
31582
- font-family: Inter;
31583
- font-style: normal;
31584
- font-weight: bold;
31585
- text-transform: uppercase;
31586
- font-feature-settings: "cpsp" on;
31587
- font-size: 12px;
31588
- line-height: 18px;
31000
+ .tta5kd2 .ant-table .ant-table-thead > tr > th {
31001
+ background: #fff;
31002
+ font-weight: 400;
31003
+ position: relative;
31004
+ border-bottom: none;
31005
+ color: #00122e;
31006
+ transition: none;
31007
+ padding: 15px 8px 15px 8px;
31589
31008
  }
31590
-
31591
- .fqaz4mb {
31592
- font-family: Inter;
31593
- font-style: normal;
31594
- font-weight: normal;
31595
- font-size: 13px;
31596
- line-height: 20px;
31009
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:not(:last-child):after {
31010
+ content: "";
31011
+ width: 1px;
31012
+ top: 0;
31013
+ bottom: 0;
31014
+ background: rgba(211, 218, 235, 0.6);
31015
+ position: absolute;
31016
+ right: 0;
31597
31017
  }
31598
-
31599
- .f13we5o {
31600
- font-family: Inter;
31601
- font-style: normal;
31602
- font-weight: normal;
31603
- font-size: 13px;
31604
- line-height: 20px;
31018
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank {
31019
+ padding: unset;
31605
31020
  }
31606
-
31607
- .ffmjua2 {
31608
- font-family: Inter;
31609
- font-style: normal;
31610
- font-weight: normal;
31611
- font-size: 12px;
31612
- line-height: 18px;
31021
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank:after {
31022
+ display: none;
31613
31023
  }
31614
-
31615
- .fz2mxw0 {
31616
- font-family: Inter;
31617
- font-style: normal;
31618
- font-weight: normal;
31619
- font-size: 12px;
31620
- line-height: 18px;
31024
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
31025
+ width: 100%;
31026
+ overflow: hidden;
31027
+ white-space: nowrap;
31028
+ text-overflow: ellipsis;
31621
31029
  }
31622
-
31623
- .t1ertzoh {
31624
- font-family: Inter;
31625
- font-style: normal;
31626
- font-weight: normal;
31627
- font-feature-settings: "tnum" on, "lnum" on, "case" on;
31628
- font-size: 13px;
31629
- line-height: 20px;
31030
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
31031
+ overflow: hidden;
31032
+ text-overflow: ellipsis;
31033
+ flex: 1;
31630
31034
  }
31631
-
31632
- .t19bge8r {
31633
- font-family: Inter;
31634
- font-style: normal;
31635
- font-weight: normal;
31636
- font-feature-settings: "zero" on;
31637
- font-size: 13px;
31638
- line-height: 20px;
31035
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
31036
+ padding: 15px 25px 15px 8px;
31639
31037
  }
31640
-
31641
- .tjrzfyl {
31642
- font-family: Inter;
31643
- font-style: normal;
31644
- font-weight: normal;
31645
- font-feature-settings: "tnum" on, "lnum" on, "case" on;
31646
- font-size: 12px;
31647
- line-height: 18px;
31038
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
31039
+ padding: 0;
31648
31040
  }
31649
-
31650
- .tm6s7bo {
31651
- font-family: Inter;
31652
- font-style: normal;
31653
- font-weight: 500;
31654
- font-feature-settings: "tnum" on, "lnum" on, "case" on;
31655
- font-size: 12px;
31656
- line-height: 18px;
31041
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
31042
+ position: absolute;
31043
+ right: 6px;
31044
+ top: 50%;
31045
+ transform: translateY(-50%);
31046
+ height: 16px;
31047
+ display: none;
31048
+ transition: transform 320ms ease;
31657
31049
  }
31658
-
31659
- .t19zq6ic {
31660
- font-family: Inter;
31661
- font-style: normal;
31662
- font-weight: normal;
31663
- font-feature-settings: "zero" on;
31664
- font-size: 12px;
31665
- line-height: 18px;
31050
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
31051
+ display: block;
31052
+ transform: translateY(-50%) rotateX(180deg);
31666
31053
  }
31667
-
31668
- .t1gduru8 {
31669
- font-family: Inter;
31670
- font-style: normal;
31671
- font-weight: 500;
31672
- font-feature-settings: "zero" on;
31673
- font-size: 12px;
31674
- line-height: 18px;
31054
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
31055
+ display: block;
31675
31056
  }
31676
-
31677
- .t55raab {
31678
- font-family: Inter;
31679
- font-style: normal;
31680
- font-weight: bold;
31681
- font-feature-settings: "zero" on;
31682
- font-size: 16px;
31683
- line-height: 24px;
31057
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
31058
+ display: none;
31684
31059
  }
31685
-
31686
- .u1w9abfe {
31687
- font-family: Inter;
31688
- font-style: normal;
31689
- font-weight: normal;
31690
- font-size: 10px;
31691
- line-height: 12px;
31060
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
31061
+ transform: translateY(-50%);
31692
31062
  }
31693
-
31694
- .t1upn1sz {
31695
- height: 100%;
31063
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
31064
+ transform: translateY(-50%) rotateX(180deg);
31696
31065
  }
31697
-
31698
- .tta5kd2 {
31699
- height: 100%;
31066
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
31067
+ background: #f2f5fa;
31700
31068
  }
31701
- .tta5kd2.empty-table .ant-table-content {
31702
- overflow: visible !important;
31703
- height: 100%;
31069
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
31070
+ display: block;
31704
31071
  }
31705
- .tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
31706
- height: 100%;
31072
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.align-right {
31073
+ padding-right: 25px;
31707
31074
  }
31708
- .tta5kd2.empty-table .ant-table-content table {
31709
- width: 100% !important;
31710
- height: 100%;
31075
+ .tta5kd2 .ant-table .ant-table-selection-column {
31076
+ padding: 0 !important;
31711
31077
  }
31712
- .tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
31713
- padding: 15px 0;
31078
+ .tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
31079
+ position: absolute;
31080
+ left: 50%;
31081
+ top: 50%;
31082
+ transform: translate(-50%, -50%);
31714
31083
  }
31715
- .tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
31084
+ .tta5kd2 .ant-table .ant-table-selection-column:after {
31716
31085
  display: none;
31717
31086
  }
31718
- .tta5kd2 .active-row td:nth-child(1) {
31719
- font-weight: 700;
31087
+ .tta5kd2 .ant-table .ant-table-hide-scrollbar {
31088
+ background: #fff;
31720
31089
  }
31721
- .tta5kd2.has-selection .active-row td:nth-child(2) {
31722
- font-weight: 700;
31090
+ .tta5kd2 .ant-table .ant-table-placeholder {
31091
+ background: inherit;
31723
31092
  }
31724
- .tta5kd2 .ant-spin-nested-loading {
31725
- height: 100%;
31093
+ .tta5kd2 .ant-table .ant-table-placeholder td {
31094
+ position: static;
31095
+ border: none;
31096
+ background: inherit !important;
31097
+ height: 100px;
31098
+ vertical-align: middle;
31726
31099
  }
31727
- .tta5kd2 .ant-spin-nested-loading .ant-spin-container {
31728
- height: 100%;
31729
- overflow: visible;
31100
+ .tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
31101
+ .tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
31102
+ font-weight: bold;
31103
+ font-size: 20px;
31104
+ color: rgba(10, 37, 85, 0.6);
31730
31105
  }
31731
- .tta5kd2 .ant-spin-nested-loading .ant-spin {
31732
- max-height: none;
31106
+ .tta5kd2 .ant-table td.cell__action_ {
31107
+ padding: 0 !important;
31108
+ position: relative;
31109
+ background: #fff;
31733
31110
  }
31734
- .tta5kd2.table-init-loading .ant-spin-blur thead,
31735
- .tta5kd2.table-init-loading .ant-spin-blur tbody {
31736
- display: none;
31111
+ .tta5kd2 .ant-table td.cell__action_ > * {
31112
+ height: 100%;
31113
+ display: flex;
31114
+ align-items: center;
31115
+ justify-content: flex-end;
31116
+ padding-right: 8px;
31737
31117
  }
31738
- .tta5kd2 td.ant-table-column-sort {
31739
- background: transparent;
31118
+ .tta5kd2 .ant-table td.cell__action_ .menu-button {
31119
+ width: 24px;
31120
+ height: 24px;
31121
+ cursor: pointer;
31122
+ justify-content: center;
31123
+ border-radius: 4px;
31740
31124
  }
31741
- .tta5kd2 td.ant-table-cell-fix-left,
31742
- .tta5kd2 td.ant-table-cell-fix-right {
31125
+ .tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
31743
31126
  background: #fff;
31744
- padding: 0 !important;
31745
31127
  }
31746
- .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content,
31747
- .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content {
31128
+
31129
+ .s1fc623g {
31130
+ width: 430px !important;
31131
+ }
31132
+
31133
+ .da3mx0o .ant-select-item-group {
31134
+ padding: 8px 16px;
31135
+ line-height: 18px;
31136
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
31137
+ height: 34px;
31138
+ min-height: 34px;
31139
+ box-sizing: border-box;
31140
+ margin-top: 8px;
31141
+ }
31142
+
31143
+ .onr9gzt {
31748
31144
  display: flex;
31749
- align-items: center;
31750
- height: 100%;
31145
+ flex-direction: column;
31146
+ margin: 1px 8px;
31751
31147
  padding: 8px;
31148
+ border-radius: 4px;
31752
31149
  }
31753
- .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content > span,
31754
- .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content > span {
31755
- overflow: hidden;
31756
- text-overflow: ellipsis;
31757
- width: 100%;
31150
+ .onr9gzt .selected-icon {
31151
+ display: none;
31758
31152
  }
31759
- .tta5kd2 .ant-table-container {
31760
- height: 100%;
31153
+ .onr9gzt.ant-select-item-option-grouped {
31154
+ padding-left: 8px;
31761
31155
  }
31762
- .tta5kd2 .ant-table-container::before, .tta5kd2 .ant-table-container::after {
31763
- box-shadow: none !important;
31156
+ .onr9gzt.ant-select-item-option-selected {
31157
+ background-color: white;
31764
31158
  }
31765
- .tta5kd2 .ant-table {
31766
- border-radius: 0px;
31767
- border-left: none;
31768
- border-right: none;
31769
- border-bottom: none;
31770
- height: 100%;
31771
- font-size: 12px;
31772
- background: transparent;
31159
+ .onr9gzt.ant-select-item-option-selected .timezone-title {
31160
+ color: #0080ff;
31773
31161
  }
31774
- .tta5kd2 .ant-table .ant-table-header {
31775
- position: relative;
31776
- z-index: 3;
31777
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
31778
- margin-bottom: -1px;
31162
+ .onr9gzt.ant-select-item-option-selected .selected-icon {
31163
+ display: block;
31779
31164
  }
31780
- .tta5kd2 .ant-table .time-wrapper .date,
31781
- .tta5kd2 .ant-table .value {
31782
- color: #2d3a56;
31165
+ .onr9gzt.ant-select-item-option-active {
31166
+ background: rgba(0, 136, 255, 0.16);
31783
31167
  }
31784
- .tta5kd2 .ant-table .time-wrapper .time,
31785
- .tta5kd2 .ant-table .unit {
31786
- color: rgba(44, 56, 82, 0.6);
31168
+ .onr9gzt.ant-select-item-option-active .timezone-title {
31169
+ color: #0080ff;
31787
31170
  }
31788
- .tta5kd2 .ant-table .ant-table-selection {
31789
- position: unset;
31790
- text-align: center;
31171
+ .onr9gzt.ant-select-item-option-active .timezone-tag {
31172
+ background: rgba(0, 136, 255, 0.1);
31173
+ color: #0080ff;
31791
31174
  }
31792
- .tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
31793
- background: #fff;
31175
+
31176
+ .oiy0apc {
31177
+ display: flex;
31178
+ justify-content: space-between;
31179
+ height: 20px;
31180
+ line-height: 20px;
31794
31181
  }
31795
- .tta5kd2 .ant-table .anticon-setting {
31796
- cursor: pointer;
31797
- position: absolute;
31798
- top: 50%;
31799
- right: 12px;
31800
- transform: translateY(-50%);
31182
+ .oiy0apc .timezone-title {
31183
+ color: #2d3a56;
31184
+ overflow: hidden;
31185
+ text-overflow: ellipsis;
31801
31186
  }
31802
- .tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
31803
- box-shadow: none;
31804
- width: 1px;
31805
- background: rgba(213, 219, 227, 0.6);
31187
+
31188
+ .of4y382 {
31189
+ display: flex;
31190
+ justify-content: space-between;
31191
+ color: rgba(44, 56, 82, 0.6);
31192
+ height: 18px;
31193
+ line-height: 18px;
31194
+ margin-top: 2px;
31806
31195
  }
31807
- .tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
31808
- box-shadow: none;
31809
- width: 1px;
31810
- background: rgba(213, 219, 227, 0.6);
31196
+
31197
+ .t19903l9 {
31198
+ border: none;
31199
+ margin-right: 0;
31200
+ background: rgba(225, 230, 241, 0.6);
31811
31201
  }
31812
- .tta5kd2 .ant-table .ant-table-tbody {
31813
- position: relative;
31202
+
31203
+ .ohwbvxu {
31204
+ pointer-events: none;
31205
+ height: 32px;
31206
+ width: 100%;
31207
+ opacity: 0;
31814
31208
  }
31815
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
31816
- border-top: 1px solid rgba(211, 218, 235, 0.6);
31817
- border-bottom: 1px solid white;
31818
- height: 40px;
31819
- vertical-align: middle;
31820
- transition: background 0ms;
31821
- color: #00122e;
31209
+
31210
+ .i1e4sgug {
31211
+ display: inline-block;
31212
+ }
31213
+
31214
+ .d6j0lbj {
31215
+ font-family: Inter;
31216
+ font-style: normal;
31217
+ font-weight: bold;
31218
+ font-size: 32px;
31219
+ line-height: 40px;
31220
+ }
31221
+
31222
+ .d1xhvvxe {
31223
+ font-family: Inter;
31224
+ font-style: normal;
31225
+ font-weight: bold;
31226
+ font-size: 24px;
31227
+ line-height: 32px;
31822
31228
  }
31823
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
31824
- background: #f2f5fa;
31825
- border-bottom-color: #f2f5fa;
31229
+
31230
+ .dk10mxq {
31231
+ font-family: Inter;
31232
+ font-style: normal;
31233
+ font-weight: normal;
31234
+ font-size: 32px;
31235
+ line-height: 40px;
31826
31236
  }
31827
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
31828
- height: auto;
31829
- color: #00122e;
31830
- font-size: 12px;
31831
- text-align: left;
31832
- transition: none;
31833
- overflow: hidden;
31834
- text-overflow: ellipsis;
31835
- white-space: nowrap;
31237
+
31238
+ .dxsait {
31239
+ font-family: Inter;
31240
+ font-style: normal;
31241
+ font-weight: bold;
31242
+ font-size: 20px;
31243
+ line-height: 24px;
31836
31244
  }
31837
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
31838
- color: #0096ff;
31245
+
31246
+ .dokn0h3 {
31247
+ font-family: Inter;
31248
+ font-style: normal;
31249
+ font-weight: normal;
31250
+ font-size: 20px;
31251
+ line-height: 24px;
31839
31252
  }
31840
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
31841
- overflow: hidden;
31842
- text-overflow: ellipsis;
31843
- width: 100%;
31844
- vertical-align: middle;
31253
+
31254
+ .dobau4p {
31255
+ font-family: Inter;
31256
+ font-style: normal;
31257
+ font-weight: bold;
31258
+ font-size: 18px;
31259
+ line-height: 22px;
31845
31260
  }
31846
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
31847
- line-height: 0px;
31261
+
31262
+ .dvolwok {
31263
+ font-family: Inter;
31264
+ font-style: normal;
31265
+ font-weight: normal;
31266
+ font-size: 18px;
31267
+ line-height: 22px;
31848
31268
  }
31849
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.align-right {
31850
- padding-right: 25px;
31269
+
31270
+ .h181qhg4 {
31271
+ font-family: Inter;
31272
+ font-style: normal;
31273
+ font-weight: bold;
31274
+ font-size: 16px;
31275
+ line-height: 22px;
31851
31276
  }
31852
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
31853
- border-top-color: transparent;
31277
+
31278
+ .h1phgmcq {
31279
+ font-family: Inter;
31280
+ font-style: normal;
31281
+ font-weight: normal;
31282
+ font-size: 16px;
31283
+ line-height: 22px;
31854
31284
  }
31855
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
31856
- background: rgba(225, 230, 241, 0.6);
31857
- border-color: transparent transparent white;
31285
+
31286
+ .h173xnl1 {
31287
+ font-family: Inter;
31288
+ font-style: normal;
31289
+ font-weight: bold;
31290
+ font-size: 14px;
31291
+ line-height: 20px;
31858
31292
  }
31859
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
31860
- border-radius: 8px 0 0 8px;
31293
+
31294
+ .hedm4pz {
31295
+ font-family: Inter;
31296
+ font-style: normal;
31297
+ font-weight: normal;
31298
+ font-size: 14px;
31299
+ line-height: 20px;
31861
31300
  }
31862
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
31863
- border-radius: 8px 0 0 8px;
31301
+
31302
+ .h1kd8xld {
31303
+ font-family: Inter;
31304
+ font-style: normal;
31305
+ font-weight: bold;
31306
+ font-size: 12px;
31307
+ line-height: 18px;
31864
31308
  }
31865
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
31866
- content: "";
31867
- width: 4px;
31868
- top: -1px;
31869
- bottom: -1px;
31870
- background: white;
31309
+
31310
+ .hp14fr {
31311
+ font-family: Inter;
31312
+ font-style: normal;
31313
+ font-weight: normal;
31314
+ font-size: 12px;
31315
+ line-height: 18px;
31871
31316
  }
31872
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
31873
- border-radius: 0 8px 8px 0;
31317
+
31318
+ .hgrg7mn {
31319
+ font-family: Inter;
31320
+ font-style: normal;
31321
+ font-weight: bold;
31322
+ text-transform: uppercase;
31323
+ font-feature-settings: "cpsp" on;
31324
+ font-size: 12px;
31325
+ line-height: 18px;
31874
31326
  }
31875
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
31876
- border-radius: 0;
31877
- background: white;
31878
- border-top: none;
31327
+
31328
+ .h6zme9x {
31329
+ font-family: Inter;
31330
+ font-style: normal;
31331
+ font-weight: normal;
31332
+ text-transform: uppercase;
31333
+ font-feature-settings: "cpsp" on;
31334
+ font-size: 12px;
31335
+ line-height: 18px;
31879
31336
  }
31880
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
31881
- border-top: 1px solid transparent;
31882
- border-radius: 0 8px 8px 0;
31883
- background: rgba(225, 230, 241, 0.6);
31337
+
31338
+ .locjvsv {
31339
+ font-family: Inter;
31340
+ font-style: normal;
31341
+ font-weight: normal;
31342
+ font-size: 16px;
31343
+ line-height: 24px;
31884
31344
  }
31885
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
31886
- background: white;
31887
- border-top: 1px solid rgba(211, 218, 235, 0.6);
31345
+
31346
+ .l13gi131 {
31347
+ font-family: Inter;
31348
+ font-style: normal;
31349
+ font-weight: bold;
31350
+ font-size: 16px;
31351
+ line-height: 24px;
31888
31352
  }
31889
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
31890
- display: flex;
31891
- align-items: center;
31892
- height: 100%;
31893
- background: rgba(225, 230, 241, 0.6);
31353
+
31354
+ .l1ynemsu {
31355
+ font-family: Inter;
31356
+ font-style: normal;
31357
+ font-weight: normal;
31358
+ font-size: 16px;
31359
+ line-height: 24px;
31894
31360
  }
31895
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
31896
- background: white;
31897
- border-top: 1px solid rgba(211, 218, 235, 0.6);
31361
+
31362
+ .l1cft1cx {
31363
+ font-family: Inter;
31364
+ font-style: normal;
31365
+ font-weight: bold;
31366
+ font-size: 16px;
31367
+ line-height: 24px;
31898
31368
  }
31899
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
31900
- display: flex;
31901
- align-items: center;
31902
- height: 100%;
31903
- background: rgba(225, 230, 241, 0.6);
31369
+
31370
+ .l17tqc8p {
31371
+ font-family: Inter;
31372
+ font-style: normal;
31373
+ font-weight: normal;
31374
+ text-transform: uppercase;
31375
+ font-feature-settings: "cpsp" on;
31376
+ font-size: 16px;
31377
+ line-height: 24px;
31904
31378
  }
31905
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
31906
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
31379
+
31380
+ .l1j1e5w7 {
31381
+ font-family: Inter;
31382
+ font-style: normal;
31383
+ font-weight: bold;
31384
+ text-transform: uppercase;
31385
+ font-feature-settings: "cpsp" on;
31386
+ font-size: 16px;
31387
+ line-height: 24px;
31907
31388
  }
31908
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
31909
- box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
31910
- border-radius: 8px;
31389
+
31390
+ .l1gf91jb {
31391
+ font-family: Inter;
31392
+ font-style: normal;
31393
+ font-weight: normal;
31394
+ font-size: 14px;
31395
+ line-height: 22px;
31911
31396
  }
31912
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
31913
- border-top-color: white;
31397
+
31398
+ .lu7hlr6 {
31399
+ font-family: Inter;
31400
+ font-style: normal;
31401
+ font-weight: 500;
31402
+ font-size: 14px;
31403
+ line-height: 22px;
31914
31404
  }
31915
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td {
31916
- background: rgba(0, 136, 255, 0.1);
31917
- border-bottom-color: transparent;
31918
- border-top-color: transparent;
31405
+
31406
+ .l3l3jf0 {
31407
+ font-family: Inter;
31408
+ font-style: normal;
31409
+ font-weight: bold;
31410
+ font-size: 14px;
31411
+ line-height: 22px;
31919
31412
  }
31920
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
31921
- border-radius: 8px 0 0 8px;
31413
+
31414
+ .l12j5nqp {
31415
+ font-family: Inter;
31416
+ font-style: normal;
31417
+ font-weight: normal;
31418
+ font-size: 14px;
31419
+ line-height: 22px;
31420
+ }
31421
+
31422
+ .l1tecqht {
31423
+ font-family: Inter;
31424
+ font-style: normal;
31425
+ font-weight: bold;
31426
+ font-size: 14px;
31427
+ line-height: 22px;
31922
31428
  }
31923
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
31924
- border-radius: 0 8px 8px 0;
31429
+
31430
+ .l6sa990 {
31431
+ font-family: Inter;
31432
+ font-style: normal;
31433
+ font-weight: normal;
31434
+ text-transform: uppercase;
31435
+ font-feature-settings: "cpsp" on;
31436
+ font-size: 14px;
31437
+ line-height: 22px;
31925
31438
  }
31926
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
31927
- background: rgba(0, 136, 255, 0.1);
31439
+
31440
+ .lckqe8j {
31441
+ font-family: Inter;
31442
+ font-style: normal;
31443
+ font-weight: bold;
31444
+ text-transform: uppercase;
31445
+ font-feature-settings: "cpsp" on;
31446
+ font-size: 14px;
31447
+ line-height: 22px;
31928
31448
  }
31929
- .tta5kd2 .ant-table .ant-table-thead > tr > th {
31930
- background: #fff;
31931
- font-weight: 400;
31932
- position: relative;
31933
- border-bottom: none;
31934
- color: #00122e;
31935
- transition: none;
31936
- padding: 15px 8px 15px 8px;
31449
+
31450
+ .l1kuminb {
31451
+ font-family: Inter;
31452
+ font-style: normal;
31453
+ font-weight: normal;
31454
+ font-size: 13px;
31455
+ line-height: 20px;
31937
31456
  }
31938
- .tta5kd2 .ant-table .ant-table-thead > tr > th:not(:last-child):after {
31939
- content: "";
31940
- width: 1px;
31941
- top: 0;
31942
- bottom: 0;
31943
- background: rgba(211, 218, 235, 0.6);
31944
- position: absolute;
31945
- right: 0;
31457
+
31458
+ .l1pbuf5j {
31459
+ font-family: Inter;
31460
+ font-style: normal;
31461
+ font-weight: 600;
31462
+ font-size: 13px;
31463
+ line-height: 20px;
31946
31464
  }
31947
- .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank {
31948
- padding: unset;
31465
+
31466
+ .l1r4ztu {
31467
+ font-family: Inter;
31468
+ font-style: normal;
31469
+ font-weight: bold;
31470
+ font-size: 13px;
31471
+ line-height: 20px;
31949
31472
  }
31950
- .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank:after {
31951
- display: none;
31473
+
31474
+ .ly8vzok {
31475
+ font-family: Inter;
31476
+ font-style: normal;
31477
+ font-weight: normal;
31478
+ font-size: 13px;
31479
+ line-height: 20px;
31952
31480
  }
31953
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
31954
- width: 100%;
31955
- overflow: hidden;
31956
- white-space: nowrap;
31957
- text-overflow: ellipsis;
31481
+
31482
+ .lumfmf {
31483
+ font-family: Inter;
31484
+ font-style: normal;
31485
+ font-weight: 600;
31486
+ font-size: 13px;
31487
+ line-height: 20px;
31958
31488
  }
31959
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
31960
- overflow: hidden;
31961
- text-overflow: ellipsis;
31962
- flex: 1;
31489
+
31490
+ .l16ujwmv {
31491
+ font-family: Inter;
31492
+ font-style: normal;
31493
+ font-weight: bold;
31494
+ font-size: 13px;
31495
+ line-height: 20px;
31963
31496
  }
31964
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
31965
- padding: 15px 25px 15px 8px;
31497
+
31498
+ .l17o1ffr {
31499
+ font-family: Inter;
31500
+ font-style: normal;
31501
+ font-weight: normal;
31502
+ text-transform: uppercase;
31503
+ font-feature-settings: "cpsp" on;
31504
+ font-size: 13px;
31505
+ line-height: 20px;
31966
31506
  }
31967
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
31968
- padding: 0;
31507
+
31508
+ .lngllvn {
31509
+ font-family: Inter;
31510
+ font-style: normal;
31511
+ font-weight: bold;
31512
+ text-transform: uppercase;
31513
+ font-feature-settings: "cpsp" on;
31514
+ font-size: 13px;
31515
+ line-height: 20px;
31969
31516
  }
31970
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
31971
- position: absolute;
31972
- right: 6px;
31973
- top: 50%;
31974
- transform: translateY(-50%);
31975
- height: 16px;
31976
- display: none;
31977
- transition: transform 320ms ease;
31517
+
31518
+ .l2i7fo9 {
31519
+ font-family: Inter;
31520
+ font-style: normal;
31521
+ font-weight: normal;
31522
+ font-size: 12px;
31523
+ line-height: 18px;
31978
31524
  }
31979
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
31980
- display: block;
31981
- transform: translateY(-50%) rotateX(180deg);
31525
+
31526
+ .l1x7hscx {
31527
+ font-family: Inter;
31528
+ font-style: normal;
31529
+ font-weight: 500;
31530
+ font-size: 12px;
31531
+ line-height: 18px;
31982
31532
  }
31983
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
31984
- display: block;
31533
+
31534
+ .le1jwan {
31535
+ font-family: Inter;
31536
+ font-style: normal;
31537
+ font-weight: bold;
31538
+ font-size: 12px;
31539
+ line-height: 18px;
31985
31540
  }
31986
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
31987
- display: none;
31541
+
31542
+ .lyxynfj {
31543
+ font-family: Inter;
31544
+ font-style: normal;
31545
+ font-weight: normal;
31546
+ font-size: 12px;
31547
+ line-height: 18px;
31988
31548
  }
31989
- .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
31990
- transform: translateY(-50%);
31549
+
31550
+ .lpb2nxv {
31551
+ font-family: Inter;
31552
+ font-style: normal;
31553
+ font-weight: 500;
31554
+ font-size: 12px;
31555
+ line-height: 18px;
31991
31556
  }
31992
- .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
31993
- transform: translateY(-50%) rotateX(180deg);
31557
+
31558
+ .l1r8o3vv {
31559
+ font-family: Inter;
31560
+ font-style: normal;
31561
+ font-weight: bold;
31562
+ font-size: 12px;
31563
+ line-height: 18px;
31994
31564
  }
31995
- .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
31996
- background: #f2f5fa;
31565
+
31566
+ .lemnjy2 {
31567
+ font-family: Inter;
31568
+ font-style: normal;
31569
+ font-weight: normal;
31570
+ text-transform: uppercase;
31571
+ font-feature-settings: "cpsp" on;
31572
+ font-size: 12px;
31573
+ line-height: 18px;
31997
31574
  }
31998
- .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
31999
- display: block;
31575
+
31576
+ .lrc42gb {
31577
+ font-family: Inter;
31578
+ font-style: normal;
31579
+ font-weight: bold;
31580
+ text-transform: uppercase;
31581
+ font-feature-settings: "cpsp" on;
31582
+ font-size: 12px;
31583
+ line-height: 18px;
32000
31584
  }
32001
- .tta5kd2 .ant-table .ant-table-thead > tr > th.align-right {
32002
- padding-right: 25px;
31585
+
31586
+ .fqaz4mb {
31587
+ font-family: Inter;
31588
+ font-style: normal;
31589
+ font-weight: normal;
31590
+ font-size: 13px;
31591
+ line-height: 20px;
32003
31592
  }
32004
- .tta5kd2 .ant-table .ant-table-selection-column {
32005
- padding: 0 !important;
31593
+
31594
+ .f13we5o {
31595
+ font-family: Inter;
31596
+ font-style: normal;
31597
+ font-weight: normal;
31598
+ font-size: 13px;
31599
+ line-height: 20px;
32006
31600
  }
32007
- .tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
32008
- position: absolute;
32009
- left: 50%;
32010
- top: 50%;
32011
- transform: translate(-50%, -50%);
31601
+
31602
+ .ffmjua2 {
31603
+ font-family: Inter;
31604
+ font-style: normal;
31605
+ font-weight: normal;
31606
+ font-size: 12px;
31607
+ line-height: 18px;
32012
31608
  }
32013
- .tta5kd2 .ant-table .ant-table-selection-column:after {
32014
- display: none;
31609
+
31610
+ .fz2mxw0 {
31611
+ font-family: Inter;
31612
+ font-style: normal;
31613
+ font-weight: normal;
31614
+ font-size: 12px;
31615
+ line-height: 18px;
32015
31616
  }
32016
- .tta5kd2 .ant-table .ant-table-hide-scrollbar {
32017
- background: #fff;
31617
+
31618
+ .t1ertzoh {
31619
+ font-family: Inter;
31620
+ font-style: normal;
31621
+ font-weight: normal;
31622
+ font-feature-settings: "tnum" on, "lnum" on, "case" on;
31623
+ font-size: 13px;
31624
+ line-height: 20px;
32018
31625
  }
32019
- .tta5kd2 .ant-table .ant-table-placeholder {
32020
- background: inherit;
31626
+
31627
+ .t19bge8r {
31628
+ font-family: Inter;
31629
+ font-style: normal;
31630
+ font-weight: normal;
31631
+ font-feature-settings: "zero" on;
31632
+ font-size: 13px;
31633
+ line-height: 20px;
32021
31634
  }
32022
- .tta5kd2 .ant-table .ant-table-placeholder td {
32023
- position: static;
32024
- border: none;
32025
- background: inherit !important;
32026
- height: 100px;
32027
- vertical-align: middle;
31635
+
31636
+ .tjrzfyl {
31637
+ font-family: Inter;
31638
+ font-style: normal;
31639
+ font-weight: normal;
31640
+ font-feature-settings: "tnum" on, "lnum" on, "case" on;
31641
+ font-size: 12px;
31642
+ line-height: 18px;
32028
31643
  }
32029
- .tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
32030
- .tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
32031
- font-weight: bold;
32032
- font-size: 20px;
32033
- color: rgba(10, 37, 85, 0.6);
31644
+
31645
+ .tm6s7bo {
31646
+ font-family: Inter;
31647
+ font-style: normal;
31648
+ font-weight: 500;
31649
+ font-feature-settings: "tnum" on, "lnum" on, "case" on;
31650
+ font-size: 12px;
31651
+ line-height: 18px;
32034
31652
  }
32035
- .tta5kd2 .ant-table td.cell__action_ {
32036
- padding: 0 !important;
32037
- position: relative;
32038
- background: #fff;
31653
+
31654
+ .t19zq6ic {
31655
+ font-family: Inter;
31656
+ font-style: normal;
31657
+ font-weight: normal;
31658
+ font-feature-settings: "zero" on;
31659
+ font-size: 12px;
31660
+ line-height: 18px;
32039
31661
  }
32040
- .tta5kd2 .ant-table td.cell__action_ > * {
32041
- height: 100%;
32042
- display: flex;
32043
- align-items: center;
32044
- justify-content: flex-end;
32045
- padding-right: 8px;
31662
+
31663
+ .t1gduru8 {
31664
+ font-family: Inter;
31665
+ font-style: normal;
31666
+ font-weight: 500;
31667
+ font-feature-settings: "zero" on;
31668
+ font-size: 12px;
31669
+ line-height: 18px;
32046
31670
  }
32047
- .tta5kd2 .ant-table td.cell__action_ .menu-button {
32048
- width: 24px;
32049
- height: 24px;
32050
- cursor: pointer;
32051
- justify-content: center;
32052
- border-radius: 4px;
31671
+
31672
+ .t55raab {
31673
+ font-family: Inter;
31674
+ font-style: normal;
31675
+ font-weight: bold;
31676
+ font-feature-settings: "zero" on;
31677
+ font-size: 16px;
31678
+ line-height: 24px;
32053
31679
  }
32054
- .tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
32055
- background: #fff;
31680
+
31681
+ .u1w9abfe {
31682
+ font-family: Inter;
31683
+ font-style: normal;
31684
+ font-weight: normal;
31685
+ font-size: 10px;
31686
+ line-height: 12px;
32056
31687
  }
32057
31688
 
32058
31689
  .m15dvk92 {
@@ -32126,40 +31757,199 @@ input.rrg1fkn.ant-input {
32126
31757
  text-align: center;
32127
31758
  }
32128
31759
 
32129
- .tje3huy {
31760
+ .c1bus5hc {
31761
+ --color: white;
31762
+ height: 14px;
31763
+ width: 14px;
31764
+ border-radius: 50%;
31765
+ flex-shrink: 0;
31766
+ display: flex;
31767
+ align-items: center;
31768
+ justify-content: center;
31769
+ border: 1px solid var(--color);
31770
+ }
31771
+ .c1bus5hc .circle-inner {
31772
+ position: relative;
31773
+ height: 10px;
31774
+ width: 10px;
31775
+ border-radius: 50%;
31776
+ overflow: hidden;
31777
+ }
31778
+ .c1bus5hc .circle-content {
31779
+ position: absolute;
31780
+ height: 100%;
32130
31781
  width: 100%;
32131
- overflow: inherit;
32132
- white-space: inherit;
32133
- text-overflow: ellipsis;
31782
+ left: 0;
31783
+ top: 0;
31784
+ border-radius: 50%;
31785
+ background: linear-gradient(to right, var(--color) 50%, white 50%);
31786
+ transform: rotate(180deg);
31787
+ }
31788
+ .c1bus5hc .circle-child {
31789
+ position: absolute;
31790
+ height: 100%;
31791
+ width: 100%;
31792
+ left: 0;
31793
+ top: 0;
31794
+ margin-left: 50%;
31795
+ transform-origin: left;
31796
+ background: white;
31797
+ transform: rotate(0deg);
32134
31798
  }
32135
31799
 
32136
- .cav9p2m .ant-collapse-item {
32137
- border: 0px;
32138
- background-color: #fff;
31800
+ .c1up1pdz {
31801
+ width: 648px;
32139
31802
  }
32140
- .cav9p2m .ant-collapse-item .ant-collapse-header {
32141
- padding-top: 0px;
32142
- padding-bottom: 0px;
32143
- padding-left: 0px !important;
32144
- padding-right: 24px;
31803
+ .c1up1pdz.active {
31804
+ border-color: #0080ff;
32145
31805
  }
32146
- .cav9p2m .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
32147
- right: 0px;
31806
+ .c1up1pdz.active > header {
31807
+ background: rgba(0, 128, 255, 0.1);
32148
31808
  }
32149
- .cav9p2m .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
32150
- padding: 0px;
31809
+ .c1up1pdz .expand {
31810
+ padding: 12px;
31811
+ }
31812
+ .c1up1pdz .field-item {
31813
+ display: flex;
31814
+ padding: 10px 0;
31815
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
31816
+ }
31817
+ .c1up1pdz .field-item:last-child {
31818
+ border-bottom: none;
31819
+ padding-bottom: 0;
31820
+ }
31821
+ .c1up1pdz .field-item label {
31822
+ line-height: 32px;
31823
+ width: 100px;
31824
+ color: rgba(62, 70, 82, 0.6);
31825
+ }
31826
+ .c1up1pdz .help {
31827
+ color: rgba(62, 70, 82, 0.6);
31828
+ margin-top: 5px;
31829
+ }
31830
+ .c1up1pdz .ant-input-affix-wrapper,
31831
+ .c1up1pdz .ant-picker {
31832
+ width: 128px;
32151
31833
  }
32152
31834
 
32153
- .csf0p6c .ant-collapse-item .ant-collapse-header {
32154
- padding-right: 0px;
32155
- cursor: default;
31835
+ .c156wh19 {
31836
+ display: flex;
31837
+ align-items: center;
31838
+ justify-content: space-between;
31839
+ word-break: keep-all;
31840
+ }
31841
+ .c156wh19 .title {
31842
+ margin: 0 16px 0 8px;
31843
+ }
31844
+ .c156wh19 .retain {
31845
+ color: rgba(129, 138, 153, 0.6);
31846
+ }
31847
+ .c156wh19 .left {
31848
+ flex: 1;
31849
+ display: flex;
31850
+ overflow: hidden;
31851
+ align-items: center;
31852
+ justify-content: flex-start;
31853
+ white-space: nowrap;
31854
+ }
31855
+ .c156wh19 .left .title {
31856
+ max-width: 100%;
31857
+ overflow: hidden;
31858
+ text-overflow: ellipsis;
31859
+ }
31860
+ .c156wh19 .right {
31861
+ display: flex;
31862
+ align-items: center;
31863
+ }
31864
+ .c156wh19 .reverse {
31865
+ display: flex;
31866
+ flex-direction: row-reverse;
31867
+ align-items: center;
31868
+ }
31869
+ .c156wh19 .reverse .ant-switch {
31870
+ margin-left: 8px;
31871
+ }
31872
+ .c156wh19 .close {
31873
+ padding-left: 14px;
31874
+ margin-left: 14px;
31875
+ border-left: 1px solid rgba(129, 138, 153, 0.6);
31876
+ cursor: pointer;
32156
31877
  }
32157
31878
 
32158
- .c10crapj {
32159
- border-radius: 8px;
31879
+ .m126spxy {
31880
+ padding-bottom: 4px;
31881
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
32160
31882
  }
32161
- .c10crapj .ant-card-body {
32162
- padding: 20px 24px 24px 24px;
31883
+ .m126spxy .ant-btn-link {
31884
+ padding: 1px 10px;
31885
+ color: rgba(62, 70, 82, 0.6);
31886
+ border-radius: 4px;
31887
+ }
31888
+ .m126spxy .ant-btn-link.active {
31889
+ background: rgba(0, 128, 255, 0.1);
31890
+ color: #0096ff;
31891
+ }
31892
+
31893
+ .wpbf4pq {
31894
+ padding: 10px 0;
31895
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
31896
+ }
31897
+ .wpbf4pq .ant-input,
31898
+ .wpbf4pq .ant-picker {
31899
+ width: 80px;
31900
+ margin: 0 9px;
31901
+ text-align: center;
31902
+ }
31903
+ .wpbf4pq .options {
31904
+ padding: 12px 0 12px 16px;
31905
+ border-left: 2px solid rgba(129, 138, 153, 0.6);
31906
+ margin: 5px 0 5px 8px;
31907
+ }
31908
+ .wpbf4pq .week-day-option,
31909
+ .wpbf4pq .month-day-option {
31910
+ background: #f5f7fa;
31911
+ box-sizing: border-box;
31912
+ border-radius: 16px;
31913
+ margin-right: 8px;
31914
+ }
31915
+ .wpbf4pq .week-day-option:focus,
31916
+ .wpbf4pq .month-day-option:focus {
31917
+ color: inherit;
31918
+ border-color: #d9d9d9;
31919
+ }
31920
+ .wpbf4pq .week-day-option.active {
31921
+ background-color: #0096ff;
31922
+ border-color: #0096ff;
31923
+ color: #fff;
31924
+ }
31925
+ .wpbf4pq .week-day-option.en-text {
31926
+ width: 110px;
31927
+ margin-top: 4px;
31928
+ }
31929
+ .wpbf4pq .month-day-option {
31930
+ width: 32px;
31931
+ padding: 0;
31932
+ margin-bottom: 8px;
31933
+ }
31934
+ .wpbf4pq .month-day-option.active {
31935
+ background-color: #0096ff;
31936
+ border-color: #0096ff;
31937
+ color: #fff;
31938
+ }
31939
+
31940
+ .s1iv0tp1 .enabled-switch {
31941
+ display: flex;
31942
+ align-items: center;
31943
+ }
31944
+ .s1iv0tp1 .enabled-text {
31945
+ margin-right: 8px;
31946
+ }
31947
+
31948
+ .tje3huy {
31949
+ width: 100%;
31950
+ overflow: inherit;
31951
+ white-space: inherit;
31952
+ text-overflow: ellipsis;
32163
31953
  }
32164
31954
 
32165
31955
  .c198s9j3 {
@@ -32233,20 +32023,37 @@ input.rrg1fkn.ant-input {
32233
32023
  margin-left: 24px;
32234
32024
  }
32235
32025
 
32236
- .n3qomhu {
32237
- font-size: 90%;
32238
- font-weight: bold;
32239
- background-color: rgba(240, 243, 247, 0.6);
32240
- padding: 1px 4px 1px;
32241
- margin-left: 2px;
32242
- margin-right: 2px;
32243
- border: 1px solid rgba(213, 219, 227, 0.6);
32244
- border-radius: 4px;
32245
- word-break: break-all;
32026
+ .c10crapj {
32027
+ border-radius: 8px;
32028
+ }
32029
+ .c10crapj .ant-card-body {
32030
+ padding: 20px 24px 24px 24px;
32031
+ }
32032
+
32033
+ .cav9p2m .ant-collapse-item {
32034
+ border: 0px;
32035
+ background-color: #fff;
32036
+ }
32037
+ .cav9p2m .ant-collapse-item .ant-collapse-header {
32038
+ padding-top: 0px;
32039
+ padding-bottom: 0px;
32040
+ padding-left: 0px !important;
32041
+ padding-right: 24px;
32042
+ }
32043
+ .cav9p2m .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
32044
+ right: 0px;
32045
+ }
32046
+ .cav9p2m .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
32047
+ padding: 0px;
32246
32048
  }
32247
32049
 
32248
- .iiqau4c.ant-input-group.ant-input-group-compact {
32249
- display: flex;
32050
+ .csf0p6c .ant-collapse-item .ant-collapse-header {
32051
+ padding-right: 0px;
32052
+ cursor: default;
32053
+ }
32054
+
32055
+ .t3qomhu {
32056
+ margin: 0 2px;
32250
32057
  }
32251
32058
 
32252
32059
  .o8ocss1 {
@@ -32258,6 +32065,10 @@ input.rrg1fkn.ant-input {
32258
32065
  white-space: nowrap;
32259
32066
  }
32260
32067
 
32068
+ .iiqau4c.ant-input-group.ant-input-group-compact {
32069
+ display: flex;
32070
+ }
32071
+
32261
32072
  .shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
32262
32073
  border-radius: 6px;
32263
32074
  }
@@ -32399,6 +32210,216 @@ input.rrg1fkn.ant-input {
32399
32210
  display: inline-block;
32400
32211
  }
32401
32212
 
32213
+ .l4bld33 {
32214
+ width: 64px;
32215
+ height: 64px;
32216
+ display: flex;
32217
+ align-items: center;
32218
+ justify-content: center;
32219
+ position: relative;
32220
+ opacity: 0.2;
32221
+ }
32222
+
32223
+ .lgitjoj {
32224
+ position: absolute;
32225
+ width: 5px;
32226
+ height: 48px;
32227
+ left: 9.33px;
32228
+ top: 40.5px;
32229
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
32230
+ border-radius: 5px;
32231
+ transform: rotate(-128deg);
32232
+ transform-origin: top left;
32233
+ animation: loading-indicator1 1100ms ease-out infinite;
32234
+ }
32235
+
32236
+ .l13g0exg {
32237
+ position: absolute;
32238
+ width: 5px;
32239
+ height: 48px;
32240
+ left: 40.8px;
32241
+ top: 8.4px;
32242
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
32243
+ border-radius: 5px;
32244
+ transform: rotate(-8deg);
32245
+ transform-origin: top left;
32246
+ animation: loading-indicator2 1100ms ease-out infinite;
32247
+ }
32248
+
32249
+ .l1exo3h6 {
32250
+ position: absolute;
32251
+ width: 5px;
32252
+ height: 48px;
32253
+ left: 52.9px;
32254
+ top: 51.8px;
32255
+ background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
32256
+ border-radius: 5px;
32257
+ transform: rotate(112deg);
32258
+ transform-origin: top left;
32259
+ animation: loading-indicator3 1100ms ease-out infinite;
32260
+ }
32261
+
32262
+ .m1thnes4 {
32263
+ color: rgba(44, 56, 82, 0.6);
32264
+ text-align: center;
32265
+ display: flex;
32266
+ align-items: center;
32267
+ justify-content: center;
32268
+ flex-direction: column;
32269
+ height: 100%;
32270
+ }
32271
+ .m1thnes4 .link {
32272
+ color: #0080ff;
32273
+ cursor: pointer;
32274
+ }
32275
+
32276
+ .m1bixfdy {
32277
+ width: 100%;
32278
+ height: 100%;
32279
+ display: flex;
32280
+ flex-direction: column;
32281
+ }
32282
+ .m1bixfdy .name-toolbar {
32283
+ width: 100%;
32284
+ display: flex;
32285
+ line-height: 30px;
32286
+ padding: 0 16px;
32287
+ justify-content: space-between;
32288
+ }
32289
+ .m1bixfdy .name-toolbar .metric-extra {
32290
+ display: flex;
32291
+ font-size: 12px;
32292
+ align-items: center;
32293
+ }
32294
+ .m1bixfdy .name-toolbar .metric-extra .info-item {
32295
+ color: #a3b4cc;
32296
+ }
32297
+ .m1bixfdy .name-toolbar .metric-extra .info-item + .info-item {
32298
+ margin-left: 10px;
32299
+ }
32300
+ .m1bixfdy .name-toolbar .metric-extra .menu-trigger {
32301
+ margin-left: 10px;
32302
+ cursor: pointer;
32303
+ }
32304
+ .m1bixfdy .content {
32305
+ flex: 1;
32306
+ width: 100%;
32307
+ display: flex;
32308
+ justify-content: center;
32309
+ align-items: center;
32310
+ }
32311
+ .m1bixfdy .single-content {
32312
+ height: 65px;
32313
+ }
32314
+
32315
+ .lfamfcw {
32316
+ display: flex;
32317
+ align-items: center;
32318
+ white-space: nowrap;
32319
+ overflow: hidden;
32320
+ width: 100%;
32321
+ }
32322
+ .lfamfcw .ant-dropdown-trigger {
32323
+ margin-left: auto;
32324
+ font-size: 12px;
32325
+ }
32326
+
32327
+ .la6u9b4 {
32328
+ display: flex;
32329
+ justify-content: flex-start;
32330
+ align-items: center;
32331
+ font-size: 12px;
32332
+ cursor: pointer;
32333
+ }
32334
+ .la6u9b4:not(:last-child) {
32335
+ margin-right: 20px;
32336
+ }
32337
+ .la6u9b4.deselected {
32338
+ opacity: 0.4;
32339
+ }
32340
+ .la6u9b4.deselected .color-block {
32341
+ background: #b4beca !important;
32342
+ }
32343
+
32344
+ .chhvk8b {
32345
+ display: inline-block;
32346
+ height: 8px;
32347
+ width: 8px;
32348
+ margin-right: 8px;
32349
+ }
32350
+
32351
+ .e1sdlxq1 .ant-dropdown-menu-item {
32352
+ display: flex;
32353
+ align-items: center;
32354
+ font-size: 12px;
32355
+ margin: 0;
32356
+ }
32357
+
32358
+ .m16f7gpb {
32359
+ position: relative;
32360
+ }
32361
+ .m16f7gpb.hidden-xaxis .pointer-wrapper {
32362
+ bottom: -12px;
32363
+ }
32364
+ .m16f7gpb .metric-toolbar {
32365
+ display: flex;
32366
+ justify-content: space-between;
32367
+ line-height: 30px;
32368
+ margin: 0 16px;
32369
+ }
32370
+ .m16f7gpb .metric-toolbar .metric-extra {
32371
+ display: flex;
32372
+ font-size: 12px;
32373
+ align-items: center;
32374
+ }
32375
+ .m16f7gpb .metric-toolbar .metric-extra .info-item {
32376
+ color: #a3b4cc;
32377
+ }
32378
+ .m16f7gpb .metric-toolbar .metric-extra .info-item + .info-item {
32379
+ margin-left: 10px;
32380
+ }
32381
+ .m16f7gpb .metric-toolbar .metric-extra .menu-trigger {
32382
+ margin-left: 10px;
32383
+ cursor: pointer;
32384
+ }
32385
+ .m16f7gpb .recharts-xAxis {
32386
+ font-size: 12px;
32387
+ }
32388
+ .m16f7gpb .pointer-wrapper {
32389
+ position: absolute;
32390
+ bottom: 10px;
32391
+ padding: 0 8px;
32392
+ border-radius: 4px;
32393
+ font-size: 12px;
32394
+ color: #fff;
32395
+ background: rgba(0, 0, 0, 0.75);
32396
+ transform: translateX(-50%);
32397
+ }
32398
+
32399
+ .t1ipvk51 {
32400
+ min-width: 200px;
32401
+ }
32402
+
32403
+ .t1kgldps {
32404
+ display: flex;
32405
+ align-items: center;
32406
+ justify-content: space-between;
32407
+ background-color: rgba(0, 0, 0, 0.75);
32408
+ color: #b4beca;
32409
+ font-size: 12px;
32410
+ padding: 3px 6px;
32411
+ }
32412
+ .t1kgldps:first-child {
32413
+ padding-top: 3px;
32414
+ }
32415
+ .t1kgldps:last-child {
32416
+ padding-bottom: 3px;
32417
+ }
32418
+ .t1kgldps .column-value {
32419
+ color: #fff;
32420
+ margin-left: 8px;
32421
+ }
32422
+
32402
32423
  .t19ustft .date {
32403
32424
  margin-right: 4px;
32404
32425
  }
@@ -32475,175 +32496,107 @@ input.rrg1fkn.ant-input {
32475
32496
  .t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
32476
32497
  background-color: #00ba5d;
32477
32498
  }
32478
- .t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
32479
- background-color: #0080ff;
32480
- }
32481
- .t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
32482
- background-color: #6b7d99;
32483
- }
32484
- .t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
32485
- background-color: #7E41FF;
32486
- }
32487
-
32488
- .m1thnes4 {
32489
- color: rgba(44, 56, 82, 0.6);
32490
- text-align: center;
32491
- display: flex;
32492
- align-items: center;
32493
- justify-content: center;
32494
- flex-direction: column;
32495
- height: 100%;
32496
- }
32497
- .m1thnes4 .link {
32498
- color: #0080ff;
32499
- cursor: pointer;
32500
- }
32501
-
32502
- .m1bixfdy {
32503
- width: 100%;
32504
- height: 100%;
32505
- display: flex;
32506
- flex-direction: column;
32507
- }
32508
- .m1bixfdy .name-toolbar {
32509
- width: 100%;
32510
- display: flex;
32511
- line-height: 30px;
32512
- padding: 0 16px;
32513
- justify-content: space-between;
32514
- }
32515
- .m1bixfdy .name-toolbar .metric-extra {
32516
- display: flex;
32517
- font-size: 12px;
32518
- align-items: center;
32499
+ .t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
32500
+ background-color: #0080ff;
32519
32501
  }
32520
- .m1bixfdy .name-toolbar .metric-extra .info-item {
32521
- color: #a3b4cc;
32502
+ .t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
32503
+ background-color: #6b7d99;
32522
32504
  }
32523
- .m1bixfdy .name-toolbar .metric-extra .info-item + .info-item {
32524
- margin-left: 10px;
32505
+ .t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
32506
+ background-color: #7E41FF;
32525
32507
  }
32526
- .m1bixfdy .name-toolbar .metric-extra .menu-trigger {
32527
- margin-left: 10px;
32528
- cursor: pointer;
32508
+
32509
+ .clm1wy1 {
32510
+ width: 192px;
32511
+ height: 246px;
32512
+ border-radius: 4px;
32529
32513
  }
32530
- .m1bixfdy .content {
32531
- flex: 1;
32514
+ .clm1wy1 > .ant-picker-calendar,
32515
+ .clm1wy1 > .ant-picker-calendar .ant-picker-panel {
32532
32516
  width: 100%;
32533
- display: flex;
32534
- justify-content: center;
32535
- align-items: center;
32517
+ background-color: rgba(245, 247, 250, 0.6);
32518
+ border-top: none;
32536
32519
  }
32537
- .m1bixfdy .single-content {
32538
- height: 65px;
32520
+ .clm1wy1 > .ant-picker-calendar .ant-picker-body,
32521
+ .clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
32522
+ padding: 0 16px;
32539
32523
  }
32540
-
32541
- .lfamfcw {
32542
- display: flex;
32543
- align-items: center;
32544
- white-space: nowrap;
32545
- overflow: hidden;
32524
+ .clm1wy1 > .ant-picker-calendar .ant-picker-content,
32525
+ .clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
32546
32526
  width: 100%;
32527
+ height: 180px;
32528
+ border-spacing: 0;
32547
32529
  }
32548
- .lfamfcw .ant-dropdown-trigger {
32549
- margin-left: auto;
32550
- font-size: 12px;
32530
+ .clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
32531
+ .clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
32532
+ margin-bottom: 8px;
32551
32533
  }
32552
-
32553
- .la6u9b4 {
32554
- display: flex;
32555
- justify-content: flex-start;
32556
- align-items: center;
32557
- font-size: 12px;
32558
- cursor: pointer;
32534
+ .clm1wy1 > .ant-picker-calendar .ant-picker-content th,
32535
+ .clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
32536
+ width: 22px;
32559
32537
  }
32560
- .la6u9b4:not(:last-child) {
32561
- margin-right: 20px;
32538
+ .clm1wy1 > .ant-picker-calendar .ant-picker-content td,
32539
+ .clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
32540
+ padding: 0;
32562
32541
  }
32563
- .la6u9b4.deselected {
32542
+ .clm1wy1 .ant-picker-cell {
32543
+ color: rgba(62, 70, 82, 0.6);
32564
32544
  opacity: 0.4;
32565
32545
  }
32566
- .la6u9b4.deselected .color-block {
32567
- background: #b4beca !important;
32546
+ .clm1wy1 .ant-picker-cell-in-view {
32547
+ color: rgba(62, 70, 82, 0.6);
32548
+ opacity: 1;
32568
32549
  }
32569
-
32570
- .chhvk8b {
32571
- display: inline-block;
32572
- height: 8px;
32573
- width: 8px;
32574
- margin-right: 8px;
32550
+ .clm1wy1 .ant-picker-cell-in-view > .active {
32551
+ color: #3e4652;
32575
32552
  }
32576
-
32577
- .e1sdlxq1 .ant-dropdown-menu-item {
32578
- display: flex;
32579
- align-items: center;
32580
- font-size: 12px;
32581
- margin: 0;
32553
+ .clm1wy1 .ant-picker-cell::before {
32554
+ pointer-events: none;
32582
32555
  }
32583
32556
 
32584
- .m16f7gpb {
32585
- position: relative;
32586
- }
32587
- .m16f7gpb.hidden-xaxis .pointer-wrapper {
32588
- bottom: -12px;
32557
+ .t1tsm00v {
32558
+ color: rgba(129, 138, 153, 0.6);
32559
+ box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
32560
+ backdrop-filter: blur(10px);
32561
+ padding: 7px 10px;
32589
32562
  }
32590
- .m16f7gpb .metric-toolbar {
32563
+
32564
+ .c167wnad {
32565
+ color: rgba(62, 70, 82, 0.6);
32591
32566
  display: flex;
32592
32567
  justify-content: space-between;
32593
- line-height: 30px;
32594
- margin: 0 16px;
32595
- }
32596
- .m16f7gpb .metric-toolbar .metric-extra {
32597
- display: flex;
32598
- font-size: 12px;
32599
32568
  align-items: center;
32569
+ padding: 8px 16px;
32600
32570
  }
32601
- .m16f7gpb .metric-toolbar .metric-extra .info-item {
32602
- color: #a3b4cc;
32603
- }
32604
- .m16f7gpb .metric-toolbar .metric-extra .info-item + .info-item {
32605
- margin-left: 10px;
32606
- }
32607
- .m16f7gpb .metric-toolbar .metric-extra .menu-trigger {
32608
- margin-left: 10px;
32571
+ .c167wnad .anticon {
32609
32572
  cursor: pointer;
32610
32573
  }
32611
- .m16f7gpb .recharts-xAxis {
32612
- font-size: 12px;
32613
- }
32614
- .m16f7gpb .pointer-wrapper {
32615
- position: absolute;
32616
- bottom: 10px;
32617
- padding: 0 8px;
32618
- border-radius: 4px;
32619
- font-size: 12px;
32620
- color: #fff;
32621
- background: rgba(0, 0, 0, 0.75);
32622
- transform: translateX(-50%);
32574
+ .c167wnad .anticon:hover {
32575
+ color: #0096ff;
32623
32576
  }
32624
32577
 
32625
- .t1ipvk51 {
32626
- min-width: 200px;
32578
+ .cxhf7dh {
32579
+ text-align: center;
32627
32580
  }
32628
-
32629
- .t1kgldps {
32581
+ .cxhf7dh .dots {
32630
32582
  display: flex;
32631
- align-items: center;
32632
- justify-content: space-between;
32633
- background-color: rgba(0, 0, 0, 0.75);
32634
- color: #b4beca;
32635
- font-size: 12px;
32636
- padding: 3px 6px;
32583
+ justify-content: center;
32637
32584
  }
32638
- .t1kgldps:first-child {
32639
- padding-top: 3px;
32585
+ .cxhf7dh .dot {
32586
+ display: inline-block;
32587
+ width: 2px;
32588
+ height: 2px;
32589
+ border-radius: 1px;
32590
+ background: #0096ff;
32640
32591
  }
32641
- .t1kgldps:last-child {
32642
- padding-bottom: 3px;
32592
+ .cxhf7dh .dot:not(:last-child) {
32593
+ margin-right: 2px;
32643
32594
  }
32644
- .t1kgldps .column-value {
32645
- color: #fff;
32646
- margin-left: 8px;
32595
+ .cxhf7dh .bar {
32596
+ width: 9px;
32597
+ height: 2px;
32598
+ background: #0096ff;
32599
+ border-radius: 2px;
32647
32600
  }
32648
32601
 
32649
32602
  .sq6vos1 {
@@ -32938,6 +32891,72 @@ input.rrg1fkn.ant-input {
32938
32891
  transform: translateY(-4px);
32939
32892
  }
32940
32893
 
32894
+ .f1p9ti6d {
32895
+ width: 100%;
32896
+ margin-bottom: 0 !important;
32897
+ flex-flow: nowrap !important;
32898
+ line-break: auto;
32899
+ }
32900
+ .f1p9ti6d > .ant-form-item-label {
32901
+ text-align: left !important;
32902
+ padding-bottom: 0 !important;
32903
+ }
32904
+ .f1p9ti6d > .ant-form-item-label > label {
32905
+ min-height: 32px;
32906
+ height: auto;
32907
+ font-size: 13px;
32908
+ color: rgba(44, 56, 82, 0.6);
32909
+ white-space: normal;
32910
+ }
32911
+ .f1p9ti6d.ant-form-item-has-error .ant-input {
32912
+ border-color: #ff4d4f !important;
32913
+ }
32914
+ .f1p9ti6d .ant-form-item-explain {
32915
+ margin-top: 4px;
32916
+ font-size: 12px;
32917
+ min-height: 0px;
32918
+ }
32919
+ .f1p9ti6d .ant-form-item-extra {
32920
+ font-size: 12px;
32921
+ color: rgba(44, 56, 82, 0.6);
32922
+ min-height: 0px;
32923
+ }
32924
+
32925
+ .w1xcixj5.outside-tag {
32926
+ padding-left: 0;
32927
+ }
32928
+ .w1xcixj5.outside-tag .inside-tag {
32929
+ border-radius: 4px 0 0 4px;
32930
+ padding-right: 4px;
32931
+ margin-right: 4px;
32932
+ }
32933
+
32934
+ .sut42l0 {
32935
+ padding: 0 8px;
32936
+ height: 18px;
32937
+ }
32938
+
32939
+ .mfsz1jz {
32940
+ padding: 2px 8px;
32941
+ height: 24px;
32942
+ }
32943
+
32944
+ .tnd6h4m {
32945
+ margin: 0;
32946
+ }
32947
+
32948
+ .i1qw4clm {
32949
+ margin-right: 4px;
32950
+ height: 16px;
32951
+ }
32952
+
32953
+ .n1r5ku5l.ant-tag.ant-tag-gray {
32954
+ font-weight: 700;
32955
+ color: #00122e;
32956
+ background-color: rgba(237, 241, 250, 0.6);
32957
+ border: 1px solid rgba(211, 218, 235, 0.6);
32958
+ }
32959
+
32941
32960
  .tc40oxa {
32942
32961
  margin-bottom: 4px;
32943
32962
  color: rgba(44, 56, 82, 0.6);
@@ -33131,65 +33150,6 @@ input.rrg1fkn.ant-input {
33131
33150
  margin-right: 8px;
33132
33151
  }
33133
33152
 
33134
- .f1p9ti6d {
33135
- width: 100%;
33136
- margin-bottom: 0 !important;
33137
- flex-flow: nowrap !important;
33138
- line-break: auto;
33139
- }
33140
- .f1p9ti6d > .ant-form-item-label {
33141
- text-align: left !important;
33142
- padding-bottom: 0 !important;
33143
- }
33144
- .f1p9ti6d > .ant-form-item-label > label {
33145
- min-height: 32px;
33146
- height: auto;
33147
- font-size: 13px;
33148
- color: rgba(44, 56, 82, 0.6);
33149
- white-space: normal;
33150
- }
33151
- .f1p9ti6d.ant-form-item-has-error .ant-input {
33152
- border-color: #ff4d4f !important;
33153
- }
33154
- .f1p9ti6d .ant-form-item-explain {
33155
- margin-top: 4px;
33156
- font-size: 12px;
33157
- min-height: 0px;
33158
- }
33159
- .f1p9ti6d .ant-form-item-extra {
33160
- font-size: 12px;
33161
- color: rgba(44, 56, 82, 0.6);
33162
- min-height: 0px;
33163
- }
33164
-
33165
- .sut42l0 {
33166
- padding: 0 8px;
33167
- height: 18px;
33168
- }
33169
-
33170
- .mfsz1jz {
33171
- padding: 2px 8px;
33172
- height: 24px;
33173
- }
33174
-
33175
- .tnd6h4m {
33176
- margin: 0;
33177
- }
33178
-
33179
- .i1qw4clm {
33180
- margin-right: 4px;
33181
- height: 16px;
33182
- }
33183
-
33184
- .w1xcixj5.outside-tag {
33185
- padding-left: 0;
33186
- }
33187
- .w1xcixj5.outside-tag .inside-tag {
33188
- border-radius: 4px 0 0 4px;
33189
- padding-right: 4px;
33190
- margin-right: 4px;
33191
- }
33192
-
33193
33153
  .iwsze0q {
33194
33154
  margin-right: 4px;
33195
33155
  height: 16px;