@font-face {
    font-family: 'Inter';
    src: url('../source/fonts/Inter-Regular.woff2') format('woff2'),
         url('../source/fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400; /* 常规字重 */
    font-style: normal;
    font-display: swap; /* 优化字体加载体验 */
}

@font-face {
    font-family: 'Inter';
    src: url('../source/fonts/Inter-Bold.woff2') format('woff2'),
         url('../source/fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700; /* 粗体字重 */
    font-style: normal;
    font-display: swap; /* 优化字体加载体验 */
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* 使用常规字重 */
}

h1, h2, h3 {
    font-weight: 700; /* 使用粗体字重 */
}

:host,
html {
  -webkit-text-size-adjust: auto; /* 或 none，看你需求 */
}