/* ============================================
   暖食志 · 个人美食博客主题
   Warm Food Journal - personal food blog theme
   Colors: 奶油米白 #FFF8F0 / 番茄橙 #E8632E / 焦糖棕 #5C3A2E
   ============================================ */

:root {
    --bg: #FFF8F0;
    --bg-soft: #FCEBDD;
    --card: #FFFFFF;
    --accent: #E8632E;
    --accent-dark: #C94F1F;
    --accent-soft: #FBE3D4;
    --text: #5C3A2E;
    --text-light: #9C7A6A;
    --line: #F0DCCB;
    --shadow: 0 6px 24px rgba(232, 99, 46, .10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- 顶栏 ---------- */
#Header {
    background: var(--card);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(92, 58, 46, .05);
}
#Header .header {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}
#Header .logo img { height: 40px; }
#Header .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}
#Header .menulist ul { display: flex; gap: 4px; }
#Header .menulist li a {
    display: block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px;
    color: var(--text);
    transition: all .2s;
}
#Header .menulist li a:hover,
#Header .menulist li.active a {
    background: var(--accent);
    color: #fff;
}
#Header .headerSearch form { display: flex; align-items: center; }
#Header .headerSearch input[type=text] {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 14px;
    outline: none;
    background: var(--bg-soft);
    color: var(--text);
    width: 180px;
}
#Header .headerSearch input[type=text]:focus { border-color: var(--accent); }
#Header .headerSearch button {
    border: none;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    padding: 7px 18px;
    margin-left: 8px;
    cursor: pointer;
    font-size: 14px;
}
#Header .headerSearch button:hover { background: var(--accent-dark); }

/* ---------- 首页顶部大图横幅 ---------- */
.hero {
    margin: 26px auto 0;
    max-width: 1080px;
    padding: 0 20px;
}
.hero .inner {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(255,255,255,.55), transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(232,99,46,.18), transparent 50%),
        linear-gradient(125deg, #FDE9D8, #FBD3BB 55%, #F6C39B);
    border-radius: 20px;
    padding: 52px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.hero .inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 120%, rgba(255,255,255,.35), transparent 40%);
    pointer-events: none;
}
.hero .htext { position: relative; z-index: 1; }
.hero .htext h1 {
    font-size: 38px;
    color: var(--accent-dark);
    line-height: 1.4;
    margin-bottom: 26px;
    font-weight: 800;
    letter-spacing: 1px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary, .btn-ghost {
    display: inline-block;
    padding: 17px 40px;
    border-radius: 40px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .25s;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(232,99,46,.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--accent-dark); border: 1px solid rgba(232,99,46,.35); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.hero .hemoji {
    font-size: 60px;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.hero .hemoji span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    box-shadow: 0 8px 20px rgba(92,58,46,.12);
    animation: floaty 3.2s ease-in-out infinite;
}
.hero .hemoji .e2 { animation-delay: .4s; }
.hero .hemoji .e3 { animation-delay: .8s; }
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- 寻味分类 ---------- */
.cats { margin: 30px auto 0; max-width: 1080px; padding: 0 20px; }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}
.cat-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 8px;
    text-align: center;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #F3C6A8;
}
.cat-ico { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; }
.cat-ico .ic { width: 34px; height: 34px; color: var(--accent); display: none; }
.cat-card:hover .cat-ico .ic { color: var(--accent-dark); }
.cat-card:nth-child(1) .ic.n1,
.cat-card:nth-child(2) .ic.n2,
.cat-card:nth-child(3) .ic.n3,
.cat-card:nth-child(4) .ic.n4,
.cat-card:nth-child(5) .ic.n5,
.cat-card:nth-child(6) .ic.n6,
.cat-card:nth-child(7) .ic.n7,
.cat-card:nth-child(8) .ic.n8 { display: block; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--text); }

/* ---------- 核心功能区：今天吃什么 ---------- */
.today-feature { margin: 26px auto 0; max-width: 1080px; padding: 0 20px; }
.tf-inner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(ellipse at 85% 20%, rgba(255,255,255,.14), transparent 45%),
        linear-gradient(120deg, #2E1A10, #5A3220 55%, #3C2314);
    color: #FFF6EE;
    padding: 46px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 3px solid #F5C398;
    box-shadow: 0 0 0 6px rgba(245,195,152,.35), 0 18px 50px rgba(46,26,16,.4);
}
.tf-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.025) 18px, rgba(255,255,255,.025) 36px);
    pointer-events: none;
}
.tf-left { position: relative; z-index: 1; }
.tf-kicker {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #F5C398;
    background: rgba(245,195,152,.15);
    border: 1px solid rgba(245,195,152,.3);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}
