/* 
 * 全局样式 清除浏览器默认样式
 * @Last Modified by bairuru:   
 * @Last Modified 2024.10.21:
*/
::-webkit-scrollbar {display:none}
:root {
    --vh: 1vh;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    text-decoration: none;
    list-style: none;
    list-style-type: none;
}
html,
body,
#app {
    width: 100%;
    height: 100%;
    background-color: white;
    /*禁止文本缩放*/
    -webkit-text-size-adjust: 100%;
    transition: height 100ms;
}
body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "WenQuanYi Micro Hei", sans-serif;
    /*解决字体在移动端比例缩小后出现锯齿的问题*/
    -webkit-font-smoothing: antialiased;
    font-size: 0;
}



