body {
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
}

/* 使用伪类选择器 ::-webkit-scrollbar ,兼容chrome和safari浏览器 */
body::-webkit-scrollbar {
    display: none;
}

/*兼容火狐*/
body {
    scrollbar-width: none;
}

/* 兼容IE10+ */
body {
    -ms-overflow-style: none;
}