/* ============================================================
   北京强寿中医医院 - 移动端优先响应式官方网站
   视觉风格：中医传统元素（水墨渲染、古典纹样）
   主色调：中国红 #8b1a2b / 米色 #f5e6d3
   ============================================================ */

/* --- 基础重置与变量 --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-primary: #8b1a2b;
    --red-dark: #6b1520;
    --red-light: #a8203a;
    --red-bg: #fdf0f0;
    --gold: #d4a574;
    --gold-light: #e8d5c0;
    --cream: #f5e6d3;
    --cream-light: #fdf6f0;
    --cream-dark: #e8d5c0;
    --bg: #fdfaf6;
    --bg-alt: #f9f3eb;
    --text: #3d2e2a;
    --text-light: #6b5a55;
    --text-muted: #9a8a85;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(139, 26, 43, 0.08);
    --shadow-lg: 0 10px 40px rgba(139, 26, 43, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
    --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 110px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 水墨遮罩 --- */
.ink-mask {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(245, 230, 211, 0.08) 100%);
}

/* --- 水墨Canvas --- */
.ink-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ============================================================
   顶部信息条
   ============================================================ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #5c1018 0%, #8b1a2b 40%, #a8203a 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-item,
.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-link:hover {
    color: var(--gold);
}

.top-bar-icon {
    flex-shrink: 0;
    opacity: 0.85;
}

.top-bar-divider {
    opacity: 0.3;
    font-weight: 300;
    color: var(--gold-light);
}

/* ============================================================
   头部导航
   ============================================================ */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--cream-light) 0%, rgba(255,255,255,0.98) 100%);
    border-bottom: 1px solid var(--gold-light);
    box-shadow: 0 2px 16px rgba(139, 26, 43, 0.06);
    transition: var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
    opacity: 0.5;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* 主导航 */
.nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-primary);
    background: linear-gradient(135deg, rgba(139, 26, 43, 0.06) 0%, rgba(139, 26, 43, 0.1) 100%);
}

/* 下拉箭头 */
.dropdown-arrow {
    display: inline-block;
    font-size: 0.6rem;
    color: var(--gold);
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: rgba(253, 250, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(139, 26, 43, 0.1), 0 2px 8px rgba(0,0,0,0.04);
    padding: 6px 0;
    list-style: none;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--gold-light);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    white-space: nowrap;
    line-height: 1.4;
}

.dropdown-menu li a:hover {
    color: var(--red-primary);
    background: rgba(139, 26, 43, 0.06);
}

/* 下拉菜单图标 */
.dm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-muted);
}

.dropdown-menu li a:hover .dm-icon {
    color: var(--red-primary);
}

/* 悬停显示下拉 */
.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* 父级链接悬停高亮 */
.nav-dropdown:hover > .nav-parent {
    color: var(--red-primary);
    background: linear-gradient(135deg, rgba(139, 26, 43, 0.06) 0%, rgba(139, 26, 43, 0.1) 100%);
}

/* 汉堡菜单 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--red-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Section 通用
   ============================================================ */

.section {
    padding: 10px 0;
}

.section-alt {
    background: var(--bg-alt);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 42px;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.title-cn {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: 4px;
}

.title-en {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
    opacity: 0.7;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.deco-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.deco-diamond {
    color: var(--red-primary);
    font-size: 0.55rem;
}

/* ============================================================
   首页 Hero
   ============================================================ */
.hero-section {
    position: relative;
    padding: 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 40vh;
    overflow: hidden;
    clip-path: inset(0);
}

/* 滑动轨道：flex 横向排列，通过 translateX 滚动 */
.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 50vh;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,21,24,0.85) 0%, rgba(90,30,40,0.7) 50%, rgba(45,21,24,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px 44px;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-ink-stamp {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(212, 165, 116, 0.15);
    line-height: 1;
    margin-bottom: 14px;
    user-select: none;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 左右切换箭头 */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero-slider-wrapper:hover .hero-arrow {
    opacity: 1;
}

.hero-arrow:hover {
    background: rgba(196, 30, 58, 0.7);
    border-color: var(--red-primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-arrow-left {
    left: 20px;
}

.hero-arrow-right {
    right: 20px;
}

.hero-arrow svg {
    display: block;
}

/* 触摸设备始终显示箭头 */
@media (hover: none) {
    .hero-arrow {
        opacity: 0.6;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

/* 按钮 */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(196,30,58,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196,30,58,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.5);
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline .arrow {
    transition: transform 0.3s;
}

.btn-outline:hover .arrow {
    transform: translateX(4px);
}

/* Hero 指示圆点 */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background: var(--red-primary);
    transform: scale(1.3);
}

/* ============================================================
   快捷引导入口
   ============================================================ */
.quick-guide-section {
    padding: 28px 0;
    background: var(--white);
    border-top: none;
    border-bottom: none;
}

.quick-guide-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

.quick-guide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 8px;
    text-decoration: none;
    color: #2a6b38;
    border-right: 1px solid rgba(42, 107, 56, 0.25);
    transition: all 0.35s ease;
    position: relative;
}

.quick-guide-item:last-child {
    border-right: none;
}

.quick-guide-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 107, 56, 0.04), rgba(42, 107, 56, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.quick-guide-item:hover {
    color: var(--red-dark);
    transform: translateY(-4px);
}

.quick-guide-item:hover::before {
    opacity: 1;
}

.quick-guide-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
}

.quick-guide-item:hover .quick-guide-icon {
    transform: scale(1.1);
}

.quick-guide-icon svg {
    display: block;
}

.quick-guide-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.quick-guide-cn {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.quick-guide-en {
    font-size: 0.65rem;
    opacity: 0.7;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ============================================================
   医院简介
   ============================================================ */
.di-section {
    padding: 44px 0;
    background: var(--bg);
}

.di-section .section-header {
    margin-bottom: 26px;
}

.di-section .section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 16px;
    letter-spacing: 1px;
}

.di-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.di-image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gold-light);
    background: var(--cream);
    box-shadow: 0 12px 40px rgba(139, 26, 43, 0.1);
    padding: 12px;
}

.di-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3.6;
    object-fit: cover;
    border-radius: 12px;
}

.di-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.di-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--red-dark);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.di-text {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.92rem;
}

.di-text p {
    margin-bottom: 14px;
}

.di-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.di-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-dark);
    border: 1px solid rgba(139, 26, 43, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.di-tag:hover {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
}

.di-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.di-link:hover {
    gap: 10px;
    text-decoration: underline;
}

.di-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.di-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 20px 16px;
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.di-feature:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(139, 26, 43, 0.06);
}

