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.
|
|
|
.content {
|
|
|
|
width: 100%;
|
|
|
|
height: 93%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
|
|
|
.echarts {
|
|
|
|
flex: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
.center {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//头部搜索栏
|
|
|
|
.header {
|
|
|
|
border-bottom: 1px solid #999;
|
|
|
|
height: 70px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 15px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items:center;
|
|
|
|
justify-content:center;
|
|
|
|
.queryField {
|
|
|
|
margin: 0 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
.mat-form-field {
|
|
|
|
width: 130px;
|
|
|
|
max-height: 50px;;
|
|
|
|
margin: 0 15px 0 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.fixedCss{
|
|
|
|
position: fixed;
|
|
|
|
top: 78px;
|
|
|
|
right: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//echarts div公有样式
|
|
|
|
.publicCss{
|
|
|
|
height: 350px;
|
|
|
|
width: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
//滚动条样式
|
|
|
|
::-webkit-scrollbar{
|
|
|
|
width: 5px;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb{
|
|
|
|
background-color: #999;
|
|
|
|
}
|