/* firefox修改滚动条的样式  #C1C1C1*/
* {
  scrollbar-color: #c1c1c1 #f1f1f1;
  /* 滑块颜色  滚动条背景颜色 */
  scrollbar-width: thin;
  /* 滚动条宽度有三种：thin、auto、none */
}
/* chrome改变滚动条的样式 */
::-webkit-scrollbar {
  /* 滚动条的宽高 */
  width: 12px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  /* 滚动条的棒 */
  border-radius: 12px;
  background: #c1c1c1;
  box-shadow: none;
}
::-webkit-scrollbar-track {
  /* 滚动条的轨迹 */
  border-radius: 12px;
  background: #f1f1f1;
  box-shadow: none;
}