qin
2024-04-01 d1a50163e4d445bc8451cf68cf0791caf7c410e0
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
 
 
 
 
.map_zoomcontrol {
    position: absolute;
    bottom: 290px;
    width: 68px;
    right: 220px;
}
 
    .map_zoomcontrol .map_slide_box {
        width: 68px;
        height: 258px;
        background-color: #C4C5E8;
        position: relative;
    }
 
        .map_zoomcontrol .map_slide_box::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 258px;
            top: 0px;
            left: 26px;
            background-color: #fff;
        }
 
    .map_zoomcontrol .map_slide_box_before {
        position: absolute;
        width: 16px;
        height: 63px;
        top: 0px;
        left: 26px;
        background-color: #2050D5;
        z-index: 1;
    }
 
    .map_zoomcontrol #map_zoom_in, .map_zoomcontrol #map_zoom_out {
        background-color: #2050D5;
        color: #fff;
        text-align: center;
        height: 68px;
        line-height: 68px;
        cursor: pointer;
    }
 
        .map_zoomcontrol #map_zoom_in:hover, .map_zoomcontrol #map_zoom_out:hover, .map_zoomcontrol .map_slide:hover {
            background-color: #3489EC;
        }
 
    .map_zoomcontrol #map_zoom_in {
        border-radius: 10px 10px 0 0;
        background-image: url(/images/szjt/map/slide_in.png);
        background-position: 18px 18px;
        background-repeat: no-repeat;
    }
 
    .map_zoomcontrol #map_zoom_out {
        border-radius: 0 0 10px 10px;
        background-image: url(/images/szjt/map/slide_out.png);
        background-position: 18px 37px;
        background-repeat: no-repeat;
    }
 
    .map_zoomcontrol .map_slide {
        position: absolute;
        top: 63px;
        z-index: 3;
        width: 68px;
        left: 0px;
        background-color: #2050D5;
        color: #fff;
        height: 48px;
        line-height: 48px;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
        background-image: url(/images/szjt/map/slide.png);
        background-position: 0px 0px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }