/* 修复iOS导航栏显示问题 */
@media screen and (max-width: 768px) {
    .nav {
        position: sticky !important;
        top: 0;
        z-index: 1000;
    }

    .page-header {
        margin-top: 60px !important;
    }
}