@charset "utf-8";
/* CSS Document */
/* cyrillic-ext */
:root{
  --font-sans: -apple-system, BlinkMacSystemFont,
               "PingFang SC",
               "Microsoft YaHei",
               "Segoe UI",
               Roboto,
               "Helvetica Neue",
               Arial,
               sans-serif;
}

html, body{
  font-family: var(--font-sans);
}
/* ===== Material Symbols Outlined (local) ===== */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  src: url("MaterialSymbolsOutlined.woff2") format("woff2");
  font-display: block;
}

/* 保持你原写法：<span class="material-symbols-outlined">menu</span> */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;       /* 你也可以不写，按 Tailwind/现有样式来 */
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
