#### \# 亲测--移动端隐藏滚轮
```
html::-webkit-scrollbar,
body::-webkit-scrollbar {
display: none;
}
html,
body {
height: 100%;
overflow: hidden;
overflow-y: scroll;
/* 使得ios滑动流畅 */
-webkit-overflow-scrolling: touch;
}
```
PS : 设置 `height: 100%; overflow: hidden; overflow-y: scroll;` 是重点
IP属地:湖北