ct_autocompleter.css
1.48 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
71
72
73
74
75
76
.ct_auto_wrap{
position: relative;
display: inline-block;
}
.ct_autocompleter{
width: 230px;
border: 1px solid #cbcbcb;
position: absolute;
z-index: 99;
top: 46px;
background: #fff;
box-shadow: 0 2px 5px rgba(0,0,0,.1);
display: none;
padding: 15px 0;
margin-bottom: 10px;
}
.ct_autocompleter>ul.item-list{
list-style: none;
padding-left: 0;
margin-bottom: 0;
}
.ct_autocompleter>ul.item-list>li.item{
padding: 5px 15px;
cursor: pointer;
}
.ct_autocompleter>ul.item-list>li.item.active{
background: #5bd460;
color: #fff;
outline: 0;
box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
}
.ct_autocompleter>ul.item-list>li.item:first-child{
margin-top: 0;
}
.ct_autocompleter>ul.item-list>li.item:last-child{
margin-bottom: 0;
}
.ct_autocompleter>ul.item-list>li.item .sch_nbbm{
font-family: 微软雅黑;
font-size: 13px;
font-weight: 600;
}
.ct_autocompleter>ul.item-list>li.item .sch_lp{
display: inline-block;
font-size: 12px;
background: #efefef;
text-align: center;
margin-left: 7px;
color: #000000;
min-width: 30px;
}
.ct_autocompleter>ul.item-list>li.item .sub_text{
font-size: 13px;
color: #797979;
display: block;
text-indent: 2px;
padding-top: 3px;
}
.ct_autocompleter>ul.item-list>li.item.active .sub_text{
color: #fff;
}
.ct_autocompleter>ul.item-list>li.item.active_grey.active{
background: #8e8e8e;
}