/* ============================================================
 * 环球奇观 Wonder Vision - 央视红色主题样式
 * ============================================================ */

/* ========== CSS 变量 ========== */
:root {
    --color-primary: #dc2626;
    --color-primary-dark: #b91c1c;
    --color-primary-light: #ef4444;
    --color-gold: #fbbf24;
    --color-gold-dark: #d97706;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-border: #e5e7eb;
    --color-footer: #1a1a1a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --container-width: 1200px;
    --header-height: 56px;
    --transition: all 0.3s ease;
}

/* ========== 基础重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ========== 通用容器 ========== */
.wv-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Header 顶部导航 ========== */
.wv-header {
    background: #ffffff;
}

.wv-header-top {
    padding: 12px 0;
}

.wv-header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wv-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wv-header-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.wv-nav {
    display: flex;
    align-items: center;
}

.wv-nav-item {
    padding: 12px 24px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.wv-nav-item:hover {
    color: #d41418;
}

.wv-nav-active {
    color: #d41418 !important;
    font-weight: 700;
}

.wv-header-bottom {
    height: 4px;
    background: #d41418;
}

/* ========== Banner 区域 ========== */
.wv-banner {
    background: linear-gradient(180deg, #c21807 0%, #8b0000 50%, #5a0000 100%);
    position: relative;
    min-height: 320px;
    overflow: hidden;
    display: flex;
}

.wv-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.wv-banner-stars {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.wv-banner-star-center {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    border-radius: 50%;
}

.wv-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    flex: 1;
}

.wv-banner-top {
    margin-bottom: 20px;
}

.wv-banner-tag {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.wv-banner-main {
    text-align: center;
}

.wv-banner-title,
.wv-banner-subtitle {
    color: var(--color-gold);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-family: "STKaiti", "KaiTi", serif;
}

.wv-banner-subtitle {
    font-size: 52px;
}

.wv-banner-footer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.wv-banner-footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
}

.wv-banner-links {
    display: flex;
    gap: 20px;
}

.wv-banner-links span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.wv-banner-links span:last-child {
    border-right: none;
}

.wv-banner-right {
    width: 220px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.wv-banner-video {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 20px 10px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.wv-video-play {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    padding-left: 5px;
}

.wv-banner-news {
    background: var(--color-primary);
    color: #ffffff;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 20px 20px;
    border-radius: 4px;
}

/* ========== 通用 Section ========== */
.wv-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
}

.wv-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: url('/static/img/index_fl_title.png') no-repeat center center;
    background-size: 100% 100%;
}

.wv-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #d41418;
    padding-left: 40px;
}

.wv-section-icon {
    font-size: 16px;
}

.wv-section-en {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-light);
    margin-left: 8px;
}

.wv-section-more {
    font-size: 13px;
    color: var(--color-text-light);
}

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

.wv-friend-link-section {
    padding-bottom: 10px;
}

.wv-friend-link-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.wv-friend-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.wv-friend-link-img {
    width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.wv-friend-link-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wv-friend-link-img span {
    font-size: 14px;
    color: var(--color-text);
}

.wv-friend-link-item p {
    font-size: 13px;
    color: var(--color-text);
    margin: 0;
}

/* ========== 频道公告 ========== */
.wv-announcement {
    display: flex;
    gap: 60px;
}

.wv-announcement-left,
.wv-announcement-right {
    flex: 1;
}

.wv-announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--color-text);
    border-bottom: 1px dashed var(--color-border);
}

.wv-announcement-item:last-child {
    border-bottom: none;
}

.wv-announcement-item:hover {
    color: var(--color-primary);
}

.wv-announcement-dot {
    color: var(--color-primary);
    font-size: 10px;
    flex-shrink: 0;
}

/* ========== 频道栏目 ========== */
.wv-channel-header {
    align-items: center;
    gap: 24px;
}

.wv-channel-header .wv-section-title {
    flex-shrink: 0;
}

.wv-channel-tabs {
    display: flex;
    gap: 0;
}

