/**
 * 站点前台：无网 / 内网可用（不请求 fonts.googleapis.com、fonts.gstatic.com、cdn.tailwindcss.com）
 * Material Symbols：见 /vendor/fonts/material-symbols-outlined.ttf
 * 正文字体：沿用各页 Tailwind 的 fontFamily 配置，未安装的 Manrope/Inter 会落到系统中文字体
 */

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    /* 图标字体：swap 会先以系统字体显示 ligature 英文名；block 在短阻塞期内不绘制，就绪后直接显示字形 */
    font-display: block;
    src: url('../vendor/fonts/material-symbols-outlined.ttf') format('truetype');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
}
