:root {
    --primary: #8B4513;
    --primary-light: #A0522D;
    --secondary: #2F4F4F;
    --accent: #DAA520;
    --bg-cream: #FDF5E6;
    --bg-paper: #FAF0E6;
    --text-dark: #2C1810;
    --text-light: #5C4033;
    --border: #D2B48C;
    --primary-red: #8B2323;
    --gold: #D4AF37;
    --ink-black: #1a1a1a;
    --paper-white: #F5F5DC;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Serif SC', serif;
    background-color: var(--paper-white);
    overflow-x: hidden;
    color: #333;
    line-height: 1.8;
}
.font-calligraphy {
    font-family: 'Ma Shan Zheng', cursive;
}

/* 导航栏 原版原样 */
nav {
    background: linear-gradient(to bottom, rgba(241, 239, 230, 0.95), rgba(225, 225, 220, 0.85));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color:black;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
    border: 1px black;
    font-family: 'Zhi Mang Xing', cursive;
    
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active {
    
    font-weight: 600;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-text {
    color: #5c4a3d;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
}
.logo-text span {
    color: #b85450;
    font-size: 14px;
    display: block;
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 400;
}
.seal::before {
    content: '河';
    position: absolute;
    font-size: 12px;
    top: 2px;
    right: 4px;
    opacity: 0.8;
}
.seal {
    width: 50px;
    height: 50px;
    background: #b85450;
    border: 3px solid #8b4513;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* 通用容器 原版不变 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero 原版样式 */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}
.hero img {
    height: 70vh;
    width: 100vw;
    object-fit: cover;
}
.hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
}
.lantern {
    margin-bottom: 30px;
    animation: swing 4s ease-in-out infinite;
    transform-origin: top center;
}
@keyframes swing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}
.main-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 80px;
    color: #8B2323;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 10px;
}
.subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 8px;
    font-weight: 300;
}
.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #8B2323, transparent);
    margin: 0 auto 30px;
}
.hero-desc {
    font-size: 18px;
    color: #ece6e6;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, #8B2323 0%, #A52A2A 100%);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Serif SC', serif;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 35, 35, 0.3);
}
.btn-secondary {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #8B2323;
    color: #8B2323;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Serif SC', serif;
}
.btn-secondary:hover {
    background: #8B2323;
    color: #D4AF37;
}

/* 通用区块 原版 */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    color: #8B2323;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 56px;
    color: #333;
    margin-bottom: 15px;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: #8B2323;
    margin: 0 auto 20px;
}
.section-desc {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/*模块跳转*/
.model-link a {
    font-size:24px;
    color: #517f71;
    text-decoration: none;
    letter-spacing:3px;
    padding:10px 22px;
    border:1px solid #b8a88c;
    border-radius:6px;
    transition: 0.3s;
}
/*华林庄园酒店*/
.slider-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 620px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}
@media (max-width:768px){
    .slider-wrap{
        height: 320px;
        border-radius: 10px;
    }
}

.slider-list {
    width: 100%;
    height: 100%;
    display: flex;
    transition: all 0.7s ease;
}
.slider-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.slider-item a{
    display:block;
    width:100%;
    height:100%;
}
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 底部渐变遮罩 */
.slider-mask{
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
}

/* 浮层文字文案 古风排版 */
.slider-text{
    position:absolute;
    left:60px;
    bottom:60px;
    color:#fff;
    z-index:2;
    pointer-events:none; /* 文字不阻挡点击跳转 */
}
@media (max-width:768px){
    .slider-text{
        left:24px;
        bottom:30px;
    }
}
.slider-text h2{
    font-size: 36px;
    margin:0 0 12px;
    font-weight:normal;
    letter-spacing:4px;
}
@media (max-width:768px){
    .slider-text h2{
        font-size:22px;
    }
}
.slider-text p{
    font-size:16px;
    opacity:0.9;
    margin:0;
    letter-spacing:1px;
}
@media (max-width:768px){
    .slider-text p{
        font-size:13px;
    }
}