.wv-channel-tab {
    padding: 6px 18px;
    font-size: 14px;
    color: var(--color-text-light);
    white-space: nowrap;
    border-radius: 2px 2px 0 0;
}

.wv-tab-active {
    background: var(--color-primary);
    color: #ffffff;
}

.wv-channel-header .wv-section-more {
    margin-left: auto;
    flex-shrink: 0;
}

.wv-channel-content {
    display: flex;
    gap: 24px;
}

.wv-channel-image {
    width: 360px;
    height: 240px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wv-channel-image-text {
    text-align: center;
    color: #ffffff;
}

.wv-channel-image-text span {
    display: block;
    margin-bottom: 8px;
}

.wv-channel-image-text span:first-child {
    font-size: 20px;
    font-weight: 700;
}

.wv-channel-image-text span:nth-child(2) {
    font-size: 32px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wv-channel-image-text span:last-child {
    font-size: 14px;
    opacity: 0.9;
}

.wv-channel-info {
    flex: 1;
}

.wv-channel-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.wv-channel-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    text-indent: 2em;
    margin-bottom: 20px;
}

.wv-channel-gallery {
    display: flex;
    gap: 16px;
}

.wv-gallery-item {
    flex: 1;
    height: 100px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

/* ========== 频道合作 ========== */
.wv-cooperation {
    display: flex;
    gap: 12px;
}

.wv-cooperation-item {
    flex: 1;
    height: 160px;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.wv-cooperation-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.wv-cooperation-title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

/* ========== 精彩专题 ========== */
.wv-special {
    display: flex;
    gap: 24px;
}

.wv-special-item {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.wv-special-image {
    width: 200px;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.wv-special-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.95);
}

.wv-special-logo > span:first-child {
    font-size: 22px;
}

.wv-special-logo div p {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.wv-special-logo div p:last-child {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
}

.wv-special-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wv-special-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.wv-special-subtitle {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.wv-special-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.wv-special-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
    padding: 2px 0;
}

.wv-tag-hot {
    font-size: 10px;
    padding: 1px 5px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 2px;
    font-weight: 600;
    flex-shrink: 0;
}

.wv-special-tag:hover {
    color: var(--color-primary);
}

/* ========== 影像中国 ========== */
.wv-image-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.wv-image-tab {
    padding: 8px 20px;
    font-size: 14px;
    color: var(--color-text-light);
    background: #f5f5f5;
    border-radius: 4px;
}

.wv-image-tab-active {
    background: var(--color-primary);
    color: #ffffff;
}

.wv-image-content {
    display: flex;
    gap: 16px;
}

.wv-image-item {
    flex: 1;
    height: 200px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wv-image-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.wv-image-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.wv-image-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.wv-image-title {
    display: block;
    font-size: 32px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-family: "STKaiti", "KaiTi", serif;
}

/* ========== 频道栏目页 - Banner ========== */
.wv-channel-banner {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #1f2937;
}

.wv-channel-banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.wv-channel-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: grayscale(80%);
}

.wv-banner-active {
    opacity: 1;
}

.wv-channel-banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.wv-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.wv-banner-dot.wv-dot-active {
    width: 24px;
    border-radius: 4px;
    background: #ffffff;
}

/* ========== 频道栏目页 - 主内容 ========== */
.wv-channel-main {
    padding: 30px 0 50px;
}

.wv-channel-inner {
    display: flex;
    gap: 30px;
}

.wv-channel-sidebar {
    width: 200px;
    flex-shrink: 0;
    background: #f0f0f0;
}

.wv-sidebar-title {
    background: linear-gradient(90deg, var(--color-primary) 0%, #ef4444 100%);
    color: #ffffff;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.wv-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
}

.wv-sidebar-menu {
    list-style: none;
}

.wv-sidebar-item {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    color: var(--color-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.wv-sidebar-item:hover {
    background: rgba(220, 38, 38, 0.08);
    color: var(--color-primary);
    padding-left: 24px;
}

.wv-sidebar-active {
    background: #ffffff;
    color: var(--color-primary) !important;
    font-weight: 600;
    border-left: 3px solid var(--color-primary);
}

.wv-channel-panel {
    display: none;
}

.wv-channel-panel-active {
    display: flex;
    gap: 24px;
    width: 100%;
}

.wv-home-channel-content {
    display: block !important;
}

.wv-home-channel-content .wv-channel-panel {
    display: none !important;
}

.wv-home-channel-content .wv-channel-panel.wv-channel-panel-active {
    display: flex !important;
    gap: 24px;
    width: 100%;
}

.wv-home-channel-content > * {
    width: auto !important;
}

.wv-programs-channel-content,
.wv-cooperation-channel-content,
.wv-announcement-channel-content,
.wv-special-channel-content {
    flex: 1;
    min-width: 0;
    display: block;
}

.wv-programs-channel-content .wv-channel-panel,
.wv-cooperation-channel-content .wv-channel-panel,
.wv-announcement-channel-content .wv-channel-panel,
.wv-special-channel-content .wv-channel-panel {
    display: none;
}

.wv-programs-channel-content .wv-channel-panel-active,
.wv-cooperation-channel-content .wv-channel-panel-active,
.wv-announcement-channel-content .wv-channel-panel-active,
.wv-special-channel-content .wv-channel-panel-active {
    display: block;
}

.wv-channel-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--color-border);
    width: 100%;
    display: block;
    writing-mode: horizontal-tb;
}

/* ========== 节目列表 ========== */
.wv-program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    clear: both;
}

.wv-program-grid::after {
    content: '';
    display: block;
    clear: both;
}

.wv-program-item {
    cursor: pointer;
    transition: var(--transition);
}

.wv-program-item:hover {
    transform: translateY(-3px);
}

.wv-program-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 2px;
    margin-bottom: 10px;
}

.wv-program-title {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

/* ========== 节目简介 ========== */
.wv-program-intro {
    padding-top: 20px;
    border-top: 1px dashed var(--color-border);
}

.wv-intro-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    position: relative;
    padding-left: 12px;
}

.wv-intro-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--color-primary);
}

.wv-intro-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    text-indent: 2em;
}

