65 lines
1.1 KiB
CSS
65 lines
1.1 KiB
CSS
|
|
html {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
font-family: 'Microsoft YaHei';
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
width: 98%;
|
||
|
|
height: 98%;
|
||
|
|
margin: 0.5% 1% !important;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: center;
|
||
|
|
box-sizing: border-box;
|
||
|
|
color: #262626;
|
||
|
|
}
|
||
|
|
|
||
|
|
.search-box {
|
||
|
|
width: 100%;
|
||
|
|
height: 60px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-box {
|
||
|
|
width: 100%;
|
||
|
|
height: calc(100% - 80px);
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
#echarts-one{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*滚动条样式start*/
|
||
|
|
::-webkit-scrollbar {
|
||
|
|
width: 5px;
|
||
|
|
height: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-track {
|
||
|
|
background: #e7e7f1 !important;
|
||
|
|
border-radius: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb {
|
||
|
|
background: rgba(94, 96, 97, 0.43) !important;
|
||
|
|
border-radius: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb:hover {
|
||
|
|
background: rgba(94, 96, 97, 0.43) !important;
|
||
|
|
border-radius: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
::-webkit-scrollbar-thumb:active {
|
||
|
|
background: rgba(94, 96, 97, 0.43) !important;
|
||
|
|
border-radius: 0px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*滚动条样式end*/
|