lxw
2020-07-11 9db52f2f2dd3665fe9da1ae5657e0167c3a34d40
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* image change css */
div {
    margin: 0;
    padding: 0;
}
.img-change {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: pink;
    border: 1px solid #bbb;
 
}
.img-change .img-list {
    width: 100%;
    height: 100%;
    overflow:hidden;
    background-color: gray;
}
.img-change .img-list .block {
    display: none;
    width: 100%;
    height: 100%;
    padding: 1px 0;
    background-color: #90BBF6;
}
 
/* real time data background */
.img-change .img-list .block.real-time {
    background-size: 100% 100%;
    background-image: url('../image/real_time.jpg');
}
/* history data background */
.img-change .img-list .block.history {
    background-size: 100% 100%;
    background-image: url('../image/history_data.jpg');
}
 
/* equipment state background */
.img-change .img-list .block.equip {
    background-size: 100% 100%;
    background-image: url('../image/equip.jpg');
}
 
/* power manage background */
.img-change .img-list .block.power {
    background-size: 100% 100%;
    background-image: url('../image/power.jpg');
}
 
.img-change .img-list .block-show {
    display: block;
}
.img-change .img-list .block .block-title {
    margin-top: 10%;
    margin-left: 8%;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
 
.img-change .img-list .block .block-content {
    margin-top: 10px;
    margin-left: 8%;
    font-size: 20px;
    color: #fff;
}
.img-change .img-list .block .block-btn {
    margin-top: 10px;
}
.img-change .img-list .block .block-btn a {
    display: block;
    margin-left: 8%;
    width: 150px;
    height: 42px;
    line-height: 42px;
    text-align:center;
    text-decoration:none;
    color: #fff;
    /* font-weight: bold; */
    background-color:none;
    border: 1px solid #fff;
}
.img-change .img-list .block .block-btn a:hover {
    background-color: #fff;
    color: #000;
}
.img-change .img-list-btn:before, .img-change .img-list-btn:after {
    display: table;
    content: " ";
}
.img-change .img-list-btn:after {
    clear: both;
}
.img-change .img-list-btn {
    position: absolute;
    /* width: 160px; */
    right: 1%;
    bottom: 0;
    padding-bottom: 20px;
    background-color: none;
}
.img-change .img-list-btn .btn-list {
    float: left;
    width: 40px;
    height: 5px;
    background-color: #757272;
    margin-left: 10px;
    cursor: pointer;
}
.img-change .img-list-btn .btn-list:hover {
    background-color: #fff;
    color: #000;
}
.img-change .img-list-btn .btn-list.active {
    background-color: #fff;
    color: #000;    
}
 
.show-pos .pos {
    visibility: visible;
}
 
.pos {
    visibility: hidden;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    opacity: 0.6;
    background-color: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;    
}
.pos:hover {
    opacity: 1;
}
.pos-left {
    left: 1%;
}
.pos-right {
    right: 1%;
}
.previous {
    background-image: url('../image/pre-next.gif');
    background-position: -70px 0;
}
.next {
    background-image: url('../image/pre-next.gif');
    background-position: 0 0;
}