zhangyanpeng
2024-05-29 1f227a1cf627526701c652ba84bae3e430bba8d3
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
 
.tips {
    position: fixed;
    margin: 0;
    width: 150px;
    z-index: 9999;
    background: #fff;
    box-shadow: 3px 3px 6px #d5d5d5;
    font-size: 12px;
    padding: 0px;
    max-height: 400px;
    overflow-y: scroll;
}
 
.tips-item {
    text-align: left;
    box-sizing: border-box;
    display: block;
    width: 100%;
    line-height: 1.42857143;
    margin: 1px 0;
    padding: 6px 11px;
    color: #333;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1.42857143;
    border-bottom: solid 1px #c3c3c3;
    background: #f1efef;
}
 
.tips-item:hover {
    background: #e2e0db;
}
 
.editTips li:last-child {
    border-bottom: none;
}
 
.editTips li.active {
    background: #fee188;
}