.di-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 26, 43, 0.08);
    color: var(--red-primary);
    flex-shrink: 0;
}

.di-feature-text h4 {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.di-feature-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================================
   医院简介页（jianjie.html）
   ============================================================ */
.jj-section {
    padding: 50px 0;
}

.jj-section + .jj-section {
    padding-top: 0;
}

/* 概况：图文混排 */
.jj-overview {
    overflow: hidden;
}

.jj-overview-hd {
    overflow: hidden;
    padding-top: 6px;
    margin-bottom: 18px;
}

.jj-overview-img {
    width: 50%;
    margin-bottom: 18px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gold-light);
    box-shadow: 0 8px 30px rgba(139, 26, 43, 0.1);
    background: var(--white);
}

.jj-overview-img-right {
    float: right;
    margin-left: 32px;
}

.jj-overview-img-left {
    float: left;
    margin-right: 32px;
}

.jj-overview-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.jj-img-caption {
    display: block;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    background: rgba(212, 165, 116, 0.06);
    letter-spacing: 1px;
}

/* 标题 */
.jj-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--red-dark);
    letter-spacing: 2px;
    margin: 0;
}

.jj-heading-center {
    text-align: center;
}

/* 分割线 */
.jj-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.jj-divider span:first-child,
.jj-divider span:last-child {
    flex: 1;
    height: 1px;
    background: rgba(212, 165, 116, 0.35);
}

.jj-diamond {
    font-size: 0.55rem;
    color: var(--gold);
    flex-shrink: 0;
}

.jj-divider-center {
    justify-content: center;
}

.jj-divider-center span:first-child,
.jj-divider-center span:last-child {
    max-width: 80px;
    flex: 0 0 80px;
}

.jj-overview .jj-divider span:first-child,
.jj-overview .jj-divider span:last-child {
    max-width: 60px;
    flex: 0 0 60px;
}

/* 正文 */
.jj-overview p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.92rem;
    margin: 0 0 14px;
}

/* 时间轴 */
.jj-timeline {
    position: relative;
    padding: 20px 0 0;
    max-width: 780px;
    margin: 0 auto;
}

.jj-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(212, 165, 116, 0.1) 0%,
        rgba(212, 165, 116, 0.5) 30%,
        rgba(212, 165, 116, 0.5) 70%,
        rgba(212, 165, 116, 0.1) 100%);
    transform: translateX(-50%);
}

.tl-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 44px;
    width: 100%;
}

.tl-item:nth-child(odd) {
    flex-direction: row;
}

.tl-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tl-year {
    flex: 0 0 160px;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-primary);
    text-align: center;
    padding-top: 4px;
}

.tl-dot {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 8px rgba(212, 165, 116, 0.3);
}

.tl-content {
    flex: 1;
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: 0 4px 16px rgba(139, 26, 43, 0.05);
    transition: box-shadow 0.3s ease;
}

.tl-content:hover {
    box-shadow: 0 8px 28px rgba(139, 26, 43, 0.1);
}

.tl-item:nth-child(odd) .tl-content {
    margin-left: 36px;
}

.tl-item:nth-child(even) .tl-content {
    margin-right: 36px;
}

.tl-content h4 {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-weight: 600;
    margin: 0 0 8px;
}

.tl-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* 办院理念：四卡片网格 */
.jj-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.jj-value-card {
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.jj-value-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(139, 26, 43, 0.08);
    transform: translateY(-3px);
}

.jj-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    transition: background 0.3s ease;
}

.jj-value-card:hover .jj-value-icon {
    background: rgba(139, 26, 43, 0.12);
}

.jj-value-card h4 {
    font-size: 1.08rem;
    color: var(--red-dark);
    font-weight: 600;
    margin: 0 0 10px;
    font-family: var(--font-serif);
    letter-spacing: 2px;
}

.jj-value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* 特色优势：三列网格 */
.jj-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.jj-feat-item {
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    padding: 28px 22px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.jj-feat-item:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(139, 26, 43, 0.08);
    transform: translateY(-2px);
}

