/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7b5a3a;
    --secondary-color: #5f4330;
    --accent-color: #b08d63;
    --text-color: #2f241d;
    --text-light: #6e5b4c;
    --border-color: #d8c7b0;
    --bg-light: #f5efe4;
    --white: #fffdf8;
    --shadow: 0 10px 30px rgba(74, 52, 34, 0.08);
}

body {
    font-family: 'Microsoft YaHei', 'SimHei', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(176, 141, 99, 0.10), transparent 28%),
        linear-gradient(180deg, #f9f4ea 0%, var(--bg-light) 100%);
}

.gudian-shell {
    max-width: 1480px;
    margin: 26px auto 0;
    padding: 0 18px 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    margin: 0 auto;
}
.container-1440 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}
@media (max-width: 992px) {
    .container-1440 {
        padding: 0 16px;
        }
    }

/* 头部样式 */
.header {
    background: linear-gradient(180deg, #b08d63 0%, #94704d 100%);
    border: 1px solid #7b5a3a;
    box-shadow: 0 20px 40px rgba(74, 52, 34, 0.14);
    position: relative;
    z-index: 500;
    overflow: visible;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06), transparent 22%, rgba(76, 53, 35, 0.18) 70%, rgba(255,255,255,0.04)),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 2px, rgba(58,39,24,0.03) 2px 4px);
    pointer-events: none;
}

.header-wood {
    padding: 26px 0 24px;
    position: relative;
}

.header-plaque-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-plaque {
    margin: 0 auto;
    text-align: center;
    min-width: min(100%, 420px);
    padding: 16px 48px;
    background: linear-gradient(180deg, rgba(230, 206, 165, 0.96) 0%, rgba(197, 164, 119, 0.96) 100%);
    border: 3px double rgba(95, 67, 48, 0.95);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        inset 0 -1px 0 rgba(95,67,48,0.25),
        0 8px 22px rgba(58, 39, 24, 0.18);
}

.header-plaque h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 6px;
    color: #2b1d14;
    margin: 0;
    font-weight: 700;
}

.header-plaque .slogan {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 4px;
    color: #5f4330;
    text-transform: uppercase;
}

.header-seal {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(95, 67, 48, 0.75);
    background: radial-gradient(circle at 35% 35%, #d4b58a, #9a724e);
    color: #3d281a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,0.18);
}

.header-copy {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 18px;
    color: #f7ecdc;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-copy span {
    position: relative;
    padding: 0 14px;
}

.header-copy span::before,
.header-copy span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: rgba(255, 240, 215, 0.55);
}

.header-copy span::before {
    left: 0;
}

.header-copy span::after {
    right: 0;
}

.header-toolbar,
.header-nav-band {
    position: relative;
    z-index: 1;
}

.header-toolbar {
    background: linear-gradient(180deg, rgba(236, 216, 183, 0.94), rgba(210, 181, 141, 0.96));
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(114, 84, 57, 0.45);
    padding: 10px 0 9px;
}

.header-nav-band {
    background: linear-gradient(180deg, #c9a676 0%, #ad8457 100%);
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid #7b5a3a;
    padding: 0;
}

.header .container {
    position: relative;
    z-index: 1;
}

/* 中间信息区块 */
.header-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
}

.info-line a {
    color: #5a3e29;
    font-size: 13px;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
    padding-right: 14px;
}

.info-line a::after {
    content: '·';
    position: absolute;
    right: 2px;
    color: rgba(90, 62, 41, 0.45);
}

.info-line a:last-child::after {
    display: none;
}

