forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-15 cce0782f2b17b2ee64c3dccc5b346d563fb21294
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
@import '../../styles/theme.less';
 
.caseFolderCheck {
    &-folderHeader {
        display: flex;
        align-items: center;
        justify-content: space-between;
 
        &-title {
            display: flex;
            align-items: center;
        }
    }
 
    &-folderMain {
        margin-top: 20px;
 
        &-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 8px 8px 16px;
            background-color: @main-color-1;
            border-radius: 10px;
            transition: transform 1s;
            margin-bottom: 16px;
 
            &::before {
                content: '';
                position: absolute;
                top: 11px;
                height: 14px;
                width: 2px;
                left: 8px;
                background-color: @main-color;
            }
 
            .public-rightBorder::before {
                border-color: @text-color;
            }
        }
 
        &-content {
            background-color: #ffffff;
            margin-bottom: 16px;
        }
 
        &-title {
            display: flex;
        }
 
        &-show {
            color: @main-color;
            cursor: pointer;
        }
 
        &-rotate {
            transform: rotate(180deg);
        }
    }
}