zs
2025-06-04 5a149d626ae8bc3fa4bddbb53f8caf40f51f6da6
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
.option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
}
 
:global(.information-table) {
  .hover {
    display: none;
  }
}
:global(.information-table .row--hover) {
  .hover {
    display: block;
  }
}
 
:global(.information-table) {
  .hoverStatic {
    display: block;
  }
}
:global(.information-table .row--hover) {
  .hoverStatic {
    display: none;
  }
}
.icon {
  // width:
  color: #a8abb2;
  margin-right: -2px;
  margin-top: -1px;
}
 
.select {
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  padding: 4px 12px;
  gap: 6px;
  min-height: 32px;
  line-height: 24px;
  border-radius: var(--cs-border-radius-base);
  background-color: var(--cs-fill-color-blank);
  transition: var(--cs-transition-duration);
  box-shadow: 0 0 0 1px var(--cs-border-color) inset;
  display: flex;
  justify-content: space-between;
  align-items: center;
}