shuishen
2023-01-06 dbd6d2ca8cb996d49593c19f2e07eb54f31d1d1a
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
.dc-distance-legend {
 
    .label {
        color: #000 !important;
    }
 
    .scale-bar {
        border-color: #000 !important;
    }
}
 
.dc-location-bar {
    left: 50% !important;
    bottom: 10px !important;
    transform: translate(-50%, 0);
    background-color: $bg-color !important;
    z-index: 97;
 
}
 
.dc-zoom-controller {
    top: auto !important;
    left: 10px !important;
    bottom: 56px !important;
    width: 36px !important;
    height: auto !important;
    border-radius: 5px !important;
    background: #fff !important;
    z-index: 97 !important;
    background-color: $bg-color !important;
 
 
    &>div {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px !important;
        height: 36px !important;
 
 
        svg {
            width: 20px !important;
            height: 20px !important;
            fill: #fff !important;
        }
    }
}
 
.dc-location-bar.homebottom {
    bottom: 378px !important;
}
 
.dc-zoom-controller.homebottom {
    left: 402px !important;
    bottom: 362px !important;
}
 
.screen-full-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    color: #fff;
    background: #fff;
    border-radius: 5px;
    z-index: 97;
    background-color: $bg-color !important;
 
 
    // &.hover-effect {
    //     cursor: pointer;
    //     transition: background 0.3s;
 
    //     &:hover {
    //         background: rgba(0, 0, 0, 0.025);
    //     }
    // }
}
 
.screen-full-btn.homebottom {
    left: 402px !important;
    bottom: 318px;
}
 
.dc-zoom-controller.shrink-btn {
    left: 410px !important;
}
 
.screen-full-btn.shrink-btn {
    left: 410px !important;
}
 
.image-switch-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: #fff;
    border-right: 10px solid transparent;
    box-sizing: content-box;
    background: transparent;
 
    z-index: 97;
 
    cursor: pointer;
 
    .icon-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: $bg-color !important;
        border-radius: 5px;
    }
}
 
.image-switch-icon-btn.iconbottom {
    left: 402px;
    bottom: 476px;
}
 
.image-switch-icon-btn.shrink-btn {
    left: 410px !important;
}
 
.image-switch-img-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-size: 20px;
    color: #fff;
    background: #fff;
    border-radius: 5px;
    z-index: 97;
    // background-color: $table-header-bg-color !important;
    cursor: pointer;
 
    .img,
    .elec {
        position: relative;
        background-image: url(/img/img.png);
        background-size: 100% 100%;
        width: 80px;
        height: 60px;
        border: 2px solid $table-header-bg-color;
 
        span {
            position: absolute;
            right: 2px;
            bottom: 2px;
            padding: 0 2px;
        }
 
        &>.on {
            background-color: $table-header-bg-color;
        }
    }
 
    .img:hover span,
    .elec:hover span {
        // border: 2px solid #eee;
        font-weight: 700;
    }
 
    .elec {
        background-image: url(/img/elec.png);
    }
}