schangxiang@126.com
2025-05-20 e92383f760f42050f55aa032c649814deb3b7752
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.pane {
  width: 100%;
  height: 100%;
}
.csTabs,
.csDefaultTabs,
.--small {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
 
  :global(.cs-tabs__nav-wrap) {
    padding: 0 20px;
  }
  :global(.cs-tabs__header) {
    margin-bottom: 18px;
  }
  :global(.cs-tabs__content) {
    flex: 1;
    padding: 0 20px;
    padding-bottom: 20px;
  }
  :global(.cs-tabs__active-bar) {
    // width: 22px !important;
    height: 3px;
    // margin-left: 17px;
    background-color: #5a84ff;
  }
  :global(.cs-tabs__item) {
    font-size: 16px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #2b2e32;
  }
  :global(.is-active) {
    color: #5a84ff;
  }
  :global(.cs-tabs__nav-wrap::after) {
    height: 1px;
    background-color: #dbdbdb;
  }
}
 
.csDefaultTabs {
  height: fit-content;
  :global(.cs-tabs__content) {
    height: fit-content;
    padding: 0 20px;
    padding-bottom: 20px;
    overflow: initial;
  }
}
 
.--small {
  :global(.cs-tabs__item) {
    font-size: 14px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #646464;
  }
  :global(.cs-tabs__active-bar) {
    height: 4px;
    background: #2f71ee;
    border-radius: 10px 10px 0px 0px;
    opacity: 1;
    margin-left: 0;
  }
  :global(.cs-tabs__content) {
    height: fit-content;
    padding: 0;
    padding-bottom: 0;
    overflow: initial;
  }
}