/* common.css - 基本重置与防御性根元素样式 */
html,
body {
    -webkit-transform: none !important;
    transform: none !important;
    zoom: 1 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden !important;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* 小屏幕通用调整 */
@media (max-width: 768px) {
    /* 可以在此添加全局移动端调整 */
}