| | |
| | | color: #fff; |
| | | width: 100%; |
| | | height: 45px; |
| | | line-height: 45px; |
| | | line-height: 30px; |
| | | background-size: 100% 100%; |
| | | background-repeat: no-repeat; |
| | | } |
| | |
| | | display: flex; |
| | | flex-direction: column; |
| | | justify-content: space-around; |
| | | overflow: auto; |
| | | |
| | | .chartTd { |
| | | width: 100%; |
| | |
| | | |
| | | } |
| | | } |
| | | /*滚动条整体样式*/ |
| | | ::-webkit-scrollbar { |
| | | /*高宽分别对应横竖滚动条的尺寸*/ |
| | | width: 1px; |
| | | height: 1px; |
| | | } |
| | | |
| | | /*滚动条里面小方块*/ |
| | | ::-webkit-scrollbar-thumb { |
| | | border-radius: 5px; |
| | | -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); |
| | | background: #409EFF; |
| | | } |
| | | |
| | | /*滚动条里面轨道*/ |
| | | ::-webkit-scrollbar-track { |
| | | -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); |
| | | border-radius: 10px; |
| | | background: rgba(237, 237, 237, .1); |
| | | } |
| | | </style> |