#mobile-map_popup_content {
|
//弹窗
|
width: 100%;
|
position: fixed;
|
z-index: 99;
|
left: -1000px;
|
box-sizing: border-box;
|
#mobilePopup {
|
width: 70%;
|
left: 1000px;
|
position: absolute;
|
height: auto;
|
background-color: #fff;
|
border-radius: 10px;
|
position: relative;
|
&::before {
|
content: "";
|
width: 0px;
|
height: 0px;
|
border: 8px solid #ebebeb;
|
position: absolute;
|
bottom: -8px;
|
left: calc(50% - 8px);
|
transform: rotate(45deg);
|
}
|
.mobiletitle {
|
width: calc(90% - 1px);
|
height: 15px;
|
background-color: #f7f7f7;
|
border-bottom: 1px solid #ebebeb;
|
font-size: 14px;
|
border-radius: 10px 10px 0 0;
|
padding: 8px 14px;
|
}
|
.mobilelabel-content {
|
width: 100%;
|
height: auto;
|
// 内容样式
|
.mobile-popup-imgs-heard {
|
width: 100%;
|
padding: 10px;
|
text-align: justify;
|
letter-spacing: 1px;
|
box-sizing: border-box;
|
img {
|
width: 70px;
|
height: 50px;
|
}
|
}
|
.mobile-popup-control {
|
width: 100%;
|
height: 20px;
|
background-color: #f7f7f7;
|
border-top: 1px solid #ebebeb;
|
padding: 5px 0 8px 0;
|
border-radius: 0 0 10px 10px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
}
|
}
|
}
|
}
|
|
$controllerw: 35px !important;
|
#mobile-viewer-container {
|
// 继承类
|
.flexCenter {
|
display: flex !important;
|
align-items: center !important;
|
justify-content: center !important;
|
}
|
// 比例尺
|
.dc-distance-legend {
|
right: 5px !important;
|
left: auto !important;
|
}
|
// 缩放控制
|
.dc-zoom-controller {
|
width: 32px !important;
|
height: auto !important;
|
left: 20px !important;
|
top: 50px !important;
|
// z-index: 200;
|
background-color: transparent !important;
|
border: 1px solid transparent !important;
|
|
div:nth-child(1) {
|
// border-bottom: 1px solid #ebebeb;
|
margin-bottom: 37px !important;
|
}
|
div:nth-child(2) {
|
display: none !important;
|
}
|
div:nth-child(3) {
|
// border-top: 1px solid #ebebeb;
|
}
|
div {
|
width: $controllerw;
|
height: $controllerw;
|
position: relative !important;
|
left: -1px !important;
|
background-color: #c9302c !important;
|
color: white !important;
|
@extend .flexCenter;
|
border-radius: 5px;
|
svg {
|
width: 20px !important;
|
height: 20px !important;
|
}
|
}
|
}
|
//弹窗标签栏的标签
|
.m_p_center {
|
.el-tabs {
|
width: 100% !important;
|
height: 100% !important;
|
box-sizing: border-box;
|
.el-tabs__nav-scroll {
|
width: 100% !important;
|
@extend .flexCenter;
|
}
|
.el-tabs__content {
|
width: 100% !important;
|
height: calc(100% - 55px) !important;
|
box-sizing: border-box;
|
.el-tab-pane {
|
width: 100% !important;
|
height: 100% !important;
|
}
|
}
|
}
|
}
|
|
//地图底部按钮下拉菜单
|
.m-left-mobileCortrolButtom {
|
.el-dropdown {
|
width: 100% !important;
|
height: 100% !important;
|
@extend .flexCenter;
|
.el-icon-s-flag.icon {
|
position: relative;
|
top: 10px;
|
left: 10px;
|
}
|
}
|
}
|
|
//滚动条
|
/*定义滑块 内阴影+圆角*/
|
::-webkit-scrollbar-thumb {
|
border-radius: 10px;
|
width: 2px !important;
|
/*滚动条的圆角*/
|
-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.9);
|
background-color: #f1f1f1;
|
/*滚动条的背景颜色*/
|
}
|
}
|