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
.dict {
.left-content {
border: 1px solid #ebeef5;
.left-title {
position: relative;
height: 40px;
line-height: 40px;
text-align: center;
background-color: #f5f7fa;
font-size: 16px;
.left-add {
position: absolute;
top: 0;
right: 0;
cursor: pointer;
line-height: normal;
> i {
padding: 0 8px;
line-height: 40px;
font-size: 24px;
color: #409eff;
}
}
}
.left-search {
font-size: 14px;
text-align: center;
padding: 10px 20px;
}
.dict-list {
height: calc(100vh - #{"250px"});
overflow-y: auto;
overflow-x: hidden;
&::-webkit-scrollbar-thumb {
background-color: #fff;
}
&:hover::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.4);
}
.dict-item {
font-size: 15px;
padding: 10px 20px;
padding-right: 40px;
text-align: left;
position: relative;
.item-del {
position: absolute;
cursor: pointer;
top: 12px;
right: 8px;
i {
margin-left: 3px;
}
}
}
}
}
.active {
color: #0a98ff;
}
.type-title {
margin: 10px 5px;
margin-bottom: 20px;
font-size: 16px;
}
}