/* 自定义图标样式 */
:where([class^="ri-"])::before {
  content: "\f3c2";
}

/* 页面字体设置 */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero 区域背景图样式 */
.hero-bg {
  background-image: url('/images/hero-signature.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
  }
 }