.jj-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    transition: background 0.3s ease;
}

.jj-feat-item:hover .jj-feat-icon {
    background: rgba(139, 26, 43, 0.12);
}

.jj-feat-item h4 {
    font-size: 1rem;
    color: var(--red-dark);
    font-weight: 600;
    margin: 0 0 10px;
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.jj-feat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* CTA 底部行动召唤 */
.jj-cta {
    padding: 50px 0 60px;
}

.jj-cta-card {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 40px rgba(139, 26, 43, 0.25);
}

.jj-cta-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 16px;
}

.jj-cta-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.jj-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jj-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.jj-cta-btn-primary {
    background: #fff;
    color: var(--red-primary);
}

.jj-cta-btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.jj-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.jj-cta-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================================
   关于我们
   ============================================================ */
.about-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-placeholder {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ink-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,26,43,0.08) 0%, rgba(212,165,116,0.1) 50%, transparent 70%);
    animation: inkPulse 4s ease-in-out infinite;
}

@keyframes inkPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.about-text .section-title {
    align-items: flex-start;
    margin-bottom: 18px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================================
   科室介绍
   ============================================================ */
#departments.section {
    background: var(--bg-alt);
}

.article-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.article-tab {
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 30px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.article-tab:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.article-tab.active {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

.article-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-grid.active {
    display: grid;
}

.article-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(139, 26, 43, 0.1);
    border-color: rgba(212, 165, 116, 0.4);
}

.article-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-alt);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-body {
    padding: 20px 22px 26px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.article-category {
    padding: 4px 10px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--red-primary);
    border-radius: 4px;
    font-weight: 500;
}

.article-date {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-date::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b7355' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") center/contain no-repeat;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--red-dark);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-link {
    color: var(--red-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.article-link:hover {
    color: var(--red-dark);
}
/* ============================================================
   医生风采
   ============================================================ */
.doctor-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.doctor-tab {
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 30px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.doctor-tab:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.doctor-tab.active {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

.doctors-slider {
    position: relative;
    overflow: visible;
    padding: 0 60px;
}

.doctor-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px;
    width: 100%;
}

.doctor-grid::-webkit-scrollbar {
    display: none;
}

.doctor-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,165,116,0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(139,26,43,0.08);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.doctor-card::after {
    content: '查看详情';
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.35s ease;
    z-index: 5;
    pointer-events: none;
}

.doctor-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.doctor-card:hover {
    box-shadow: 0 16px 40px rgba(139,26,43,0.15);
    transform: translateY(-6px);
}

.doctor-photo {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c0);
}

.doctor-photo img,
.doctor-photo svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-name-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 16px 12px;
    background: linear-gradient(to top, rgba(61,46,42,0.85), transparent);
    color: white;
}

.doctor-name-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.doctor-name-overlay .doctor-title {
    font-size: 0.78rem;
    opacity: 0.95;
    color: rgba(255,255,255,0.9);
}

.doctor-info {
    padding: 16px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.doctor-tags .tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(139,26,43,0.08);
    color: var(--red-primary);
    border-radius: 20px;
    font-size: 0.72rem;
    line-height: 1.4;
}

.doctor-bio {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doctor-bio strong {
    color: var(--red-dark);
    font-weight: 600;
}

.doctor-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(212,165,116,0.2);
    font-size: 0.78rem;
}

.clinic-time {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.clinic-time::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-primary);
}

.booking-link {
    color: var(--red-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.booking-link:hover {
    gap: 8px;
    color: var(--red-dark);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(139,26,43,0.2);
    background: var(--white);
    color: var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev {
    left: 8px;
    background: var(--cream);
    color: var(--red-primary);
}

.slider-next {
    right: 8px;
    background: var(--red-primary);
    color: white;
}

.slider-arrow:hover {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
}

.slider-arrow.active {
    background: var(--cream);
    color: var(--red-primary);
    border-color: var(--red-primary);
    box-shadow: 0 0 12px rgba(139,26,43,0.35);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.doctors-footer {
    text-align: center;
    margin-top: 40px;
}

.article-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(139,26,43,0.3);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(139,26,43,0.4);
}

.btn-view-all span {
    transition: transform 0.3s ease;
}

.btn-view-all:hover span {
    transform: translateX(4px);
}

/* ============================================================
   诊疗项目 Tabs
   ============================================================ */
.treatment-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.tab-btn {
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 30px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.tab-btn.active {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
    box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

.treatment-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.treatment-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.treatment-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: center;
}

.treatment-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--red-dark);
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.treatment-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.treatment-list {
    list-style: none;
    margin-bottom: 14px;
}

.treatment-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    font-size: 0.92rem;
    transition: padding 0.3s ease;
}

.treatment-list li:hover {
    padding-left: 28px;
}

.treatment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.treatment-list li:hover::before {
    background: var(--red-primary);
    transform: scale(1.3);
}

.treatment-indications {
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(245,230,211,0.5), rgba(212,165,116,0.1));
    border-radius: 14px;
    border-left: 4px solid var(--gold);
    font-size: 0.9rem !important;
}

#treatments.section {
    padding: 60px 0;
}

.treatment-image {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 1px solid var(--red-primary);
    border-radius: 12px;
    overflow: visible;
    margin-right: -10px;
    margin-bottom: -10px;
}

