@charset "UTF-8";
/* ==========================================================================
   URLCE 域名综合查询官网主题
   style.css  ·  v1.4.0
   ========================================================================== */

/* ---------- 1. 设计变量 ---------- */
:root {
    --brand-1: #00c6ff;
    --brand-2: #0072ff;
    --brand-3: #00e0ff;
    --accent:  #00e0ff;

    --bg:       #070c17;
    --bg-soft:  #0a1220;
    --bg-alt:   #0c1526;
    --panel:    rgba(255, 255, 255, .035);
    --panel-2:  rgba(255, 255, 255, .055);
    --line:     rgba(140, 180, 255, .14);
    --line-soft:rgba(140, 180, 255, .08);

    --text:     #e8f0ff;
    --text-2:   #a9bcdb;
    --muted:    #7d90b3;

    --ok:   #35d99a;
    --warn: #ffc453;
    --risk: #ff6b81;

    --radius:   16px;
    --radius-lg:24px;
    --radius-sm:10px;
    --shadow:   0 24px 60px -30px rgba(0, 0, 0, .85);
    --glow:     0 0 0 1px rgba(0, 198, 255, .18), 0 18px 50px -22px rgba(0, 114, 255, .55);
    --container: 1200px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --mono: "SFMono-Regular", "JetBrains Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

html[data-theme-color="cyan"]   { --brand-1: #22e0e0; --brand-2: #0090d9; --brand-3: #67f5e8; }
html[data-theme-color="purple"] { --brand-1: #9d7bff; --brand-2: #5936f0; --brand-3: #c6a8ff; --accent: #b899ff; }
html[data-theme-color="green"]  { --brand-1: #3ee08a; --brand-2: #0f9d6c; --brand-3: #86f7bd; --accent: #5eeaa6; }

/* ---------- 2. 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.urlce {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.urlce::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(900px 520px at 12% -8%, rgba(0, 114, 255, .18), transparent 60%),
        radial-gradient(760px 460px at 92% 4%, rgba(0, 224, 255, .12), transparent 62%);
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-1); }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.25; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }
em { font-style: normal; }
kbd {
    font-family: var(--mono); font-size: 11px; padding: 1px 5px;
    border: 1px solid var(--line); border-radius: 5px; color: var(--text-2);
}
::selection { background: rgba(0, 198, 255, .3); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-narrow { max-width: 820px; }

.ico { width: 22px; height: 22px; flex: none; display: inline-block; vertical-align: -.18em; }
.ico-xs { width: 14px; height: 14px; }
.ico-sm { width: 17px; height: 17px; }
.ico-lg { width: 26px; height: 26px; }
.ico-xl { width: 44px; height: 44px; }

/* ---------- 3. 按钮 ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 999px; border: 1px solid transparent;
    font-size: 14px; font-weight: 600; white-space: nowrap; position: relative;
    overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(120deg, var(--brand-2), var(--brand-1));
    color: #fff;
    box-shadow: 0 14px 34px -16px rgba(0, 114, 255, .95), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn-primary:hover { color: #fff; box-shadow: 0 20px 46px -16px rgba(0, 180, 255, 1); }

.btn-ghost {
    background: var(--panel-2); color: var(--text);
    border-color: var(--line);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(0, 198, 255, .55); color: #fff; background: rgba(0, 198, 255, .1); }

.btn-shine {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .42) 48%, transparent 62%);
    transform: translateX(-120%);
}
.btn-primary:hover .btn-shine { animation: shine .9s var(--ease); }
@keyframes shine { to { transform: translateX(120%); } }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 30px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* ---------- 4. 顶栏 + 导航 ---------- */
.topbar {
    position: relative; z-index: 60;
    background: linear-gradient(90deg, rgba(0, 114, 255, .16), rgba(0, 224, 255, .12));
    border-bottom: 1px solid var(--line-soft);
    font-size: 13px; color: var(--text-2);
}
.topbar-in { display: flex; align-items: center; gap: 10px; height: 38px; }
.topbar-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(53, 217, 154, .18); animation: pulseDot 2s infinite; }
.topbar-text { color: var(--text-2); }
.topbar-mail { margin-left: auto; color: var(--muted); font-family: var(--mono); font-size: 12px; }
@keyframes pulseDot { 50% { opacity: .45; } }

.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(18px) saturate(1.4);
    background: rgba(7, 12, 23, .72);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}
.site-header.is-stuck { border-bottom-color: var(--line-soft); background: rgba(7, 12, 23, .92); box-shadow: 0 12px 34px -24px #000; }
.header-in { display: flex; align-items: center; gap: 22px; height: 70px; }

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand:hover { color: inherit; }
.brand-logo { height: 38px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 16.5px; letter-spacing: -.02em; color: #fff; }
.brand-text small { font-size: 9.5px; letter-spacing: .16em; color: var(--muted); font-family: var(--mono); }

.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item > a {
    display: block; padding: 8px 14px; border-radius: 10px;
    font-size: 14px; font-weight: 500; color: var(--text-2);
}
.nav-item > a:hover, .nav-item.is-active > a { color: #fff; background: var(--panel-2); }
.nav-item.is-active > a { color: var(--brand-1); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.header-search-hint {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
    font-size: 12.5px; color: var(--muted); background: var(--panel);
}
.header-search-hint em { font-size: 12.5px; }

.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--panel-2); border-radius: 11px; padding: 11px 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; margin: 3px 0; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- 5. 首屏 ---------- */
.hero { position: relative; padding: 92px 0 104px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-grid {
    position: absolute; inset: -10%;
    background-image:
        linear-gradient(rgba(120, 170, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 170, 255, .07) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(ellipse 78% 62% at 50% 34%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 34%, #000 20%, transparent 78%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.orb-1 { width: 460px; height: 460px; top: -140px; left: 4%; background: radial-gradient(circle, rgba(0, 114, 255, .75), transparent 68%); animation: float1 14s ease-in-out infinite; }
.orb-2 { width: 380px; height: 380px; top: -60px; right: 2%; background: radial-gradient(circle, rgba(0, 224, 255, .55), transparent 68%); animation: float2 18s ease-in-out infinite; }
.orb-3 { width: 420px; height: 420px; bottom: -220px; left: 42%; background: radial-gradient(circle, rgba(120, 80, 255, .4), transparent 70%); animation: float1 22s ease-in-out infinite reverse; }
@keyframes float1 { 50% { transform: translate(24px, 30px) scale(1.08); } }
@keyframes float2 { 50% { transform: translate(-30px, 22px) scale(1.1); } }

.hero-scan {
    position: absolute; left: 0; right: 0; height: 1px; top: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 255, .7), transparent);
    box-shadow: 0 0 18px rgba(0, 224, 255, .55);
    animation: scanDown 7s linear infinite;
    opacity: .7;
}
@keyframes scanDown { 0% { top: 4%; opacity: 0; } 12% { opacity: .8; } 88% { opacity: .8; } 100% { top: 96%; opacity: 0; } }

.hero-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
    font-size: 13px; color: var(--text-2);
    background: var(--panel-2); border: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-1); box-shadow: 0 0 10px var(--brand-1); animation: pulseDot 1.8s infinite; }

.hero-title {
    font-size: clamp(32px, 5.2vw, 58px);
    letter-spacing: -.03em; line-height: 1.14; color: #fff; max-width: 960px;
}
.hero-title em, .section-title em {
    background: linear-gradient(100deg, var(--brand-1), var(--brand-3) 55%, var(--brand-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 20px; max-width: 700px; font-size: 16px; color: var(--text-2); }

/* 查询台 */
.console {
    margin-top: 44px; width: 100%; max-width: 860px;
    background: linear-gradient(180deg, rgba(18, 30, 52, .92), rgba(9, 16, 30, .92));
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 10px; box-shadow: var(--shadow), 0 0 0 1px rgba(0, 198, 255, .07);
    backdrop-filter: blur(16px);
}
.console-tabs { display: flex; gap: 4px; padding: 4px; overflow-x: auto; scrollbar-width: none; }
.console-tabs::-webkit-scrollbar { display: none; }
.console-tab {
    display: inline-flex; align-items: center; gap: 7px; flex: none;
    padding: 9px 16px; border-radius: 12px; border: 0; background: transparent;
    font-size: 13.5px; font-weight: 500; color: var(--muted); transition: all .22s var(--ease);
}
.console-tab:hover { color: var(--text); background: var(--panel-2); }
.console-tab.is-active {
    color: #fff; background: linear-gradient(120deg, rgba(0, 114, 255, .9), rgba(0, 198, 255, .78));
    box-shadow: 0 10px 26px -14px rgba(0, 160, 255, .95);
}

.console-form { padding: 10px 6px 4px; }
.console-field {
    display: flex; align-items: center; gap: 10px;
    background: rgba(4, 9, 18, .72); border: 1px solid var(--line);
    border-radius: 16px; padding: 9px 9px 9px 18px;
    transition: border-color .25s, box-shadow .25s;
}
.console-field:focus-within { border-color: rgba(0, 198, 255, .6); box-shadow: 0 0 0 4px rgba(0, 150, 255, .12); }
.console-ico { color: var(--brand-1); }
.console-input {
    flex: 1; min-width: 0; background: transparent; border: 0; outline: none;
    color: var(--text); font-size: 15.5px; padding: 10px 0; letter-spacing: .01em;
}
.console-input::placeholder { color: var(--muted); }
.console-btn { padding: 12px 26px; }

.console-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 12px 12px 8px; font-size: 12.5px; color: var(--muted); }
.console-hint { color: var(--muted); }
.chip {
    padding: 4px 11px; border-radius: 999px; border: 1px dashed var(--line);
    background: transparent; color: var(--text-2); font-size: 12px; font-family: var(--mono);
    transition: all .2s var(--ease);
}
.chip:hover { border-style: solid; border-color: var(--brand-1); color: var(--brand-1); background: rgba(0, 198, 255, .08); }
.chip-sm { font-size: 11.5px; }
.console-secure { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; color: var(--ok); }

.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 30px; font-size: 13px; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .ico { color: var(--ok); }

/* ---------- 6. 数据条 ---------- */
.stats { padding: 8px 0 44px; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line-soft); border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg); overflow: hidden;
}
.stat { background: linear-gradient(180deg, rgba(14, 24, 42, .9), rgba(9, 16, 30, .9)); padding: 30px 22px; text-align: center; }
.stat-num { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: #fff; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat-num .counter { background: linear-gradient(100deg, var(--brand-1), var(--brand-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 6px; font-size: 13px; color: var(--muted); }

/* ---------- 7. 区块 ---------- */
.section { padding: 92px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(10, 18, 32, .72) 18%, rgba(10, 18, 32, .72) 82%, transparent); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; max-width: none; text-align: left; }
.section-tag {
    display: inline-block; margin-bottom: 14px; padding: 5px 14px; border-radius: 999px;
    font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--brand-1); background: rgba(0, 198, 255, .09); border: 1px solid rgba(0, 198, 255, .24);
}
.section-title { font-size: clamp(24px, 3.4vw, 38px); color: #fff; letter-spacing: -.025em; }
.section-desc { margin-top: 16px; color: var(--text-2); font-size: 15.5px; }
.link-more { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--brand-1); white-space: nowrap; }
.link-more:hover { gap: 11px; }

/* ---------- 8. 工具卡片 ---------- */
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tool-card {
    position: relative; display: flex; flex-direction: column;
    padding: 26px 22px 22px; border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(18, 30, 52, .7), rgba(9, 16, 30, .7));
    border: 1px solid var(--line); overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.tool-card:hover { transform: translateY(-6px); border-color: rgba(0, 198, 255, .45); box-shadow: var(--glow); color: inherit; }
.tool-glow {
    position: absolute; top: -70px; right: -70px; width: 190px; height: 190px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 255, .35), transparent 66%);
    opacity: 0; transition: opacity .4s;
}
.tool-card:hover .tool-glow { opacity: 1; }
.tool-card[data-color="cyan"]   .tool-glow { background: radial-gradient(circle, rgba(34, 224, 224, .35), transparent 66%); }
.tool-card[data-color="green"]  .tool-glow { background: radial-gradient(circle, rgba(53, 217, 154, .35), transparent 66%); }
.tool-card[data-color="purple"] .tool-glow { background: radial-gradient(circle, rgba(157, 123, 255, .35), transparent 66%); }
.tool-card[data-color="orange"] .tool-glow { background: radial-gradient(circle, rgba(255, 160, 60, .32), transparent 66%); }
.tool-card[data-color="indigo"] .tool-glow { background: radial-gradient(circle, rgba(103, 132, 255, .35), transparent 66%); }
.tool-card[data-color="teal"]   .tool-glow { background: radial-gradient(circle, rgba(56, 205, 190, .35), transparent 66%); }

.tool-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; border-radius: 15px; margin-bottom: 18px;
    color: var(--brand-1);
    background: linear-gradient(140deg, rgba(0, 114, 255, .22), rgba(0, 224, 255, .12));
    border: 1px solid rgba(0, 198, 255, .26);
}
.tool-card[data-color="green"]  .tool-icon { color: #4fe0a0; background: linear-gradient(140deg, rgba(53, 217, 154, .2), rgba(53, 217, 154, .08)); border-color: rgba(53, 217, 154, .26); }
.tool-card[data-color="purple"] .tool-icon { color: #b49bff; background: linear-gradient(140deg, rgba(157, 123, 255, .22), rgba(157, 123, 255, .08)); border-color: rgba(157, 123, 255, .28); }
.tool-card[data-color="orange"] .tool-icon { color: #ffbc6b; background: linear-gradient(140deg, rgba(255, 160, 60, .2), rgba(255, 160, 60, .07)); border-color: rgba(255, 160, 60, .28); }
.tool-card[data-color="indigo"] .tool-icon { color: #8fa6ff; background: linear-gradient(140deg, rgba(103, 132, 255, .22), rgba(103, 132, 255, .08)); border-color: rgba(103, 132, 255, .28); }
.tool-card[data-color="teal"]   .tool-icon { color: #5ddccb; background: linear-gradient(140deg, rgba(56, 205, 190, .2), rgba(56, 205, 190, .08)); border-color: rgba(56, 205, 190, .28); }

.tool-name { font-size: 17.5px; color: #fff; }
.tool-en { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-family: var(--mono); margin-top: 3px; }
.tool-desc { margin-top: 12px; font-size: 13.5px; color: var(--text-2); flex: 1; }
.tool-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tool-tags i { font-size: 11.5px; padding: 2px 9px; border-radius: 6px; background: var(--panel-2); border: 1px solid var(--line-soft); color: var(--muted); }
.tool-go { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; color: var(--brand-1); }
.tool-card:hover .tool-go { gap: 10px; }

/* ---------- 9. Bento 解决方案 ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bento-card {
    grid-column: span 2; position: relative; padding: 30px 28px;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(18, 30, 52, .66), rgba(9, 16, 30, .66));
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.bento-card:hover { transform: translateY(-4px); border-color: rgba(0, 198, 255, .4); box-shadow: var(--glow); }
.bento-wide { grid-column: span 2; }
.bento-accent { background: linear-gradient(150deg, rgba(0, 114, 255, .22), rgba(0, 224, 255, .09)); border-color: rgba(0, 198, 255, .3); }
.bento-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 14px; margin-bottom: 16px;
    color: var(--brand-1); background: rgba(0, 198, 255, .1); border: 1px solid rgba(0, 198, 255, .24);
}
.bento-card h3 { font-size: 19px; color: #fff; }
.bento-card p { margin-top: 10px; font-size: 14px; color: var(--text-2); }
.tick { margin-top: 18px; display: grid; gap: 9px; }
.tick li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-2); }
.tick .ico { color: var(--ok); }
.code-line {
    margin-top: 18px; padding: 12px 16px; border-radius: 12px; font-family: var(--mono); font-size: 12.5px;
    color: #bfe6ff; background: rgba(2, 7, 16, .7); border: 1px solid var(--line); overflow-x: auto; white-space: nowrap;
}
.code-line span { color: var(--ok); font-weight: 700; }

/* ---------- 10. 步骤 ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--panel); }
.step-idx {
    display: inline-block; font-family: var(--mono); font-size: 30px; font-weight: 700; line-height: 1;
    background: linear-gradient(120deg, var(--brand-1), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h4 { margin-top: 14px; font-size: 18px; color: #fff; }
.step p { margin-top: 8px; font-size: 14px; color: var(--text-2); }

/* ---------- 11. 价格 ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
    position: relative; display: flex; flex-direction: column;
    padding: 34px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--line); background: linear-gradient(180deg, rgba(18, 30, 52, .6), rgba(9, 16, 30, .6));
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.plan:hover { transform: translateY(-5px); border-color: rgba(0, 198, 255, .4); }
.plan-featured { border-color: rgba(0, 198, 255, .5); background: linear-gradient(180deg, rgba(0, 114, 255, .18), rgba(9, 16, 30, .8)); box-shadow: var(--glow); }
.plan-flag {
    position: absolute; top: -13px; right: 24px; padding: 5px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 600; color: #04121f;
    background: linear-gradient(120deg, var(--brand-3), var(--brand-1));
}
.plan h3 { font-size: 18px; color: #fff; }
.plan-price { margin: 16px 0 6px; font-size: 44px; font-weight: 800; color: #fff; letter-spacing: -.03em; display: flex; align-items: baseline; gap: 4px; }
.plan-price .cur { font-size: 20px; font-weight: 600; color: var(--text-2); }
.plan-price .unit { font-size: 14px; font-weight: 500; color: var(--muted); }
.plan-note { font-size: 13px; color: var(--muted); }
.plan-list { margin: 22px 0 26px; display: grid; gap: 11px; flex: 1; }
.plan-list li { position: relative; padding-left: 24px; font-size: 13.5px; color: var(--text-2); }
.plan-list li::before {
    content: ""; position: absolute; left: 0; top: .52em; width: 13px; height: 7px;
    border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg);
}

/* ---------- 12. FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq-item {
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
    overflow: hidden; transition: border-color .3s, background .3s;
}
.faq-item[open] { border-color: rgba(0, 198, 255, .38); background: rgba(0, 114, 255, .07); }
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 22px; font-size: 15.5px; font-weight: 600; color: var(--text); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; width: 14px; height: 14px; flex: none; }
.faq-mark::before, .faq-mark::after {
    content: ""; position: absolute; left: 50%; top: 50%; background: var(--brand-1); border-radius: 2px;
    transform: translate(-50%, -50%); transition: transform .3s var(--ease);
}
.faq-mark::before { width: 13px; height: 2px; }
.faq-mark::after { width: 2px; height: 13px; }
.faq-item[open] .faq-mark::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-body { padding: 0 22px 20px; font-size: 14px; color: var(--text-2); }

/* ---------- 13. CTA ---------- */
.cta-band { padding: 20px 0 0; }
.cta-inner {
    position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px;
    padding: 44px 46px; border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(130deg, rgba(0, 114, 255, .3), rgba(0, 224, 255, .12));
    border: 1px solid rgba(0, 198, 255, .3);
    box-shadow: 0 30px 70px -40px rgba(0, 150, 255, .9);
}
.cta-glow {
    position: absolute; top: -160px; right: -80px; width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 224, 255, .45), transparent 68%); filter: blur(50px);
}
.cta-text { position: relative; }
.cta-text h2 { font-size: clamp(21px, 2.6vw, 30px); color: #fff; }
.cta-text p { margin-top: 10px; font-size: 14.5px; color: rgba(255, 255, 255, .78); }
.cta-actions { position: relative; display: flex; gap: 12px; flex: none; }

/* ---------- 14. 文章卡片 ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
    border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 30, 52, .6), rgba(9, 16, 30, .6));
    transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.post-card:hover { transform: translateY(-5px); border-color: rgba(0, 198, 255, .4); box-shadow: var(--glow); }
.post-card-link { display: flex; flex-direction: column; height: 100%; }
.post-card-link:hover { color: inherit; }
.post-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0b1424; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-thumb-fallback { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(0, 114, 255, .25), rgba(0, 224, 255, .1)); }
.post-thumb-mark { color: rgba(255, 255, 255, .55); }
.post-card-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.post-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); }
.post-cat { color: var(--brand-1); }
.post-title { margin-top: 10px; font-size: 17px; color: #fff; line-height: 1.42; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-excerpt { margin-top: 10px; font-size: 13.5px; color: var(--text-2); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; color: var(--brand-1); }

/* ---------- 15. 分页 / 空状态 ---------- */
.pager { display: flex; justify-content: center; margin-top: 44px; }
.pager ul, .pager { display: flex; flex-wrap: wrap; gap: 8px; }
.pager li a, .pager li span, .page-navigator li a, .page-navigator li span {
    display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px;
    padding: 0 12px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel);
    font-size: 13.5px; color: var(--text-2); transition: all .22s var(--ease);
}
.pager li a:hover, .page-navigator li a:hover { border-color: var(--brand-1); color: #fff; background: rgba(0, 198, 255, .1); }
.page-navigator li.current a, .page-navigator li.current span { background: linear-gradient(120deg, var(--brand-2), var(--brand-1)); border-color: transparent; color: #fff; font-weight: 600; }
.page-navigator { display: flex; flex-wrap: wrap; gap: 8px; }

.empty { text-align: center; padding: 70px 20px; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.empty .ico { color: var(--brand-1); opacity: .5; margin-bottom: 14px; }
.empty p { margin-bottom: 18px; }

/* ---------- 16. 页脚 ---------- */
.site-footer { margin-top: 40px; border-top: 1px solid var(--line-soft); background: linear-gradient(180deg, rgba(8, 14, 26, .6), rgba(4, 8, 16, .95)); position: relative; z-index: 1; }
.footer-main { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 46px; padding: 62px 24px 40px; }
.footer-about { margin-top: 18px; font-size: 13.5px; color: var(--muted); max-width: 340px; }
.footer-badges { display: flex; gap: 10px; margin-top: 20px; }
.pill {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px;
    font-size: 12px; color: var(--text-2); background: var(--panel); border: 1px solid var(--line-soft);
}
.brand-footer { display: flex; align-items: center; gap: 11px; }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.footer-col h4 { font-size: 14px; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--muted); }
.footer-col a:hover { color: var(--brand-1); }
.footer-mail { display: flex; align-items: center; gap: 8px; }
.footer-note { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    padding: 20px 24px 28px; border-top: 1px solid var(--line-soft);
    font-size: 12.5px; color: var(--muted);
}
.footer-bottom .sep { opacity: .5; margin: 0 4px; }
.license { display: flex; gap: 14px; }
.license a { color: var(--muted); }
.license a:hover { color: var(--brand-1); }

/* ---------- 17. 返回顶部 ---------- */
.to-top {
    position: fixed; right: 26px; bottom: 26px; z-index: 40;
    width: 44px; height: 44px; border-radius: 13px; border: 1px solid var(--line);
    background: rgba(10, 18, 32, .9); color: var(--text-2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all .3s var(--ease); backdrop-filter: blur(10px);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--brand-1); color: var(--brand-1); }

/* ---------- 18. 内页头部 ---------- */
.page-hero { position: relative; padding: 66px 0 54px; border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.page-hero-sm { padding: 52px 0 42px; }
.page-hero-inner { position: relative; z-index: 1; }
.crumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--brand-1); }
.crumb span { opacity: .5; }
.crumb em { color: var(--text-2); }
.page-title { font-size: clamp(26px, 3.6vw, 40px); color: #fff; letter-spacing: -.025em; }
.page-sub { margin-top: 12px; color: var(--text-2); font-size: 15px; }

/* ---------- 19. 工具台 ---------- */
.guide-page { padding-top: 56px; }
.tool-layout { display: grid; grid-template-columns: 268px 1fr; gap: 24px; align-items: start; }
.tool-aside-inner {
    display: grid; gap: 6px; padding: 12px;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(16, 28, 48, .82), rgba(9, 16, 30, .82));
    position: sticky; top: 92px;
}
.tool-tab {
    display: flex; align-items: center; gap: 12px; text-align: left;
    padding: 12px 14px; border-radius: 13px; border: 1px solid transparent; background: transparent;
    color: var(--text-2); transition: all .24s var(--ease);
}
.tool-tab:hover { background: var(--panel-2); color: var(--text); }
.tool-tab.is-active { background: linear-gradient(120deg, rgba(0, 114, 255, .26), rgba(0, 224, 255, .12)); border-color: rgba(0, 198, 255, .4); color: #fff; }
.tool-tab-icon {
    display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: none;
    border-radius: 10px; background: var(--panel-2); border: 1px solid var(--line-soft); color: var(--brand-1);
}
.tool-tab-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.tool-tab-text b { font-size: 14px; font-weight: 600; }
.tool-tab-text i { font-size: 10.5px; letter-spacing: .08em; color: var(--muted); font-family: var(--mono); text-transform: uppercase; }

.query-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(16, 28, 48, .78), rgba(9, 16, 30, .78)); padding: 26px; }
.query-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.query-badge {
    display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; flex: none;
    border-radius: 14px; color: var(--brand-1); background: rgba(0, 198, 255, .1); border: 1px solid rgba(0, 198, 255, .26);
}
.query-head h2 { font-size: 20px; color: #fff; }
.query-head p { margin-top: 6px; font-size: 13.5px; color: var(--text-2); }
.query-row { display: flex; gap: 12px; }
.query-input {
    flex: 1; min-width: 0; height: 52px; padding: 0 20px;
    background: rgba(4, 9, 18, .75); border: 1px solid var(--line); border-radius: 14px;
    color: var(--text); font-size: 15px; outline: none; transition: border-color .25s, box-shadow .25s;
}
.query-input:focus { border-color: rgba(0, 198, 255, .6); box-shadow: 0 0 0 4px rgba(0, 150, 255, .12); }
.query-submit { height: 52px; padding: 0 30px; border-radius: 14px; }
.query-tips { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.query-examples { display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; }

.result-panel { margin-top: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(16, 28, 48, .6), rgba(9, 16, 30, .6)); padding: 26px; min-height: 240px; }
.result-empty { text-align: center; padding: 46px 20px; color: var(--muted); }
.result-empty-icon { color: rgba(0, 198, 255, .45); margin-bottom: 14px; display: flex; justify-content: center; }
.result-empty h3 { font-size: 17px; color: var(--text-2); margin-bottom: 8px; }
.result-empty p { font-size: 13.5px; }

.result-loading { text-align: center; padding: 60px 20px; }
.result-loading p { margin-top: 18px; font-size: 13.5px; color: var(--text-2); }
.spinner {
    width: 44px; height: 44px; margin: 0 auto; border-radius: 50%;
    border: 3px solid rgba(0, 198, 255, .16); border-top-color: var(--brand-1);
    animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.result-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.result-target { display: flex; flex-direction: column; gap: 3px; }
.result-target-label { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.result-target-value { font-size: 17px; color: #fff; font-family: var(--mono); word-break: break-all; }
.result-status { display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; }
.status-safe { color: #062; background: rgba(53, 217, 154, .16); border: 1px solid rgba(53, 217, 154, .4); color: #6ff0b4; }
.status-warn { background: rgba(255, 196, 83, .14); border: 1px solid rgba(255, 196, 83, .4); color: #ffd78a; }
.status-risk { background: rgba(255, 107, 129, .14); border: 1px solid rgba(255, 107, 129, .42); color: #ff9aab; }
.status-info { background: rgba(0, 198, 255, .12); border: 1px solid rgba(0, 198, 255, .35); color: var(--brand-3); }

.result-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 22px 0; }
.summary-item { padding: 16px 18px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line-soft); }
.summary-item dt { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.summary-item dd { margin: 0; font-size: 15px; color: #fff; word-break: break-all; }

.result-table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: 14px; }
.result-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.result-table th, .result-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.result-table tr:last-child td { border-bottom: 0; }
.result-table th { width: 190px; color: var(--muted); font-weight: 500; background: rgba(255, 255, 255, .02); }
.result-table td { color: var(--text-2); font-family: var(--mono); word-break: break-all; }
.result-table td.is-strong { color: #fff; font-family: var(--font); }
.result-table tr:hover td { background: rgba(0, 198, 255, .04); }

.result-raw { margin-top: 18px; border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden; }
.result-raw summary { padding: 12px 18px; font-size: 13px; color: var(--text-2); cursor: pointer; list-style: none; background: var(--panel); }
.result-raw summary::-webkit-details-marker { display: none; }
.result-raw pre { margin: 0; padding: 18px; background: rgba(2, 7, 16, .75); color: #a9d8ff; font-family: var(--mono); font-size: 12.5px; overflow-x: auto; max-height: 340px; }
.result-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.tool-article { margin-top: 46px; }

/* ---------- 20. 文章正文 ---------- */
.entry { position: relative; }
.entry-bg { opacity: .55; }
.entry-header { position: relative; padding: 62px 0 34px; border-bottom: 1px solid var(--line-soft); z-index: 1; }
.entry-title { font-size: clamp(25px, 3.4vw, 36px); color: #fff; margin-top: 4px; letter-spacing: -.025em; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; font-size: 13px; color: var(--muted); }
.meta-item { display: inline-flex; align-items: center; gap: 7px; }

.entry-content { padding: 42px 0 10px; font-size: 15.5px; line-height: 1.9; color: var(--text-2); }
.entry-content > * + * { margin-top: 1.15em; }
.entry-content h2 { font-size: 22px; color: #fff; margin-top: 1.9em; padding-left: 14px; border-left: 3px solid var(--brand-1); }
.entry-content h3 { font-size: 18px; color: #fff; margin-top: 1.7em; }
.entry-content h4 { font-size: 16px; color: #fff; }
.entry-content p { color: var(--text-2); }
.entry-content a { color: var(--brand-1); border-bottom: 1px solid rgba(0, 198, 255, .3); }
.entry-content a:hover { border-bottom-color: var(--brand-1); }
.entry-content img { border-radius: 14px; margin: 1.6em auto; border: 1px solid var(--line); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content ul { list-style: none; }
.entry-content ul li { position: relative; padding-left: 6px; }
.entry-content ul li::before { content: ""; position: absolute; left: -1em; top: .78em; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-1); }
.entry-content ol { list-style: decimal; }
.entry-content li { margin: .5em 0; }
.entry-content blockquote {
    margin: 1.6em 0; padding: 16px 22px; border-left: 3px solid var(--brand-1);
    background: rgba(0, 198, 255, .06); border-radius: 0 12px 12px 0; color: var(--text-2);
}
.entry-content code {
    font-family: var(--mono); font-size: .88em; padding: 2px 7px; border-radius: 6px;
    color: #9ee2ff; background: rgba(0, 150, 255, .12); border: 1px solid rgba(0, 150, 255, .2);
}
.entry-content pre {
    background: rgba(2, 7, 16, .8); border: 1px solid var(--line); border-radius: 14px;
    padding: 20px; overflow-x: auto; font-size: 13px; line-height: 1.7;
}
.entry-content pre code { background: none; border: 0; padding: 0; color: #bfe6ff; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.entry-content th, .entry-content td { padding: 11px 16px; border: 1px solid var(--line-soft); }
.entry-content th { background: var(--panel); color: #fff; }
.entry-content hr { border: 0; border-top: 1px solid var(--line-soft); margin: 2.4em 0; }

.entry-footer { padding: 28px 0 8px; border-top: 1px solid var(--line-soft); margin-top: 26px; }
.entry-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.entry-tags a { padding: 4px 12px; border-radius: 8px; font-size: 12.5px; color: var(--text-2); background: var(--panel-2); border: 1px solid var(--line-soft); }
.entry-tags a:hover { border-color: var(--brand-1); color: var(--brand-1); }
.entry-share { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 13px; color: var(--muted); }
.entry-share a, .entry-share button {
    padding: 6px 14px; border-radius: 9px; font-size: 12.5px; color: var(--text-2);
    background: var(--panel-2); border: 1px solid var(--line-soft); transition: all .22s var(--ease);
}
.entry-share a:hover, .entry-share button:hover { border-color: var(--brand-1); color: var(--brand-1); }

.entry-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.entry-nav-item { padding: 18px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.entry-nav-item span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.entry-nav-item a { font-size: 14.5px; color: var(--text); }
.entry-nav-item a:hover { color: var(--brand-1); }
.entry-nav-next { text-align: right; }

/* ---------- 21. 评论 ---------- */
.comments { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line-soft); }
.comments-title { font-size: 19px; color: #fff; margin-bottom: 20px; }
.respond { margin-bottom: 34px; }
.cancel-reply { text-align: right; }
.cancel-reply a { font-size: 12.5px; color: var(--muted); }
.comment-form .comment-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.comment-form p { margin: 0 0 14px; }
.comment-form label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; }
.comment-form label em { color: var(--risk); }
.comment-form .text, .comment-form .textarea {
    width: 100%; padding: 12px 16px; border-radius: 12px;
    background: rgba(4, 9, 18, .7); border: 1px solid var(--line); color: var(--text);
    outline: none; transition: border-color .25s, box-shadow .25s; font-size: 14px;
}
.comment-form .text:focus, .comment-form .textarea:focus { border-color: rgba(0, 198, 255, .6); box-shadow: 0 0 0 4px rgba(0, 150, 255, .12); }
.comment-form .textarea { resize: vertical; min-height: 120px; }
.comment-login { font-size: 13px; color: var(--text-2); }
.comment-login .logout { margin-left: 10px; color: var(--muted); }
.comments-closed { font-size: 13.5px; color: var(--muted); }

.comment-list { display: grid; gap: 18px; }
.comment-body { padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.comment-author { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; }
.comment-author img { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); }
.comment-meta { font-size: 12px; color: var(--muted); }
.comment-content { margin-top: 12px; font-size: 14px; color: var(--text-2); }
.comment-content p { margin: 0 0 .6em; }
.comment-reply { margin-top: 10px; font-size: 12.5px; }
.comment-reply a { color: var(--brand-1); }
.comment-children { margin: 16px 0 0 26px; display: grid; gap: 14px; padding-left: 16px; border-left: 1px solid var(--line-soft); }

/* ---------- 22. 侧边栏 ---------- */
.sidebar { display: grid; gap: 18px; }
.widget { padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--panel); }
.widget-title { font-size: 15px; color: #fff; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.widget-title::before { content: ""; width: 3px; height: 15px; border-radius: 2px; background: linear-gradient(180deg, var(--brand-1), var(--brand-2)); }
.widget-search-form { display: flex; gap: 8px; }
.widget-search-form .text { flex: 1; min-width: 0; padding: 10px 14px; border-radius: 11px; background: rgba(4, 9, 18, .7); border: 1px solid var(--line); color: var(--text); outline: none; font-size: 13.5px; }
.widget-links li a, .widget-posts li a { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-2); padding: 7px 0; }
.widget-links li a:hover, .widget-posts li a:hover { color: var(--brand-1); }
.widget-links .ico { color: var(--brand-1); }
.widget-posts li { display: flex; flex-direction: column; gap: 2px; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.widget-posts li:last-child { border-bottom: 0; }
.widget-posts time { font-size: 11.5px; color: var(--muted); }
.widget-cats li { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.widget-cats li:last-child { border-bottom: 0; }
.widget-cats li span { font-size: 12px; color: var(--muted); font-family: var(--mono); }
.widget-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-link { padding: 4px 11px; border-radius: 8px; font-size: 12.5px; color: var(--text-2); background: var(--panel-2); border: 1px solid var(--line-soft); }
.tag-link:hover { border-color: var(--brand-1); color: var(--brand-1); }

/* ---------- 23. 404 ---------- */
.error-page { padding: 110px 0 140px; text-align: center; position: relative; overflow: hidden; }
.error-inner { position: relative; z-index: 1; }
.error-code {
    font-size: clamp(90px, 18vw, 190px); font-weight: 800; line-height: 1; letter-spacing: -.05em;
    background: linear-gradient(120deg, var(--brand-1), var(--brand-3), var(--brand-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 20px 50px rgba(0, 150, 255, .35));
}
.error-title { font-size: 26px; color: #fff; margin-top: 10px; }
.error-desc { margin-top: 14px; color: var(--text-2); }
.error-actions { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- 24. 滚动显现 ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-scan, .hero-orb { animation: none; }
    html { scroll-behavior: auto; }
}

/* ---------- 25. 响应式 ---------- */
@media (max-width: 1080px) {
    .tool-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr; gap: 36px; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .header-search-hint { display: none; }
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed; inset: 70px 0 auto 0; margin: 0;
        background: rgba(6, 11, 21, .98); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        padding: 14px 20px 22px;
        transform: translateY(-14px); opacity: 0; visibility: hidden;
        transition: all .3s var(--ease); max-height: calc(100vh - 70px); overflow-y: auto;
    }
    .site-nav.is-open { transform: none; opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-item > a { padding: 13px 14px; font-size: 15px; }
    .header-actions .btn-primary { display: none; }
    .tool-layout { grid-template-columns: 1fr; }
    .tool-aside-inner { position: static; grid-template-columns: repeat(2, 1fr); }
    .plans, .steps { grid-template-columns: 1fr; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; padding: 36px 26px; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 640px) {
    body.urlce { font-size: 14.5px; }
    .container { padding: 0 18px; }
    .hero { padding: 60px 0 72px; }
    .section { padding: 62px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tool-grid, .post-grid, .bento { grid-template-columns: 1fr; }
    .tool-aside-inner { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .query-row { flex-direction: column; }
    .query-submit { width: 100%; }
    .console-field { flex-wrap: wrap; padding: 12px 14px; }
    .console-btn { width: 100%; }
    .entry-meta { gap: 12px; }
    .entry-nav { grid-template-columns: 1fr; }
    .entry-nav-next { text-align: left; }
    .comment-form .comment-fields { grid-template-columns: 1fr; }
    .result-table th { width: auto; display: block; border-bottom: 0; }
    .result-table td { display: block; }
    .result-table tr { display: block; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }
    .to-top { right: 16px; bottom: 16px; }
    .brand-logo { height: 32px; }
    .brand-text strong { font-size: 15px; }
}

@media print {
    .site-header, .site-footer, .to-top, .console, .cta-band { display: none !important; }
    body.urlce { background: #fff; color: #000; }
}

/* ==========================================================================
   26. 企业级视觉升级 v1.1
   —— 收敛霓虹感、加大留白与字号层级、压暗背景与色相，强化「企业 / 合规」气质
   ========================================================================== */

/* ---------- 26.1 调色板：中性深海蓝 + 克制的企业蓝 ---------- */
:root {
    --brand-1: #4c8dff;
    --brand-2: #1d4ed8;
    --brand-3: #82b2ff;
    --accent:  #4c8dff;

    --bg:       #0a1020;
    --bg-soft:  #0d1628;
    --bg-alt:   #111c31;
    --panel:    rgba(255, 255, 255, .030);
    --panel-2:  rgba(255, 255, 255, .055);
    --line:     rgba(148, 163, 184, .16);
    --line-soft:rgba(148, 163, 184, .085);

    --text:   #e9eef7;
    --text-2: #a6b4c9;
    --muted:  #78889f;

    --radius:    12px;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --shadow:    0 24px 60px -34px rgba(2, 7, 18, .95);
    --glow:      0 0 0 1px rgba(76, 141, 255, .26), 0 22px 54px -32px rgba(29, 78, 216, .8);
    --container: 1240px;
}
html[data-theme-color="cyan"]   { --brand-1: #4fb3d8; --brand-2: #10608f; --brand-3: #8fd6ef; }
html[data-theme-color="purple"] { --brand-1: #8b7bff; --brand-2: #4a2fd6; --brand-3: #b3a8ff; --accent: #8b7bff; }
html[data-theme-color="green"]  { --brand-1: #3fc98a; --brand-2: #0d7a55; --brand-3: #7fe0b2; --accent: #3fc98a; }

body.urlce { font-size: 15.5px; line-height: 1.8; }
body.urlce::before {
    background:
        radial-gradient(1100px 620px at 50% -12%, rgba(29, 78, 216, .20), transparent 62%),
        radial-gradient(900px 540px at 100% 0%, rgba(76, 141, 255, .08), transparent 64%);
}

/* ---------- 26.2 顶栏 / 导航 ---------- */
.topbar { background: rgba(255, 255, 255, .028); }
.topbar-dot { box-shadow: 0 0 0 3px rgba(53, 217, 154, .14); }
.site-header { background: rgba(10, 16, 32, .78); }
.site-header.is-stuck { background: rgba(10, 16, 32, .94); box-shadow: 0 14px 40px -30px #000; }
.topbar-in { height: 36px; }

/* 内置 LOGO 本身已含文字，隐藏重复的站名 */
.brand-lockup .brand-text { display: none; }
.brand-logo { height: 50px; }

.nav-list { gap: 2px; }
.nav-item > a { font-size: 14.5px; padding: 9px 15px; border-radius: 8px; }
.nav-item > a:hover, .nav-item.is-active > a { background: var(--panel-2); }

/* ---------- 26.3 首屏：更大字号、更克制的背景 ---------- */
.hero { padding: 112px 0 124px; }
.hero-grid {
    background-image:
        linear-gradient(rgba(148, 163, 184, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, .055) 1px, transparent 1px);
    background-size: 72px 72px;
}
.hero-orb { opacity: .26; }
.hero-scan { display: none; }
.hero-badge {
    background: rgba(255, 255, 255, .04); border-color: var(--line);
    color: var(--text-2); letter-spacing: .01em; margin-bottom: 30px;
}
.hero-badge .dot { background: var(--brand-1); box-shadow: none; }
.hero-title { font-size: clamp(36px, 4.4vw, 64px); font-weight: 800; letter-spacing: -.035em; line-height: 1.1; max-width: 1080px; }
.hero-title em, .section-title em { background: linear-gradient(100deg, var(--brand-3), var(--brand-1) 60%, var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 24px; max-width: 760px; font-size: 17px; line-height: 1.9; color: var(--text-2); }

.console {
    margin-top: 52px; max-width: 880px;
    background: linear-gradient(180deg, rgba(17, 28, 49, .96), rgba(11, 18, 34, .96));
    border-radius: 18px; box-shadow: var(--shadow), 0 0 0 1px rgba(76, 141, 255, .06);
}
.console-tab { padding: 10px 17px; font-size: 14px; }
.console-tab.is-active { background: linear-gradient(120deg, var(--brand-2), var(--brand-1)); box-shadow: 0 12px 30px -18px rgba(29, 78, 216, 1); }
.console-field { border-radius: 14px; background: rgba(6, 11, 22, .7); }
.console-field:focus-within { border-color: rgba(76, 141, 255, .55); box-shadow: 0 0 0 4px rgba(76, 141, 255, .12); }
.console-input { font-size: 16px; }

/* ---------- 26.4 数据条 ---------- */
.stats { padding: 8px 0 56px; }
.stats-grid { border-radius: 14px; }
.stat { padding: 36px 24px; }
.stat-num { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; }
.stat-num .counter { background: linear-gradient(100deg, var(--brand-3), var(--brand-1)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 8px; font-size: 13.5px; }

/* ---------- 26.5 区块 ---------- */
.section { padding: 112px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(13, 22, 40, .78) 16%, rgba(13, 22, 40, .78) 84%, transparent); }
.section-head { max-width: 760px; margin: 0 auto 60px; }
.section-tag {
    padding: 0; margin-bottom: 18px; background: transparent; border: 0;
    font-size: 12.5px; font-weight: 600; letter-spacing: .2em; color: var(--brand-1);
}
.section-tag::before { content: ""; display: inline-block; width: 24px; height: 2px; background: var(--brand-1); vertical-align: 4px; margin-right: 12px; }
.section-title { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -.03em; }
.section-desc { margin-top: 18px; font-size: 16px; }

/* ---------- 26.6 工具卡片：去霓虹、加发丝线 ---------- */
.tool-grid { gap: 16px; }
.tool-card {
    padding: 28px 24px 24px; border-radius: 14px;
    background: linear-gradient(180deg, rgba(17, 28, 49, .62), rgba(11, 18, 34, .62));
    border-color: var(--line);
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}
.tool-card:hover {
    transform: translateY(-3px); border-color: rgba(76, 141, 255, .5);
    background: linear-gradient(180deg, rgba(20, 33, 57, .8), rgba(12, 20, 37, .8));
    box-shadow: var(--glow);
}
.tool-glow { display: none; }
.tool-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 20px; background: rgba(76, 141, 255, .10); border-color: rgba(76, 141, 255, .22); }
.tool-card[data-color="green"]  .tool-icon { background: rgba(53, 217, 154, .10); border-color: rgba(53, 217, 154, .22); }
.tool-card[data-color="purple"] .tool-icon { background: rgba(157, 123, 255, .10); border-color: rgba(157, 123, 255, .22); }
.tool-card[data-color="orange"] .tool-icon { background: rgba(255, 160, 60, .10); border-color: rgba(255, 160, 60, .22); }
.tool-card[data-color="indigo"] .tool-icon { background: rgba(103, 132, 255, .10); border-color: rgba(103, 132, 255, .22); }
.tool-card[data-color="teal"]   .tool-icon { background: rgba(56, 205, 190, .10); border-color: rgba(56, 205, 190, .22); }
.tool-name { font-size: 18px; font-weight: 700; }
.tool-en { font-size: 10.5px; letter-spacing: .14em; }
.tool-desc { font-size: 14px; line-height: 1.75; }
.tool-go { margin-top: 20px; font-size: 13.5px; font-weight: 600; }

/* ---------- 26.7 权威数据来源 ---------- */
.trust-band { padding: 0 0 8px; }
.trust-inner { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 34px 0; }
.trust-label { text-align: center; font-size: 13px; letter-spacing: .16em; color: var(--muted); margin-bottom: 24px; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 48px; }
.trust-logos li { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: #c3cee0; letter-spacing: .01em; opacity: .78; transition: opacity .25s, color .25s; }
.trust-logos li:hover { opacity: 1; color: #fff; }
.trust-logos .ico { color: var(--brand-1); }
.trust-logos small { display: block; font-size: 11px; font-weight: 400; letter-spacing: .04em; color: var(--muted); }

/* ---------- 26.8 服务保障 ---------- */
.assure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.assure-card {
    padding: 28px 24px; border-radius: 14px; border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(17, 28, 49, .55), rgba(11, 18, 34, .55));
}
.assure-card .ico { color: var(--brand-1); }
.assure-card h4 { margin: 16px 0 8px; font-size: 16.5px; color: #fff; }
.assure-card p { font-size: 13.5px; line-height: 1.75; color: var(--text-2); }

/* ---------- 26.9 响应式补充 ---------- */
@media (max-width: 1024px) {
    .assure-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-logos { gap: 16px 32px; }
}
@media (max-width: 768px) {
    body.urlce { font-size: 15px; }
    .hero { padding: 76px 0 88px; }
    .hero-title { font-size: clamp(28px, 7.4vw, 40px); }
    .hero-sub { font-size: 15.5px; }
    .section { padding: 76px 0; }
    .assure-grid { grid-template-columns: 1fr; }
    .trust-logos { gap: 14px 22px; }
    .trust-logos li { font-size: 14px; }
    .brand-logo { height: 34px; }
}

/* =========================================================================
   27. 开放平台引导 UI（v1.2）
   站内只做「选能力 + 输入目标」，所有查询统一引导到 api.urlce.com
   ========================================================================= */

/* ---------- 27.1 首屏查询台补充说明 ---------- */
.console-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin: 10px 0 0; font-size: 12.5px; color: var(--muted); text-align: center;
}
.console-note .ico { color: var(--brand-1); flex: none; }
.console-note b { color: var(--text-2); font-weight: 600; }

/* ---------- 27.2 开放 API 区块 ---------- */
.api-band { position: relative; }
.api-band::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(760px 320px at 12% 0%, rgba(76, 141, 255, .10), transparent 65%),
        radial-gradient(620px 300px at 92% 12%, rgba(29, 78, 216, .10), transparent 68%);
}
.api-band > .container { position: relative; }

.api-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 22px; align-items: start; }

.api-endpoint {
    order: 2;
    padding: 30px 28px; border-radius: 14px; border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16, 26, 46, .72), rgba(10, 16, 30, .72));
    display: flex; flex-direction: column;
}
.api-endpoint-label {
    display: block; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; margin-bottom: 10px;
}
.api-endpoint-url {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 12px 12px 16px; border-radius: 10px;
    border: 1px solid var(--line-soft); background: rgba(6, 11, 22, .72);
}
.api-endpoint-url code {
    flex: 1; min-width: 0; font-family: var(--mono); font-size: 14px; color: #cfe0ff;
    overflow-wrap: anywhere;
}
.btn-copy {
    flex: none; padding: 7px 14px; border-radius: 8px; cursor: pointer;
    font-size: 12.5px; font-family: inherit; font-weight: 600;
    color: var(--text-2); background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line); transition: all .2s var(--ease);
}
.btn-copy:hover { color: #fff; border-color: var(--brand-1); background: rgba(76, 141, 255, .14); }

.api-meta { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.api-meta li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.api-meta .ico { color: var(--ok); flex: none; }

.api-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 22px; }

.api-steps {
    list-style: none; margin: 0; padding: 0; order: 1;
    display: grid; grid-template-columns: 1fr; gap: 12px;
    counter-reset: api-step;
}
.api-step {
    position: relative;
    display: grid; grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas: "idx h4" "idx p" "idx link";
    align-items: start; column-gap: 2px;
    padding: 20px 24px; border-radius: 14px;
    border: 1px solid var(--line); background: rgba(255, 255, 255, .028);
    transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.api-step:hover { border-color: rgba(76, 141, 255, .42); transform: translateY(-3px); }
.api-step .step-idx {
    grid-area: idx;
    font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .08em;
    color: var(--brand-1); margin: 3px 0 0;
}
.api-step h4 { grid-area: h4; margin: 0 0 6px; font-size: 16.5px; color: #fff; }
.api-step p { grid-area: p; margin: 0 0 10px; font-size: 13.5px; line-height: 1.75; color: var(--text-2); }
.api-step-link {
    grid-area: link; display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 600; color: var(--brand-1); text-decoration: none;
    transition: gap .2s var(--ease);
}
.api-step-link:hover { gap: 10px; }
.api-step-link .ico { color: inherit; }

/* ---------- 27.3 站内引导页（工具台模板） ---------- */
.guide-panel {
    margin-top: 18px; padding: 28px 26px; border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16, 26, 46, .68), rgba(10, 16, 30, .68));
}
.guide-head { display: flex; gap: 14px; align-items: flex-start; }
.guide-icon {
    flex: none; display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 11px;
    color: var(--brand-1); background: rgba(76, 141, 255, .12);
    border: 1px solid rgba(76, 141, 255, .26);
}
.guide-head h3 { margin: 2px 0 6px; font-size: 17.5px; color: #fff; }
.guide-head p { margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--text-2); }
.guide-panel .api-endpoint { background: none; border: 0; padding: 20px 0 0; }
.guide-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ---------- 27.4 响应式 ---------- */
@media (max-width: 1024px) {
    .api-grid { grid-template-columns: 1fr; }
    .api-endpoint { order: 1; }
    .api-steps { order: 2; }
}
@media (max-width: 768px) {
    .api-endpoint { padding: 24px 20px; }
    .api-step { grid-template-columns: 44px minmax(0, 1fr); padding: 18px 18px; }
    .api-actions .btn, .guide-actions .btn { width: 100%; justify-content: center; }
    .console-note { font-size: 12px; }
}

/* =========================================================================
   28. 无输入框引导首屏（v1.3）
   站内不再放查询框，改为「CTA 按钮 + 能力快捷入口」
   ========================================================================= */
.hero-actions {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
    margin: 36px 0 0;
}
.hero-actions .btn { display: inline-flex; align-items: center; gap: 9px; }

.hero-quick {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 10px 16px; margin: 26px 0 0;
}
.hero-quick-label {
    font-size: 12.5px; letter-spacing: .1em; color: var(--muted); font-weight: 600;
}
.hero-quick-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.hero-quick-links a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 15px; border-radius: 999px;
    border: 1px solid var(--line); background: rgba(255, 255, 255, .028);
    color: var(--text-2); font-size: 13px; text-decoration: none;
    transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.hero-quick-links a:hover {
    color: #fff; border-color: rgba(76, 141, 255, .5); transform: translateY(-1px);
}
.hero-quick-links a .ico { color: var(--brand-1); opacity: .75; }
.hero-quick-links a:hover .ico { opacity: 1; }

.hero-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin: 24px 0 0; font-size: 12.5px; color: var(--muted); text-align: center;
}
.hero-note .ico { color: var(--brand-1); flex: none; }
.hero-note b { color: var(--text-2); font-weight: 600; }

/* 引导页主卡 */
.guide-panel-lead { padding: 30px 28px; }
.guide-panel-lead .query-head { margin-bottom: 22px; }
.guide-note {
    display: flex; align-items: center; gap: 6px;
    margin: 18px 0 0; font-size: 12.5px; color: var(--muted);
}
.guide-note .ico { color: var(--brand-1); flex: none; }

@media (max-width: 768px) {
    .hero-actions { margin-top: 28px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-quick { margin-top: 20px; }
    .hero-quick-links { gap: 7px; }
    .hero-quick-links a { font-size: 12.5px; padding: 6px 12px; }
    .guide-panel-lead { padding: 22px 20px; }
}

/* =========================================================================
   29. 文章内容白底（v1.4）
   正文卡片改为白底深字，与深色页面形成「阅读区」对比；评论已移除
   ========================================================================= */
.entry-content {
    background: #ffffff;
    color: #333c4d;
    font-size: 16px;
    line-height: 1.95;
    padding: 48px 52px 44px;
    margin-top: 44px;
    border-radius: 16px;
    box-shadow: 0 30px 70px -42px rgba(0, 0, 0, .8);
}
.entry-content > * + * { margin-top: 1.15em; }

.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 { color: #101a2e; }
.entry-content h2 { border-left: 3px solid var(--brand-2); padding-left: 14px; }
.entry-content p, .entry-content li, .entry-content dd { color: #3b465c; }
.entry-content strong, .entry-content b { color: #16203a; }
.entry-content a {
    color: #1b4fd8; border-bottom: 1px solid rgba(27, 79, 216, .35);
}
.entry-content a:hover { color: #1637a8; border-bottom-color: #1637a8; }

.entry-content blockquote {
    background: #f5f7fb;
    border-left: 3px solid var(--brand-2);
    border-radius: 0 10px 10px 0;
    padding: 16px 22px;
    color: #47536b;
}
.entry-content blockquote p { color: #47536b; }

.entry-content code {
    background: #eef2f8;
    color: #12409b;
    border: 1px solid #e2e8f2;
}
.entry-content pre { background: #0e1729; border: 1px solid #1b2743; }
.entry-content pre code { background: none; border: 0; color: #cfe0ff; }

.entry-content th, .entry-content td { border: 1px solid #e3e8f2; }
.entry-content th { background: #f5f7fb; color: #16203a; }
.entry-content tr:nth-child(even) td { background: #fafbfe; }
.entry-content ul li::before { background: var(--brand-2); }
.entry-content img { border: 1px solid #e6eaf2; }
.entry-content hr { border-top: 1px solid #e6eaf2; }

/* 文章页底部（标签/分享/上下篇）与白卡保持间距 */
.entry-footer { margin-top: 34px; }

/* 独立页面同样使用白底正文 */
.page-hero-sm + .section .entry-content { margin-top: 0; }

@media (max-width: 768px) {
    .entry-content {
        padding: 26px 20px 24px;
        margin-top: 28px;
        border-radius: 12px;
        font-size: 15.5px;
    }
}

/* =========================================================================
   30. 文章页整页白底（v1.5）
   文章详情页整体改为白色页面（页头/页脚保持深色），
   正文不再叠白卡，避免「白底上再套一层白卡片」
   ========================================================================= */
body.is-article { background: #ffffff; }

body.is-article .entry { background: #ffffff; padding-bottom: 44px; }
body.is-article .entry-bg { display: none; }

body.is-article .entry-header { border-bottom: 1px solid #e9edf5; }
body.is-article .crumb,
body.is-article .crumb a { color: #6d7893; }
body.is-article .crumb a:hover { color: #1b4fd8; }
body.is-article .crumb em { color: #9aa4ba; }
body.is-article .entry-title { color: #0f1a2e; }
body.is-article .entry-meta { color: #6d7893; }
body.is-article .entry-meta .ico { color: var(--brand-2); }

/* 正文：融入白色页面，去掉卡片装饰 */
body.is-article .entry-content {
    background: none; box-shadow: none; border-radius: 0;
    margin-top: 0; padding: 40px 0 8px;
}

/* 标签 / 分享 / 上下篇 */
body.is-article .entry-footer { border-top-color: #e9edf5; }
body.is-article .entry-tags a { color: #48546c; background: #f2f5fa; border-color: #e4e9f2; }
body.is-article .entry-tags a:hover { color: #1b4fd8; border-color: #b9c9f5; }
body.is-article .entry-share { color: #6d7893; }
body.is-article .entry-share a,
body.is-article .entry-share button { color: #48546c; background: #ffffff; border-color: #e4e9f2; }
body.is-article .entry-share a:hover,
body.is-article .entry-share button:hover { color: #1b4fd8; border-color: #b9c9f5; }
body.is-article .entry-nav-item { background: #f7f9fd; border-color: #e6ebf4; }
body.is-article .entry-nav-item span { color: #7b869e; }
body.is-article .entry-nav-item a { color: #243049; }
body.is-article .entry-nav-item a:hover { color: #1b4fd8; }

@media (max-width: 768px) {
    body.is-article .entry-content { padding: 26px 0 6px; }
    body.is-article .entry { padding-bottom: 28px; }
}