.tf-left h2 { font-size: 40px; font-weight: 800; margin-bottom: 12px; letter-spacing: 1px; }
.tf-desc { font-size: 15px; color: #E8CFBA; line-height: 1.8; margin-bottom: 26px; }
.tf-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F5C398;
    color: #4A2C1F;
    font-size: 22px;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 26px rgba(0,0,0,.28);
    transition: all .25s;
}
.tf-btn:hover {
    background: #FFE0B8;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 34px rgba(0,0,0,.34);
}
.tf-dice { font-size: 28px; display: inline-block; }
.tf-btn:hover .tf-dice { animation: diceShake .5s ease; }
@keyframes diceShake {
    0% { transform: rotate(0); }
    25% { transform: rotate(-18deg); }
    50% { transform: rotate(16deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0); }
}

/* 转盘 */
.tf-wheel {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
    z-index: 1;
}
.tf-ring {
    position: absolute;
    inset: 0;
    animation: wheelSpin 22s linear infinite;
}
.tf-ring span {
    position: absolute;
    left: calc(50% - 22px);
    top: calc(50% - 22px);
    font-size: 30px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}
.tf-ring .wf1 { transform: rotate(0deg) translate(96px) rotate(0deg); }
.tf-ring .wf2 { transform: rotate(45deg) translate(96px) rotate(-45deg); }
.tf-ring .wf3 { transform: rotate(90deg) translate(96px) rotate(-90deg); }
.tf-ring .wf4 { transform: rotate(135deg) translate(96px) rotate(-135deg); }
.tf-ring .wf5 { transform: rotate(180deg) translate(96px) rotate(-180deg); }
.tf-ring .wf6 { transform: rotate(225deg) translate(96px) rotate(-225deg); }
.tf-ring .wf7 { transform: rotate(270deg) translate(96px) rotate(-270deg); }
.tf-ring .wf8 { transform: rotate(315deg) translate(96px) rotate(-315deg); }
@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.tf-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #F5C398;
    color: #4A2C1F;
    font-size: 46px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255,255,255,.1), 0 12px 30px rgba(0,0,0,.3);
    animation: centerPulse 2.4s ease-in-out infinite;
}
@keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(255,255,255,.1), 0 12px 30px rgba(0,0,0,.3); }
    50% { box-shadow: 0 0 0 16px rgba(255,255,255,.18), 0 12px 30px rgba(0,0,0,.3); }
}

@media (max-width: 820px) {
    .tf-inner { flex-direction: column; text-align: center; padding: 36px 24px; }
    .tf-wheel { width: 180px; height: 180px; }
    .tf-ring span { font-size: 24px; width: 36px; height: 36px; line-height: 36px; left: calc(50% - 18px); top: calc(50% - 18px); }
    .tf-ring .wf1 { transform: rotate(0deg) translate(72px) rotate(0deg); }
    .tf-ring .wf2 { transform: rotate(45deg) translate(72px) rotate(-45deg); }
    .tf-ring .wf3 { transform: rotate(90deg) translate(72px) rotate(-90deg); }
    .tf-ring .wf4 { transform: rotate(135deg) translate(72px) rotate(-135deg); }
    .tf-ring .wf5 { transform: rotate(180deg) translate(72px) rotate(-180deg); }
    .tf-ring .wf6 { transform: rotate(225deg) translate(72px) rotate(-225deg); }
    .tf-ring .wf7 { transform: rotate(270deg) translate(72px) rotate(-270deg); }
    .tf-ring .wf8 { transform: rotate(315deg) translate(72px) rotate(-315deg); }
    .tf-center { width: 76px; height: 76px; font-size: 36px; }
    .tf-left h2 { font-size: 30px; }
    .tf-btn { font-size: 19px; padding: 14px 30px; }
}

/* ---------- 主区域两栏 ---------- */
#Body .body {
    max-width: 1080px;
    margin: 0 auto;
    padding: 26px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 26px;
}
#Body .left { min-width: 0; }
#Body .right { min-width: 0; }

/* ---------- 文章卡片 ---------- */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 18px;
}
.section-title h2 { font-size: 20px; color: var(--accent-dark); }
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--line), transparent);
}
.feed-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all .25s;
    display: flex;
    gap: 16px;
}
.feed-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #F3C6A8;
}
.feed-card .picture {
    width: 150px;
    height: 108px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg-soft);
}
.feed-card .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.feed-card:hover .picture img { transform: scale(1.06); }
.feed-card .info { flex: 1; min-width: 0; }
.feed-card .info h4 { font-size: 17px; margin-bottom: 6px; }
.feed-card .info h4 a:hover { color: var(--accent); }
.feed-card .summary {
    font-size: 14px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}