.treatment-image .treatment-img-placeholder,
.treatment-image .treatment-img-placeholder svg,
.treatment-image .treatment-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transform: translate(10px, 10px);
}

/* ============================================================
   就医指南（健康资讯）
   ============================================================ */
.guide-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.news-main-header,
.news-sidebar-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    min-height: 44px;
}

.news-main-title {
    font-size: 1.3rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.news-main-title::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--gold));
    border-radius: 2px;
}

.news-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-more-btn:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.news-main-track {
    position: relative;
    overflow: hidden;
}

.news-main-page {
    display: none;
    animation: newsFadeIn 0.4s ease;
}

.news-main-page.active {
    display: block;
}

@keyframes newsFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.news-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-main-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-main-card:hover {
    transform: translateY(-5px);
}

.news-main-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
}

.news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-main-card:hover .news-main-img img {
    transform: scale(1.08);
}

.news-main-body h4 {
    font-size: 0.95rem;
    color: #4a2020;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-main-card:hover .news-main-body h4 {
    color: var(--red-primary);
}

.news-main-date {
    font-size: 0.78rem;
    color: #8b6f5f;
    margin-bottom: 8px;
}

.news-main-body p {
    font-size: 0.82rem;
    color: #5c3d35;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.news-dot {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: rgba(212, 165, 116, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-dot:hover,
.news-dot.active {
    background: var(--red-primary);
}

.news-sidebar-tabs {
    display: flex;
    gap: 20px;
}

.news-sidebar-tab {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: var(--font-serif);
    cursor: pointer;
    padding: 0 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.news-sidebar-tab:hover,
.news-sidebar-tab.active {
    color: var(--text);
}

.news-sidebar-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-primary);
}

.news-list {
    display: none;
}

.news-list.active {
    display: block;
}

.news-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed #e0e0e0;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item:hover {
    color: var(--red-primary);
}

.news-list-item:hover .news-date-block {
    border-color: var(--red-primary);
}

.news-date-block {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #faf8f5;
    transition: border-color 0.3s ease;
}

.news-date-day {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.news-date-month {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1;
}

.news-list-title {
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   健康资讯
   ============================================================ */
.health-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.health-cat-btn {
    padding: 10px 26px;
    background: var(--white);
    border: 2px solid rgba(212,165,116,0.2);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--text);
    transition: all 0.35s ease;
    font-family: var(--font-serif);
}

.health-cat-btn:hover {
    border-color: var(--gold);
    color: var(--red-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139,26,43,0.06);
}

.health-cat-btn.active {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(196,30,58,0.3);
}

.health-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.health-grid.active {
    display: grid;
}

.health-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212,165,116,0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.health-card:hover {
    box-shadow: 0 20px 40px rgba(139,26,43,0.1);
    transform: translateY(-6px);
}

.health-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--cream-light);
    position: relative;
}

.health-card-img svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.health-card:hover .health-card-img svg {
    transform: scale(1.05);
}

.health-card-body {
    padding: 16px;
}

.health-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(139,26,43,0.08), rgba(212,165,116,0.12));
    color: var(--red-primary);
    border-radius: 15px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.health-card-body h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.health-card:hover .health-card-body h4 {
    color: var(--red-dark);
}

.health-card-body p {
    font-size: 0.87rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.health-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   患者服务
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 28px 22px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(212,165,116,0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--gold));
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(139,26,43,0.1);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--red-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-btn {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    color: var(--red-primary);
    text-decoration: none;
    border: 2px solid rgba(139,26,43,0.3);
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.35s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,26,43,0.3);
}

/* ============================================================
   在线挂号
   ============================================================ */
.appointment-form-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 22px;
    align-items: start;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 26px 24px;
    border-radius: 20px;
    border: 1px solid rgba(212,165,116,0.2);
    box-shadow: 0 8px 28px rgba(139,26,43,0.06);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 18px;
    height: 18px;
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
}

.info-divider {
    height: 1px;
    background: rgba(212,165,116,0.25);
    margin-bottom: 16px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.info-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-primary);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: 24px;
    border: 1px solid rgba(212,165,116,0.2);
    box-shadow: 0 10px 40px rgba(139,26,43,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.label-icon {
    width: 16px;
    height: 16px;
    color: var(--red-primary);
    flex-shrink: 0;
}

.required {
    color: #c41e3a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(212,165,116,0.2);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--text);
    background: rgba(245,230,211,0.3);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(212,165,116,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-agreement {
    margin-top: -8px;
}

.agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.6;
}

.agreement-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.check-box {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(212,165,116,0.4);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
    position: relative;
}

.agreement-label input[type="checkbox"]:checked + .check-box {
    background: var(--red-primary);
    border-color: var(--red-primary);
}

.agreement-label input[type="checkbox"]:checked + .check-box::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.agreement-text a {
    color: var(--red-primary);
    text-decoration: none;
    font-weight: 500;
}

.agreement-text a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    background: var(--red-primary);
    color: white;
    border: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(139,26,43,0.25);
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139,26,43,0.35);
}

.btn-submit .btn-icon {
    width: 18px;
    height: 18px;
}

.appointment-success {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(212,165,116,0.2);
    box-shadow: 0 10px 40px rgba(139,26,43,0.06);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b1a2b, #6b1520);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(139,26,43,0.3);
}

.appointment-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--red-dark);
    margin-bottom: 12px;
}

