/* ========================================
   美韵锡剧网 - 韩国风大气设计样式表
   ======================================== */

/* --- 基础重置 --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    background: #f8f6f3;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, li { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; outline: none; border: none; }

/* --- 通用容器 --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   顶部通知栏
   ======================================== */
.top-bar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    color: #cbb26a;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 2px solid #cbb26a;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-links a {
    color: #cbb26a;
    padding: 4px 12px;
    border: 1px solid rgba(203, 178, 106, 0.4);
    border-radius: 4px;
    margin-left: 10px;
}
.top-links a:hover {
    background: #cbb26a;
    color: #1a1a2e;
}

/* ========================================
   头部区域 - Logo与搜索
   ======================================== */
.site-header {
    background: #fff;
    padding: 28px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: relative;
    z-index: 10;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 18px;
}
.logo-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 50%, #8b0000 100%);
    color: #f4e4bc;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3), inset 0 0 0 3px #cbb26a;
    font-family: "KaiTi", "STKaiti", serif;
    overflow: hidden;
    flex-shrink: 0;
}
.logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #fff;
}
.logo-text h1 {
    font-size: 28px;
    color: #1a1a2e;
    font-family: "KaiTi", "STKaiti", serif;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text p {
    font-size: 11px;
    color: #999;
    letter-spacing: 2px;
    margin-top: 2px;
}

/* --- 搜索框 --- */
.header-search { flex: 1; max-width: 480px; }
.search-box {
    display: flex;
    border: 2px solid #cbb26a;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(203, 178, 106, 0.15);
}
.search-type {
    background: #fdfaf3;
    padding: 0 15px;
    font-size: 13px;
    color: #666;
    border-right: 1px solid #eee;
    cursor: pointer;
}
.search-input {
    flex: 1;
    padding: 11px 18px;
    font-size: 14px;
    color: #333;
}
.search-btn {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: #fff;
    padding: 0 28px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
}
.search-btn:hover {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
}

/* ========================================
   主导航 - 韩国风大气菜单
   ======================================== */
.main-nav {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 40%, #1a1a2e 100%);
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-list {
    display: flex;
    position: relative;
}
.nav-item {
    position: relative;
    flex: 1;
    text-align: center;
}
.nav-item > a {
    display: block;
    padding: 18px 10px;
    color: #e8e4d9;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    border-bottom: 3px solid transparent;
    transition: all 0.35s ease;
}
.nav-item > a .nav-icon {
    color: #cbb26a;
    margin-right: 6px;
    font-size: 12px;
    opacity: 0.6;
}
.nav-item > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #cbb26a, #f4e4bc, #cbb26a);
    transition: width 0.35s ease;
}
.nav-item:hover > a,
.nav-item.active > a {
    color: #cbb26a;
    background: rgba(203, 178, 106, 0.06);
    border-bottom-color: #cbb26a;
}
.nav-item:hover > a::before,
.nav-item.active > a::before {
    width: 70%;
}
.nav-item:hover > a .nav-icon {
    opacity: 1;
    transform: scale(1.3);
    display: inline-block;
}

/* 二级下拉菜单 */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-top: 3px solid #cbb26a;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}
.nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu a {
    display: block;
    padding: 14px 22px;
    color: #555;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid #f5f2eb;
    transition: all 0.25s ease;
}
.sub-menu a:last-child { border-bottom: none; }
.sub-menu a:hover {
    background: linear-gradient(90deg, #fdfaf3 0%, #fff 100%);
    color: #8b0000;
    padding-left: 30px;
    letter-spacing: 1px;
}

/* ========================================
   内容主体通用
   ======================================== */
.site-main {
    padding: 35px 0 60px;
    min-height: 600px;
}
.site-main .container {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 310px; flex-shrink: 0; }
@media (max-width: 900px) {
    .site-main .container { flex-direction: column; }
    .sidebar { width: 100%; }
}

/* ========================================
   模块卡片
   ======================================== */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 28px;
    overflow: hidden;
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f0ece3;
    background: linear-gradient(90deg, #fdfaf3 0%, #fff 60%);
}
.card-title {
    font-size: 20px;
    color: #1a1a2e;
    font-family: "KaiTi", "STKaiti", serif;
    letter-spacing: 2px;
    position: relative;
    padding-left: 18px;
}
.card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 22px;
    background: linear-gradient(180deg, #8b0000 0%, #cbb26a 100%);
    border-radius: 3px;
}
.card-more {
    font-size: 13px;
    color: #999;
    padding: 4px 14px;
    border: 1px solid #e5e1d6;
    border-radius: 20px;
}
.card-more:hover {
    color: #8b0000;
    border-color: #cbb26a;
    background: #fdfaf3;
}
.card-body { padding: 22px 24px; }

/* ========================================
   首页 Banner 轮播区
   ======================================== */
.banner {
    position: relative;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.3);
    margin-bottom: 35px;
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbb26a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}
.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: #fff;
    z-index: 2;
}
.banner-title {
    font-size: 52px;
    font-family: "KaiTi", "STKaiti", serif;
    letter-spacing: 8px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #f4e4bc 0%, #cbb26a 50%, #f4e4bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(203, 178, 106, 0.3);
}
.banner-subtitle {
    font-size: 16px;
    color: #cbb26a;
    letter-spacing: 4px;
    margin-bottom: 25px;
}
.banner-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 680px;
    line-height: 2;
    margin-bottom: 30px;
}
.banner-btns { display: flex; gap: 18px; }
.banner-btn {
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: #f4e4bc !important;
    border-radius: 30px;
    font-size: 15px;
    letter-spacing: 2px;
    border: 1px solid rgba(203, 178, 106, 0.3);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}
