:root {
    --felt-green: #0B3B24;
    --felt-green-dark: #062C1B;
    --wood-dark: #3A2318;
    --gold: #D4AF37;
    --gold-dark: #B88D2F;
    --text-light: #F5F0E6;
    --text-muted: #B9B09C;
    --shadow-emboss: inset 0 1px 2px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.3);
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--felt-green);
    background-image: radial-gradient(circle at 25% 40%, rgba(0,0,0,0.08) 1px, transparent 1px),
                      radial-gradient(circle at 75% 60%, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    color: var(--text-light);
    font-family: inherit;
}


body.category .content-container, body.archive .content-container,
body.category .site-container, body.archive .site-container,
body.category .entry-hero-container-inner, body.archive .entry-hero-container-inner,
body.category .archive-description, body.archive .archive-description {
    max-width: 100%;
}

body.category .sidebar, body.archive .sidebar,
body.category #secondary, body.archive #secondary,
body.category .secondary, body.archive .secondary,
body.category .widget-area, body.archive .widget-area {
    display: none;
}

body.category .content-wrap, body.archive .content-wrap,
body.category .site-main, body.archive .site-main,
body.category .primary-content, body.archive .primary-content,
body.category .content-area, body.archive .content-area {
    width: 100%;
    max-width: 100%;
}

body.category .archive-header, body.archive .archive-header {
    display: none;
}

@media (max-width: 767px) {
    
    .site-container, .content-container, .site-main, .entry-content, .wp-site-blocks, .wrapper, .content-wrap {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
}


.zx-shell {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 20px;
}
@media (max-width: 767px) {
    .zx-shell {
        padding: 0 12px;
        margin: 1rem auto;
        width: 100%;
        max-width: 100%;
    }
}

.zx-shell, .zx-shell * {
    box-sizing: border-box;
    min-width: 0;
}

h1, h2, h3, h4, h5 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--gold);
}

.zx-card {
    background: rgba(10, 8, 6, 0.85);
    backdrop-filter: blur(2px);
    border: 1px solid var(--wood-dark);
    border-radius: 12px;
    box-shadow: var(--shadow-emboss);
}

.zx-hero {
    background: rgba(10, 8, 6, 0.85);
    backdrop-filter: blur(2px);
    border: 1px solid var(--wood-dark);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 34px 28px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2), 0 6px 14px rgba(0,0,0,0.4);
    margin-bottom: 26px;
}

.zx-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    line-height: 1.28;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #FFE5B4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zx-meta {
    font-size: .95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.zx-meta strong {
    color: var(--gold);
}

.zx-desc {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.03rem;
    max-width: 920px;
}

.zx-notice {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px dashed var(--gold);
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.8;
}

.zx-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.zx-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.7);
    color: var(--text-light);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--wood-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: all .25s ease;
    font-family: inherit;
}

.zx-nav a:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.zx-section { margin-top: 28px; }

.zx-titlebar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    border-left: 4px solid var(--gold);
    padding-left: 1rem;
}

.zx-titlebar h2 {
    margin: 0;
    font-size: clamp(1.22rem, 2.3vw, 1.45rem);
    font-weight: 900;
}

.zx-titlebar .sub {
    font-size: .92rem;
    color: var(--text-muted);
}

.zx-grid { display: grid; gap: 16px; }
.zx-grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.zx-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.zx-grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.zx-focus-item {
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all .25s ease;
}
.zx-focus-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.1);
    border-color: var(--gold);
}

.zx-focus-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.zx-focus-item a { text-decoration: none; display: block; }
.zx-focus-top { display: flex; gap: 14px; align-items: flex-start; }
.zx-icon { font-size: 1.5rem; flex-shrink: 0; }

.zx-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
}

.zx-focus-title {
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-light);
}

.zx-focus-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: .94rem;
}

.zx-cta {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}
.zx-cta::after {
    content: " →";
    transition: transform 0.2s;
    display: inline-block;
}
.zx-focus-item:hover .zx-cta::after {
    transform: translateX(4px);
}

