Compare commits
No commits in common. '85264d3beca783fe47e4b7e099913098fa754594' and 'b575aebe91b63c7900bc3f68257bf4f6536aa896' have entirely different histories.
85264d3bec
...
b575aebe91
Before Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 231 B |
After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.4 KiB |
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
@ -1,155 +0,0 @@
|
|||||||
.map-marker {
|
|
||||||
width: 200px;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.marker-icon {
|
|
||||||
height: 50px;
|
|
||||||
width: 41px;
|
|
||||||
}
|
|
||||||
.marker-type {
|
|
||||||
position: absolute;
|
|
||||||
z-index: -1;
|
|
||||||
left: 23px;
|
|
||||||
padding: 0 10px 0 23px;
|
|
||||||
top: 3px;
|
|
||||||
width: fit-content;
|
|
||||||
|
|
||||||
height: 37px;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #ffffff;
|
|
||||||
font-weight: bold;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-family: "Aboreto-Bold";
|
|
||||||
}
|
|
||||||
|
|
||||||
.type-color1 {
|
|
||||||
background: linear-gradient(
|
|
||||||
270deg,
|
|
||||||
rgba(11, 170, 55, 0) 0%,
|
|
||||||
rgba(11, 170, 55, 0.7) 42%,
|
|
||||||
rgba(11, 170, 55, 0) 100%
|
|
||||||
);
|
|
||||||
}
|
|
||||||
.type-color2 {
|
|
||||||
background: linear-gradient(
|
|
||||||
270deg,
|
|
||||||
rgba(177, 173, 57, 0) 0%,
|
|
||||||
#b1ad39 42%,
|
|
||||||
rgba(177, 173, 57, 0) 100%
|
|
||||||
);
|
|
||||||
}
|
|
||||||
.type-color3 {
|
|
||||||
background: linear-gradient(
|
|
||||||
270deg,
|
|
||||||
rgba(107, 57, 177, 0) 0%,
|
|
||||||
#6b39b1 42%,
|
|
||||||
rgba(107, 57, 177, 0) 100%
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 地图点位弹窗
|
|
||||||
.map-marker-popup {
|
|
||||||
position: relative;
|
|
||||||
width: 276px;
|
|
||||||
background: url("../images/visualization/popup-bg.png");
|
|
||||||
background-size: 100% 100%;
|
|
||||||
.marker-popup-close {
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
right: 20px;
|
|
||||||
top: 15px;
|
|
||||||
height: 10px;
|
|
||||||
width: 10px;
|
|
||||||
background: url("../images/visualization/popup-close.png");
|
|
||||||
background-size: 100% 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marker-popup-title {
|
|
||||||
height: 43px;
|
|
||||||
width: 100%;
|
|
||||||
font-size: 16px;
|
|
||||||
letter-spacing: 4px;
|
|
||||||
background: linear-gradient(180deg, #ffffff 0%, #74bbff 50%);
|
|
||||||
-webkit-background-clip: text;
|
|
||||||
background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
font-family: "Aboreto-Bold";
|
|
||||||
font-weight: bold;
|
|
||||||
padding: 0 25px;
|
|
||||||
line-height: 43px;
|
|
||||||
border-bottom: 2px solid #3da2fa;
|
|
||||||
}
|
|
||||||
.popup-row {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 16px;
|
|
||||||
padding: 15px 25px;
|
|
||||||
.row-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
.row-name {
|
|
||||||
width: 90px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 400;
|
|
||||||
color: rgba(255, 255, 255, 0.7);
|
|
||||||
}
|
|
||||||
.row-value {
|
|
||||||
flex: 1;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #ffffff;
|
|
||||||
font-weight: 400;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.popup-btn {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 15px;
|
|
||||||
padding-bottom: 15px;
|
|
||||||
& > div {
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 6px 11px;
|
|
||||||
background: #0e4e87;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #ffffff;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
& > div:hover {
|
|
||||||
box-shadow: inset 0px 0px 12px 0px #00d9ff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//地图点位视频-轨迹弹窗
|
|
||||||
|
|
||||||
.map-dialog {
|
|
||||||
padding: 0;
|
|
||||||
// background: url("../images/visualization/popup-bg.png");
|
|
||||||
// background-size: cover;
|
|
||||||
border: 1px solid red;
|
|
||||||
.el-dialog__header {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
.map-dialog-title {
|
|
||||||
font-size: 16px;
|
|
||||||
letter-spacing: 4px;
|
|
||||||
background: linear-gradient(180deg, #ffffff 0%, #74bbff 50%);
|
|
||||||
-webkit-background-clip: text;
|
|
||||||
background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
font-family: "Aboreto-Bold";
|
|
||||||
font-weight: bold;
|
|
||||||
padding: 0 25px;
|
|
||||||
line-height: 43px;
|
|
||||||
border-bottom: 2px solid #3da2fa;
|
|
||||||
}
|
|
||||||
.video-container {
|
|
||||||
height: 342px;
|
|
||||||
}
|
|
||||||
}
|
|