html {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    background-color: rgba(240, 240, 240, 1);
}
html::-webkit-scrollbar {
    width: 0;
}
/**
页面主样式
*/
body, html {
	font-family: Georgia,"PingFang SC","Heiti SC","Microsoft Yahei",simsun,sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;

    -webkit-text-size-adjust: 100%; /* iOS 8+ */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;

    /*
    去掉垂直滚动条 但会造成 Select 框弹出的选择项目位移！
    overflow-y: auto;
    */
}

/* 防止 vuejs 解析{{xxx}}之前闪烁 */
[v-cloak] {
    display: none;
}

/* 计算除开标题栏后的图片高度 */
.calc_img {
    height: calc(100vh - 48px);
}
