/* 平滑滚动过渡效果 */
html {
    scroll-behavior: smooth;
}

/* 锚点链接样式 */
a[href^="#"] {
    transition: all 0.3s ease;
}

/* 滚动时的偏移调整（如果需要） */
:target {
    scroll-margin-top: 100px; /* 可以根据页面头部高度调整 */
}

/* 统一网站字体样式 - 提高优先级 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif !important;
}

/* 标题字体样式 - 提高优先级 */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit !important;
}

@media (min-width: 768px) {
    .index_focus {
        margin-bottom:30vh;
    } 
}