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
| .mapBtn {
| background-color: #ffffff;
| width: 188px;
| height: 4vh;
| position: relative;
| top: 3vh;
| right: -22vh;
| border-radius: 5px;
| }
|
| .insBtn {
| float: left;
| }
|
| .mapBtn a {
| line-height: 4vh;
| font-size: 13px;
| text-align: center;
| color: #757575;
| position: relative;
| left: 1.2vh;
| letter-spacing: 1.5px;
| }
|
| .editBtn {
| float: left;
| }
|
| .mapBtn img {
| position: relative;
| left: 1.2vh;
| top: -1px;
| }
|
| a:hover {
| color: #3385FF;
| cursor: pointer;
| }
|
| .insBtn:hover {
| cursor: pointer;
| color: #3385FF;
| }
|
| .editBtn:hover {
| cursor: pointer;
| }
|
| .delBtn:hover {
| cursor: pointer;
| }
|
| .tips {
| width: 120px;
| height: 26px;
| background-color: #ffffff;
| position: absolute;
| display: none;
| border-radius: 4px;
| border: 1px solid #3385FF;
| }
|
| .tips span {
| line-height: 26px;
| font-size: 10px;
| position: absolute;
| left: 7px;
| }
|
|