.feed-card .infos {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--text-light);
}
.feed-card .infos .cat {
    background: var(--accent-soft);
    color: var(--accent-dark);
    padding: 1px 10px;
    border-radius: 12px;
}
.feed-card .more { color: var(--accent); font-size: 13px; }

/* ---------- 网格卡片（最新探店） ---------- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.grid-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: all .25s;
    display: block;
}
.grid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #F3C6A8;
}
.gc-pic {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: var(--bg-soft);
}
.gc-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.grid-card:hover .gc-pic img { transform: scale(1.08); }
.gc-info { padding: 12px 14px 14px; }
.gc-info h4 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gc-info h4:hover { color: var(--accent); }
.gc-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.gc-meta .cat {
    background: var(--accent-soft);
    color: var(--accent-dark);
    padding: 1px 10px;
    border-radius: 12px;
}
.gc-meta .price { color: var(--accent); font-weight: 700; }

/* ---------- 侧栏 ---------- */
.side-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
}
.side-card .apt { margin-bottom: 12px; }
.side-card .apt h4 {
    font-size: 16px;
    color: var(--accent-dark);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-soft);
}
.side-card .apc li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
}
.side-card .apc li:last-child { border-bottom: none; }
.side-card .apc li .num {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    width: 20px;
    flex-shrink: 0;
}
.side-card .apc li a {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.side-card .apc li a:hover { color: var(--accent); }
.side-card .apc li .tm { font-size: 12px; color: var(--text-light); }

/* ---------- 内容页 ---------- */
.article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px;
}
.article h1 { font-size: 24px; margin-bottom: 12px; }
.article .meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.article .meta a:hover { color: var(--accent); }
.article .content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}
.article .content img {
    border-radius: 10px;
    margin: 12px 0;
    box-shadow: 0 4px 16px rgba(92,58,46,.12);
}
.article .content p { margin: 10px 0; }
.article-pic {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 22px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}
.article-pic .qzone-pic {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto;
}
.article .tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.article .tags a {
    background: var(--bg-soft);
    color: var(--accent-dark);
    border-radius: 14px;
    padding: 3px 12px;
    font-size: 13px;
}
.article .tags a:hover { background: var(--accent); color: #fff; }

/* ---------- QQ空间说说评论区 ---------- */
.qzone-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 18px;
}
.qzone-comments {
    margin-top: 6px;
}
.qzone-comments .qcomment {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.qzone-comments .qc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 13px;
}
.qzone-comments .qc-head b { color: var(--accent-dark); font-weight: 700; }
.qzone-comments .qc-head span { color: var(--text-light); font-size: 12px; }
.qzone-comments .qcomment p { font-size: 14px; color: var(--text); line-height: 1.7; }
.qzone-comments .qc-empty { color: var(--text-light); font-size: 13px; }