/* ========== 频道合作页 - 栏目介绍 ========== */
.wv-coop-intro {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--color-border);
}

.wv-coop-image {
    width: 180px;
    height: 240px;
    flex-shrink: 0;
    border-radius: 2px;
}

.wv-coop-text {
    flex: 1;
    min-width: 0;
}

.wv-coop-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.9;
    text-indent: 2em;
}

/* ========== 频道合作页 - 嘉宾列表 ========== */
.wv-guest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wv-guest-item {
    cursor: pointer;
    transition: var(--transition);
}

.wv-guest-item:hover {
    transform: translateY(-3px);
}

.wv-guest-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.wv-guest-name-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 2px;
}

.wv-guest-name {
    font-size: 14px;
    color: var(--color-text-light);
    text-align: left;
}

.wv-guest-item:hover .wv-guest-name {
    color: var(--color-primary);
}

/* ========== 频道公告页 - 新闻列表 ========== */
.wv-news-list {
    margin-bottom: 30px;
}

.wv-news-item {
    padding: 18px 0;
    border-bottom: 1px dashed var(--color-border);
    transition: var(--transition);
}

.wv-news-item:hover {
    padding-left: 8px;
}

.wv-news-title {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    transition: var(--transition);
}

.wv-news-title:hover {
    color: var(--color-primary);
}

.wv-news-summary {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== 分页 ========== */
.wv-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 30px 0;
}

.wv-page-btn,
.wv-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    color: var(--color-text-light);
    background: #f5f5f5;
    border-radius: 2px;
    transition: var(--transition);
}

