geo_info_platform/css/flexleft.css

184 lines
2.6 KiB
CSS
Raw Permalink Normal View History

2019-12-11 11:51:00 +08:00
.fixed-left{
2019-12-19 15:16:38 +08:00
position: absolute;
2019-12-11 11:51:00 +08:00
top: 0px;
bottom: 0;
2019-12-11 15:17:54 +08:00
left: -400px;
width: 400px;
2019-12-11 11:51:00 +08:00
z-index: 40;
transition: width .3s;
2019-12-19 15:16:38 +08:00
height: 100%;
2019-12-11 11:51:00 +08:00
}
.fixed-left::before{
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
content: '';
background: rgba(0,0,0,0.3);
}
.fixed-left.active{
width: 100%;
2019-12-19 15:16:38 +08:00
position: fixed;
top: 60px;
left: 0px;
height: 100%;
2019-12-11 11:51:00 +08:00
}
2019-12-11 15:17:54 +08:00
/* .fixed-left.active .left_echart{
2019-12-11 11:51:00 +08:00
width: 100%;
2019-12-11 15:17:54 +08:00
height: 100%;
2019-12-11 11:51:00 +08:00
}
2019-12-11 15:17:54 +08:00
.left_echart div{
2019-12-11 11:51:00 +08:00
width: 100%;
height: 100%;
2019-12-11 15:17:54 +08:00
} */
2019-12-11 11:51:00 +08:00
.fixed-left.active::before{
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
content: '';
background: rgba(0,0,0,0.9);
2019-12-11 11:51:00 +08:00
}
.video_img{
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 40%;
}
.map_header{
display: flex;
position: fixed;
justify-content: space-between;
align-items: center;
2019-12-18 18:28:38 +08:00
height: 60px;
2019-12-11 11:51:00 +08:00
left: 0;
right: 0;
2019-12-18 18:28:38 +08:00
background: #141D21;
2019-12-11 16:08:04 +08:00
z-index: 100;
2019-12-11 11:51:00 +08:00
transition: .3s;
2019-12-18 18:28:38 +08:00
box-sizing: border-box;
2019-12-11 11:51:00 +08:00
}
2019-12-19 15:45:01 +08:00
.map_header.active{
opacity: 0;
z-index: 49;
}
2019-12-11 11:51:00 +08:00
.logo_txt{
margin-left: 15px;
color: #fff;
font-size: 18px;
}
.logo_txt .collpase-icon{
margin-right: 5px;
cursor: pointer;
}
.user_info{
padding-right: 30px;
font-size: 0;
2019-12-18 18:28:38 +08:00
display: flex;
align-items: center;
2019-12-11 11:51:00 +08:00
}
.user_info .info-item{
display: inline-block;
vertical-align: top;
font-size: 14px;
2019-12-18 18:28:38 +08:00
color: #e2e2e2;
2019-12-11 11:51:00 +08:00
line-height: 50px;
cursor: pointer;
}
2019-12-18 18:28:38 +08:00
.search-Panel{
display: block;
color: #fff;
text-align: center;
margin-right: 30px;
line-height: 60px;
height: 60px;
font-size: 18px;
cursor: pointer;
position: relative;
display: flex;
align-items: center;
}
2019-12-11 11:51:00 +08:00
.info-item .user_img{
position: relative;
width: 30px;
height: 30px;
border-radius: 50%;
top: 10px;
}
.info-item .user_nick{
font-size: 14px;
}
.drop-down{
position: relative;
margin-left: 10px;
}
.drop-down::before{
position: absolute;
content: '';
width: 0;
height: 0;
top: 50%;
right: -15px;
border: 5px solid transparent;
border-top-color: #fff;
margin-top: -2px;
}
.drop-down-list{
display: none;
position: absolute;
top: 55px;
right: -20px;
background: #fff;
padding: 10px 0;
line-height: 24px;
min-width: 80px;
text-align: right;
}
.drop-down-list::before{
position: absolute;
bottom: 100%;
right: 5px;
width: 0;
height: 0;
content: '';
border: 5px solid transparent;
border-bottom-color: #fff;
}
.drop-down-item{
padding: 0 15px;
font-size: 14px;
color: black;
transition: color .3s;
}
.drop-down-item:hover{
color: #1890ff;
}
2019-12-11 15:17:54 +08:00
.left_echart{
2019-12-19 15:16:38 +08:00
position: absolute !important;
2019-12-11 15:17:54 +08:00
height: 60%;
2019-12-19 15:16:38 +08:00
left: 0;
2019-12-11 15:17:54 +08:00
top: 0;
width: 400px;
z-index: 50;
}