/* 引入自定义字体 */
@font-face {
  font-family: 'CustomFont'; /* 自定义字体名称（后续引用时使用） */
  src: url('../fonts/custom-font.woff2') format('woff2'), /* 优先使用woff2（压缩率高） */
       url('../fonts/custom-font.woff') format('woff'),
       url('../fonts/custom-font.ttf') format('truetype');
  font-weight: normal; /* 字体粗细（可根据需要定义bold等） */
  font-style: normal; /* 字体样式（正常/斜体等） */
  font-display: swap; /* 字体加载期间显示默认字体，避免空白闪烁 */
}