/* 文件位置: /assets/index/css/style.css */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}

header {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

/* 暴力封死移动端底部栏的穿透和留白 */
#layout-mobile-nav {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

/* 暴力向下扩展背景色 80px，彻底填死 iOS 视口与 Home Indicator 间隙 */
#layout-mobile-nav::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    pointer-events: none;
}

.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.no-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
