zhangxiaoxu123
2023-05-04 c1c0e7fd8095d577c43f036844db0cd1f232cef9
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
.search {
    .operation {
        margin-bottom: 2vh;
    }
    .select-count {
        font-weight: 600;
        color: #40a9ff;
    }
    .select-title {
        font-weight: 600;
        color: #40a9ff;
    }
    .select-clear {
        margin-left: 10px;
    }
    .page {
        margin-top: 2vh;
    }
    .drop-down {
        margin-left: 5px;
    }
}
 
.tree-bar {
    overflow: auto;
    margin-top: 5px;
    position: relative;
    min-height: 80px;
}
 
.tree-bar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
 
.tree-bar::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 2px #d1d1d1;
    background: #e4e4e4;
}
 
.expand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .icon {
        cursor: pointer;
    }
    :hover {
        color: #1890ff !important;
    }
}