/* 左右切换按钮 古风半透样式 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:3;
    transition: 0.3s;
}
.slider-btn:hover{
    background:rgba(255,255,255,0.4);
}
.prev { left:30px; }
.next { right:30px; }
@media (max-width:768px){
    .slider-btn{
        width:36px;
        height:36px;
        font-size:16px;
    }
    .prev{left:12px;}
    .next{right:12px;}
}

/* 圆点指示器 */
.slider-dots {
    position:absolute;
    bottom:26px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:3;
}
.dot {
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,0.35);
    cursor:pointer;
    transition:0.3s;
}
.dot.active {
    background:#fff;
    width:28px;
    border-radius:6px;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.car-card {
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(139,35,35,0.1);
    transition: transform 0.5s;
}
.car-img {
    background: #1a1a1a;
    height: 250px;
    position: relative;
    overflow: hidden;
}
.car-img-bg  {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s;
}

/* 汉服区域 原版双栏不变 */
.hanfu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.hanfu-card {
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(139,35,35,0.1);
    transition: transform 0.5s;
}
.hanfu-card:hover {
    transform: translateY(-10px);
}
.hanfu-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}
.hanfu-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s;
}
.hanfu-card:hover .hanfu-img-bg {
    transform: scale(1.1);
}
.hanfu-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.hanfu-picture-title, .hanfu-img-title {
    position: absolute;
    color: white;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.picture-content, .hanfu-content {
    padding: 25px;
}
.picture-content h3, .hanfu-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}
.picture-content p, .hanfu-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.picture-features, .hanfu-features {
    list-style: none;
    margin-bottom: 20px;
}
.picture-features li, .hanfu-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.picture-features li::before, .hanfu-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #8B2323;
    border-radius: 50%;
}
.hanfu-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #8B2323;
    background: transparent;
    color: #8B2323;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Serif SC', serif;
    font-size: 14px;
}
.hanfu-btn:hover {
    background: #8B2323;
    color: white;
}
/* 租车区域 单栏不变 */
.car-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.hanfu-card {
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(139,35,35,0.1);
    transition: transform 0.5s;
}
.hanfu-card:hover {
    transform: translateY(-10px);
}
.hanfu-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}
.hanfu-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s;
}
.hanfu-card:hover .hanfu-img-bg {
    transform: scale(1.1);
}
.hanfu-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.car-content-grid {
    display: grid;
     grid-template-columns: repeat(2, 1fr);
     margin: 0 auto;
}
.hanfu-picture-title, .hanfu-img-title {
    position: absolute;
    color: white;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.picture-content, .hanfu-content {
    padding: 25px;
}
.picture-content h3, .hanfu-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}
.picture-content p, .hanfu-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.picture-features, .hanfu-features {
    list-style: none;
    margin-bottom: 20px;
}
.picture-features li, .hanfu-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.picture-features li::before, .hanfu-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #8B2323;
    border-radius: 50%;
}
.hanfu-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #8B2323;
    background: transparent;
    color: #8B2323;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Serif SC', serif;
    font-size: 14px;
}
.hanfu-btn:hover {
    background: #8B2323;
    color: white;
}
/* ========== 百味食街 原版2000px宽、负边距布局完全保留 ========== */
.img-wrap {
    position: relative;
    display: inline-block;
}
.img-wrap img {
    width: 1000px;
    height: 650px;
    object-fit: cover;
}
.hot-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(234, 229, 229, 0.3);
    pointer-events: none;
    cursor: pointer;
}
.miaodian {
    display: flex;
    width: 2000px;
    margin-left: -350px;
    margin-top: 10px;
    gap: 0 200px;
}
.xiangxi {
    width: 360px;
    height: 600px;
    border: 2px solid rgba(234, 229, 229, 0.3);
    border-radius: 10%;
    margin-left: 200px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
#text-content {
    width: 300px;
    height: 400px;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
}
.food-filter-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 12px 30px;
    border: 2px solid #ee9508;
    background: transparent;
    color: #8B2323;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Serif SC', serif;
    font-size: 16px;
}
.filter-btn:hover,
.filter-btn.active {
    background: #ebad2f;
    color: #F5F5DC;
}
.food-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.food-item-large {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}
.food-item-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.food-item-large.hidden {
    display: none;
}
.food-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.food-item-large:hover img {
    transform: scale(1.1);
}
.food-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 50px 30px 30px;
    color: white;
}
.food-tag-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.food-badge {
    display: inline-block;
    background: #D4AF37;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.food-category-badge {
    display: inline-block;
    background: rgba(139, 35, 35, 0.9);
    color: #f5f5dc;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}
.food-name-large {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 36px;
    margin-bottom: 10px;
    color: #f5f5dc;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.food-desc-large {
    font-size: 15px;
    color: #d4d4d4;
    line-height: 1.6;
}

/* ========== 大河上下 原版2600px宽、sticky侧边、绝对定位文字完全保留 ========== */
.daheshangxiasection {
    width: 2600px;
    scroll-margin-top: 120px;
    padding: 100px 0;
    display: flex;
}
.daheshangxia-container {
    width: 2000px;
    margin: 0 auto;
}
.siderbar {
    top:20px;
    width: 120px;
    height: 600px;
    position: sticky;
}
.siderbar-content {
    width:150px;
    height: 200px;
    margin: 60px;
    list-style: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap:30px;
}
.siderbar-content img {
    width:100%;
    height: 100px;
}
.daheshangxia-header {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.daheshangxia-title {
    margin-top: 15px;
    color:rgb(11, 0, 0);
    font-size: 56px;
    font-family: 'Ma Shan Zheng', cursive;
}
.theater-title {
    font-size:30px;
    margin: 20px auto;
    line-height: 1.6;
}
.theater {
    display: flex;
    gap: 40px;
    position: relative;
}
.zuoweitu {
    max-width: 1200px;
    margin-top: 40px;
}
.zuoweitu img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.zuoweitu-content {
    position: absolute;
    left:60%;
    top: 40px;
}
.zuoweitu-content h3 {
    font-size: 1.8rem;
    color: #f39c12;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.zuoweitu-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 15px;
}
.ticket-cards {
    width: 1200px;
    margin: 0 auto;
    height: 400px;
}
.ticket-cards p {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 70px;
}
.ticket-content ul {
    list-style-type: disc;
    font-size: 1.2rem;
}
.ticket-content li {
    margin-top: 24px;
}

/* 实用指南 原版2000px宽 */
.shiyongzhinan {
    width: 2000px;
    height: 450px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background: beige;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 15px;
}
.shiyongzhinan-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 56px;
    margin-top: 5px;
}
.shiyongzhinan-content {
    gap:8px;
    letter-spacing: 2px;
    font-size: 22px;
}
.shiyongzhinan-jutineirong {
    margin-bottom: 20px;
}

/* 页脚原版 */
.footer {
    color:black;
    background: var(--text-dark);
    width: 100%;
    padding:12px 20px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
}
.footer-head {
    display: flex;
    flex-direction: column;
    flex:0  0 460px;
    justify-content: center;
    align-items: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold), #b8944f);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Noto Serif SC', serif;
}
.footer-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Noto Serif SC', serif;
    color: white;
}
.footer-desc {
    color: rgba(193, 189, 189, 0.855);
    font-size: 18px;
    line-height: 1.5;
    margin-top:4px;
}
.footer-container {
    width: 2000px;
    justify-content: center;
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    align-items:center;
}
.rechieve {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:120px;
}
.rechieve-right {
    display: flex;
    flex-direction: column;
    gap:20px;
    margin-left: 200px;
}
.rechieve-first,.rechieve-second,.rechieve-third{
    text-align: center;
}
.rechieve-fourth,.rechieve-fifth,.rechieve-sixth{
    padding:6px 8px;
    display: flex;
    align-items: center;
    gap:6px;
    width:100%;
}
#image-fourth,#image-fifth,#image-six {
    width:60px;
}
#image-first,#image-second,#image-third{
                    width: 90px;
          }
