/* ========== 全局重置与根变量开始 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
    box-sizing: border-box;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    -webkit-text-size-adjust: 100%;
}

:root {
    --primary: #024196;
    --primary-dark: #0f2c48;
    --primary-light: #eef2f8;
    --accent: #2c4c6e;
    --text-main: #111827;
    --text-strong: #0f172a;
    --gray-soft: #eef2f8;
    --white: #ffffff;
    --blue: #0052cc;
    --gray-100: #f1f5f9;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --radius-md: 18px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    html {
        font-size: calc(100vw / 39);
    }
}

@media screen and (min-width: 1025px) {
    html {
        font-size: 16px !important;
    }
}

/* ========== 全局重置与根变量结束 ========== */

/* ========== 容器样式开始 ========== */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 容器样式结束 ========== */