1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
html, body, div, ul, li, a {
    padding: 0;
    margin: 0;
    font-size: 12px;
}
a {
    cursor: pointer;
}
html, body {
    overflow: hidden;
}
html, body, .container {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}
#map {
    width: 100%;
    height: 100%;
    background-color: #000000;
}
.page-menu {
    position: absolute;
    width: 132px;
    right: 60px;
    bottom: 40px;
    z-index: 999999;
    background-color: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.page-menu .item-list:before,  .page-menu .item-list:after {
    display: table;
    content: " ";
}
.page-menu .item-list:after {
    clear: both;
}
.page-menu .item-list {
    width: 132px;
    margin-bottom: 8px;
}
.page-menu .item-list a.item, .page-menu .item-list a.item-special {
    display: block;
    float: right;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: right 0;
    background-color: none;
}
 
.page-menu .item-list a.item-special.show {
    background-image: url('../image/menu-up.gif');
}
.page-menu .item-list a.item-special.hide {
    background-image: url('../image/menu-down.gif');
}
 
.page-menu .item-list a.item:hover {
    width: 132px;
}
/* 故障管理 */
.page-menu .item-list a.item.breakdown {
    background-image: url('../image/tooltip-breakdown.gif');
}
.page-menu .item-list a.item.breakdown:hover {
     background-image: url('../image/tooltip-breakdown-open.gif'); 
}
/* 告警管理 */
.page-menu .item-list a.item.warning {
    background-image: url('../image/tooltip-warning.gif');
}
.page-menu .item-list a.item.warning:hover {
     background-image: url('../image/tooltip-warning-open.gif'); 
}
/* 作业管理 */
.page-menu .item-list a.item.work {
    background-image: url('../image/tooltip-work.gif');
}
.page-menu .item-list a.item.work:hover {
     background-image: url('../image/tooltip-work-open.gif'); 
}
/* 用户管理 */
.page-menu .item-list a.item.user {
    background-image: url('../image/tooltip-user.gif');
}
.page-menu .item-list a.item.user:hover {
     background-image: url('../image/tooltip-user-open.gif'); 
}
.visible {
    visibility: hidden;
}