zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
.searchbox-container {
    overflow: hidden;
    position: relative;
    /* width: 100%; */
    height: 100%;
}
 
.searchbox-input {
    display: inline-block;
    float: left;
}
 
.searchbox-input-span {
    display: block;
    margin: 3px;
    padding: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: #B8B8B8;
    position: relative;
    background-color: #FFFFFF;
}
 
.searchbox-input-text {
    font-family: Arial, Helvetica, "Microsoft YaHei", sans-serif;
    background: #FFF none repeat scroll 0% 0%;
    padding: 3px 20px 3px 5px;
    border: 0px none;
    font-size: 16px;
    color: #000000;
    outline: 0px none;
    width: 380px;
    height: 20px;
}
 
.searchbox-input-clear {
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 3px;
    width: 27px;
    height: 28px;
    background: transparent url("http://webmap0.map.bdstatic.com/wolfman/static/common/images/tools_img_a1b8ead.png") no-repeat scroll -120px -249px;
    display: none;
}
 
.searchbox-button {
    display: inline-block;
    border: 0px none;
    cursor: pointer;
    background-image: url('../infowindow/icon/search.png');
    width: 45px;
    height: 26px;
    background-position: center center;
    background-repeat: no-repeat;
    /*float: right;*/
    margin: 4px 5px;
    border-radius: 2px;
}
 
.searchbox-button:hover {
    border: 0px none !important;
}
 
.searchbox-suggest-container {
    position: absolute;
    background-color: #FFF;
    border: 1px solid #B8B8B8;
    z-index: 1000;
    display: none;
    padding: 3px;
    margin-left: 3px;
    overflow: hidden;
}
 
.searchbox-suggest {}
 
.searchbox-suggest-item {}
 
.searchbox-suggest-item:hover a {
    background-color: #EBEBEB;
}
 
.searchbox-suggest-item a {
    display: block;
    height: 35px;
    line-height: 35px;
    padding-right: 10px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}
 
.searchbox-suggest-item i {
    padding-left: 35px;
    font-style: normal;
    color: #666;
    position: relative;
    z-index: 1;
    padding-top: 1px;
}
 
.searchbox-suggest-item i.search {
    background: transparent url("http://webmap1.map.bdstatic.com/wolfman/static/common/images/ui3/tools/suggestion-icon_013979b.png") no-repeat scroll 12px -12px;
}
 
.searchbox-suggest-item em {
    margin-left: 10px;
    margin-right: 20px;
    font-style: normal;
    color: #999;
}
 
input::-ms-clear {
    display: none;
}