10646c94
Andy
add
|
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
|
/*tab 切换 正常 异常*/
.tab-btn-wrap li {
float: left;
padding: 0 15px;
height: 32px;
line-height: 32px;
cursor: pointer;
background: rgba(255,255,255,1);
text-align: center;
margin-bottom: 18px;
}
.tab-btn-wrap li:nth-of-type(1) {
border-left: 1px solid #D9D9D9;
border-top: 1px solid #D9D9D9;
border-bottom: 1px solid #D9D9D9;
border-right: 1px solid #D9D9D9;
border-radius: 4px 0 0 4px !important;
}
.tab-btn-wrap li:nth-of-type(2) {
border-right: 1px solid #D9D9D9;
border-top: 1px solid #D9D9D9;
border-bottom: 1px solid #D9D9D9;
/* border-radius: 0 4px 4px 0 !important; */
}
.tab-btn-wrap li:nth-of-type(3) {
border-right: 1px solid #D9D9D9;
border-top: 1px solid #D9D9D9;
border-bottom: 1px solid #D9D9D9;
border-radius: 0 4px 4px 0 !important;
}
.tab-btn-wrap li.tabAction {
border: 1px solid #1E95CD;
color: #1E95CD;
}
/*map*/
.map-wrap{
height: 500px;
width: 680px;
}
.allmap{
height: 500px;
width: 680px;
}
/*#dituContent{}*/
#allmap label{max-width:none;}
.BMap_cpyCtrl
{
display:none;
}
.anchorBL{
display:none;
}
.display-none{
display: none;
}
/*pdaname*/
.showpdaName{
height: 24px;
text-align: center;
line-height: 24px;
background-color: #1E95CD;
border: none;
padding: 1px 15px;
white-space: nowrap;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-stretch: normal;
font-size: 12px;
font-family:"微软雅黑";
z-index: 80;
border-radius: 50px!important;
color: #fff;
}
.showpdaoutName{
height: 24px;
text-align: center;
line-height: 24px;
background-color: #f3173b;
border: none;
padding: 1px 15px;
white-space: nowrap;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-stretch: normal;
font-size: 12px;
font-family:"微软雅黑";
z-index: 80;
border-radius: 50px!important;
color: #fff;
}
|