shuishen
2022-07-29 71ac571768baab6ca36057be77075b80cfe74739
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
* {
    margin: 0;
    padding: 0;
    list-style: none;
}
 
html,
body {
    width: 100%;
    height: 100%;
}
 
.leaflet-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}
 
.leaflet-popup-content-wrapper {
    /* position: relative; */
    display: flex;
    padding: 10px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    background: white;
    text-align: left;
    box-sizing: border-box;
}
 
 
/* .leaflet-popup-content-wrapper div {
    z-index: 44;
} */
 
 
video {
 
    object-fit: fill;
 
    /* position: absolute !important;
    width: calc(100%) !important;
    height: calc(100%) !important;
    z-index: 10; */
 
}
 
.leaflet-menu-left {
    width: 220px;
}
 
.leaflet-menu-left li {
    margin-top: 4px;
    padding: 0 10px;
    box-sizing: border-box;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}
 
.leaflet-menu-left li.on {
    color: #fff;
    border-radius: 5px;
    background-color: #37ACF9;
}
 
.reals-right-y {
    margin-left: 10px;
    width: calc(100% - 230px);
    height: 100%;
}
 
.real-right-y {
    width: 100%;
    height: 100%;
}
 
.leaflet-popup-content-wrapper .bubble-window-top {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 30px !important;
    height: 30px !important;
    background: url(../img/top.png) no-repeat !important;
    background-size: 100% 100% !important;
}
 
.leaflet-popup-content-wrapper .bubble-window-left {
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translate(0, -50%);
    width: 30px !important;
    height: 30px !important;
    background: url(../img/left.png) no-repeat !important;
    background-size: 100% 100% !important;
}
 
.leaflet-popup-content-wrapper .bubble-window-bottom {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 30px !important;
    height: 30px !important;
    background: url(../img/bottom.png) no-repeat !important;
    background-size: 100% 100% !important;
}
 
.leaflet-popup-content-wrapper .bubble-window-right {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translate(0, -50%);
    width: 30px !important;
    height: 30px !important;
    background: url(../img/right.png) no-repeat !important;
    background-size: 100% 100% !important;
}
 
.leaflet-popup-content-wrapper .bubble-window-blow-up {
    position: absolute;
    bottom: 4px;
    left: 10px;
    width: 30px !important;
    height: 30px !important;
    background: url(../img/blow-up.png) no-repeat !important;
    background-size: 100% 100% !important;
}
 
.leaflet-popup-content-wrapper .bubble-window-zoom-out {
    position: absolute;
    bottom: 4px;
    left: 46px;
    width: 30px !important;
    height: 30px !important;
    background: url(../img/zoom-out.png) no-repeat !important;
    background-size: 100% 100% !important;
}