You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
991 B
60 lines
991 B
5 years ago
|
.content {
|
||
|
width: 100%;
|
||
|
height: 93%;
|
||
|
overflow: hidden;
|
||
|
box-sizing: border-box;
|
||
|
padding: 3px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
//header头部
|
||
|
.header {
|
||
|
flex: 5%;
|
||
|
min-height: 40px;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
//头部操作栏
|
||
|
.headerOperate {
|
||
|
flex: 5%;
|
||
|
min-height: 40px;
|
||
|
box-sizing: border-box;
|
||
|
margin: 3px 0;
|
||
|
}
|
||
|
|
||
|
//功能区
|
||
|
.mat-drawer:not(.mat-drawer-side) {
|
||
|
box-shadow: none;
|
||
|
border: 1px solid #E6EAEE;
|
||
|
background-color: #E6EAEE;
|
||
|
}
|
||
|
.functionalDomain {
|
||
|
flex: 90%;
|
||
|
.functionalDomainContent {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.functionalDomainLeft {
|
||
|
width: 13%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.functionalDomainRight {
|
||
|
background-color: #fff;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
position: relative;
|
||
|
.h5Unity {
|
||
|
flex: 100%;
|
||
|
}
|
||
|
.rightAttribute{
|
||
|
width: 13%;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
border: 1px solid #E6EAEE;
|
||
|
background-color: #E6EAEE;
|
||
|
}
|
||
|
}
|
||
|
}
|