浏览器里面的滚轮太难看了,在chrome里面实现是这样的

::-webkit-scrollbar{
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb{
    background-color:#dddee0;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover{
    background-color:#c7c9cc;
}

::-webkit-scrollbar {
  /*隐藏滚轮*/
  display: none;

}

但是在火狐上不生效,查了一下
在overflow:scoll那个div里面设置

scrollbar-color: transparent transparent !important;

就ok了