: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 :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{--accent: #1a73e8}
