ywsq.scss
1.18 KB
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
.ywsq {
display: flex;
/deep/.el-collapse-item__header {
padding-left: 20px;
font-weight: 700;
font-size: 16px;
}
.ywsq-left {
width: 25%;
.box-card {
margin-bottom: 20px;
cursor: pointer;
}
.item-title {
font-size: 18px;
font-weight: 700;
padding: 20px;
&:hover {
background-color: $light-blue;
color: $menuText;
}
}
.item-list {
padding: 0 20px 0 20px;
.active {
background-color: $light-blue;
color: $menuText;
}
li {
line-height: 36px;
background-color: rgb(235, 235, 235);
margin-top: 10px;
padding-left: 10px;
border-radius: 2px;
box-sizing: border-box;
border: 1px solid rgb(235, 235, 235);
&:hover {
background-color: $light-blue;
color: $menuText;
}
}
}
}
.ywsq-right {
width: calc(75% - 20px);
margin-left: 20px;
.right-title {
font-size: 18px;
font-weight: 700;
padding: 20px;
border-bottom: 1px solid $borderColor;
.type-content {
padding: 20px;
@include flex;
}
}
}
}