#focus-first ,#focus-second,#focus-third,#focus-fourth,#focus-fifth,#focus-six{
    outline: none;
    border: none;
    color:white;
    font-size:18px;
    text-decoration:none;
}
#focus-first:hover,#focus-second:hover,#focus-third:hover,#focus-fourth:hover,#focus-fifth:hover,#focus-six:hover {
    cursor: pointer;
    color: #f8e9d8;
}
.footer-bottom {
    width:100%;
    text-align: center;
    color: white;
    font-size: 16px;
    padding-top:6px;
    margin-top:6px;
    border-top:1px solid rgba(255,255,255,0.15);
}

/* ========== 小屏兼容：仅屏幕小于1200px触发重排，大屏完全不动原版布局 ========== */
@media (max-width: 1199px) {
    /* 百味食街取消2000px宽、负边距，上下堆叠 */
    .miaodian {
        width: auto;
        flex-direction: column;
        margin-left: 0;
        gap: 60px;
    }
    .xiangxi {
        margin: 0 auto;
    }
    /* 大河上下取消2600px宽、绝对定位 */
    .daheshangxiasection {
        width: 100%;
        display: block;
        padding: 60px 15px;
    }
    .daheshangxia-container {
        width: 100%;
        padding: 0;
    }
    .siderbar {
        width: 100%;
        height: auto;
        position: static;
        margin-bottom: 40px;
    }
    .siderbar-content {
        width: 100%;
        margin: 0;
        flex-direction: row;
        justify-content: center;
    }
    .daheshangxia-header, .ticket-cards {
        width: 100%;
    }
    .theater {
        flex-direction: column;
        position: static;
    }
    .zuoweitu-content {
        position: static;
        left: 0;
        margin-top: 30px;
    }
    /* 实用指南自适应 */
    .shiyongzhinan {
        width: 100%;
        height: auto;
        padding: 30px 15px;
    }
    .footer-container {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hanfu-grid {
        grid-template-columns: 1fr;
    }
    .food-gallery {
        grid-template-columns: 1fr;
    }
    .rechieve {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rechieve-right {
        margin-left: 0;
        margin-top: 30px;
    }
    .main-title {
        font-size: 48px;
    }
    .section-title {
        font-size: 36px;
    }
}

/* 移动端菜单 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(245, 245, 220, 0.95);
    padding: 20px;
    border-top: 1px solid rgba(139,35,35,0.1);
}
.mobile-menu.active {
    display: block;
}
.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}