/**
 * SHUXINGVIP 云打印系统 - 100% 零风险字体系统
 * 
 * 版权状态：完全自主，无任何版权风险
 * 最后更新：2026-05-22
 * 
 * 字体策略：
 * - 仅使用系统默认字体，无外部依赖
 * - 完全避开有版权风险的字体
 * - 确保跨平台一致性
 */

/* ========================================
   零风险字体变量系统
   ======================================== */
:root {
    /* 中文无风险字体 - 仅使用系统默认安全字体 */
    --safe-font-cn: system-ui, -apple-system, sans-serif;
    
    /* 英文无风险字体 */
    --safe-font-en: system-ui, -apple-system, sans-serif;
    
    /* 等宽无风险字体 */
    --safe-font-mono: ui-monospace, system-ui, monospace;
    
    /* 主字体（综合） */
    --safe-font-main: var(--safe-font-cn);
    
    /* 代码字体 */
    --safe-font-code: var(--safe-font-mono);
}

/* ========================================
   基础元素字体设定
   ======================================== */
html, body {
    font-family: var(--safe-font-main) !important;
}

/* 代码相关 */
code, pre, kbd, samp {
    font-family: var(--safe-font-code) !important;
}

/* 输入框 */
input, textarea, select, button {
    font-family: var(--safe-font-main) !important;
}

/* 表格 */
table {
    font-family: var(--safe-font-main) !important;
}

/* ========================================
   完全规避风险字体的补充保障
   ======================================== */
/* 强制覆盖任何可能的风险字体 */
* {
    font-family: inherit;
}

/* 确保特定元素使用安全字体 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--safe-font-main) !important;
}

small, .text-sm {
    font-family: var(--safe-font-main) !important;
}

/* 等宽区域 */
.monospace, .code-block {
    font-family: var(--safe-font-code) !important;
}