.appointment-success p {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* ============================================================
   联系我们
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 22px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(212,165,116,0.15);
    box-shadow: 0 4px 20px rgba(139,26,43,0.04);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 28px rgba(139,26,43,0.08);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139,26,43,0.1);
    color: var(--red-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-body {
    flex: 1;
}

.contact-card-body h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-card-body .contact-note {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 4px;
}

.contact-map {
    min-width: 0;
    overflow: hidden;
}

.map-container {
    width: 100%;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(212,165,116,0.15);
    box-shadow: 0 4px 20px rgba(139,26,43,0.04);
    padding: 28px;
    overflow: hidden;
    box-sizing: border-box;
}

.map-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0 0 12px 12px;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.map-header-icon {
    width: 26px;
    height: 26px;
    color: var(--red-primary);
}

.map-header h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 600;
}

.map-diagram {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    grid-template-rows: auto auto auto;
    gap: 10px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 420px;
}

.map-road {
    background: rgba(139,26,43,0.08);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    min-width: 90px;
}

.road-north {
    grid-column: 1 / -1;
    justify-self: stretch;
}

.road-south {
    grid-column: 1 / -1;
    justify-self: stretch;
}

.road-west {
    grid-column: 1 / 2;
    justify-self: stretch;
}

.road-east {
    grid-column: 3 / 4;
    justify-self: stretch;
}

.map-hospital {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: var(--red-primary);
    color: white;
    border-radius: 16px;
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(139,26,43,0.25);
    min-width: 150px;
}