.zx-post {
    overflow: hidden;
    transition: all .25s ease;
}
.zx-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.1);
    border-color: var(--gold);
}

.zx-thumb {
    aspect-ratio: 16 / 9;
    background: rgba(0,0,0,0.5);
    overflow: hidden;
}
.zx-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.zx-post:hover .zx-thumb img {
    transform: scale(1.05);
}

.zx-post-body { padding: 16px; }

.zx-kicker {
    font-size: .82rem;
    color: var(--text-muted);
}

.zx-post-body h3 {
    margin: 8px 0 10px;
    font-size: clamp(1.05rem, 1.8vw, 1.18rem);
    line-height: 1.45;
}
.zx-post-body h3 a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-family: Georgia, "Times New Roman", serif;
}
.zx-post-body h3 a:hover { text-decoration: underline; }

.zx-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: .9rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zx-read {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
}
.zx-read:hover { border-bottom-color: var(--gold); }

.zx-block {
    padding: 18px;
    border-left: 4px solid var(--gold);
}
.zx-block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.zx-block-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    flex: 1;
    font-family: Georgia, "Times New Roman", serif;
}
.zx-difficulty {
    white-space: nowrap;
    font-size: .75rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 600;
}
.zx-type {
    font-size: .82rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
}
.zx-block-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: .9rem;
}

.zx-faq { padding: 20px; }
.zx-faq details {
    border: 1px solid var(--wood-dark);
    border-radius: 12px;
    background: rgba(0,0,0,0.4);
    padding: 14px 16px;
    margin: 12px 0;
}
.zx-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--gold);
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.zx-faq summary::-webkit-details-marker { display: none; }
.zx-faq summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-left: 12px;
    flex-shrink: 0;
}
.zx-faq details[open] summary::after { content: '−'; }
.zx-answer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.zx-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.zx-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--wood-dark);
    border-radius: 8px;
    background: rgba(10,8,6,0.8);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.zx-pagination .page-numbers:hover {
    background: rgba(212,175,55,0.2);
    border-color: var(--gold);
    color: var(--gold);
}
.zx-pagination .page-numbers.current {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.zx-disclosure {
    padding: 24px;
    margin-top: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--gold);
    border-radius: 12px;
    text-align: center;
}
.zx-disclosure h3 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: clamp(1.05rem, 1.8vw, 1.18rem);
    font-weight: 700;
}
.zx-disclosure p {
    margin: 0 0 8px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: .9rem;
}
.zx-disclosure p:last-child { margin-bottom: 0; }


.zx-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

@media (max-width: 1024px) {
  .zx-grid.cols-4, .zx-grid.cols-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .zx-shell { padding: 0 12px; }
  .zx-hero { padding: 22px 16px; border-radius: 12px; }
  .zx-hero h1 { font-size: clamp(1.5rem, 3vw, 1.9rem); border-left: none; }
  .zx-desc, .zx-notice, .zx-focus-desc, .zx-excerpt, .zx-block-desc, .zx-answer, .zx-disclosure p {
    font-size: .86rem;
  }
  .zx-titlebar { padding-left: 0.6rem; }
  .zx-titlebar h2 { font-size: clamp(1.22rem, 2.3vw, 1.45rem); }
  .zx-grid.cols-4, .zx-grid.cols-3, .zx-grid.cols-2 { grid-template-columns: 1fr; }
  .zx-post-body, .zx-faq, .zx-disclosure, .zx-block, .zx-focus-item { padding: 14px; }
  .zx-nav a { font-size: .82rem; padding: 8px 12px; }
}


.bj-inl-category-bai-jia-le-zi-xun-1 { padding:16px;color:var(--text-muted);line-height:1.8;font-size:.92rem;text-align:center; }
.bj-inl-category-bai-jia-le-zi-xun-2 { flex:1; }
