.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; min-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: 81px; right: 32px; } } //echarts div公有样式 .publicCss{ width: 80%; height: 550px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); } .publicOneLineCss{ height: 350px; width: 90%; margin: 10px auto; box-sizing: border-box; padding: 10px; } //切换按钮 选中状态 .selectButton{ background-color: #2196f3; color: white; } //滚动条样式 ::-webkit-scrollbar{ width: 5px; background-color: white; } ::-webkit-scrollbar-thumb{ background-color: #999; }