/* 自定义样式补充 */
body {margin: 0;font-family: 'Inter', system-ui, -apple-system, sans-serif;background-color: #F8FAFC;color: #0F172A;} * {box-sizing: border-box;}header, main, section {opacity: 1 !important;visibility: visible !important;}
/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 图片响应式处理 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}