|
|
|
|
@import './panel.scss';
|
|
|
|
|
.content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 93%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.icongray{
|
|
|
|
|
color: #D9D0DC;
|
|
|
|
|
}
|
|
|
|
|
.buildingbtnchecked{
|
|
|
|
|
background-color: #34A6FD;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//header头部
|
|
|
|
|
.header {
|
|
|
|
|
position: relative;
|
|
|
|
|
flex: 5%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items:center;
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
.nameShow{
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
.copytobutn{
|
|
|
|
|
width: 33px;
|
|
|
|
|
min-width: 33px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
span{
|
|
|
|
|
height: 24px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//头部操作栏
|
|
|
|
|
.headerOperate {
|
|
|
|
|
flex: 5%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items:center;
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin: 3px 0;
|
|
|
|
|
background-color: #ECF0F3;
|
|
|
|
|
button{
|
|
|
|
|
border: 0.5px solid rgb(208, 211, 214);
|
|
|
|
|
margin: 0 2px;
|
|
|
|
|
}
|
|
|
|
|
.editdeletebtn{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.bigeditdeletebtn:hover{
|
|
|
|
|
.editdeletebtn{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//功能区
|
|
|
|
|
// icon统一样式
|
|
|
|
|
.mat-icon {
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
//左右两侧功能栏 统一样式
|
|
|
|
|
.publicCss {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 100%;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
.functionalDomain {
|
|
|
|
|
flex: 90%;
|
|
|
|
|
.functionalDomainContent {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.functionalDomainLeft {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
transition: margin-left 0.5s;
|
|
|
|
|
min-width: 150px;
|
|
|
|
|
border: 1px solid #E6EAEE;
|
|
|
|
|
width: 14%;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
.functionalDomainRight {
|
|
|
|
|
border: 1px solid #464646;
|
|
|
|
|
width: 12%;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
//左侧导航栏显示隐藏
|
|
|
|
|
.togglePanel {
|
|
|
|
|
margin-left: -300px;
|
|
|
|
|
transition: margin-left 0.5s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//右边操作栏
|
|
|
|
|
.title{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 35px;
|
|
|
|
|
background-color: #464646;
|
|
|
|
|
div{
|
|
|
|
|
width: 50%;
|
|
|
|
|
height: 35px;
|
|
|
|
|
line-height: 35px;
|
|
|
|
|
background-color: #595959;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
span{
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//右侧属性
|
|
|
|
|
.property{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
.siteproperty{
|
|
|
|
|
height: 100%;
|
|
|
|
|
p{
|
|
|
|
|
color: #9c9fa5;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
.siteproperty_size{
|
|
|
|
|
background-color: #e3e3e3;
|
|
|
|
|
width: 93%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
.rightAttribute{
|
|
|
|
|
width: 12%;
|
|
|
|
|
height: 99.5%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
border: 2px solid #464646;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.assetsproperty{
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
p{
|
|
|
|
|
color: #9c9fa5;
|
|
|
|
|
margin:1px 0 3px 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
input{
|
|
|
|
|
height: 18px;
|
|
|
|
|
}
|
|
|
|
|
.biginput{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 88%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.smallinput{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 19%;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
.textarea{
|
|
|
|
|
display: block;
|
|
|
|
|
width: 88%;
|
|
|
|
|
height: 50px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.swiper-button-next{
|
|
|
|
|
right: 6px;
|
|
|
|
|
}
|
|
|
|
|
.swiper-button-next:after{
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
.swiper-button-prev{
|
|
|
|
|
left: 6px;
|
|
|
|
|
}
|
|
|
|
|
.swiper-button-prev:after{
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//右侧消防要素
|
|
|
|
|
.firecategories{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
.firecategoriesTree{
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|