.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
}
.banner-btn.outline {
    background: transparent;
    color: #cbb26a !important;
    border: 1px solid #cbb26a;
    box-shadow: none;
}
.banner-btn.outline:hover {
    background: rgba(203, 178, 106, 0.1);
}

/* ========================================
   数据统计
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}
.stat-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #cbb26a);
}
.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.stat-num {
    font-size: 34px;
    font-weight: bold;
    color: #8b0000;
    font-family: "Georgia", serif;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 14px;
    color: #888;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   列表样式（剧团/剧目/百科）
   ======================================== */
.data-list { display: flex; flex-direction: column; }
.data-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px dashed #e8e3d6;
    transition: all 0.3s ease;
}
.data-item:last-child { border-bottom: none; }
.data-item:hover { padding-left: 8px; }
.data-thumb {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fdfaf3 0%, #f0ece3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.data-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.data-thumb .no-pic {
    font-size: 34px;
    color: #cbb26a;
    font-family: "KaiTi", serif;
}
.data-info { flex: 1; min-width: 0; }
.data-title {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.data-title a { color: inherit; }
.data-title a:hover { color: #8b0000; }
.tag {
    display: inline-block;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 4px;
    background: #fdfaf3;
    color: #8b0000;
    border: 1px solid #eadcc0;
}
.tag.hot { background: #fff5f5; color: #c41e3a; border-color: #f5c6cb; }
.tag.info { background: #f0f7ff; color: #1e6fb5; border-color: #b8daff; }
.data-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.data-meta {
    font-size: 12px;
    color: #aaa;
    display: flex;
    gap: 16px;
}
.data-meta span::before {
    content: '· ';
    color: #cbb26a;
}
.data-meta span:first-child::before { content: ''; }

/* ========================================
   网格列表（剧目卡片）
   ======================================== */
.grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    cursor: pointer;
}
.grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.12);
}
.grid-img {
    height: 170px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.grid-item:hover .grid-img img { transform: scale(1.08); }
.grid-img .no-pic {
    font-size: 60px;
    color: #cbb26a;
    font-family: "KaiTi", serif;
    opacity: 0.5;
}
.grid-img .grid-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: #f4e4bc;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
}
.grid-body { padding: 16px 18px 20px; }
.grid-title {
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 500;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.grid-title:hover { color: #8b0000; }
.grid-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}
.grid-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f5f2eb;
    font-size: 12px;
    color: #aaa;
}
.grid-footer .hits::before { content: '👁 '; }
@media (max-width: 900px) { .grid-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-list { grid-template-columns: 1fr; } }

/* ========================================
   侧边栏 - 历史上的今天
   ======================================== */
.today-panel {
    background: linear-gradient(180deg, #fdfaf3 0%, #fff 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0ece3;
}
.today-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: #f4e4bc;
}
.today-date-big {
    font-size: 48px;
    font-family: "Georgia", serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
}
.today-month {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-top: 4px;
}
.today-list { padding: 8px 18px 18px; }
.today-item {
    padding: 14px 0;
    border-bottom: 1px dashed #eadcc0;
}
.today-item:last-child { border-bottom: none; }
.today-item-title {
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.today-item-title::before {
    content: '◆';
    color: #cbb26a;
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}
.today-item-title a:hover { color: #8b0000; }
.today-item-meta {
    font-size: 12px;
    color: #aaa;
    padding-left: 18px;
}

/* ========================================
   侧边栏通用块
   ======================================== */
.side-block {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.side-title {
    padding: 16px 20px;
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    color: #cbb26a;
    font-size: 16px;
    font-family: "KaiTi", serif;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.side-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #cbb26a, #f4e4bc);
    border-radius: 2px;
}
.side-body { padding: 16px 20px; }
.side-list li {
    padding: 9px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}
.side-list li:last-child { border-bottom: none; }
.side-list li a:hover { color: #8b0000; }
.side-rank {
    width: 20px;
    height: 20px;
    background: #e5e1d6;
    color: #888;
    font-size: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Georgia", serif;
    font-weight: bold;
}
.side-rank.top1 { background: #c41e3a; color: #fff; }
.side-rank.top2 { background: #e67e22; color: #fff; }
.side-rank.top3 { background: #cbb26a; color: #fff; }

/* ========================================
   详情页
   ======================================== */
.detail-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ece3;
}
.detail-title {
    font-size: 28px;
    color: #1a1a2e;
    font-family: "KaiTi", "STKaiti", serif;
    letter-spacing: 2px;
    margin-bottom: 14px;
    line-height: 1.4;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #888;
}
.detail-meta span { display: flex; align-items: center; gap: 4px; }
.detail-cover {
    float: left;
    margin: 0 24px 20px 0;
    width: 240px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.detail-content {
    font-size: 15px;
    line-height: 2;
    color: #444;
    padding: 10px 0;
}
.detail-content p { margin-bottom: 16px; }
.detail-content h1, .detail-content h2, .detail-content h3 {
    font-family: "KaiTi", serif;
    color: #8b0000;
    margin: 24px 0 12px;
}
.detail-content img { max-width: 100%; border-radius: 8px; margin: 12px 0; }

/* ========================================
   分页
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 30px 0 10px;
    flex-wrap: wrap;
}
.pagination a,
.pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #555;
    border: 1px solid #e5e1d6;
    transition: all 0.25s ease;
}
.pagination a:hover {
    background: #8b0000;
    color: #f4e4bc;
    border-color: #8b0000;
    transform: translateY(-2px);
}
.pagination .current {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: #f4e4bc;
    border-color: transparent;
    font-weight: bold;
}
.pagination .dots { color: #aaa; padding: 0 4px; }
.pagination .prev, .pagination .next {
    padding: 0 18px;
    letter-spacing: 1px;
}

/* ========================================
   页脚
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f1829 100%);
    color: rgba(255,255,255,0.7);
    padding-top: 50px;
    margin-top: 40px;
    border-top: 4px solid #cbb26a;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h3 {
    color: #cbb26a;
    font-size: 18px;
    font-family: "KaiTi", serif;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(203, 178, 106, 0.2);
    position: relative;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #cbb26a;
}
.footer-about p {
    font-size: 13px;
    line-height: 2;
}
.footer-links ul li {
    padding: 7px 0;
    font-size: 14px;
}
.footer-links ul li::before {
    content: '▸ ';
    color: #cbb26a;
    font-size: 12px;
}
.footer-links ul li a:hover {
    color: #cbb26a;
    padding-left: 4px;
}
.footer-contact p {
    font-size: 13px;
    padding: 6px 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
}
.footer-bottom p { margin: 4px 0; }
.footer-bottom p:last-child {
    color: #cbb26a;
    letter-spacing: 3px;
    margin-top: 8px;
    font-family: "KaiTi", serif;
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ========================================
   返回顶部
   ======================================== */
#backTop {
    position: fixed;
    right: 28px;
    bottom: 60px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: #f4e4bc;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}
#backTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.5);
}

/* ========================================
   面包屑导航
   ======================================== */
.breadcrumb {
    padding: 0 0 20px;
    font-size: 13px;
    color: #888;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #8b0000; }
.breadcrumb .sep { margin: 0 8px; color: #cbb26a; }
.breadcrumb .current { color: #1a1a2e; }

/* ========================================
   搜索空状态
   ======================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}
.empty-state .empty-icon {
    font-size: 68px;
    margin-bottom: 18px;
    color: #cbb26a;
    opacity: 0.5;
}
.empty-state .empty-text {
    font-size: 16px;
    letter-spacing: 2px;
}

/* ========================================
   侧边栏 · 弘扬经典 Banner 卡
   ======================================== */
.side-banner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.3);
    margin-bottom: 24px;
}
.side-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbb26a' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}
.side-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cbb26a, #f4e4bc, #cbb26a);
}
.side-banner-content {
    position: relative;
    z-index: 2;
    padding: 28px 22px 26px;
    text-align: center;
    color: #fff;
}
.sb-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    color: #cbb26a;
    margin-bottom: 10px;
    opacity: 0.85;
}
.sb-title {
    font-family: "KaiTi","STKaiti",serif;
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 4px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #f4e4bc 0%, #cbb26a 50%, #f4e4bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sb-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    margin-bottom: 20px;
}
.sb-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sb-btn {
    display: block;
    padding: 10px 14px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: #f4e4bc !important;
    border-radius: 24px;
    font-size: 13px;
    letter-spacing: 2px;
    border: 1px solid rgba(203, 178, 106, 0.3);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.35);
    transition: all 0.3s ease;
}
.sb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139, 0, 0, 0.5);
}
.sb-btn.outline {
    background: transparent;
    color: #cbb26a !important;
    border: 1px solid #cbb26a;
    box-shadow: none;
}
.sb-btn.outline:hover {
    background: rgba(203, 178, 106, 0.12);
}

/* 首页左栏：统计方块放在 card 外时保持下方间距 */
.main-content > .stats-grid {
    margin-bottom: 28px;
}
@media (max-width: 900px) {
    .main-content > .stats-grid {
        margin-bottom: 20px;
    }
}

/* ========================================
   首页 · 最新演出 竖向图片(3:4) — 醒目版
   ======================================== */
/* 仅作用于"最新演出信息"模块，不影响剧团/百科/演员等其他列表的横向图 */
.show-list .data-item {
    padding: 20px 22px !important;     /* 列表项内边距加大 */
    gap: 22px !important;
}
.show-list .data-thumb {
    width: 144px !important;        /* 宽 3 份，比原版 96px 放大 50% */
    height: 192px !important;       /* 高 4 份， 144 : 192 = 3:4 ✓ */
    border-radius: 12px !important;
    box-shadow: 0 6px 18px rgba(26, 26, 46, 0.18);
}
.show-list .data-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.show-list .data-thumb .no-pic {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 34px !important;
    letter-spacing: 4px;
    background: linear-gradient(135deg,#f4e4bc 0%,#e8d5a0 100%) !important;
    color: #8b0000 !important;
    font-weight: bold;
    font-family: "KaiTi","STKaiti",serif;
}
.show-list .data-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.show-list .data-title {
    font-size: 18px !important;    /* 标题放大 */
    flex-wrap: wrap;
    gap: 10px !important;
}
.show-list .data-title a {
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    min-width: 0;
}

/* 右侧日期 Pill —— 醒目酒红底金字 */
.show-list .date-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #f4e4bc !important;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.35);
    white-space: nowrap;
    margin-left: auto;
    letter-spacing: 0.5px;
}

/* 通用 Pill（分类/剧团/地点/点击量）—— 标签化醒目 */
.show-list .pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: 1px solid transparent;
    line-height: 1;
    white-space: nowrap;
}
/* 分类 Pill —— 金色标签 */
.show-list .pill.flag {
    background: linear-gradient(135deg, #f4e4bc 0%, #cbb26a 100%);
    color: #5a1a1a;
    font-weight: 700 !important;
    letter-spacing: 1px;
    box-shadow: 0 2px 6px rgba(203, 178, 106, 0.45);
}
/* 剧团 Pill —— 深蓝底白字 */
.show-list .pill.jt {
    background: #16213e;
    color: #f4e4bc;
    font-size: 14.5px !important;
    padding: 7px 14px;
    border-color: #cbb26a;
    box-shadow: 0 2px 8px rgba(22, 33, 62, 0.35);
}
/* 地点 Pill —— 绿底白字 */
.show-list .pill.addr {
    background: #1a5f3b;
    color: #ffffff;
    font-size: 14.5px !important;
    padding: 7px 14px;
    border-color: #38b000;
    box-shadow: 0 2px 8px rgba(26, 95, 59, 0.3);
}
/* 点击量 Pill —— 小号灰色（不抢重点，只是信息点缀） */
.show-list .pill.hits {
    background: #f7f3ea;
    color: #666;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.show-list .data-desc {
    font-size: 14px !important;    /* 描述放大 */
    line-height: 1.85;
    color: #555;
}
.show-list .data-meta {
    gap: 10px !important;
    flex-wrap: wrap;
    padding-top: 4px;
}

/* 响应式：小屏下稍缩小 */
@media (max-width: 560px) {
    .show-list .data-item {
        padding: 14px !important;
        gap: 14px !important;
    }
    .show-list .data-thumb {
        width: 96px !important;
        height: 128px !important;
    }
    .show-list .data-thumb .no-pic { font-size: 26px !important; }
    .show-list .date-pill {
        font-size: 13px !important;
        padding: 5px 10px;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 4px;
    }
    .show-list .pill { font-size: 12.5px !important; padding: 5px 10px; }
    .show-list .pill.jt,
    .show-list .pill.addr { font-size: 12.5px !important; padding: 5px 11px; }
    .show-list .data-title { font-size: 16px !important; }
}