.info-line a:hover {
    color: #2b1d14;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #2f2117;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 18px 13px;
    border-right: 1px solid rgba(95, 67, 48, 0.18);
    transition: all 0.25s ease;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(180deg, rgba(255, 248, 237, 0.55), rgba(242, 222, 189, 0.25));
    color: #6b3f21;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2f2117;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端菜单关闭按钮 - 默认隐藏 */
.menu-close {
    display: none;
}

/* 分类导航 */
.category-nav {
    background: linear-gradient(180deg, #d8bd94 0%, #c8a573 100%);
    border: 1px solid #9b7956;
    border-top: none;
    padding: 12px 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.category-list {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-list a {
    color: #4a3222;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 0;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.category-list a:hover {
    color: #2b1d14;
    border-color: rgba(95, 67, 48, 0.28);
    background-color: rgba(255, 248, 237, 0.32);
}

/* 横幅广告样式 */
.top-banner {
    max-width: 1440px;
    margin: 18px auto 0 auto;
    background-color: transparent;
}

.top-banner .container {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #d5c1a5;
    box-shadow: 0 8px 24px rgba(74, 52, 34, 0.08);
    padding: 10px;
}

.top-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.banner-ad {
    display: block;
    text-align: center;
    height: 118px;
    overflow: hidden;
}

.banner-ad img {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    display: block;
    object-fit: fill;
}

/* 内容区顶部广告横幅（无背景） */
.body-top-banner {
    padding: 15px 0;
    margin-bottom: -20px;
}

.body-top-banner .container {
    background: transparent;
    box-shadow: none;
    border-radius: 5px;
    overflow: hidden;
}

.body-top-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* 搜索和菜单区域样式 */
.search-menu-section {
    background: linear-gradient(180deg, #efe2c8 0%, #dfc59e 100%);
    padding: 12px 0;
    margin-bottom: 18px;
    border: 1px solid #c4a379;
    border-top: none;
    box-shadow: 0 8px 18px rgba(74, 52, 34, 0.06);
}

.search-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* 左侧搜索区域 */
.search-area {
    flex-shrink: 0;
}

.search-box {
    display: flex;
    gap: 8px;
}

.search-select {
    padding: 11px 12px;
    font-size: 14px;
    border: 1px solid #af8b62;
    border-radius: 0;
    background-color: #fffaf1;
    color: #4d3626;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 100px;
}

.search-select:focus {
    border-color: var(--primary-color);
}

.search-input {
    width: 400px;
    padding: 11px 16px;
    font-size: 14px;
    border: 1px solid #af8b62;
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
    background: #fffaf1;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(123, 90, 58, 0.08);
}

.search-btn {
    padding: 11px 24px;
    background: linear-gradient(180deg, #8b613f, #68472f);
    color: var(--white);
    border: 1px solid #5d402d;
    border-radius: 0;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 52, 34, 0.18);
}

/* 右侧热门搜索 */
.quick-links {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-title {
    color: var(--text-light);
    font-size: 14px;
    font-weight: bold;
}

.quick-links a {
    color: var(--text-color);
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 5px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* 主要内容区域 */
.main-content {
    padding: 22px 0 30px;
}

.content-layout {
    display: flex;
    gap: 30px;
}

.main-column {
    flex: 1;
    min-width: 0;
}

.content-section {
    background:
        linear-gradient(180deg, rgba(246, 237, 225, 0.98) 0%, rgba(231, 223, 208, 0.96) 100%);
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 0;
    border: 0;
    box-shadow: var(--shadow);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 14px 9px;
    border: 1px solid #c8a87a;
    background: linear-gradient(180deg, #d6b687 0%, #bd9565 100%);
}

.section-title {
    font-size: 20px;
    color: #3d281a;
    font-weight: bold;
    position: relative;
    padding-left: 18px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #6f4b31;
    border-radius: 0;
}

.more-link {
    color: #5f4330;
    font-size: 14px;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: var(--primary-color);
}

/* 视频卡片网格 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.video-card {
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #d4bea0;
    background: #fffaf1;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(74,52,34,0.12);
}

.video-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 比例 */
    background: #f0e4cf;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommend-tabs-section .video-thumb {
    padding-top: 100%;
}

.recommend-tabs-section .video-thumb img {
    object-position: top center;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(95, 67, 48, 0.88);
    color: #fff8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.25s ease;
    border: 1px solid rgba(255,248,237,0.24);
}

.video-card:hover .video-thumb .play-icon {
    opacity: 1;
}

.play-count {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 1;
    padding: 3px 8px;
    font-size: 11px;
    color: #fff8ed;
    background: rgba(47, 36, 29, 0.78);
    border: 1px solid rgba(255,248,237,0.16);
}

.video-info {
    padding: 10px 12px;
}

.video-info h3 {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-info h3 a {
    color: #3a2a21;
    text-decoration: none;
    transition: color 0.2s ease;
}

.video-info h3 a:hover {
    color: #7b5a3a;
}

.module-section {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.module-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(74, 52, 34, 0.12);
}

.module-section .section-header {
    margin-bottom: 14px;
}

.module-section .section-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 14px;
    font-weight: 700;
    color: #fff8ed;
    background: linear-gradient(180deg, #8a613f 0%, #68472f 100%);
    border: 1px solid #5d402d;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.title-list-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
}

.title-item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 10px 0;
    border-bottom: 1px dashed #d8c6ac;
    overflow: hidden;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.title-item:hover {
    background: linear-gradient(90deg, rgba(123, 90, 58, 0.05) 0%, transparent 100%);
    padding-left: 5px;
}

.item-dot {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    flex-shrink: 0;
    background: #7b5a3a;
    border-radius: 50%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.title-item:hover .item-dot {
    transform: scale(1.18);
    box-shadow: 0 0 0 3px rgba(123, 90, 58, 0.10);
}

.title-item a {
    display: block;
    flex: 1;
    min-width: 0;
    max-width: 100%;
    color: #3a2a21;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.title-item a:hover {
    color: #7b5a3a;
}

.item-date {
    margin-left: 10px;
    flex-shrink: 0;
    font-size: 12px;
    color: #8a7664;
}

.item-date::before {
    content: '';
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(110, 74, 47, 0.8);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-meta {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 5px;
}

.video-stats {
    color: var(--text-light);
    font-size: 12px;
}

/* 排行榜样式 */
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rank-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.rank-item:hover {
    background-color: var(--bg-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rank-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--bg-light);
    color: var(--text-light);
    border-radius: 5px;
    margin-right: 15px;
    flex-shrink: 0;
}

.rank-num.top {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.rank-info {
    flex: 1;
    min-width: 0;
}

.rank-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    word-wrap: break-word;
    line-height: 1.3;
}

.rank-info p {
    color: var(--text-light);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.rank-count {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sidebar-widget .rank-list {
    counter-reset: rank-counter;
}

.sidebar-widget .rank-item {
    counter-increment: rank-counter;
}

.sidebar-widget .rank-item .rank-num::before {
    content: counter(rank-counter);
}

.sidebar-widget .rank-item:nth-child(-n+3) .rank-num {
    background: linear-gradient(180deg, #8b613f 0%, #68472f 100%);
    color: #fff8ed;
    font-weight: 700;
    border: 1px solid #5d402d;
}

/* 右侧边栏样式 */
.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: linear-gradient(180deg, rgba(255,253,248,0.98) 0%, rgba(245,232,210,0.98) 100%);
    border-radius: 0;
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    border: 0;
}

.widget-title {
    font-size: 17px;
    color: #3d281a;
    font-weight: bold;
    margin-bottom: 14px;
    padding: 8px 12px 7px 14px;
    border: 1px solid #c8a87a;
    background: linear-gradient(180deg, #d6b687 0%, #bd9565 100%);
    position: relative;
}

.widget-title::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: #6f4b31;
    border-radius: 0;
}

.widget-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.widget-list li {
    margin-bottom: 0;
}

.widget-list a {
    color: #4a3222;
    font-size: 14px;
    padding: 8px 12px;
    display: block;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid #e0cfb6;
    text-align: center;
    background: rgba(255,250,241,0.8);
}

.widget-list a:hover {
    background-color: #f6ecda;
    border-color: #c5a073;
    color: #6b4428;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    min-height: 52px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: linear-gradient(180deg, #d6b687 0%, #bd9565 100%);
    color: #fff8ed;
    border: 1px solid #a57a4b;
    border-radius: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 18px rgba(74, 52, 34, 0.18);
}

.back-to-top:hover {
    background: linear-gradient(180deg, #caa571 0%, #a97c4b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(74, 52, 34, 0.24);
}

.back-to-top-icon {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.back-to-top-text {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.08em;
}

/* 字母检索通栏 */
.letter-index-full {
    background: linear-gradient(180deg, rgba(255,253,248,0.98) 0%, rgba(245,232,210,0.98) 100%);
    padding: 18px;
    border-radius: 0;
    box-shadow: var(--shadow);
    border: 0;
    margin-top: 12px;
}

.letter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.letter-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1e2c8;
    color: #4a3222;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid #ceb089;
}

.letter-item:hover {
    background-color: #8a613f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 52, 34, 0.2);
}

/* 友情链接通栏 */
.friends-links {
    margin-top: 0;
}

.link-apply {
    display: flex;
    align-items: center;
    gap: 15px;
}

.apply-desc {
    color: var(--text-light);
    font-size: 14px;
}

.apply-btn {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.apply-btn:hover {
    color: var(--primary-color);
}

.friends-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.friends-list a {
    color: #4a3222;
    font-size: 14px;
    padding: 8px 14px;
    background-color: #f3e5cd;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    display: block;
    border: 1px solid #d6bc95;
}

.friends-list a:hover {
    background-color: #8a613f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(74, 52, 34, 0.18);
}

/* 页脚样式 */
.footer {
    color: #5f4330;
    padding: 0;
    margin-top: 20px;
}

.footer-board {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(255, 246, 226, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(247, 241, 230, 0.98) 0%, rgba(232, 210, 176, 0.98) 100%);
    box-shadow: 0 14px 28px rgba(74, 52, 34, 0.12);
    padding: 24px 24px 18px;
}

.footer-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.05), transparent 24%, rgba(85, 58, 38, 0.08) 72%, rgba(255,255,255,0.03));
    pointer-events: none;
}

.footer-topline,
.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-topline {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(95, 67, 48, 0.22);
}

.footer-brand {
    max-width: 720px;
}

.footer-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(61, 40, 26, 0.72);
}

.footer-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    color: #2f1f15;
}

.footer-desc {
    margin: 10px 0 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.8;
    color: #5d4634;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.footer-section {
    padding: 16px 16px 14px;
    border: 1px solid rgba(100, 72, 49, 0.14);
    background: rgba(255, 248, 237, 0.20);
    min-height: 100%;
}

.footer-section h3 {
    color: #3d281a;
    font-size: 17px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(95, 67, 48, 0.16);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5a3e29;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.22s ease;
}

.footer-section a::before {
    content: '·';
    font-size: 18px;
    line-height: 1;
    color: #8a613f;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border: 1px solid rgba(95, 67, 48, 0.20);
    background-color: rgba(255,248,237,0.42);
    color: #4a3222;
    border-radius: 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #8a613f;
    color: #fff8ed;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(95, 67, 48, 0.22);
}

.footer-tools {
    justify-content: flex-end;
}

.copyright {
    text-align: left;
    padding-top: 0;
}

.copyright p {
    font-size: 13px;
    color: #6b4e37;
    margin-bottom: 5px;
}

@media (max-width: 1400px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .footer-topline {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .title-list-two-columns {
        column-gap: 18px;
    }

    .item-date {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .title-list-two-columns {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .module-section .section-title {
        font-size: 16px;
    }

    .title-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .title-item {
        padding: 8px 0;
    }

    .item-date::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .item-date {
        display: none;
    }
}

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        text-align: center;
        width: 100%;
    }

    .header-info {
        display: none;
    }

    /* 移动端菜单按钮 */
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 15px;
        top: 20px;
        z-index: 1002;
    }

    /* 菜单打开时隐藏汉堡按钮，避免与关闭按钮重复 */
    .menu-toggle.active {
        display: none;
    }

    /* 移动端弹出菜单 - 覆盖层样式 */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 70px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 0 0 30px 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 18px 25px;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: rgba(255, 255, 255, 0.15);
        padding-left: 35px;
    }

    /* 菜单关闭按钮 */
    .menu-close {
        display: flex;
        position: absolute;
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .menu-close:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: rotate(90deg);
    }

    .menu-close::before,
    .menu-close::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background-color: white;
        border-radius: 2px;
    }

    .menu-close::before {
        transform: rotate(45deg);
    }

    .menu-close::after {
        transform: rotate(-45deg);
    }

    /* 菜单打开时禁止页面滚动 */
    body.menu-open {
        overflow: hidden;
    }

    .category-list {
        gap: 10px;
    }

    .category-list a {
        font-size: 13px;
        padding: 6px 12px;
    }

    .search-menu-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search-input {
        width: 100%;
    }

    .search-box {
        flex-direction: column;
    }

    .search-select {
        width: 100%;
    }

    .search-btn {
        width: 100%;
    }

    .quick-links {
        justify-content: flex-start;
    }

    .content-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .content-section {
        padding: 20px 15px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }

    .search-input {
        font-size: 14px;
        padding: 10px 15px;
    }

    .search-btn {
        padding: 10px 30px;
        font-size: 14px;
    }

    .quick-links {
        font-size: 12px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-card {
        max-width: 100%;
    }

    .section-title {
        font-size: 18px;
    }

    .content-section {
        padding: 15px;
        margin-bottom: 15px;
    }

    .section-header {
        margin-bottom: 15px;
    }

    .rank-item {
        padding: 12px;
    }

    .rank-num {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 10px;
    }

    .rank-info h4 {
        font-size: 15px;
    }

    .rank-info p {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
        padding: 16px 14px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-section a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .copyright {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* 小屏幕优化 */
@media (max-width: 360px) {
    .category-list {
        gap: 8px;
    }

    .category-list a {
        font-size: 12px;
        padding: 5px 10px;
    }

    .search-input {
        font-size: 13px;
        padding: 8px 12px;
    }

    .search-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* 面包屑导航 */
.breadcrumb-section {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.breadcrumb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.breadcrumb-bar .breadcrumb {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.breadcrumb-bar .breadcrumb-cart-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.breadcrumb-cart-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-light);
    background: #f8f8f8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-cart-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #fff;
}

.breadcrumb-cart-btn .cart-icon {
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: bold;
}

/* 分类页面标题和筛选 */
.category-header {
    background-color: var(--white);
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.category-title {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    padding-left: 15px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.filter-bar {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    color: var(--text-color);
    font-weight: bold;
    font-size: 15px;
}

.filter-item a {
    color: var(--text-light);
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.filter-item a:hover {
    color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.1);
}

.filter-item a.active {
    color: var(--white);
    background-color: var(--primary-color);
}

/* 视频列表区域 */
.video-list-section {
    background-color: var(--white);
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-left: 0;
    padding-left: 0;
    padding-top: 30px;
    list-style: none;
}

.pagination li,
.pagination .page-item {
    list-style: none;
}

.page-link {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: rgb(140, 90, 52);
    border-color: rgb(140, 90, 52);
    background-color: rgba(110, 74, 47, 0.05);
}

.page-link.active {
    background-color: rgb(140, 90, 52);
    color: var(--white);
    border-color: rgb(140, 90, 52);
    font-weight: bold;
}

.page-link.disabled {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.page-link.disabled:hover {
    color: var(--text-light);
    border-color: var(--border-color);
    background-color: var(--white);
}

.page-ellipsis {
    color: var(--text-light);
    padding: 0 5px;
}

/* 分类导航激活状态 */
.category-list a.active {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 分类导航居右显示 */
.category-list.category-list-right {
    justify-content: flex-end;
}

/* 图文列表样式 */
.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.list-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.list-thumb {
    position: relative;
    width: 240px;
    height: 135px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.list-item:hover .list-thumb img {
    transform: scale(1.1);
}

.list-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(110, 74, 47, 0.8);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.list-item:hover .list-thumb .play-icon {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
}

.list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

.list-item:hover .list-title {
    color: var(--primary-color);
}

.list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.meta-item::before {
    content: '•';
    margin-right: 8px;
    color: var(--primary-color);
}

.meta-item:first-child::before {
    content: none;
}

.list-desc {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* 纯文字列表样式 */
.text-list {
    display: flex;
    flex-direction: column;
}

.text-list-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.text-list-item:hover {
    background-color: var(--bg-light);
}

.list-number {
    width: 40px;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-light);
    flex-shrink: 0;
}

.text-list-item:hover .list-number {
    color: var(--primary-color);
}

.text-list-title {
    flex: 1;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-list-item:hover .text-list-title {
    color: var(--primary-color);
}

.text-list-meta {
    width: 200px;
    font-size: 14px;
    color: var(--text-light);
    flex-shrink: 0;
    text-align: center;
}

.text-list-time {
    width: 100px;
    font-size: 14px;
    color: var(--text-light);
    flex-shrink: 0;
    text-align: center;
}

.text-list-views {
    width: 100px;
    font-size: 14px;
    color: var(--text-light);
    flex-shrink: 0;
    text-align: center;
}

.text-list-date {
    width: 120px;
    font-size: 14px;
    color: var(--text-light);
    flex-shrink: 0;
    text-align: right;
}

/* 音频播放列表样式 */
.music-list-head {
    display: grid;
    grid-template-columns: 1.9fr 132px 82px 74px 82px 132px;
    gap: 14px;
    align-items: center;
    padding: 10px 18px 11px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(110, 74, 47, 0.14);
    background: linear-gradient(180deg, rgba(247,238,223,0.72) 0%, rgba(255,252,246,0.4) 100%);
    color: #7e6856;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.music-head-index {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 6px;
}

.music-head-index::after {
    content: '曲目';
    color: #7e6856;
}

.music-head-track {
    display: none;
}

.music-head-artist,
.music-head-quality,
.music-head-time,
.music-head-size,
.music-head-actions {
    text-align: center;
}

.music-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.music-item {
    display: grid;
    grid-template-columns: 1.9fr 132px 82px 74px 82px 132px;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid rgba(110, 74, 47, 0.14);
    background: linear-gradient(180deg, rgba(255,253,248,0.96) 0%, rgba(247,238,223,0.94) 100%);
    transition: all 0.28s ease;
    gap: 14px;
}

.music-item:hover {
    background: linear-gradient(180deg, rgba(255,250,242,0.98) 0%, rgba(244,231,210,0.96) 100%);
    border-color: rgba(110, 74, 47, 0.28);
    box-shadow: 0 8px 18px rgba(72, 47, 27, 0.08);
    transform: translateY(-1px);
}

.music-track-main {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.play-btn {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(110, 74, 47, 0.10), rgba(110, 74, 47, 0.18));
    border: 1px solid rgba(110, 74, 47, 0.18);
    color: #7a5a3e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(110, 74, 47, 0.16), rgba(110, 74, 47, 0.24));
    border-color: rgba(110, 74, 47, 0.28);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(110, 74, 47, 0.14);
}

.play-icon-btn {
    font-size: 12px;
    margin-left: 1px;
}

.music-play-link {
    text-decoration: none;
}

.music-item .list-number {
    width: 28px;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-light);
    flex-shrink: 0;
    text-align: center;
}

.music-item:hover .list-number {
    color: var(--primary-color);
}

.music-title-group {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.music-title {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.music-item:hover .music-title {
    color: var(--primary-color);
}

.music-submeta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    color: #8d7762;
    font-size: 12px;
    line-height: 1.5;
}

.music-picture-grid {
    border-bottom: 0;
    padding-bottom: 20px;
}

.music-picture-item {
    border-color: #e1d1b5;
}

.music-picture-box {
    background: linear-gradient(180deg, #efe2ca 0%, #dbc19d 100%);
}

.music-picture-overlay {
    background: linear-gradient(180deg, rgba(47, 29, 17, 0.06) 0%, rgba(47, 29, 17, 0.62) 100%);
}

.music-card-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 248, 237, 0.86);
    border: 1px solid rgba(138, 97, 63, 0.2);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(55, 37, 20, 0.18);
    transition: all 0.25s ease;
}

.music-picture-item:hover .music-card-play {
    transform: scale(1.05);
    background: rgba(255, 251, 244, 0.94);
}

.music-picture-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.music-picture-title {
    margin-bottom: 0;
}

.music-picture-singer {
    margin: 0;
    font-size: 13px;
    color: #7a6756;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-picture-meta {
    gap: 10px;
    flex-wrap: wrap;
}

.music-simple-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.music-simple-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid #eadfce;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.96) 0%, rgba(247, 239, 226, 0.94) 100%);
    transition: all 0.25s ease;
}

.music-simple-item:hover {
    border-color: #dcc6a8;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(244, 232, 214, 0.98) 100%);
    box-shadow: 0 8px 22px rgba(107, 77, 48, 0.08);
}

.music-simple-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.music-simple-main {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.music-simple-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.music-simple-pill {
    min-width: 88px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3e4cc;
    border: 1px solid #dec29b;
    color: #7c6147;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.music-simple-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.music-simple-title a {
    color: #625243;
}

.music-simple-item:hover .music-simple-title a {
    color: #4f3b2a;
}

.music-simple-play {
    width: 34px;
    height: 34px;
}

.product-price-badge {
    background: linear-gradient(135deg, #b55f36 0%, #8d4c2b 100%);
    color: #fff8ed;
    font-weight: 700;
}

.product-picture-meta .meta-views,
.product-picture-meta .meta-date {
    color: #876c55;
}

.album-picture-grid {
    align-items: stretch;
}

.album-picture-item {
    display: flex;
    flex-direction: column;
}

.album-picture-box {
    padding-top: 68%;
}

.album-picture-overlay {
    align-items: stretch;
    justify-content: space-between;
    padding: 12px;
}

.album-overlay-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.album-view-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 5px 10px;
    background: rgba(255, 248, 236, 0.92);
    color: #6e4a2f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.album-picture-item--locked .album-picture-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(43, 29, 18, 0.18);
    pointer-events: none;
}

.album-lock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    background: rgba(59, 39, 24, 0.78);
    color: #fff7ea;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.album-unlock-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    min-width: 64px;
    height: 30px;
    padding: 0 12px;
    border: 0;
    background: linear-gradient(180deg, rgba(243, 225, 197, 0.98) 0%, rgba(223, 193, 153, 0.98) 100%);
    color: #5f432b;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.album-unlock-btn:hover {
    background: linear-gradient(180deg, rgba(248, 234, 210, 1) 0%, rgba(228, 197, 155, 1) 100%);
    color: #4b3422;
}

.album-picture-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
}

.album-picture-description {
    margin: 0;
    min-height: 40px;
    font-size: 13px;
    line-height: 1.6;
    color: #7c6958;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.album-picture-meta .meta-views,
.album-picture-meta .meta-date {
    color: #876c55;
}

.album-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.album-sidebar-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(142, 110, 79, 0.24);
}

.album-sidebar-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.album-sidebar-thumb {
    width: 72px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f3ece2;
}

.album-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-sidebar-item:hover .album-sidebar-thumb img {
    transform: scale(1.06);
}

.album-sidebar-info {
    min-width: 0;
    flex: 1;
}

.album-sidebar-info h4 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.45;
}

.album-sidebar-info h4 a {
    display: block;
    color: #4f3a27;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-sidebar-info p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #8b725b;
}

@media (max-width: 768px) {
    .music-simple-item {
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
        flex-wrap: wrap;
    }

    .music-simple-main {
        flex-basis: calc(100% - 52px);
    }

    .music-simple-actions {
        justify-content: flex-start;
        gap: 8px;
        margin-left: 52px;
        width: calc(100% - 52px);
    }

    .music-simple-pill {
        min-width: 0;
        padding: 7px 10px;
    }

    .album-picture-box {
        padding-top: 72%;
    }

    .album-sidebar-thumb {
        width: 64px;
        height: 50px;
    }
}

.music-artist {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.music-quality {
    font-size: 12px;
    color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.1);
    padding: 5px 8px;
    border-radius: 5px;
    text-align: center;
}

.music-time {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.music-size {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.music-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.action-link {
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.action-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.05);
}

/* 下载资源列表样式 */
.download-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.download-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.download-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.download-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.icon-format {
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 5px;
    color: var(--white);
}

.icon-format.mp3 {
    background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
}

.icon-format.mp4 {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.icon-format.pack {
    background: linear-gradient(135deg, #A8E6CF, #56AB91);
}

.download-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-title {
    margin: 0;
    font-size: 18px;
}

.download-title a {
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.download-item:hover .download-title a {
    color: var(--primary-color);
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-tag {
    font-size: 13px;
    color: var(--text-light);
    padding: 3px 10px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.download-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.download-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-btn {
    width: 100px;
    height: 38px;
    background-color: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.download-icon-btn {
    font-size: 0;
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
}

.download-icon-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2.5px;
    height: 7px;
    background-color: currentColor;
    border-radius: 1.5px;
}

.download-icon-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
}

.download-count {
    font-size: 12px;
    color: var(--text-light);
}

/* 下载说明样式 */
.download-notice {
    font-size: 13px;
    line-height: 2;
    color: var(--text-color);
}

.download-notice p {
    margin: 0;
    padding: 5px 0;
}

/* 图片网格列表样式 */
.picture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.picture-item {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.picture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.picture-box {
    position: relative;
    width: 100%;
    padding-top: 71.4%; /* 280:200 比例 */
    overflow: hidden;
    background-color: var(--bg-light);
}

.picture-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.picture-item:hover .picture-box img {
    transform: scale(1.1);
}

.picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.picture-item:hover .picture-overlay {
    opacity: 1;
}

.view-icon {
    font-size: 40px;
    color: var(--white);
}

.picture-info {
    padding: 12px;
}

.picture-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.picture-item:hover .picture-title {
    color: var(--primary-color);
}

.picture-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.meta-views,
.meta-date {
    font-size: 12px;
}

/* 热门图片列表样式 */
.hot-picture-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-picture-item {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hot-picture-item:hover {
    background-color: var(--bg-light);
}

.hot-picture-item img {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
}

.hot-picture-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hot-picture-info h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-picture-info p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* 音频详情页面样式 */
.audio-player-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    display: flex;
    gap: 40px;
}

/* 没有缩略图时的布局 */
.audio-player-section.no-thumbnail {
    display: block;
}

.audio-player-section.no-thumbnail .audio-cover {
    display: none;
}

.audio-cover {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.audio-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.audio-player-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audio-title {
    font-size: 28px;
    color: var(--text-color);
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.audio-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--bg-light);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid var(--border-color);
}

.audio-player {
    width: 100%;
    margin: 10px 0;
}

.audio-player audio {
    width: 100%;
    height: 50px;
    outline: none;
}

.audio-stats-bar {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.stat-icon {
    font-size: 16px;
}

.audio-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: var(--primary-color);
}

.action-btn.primary:hover {
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.3);
}

/* 曲目信息网格 */
.audio-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    width: auto;
    font-weight: bold;
    color: var(--text-color);
    flex-shrink: 0;
}

.info-value {
    flex: 1;
    color: var(--text-light);
}

/* 唱词样式 */
.lyrics-content {
    line-height: 2.2;
    font-size: 16px;
    color: var(--text-color);
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.lyrics-content p {
    margin: 0 0 10px 0;
    text-indent: 2em;
}

/* 简介内容 */
.description-content {
    line-height: 2;
    font-size: 15px;
    color: var(--text-color);
}

.description-content p {
    margin: 0 0 15px 0;
    text-indent: 2em;
}

/* 演员介绍 */
.artist-profile {
    display: flex;
    gap: 25px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.artist-avatar {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info {
    flex: 1;
}

.artist-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.artist-title {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 15px 0;
}

.artist-bio {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 10px 0;
    text-indent: 2em;
}

/* 相关音频列表 */
.related-audio-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-audio-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-audio-item:hover {
    background-color: var(--bg-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.related-audio-cover {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.related-audio-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-audio-item:hover .play-overlay {
    opacity: 1;
}

.related-audio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.related-audio-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

.related-audio-item:hover .related-audio-info h4 {
    color: var(--primary-color);
}

.related-audio-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.audio-duration {
    font-size: 12px;
    color: var(--text-light);
    padding: 2px 8px;
    background-color: var(--bg-light);
    border-radius: 5px;
    align-self: flex-start;
}

/* 响应式 - 音频详情页 */
@media (max-width: 768px) {
    .audio-player-section {
        flex-direction: column;
        padding: 25px;
        gap: 25px;
    }

    .audio-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .audio-title {
        font-size: 22px;
    }

    .audio-stats-bar {
        flex-wrap: wrap;
        gap: 15px;
    }

    .audio-actions {
        flex-wrap: wrap;
    }

    .action-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .audio-info-grid {
        grid-template-columns: 1fr;
    }

    .artist-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* 视频详情页面样式 */
.video-player-section {
    background-color: var(--white);
    padding: 0;
    border-radius: 5px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    background-color: #000;
    overflow: hidden;
}
.video-player-wrapper.is-audio {
    padding-top: 90px;
    height: 0;
    max-height: none;
    background-color: transparent;
}

.video-player-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

.video-quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.video-info-bar {
    padding: 30px;
}

.video-title {
    font-size: 28px;
    color: var(--text-color);
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.video-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.video-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.video-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.video-stats .stat-icon {
    font-size: 16px;
}

.video-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.video-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* 播放源切换标签 */
.player-source-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.source-tab {
    padding: 12px 20px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
}

.source-tab:hover {
    color: var(--primary-color);
}

.source-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: bold;
}

/* 分集列表 */
.episode-list {
    display: none;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.episode-list.active {
    display: grid;
}

.episode-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 45px;
}

.episode-item:hover {
    border-color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(110, 74, 47, 0.2);
}

.episode-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: var(--primary-color);
}

.episode-title {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* 响应式 - 视频详情页 */
@media (max-width: 768px) {
    .video-info-bar {
        padding: 20px;
    }

    .video-title {
        font-size: 22px;
    }

    .video-stats {
        gap: 15px;
    }

    .video-actions {
        flex-wrap: wrap;
    }

    .action-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .video-info-grid {
        grid-template-columns: 1fr;
    }

    .episode-list {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        padding: 15px;
    }

    .episode-item {
        padding: 8px 5px;
        min-height: 40px;
    }

    .episode-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .episode-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .episode-title {
        font-size: 12px;
    }

    .source-tab {
        flex: 1;
        min-width: calc(50% - 5px);
        justify-content: center;
    }
}

/* 图片详情页面样式 */
.picture-detail-section {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.picture-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.picture-detail-title {
    font-size: 28px;
    color: var(--text-color);
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.picture-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.picture-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.picture-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

/* 图片查看器整体包装 */
.picture-viewer-wrapper {
    background-color: var(--white);
}

/* 主图查看器 */
.main-picture-viewer {
    background-color: var(--white);
}

.main-picture-container {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

.main-picture-container img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.picture-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(110, 74, 47, 0.8);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.picture-caption {
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
}

/* 缩略图横向滚动 */
.thumbnail-scroll-wrapper {
    margin-top: 15px;
    padding: 15px 0;
    border-top: 2px solid var(--border-color);
}

.thumbnail-scroll-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.thumbnail-scroll-container:hover {
    scrollbar-color: var(--accent-color) var(--bg-light);
}

.thumbnail-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-scroll-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.thumbnail-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.thumbnail-scroll-container:hover::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

.thumbnail-horizontal-list {
    display: flex;
    gap: 10px;
    padding: 5px;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 150px;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.3);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 74, 47, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-number {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 25px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.thumbnail-item.active .thumbnail-number {
    background-color: var(--primary-color);
}

/* 灯箱查看器 */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    cursor: default;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(110, 74, 47, 0.8);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    font-size: 16px;
    margin-top: 15px;
    padding: 10px;
}

.lightbox-zoom-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 5px;
}

/* 响应式 - 图片详情页 */
@media (max-width: 768px) {
    .picture-detail-section {
        padding: 20px;
    }

    .picture-detail-title {
        font-size: 22px;
    }

    .picture-stats {
        gap: 15px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .picture-detail-title {
        font-size: 20px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card,
.rank-item {
    animation: fadeIn 0.5s ease-out;
}
/* 下载详情页面样式 */
.download-detail-header {
    display: flex;
    gap: 25px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.download-detail-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.download-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-detail-title {
    font-size: 28px;
    color: var(--text-color);
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.download-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.download-button-area {
    display: flex;
    gap: 15px;
    padding: 30px 0;
    border-bottom: 2px solid var(--border-color);
}

.primary-download-btn {
    padding: 15px 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.3);
}

.primary-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 74, 47, 0.4);
}

.download-icon-large {
    font-size: 20px;
}

.secondary-btn {
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.resource-detail-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.detail-row {
    display: grid !important;
    grid-template-columns: 100px 1fr !important;
    background: white;
}

.detail-row:nth-child(odd) {
    background-color: white;
}

.detail-label {
    padding: 12px 15px;
    background: #f9fafb;
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

.detail-value {
    padding: 12px 15px;
    color: #374151;
    font-size: 14px;
}

.download-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.instruction-item {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.instruction-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.instruction-item p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* 响应式 - 下载详情页 */
@media (max-width: 768px) {
    .download-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-button-area {
        flex-direction: column;
    }

    .primary-download-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .resource-detail-grid {
        grid-template-columns: 1fr;
    }

    .download-instructions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .download-detail-title {
        font-size: 22px;
    }

    .download-detail-icon {
        width: 80px;
        height: 80px;
    }
}

/* 多种下载源样式 - 简约紧凑版 */
.download-tips {
    font-size: 13px;
    color: var(--text-light);
    font-weight: normal;
}

.download-sources-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-source-item {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
}

.download-source-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(110, 74, 47, 0.1);
    transform: translateX(2px);
}

.source-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.source-icon {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.baidu-icon {
    background: linear-gradient(135deg, #2932E1, #1E88E5);
}

.aliyun-icon {
    background: linear-gradient(135deg, #FF6A00, #EE0A24);
}

.tianyi-icon {
    background: linear-gradient(135deg, #00C853, #00A859);
}

.xunlei-icon {
    background: linear-gradient(135deg, #0891FF, #0066CC);
}

.direct-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.magnet-icon {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.source-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.source-speed {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 2px 6px;
    background-color: rgba(110, 74, 47, 0.08);
    border-radius: 3px;
    display: inline-block;
}

.source-desc {
    font-size: 12px;
    color: var(--text-light);
}

.vip-badge {
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

.free-badge {
    background-color: #4CAF50;
    color: var(--white);
}

.vip-badge.vip-badge {
    background: linear-gradient(135deg, #FFB300, #FFA000);
    color: var(--white);
}

.vip-gold-badge {
    background: linear-gradient(135deg, #FF6F00, #E65100);
    color: var(--white);
}

.svip-badge {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: var(--white);
}

.source-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.extract-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #E0E0E0;
    min-width: 150px;
}

.extract-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}

.extract-code {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    letter-spacing: 1px;
    user-select: all;
}

.copy-btn {
    padding: 4px 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background-color: var(--accent-color);
}

.download-source-btn {
    padding: 6px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.download-source-btn:hover {
    background-color: var(--accent-color);
}

.vip-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.vip-notice span {
    font-size: 12px;
    color: #E65100;
    font-weight: 500;
    flex: 1;
}

.upgrade-link {
    padding: 4px 12px;
    background: linear-gradient(135deg, #FFB300, #FFA000);
    color: var(--white);
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.upgrade-link:hover {
    opacity: 0.9;
}

.magnet-link-box {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.magnet-input {
    flex: 1;
    padding: 6px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 11px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background-color: #FAFAFA;
    color: var(--text-light);
}


.quick-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.action-btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    color: var(--text-color);
}

.action-btn-icon span:first-child {
    font-size: 14px;
}

.action-btn-icon span:last-child {
    font-size: 12px;
    font-weight: 500;
}

.action-btn-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.02);
}

/* 响应式 - 下载源列表 */
@media (max-width: 768px) {
    .source-header {
        flex-wrap: wrap;
        padding: 8px 12px;
    }

    .source-info {
        flex-wrap: wrap;
        width: 100%;
        order: 3;
        margin-top: 8px;
    }

    .source-details {
        flex-wrap: wrap;
        padding: 10px 12px;
    }

    .extract-code-box {
        width: 100%;
        margin-bottom: 8px;
    }

    .download-source-btn {
        width: 100%;
        justify-content: center;
    }

    .magnet-link-box {
        flex-direction: column;
        width: 100%;
    }

    .magnet-input {
        width: 100%;
    }

    .quick-actions {
        flex-wrap: wrap;
        gap: 6px;
    }

    .action-btn-icon {
        flex: 1;
        min-width: calc(33.333% - 4px);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download-source-item {
        border-radius: 4px;
    }

    .source-header {
        gap: 8px;
        padding: 6px 10px;
    }

    .source-icon {
        padding: 3px 10px;
        font-size: 11px;
    }

    .source-speed,
    .source-desc {
        font-size: 11px;
    }

    .vip-badge {
        padding: 2px 8px;
        font-size: 10px;
    }

    .source-details {
        padding: 8px 10px;
    }

    .extract-label {
        font-size: 11px;
    }

    .extract-code {
        font-size: 13px;
    }

    .copy-btn,
    .download-source-btn {
        font-size: 11px;
        padding: 4px 10px;
    }

    .action-btn-icon {
        min-width: calc(50% - 3px);
        padding: 5px 10px;
        font-size: 11px;
    }

    .action-btn-icon span:first-child {
        font-size: 12px;
    }
}

/* 文章详情页面样式 */
.article-detail {
    background-color: var(--white);
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.article-header {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.article-title {
    font-size: 29px;
    color: var(--text-color);
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.meta-icon {
    font-size: 16px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tag {
    display: inline-block;
    padding: 5px 15px;
    font-size: 13px;
    color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.08);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.article-summary {
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.article-summary strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-content {
    font-size: 16px;
    line-height: 2;
    color: var(--text-color);
}

.article-content h2 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    margin: 35px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    padding-left: 15px;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.article-content h3 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: bold;
    margin: 25px 0 15px 0;
    padding-left: 12px;
    border-left: 3px solid var(--primary-color);
}

.article-content p {
    margin: 0 0 18px 0;
    text-indent: 2em;
    text-align: justify;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content ul li {
    margin: 12px 0;
    line-height: 1.8;
    list-style-type: disc;
}

.article-content ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.article-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.article-footer .article-tags {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.article-link-copy {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.link-copy-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.link-copy-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
}

.link-input {
    flex: 1;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--text-color);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    outline: none;
    transition: all 0.3s ease;
}

.link-input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
}

.link-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.link-copy-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.3);
}

.copy-icon {
    font-size: 16px;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.action-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.2);
}

.action-icon {
    font-size: 18px;
}

.action-text {
    font-weight: 500;
}

.action-count {
    font-size: 13px;
    color: var(--text-light);
}

.article-copyright {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.article-copyright p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.article-copyright strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 相关文章 */
.article-related-section .related-articles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--border-color);
}

.article-related-section .related-article-item {
    display: flex;
    min-width: 0;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-related-section .related-article-item:hover {
    padding-left: 8px;
    background: rgba(122, 81, 43, 0.04);
}

.article-related-section .related-article-thumb {
    display: none;
}

.article-related-section .related-article-info {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.article-related-section .related-article-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.article-related-section .related-article-item:hover .related-article-title {
    color: var(--primary-color);
}

.article-related-section .related-article-meta {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 文章目录 */
.article-toc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-item {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: var(--text-color);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0 5px 5px 0;
}

.toc-item:hover {
    background-color: var(--bg-light);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    padding-left: 20px;
}

.toc-item.toc-sub {
    padding-left: 25px;
    font-size: 13px;
}

.toc-item.toc-sub:hover {
    padding-left: 30px;
}

/* 响应式 - 文章详情页 */
@media (max-width: 768px) {
    .article-detail {
        padding: 20px 15px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-meta {
        gap: 15px;
    }

    .meta-item {
        font-size: 13px;
    }

    .article-content {
        font-size: 15px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 18px;
    }

    .article-actions {
        flex-wrap: wrap;
    }

    .action-button {
        flex: 1;
        min-width: calc(50% - 8px);
        justify-content: center;
    }

    .article-link-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .link-copy-box {
        width: 100%;
    }

    .link-copy-btn {
        flex-shrink: 0;
    }

    .related-articles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-detail {
        padding: 15px;
        margin-bottom: 15px;
    }

    .article-title {
        font-size: 20px;
    }

    .article-content h2 {
        font-size: 18px;
        padding-left: 12px;
    }

    .article-content h3 {
        font-size: 16px;
        padding-left: 10px;
    }

    .article-content p {
        text-indent: 2em;
    }

    .action-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .link-copy-label {
        font-size: 13px;
    }

    .link-input {
        padding: 8px 12px;
        font-size: 13px;
    }

    .link-copy-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .related-article-thumb {
        width: 100px;
        height: 70px;
    }

    .article-related-section .related-article-title {
        font-size: 14px;
    }
}

/* 搜索结果页面样式 */
.search-result-header {
    background-color: var(--white);
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.result-info {
    margin-bottom: 20px;
}

.search-keyword {
    font-size: 28px;
    color: var(--text-color);
    font-weight: bold;
    margin: 0 0 10px 0;
}

.search-keyword .highlight {
    color: var(--primary-color);
}

.result-count {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.result-count strong {
    color: var(--primary-color);
    font-size: 18px;
}

.result-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    background-color: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.sort-link {
    font-size: 14px;
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sort-link:hover {
    color: var(--primary-color);
    background-color: rgba(110, 74, 47, 0.05);
}

.sort-link.active {
    color: var(--white);
    background-color: var(--primary-color);
}

/* 搜索结果列表 */
.search-results-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.result-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.result-thumb {
    position: relative;
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-item:hover .result-thumb img {
    transform: scale(1.1);
}

.result-type-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
}

.video-badge {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.audio-badge {
    background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
}

.article-badge {
    background: linear-gradient(135deg, #A8E6CF, #56AB91);
}

.download-badge {
    background: linear-gradient(135deg, #FFB86C, #FF9A56);
}

.picture-badge {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.result-thumb .play-icon,
.result-thumb .download-icon,
.result-thumb .view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background-color: rgba(110, 74, 47, 0.8);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.result-item:hover .result-thumb .play-icon,
.result-item:hover .result-thumb .download-icon,
.result-item:hover .result-thumb .view-icon {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.15);
}

.result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.result-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.result-title a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.result-item:hover .result-title a {
    color: var(--primary-color);
}

.result-title em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: bold;
    background-color: rgba(110, 74, 47, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.result-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-desc em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: auto;
}

.result-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.result-meta .meta-icon {
    font-size: 14px;
}

/* 相关搜索标签 */
.related-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-tag {
    display: inline-block;
    padding: 6px 15px;
    font-size: 13px;
    color: var(--text-color);
    background-color: var(--bg-light);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.related-tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* 响应式 - 搜索结果页 */
@media (max-width: 768px) {
    .search-result-header {
        padding: 20px 15px;
    }

    .search-keyword {
        font-size: 22px;
    }

    .result-filter {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-tabs {
        width: 100%;
    }

    .filter-tab {
        flex: 1;
        min-width: calc(50% - 5px);
        text-align: center;
    }

    .result-item {
        flex-direction: column;
        padding: 15px;
    }

    .result-thumb {
        width: 100%;
        height: 200px;
    }

    .result-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .search-keyword {
        font-size: 20px;
    }

    .result-count {
        font-size: 14px;
    }

    .filter-tab {
        padding: 6px 12px;
        font-size: 13px;
    }

    .result-title {
        font-size: 16px;
    }

    .result-desc {
        font-size: 13px;
    }

    .result-meta {
        gap: 10px;
    }

    .result-meta .meta-item {
        font-size: 12px;
    }
}

/* 标签云页面样式 */
.tags-cloud-header {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.tags-header-content {
    margin-bottom: 25px;
}

.tags-page-title {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0 0 10px 0;
}

.tags-page-desc {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.tags-page-desc strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
}

/* 标签筛选和排序 */
.tags-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tags-category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-filter-btn {
    padding: 8px 20px;
    background-color: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.tags-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-sort-select {
    padding: 8px 15px;
    font-size: 14px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text-color);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.tags-sort-select:focus {
    border-color: var(--primary-color);
}

/* 标签搜索框 */
.tags-search-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tags-search-input {
    flex: 1;
    padding: 12px 20px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}

.tags-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 74, 47, 0.1);
}

.tags-search-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tags-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.3);
}

/* 标签统计卡片 */
.tags-stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tags-stat-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tags-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.stat-card-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-card-info {
    flex: 1;
}

.stat-card-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-card-label {
    font-size: 14px;
    color: var(--text-light);
}

/* 标签云 */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.tag-cloud-item {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--bg-light);
    color: var(--text-color);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.tag-cloud-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(110, 74, 47, 0.3);
}

/* 标签大小变化 */
.tag-cloud-item.size-xl {
    font-size: 24px;
    padding: 12px 24px;
    font-weight: bold;
}

.tag-cloud-item.size-l {
    font-size: 20px;
    padding: 10px 20px;
    font-weight: 600;
}

.tag-cloud-item.size-m {
    font-size: 16px;
    padding: 9px 18px;
}

.tag-cloud-item.size-s {
    font-size: 14px;
    padding: 8px 16px;
}

.tag-cloud-item.size-xs {
    font-size: 13px;
    padding: 6px 14px;
}

/* 响应式 - 标签云页面 */
@media (max-width: 768px) {
    .tags-cloud-header {
        padding: 20px;
    }

    .tags-page-title {
        font-size: 24px;
    }

    .tags-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .tags-category-filter {
        width: 100%;
    }

    .category-filter-btn {
        flex: 1;
        min-width: calc(50% - 5px);
        text-align: center;
    }

    .tags-search-box {
        flex-direction: column;
    }

    .tags-search-btn {
        width: 100%;
    }

    .tags-stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card-icon {
        font-size: 32px;
        width: 50px;
        height: 50px;
    }

    .stat-card-number {
        font-size: 24px;
    }

    .tag-cloud-item.size-xl {
        font-size: 20px;
        padding: 10px 20px;
    }

    .tag-cloud-item.size-l {
        font-size: 18px;
        padding: 9px 18px;
    }

    .tag-cloud-item.size-m {
        font-size: 15px;
        padding: 8px 16px;
    }

    .tag-cloud-item.size-s {
        font-size: 13px;
        padding: 7px 14px;
    }

    .tag-cloud-item.size-xs {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .tags-page-title {
        font-size: 20px;
    }

    .tags-page-desc {
        font-size: 14px;
    }

    .category-filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .tags-stats-cards {
        grid-template-columns: 1fr;
    }

    .tags-stat-card {
        padding: 20px;
    }

    .tag-cloud-item.size-xl {
        font-size: 18px;
        padding: 9px 18px;
    }

    .tag-cloud-item.size-l {
        font-size: 16px;
        padding: 8px 16px;
    }

    .tag-cloud-item.size-m {
        font-size: 14px;
        padding: 7px 14px;
    }

    .tag-cloud-item.size-s {
        font-size: 13px;
        padding: 6px 12px;
    }

    .tag-cloud-item.size-xs {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ===================================
   侧边栏标题样式 - 全局应用
   =================================== */

/* 侧边栏排行榜标题：禁止换行、超出隐藏 */
.sidebar-widget .rank-item h4,
.sidebar-widget .rank-item h4 a,
.sidebar-widget .widget-list li a,
.sidebar-widget .hot-picture-item h4,
.sidebar-widget .latest-video-item h5,
.sidebar-widget .latest-video-item h5 a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

/* ===================================
   DaheCMS 分页样式 - 匹配red-html原始风格
   =================================== */
.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.dahe-pagination {
    display: block;
}

.dahe-pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dahe-page-link {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background-color: var(--white);
    color: #555;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dahe-page-link:hover {
    color: rgb(140, 90, 52);
    border-color: rgb(140, 90, 52);
    background-color: rgba(110, 74, 47, 0.05);
}

.dahe-page-link.active {
    background-color: rgb(140, 90, 52);
    color: var(--white);
    border-color: rgb(140, 90, 52);
    font-weight: 600;
}

.dahe-page-link.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    background-color: #fafafa;
}

.dahe-page-link.disabled:hover {
    color: #ccc;
    border-color: #e0e0e0;
    background-color: #fafafa;
}

.dahe-page-ellipsis {
    color: var(--text-light);
    padding: 0 5px;
}

.dahe-pagination-info {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
}

/* 内容页分页样式 - 与文章列表分页风格一致 */
.article-detail .pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
}

.article-detail .pagination-btn,
.article-detail .pagination-page {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background-color: var(--white);
    color: #555;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-detail .pagination-btn:not(.disabled):hover,
.article-detail .pagination-page:hover:not(.active) {
    color: rgb(140, 90, 52);
    border-color: rgb(140, 90, 52);
    background-color: rgba(110, 74, 47, 0.05);
}

.article-detail .pagination-page.active {
    background-color: rgb(140, 90, 52);
    color: var(--white);
    border-color: rgb(140, 90, 52);
    font-weight: 600;
}

.article-detail .pagination-btn.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    background-color: #fafafa;
}

.article-detail .pagination-info {
    flex-basis: 100%;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
}

/* 响应式分页 */
@media (max-width: 768px) {
    .dahe-page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .article-detail .pagination-btn,
    .article-detail .pagination-page {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .dahe-pagination-nav {
        gap: 5px;
    }

    .dahe-page-link {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }

    .article-detail .pagination-btn,
    .article-detail .pagination-page {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
}

/* ========================================
   搜索结果页面专用样式优化
   ======================================== */

/* 搜索结果项基础样式 - 朴素版 */
.search-result-item {
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e8e8;
}

.search-result-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #d0d0d0;
}

.search-result-content {
    padding: 0;
}

/* 结果布局 */
.result-layout {
    display: flex;
    gap: 0;
    min-height: 160px;
}

/* 左侧类型标识区域 - 朴素版 */
.result-type-section {
    width: 80px;
    background: #f6eee3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    flex-shrink: 0;
    position: relative;
    border-right: 1px solid #e8e8e8;
}

.result-type-section::after {
    display: none;
}

.result-type-section .result-type-badge {
    color: #999;
    font-size: 12px;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 2px;
    background: none;
    position: static;
    padding: 0;
    border-radius: 0;
}

/* 右侧详情区域 */
.result-details {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

/* 标题行 */
.result-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 5px;
}

.result-title {
    flex: 1;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    min-width: 0;
}

.result-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline;
    word-break: break-word;
}

.search-result-item:hover .result-title a {
    color: #000;
}

/* 关键词高亮 */
.result-title mark,
.result-content-preview mark {
    background: linear-gradient(120deg, rgba(255, 223, 0, 0.3) 0%, rgba(255, 223, 0, 0.6) 100%);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    font-style: normal;
    box-shadow: 0 1px 3px rgba(255, 223, 0, 0.2);
}

/* 相关度徽章 - 朴素版 */
.result-badges {
    flex-shrink: 0;
}

.badge-relevance {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #d8d8d8;
}

/* 内容预览 */
.result-content-preview {
    margin: 8px 0;
}

.result-content-preview p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 信息网格 - 朴素版 */
.result-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    color: var(--text-color);
    font-weight: 600;
}

/* 操作按钮 */
.result-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background: #555;
    color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e8e8e8;
    color: #333;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

/* 无结果页面 */
.no-results-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.no-results {
    background: var(--white);
    border-radius: 5px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    border: 2px dashed rgba(110, 74, 47, 0.2);
}

.empty-state .empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.no-results h3 {
    font-size: 22px;
    color: var(--text-color);
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.no-results p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 15px 0;
}

.no-results ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.no-results ul li {
    color: var(--text-light);
    font-size: 14px;
    padding: 8px 0;
    line-height: 1.6;
}

.back-to-search-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.3);
}

.back-to-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(110, 74, 47, 0.4);
}

/* 面包屑导航优化 */
.breadcrumb-section {
    background: var(--white);
    padding: 15px 0;
}

.breadcrumb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-bar .breadcrumb {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.breadcrumb-bar .breadcrumb-cart-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.breadcrumb-cart-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-light);
    background: #f8f8f8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-cart-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #fff;
}

.breadcrumb-cart-btn .cart-icon {
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--text-light);
    margin: 0 5px;
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* 模块筛选标签优化 */
.module-filter-tabs {
    width: 100%;
}

.module-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-filter-nav li {
    margin: 0;
}

.module-filter-nav li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-filter-nav li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(110, 74, 47, 0.05);
}

.module-filter-nav li.active a {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(110, 74, 47, 0.3);
}

.module-filter-nav .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

.module-filter-nav li.active .count {
    background: rgba(255, 255, 255, 0.3);
}

/* 排序下拉框优化 */
.sort-options-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 35px 8px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-select:hover {
    border-color: var(--primary-color);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(110, 74, 47, 0.1);
}

/* 分页样式优化 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 30px 0;
}

.dahe-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dahe-pagination .pagination {
    margin: 0;
    padding: 0;
}

.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--white);
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(110, 74, 47, 0.05);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(110, 74, 47, 0.3);
}

.page-item.disabled .page-link {
    color: var(--text-light);
    background: var(--bg-light);
    border-color: var(--border-color);
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-info {
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .result-layout {
        flex-direction: column;
    }

    .result-type-section {
        width: 100%;
        height: 40px;
        padding: 10px 20px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .result-type-section::after {
        display: none;
    }

    .result-type-section .result-type-badge {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        letter-spacing: 2px;
    }

    .result-details {
        padding: 20px;
    }

    .module-filter-nav {
        justify-content: center;
    }

    .result-filter {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .search-result-item {
        margin-bottom: 15px;
    }

    .result-title {
        font-size: 17px;
    }

    .result-title-row {
        flex-direction: column;
        gap: 10px;
    }

    .result-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .result-actions {
        justify-content: center;
    }

    .btn-action {
        flex: 1;
        justify-content: center;
        min-width: 100px;
    }

    .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .result-details {
        padding: 15px;
    }

    .result-title {
        font-size: 16px;
    }

    .result-content-preview p {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    .result-info-grid {
        grid-template-columns: 1fr;
    }

    .no-results {
        padding: 30px 20px;
    }

    .empty-state .empty-icon {
        font-size: 48px;
    }
}

/* 热门关键词列表样式 */
.hot-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.hot-keyword-item {
    margin: 0;
}

.hot-keyword-item a {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(110, 74, 47, 0.05);
    color: var(--text-color);
    border: 1px solid rgba(110, 74, 47, 0.2);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hot-keyword-item a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(110, 74, 47, 0.3);
}

/* 热门关键词标签 */
.hot-keywords-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hot-keyword-tag {
    display: inline-block;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    background: var(--bg-light);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hot-keyword-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(110, 74, 47, 0.3);
}

/* 热门关键词热度标识 */
.hot-keyword-tag.hot {
    background: linear-gradient(135deg, #b8895f, #ee5a6f);
    color: var(--white);
    border-color: #b8895f;
    font-weight: 600;
}

.hot-keyword-tag.warm {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: var(--white);
    border-color: #ffa500;
    font-weight: 600;
}

.hot-keyword-tag.normal {
    background: var(--bg-light);
    color: var(--text-color);
    border-color: var(--border-color);
}

.hot-keyword-tag.hot:hover,
.hot-keyword-tag.warm:hover,
.hot-keyword-tag.normal:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(110, 74, 47, 0.4);
}

/* 响应式：小屏幕优化热门关键词 */
@media (max-width: 768px) {
    .hot-keywords-list,
    .hot-keywords-tags {
        gap: 8px;
    }

    .hot-keyword-item a,
    .hot-keyword-tag {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* 产品规格标签组 */
.product-spec-groups {
    margin-top: 12px;
}
.product-spec-groups .spec-group-block {
    margin-bottom: 16px;
}
.product-spec-groups .spec-group-block:last-child {
    margin-bottom: 0;
}
.product-spec-groups .spec-group-title {
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}
.product-spec-groups .spec-group-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.product-spec-groups .spec-tag {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
}
.product-spec-groups .spec-group-empty {
    color: #999;
    font-size: 13px;
}
.product-spec-groups .spec-select-group {
    margin-top: 10px;
}
.product-spec-groups .spec-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.product-spec-groups .spec-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.product-spec-groups .spec-option {
    border: 1px solid #d7dbe2;
    background: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
}
.product-spec-groups .spec-option.active {
    border-color: #e74c3c;
    background: #fdecea;
    color: #e74c3c;
}
.product-spec-groups .spec-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.spec-selection-summary {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}
.cart-page,
.checkout-page,
.order-list-page,
.order-detail-page,
.pay-page {
    padding: 30px 0;
    background: #f9fafb;
}
.cart-page h2,
.checkout-page h2,
.order-list-page h2,
.order-detail-page h2,
.pay-page h2 {
    margin-bottom: 18px;
    color: #1f2937;
    font-size: 22px;
}
.cart-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cart-table,
.order-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.cart-table th,
.cart-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eef0f3;
    font-size: 14px;
    vertical-align: middle;
}
.cart-table thead th {
    background: #f6f7fb;
    color: #4b5563;
    font-weight: 600;
}
.cart-table th:nth-child(3),
.cart-table th:nth-child(4),
.cart-table th:nth-child(5),
.cart-table th:nth-child(6),
.cart-table td:nth-child(3),
.cart-table td:nth-child(4),
.cart-table td:nth-child(5),
.cart-table td:nth-child(6) {
    text-align: center;
    white-space: nowrap;
}
.cart-col-select {
    width: 44px;
    text-align: center;
}
.cart-col-select input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e74c3c;
    cursor: pointer;
}
.cart-table th:nth-child(2),
.cart-table td:nth-child(2) {
    text-align: left;
    width: 44%;
}
.cart-table th:nth-child(3),
.cart-table td:nth-child(3),
.cart-table th:nth-child(4),
.cart-table td:nth-child(4),
.cart-table th:nth-child(5),
.cart-table td:nth-child(5) {
    width: 12%;
}
.cart-table th:nth-child(6),
.cart-table td:nth-child(6) {
    width: 20%;
}
.cart-item-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.cart-item-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    background: #f3f4f6;
}
.cart-item-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.4;
    word-break: break-word;
}
.cart-item-spec {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}
.cart-qty-input {
    width: 80px;
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    text-align: center;
    height: 32px;
}
.cart-table button {
    background: #fef2f2;
    color: #e11d48;
    border: 1px solid #fecdd3;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}
.cart-table button:hover {
    background: #fee2e2;
}
.cart-summary {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    border-radius: 5px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    gap: 12px;
}
.cart-summary > div:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}
.cart-actions {
    display: flex;
    gap: 10px;
}
.cart-actions button {
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
}
.cart-actions button:hover {
    background: #e5e7eb;
}
.cart-actions button:last-child {
    background: linear-gradient(135deg, #e74c3c, #ff6b5a);
    border-color: transparent;
    color: #fff;
}
.cart-actions button:last-child:hover {
    filter: brightness(0.95);
}
.empty-state {
    text-align: center;
    padding: 40px 0;
    color: #6b7280;
}
.address-empty {
    padding: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 5px;
    color: #9a3412;
    font-size: 13px;
}
@media (max-width: 768px) {
    .cart-table thead {
        display: none;
    }
    .cart-table tr {
        display: block;
        border-bottom: 1px solid #eef0f3;
        padding: 10px 0;
    }
    .cart-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 12px;
        border-bottom: none;
    }
    .cart-table td:nth-child(2) {
        display: block;
    }
    .cart-table td.cart-col-select {
        justify-content: flex-start;
    }
    .cart-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .cart-actions {
        width: 100%;
        justify-content: space-between;
    }
    .cart-actions button {
        flex: 1;
    }
}
.order-card {
    background: #fff;
    border-radius: 5px;
    padding: 16px 20px;
    margin-bottom: 16px;
}
.order-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid #f1f3f6;
}
.order-item-thumb {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 5px;
    background: #f3f4f6;
}
.order-item-info {
    flex: 1;
}
.order-item-title {
    font-weight: 600;
    margin-bottom: 4px;
}
.order-item-spec {
    font-size: 12px;
    color: #666;
}
.checkout-section {
    background: #fff;
    border-radius: 5px;
    padding: 18px 20px;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.checkout-section h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #1f2937;
}
.address-list {
    display: grid;
    gap: 10px;
}
.address-item {
    border: 1px solid #fed7aa;
    border-radius: 5px;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff7ed;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.address-item input {
    margin-top: 4px;
}
.address-item > div {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
}
.address-item > div > div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.address-item > div > div:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.address-item:hover {
    border-color: #f3b1a7;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.08);
}
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.payment-method {
    border: 1px solid #e5e7eb;
    padding: 0;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.payment-method input {
    display: none;
}
.payment-method span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 14px;
    color: #374151;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.payment-method:hover {
    border-color: #f3b1a7;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.08);
}
.payment-method input:checked + span {
    background: #fff1ec;
    border-color: #e74c3c;
    color: #e74c3c;
    font-weight: 600;
}
.checkout-page textarea,
.checkout-page input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-page #cardPayFields {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.checkout-page #cardPayFields input[type="text"] {
    flex: 1 1 200px;
    width: auto;
}
.checkout-page #cardPayFields #cardPwd {
    margin-left: 0 !important;
}
.checkout-page textarea:focus,
.checkout-page input[type="text"]:focus {
    border-color: #f3b1a7;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
    outline: none;
}
.checkout-actions button {
    padding: 10px 22px;
    border-radius: 5px;
    border: none;
    background: linear-gradient(135deg, #e74c3c, #ff6b5a);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.25);
    transition: transform 0.15s ease, filter 0.2s ease;
}
.checkout-actions button:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
}
.checkout-actions button:active {
    transform: translateY(0);
}

        body {
            background: #C0B9A6;
        }

        .gudian-shell {
            margin-top: 0;
        }

        .header {
            border: none;
        }

        .dahegudian-topbar {
            position: sticky;
            top: 0;
            z-index: 120;
            background: linear-gradient(180deg, rgba(208, 202, 194, 0.74), rgba(246, 236, 222, 0.7));
            border-bottom: none;
            box-shadow: 0 4px 12px rgba(57, 37, 22, 0.04);
            backdrop-filter: blur(4px);
        }

        .dahegudian-topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            min-height: 40px;
            padding: 0 18px;
        }

        .dahegudian-link-group {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px 18px;
        }

        .dahegudian-topbar,
        .dahegudian-topbar .container,
        .dahegudian-topbar-inner,
        .dahegudian-topbar .dahegudian-link-group {
            overflow: visible;
        }

        .dahegudian-topbar .dahegudian-link-group:last-child {
            margin-left: auto;
            flex: 0 0 auto;
            flex-wrap: nowrap;
            justify-content: flex-end;
            min-width: 0;
        }

        .dahegudian-link-group a {
            display: inline-flex;
            align-items: center;
            min-height: 40px;
            color: #4f3724;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
            white-space: nowrap;
            position: relative;
        }

        .dahegudian-link-group a::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            width: 1px;
            height: 10px;
            transform: translateY(-50%);
            background: rgba(95, 67, 48, 0.16);
        }

        .dahegudian-link-group a:last-child::after {
            display: none;
        }

        .dahegudian-link-group a:hover {
            color: #2f1f13;
        }

        @media (max-width: 1180px) {
            .dahegudian-topbar-inner {
                min-height: auto;
                padding: 6px 14px;
                align-items: flex-start;
                flex-direction: column;
                gap: 0;
            }

            .dahegudian-topbar .dahegudian-link-group:last-child {
                width: 100%;
                justify-content: flex-end;
            }
        }

        .dahegudian-mainbar {
            background: #e9decf;
            border-top: none;
            border-bottom: none;
            position: relative;
            z-index: 3;
        }

        .dahegudian-mainbar-inner {
            display: grid;
            grid-template-columns: 300px minmax(420px, 1fr) 300px;
            align-items: center;
            gap: 22px;
            background: #f7f0e5;
            padding: 16px 0;
        }

        .dahegudian-brand {
            display: flex;
            align-items: center;
            gap: 0;
            min-width: 0;
            width: 100%;
            max-width: 300px;
        }

        .dahegudian-brand-mark {
            width: 180px;
            height: 58px;
            border-radius: 5px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex: 0 0 auto;
            padding: 4px 10px;
        }

        .dahegudian-brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: left center;
        }
        .dahegudian-search-wrap {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
            max-width: 620px;
            justify-self: center;
            align-self: center;
        }

        .dahegudian-search-wrap .search-box {
            box-shadow: 0 10px 26px rgba(78, 55, 35, 0.08);
            width: 100%;
        }

        .dahegudian-userbar {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            width: 100%;
            max-width: 300px;
            justify-self: end;
        }

        .dahegudian-hot-title {
            font-size: 12px;
            color: #7c6148;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .dahegudian-hot-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 12px;
        }

        .dahegudian-hot-row a {
            display: inline-flex;
            align-items: center;
            color: #5b402b;
            font-size: 13px;
            line-height: 1.4;
        }

        .dahegudian-hot-row a::before {
            content: '·';
            color: #ad8660;
            margin-right: 6px;
        }

        .dahegudian-hot-row a:hover {
            color: #7b5a3a;
        }

        @media (max-width: 1180px) {
            .dahegudian-mainbar-inner {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .dahegudian-brand,
            .dahegudian-search-wrap,
            .dahegudian-userbar {
                max-width: none;
                justify-self: stretch;
            }

        }

        .dahegudian-nav-band {
            background: #524236;
            border-top: none;
            border-bottom: none;
            position: relative;
            z-index: 2;
            overflow: visible;
        }

        .dahegudian-nav-band .container {
            padding: 0 14px;
            overflow: visible;
        }

        .dahegudian-nav-band .nav-menu a {
            color: #fff;
            border-right-color: rgba(255,255,255,0.08);
        }

        .dahegudian-nav-band .nav-menu a:hover,
        .dahegudian-nav-band .nav-menu a.active {
            background: #ff6600;
            color: #fff;
        }

        .category-nav {
            background: #dfd2c4;
            border: none;
            position: relative;
            z-index: 1;
        }

        .top-banner .container {
            max-width: none;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .top-banner {
            max-width: none;
            margin: 8px 0 0;
        }

        .banner-ad {
            border: none;
            padding: 0;
            margin: 0;
        }

        .top-banner img {
            border-radius: 0;
        }

        .main-content {
            padding: 12px 0 8px;
        }

        .content-layout {
            gap: 12px;
        }

        .content-section {
            margin-bottom: 12px;
        }

        .main-column .content-section:last-child {
            margin-bottom: 0;
        }

        .sidebar-widget {
            margin-bottom: 12px;
        }

        .letter-index-full {
            margin-top: 12px;
        }

        .latest-article-section {
            margin-top: 8px;
        }

        .letter-index-section {
            margin-top: 12px;
        }

        .friends-links {
            margin-top: 4px;
        }

        .friends-links .letter-index-full {
            margin-top: 0;
        }

        .recommend-tabs-section .section-header {
            justify-content: space-between;
            align-items: flex-start;
            gap: 18px;
            flex-wrap: wrap;
            padding: 14px 16px 12px;
        }

        .dahegudian-tabs-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            flex: 1;
            min-width: 0;
            flex-wrap: wrap;
        }

        .dahegudian-tabs-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 10px;
            margin-left: auto;
            max-width: 100%;
            padding: 0;
            scrollbar-width: none;
        }

        .dahegudian-tabs-nav::-webkit-scrollbar {
            display: none;
        }

        .dahegudian-tab-btn {
            appearance: none;
            border: 1px solid rgba(141, 109, 75, 0.24);
            border-radius: 0;
            background: #f7f1e7;
            color: #5b4d41;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.2;
            cursor: pointer;
            transition: all 0.22s ease;
            white-space: nowrap;
            flex: 0 0 auto;
        }

        .dahegudian-tab-btn:hover {
            background: #efe4d3;
            color: #3e2f23;
            border-color: rgba(123, 90, 58, 0.36);
            transform: translateY(-1px);
        }

        .dahegudian-tab-btn.active {
            background: #9b734c;
            color: #fffaf2;
            border-color: #916844;
        }

        .dahegudian-tab-btn:last-child {
            border-right: 1px solid rgba(141, 109, 75, 0.24);
        }

        @media (max-width: 768px) {
            .recommend-tabs-section .section-header {
                padding: 12px 14px;
            }

            .dahegudian-tabs-header {
                width: 100%;
                gap: 14px;
            }

            .dahegudian-tabs-nav {
                width: 100%;
                justify-content: flex-start;
                margin-left: 0;
            }

            .dahegudian-tab-btn {
                padding: 9px 14px;
                font-size: 13px;
            }
        }

        .dahegudian-tab-panel {
            display: none;
        }

        .dahegudian-tab-panel.active {
            display: block;
        }

        .text-tabs-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            flex: 0 1 auto;
            min-width: 0;
            margin-left: auto;
            flex-wrap: nowrap;
        }

        .text-tabs-actions .dahegudian-tabs-nav {
            flex-wrap: nowrap;
            gap: 8px;
        }

        .text-tabs-actions .dahegudian-tab-btn {
            padding: 8px 14px;
            font-size: 13px;
        }

        .text-tab-panel {
            display: none;
        }

        .text-tab-panel.active {
            display: block;
        }

        @media (max-width: 768px) {
            .text-tabs-actions {
                width: 100%;
                gap: 8px;
                flex-wrap: wrap;
            }

            .text-tabs-actions .dahegudian-tabs-nav {
                flex-wrap: wrap;
            }

            .text-tabs-actions .dahegudian-tab-btn {
                padding: 7px 12px;
                font-size: 12px;
            }
        }

        .article-hero-section {
            margin-bottom: 12px;
        }

        .article-hero-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .article-hero-card {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 16px;
            background: #fffaf1;
            border: 1px solid #d4bea0;
        }

        .article-hero-thumb {
            display: block;
            background: #f0e4cf;
            min-height: 138px;
            overflow: hidden;
        }

        .article-hero-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-hero-info {
            padding: 14px 14px 14px 0;
            min-width: 0;
        }

        .article-hero-info h3 {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .article-hero-info h3 a {
            color: #3a2a21;
        }

        .article-hero-info p {
            color: #6e5b4c;
            font-size: 13px;
            line-height: 1.75;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            color: #8a7664;
            font-size: 12px;
        }

        .article-category-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            align-items: start;
        }

        .article-category-section {
            margin-bottom: 0;
        }

        .article-category-section .title-list-two-columns {
            grid-template-columns: 1fr;
            column-gap: 0;
        }

        .article-category-section .title-item a {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .article-tag-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 12px;
            border-radius: 5px;
            background: #f3e5cd;
            border: 1px solid #d6bc95;
            color: #5a3e29;
            font-size: 13px;
            transition: all 0.25s ease;
        }

        .article-tag-chip:hover {
            background-color: #8a613f;
            color: #fff8ed;
        }

        .article-list-hero .section-header {
            margin-bottom: 14px;
        }

        .article-list-toolbar {
            padding: 14px 16px;
            border: 1px solid #d9c2a0;
            background: #fffaf1;
        }

        .article-list-toolbar-line {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px 12px;
        }

        .article-toolbar-label {
            color: #6d5847;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }

        .article-toolbar-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 56px;
            padding: 8px 14px;
            border: 1px solid #d6bc95;
            background: #f3e5cd;
            color: #5a3e29;
            font-size: 13px;
            line-height: 1;
            transition: all 0.22s ease;
        }

        .article-toolbar-link:hover,
        .article-toolbar-link.active {
            background: #8a613f;
            border-color: #795335;
            color: #fff8ed;
        }

        .article-feed-section .section-header {
            margin-bottom: 16px;
        }

        .article-feed-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .article-feed-item {
            display: grid;
            grid-template-columns: 248px minmax(0, 1fr);
            gap: 18px;
            padding: 16px;
            border: 1px solid #dcc7a7;
            background: #fffaf1;
            transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
        }

        .article-feed-item:hover {
            transform: translateY(-2px);
            border-color: #c6a06d;
            box-shadow: 0 12px 24px rgba(74, 52, 34, 0.10);
        }

        .article-feed-thumb {
            display: block;
            overflow: hidden;
            background: #f0e4cf;
            min-height: 158px;
        }

        .article-feed-thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .article-feed-item:hover .article-feed-thumb img {
            transform: scale(1.04);
        }

        .article-feed-main {
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .article-feed-title {
            margin: 0 0 12px;
            font-size: 22px;
            line-height: 1.45;
        }

        .article-feed-title a {
            color: #3a2a21;
        }

        .article-feed-title a:hover {
            color: #7b5a3a;
        }

        .article-feed-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            margin-bottom: 12px;
            color: #8a7664;
            font-size: 12px;
        }

        .article-feed-meta span {
            white-space: nowrap;
        }

        .article-feed-desc {
            color: #6e5b4c;
            font-size: 14px;
            line-height: 1.9;
            margin: 0 0 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-feed-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .article-feed-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 12px;
            border: 1px solid #d6bc95;
            background: #f3e5cd;
            color: #5a3e29;
            font-size: 12px;
            line-height: 1;
        }

        .article-text-section .section-header,
        .article-pic-section .section-header {
            margin-bottom: 16px;
        }

        .article-text-list {
            counter-reset: article-text-counter;
        }

        .article-text-item {
            display: grid;
            grid-template-columns: 58px minmax(0, 1fr) 180px 96px 96px 112px;
            align-items: center;
            gap: 14px;
            padding: 14px 8px;
            border-bottom: 1px dashed #d8c6ac;
            transition: background 0.22s ease, padding-left 0.22s ease;
        }

        .article-text-item:hover {
            background: linear-gradient(90deg, rgba(123, 90, 58, 0.05) 0%, transparent 100%);
            padding-left: 12px;
        }

        .article-text-num {
            counter-increment: article-text-counter;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid #d6bc95;
            background: #f3e5cd;
            color: #7b5a3a;
            font-size: 14px;
            font-weight: 700;
        }

        .article-text-num::before {
            content: counter(article-text-counter, decimal-leading-zero);
        }

        .article-text-title {
            margin: 0;
            min-width: 0;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
        }

        .article-text-title a {
            display: block;
            color: #3a2a21;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-text-title a:hover {
            color: #7b5a3a;
        }

        .article-text-meta,
        .article-text-comments,
        .article-text-views,
        .article-text-date {
            color: #8a7664;
            font-size: 13px;
            white-space: nowrap;
        }

        .article-text-meta,
        .article-text-date {
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-text-comments,
        .article-text-views {
            text-align: center;
        }

        .article-text-date {
            text-align: right;
        }

        .article-detail-page {
            background:
                linear-gradient(180deg, rgba(255,253,248,0.98) 0%, rgba(246,236,217,0.96) 100%);
            margin-bottom: 12px;
            padding: 18px;
            border-radius: 0;
            border: 0;
            box-shadow: var(--shadow);
        }

.article-detail-breadcrumb-section {
    background: transparent;
    padding: 8px 0 4px;
    border-bottom: 0;
    position: relative;
    z-index: 1;
}

        .article-detail-breadcrumb {
            background: #e9decf;
            padding: 12px 18px;
            border: 1px solid #d4bea0;
            color: #6a5748;
            line-height: 1.7;
            box-shadow: var(--shadow);
        }

        .article-detail-breadcrumb a {
            color: #5f4330;
        }

        .article-detail-breadcrumb a:hover {
            color: #7b5a3a;
        }

        .article-detail-breadcrumb .separator {
            margin: 0 10px;
            color: #8a7664;
        }

        .article-detail-breadcrumb .current {
            color: #4a3222;
        }

        .article-detail-head {
            padding-bottom: 18px;
            margin-bottom: 20px;
            border-bottom: 1px solid #d8c6ac;
        }

        .article-detail-head-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 14px;
        }

        .article-detail-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 12px;
            border: 1px solid #d6bc95;
            background: #f3e5cd;
            color: #5a3e29;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .article-detail-return {
            color: #5f4330;
            font-size: 13px;
        }

        .article-title {
            font-size: 34px;
            color: #2f2119;
            font-weight: 700;
            margin: 0 0 16px;
            line-height: 1.45;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin-bottom: 0;
            color: #8a7664;
        }

        .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 0;
            font-size: 13px;
            color: #8a7664;
        }

        .meta-item a {
            color: #7b5a3a;
        }

        .meta-icon {
            display: none;
        }

        .article-summary {
            padding: 16px 18px;
            background: #f4f1ea;
            border: 1px solid #dcc7a7;
            border-radius: 5px;
            margin-bottom: 22px;
            font-size: 14px;
            line-height: 1.9;
            color: #5c4a3d;
        }

        .article-summary strong {
            display: block;
            margin-bottom: 6px;
            color: #6b4428;
            font-size: 14px;
            font-weight: 700;
        }

        .article-summary p {
            margin: 0;
        }

        .article-content {
            padding: 18px 20px;
            background: #fdfaf6;
            border: 1px solid #e8dfd2;
            border-radius: 5px;
            font-size: 16px;
            line-height: 2;
            color: #3f3128;
        }

        .article-content h2 {
            font-size: 24px;
            color: #3d281a;
            font-weight: 700;
            margin: 34px 0 18px;
            padding: 10px 14px 9px 18px;
            border: 1px solid #c8a87a;
            background: linear-gradient(180deg, #d6b687 0%, #bd9565 100%);
            position: relative;
        }

        .article-content h2::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 18px;
            background-color: #6f4b31;
            border-radius: 0;
        }

        .article-content h3 {
            font-size: 20px;
            color: #3a2a21;
            font-weight: 700;
            margin: 24px 0 14px;
            padding-left: 12px;
            border-left: 3px solid #8a613f;
        }

        .article-content p {
            margin: 0 0 18px;
            text-indent: 2em;
            text-align: justify;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
        }

        .article-content blockquote {
            margin: 20px 0;
            padding: 16px 18px;
            border-left: 4px solid #c5a073;
            background: #fbf4e8;
            color: #5d4b3d;
        }

        .article-footer {
            margin-top: 34px;
            padding-top: 24px;
            border-top: 1px solid #d8c6ac;
        }

        .article-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .action-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 112px;
            padding: 10px 18px;
            background: #f3e5cd;
            border: 1px solid #d6bc95;
            border-radius: 0;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.22s ease;
            color: #5a3e29;
        }

        .action-button:hover {
            background: #8a613f;
            border-color: #795335;
            color: #fff8ed;
            transform: translateY(-1px);
            box-shadow: none;
        }

        .action-icon {
            display: none;
        }

        .action-count {
            font-size: 12px;
            color: inherit;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
            padding-top: 18px;
            border-top: 1px solid #d8c6ac;
        }

        .article-tags-label {
            display: inline-flex;
            align-items: center;
            color: #5b4d41;
            font-size: 13px;
            font-weight: 700;
            margin-right: 4px;
        }

        .article-link-copy {
            margin-bottom: 18px;
            padding-top: 18px;
            border-top: 1px solid #d8c6ac;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .link-copy-label {
            font-size: 13px;
            font-weight: 700;
            color: #5b4d41;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .link-copy-box {
            display: flex;
            gap: 10px;
            align-items: center;
            flex: 1;
            min-width: 0;
        }

        .link-input {
            flex: 1;
            min-width: 0;
            padding: 10px 12px;
            font-size: 13px;
            color: #5a4b3f;
            background: #fffaf1;
            border: 1px solid #d6bc95;
            border-radius: 0;
            font-family: Consolas, Monaco, "Courier New", monospace;
            outline: none;
        }

        .link-input:focus {
            border-color: #8a613f;
            background-color: #fff;
        }

        .link-copy-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 16px;
            background: #8a613f;
            color: #fff8ed;
            border: 1px solid #795335;
            border-radius: 0;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.22s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .link-copy-btn:hover {
            background: #6d4a30;
            box-shadow: none;
            transform: translateY(-1px);
        }

        .copy-icon {
            display: none;
        }

        .article-copyright {
            padding: 16px 18px;
            background: #fffaf1;
            border: 1px solid #dcc7a7;
            border-radius: 0;
        }

        .article-copyright p {
            margin: 0;
            font-size: 13px;
            line-height: 1.8;
            color: #5d4b3d;
        }

        .article-copyright strong {
            color: #6b4428;
            font-weight: 700;
        }

        .article-related-section .section-header {
            margin-bottom: 16px;
        }

        .related-articles {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .related-article-item {
            display: grid;
            grid-template-columns: 120px minmax(0, 1fr);
            gap: 14px;
            padding: 14px;
            border: 1px solid #dcc7a7;
            border-radius: 0;
            transition: all 0.22s ease;
            background: #fffaf1;
        }

        .related-article-item:hover {
            box-shadow: 0 10px 20px rgba(74, 52, 34, 0.10);
            transform: translateY(-2px);
            border-color: #c6a06d;
        }

        .related-article-thumb {
            width: 120px;
            height: 84px;
            flex-shrink: 0;
            border-radius: 0;
            overflow: hidden;
            background: #f0e4cf;
        }

        .related-article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .related-article-item:hover .related-article-thumb img {
            transform: scale(1.05);
        }

        .related-article-info {
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }

        .related-article-title {
            font-size: 15px;
            font-weight: 500;
            color: #3a2a21;
            margin: 0;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-article-item:hover .related-article-title {
            color: #7b5a3a;
        }

        .related-article-meta {
            font-size: 12px;
            color: #8a7664;
        }

        .article-toc {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .toc-item {
            display: block;
            padding: 8px 12px;
            font-size: 13px;
            line-height: 1.6;
            color: #4a3222;
            border-left: 3px solid transparent;
            transition: all 0.22s ease;
            border-radius: 0;
            background: rgba(255,250,241,0.65);
        }

        .toc-item:hover {
            background-color: #f6ecda;
            border-left-color: #8a613f;
            color: #7b5a3a;
            padding-left: 16px;
        }

        .toc-h3,
        .toc-h4,
        .toc-h5,
        .toc-h6 {
            margin-left: 12px;
            font-size: 12px;
        }

        @media (max-width: 1400px) {
            .article-category-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .related-articles {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1200px) {
            .article-hero-grid,
            .article-category-grid {
                grid-template-columns: 1fr;
            }

            .article-text-item {
                grid-template-columns: 52px minmax(0, 1fr) 150px 80px 80px 100px;
                gap: 12px;
            }

            .article-feed-item {
                grid-template-columns: 220px minmax(0, 1fr);
            }
        }

        @media (max-width: 768px) {
            .article-hero-card {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .article-hero-info {
                padding: 14px;
            }

            .article-list-toolbar {
                padding: 12px 14px;
            }

            .article-toolbar-link {
                min-width: 0;
                padding: 7px 12px;
            }

            .article-detail-page {
                padding: 14px;
            }

            .article-detail-breadcrumb {
                padding: 10px 14px;
            }

            .article-detail-head-bar {
                flex-wrap: wrap;
            }

            .article-title {
                font-size: 24px;
            }

            .article-content {
                padding: 14px;
                font-size: 15px;
            }

            .article-content h2 {
                font-size: 19px;
                padding: 10px 12px 9px 16px;
            }

            .article-content h3 {
                font-size: 17px;
            }

            .article-actions {
                gap: 10px;
            }

            .action-button {
                flex: 1 1 calc(50% - 5px);
                min-width: 0;
            }

            .article-link-copy {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .link-copy-box {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .article-related-section .related-article-item {
                grid-template-columns: 1fr;
            }

            .related-article-thumb {
                width: 100%;
                height: auto;
                aspect-ratio: 16 / 9;
            }

            .article-text-item {
                grid-template-columns: 42px minmax(0, 1fr);
                gap: 10px 12px;
                padding: 12px 0;
            }

            .article-text-num {
                width: 34px;
                height: 34px;
                font-size: 12px;
            }

            .article-text-title {
                font-size: 15px;
            }

            .article-text-meta,
            .article-text-comments,
            .article-text-views,
            .article-text-date {
                grid-column: 2;
                font-size: 12px;
                text-align: left;
            }

            .article-feed-item {
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 14px;
            }

            .article-feed-thumb {
                min-height: 0;
                aspect-ratio: 16 / 9;
            }

            .article-feed-title {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .article-feed-desc {
                font-size: 13px;
                line-height: 1.8;
            }
        }

        @media (max-width: 480px) {
            .article-title {
                font-size: 20px;
            }

            .action-button {
                flex-basis: 100%;
            }

            .article-feed-meta {
                gap: 6px 12px;
            }

            .article-feed-meta span {
                white-space: normal;
            }
        }

/* 归档页面 */
.archive-index-section .section-header,
.archive-list-section .section-header,
.archive-home-section .section-header {
    margin-bottom: 16px;
}

.archive-month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.archive-month-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 76px;
    padding: 15px 16px;
    border: 1px solid #dcc7a7;
    background: #fffaf1;
    color: #3a2a21;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.archive-month-card:hover {
    transform: translateY(-2px);
    border-color: #c6a06d;
    box-shadow: 0 10px 20px rgba(74, 52, 34, 0.10);
}

.archive-month-label {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.archive-month-count {
    flex-shrink: 0;
    padding: 6px 10px;
    border: 1px solid #d6bc95;
    background: #f3e5cd;
    color: #5a3e29;
    font-size: 12px;
    line-height: 1;
}

.archive-feed-item {
    grid-template-columns: 112px minmax(0, 1fr);
}

.archive-feed-date {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    border: 1px solid #d6bc95;
    background: #f3e5cd;
    color: #5a3e29;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.archive-feed-date span {
    display: block;
    line-height: 1.5;
}

.archive-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.archive-home-card {
    padding: 16px;
    border: 1px solid #dcc7a7;
    background: #fffaf1;
}

.archive-home-card h2 {
    margin: 0 0 12px;
    color: #3a2a21;
    font-size: 18px;
    line-height: 1.5;
}

.archive-home-card h2 span {
    color: #8a7664;
    font-size: 13px;
    font-weight: 400;
}

.archive-home-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.archive-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border: 1px solid #d6bc95;
    background: #f3e5cd;
    color: #5a3e29;
    font-size: 13px;
    line-height: 1;
    transition: all 0.22s ease;
}

.archive-category-link:hover {
    background: #8a613f;
    border-color: #795335;
    color: #fff8ed;
}

.archive-sidebar-months {
    gap: 7px;
}

.archive-stats-list {
    grid-template-columns: 1fr;
}

.archive-stats-list li {
    min-width: 0;
}

.archive-stats-list li a {
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {
    .archive-month-grid,
    .archive-home-grid {
        grid-template-columns: 1fr;
    }

    .archive-feed-item {
        grid-template-columns: 1fr;
    }

    .archive-feed-date {
        justify-content: flex-start;
        min-height: 0;
        padding: 10px 12px;
    }
}

/* 通用广告位直角样式 */
.ad-container,
.ad-box,
.ad-side,
.banner-ad,
.top-banner,
.body-top-banner,
.top-banner .container,
.body-top-banner .container {
    border-radius: 0 !important;
    overflow: hidden;
}

.ad-container a,
.ad-box a,
.ad-side a,
.banner-ad a,
.top-banner a,
.body-top-banner a,
.ad-container img,
.ad-box img,
.ad-side img,
.banner-ad img,
.top-banner img,
.body-top-banner img {
    border-radius: 0 !important;
    display: block;
}

/* 文章详情相关文章：纯文字双列精简模式 */
.article-related-section .related-articles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--border-color);
}

.article-related-section .related-article-item,
.article-related-section .related-article-item:hover {
    display: flex;
    min-width: 0;
    padding: 9px 12px;
    border: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    transform: none;
    background: transparent;
}

.article-related-section .related-article-item:hover {
    background: rgba(122, 81, 43, 0.04);
}

.article-related-section .related-article-thumb {
    display: none;
}

.article-related-section .related-article-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
}

.article-related-section .related-article-title,
.article-related-section .related-article-meta {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 中医文章详情页：古典内容页版式 */
.gudian-shell {
    --tcm-paper: #f5ecd9;
    --tcm-paper-light: #fff8e9;
    --tcm-ink: #24180f;
    --tcm-soft: #594631;
    --tcm-muted: #7a684f;
    --tcm-line: rgba(77, 47, 22, 0.22);
    --tcm-line-deep: rgba(77, 47, 22, 0.38);
    --tcm-red: #9b2f25;
    --tcm-jade: #1f5f53;
    --tcm-gold: #b0843d;
}

.tcm-detail-shell {
    margin-top: 0;
}

.tcm-article-detail {
    color: var(--tcm-ink);
    font-family: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "STSong", Georgia, serif;
    background:
        radial-gradient(circle at 10% 6%, rgba(176, 132, 61, 0.18), transparent 26rem),
        radial-gradient(circle at 86% 18%, rgba(31, 95, 83, 0.12), transparent 27rem),
        linear-gradient(90deg, rgba(36, 24, 15, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(36, 24, 15, 0.028) 1px, transparent 1px),
        var(--tcm-paper);
    background-size: auto, auto, 36px 36px, 36px 36px, auto;
    padding-top: 0;
}

.tcm-classic-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--tcm-line);
    background: rgba(245, 236, 217, 0.92);
    backdrop-filter: blur(16px);
}

.tcm-classic-topbar-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.tcm-classic-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--tcm-ink);
}

.tcm-classic-seal {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff7eb;
    background: var(--tcm-red);
    border: 2px solid rgba(255, 247, 235, 0.8);
    box-shadow: inset 0 0 0 2px rgba(72, 18, 12, 0.32);
    font-weight: 800;
    line-height: 1;
}

.tcm-classic-brand strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.tcm-classic-brand small {
    display: block;
    margin-top: 2px;
    color: var(--tcm-muted);
    font-size: 13px;
    white-space: nowrap;
}

.tcm-classic-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #55432b;
    font-size: 15px;
    white-space: nowrap;
}

.tcm-classic-nav a {
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}

.tcm-classic-nav a:hover {
    color: var(--tcm-red);
    border-color: rgba(155, 47, 37, 0.42);
}

.tcm-article-detail .container {
    max-width: 1480px;
    padding-top: 34px;
}

.tcm-article-hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--tcm-line-deep);
    background:
        linear-gradient(90deg, rgba(255, 248, 233, 0.98), rgba(255, 248, 233, 0.9) 54%, rgba(255, 248, 233, 0.5)),
        radial-gradient(circle at 88% 24%, rgba(31, 95, 83, 0.18), transparent 18rem),
        linear-gradient(135deg, #fff6e2, #dfc393);
}

.tcm-article-hero::before {
    content: "";
    position: absolute;
    inset: 16px;
    pointer-events: none;
    border: 1px solid rgba(77, 47, 22, 0.16);
}

.tcm-article-hero-inner {
    position: relative;
    max-width: 1480px;
    margin: 0 auto;
    padding: clamp(34px, 4vw, 52px) clamp(24px, 5vw, 58px);
}

.tcm-article-hero-inner > div {
    max-width: 980px;
}

.tcm-article-eyebrow {
    width: fit-content;
    margin: 0 0 18px;
    padding: 6px 12px;
    color: var(--tcm-red);
    border-top: 1px solid rgba(155, 47, 37, 0.38);
    border-bottom: 1px solid rgba(155, 47, 37, 0.38);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.tcm-article-hero-title {
    max-width: 860px;
    margin: 0;
    color: var(--tcm-ink);
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.tcm-article-hero-desc {
    max-width: 900px;
    margin: 18px 0 0;
    color: var(--tcm-soft);
    font-size: 17px;
    line-height: 1.85;
}

.tcm-article-hero-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tcm-article-hero-chip {
    padding: 6px 10px;
    border: 1px solid rgba(77, 47, 22, 0.2);
    color: #42321f;
    background: rgba(255, 248, 233, 0.58);
    line-height: 1.5;
}

.tcm-article-detail .content-layout {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.tcm-article-detail .main-column {
    order: 2;
    width: auto;
    min-width: 0;
}

.tcm-article-detail .sidebar {
    order: 1;
    width: auto;
    display: grid;
    gap: 18px;
}

.tcm-article-detail .sidebar-widget {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tcm-line-deep);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 248, 233, 0.78), rgba(234, 210, 170, 0.36)),
        repeating-linear-gradient(90deg, rgba(77, 47, 22, 0.035), rgba(77, 47, 22, 0.035) 1px, transparent 1px, transparent 22px);
    box-shadow: 0 16px 40px rgba(39, 24, 9, 0.1);
    padding: 22px;
}

.tcm-article-detail .sidebar-widget::before,
.tcm-article-detail .article-detail-page::before {
    content: "";
    position: absolute;
    inset: 12px;
    pointer-events: none;
    border: 1px solid rgba(77, 47, 22, 0.13);
}

.tcm-article-detail .widget-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    padding: 11px 14px;
    color: var(--tcm-red);
    border: 1px solid rgba(77, 47, 22, 0.14);
    background: linear-gradient(90deg, rgba(176, 132, 61, 0.32), rgba(176, 132, 61, 0.14));
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
}

.tcm-article-detail .widget-title::before {
    content: "";
    position: static;
    inset: auto;
    transform: none;
    width: 26px;
    height: 3px;
    flex: 0 0 auto;
    border: 0;
    pointer-events: auto;
    background: var(--tcm-red);
    box-shadow: 0 1px 0 rgba(255, 248, 233, 0.65);
}

.tcm-entry-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tcm-entry-list li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(77, 47, 22, 0.12);
    color: var(--tcm-soft);
    line-height: 1.65;
}

.tcm-entry-list li:last-child {
    border-bottom: 0;
}

.tcm-entry-list b {
    color: var(--tcm-red);
    font-size: 14px;
}

.tcm-side-desc {
    position: relative;
    margin: 14px 0 0;
    color: var(--tcm-muted);
    font-size: 14px;
    line-height: 1.78;
}

.tcm-article-detail .sticky-widget {
    position: sticky;
    top: 86px;
}

.tcm-article-detail .article-toc a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    color: #55432b;
    line-height: 1.45;
}

.tcm-article-detail .article-toc a::before {
    content: "";
    width: 16px;
    height: 1px;
    flex: 0 0 auto;
    background: var(--tcm-gold);
}

.tcm-article-detail .article-detail-page {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tcm-line-deep);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 248, 233, 0.9), rgba(255, 248, 233, 0.68)),
        repeating-linear-gradient(90deg, rgba(77, 47, 22, 0.032), rgba(77, 47, 22, 0.032) 1px, transparent 1px, transparent 24px);
    box-shadow: 0 24px 70px rgba(39, 24, 9, 0.17);
    padding: clamp(28px, 5vw, 58px);
}

.tcm-article-detail .article-summary {
    position: relative;
    margin: 0 0 28px;
    padding: 18px 22px;
    border-left: 4px solid var(--tcm-red);
    background: rgba(155, 47, 37, 0.07);
}

.tcm-article-detail .article-content {
    position: relative;
    color: var(--tcm-soft);
    font-size: 17px;
    line-height: 2;
}

.tcm-article-detail .article-content h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 34px 0 16px;
    padding: 12px 18px;
    color: var(--tcm-ink);
    font-size: 24px;
    line-height: 1.45;
    font-weight: 900;
    border: 1px solid rgba(77, 47, 22, 0.12);
    background: linear-gradient(90deg, rgba(176, 132, 61, 0.34), rgba(176, 132, 61, 0.18));
}

.tcm-article-detail .article-content h2::before {
    content: "";
    position: static;
    inset: auto;
    transform: none;
    width: 32px;
    height: 3px;
    flex: 0 0 auto;
    border: 0;
    background: var(--tcm-red);
    box-shadow: 0 1px 0 rgba(255, 248, 233, 0.65);
}

.tcm-article-detail .article-content p {
    margin: 0 0 14px;
    color: var(--tcm-soft);
    font-size: 17px;
    line-height: 2;
}

.tcm-article-detail .article-gallery-section {
    position: relative;
    margin: 0 0 32px;
    padding: 18px;
    border: 1px solid var(--tcm-line-deep);
    border-radius: 8px;
    background: rgba(234, 210, 170, 0.22);
}

.tcm-article-detail .article-footer {
    position: relative;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--tcm-line-deep);
}

.tcm-article-detail .article-related-section {
    margin-top: 24px;
    border: 1px solid var(--tcm-line-deep);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(31, 95, 83, 0.08), rgba(176, 132, 61, 0.1), rgba(155, 47, 37, 0.06)),
        rgba(255, 248, 233, 0.68);
    box-shadow: 0 16px 40px rgba(39, 24, 9, 0.08);
}

.tcm-detail-shell .tcm-footer {
    margin-top: 38px;
    padding: 0 0 34px;
    color: var(--tcm-soft);
    font-family: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "STSong", Georgia, serif;
}

.tcm-detail-shell .tcm-footer .container {
    max-width: 1480px;
    padding: 0 ;
}

.tcm-detail-shell .tcm-footer-board {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--tcm-line-deep);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(36, 24, 15, 0.05), transparent 18%, rgba(155, 47, 37, 0.06) 64%, rgba(31, 95, 83, 0.08)),
        linear-gradient(180deg, rgba(255, 248, 233, 0.9), rgba(229, 204, 162, 0.7));
    box-shadow: 0 18px 46px rgba(39, 24, 9, 0.12);
    padding: 28px 34px 22px;
}

.tcm-detail-shell .tcm-footer-board::before {
    content: "";
    position: absolute;
    inset: 12px;
    pointer-events: none;
    border: 1px solid rgba(77, 47, 22, 0.13);
}

.tcm-detail-shell .tcm-footer .footer-topline {
    position: relative;
    z-index: 1;
    justify-content: center;
    margin: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--tcm-line);
    text-align: center;
}

.tcm-detail-shell .tcm-footer .footer-brand {
    max-width: 860px;
    margin: 0 auto;
}

.tcm-detail-shell .tcm-footer .footer-eyebrow {
    margin-bottom: 8px;
    color: var(--tcm-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.28em;
}

.tcm-detail-shell .tcm-footer .footer-title {
    color: var(--tcm-ink);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
}

.tcm-detail-shell .tcm-footer .footer-desc {
    max-width: 720px;
    margin: 10px auto 0;
    color: var(--tcm-soft);
    font-size: 15px;
    line-height: 1.9;
}

.tcm-detail-shell .tcm-footer-bottom {
    position: relative;
    z-index: 1;
    justify-content: center;
    padding-top: 16px;
    border-top: 0;
    text-align: center;
}

.tcm-detail-shell .tcm-footer .copyright {
    text-align: center;
}

.tcm-detail-shell .tcm-footer .copyright p {
    margin: 0;
    color: #6d563e;
    font-size: 13px;
    line-height: 1.8;
}

.tcm-detail-shell .tcm-footer .copyright p + p {
    color: var(--tcm-muted);
}

@media (max-width: 980px) {
    .tcm-article-detail .content-layout {
        grid-template-columns: 1fr;
    }

    .tcm-article-detail .main-column,
    .tcm-article-detail .sidebar {
        order: initial;
    }

    .tcm-article-detail .sidebar {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
    }

    .tcm-article-detail .sticky-widget {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    .tcm-classic-topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .tcm-classic-nav {
        width: 100%;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .tcm-article-hero-desc {
        margin-right: 0;
        font-size: 16px;
    }

    .tcm-article-detail .sidebar {
        grid-template-columns: 1fr;
    }

}
