:root{--bg: #f5f7fa;--surface: #ffffff;--surface-2: #f1f4f8;--text: #1f2733;--text-soft: #586173;--text-faint: #8b94a3;--border: #e7ebf1;--accent: #2563eb;--accent-hover: color-mix(in srgb, var(--accent) 82%, #000);--accent-soft: color-mix(in srgb, var(--accent) 12%, var(--surface));--accent-contrast: #ffffff;--radius: 14px;--radius-sm: 9px;--shadow-sm: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.08);--shadow-md: 0 6px 18px rgba(16,24,40,.08);--shadow-lg: 0 12px 32px rgba(16,24,40,.12);--maxw: 1120px;--header-h: 60px;--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif}html[data-theme=dark]{--bg: #0e1016;--surface: #171a22;--surface-2: #1f2330;--text: #eef1f6;--text-soft: #aab2c2;--text-faint: #7d8696;--border: #262b39;--accent: #a855f7;--accent-hover: color-mix(in srgb, var(--accent) 80%, #fff);--accent-soft: color-mix(in srgb, var(--accent) 22%, var(--surface));--accent-contrast: #ffffff;--shadow-sm: 0 1px 2px rgba(0,0,0,.4);--shadow-md: 0 6px 18px rgba(0,0,0,.45);--shadow-lg: 0 12px 32px rgba(0,0,0,.55)}html[data-scheme=ocean]{--accent: #0ea5e9}html[data-scheme=sunset]{--accent: #f97316}html[data-scheme=forest]{--accent: #16a34a}html[data-scheme=royal]{--accent: #7c3aed}html[data-scheme=rose]{--accent: #e11d48}*,*:before,*:after{box-sizing:border-box}html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}body{margin:0;background:var(--bg);color:var(--text);font-family:var(--font);line-height:1.6;-webkit-font-smoothing:antialiased}img{max-width:100%;height:auto}a{color:var(--accent);text-decoration:none}a:hover{color:var(--accent-hover)}h1,h2,h3{line-height:1.25;color:var(--text)}.container{max-width:var(--maxw);margin:0 auto;padding:24px 20px}.muted{color:var(--text-soft)}.faint{color:var(--text-faint);font-size:13px}.site-header{position:sticky;top:0;z-index:100;background:var(--surface);background:color-mix(in srgb,var(--surface) 92%,transparent);border-bottom:1px solid var(--border);box-shadow:var(--shadow-sm)}.site-header .bar{max-width:var(--maxw);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:0 20px;height:var(--header-h)}.brand{display:inline-flex;align-items:center;gap:8px;font-size:19px;font-weight:800;color:var(--text);letter-spacing:-.01em}.brand:hover{color:var(--text)}.brand .dot{width:10px;height:10px;border-radius:50%;background:var(--accent);display:inline-block}.nav{display:flex;align-items:center;gap:6px}.nav a{color:var(--text-soft);font-size:14px;font-weight:500;padding:7px 12px;border-radius:8px}.nav a:hover{color:var(--text);background:var(--surface-2)}.cat-dropdown{position:relative}.cat-dropdown summary{list-style:none;cursor:pointer;color:var(--text-soft);font-size:14px;font-weight:500;padding:7px 12px;border-radius:8px}.cat-dropdown summary::-webkit-details-marker{display:none}.cat-dropdown summary:after{content:" ▾";font-size:11px}.cat-dropdown summary:hover{color:var(--text);background:var(--surface-2)}.cat-menu{position:absolute;top:calc(100% + 6px);right:0;background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:6px 0;min-width:210px;max-height:360px;overflow-y:auto;z-index:60;box-shadow:var(--shadow-lg)}.cat-menu a{display:block;padding:8px 16px;color:var(--text-soft);font-size:14px}.cat-menu a:hover{background:var(--surface-2);color:var(--accent)}.crumb{font-size:13px;color:var(--text-faint);margin:0 0 14px}.crumb a{color:var(--text-soft)}.crumb span{margin:0 6px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 20px;border-radius:10px;font-weight:600;font-size:15px;border:1px solid transparent;cursor:pointer;transition:transform .08s ease,background .15s ease}.btn:active{transform:translateY(1px)}.btn-primary{background:var(--accent);color:var(--accent-contrast)}.btn-primary:hover{background:var(--accent-hover);color:var(--accent-contrast)}.btn-lg{padding:14px 28px;font-size:16px}.btn-block{display:flex;width:100%}.tag{display:inline-block;padding:3px 10px;border-radius:999px;background:var(--surface-2);color:var(--text-soft);font-size:12px;font-weight:500}.tag-accent{background:var(--accent-soft);color:var(--accent)}.section-head{display:flex;align-items:baseline;justify-content:space-between;margin:28px 0 14px}.section-head h2{font-size:20px;margin:0;font-weight:700}.section-head a{font-size:13px;font-weight:600}.page-title{font-size:clamp(24px,3.2vw,34px);font-weight:800;letter-spacing:-.02em;margin:4px 0 6px}.grid{display:grid;gap:18px;grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}.grid-tight{display:grid;gap:14px;grid-template-columns:repeat(auto-fill,minmax(168px,1fr))}.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;color:var(--text);box-shadow:var(--shadow-sm);transition:transform .14s ease,box-shadow .14s ease,border-color .14s ease}.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:color-mix(in srgb,var(--accent) 35%,var(--border))}.card a{color:inherit}.card-thumb{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;background:var(--surface-2)}.card-thumb.square{aspect-ratio:1/1}.card-body{padding:14px 16px;display:flex;flex-direction:column;gap:6px;flex:1}.card-title{font-size:15.5px;font-weight:700;margin:0;line-height:1.35}.card-title a:hover{color:var(--accent)}.card-excerpt{font-size:13.5px;color:var(--text-soft);margin:0;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.card-meta{font-size:12px;color:var(--text-faint);margin:0}.hero{background:linear-gradient(135deg,var(--accent),color-mix(in srgb,var(--accent) 55%,#db2777));color:#fff;border-radius:var(--radius);padding:32px 28px;margin-bottom:24px}.hero h1{color:#fff;font-size:clamp(22px,3.4vw,32px);margin:0 0 8px;font-weight:800}.hero p{color:#ffffffe6;margin:0;max-width:60ch}.with-sidebar{display:grid;grid-template-columns:1fr;gap:24px}@media (min-width: 960px){.with-sidebar{grid-template-columns:minmax(0,1fr) 300px;align-items:start}}.sidebar{display:flex;flex-direction:column;gap:16px}@media (min-width: 960px){.sidebar{position:sticky;top:calc(var(--header-h) + 18px)}}.panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:16px;box-shadow:var(--shadow-sm)}.panel h3{font-size:15px;margin:0 0 12px}.side-list{display:flex;flex-direction:column;gap:10px}.side-item{display:flex;gap:10px;align-items:center;color:var(--text)}.side-item img{width:56px;height:56px;border-radius:9px;object-fit:cover;flex:0 0 auto;background:var(--surface-2)}.side-item .t{font-size:13.5px;font-weight:600;line-height:1.3}.prose{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px 26px;box-shadow:var(--shadow-sm)}.prose h1{font-size:clamp(24px,3.4vw,32px);font-weight:800;margin:0 0 10px}.article-html{max-width:100%;overflow-wrap:anywhere;color:var(--text);line-height:1.75}.article-html :where(img,video,iframe,embed,object){max-width:100%!important;height:auto!important;display:block;border-radius:10px;margin:16px 0}.article-html img{width:100%;aspect-ratio:16 / 9;object-fit:cover}.article-html :where(table,pre){max-width:100%;overflow-x:auto;display:block}.article-html :where(p,li,h1,h2,h3,h4){overflow-wrap:anywhere}.article-html h2{font-size:22px;margin:28px 0 10px}.article-html h3{font-size:18px;margin:22px 0 8px}.article-html a{color:var(--accent)}.legal-page{max-width:780px;margin:0 auto;background:var(--surface);border:1px solid var(--border);padding:30px;border-radius:var(--radius);box-shadow:var(--shadow-sm)}.legal-page h2{font-size:28px;margin:0 0 16px}.legal-page h3{font-size:18px;margin:24px 0 8px}.legal-page p,.legal-page li{color:var(--text-soft)}.legal-page ul{padding-left:20px}.legal-page em{color:var(--text-faint)}.site-footer{background:var(--surface);border-top:1px solid var(--border);padding:30px 20px;margin-top:40px}.site-footer-nav{display:flex;flex-wrap:wrap;gap:20px;justify-content:center;margin-bottom:12px}.site-footer-nav a{color:var(--text-soft);font-size:14px}.site-footer-nav a:hover{color:var(--accent)}.site-footer-copy{text-align:center;color:var(--text-faint);font-size:13px;margin:0}.ad-wrap{display:flex;flex-direction:column;align-items:center;margin:20px 0}.ad-label{font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--text-faint);margin:0 0 4px}.ad-slot{display:block;margin:0;min-height:100px}.ad-slot.ad-rect{min-height:250px}.ad-slot.ad-fill{width:100%}body:has([data-ad-slot=anchor]){padding-bottom:84px}[data-ad-slot=anchor]{position:fixed;bottom:0;left:0;right:0;z-index:999;margin:0;min-height:60px;background:var(--surface);background:color-mix(in srgb,var(--surface) 96%,transparent);border-top:1px solid var(--border);box-shadow:0 -2px 12px #0000000f;display:flex;align-items:center;justify-content:center}@media (max-width: 560px){.nav a{padding:6px 9px;font-size:13px}.brand{font-size:17px}.container{padding:18px 14px}}:root{--bg: #f3ece0;--surface: #fffdf8;--surface-2: #e9e0cf;--text: #16150f;--text-soft: #57503f;--text-faint: #8b8371;--border: #ddd3bf;--accent: #b4232a;--accent-contrast: #fffdf8;--radius: 3px;--radius-sm: 2px;--shadow-sm: none;--shadow-md: none;--shadow-lg: 0 10px 28px rgba(22,21,15,.18);--maxw: 1080px;--font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", "Songti SC", "SimSun", serif;--ink: #16150f;--ink-text: #f2ebdb;--ink-soft: #a9a08b}html[data-theme=dark]{--bg: #141310;--surface: #1d1b16;--surface-2: #272419;--text: #f2efe5;--text-soft: #b2ab9b;--text-faint: #8a8474;--border: #35312a;--accent: #e05a52;--accent-contrast: #141310;--ink: #0c0b09;--ink-text: #f2efe5;--ink-soft: #8a8474}body h1,body h2,body h3,body .brand,body .page-title,body .card-title,body .prose h1{font-family:var(--font-serif);letter-spacing:0}body .site-header{background:var(--ink);border-bottom:3px solid var(--accent);box-shadow:none}body .site-header .brand{color:var(--ink-text);font-size:23px;font-weight:700}body .site-header .brand:hover{color:var(--ink-text)}body .site-header .brand .dot{width:9px;height:23px;border-radius:0;background:var(--accent)}body .site-header .nav a,body .site-header .cat-dropdown summary{color:var(--ink-soft);border-radius:0;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.08em}body .site-header .nav a:hover,body .site-header .cat-dropdown summary:hover{background:transparent;color:var(--ink-text);box-shadow:inset 0 -2px 0 var(--accent)}body .site-header .cat-menu{background:var(--ink);border:1px solid #2e2a20;border-radius:0;padding:4px 0}body .site-header .cat-menu a{color:var(--ink-soft);font-size:13.5px}body .site-header .cat-menu a:hover{background:#241f18;color:var(--ink-text)}body .page-title{font-size:clamp(26px,3.4vw,36px);font-weight:700;padding-left:14px;border-left:5px solid var(--accent)}body .section-head{border-bottom:2px solid var(--text);padding-bottom:6px}body .section-head h2{font-size:18px;text-transform:uppercase;letter-spacing:.05em}body .crumb{text-transform:uppercase;letter-spacing:.06em;font-size:11.5px;font-weight:600}body .grid{grid-template-columns:1fr;gap:0}body .grid>.card{flex-direction:row;align-items:stretch;gap:16px;border:0;border-bottom:1px solid var(--border);border-radius:0;background:transparent;padding:18px 0}body .grid>.card:hover{transform:none;border-color:var(--accent);box-shadow:none}body .grid>.card>a{flex:0 0 108px;align-self:flex-start}body .grid>.card>a>.card-thumb{aspect-ratio:1/1;border-radius:2px}body .grid>.card .card-body{padding:0;gap:5px}body .grid>.card .card-title{font-size:19px;font-weight:700}body .grid>.card:hover .card-title{color:var(--accent)}@media (min-width: 640px){body .grid>.card{gap:22px;padding:22px 0}body .grid>.card>a{flex:0 0 190px}body .grid>.card>a>.card-thumb{aspect-ratio:4/3}body .grid>.card .card-title{font-size:22px;line-height:1.28}}body .card-meta{text-transform:uppercase;letter-spacing:.07em;font-size:11px;font-weight:700;color:var(--accent)}body .card-excerpt{font-family:var(--font-serif);font-size:15px;line-height:1.55}body .prose{background:var(--surface);border:1px solid var(--border);border-radius:0;border-top:4px solid var(--accent);padding:26px 28px}body .prose h1{font-size:clamp(28px,4.2vw,42px);font-weight:700;line-height:1.18}body .article-html{font-family:var(--font-serif);font-size:17.5px;line-height:1.72}body .article-html h2,body .article-html h3{font-family:var(--font-serif)}body .article-html img{border-radius:2px}body .prose .article-html>p:first-child:first-letter{float:left;font-size:3.4em;line-height:.84;font-weight:700;margin:.04em .09em 0 0;color:var(--accent)}body .prose .article-html~.article-html>p:first-child:first-letter{float:none;font-size:inherit;line-height:inherit;font-weight:inherit;margin:0;color:inherit}body .panel{background:var(--surface);border:1px solid var(--border);border-top:3px solid var(--text);border-radius:0;padding:14px 16px}body .panel h3{font-family:var(--font);font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:var(--text-soft)}body .side-item{padding-bottom:10px;border-bottom:1px solid var(--border)}body .side-item img{border-radius:2px;width:62px;height:62px}body .side-item .t{font-family:var(--font-serif);font-size:14.5px;font-weight:600}body .side-item:hover .t{color:var(--accent)}body .legal-page{border-radius:0;border-top:4px solid var(--accent)}body .legal-page h2,body .legal-page h3{font-family:var(--font-serif)}body .btn{border-radius:0;text-transform:uppercase;letter-spacing:.05em;font-size:13px}body .tag{border-radius:0;text-transform:uppercase;letter-spacing:.06em;font-size:11px;font-weight:700}body .site-footer{background:var(--ink);border-top:3px solid var(--accent)}body .site-footer-nav a{color:var(--ink-soft);text-transform:uppercase;letter-spacing:.06em;font-size:12px;font-weight:600}body .site-footer-nav a:hover{color:var(--ink-text)}body .site-footer-copy{color:var(--ink-soft);font-family:var(--font-serif)}
