/* 基础设计令牌（纸色主题）+ 全局复位。
   来源：原站第一个 <style> 块的 :root 与 * 复位（index.html:8-19）。
   注意：第二个 <style id="guofeng-style"> 会在其后重新定义同名的 --paper 等变量，
   故这里的值实际被「guofeng 主题」覆盖（见 theme-guofeng.css）。保留以留作默认/可切换。 */
:root{
  --paper:#efe4cc;
  --paper-2:#e8dcc0;
  --ink:#2a2018;
  --ink-2:#5a4a38;
  --ink-3:#8a7558;
  --cinnabar:#a8332a;
  --cinnabar-d:#8a2a22;
  --gold:#b8945a;
  --line:#cdbf9c;
}
*{box-sizing:border-box;margin:0;padding:0}
