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
| .z-isearch {
| position:relative;
| width:100%;
| height:100%;
| }
| .z-isearch-panel {
| position:absolute;
| top:28px;
| left:0px;
| width:100%;
| border:1px solid #ccc;
| border-top:none;
| z-index:1;
| background:#fff;
| display:none;
| }
| .z-isearch-panel li{
| min-height: 26px;
| line-height: 26px;
| overflow: hidden;
| cursor: pointer;
| padding:0px 5px;
| }
| .z-isearch-panel li:hover {
| background-color:#eee;
| }
|
|