.wv-page-btn:hover,
.wv-page-num:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.wv-page-active {
    background: var(--color-primary) !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* ========== 精彩专题页 - 专题列表 ========== */
.wv-special-list {
    margin-bottom: 30px;
}

.wv-special-item-vertical {
    padding: 22px 0;
    border-bottom: 1px dashed var(--color-border);
    transition: var(--transition);
}

.wv-special-item-vertical:hover {
    padding-left: 8px;
}

.wv-special-item-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.wv-special-item-summary {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========== 关于我们 - 频道介绍 ========== */
.wv-about-content {
    padding: 20px 0;
}

.wv-about-content p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 2;
    text-indent: 2em;
    margin-bottom: 15px;
}

.wv-about-content p:last-child {
    margin-bottom: 0;
}

/* ========== 关于我们 - 联系我们 ========== */
.wv-contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    gap: 40px;
}

.wv-contact-info {
    flex: 1;
}

.wv-contact-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.wv-contact-fullname {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.wv-contact-detail {
    font-size: 14px;
    color: var(--color-text);
    line-height: 2.2;
}

.wv-contact-detail p {
    margin-bottom: 8px;
}

.wv-contact-detail p:last-child {
    margin-bottom: 0;
}

.wv-contact-qr {
    width: 180px;
    text-align: center;
    flex-shrink: 0;
}

.wv-qr-placeholder {
    width: 180px;
    height: 180px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wv-qr-placeholder::before {
    content: '二维码';
    position: absolute;
    font-size: 14px;
    color: var(--color-text-light);
    background: repeating-linear-gradient(
        45deg,
        #f3f4f6,
        #f3f4f6 10px,
        #e5e7eb 10px,
        #e5e7eb 20px
    );
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wv-qr-label {
    margin-top: 12px;
    font-size: 13px;
    color: var(--color-text-light);
}

/* ========== 节目预告 - 空白页 ========== */
.wv-schedule-empty {
    padding: 80px 0;
    text-align: center;
}

.wv-schedule-empty p {
    font-size: 16px;
    color: var(--color-text-light);
}

/* ========== 文章详情页 ========== */
.wv-article-detail-wrapper {
    padding: 20px 0;
}

.wv-article-detail {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
}

.wv-article-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: 16px;
    line-height: 1.4;
    text-align: center;
}

.wv-article-detail-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: var(--color-text-light);
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.wv-article-detail-body {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
}

.wv-article-detail-body p {
    margin-bottom: 16px;
    text-indent: 2em;
}

.wv-article-detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
}

/* ========== Footer 底部 ========== */
.wv-footer {
    background: #1a1a1a;
}

.wv-footer-content {
    padding: 24px 0;
}

.wv-footer-content .wv-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wv-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wv-footer-nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.wv-footer-nav a:first-child {
    padding-left: 0;
}

.wv-footer-nav a:last-child {
    border-right: none;
}

.wv-footer-nav a:hover {
    color: #fff;
}

.wv-footer-info-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.wv-footer-left {
    flex: 1;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}

.wv-footer-center {
    flex: 1;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    text-align: center;
}

.wv-footer-right {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.wv-footer-base {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.wv-qrcode-item {
    text-align: center;
}

.wv-qrcode-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 6px;
}

.wv-qrcode-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.wv-qrcode-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.wv-footer-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .wv-banner-right {
        display: none;
    }
    .wv-channel-content {
        flex-direction: column;
    }
    .wv-channel-image {
        width: 100%;
    }
    .wv-special {
        flex-direction: column;
    }
    .wv-special-right {
        width: 100%;
    }
    .wv-footer-right {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .wv-header-left {
        gap: 12px;
    }
    .wv-header-cmg {
        padding-right: 10px;
    }
    .wv-nav-item {
        padding: 18px 12px;
        font-size: 13px;
    }
    .wv-banner-title,
    .wv-banner-subtitle {
        font-size: 36px;
    }
    .wv-announcement {
        flex-direction: column;
        gap: 20px;
    }
    .wv-cooperation {
        flex-wrap: wrap;
    }
    .wv-cooperation-item {
        width: calc(50% - 6px);
    }
    .wv-image-content {
        flex-direction: column;
    }
    .wv-footer-bottom-inner {
        flex-direction: column;
    }
}