.map-hospital svg {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.map-hospital-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.map-hospital-address {
    font-size: 0.8rem;
    opacity: 0.9;
}

.map-subway {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.subway-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.line-2 {
    background: #004a8f;
}

.line-5 {
    background: #a3288f;
}

.subway-station {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ============================================================
   页脚
   ============================================================ */
.footer {
    background: var(--bg-alt);
    color: var(--text);
    border-top: 1px solid rgba(139, 26, 43, 0.08);
}

.footer-top {
    padding: 44px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand .footer-logo {
    margin-bottom: 16px;
}

.footer-brand .footer-logo img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.footer-links h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--red-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    padding: 5px 0;
    font-size: 0.85rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--red-primary);
}

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(139, 26, 43, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   返回顶部
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(139,26,43,0.35);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(139,26,43,0.45);
}

/* ============================================================
   响应式设计 - 平板及以下 (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .nav-link {
        padding: 8px 8px;
        font-size: 0.78rem;
    }

    .dropdown-menu {
        min-width: 140px;
    }

    .dropdown-menu li a {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-image {
        order: -1;
    }

    .di-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .di-image-box {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .di-content {
        max-width: 640px;
        margin: 0 auto;
    }

    /* 医院简介页 */
    .jj-overview-img {
        float: none;
        width: 100%;
        max-width: 560px;
        margin: 0 auto 24px;
    }

    .jj-values {
        grid-template-columns: 1fr 1fr;
    }

    .jj-features {
        grid-template-columns: 1fr 1fr;
    }

    .jj-timeline {
        max-width: 640px;
    }

    .tl-item {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 28px;
    }

    .tl-year {
        margin-bottom: 8px;
    }

    .tl-dot {
        display: none;
    }

    .jj-timeline::before {
        display: none;
    }

    .tl-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    #treatments.section {
    padding: 60px 0;
}

.treatment-image {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        padding: 20px 16px;
    }

    .map-image {
        max-width: 480px;
        height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

/* ============================================================
   响应式设计 - 手机端 (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    body {
        padding-top: 96px;
    }

    .top-bar {
        font-size: 0.72rem;
    }

    .top-bar-inner {
        height: 32px;
    }

    .top-bar-left .top-bar-divider,
    .top-bar-left .top-bar-item:nth-child(3),
    .top-bar-right .top-bar-item {
        display: none;
    }

    .header {
        top: 32px;
    }

    .header .container {
        height: 64px;
        padding: 0 12px;
    }

    .logo img {
        height: 48px;
        max-width: 180px;
    }

    /* 显示汉堡菜单 */
    .menu-toggle {
        display: flex;
    }

    /* 移动端导航改为汉堡菜单 */
    .nav {
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 0;
        border-bottom: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease;
        z-index: 1002;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        font-size: 1rem;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        background: transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--red-primary);
        background: transparent;
    }

    .dropdown-arrow {
        display: inline-block;
        margin-left: auto;
        margin-right: 4px;
        width: 8px;
        height: 8px;
        border-right: 2px solid #999;
        border-bottom: 2px solid #999;
        transform: rotate(45deg);
        font-size: 0;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.submenu-open > .nav-link .dropdown-arrow {
        transform: rotate(225deg);
    }

    /* 移动端下拉菜单 */
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown > .dropdown-menu {
        display: none !important;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #fdf5f5;
        padding: 0;
        margin: 0 0 0 20px;
        min-width: auto;
        border-left: 1px solid #eee;
    }

    .nav-dropdown .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px 12px 24px;
        font-size: 0.9rem;
        color: var(--text);
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-dropdown .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .nav-dropdown .dropdown-menu li a:active {
        color: var(--red-primary);
        background: rgba(139, 26, 43, 0.06);
    }

    .nav-dropdown .dropdown-menu li a:active .dm-icon {
        color: var(--red-primary);
    }

    .nav-dropdown.submenu-open > .dropdown-menu {
        display: block !important;
    }

    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 0;
    }

    .hero-slider-wrapper {
        min-height: auto;
        overflow: hidden;
    }

    .hero-slider-track {
        min-height: auto;
    }

    .hero-slide {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }

    .hero-content {
        padding: 20px 20px 32px;
    }

    .hero-ink-stamp {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-arrow-left {
        left: 8px;
    }

    .hero-arrow-right {
        right: 8px;
    }

    /* 快捷入口 */
    .quick-guide-section {
        display: none;
    }

    /* Section header */
    .title-cn {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    /* 科室 */
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .article-tabs {
        gap: 10px;
        margin-bottom: 28px;
    }

    .article-tab {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .article-title {
        font-size: 1.05rem;
    }
    /* 医生 */
    .doctors-slider {
        padding: 0;
    }

    .doctor-grid {
        gap: 0;
        padding: 0;
        scroll-snap-type: x mandatory;
    }

    .doctor-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(4px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
        color: var(--red-primary);
    }

    .doctor-photo {
        height: 200px;
    }

    .doctor-name-overlay h3 {
        font-size: 1rem;
    }

    .doctor-name-overlay .doctor-title {
        font-size: 0.7rem;
    }

    .doctor-info {
        padding: 12px;
    }

    .doctor-tags .tag {
        font-size: 0.65rem;
        padding: 3px 7px;
    }

    .doctor-bio {
        font-size: 0.75rem;
        -webkit-line-clamp: 3;
    }

    .doctor-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.72rem;
    }

    .doctor-meta .booking-link {
        align-self: flex-end;
    }

    .btn-view-all {
        padding: 12px 28px;
        font-size: 0.88rem;
    }

    /* 诊疗项目tabs */
    .treatment-tabs {
        gap: 6px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* 就医指南 */
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .news-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 健康资讯 */
    .health-grid {
        grid-template-columns: 1fr;
    }

    /* 患者服务 */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* 表单 */
    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-form-wrapper {
        grid-template-columns: 1fr;
    }

    .appointment-info {
        flex-direction: column;
    }

    .appointment-form {
        padding: 22px 20px;
    }

    /* 科室文章 */
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-tabs {
        gap: 8px;
        margin-bottom: 22px;
    }

    .article-tab {
        padding: 7px 14px;
        font-size: 0.78rem;
    }

    .article-body {
        padding: 16px 18px 22px;
    }

    .article-title {
        font-size: 1rem;
    }

    .article-excerpt {
        font-size: 0.82rem;
    }

    /* 医院简介 */
    .di-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .di-features {
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
    }

    .di-content {
        padding: 0 10px;
    }

    .di-heading {
        font-size: 1.25rem;
    }

    .di-text {
        font-size: 0.88rem;
    }

    .di-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    /* 医院简介页 */
    .jj-overview-img {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }

    .jj-heading {
        font-size: 1.25rem;
    }

    .jj-values {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .jj-value-card {
        padding: 24px 14px 20px;
    }

    .jj-features {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .jj-feat-item {
        padding: 22px 16px 20px;
    }

    .jj-timeline {
        max-width: 100%;
    }

    .jj-timeline::before {
        display: none;
    }

    .tl-item {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 22px;
    }

    .tl-dot {
        display: none;
    }

    .tl-year {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .tl-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
        padding: 16px 18px;
    }

    .jj-cta-card {
        padding: 34px 22px;
    }

    .jj-cta-card h3 {
        font-size: 1.25rem;
    }

    /* 关于我们 */
    .about-stats {
        gap: 20px;
        justify-content: center;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    /* 联系我们 */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        padding: 14px 10px;
    }

    .map-image {
        width: 100%;
        max-width: 480px;
        height: auto;
    }

    .map-diagram {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .map-hospital {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        padding: 12px 16px;
    }

    .road-north,
    .road-south {
        grid-column: 1 / 3;
    }

    .road-west {
        grid-column: 1 / 2;
    }

    .road-east {
        grid-column: 2 / 3;
    }

    .map-subway {
        grid-column: 1 / 3;
    }

    /* 页脚 */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* 就医指南 */
    .news-main-grid {
        grid-template-columns: 1fr;
    }

    .news-main-header,
    .news-sidebar-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .news-date-block {
        width: 44px;
        height: 44px;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }

    .map-container {
        padding: 16px 12px;
    }

    .map-image {
        width: 100%;
        max-width: 480px;
        height: auto;
    }
}

/* ============================================================
   响应式设计 - 小屏手机 (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    body {
        padding-top: 88px;
    }

    .nav {
        top: 88px;
        max-height: calc(100vh - 88px);
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .header .container {
        height: 56px;
    }

    .logo img {
        height: 42px;
        max-width: 160px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-desc {
        font-size: 0.8rem;
    }

    .hero-content {
        padding: 16px 16px 28px;
    }

    .health-categories {
        flex-direction: column;
        align-items: center;
    }

    .health-cat-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .title-cn {
        font-size: 1.3rem;
    }

    .section-header {
        margin-bottom: 24px;
    }

    /* 医院简介页 */
    .jj-section {
        padding: 30px 0;
    }

    .jj-overview-img {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px;
    }

    .jj-heading {
        font-size: 1.15rem;
    }

    .jj-overview p {
        font-size: 0.85rem;
    }

    .jj-timeline {
        max-width: 100%;
    }

    .jj-timeline::before {
        display: none;
    }

    .tl-item {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 18px;
    }

    .tl-dot {
        display: none;
    }

    .tl-year {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .tl-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
        padding: 14px 14px;
    }

    .tl-content h4 {
        font-size: 0.95rem;
    }

    .tl-content p {
        font-size: 0.82rem;
    }

    .jj-values {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .jj-value-card {
        padding: 18px 10px 16px;
    }

    .jj-value-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .jj-value-icon svg {
        width: 36px;
        height: 36px;
    }

    .jj-value-card h4 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .jj-value-card p {
        font-size: 0.78rem;
    }

    .jj-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .jj-feat-item {
        padding: 18px 12px 16px;
    }

    .jj-feat-item h4 {
        font-size: 0.9rem;
    }

    .jj-feat-item p {
        font-size: 0.78rem;
    }

    .jj-cta-card {
        padding: 28px 16px;
        border-radius: 16px;
    }

    .jj-cta-card h3 {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .jj-cta-card p {
        font-size: 0.85rem;
    }

    .jj-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .jj-cta-btn {
        width: 100%;
        max-width: 220px;
        padding: 10px 28px;
        font-size: 0.85rem;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

/* ============================================================
   文章列表页（list.html）
   ============================================================ */
.article-list-page {
    min-height: calc(100vh - 400px);
    background: var(--bg);
    padding: 40px 0 60px;
}

/* 列表页头部：切换卡 + 搜索框 */
.article-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

/* 切换卡容器 - 胶囊式 */
.article-list-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: transparent;
    border: none;
    overflow: visible;
}

.article-list-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 9999px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(139, 26, 43, 0.04);
}

.article-list-tab:hover {
    color: var(--red-primary);
    background: rgba(139, 26, 43, 0.04);
    border-color: rgba(139, 26, 43, 0.25);
}

.article-list-tab.active {
    color: #fff;
    background: var(--red-primary);
    border-color: var(--red-primary);
    box-shadow: 0 2px 8px rgba(139, 26, 43, 0.25);
}

/* 搜索框 */
.article-search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 9999px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    padding: 0 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 260px;
    max-width: 320px;
    flex-shrink: 0;
}

.article-search-bar:focus-within {
    border-color: rgba(139, 26, 43, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.06);
}

.article-search-icon {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.article-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: inherit;
}

.article-search-bar input::placeholder {
    color: #bbb;
}

.article-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

@media (max-width: 640px) {
    .article-list-grid.waterfall-view {
        column-count: 1;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

.article-list-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.article-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(139, 26, 43, 0.15);
    border-color: rgba(212, 165, 116, 0.35);
}

.article-card-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.article-list-card:hover .article-card-thumb img {
    transform: scale(1.06);
}

.article-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.article-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.article-card-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.4s ease;
}

.article-list-card:hover .article-card-title {
    color: var(--red-primary);
}

.article-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.78rem;
}

.article-card-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
}

.article-card-read {
    color: var(--red-primary);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.article-card-read:hover {
    gap: 8px;
    color: var(--red-dark);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 0 48px;
}

.pagination-btn,
.pagination-number {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 26, 43, 0.15);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-btn:hover,
.pagination-number:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

.pagination-number.active {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .article-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-list-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .article-list-tab {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .article-search-bar {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

@media (max-width: 640px) {
    .article-list-page {
        padding: 24px 0 40px;
    }

    .article-list-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .article-list-tab {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .article-search-bar {
        width: 100%;
        min-width: 0;
    }

    .article-search-bar input {
        font-size: 0.85rem;
        padding: 8px 10px;
    }

    .article-list-grid {
        grid-template-columns: 1fr;
    }

    .article-list-grid.list-view .article-list-card {
        flex-direction: column;
    }

    .article-list-grid.list-view .article-card-thumb {
        width: 100%;
        height: 200px;
    }

    .category-tab {
        padding: 6px 14px;
        font-size: 0.82rem;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

/* ============================================================
   文章列表页标题横幅（独立板块）
   ============================================================ */
.page-hero-banner {
    background: var(--white);
    text-align: center;
    padding: 48px 0 16px;
}

.page-hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .page-hero-banner {
        padding: 36px 0 12px;
    }

    .page-hero-subtitle {
        font-size: 0.85rem;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

/* ============================================================
   文章列表页快捷服务导航
   ============================================================ */
.page-title-section {
    text-align: center;
    padding: 36px 0 32px;
}

.page-title-main {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #2d6a4f;
    letter-spacing: 6px;
    margin-bottom: 16px;
}

.page-title-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-title-divider {
    letter-spacing: 2px;
}

.quick-service-nav {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    border: 1px solid rgba(45, 106, 79, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.06);
}

.quick-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 6px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border-right: 1px solid rgba(45, 106, 79, 0.08);
}

.quick-service-item:last-child {
    border-right: none;
}

.quick-service-item:hover {
    background: rgba(45, 106, 79, 0.04);
}

.quick-service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(45, 106, 79, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #2d6a4f;
    transition: all 0.3s ease;
}

.quick-service-item:hover .quick-service-icon {
    background: rgba(45, 106, 79, 0.08);
    border-color: rgba(45, 106, 79, 0.3);
}

.quick-service-icon svg {
    width: 24px;
    height: 24px;
}

.quick-service-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.quick-service-en {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: capitalize;
}

@media (max-width: 1200px) {
    .quick-service-nav {
        grid-template-columns: repeat(4, 1fr);
    }

    .quick-service-item:nth-child(4n) {
        border-right: none;
    }

    .quick-service-item:not(:nth-child(4n)) {
        border-right: 1px solid rgba(45, 106, 79, 0.08);
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}

@media (max-width: 640px) {
    .page-title-main {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }

    .page-title-sub {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .quick-service-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-service-item {
        padding: 18px 6px;
    }

    .quick-service-item:nth-child(2n) {
        border-right: none;
    }

    .quick-service-item:not(:nth-child(2n)) {
        border-right: 1px solid rgba(45, 106, 79, 0.08);
    }

    .quick-service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .quick-service-icon svg {
        width: 20px;
        height: 20px;
    }

    .quick-service-name {
        font-size: 0.82rem;
    }

    .quick-service-en {
        font-size: 0.68rem;
    }
}

/* ============================================================
   文章详情页
   ============================================================ */
.article-detail-page {
    background: var(--bg);
    padding: 0 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb-sep {
    color: rgba(139, 26, 43, 0.25);
}

.breadcrumb-current {
    color: var(--red-primary);
    font-weight: 500;
}

/* 文章详情布局 */
.article-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.article-detail-main {
    min-width: 0;
}

/* 文章卡片 */
.article-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
}

/* 文章头图 */
.article-detail-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.article-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* 文章头部信息 */
.article-detail-header {
    padding: 30px 32px 0;
}

.article-detail-category {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(139, 26, 43, 0.85);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-detail-title {
    font-size: 1.6rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-detail-source {
    margin-left: auto;
}

/* 文章正文 */
.article-detail-content {
    padding: 30px 32px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 2;
}

.article-detail-content p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.article-detail-content h2 {
    font-size: 1.25rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
}

.article-detail-content h3 {
    font-size: 1.1rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    margin: 24px 0 12px;
}

.article-detail-content ul {
    margin: 0 0 18px 2em;
    padding: 0;
}

.article-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

.article-detail-content ul li::marker {
    color: var(--red-primary);
}

.article-detail-content strong {
    color: var(--red-dark);
    font-weight: 600;
}

/* 温馨提示卡片 */
.article-detail-tips {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 26, 43, 0.05));
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 28px;
}

.article-detail-tips h4 {
    font-size: 1rem;
    color: var(--red-primary);
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-detail-tips h4::before {
    content: '💡';
}

.article-detail-tips p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    text-indent: 0;
}

/* 文章标签 */
.article-detail-tags {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.tag-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 4px;
}

.tag-item {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
}

/* 上下篇导航 */
.article-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.article-nav-prev,
.article-nav-next {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: rgba(139, 26, 43, 0.03);
}

.article-nav-prev {
    border-right: 1px solid rgba(212, 165, 116, 0.2);
    align-items: flex-start;
}

.article-nav-next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nav-title {
    font-size: 0.9rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 1;
}

.article-nav-prev:hover .nav-title,
.article-nav-next:hover .nav-title {
    color: var(--red-primary);
}

/* ============================================================
   文章详情页 - 侧边栏
   ============================================================ */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 6px 20px rgba(139, 26, 43, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 30px rgba(139, 26, 43, 0.12);
    border-color: rgba(212, 165, 116, 0.35);
}

.sidebar-title {
    font-size: 1.05rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--red-primary);
    line-height: 1.4;
    position: relative;
    letter-spacing: 1px;
}

/* 发布机构 */
.sidebar-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    border: 1px solid rgba(212, 165, 116, 0.25);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.sidebar-author-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sidebar-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-author-name {
    font-size: 0.95rem;
    color: var(--red-dark);
    font-family: var(--font-serif);
    font-weight: 600;
}

.sidebar-author-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 相关推荐列表 */
.sidebar-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-article-list li + li {
    border-top: 1px solid rgba(212, 165, 116, 0.12);
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.sidebar-article-item:hover {
    transform: translateX(4px);
}

.sidebar-article-item:hover .sidebar-article-title {
    color: var(--red-primary);
}

.sidebar-article-thumb {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.sidebar-article-item:hover .sidebar-article-thumb img {
    transform: scale(1.05);
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    justify-content: center;
}

.sidebar-article-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    transition: color 0.3s ease;
}

.sidebar-article-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 26, 43, 0.06);
    color: var(--red-primary);
    font-size: 0.78rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: rgba(139, 26, 43, 0.15);
    color: var(--red-dark);
    border-color: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   文章详情页 - 响应式
   ============================================================ */
@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-hero {
        height: 280px;
    }

    .article-detail-title {
        font-size: 1.35rem;
    }

    .article-detail-header {
        padding: 24px 20px 0;
    }

    .article-detail-content {
        padding: 24px 20px;
    }

    .article-detail-tags {
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .article-detail-hero {
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.2rem;
    }

    .article-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .article-detail-source {
        margin-left: 0;
        width: 100%;
    }

    .article-detail-content {
        font-size: 0.9rem;
    }

    .article-detail-content h2 {
        font-size: 1.1rem;
    }

    .article-detail-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-prev {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }
}
