/* 自定义控制台滚动条样式 */
#log-console::-webkit-scrollbar {
  width: 6px;
}
#log-console::-webkit-scrollbar-track {
  background: #0F172A;
}
#log-console::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 3px;
}
#log-console::-webkit-scrollbar-thumb:hover {
  background: #475569;
}