#consoleLogDiv {
        height: 500px;
        background: black;
        border-radius: 8px;
        color: white;
        padding: 10px;
        overflow:auto;           /*超出内容显示滚动条*/
}

.consoleLogSpan {
    color:red;
}

/*.ant-layout-header {*/
/*    background: #ADD8E6;*/
/*}*/




/*自定义滚动条*/
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width : 8px;  /*对应竖滚动条的宽度*/
  height : 8px;  /*对应横滚动条的高度*/
}
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 6px; 
  background-color: #9e9e9e;
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background: #ffffff;
  /* border-radius: 6px; */
}