/* ---------- 访客评论区 ---------- */
.guest-comments {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 2px solid var(--accent-soft);
}
.gc-title h3 { font-size: 18px; color: var(--accent-dark); margin-bottom: 16px; }
.gc-form, .gc-reply-box {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 18px;
}
.gc-reply-box { border: 1px dashed var(--accent); }
.gc-form-row input, .gc-form-row textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: var(--card);
    color: var(--text);
    margin-bottom: 10px;
    resize: vertical;
}
.gc-form-row input:focus, .gc-form-row textarea:focus { border-color: var(--accent); }
.gc-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 26px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.gc-submit:hover { background: var(--accent-dark); }
.gc-submit:disabled { opacity: .5; cursor: not-allowed; }
.gc-msg { font-size: 13px; margin-left: 10px; color: var(--text-light); }
.gc-reply-tip { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.gc-reply-tip b { color: var(--accent-dark); }
.gc-reply-tip a { color: var(--accent); margin-left: 8px; }

.c-empty { color: var(--text-light); font-size: 14px; padding: 10px 0; }
.c-item {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
    background: var(--card);
}
.c-item.c-sub {
    background: var(--bg-soft);
    margin-left: 24px;
    margin-top: 10px;
}
.c-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.c-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.c-head b { font-size: 14px; color: var(--accent-dark); }
.c-time { font-size: 12px; color: var(--text-light); margin-left: auto; }
.c-body { font-size: 14px; color: var(--text); line-height: 1.7; word-break: break-word; }
.c-actions { margin-top: 8px; display: flex; gap: 10px; }
.c-actions button {
    border: none;
    background: var(--bg-soft);
    color: var(--text);
    border-radius: 14px;
    padding: 4px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
}
.c-actions button:hover { background: var(--accent-soft); color: var(--accent-dark); }
.c-actions button.liked { background: var(--accent); color: #fff; }
.c-replies { margin-top: 4px; }

/* ---------- 侧栏：留言板 ---------- */
.gb-side { margin-top: -4px; }
.gb-side .apt h4 { color: var(--accent-dark); }
.gb-mini { min-height: 80px; }
.gb-mini-item {
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 12px 14px;
    animation: fadeIn .4s ease;
}
.gb-mini-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.gb-mini-head b { font-size: 13px; color: var(--accent-dark); }
.gb-mini-item p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gb-more-link {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
}
.gb-more-link:hover { color: var(--accent-dark); }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- 性别/种族徽章 ---------- */
.gb-tag {
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 500;
}
.gb-gender { background: #FDE3E8; color: #C94F6D; }
.gb-race { background: #E3EEFD; color: #3B6FC9; }

/* ---------- 首页留言板大区块 ---------- */
.gb-board { margin: 36px auto 0; max-width: 1080px; padding: 0 20px; }
.gb-board-inner {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(ellipse at 85% 20%, rgba(255,255,255,.14), transparent 45%),
        linear-gradient(120deg, #3A1515, #7A2F2A 55%, #4A1F1A);
    color: #FFF6EE;
    padding: 46px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 3px solid #F0B27A;
    box-shadow: 0 0 0 6px rgba(240,178,122,.35), 0 18px 50px rgba(58,21,21,.4);
}
.gb-board-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.025) 18px, rgba(255,255,255,.025) 36px);
    pointer-events: none;
}
.gb-board-left { position: relative; z-index: 1; flex-shrink: 0; }
.gb-kicker {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #F7D0A8;
    background: rgba(247,208,168,.15);
    border: 1px solid rgba(247,208,168,.3);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}
.gb-board-left h2 { font-size: 40px; font-weight: 800; margin-bottom: 12px; letter-spacing: 1px; }
.gb-desc { font-size: 15px; color: #F0D5C4; line-height: 1.8; margin-bottom: 26px; }
.gb-board-btn {
    display: inline-block;
    background: #F7D0A8;
    color: #4A1F1A;
    font-size: 22px;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 26px rgba(0,0,0,.28);
    transition: all .25s;
}
.gb-board-btn:hover {
    background: #FFE4C4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 34px rgba(0,0,0,.34);
}
.gb-board-link {
    display: inline-block;
    margin-left: 14px;
    font-size: 15px;
    color: #F0D5C4;
    border-bottom: 1px dashed #F0D5C4;
    transition: all .2s;
}
.gb-board-link:hover { color: #fff; border-bottom-color: #fff; }

.gb-board-right {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}
.gb-board-list {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 16px;
    min-height: 120px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(2px);
}
.gb-board-item {
    width: 100%;
    animation: fadeIn .4s ease;
}
.gb-board-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.gb-board-head b { font-size: 14px; color: #FFE4C4; }
.gb-board-item p {
    font-size: 14px;
    color: #FFF6EE;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gb-board-right .gb-tag { font-size: 12px; padding: 1px 8px; border-radius: 10px; }
.gb-board-right .gb-gender { background: rgba(201,79,109,.4); color: #FFE0E8; }
.gb-board-right .gb-race { background: rgba(59,111,201,.4); color: #DCE8FF; }
.gb-board-right .c-empty { color: #F0D5C4; }

/* 漂浮装饰气泡 */
.gb-bubble {
    position: absolute;
    font-size: 30px;
    opacity: .55;
    animation: floaty 3.4s ease-in-out infinite;
    pointer-events: none;
}
.gb-bubble.g1 { top: -14px; right: 4%; animation-delay: 0s; }
.gb-bubble.g2 { bottom: -10px; right: 30%; animation-delay: .5s; font-size: 22px; }
.gb-bubble.g3 { top: -8px; right: 55%; animation-delay: 1s; font-size: 20px; }

@media (max-width: 820px) {
    .gb-board-inner { flex-direction: column; text-align: center; padding: 36px 24px; }
    .gb-board-left h2 { font-size: 30px; }
    .gb-board-btn { font-size: 19px; padding: 14px 30px; }
    .gb-board-link { margin-left: 0; margin-top: 12px; }
}

/* ---------- 留言板表单 ---------- */
.gb-form-row { display: flex; gap: 8px; margin-bottom: 10px; }
.gb-form-row input { flex: 1; }
@media (max-width: 600px) {
    .gb-form-row { flex-direction: column; }
}

/* ---------- 子栏目页签 ---------- */
.subcat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.subcat-tabs a {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 5px 16px;
    font-size: 14px;
    color: var(--text);
    transition: all .2s;
}
.subcat-tabs a:hover { border-color: var(--accent); color: var(--accent); }
.subcat-tabs a.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ---------- 人均价格徽章 ---------- */
.price-badge {
    background: var(--accent);
    color: #fff;
    border-radius: 16px;
    padding: 2px 14px;
    font-size: 14px;
    font-weight: 600;
}

/* ---------- 小红书式图片画廊 ---------- */
.gallery {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 20px;
}
.gallery-main {
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-soft);
    margin-bottom: 10px;
}
.gallery-main img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    margin: 0 auto;
}
.gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gallery-thumbs-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex: 1;
    padding: 4px 0;
}
.gallery-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .2s;
}
.gallery-thumb:hover { border-color: var(--accent); }
.gallery-nav {
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
    padding: 6px 10px;
    user-select: none;
    border-radius: 6px;
}
.gallery-nav:hover { background: var(--bg-soft); color: var(--accent); }

/* ---------- 分页 ---------- */
.pages { text-align: center; padding: 20px 0; }
.pages a, .pages span {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 3px;
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
}
.pages a:hover,
.pages a.page-num-current {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ---------- 页脚 ---------- */
#Footer {
    background: #3A241B;
    color: #D9BBA8;
    padding: 28px 0 40px;
    margin-top: 20px;
}
#Footer .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}
#Footer .flinks a {
    color: #D9BBA8;
    margin-right: 10px;
}
#Footer .flinks a:hover { color: #fff; }
#Footer .copyright { font-size: 13px; color: #A98A77; }

/* ---------- 移动端适配 ---------- */
@media (max-width: 820px) {
    #Body .body { grid-template-columns: 1fr; }
    #Header .header { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 8px; }
    #Header .logo img { height: 32px; }
    #Header .menulist { order: 3; width: 100%; }
    #Header .menulist ul { flex-wrap: wrap; gap: 2px; }
    #Header .menulist li a { padding: 6px 12px; font-size: 14px; }
    #Header .headerSearch { order: 2; margin-left: auto; }
    .hero .inner { flex-direction: column; text-align: center; padding: 28px 20px; }
    .hero .htext h1 { font-size: 28px; }
    .hero-cta { justify-content: center; }
    .hero .hemoji { font-size: 46px; }
    .hero .hemoji span { width: 52px; height: 52px; }
    .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .cat-card { padding: 14px 6px; }
    .cat-ico { width: 38px; height: 38px; }
    .cat-ico .ic { width: 28px; height: 28px; }
    .cat-name { font-size: 13px; }
    .grid-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gc-pic { height: 120px; }
    .feed-card { flex-direction: column; }
    .feed-card .picture { width: 100%; height: 180px; }
    .article { padding: 20px 16px; }
    .article h1 { font-size: 20px; }
    .article .meta { gap: 10px; }
    .gallery-main img { max-height: 320px; }
}

/* ---------- 小屏手机适配 ---------- */
@media (max-width: 480px) {
    #Header .header { padding: 8px 12px; }
    #Header .headerSearch input[type=text] { width: 110px; padding: 6px 10px; font-size: 13px; }
    #Header .headerSearch button { padding: 6px 12px; font-size: 13px; margin-left: 6px; }
    .hero { margin-top: 14px; }
    .hero .inner { padding: 24px 16px; gap: 18px; }
    .hero .htext h1 { font-size: 22px; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .cat-card { padding: 12px 4px; gap: 6px; }
    .cat-ico { width: 34px; height: 34px; }
    .cat-ico .ic { width: 26px; height: 26px; }
    .cat-name { font-size: 12px; }
    .grid-cards { grid-template-columns: 1fr; }
    .gc-pic { height: 200px; }
    .section-title h2 { font-size: 18px; }
    .today-link { font-size: 28px; padding: 14px; }
    .today-link .dice-ico { font-size: 30px; }
    .today-tip { font-size: 12px; }
    .feed-card { padding: 12px; }
    .feed-card .info h4 { font-size: 15px; }
    .feed-card .infos { flex-wrap: wrap; gap: 8px; }
    .subcat-tabs a { font-size: 13px; padding: 4px 12px; }
    .pages a, .pages span { padding: 5px 10px; font-size: 13px; }
    #Footer .wrap { flex-direction: column; text-align: center; }
}
