/* ==================== 
   东壁岛景区官网 - 大气现代风格 v3.0 (无视频版)
   主色：#1b7b4e  点缀色：#c9a53b
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
    background-color: #fefef7;
    color: #1e2a32;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 头部导航 (不透明，始终可见) ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* 滚动时加深阴影，视觉反馈 */
.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    transition: padding 0.3s ease;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1b7b4e, #2c9f6b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.75rem;
    color: #5f7f6b;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2c3e2f;
    transition: color 0.2s, border-bottom 0.2s;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1b7b4e;
    border-bottom-color: #1b7b4e;
}

.mobile-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #1b7b4e;
}

/* 移动端菜单仍保持原有响应式，但背景色适配 */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 24px 20px;
        z-index: 999;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }
    .nav-links.show {
        transform: translateY(0);
    }
    .mobile-toggle {
        display: block;
    }
}

/* ========== 全屏轮播 ========== */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-item.active {
    opacity: 1;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.banner-item.active .banner-text {
    transform: translateY(0);
    opacity: 1;
}

.banner-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-prev { left: 30px; }
.banner-next { right: 30px; }

.banner-prev:hover,
.banner-next:hover {
    background: #1b7b4e;
    transform: translateY(-50%) scale(1.05);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.banner-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dots span.active {
    width: 30px;
    background: white;
}

/* 滚动提示 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: white;
    text-align: center;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== 通用区块 ========== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a5276;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.title-decor {
    display: block;
    width: 60px;
    height: 3px;
    background: #c9a53b;
    margin: 16px auto 0;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: #6b7a6f;
    font-size: 1.05rem;
}


/* ========== 景点卡片 ========== */
.scenic-waterfall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.scenic-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
}

.scenic-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px -15px rgba(27,123,78,0.2);
}

.scenic-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.scenic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5));
}

.scenic-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(27,123,78,0.9);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
}

.scenic-content {
    padding: 24px;
}

.scenic-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.scenic-desc {
    color: #6b7a6f;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b7b4e;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.btn-link:hover {
    gap: 12px;
}

/* ========== 攻略横向滚动 ========== */
.guide-carousel {
    position: relative;
    overflow: hidden;
}

.guide-carousel-container {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 50px 20px;
    scrollbar-width: thin;
}

.guide-card-modern {
    flex: 0 0 320px;
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.guide-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(27,123,78,0.1);
}

.guide-icon {
    font-size: 2.5rem;
    color: #1b7b4e;
    margin-bottom: 20px;
}

.guide-stats {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    font-size: 0.85rem;
    color: #8a9a8e;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.carousel-prev { left: 0px; }
.carousel-next { right: 0px; }

/* ========== 活动时间轴 ========== */
.event-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.timeline-item {
    display: flex;
    gap: 24px;
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.2s;
}
.timeline-item:hover {
    box-shadow: 0 12px 24px -12px rgba(27,123,78,0.15);
}
.timeline-date {
    background: #eef3ea;
    border-radius: 28px;
    padding: 12px 18px;
    text-align: center;
    min-width: 80px;
}
.date-day { font-size: 1.6rem; font-weight: 700; color: #1b7b4e; }
.date-month { font-size: 0.85rem; }
.timeline-line { width: 2px; background: #d4e0d0; }
.timeline-content { flex: 1; }
.timeline-content h3 a {
    text-decoration: none;
    color: #1e2a32;
}
.timeline-content h3 a:hover { color: #1b7b4e; }
.event-meta { font-size: 0.85rem; color: #7a8e82; margin: 8px 0; }

/* ========== 产品卡片优雅版 ========== */
.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card-elegant {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

.product-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card-elegant:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card-elegant:hover .product-actions {
    opacity: 1;
}

.quick-view {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #1b7b4e;
}

.product-info {
    padding: 20px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1b7b4e;
    margin: 12px 0;
}

/* ========== 景区全貌展示区（无视频，纯背景大图） ========== */
.showcase-section {
    position: relative;
    padding: 0;
    background: #1e2a23;
}

.showcase-bg {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    transform: translateY(-50%);
    margin-top: -150px;
}
.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}
.stat-desc {
    font-size: 0.85rem;
    opacity: 0.7;
}
.btn-gold {
    background: #c9a53b;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-gold:hover {
    background: #b38f2c;
    transform: translateY(-2px);
}

/* ========== 交通指南 ========== */
.traffic-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.traffic-card {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 32px 24px;
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.traffic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27,123,78,0.1);
}
.traffic-card i {
    font-size: 2.5rem;
    color: #1b7b4e;
    margin-bottom: 20px;
}

/* ========== 通用按钮 ========== */
.btn, .btn-outline, .btn-sm {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}
.btn {
    background: #1b7b4e;
    color: white;
}
.btn:hover {
    background: #0f5f3a;
    transform: translateY(-2px);
}
.btn-outline {
    border: 1px solid #1b7b4e;
    color: #1b7b4e;
    background: transparent;
}
.btn-outline:hover {
    background: #1b7b4e;
    color: white;
}
.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
    background: #edf4ee;
    color: #1b7b4e;
}
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }

/* ========== 页脚 ========== */
.footer {
    background: #1b2a24;
    color: #bfcfc5;
    padding: 60px 0 30px;
    margin-top: 40px;
}
.footer-content {
    display: flow;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.footer-social i {
    margin: 0 6px;
}

/* ========== 动画 ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .banner-text h2 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    section { padding: 70px 0; }
}
@media (max-width: 768px) {
    .navbar { padding: 16px 0; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(255,255,255,0.95);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        text-align: center;
        gap: 20px;
        backdrop-filter: blur(10px);
    }
    .nav-links.show { display: flex; }
    .mobile-toggle { display: block; }
    .banner-text h2 { font-size: 1.8rem; }
    .banner-text p { font-size: 1rem; }
    .showcase-stats { gap: 30px; }
    .stat-number { font-size: 2rem; }
    .carousel-prev, .carousel-next { display: none; }
    .timeline-item { flex-direction: column; }
    .timeline-line { display: none; }
}

/* ========== 移动端深度适配 ========== */
@media (max-width: 768px) {
    /* 全局字体微调 */
    body {
        font-size: 15px;
    }
    
    /* 容器内边距减小 */
    .container {
        padding: 0 20px;
    }
    
    /* 区块间距减少 */
    section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-desc {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    /* 全屏轮播高度优化（避免过大） */
    .hero-fullscreen {
        height: 85vh;  /* 手机屏幕占比调整 */
    }
    .banner-text h2 {
        font-size: 1.8rem;
    }
    .banner-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .banner-prev, .banner-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .banner-prev { left: 12px; }
    .banner-next { right: 12px; }
    .scroll-indicator {
        bottom: 15px;
    }
    .scroll-indicator span {
        font-size: 0.7rem;
    }
    
    /* 景点卡片改为单列，图片高度降低 */
    .scenic-waterfall {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .scenic-image {
        height: 220px;
    }
    .scenic-title {
        font-size: 1.25rem;
    }
    
    /* 攻略卡片去掉横向滚动按钮，使用触摸滑动提示 */
    .guide-carousel-container {
        gap: 20px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .guide-card-modern {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 24px;
    }
    .guide-card-modern h3 {
        font-size: 1.2rem;
    }
    /* 提示用户可滑动（可选小箭头指示） */
    .guide-carousel::after {
        content: '👆 左右滑动查看更多';
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: #8a9a8e;
        margin-top: 16px;
    }
    
    /* 活动时间轴卡片垂直布局 */
    .timeline-item {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }
    .timeline-date {
        display: inline-flex;
        align-items: baseline;
        gap: 8px;
        min-width: auto;
        width: fit-content;
        padding: 6px 16px;
    }
    .date-day {
        font-size: 1.2rem;
    }
    .timeline-line {
        display: none;
    }
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    /* 产品卡片单列 */
    .product-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-image {
        height: 220px;
    }
    
    /* 景区全貌展示区 */
    .showcase-bg {
        height: 400px;
        background-attachment: scroll; /* 移动端固定背景滚动卡顿，改为滚动 */
    }
    .showcase-content {
        margin-top: -100px;
    }
    .showcase-stats {
        gap: 20px;
        margin-bottom: 24px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .stat-desc {
        font-size: 0.7rem;
    }
    .btn-gold {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    /* 交通指南卡片单列 */
    .traffic-modern {
        gap: 16px;
    }
    .traffic-card {
        min-width: 100%;
        padding: 24px;
    }
    .traffic-card i {
        font-size: 2rem;
    }
    
    /* 通用按钮增大点击区域 */
    .btn, .btn-outline, .btn-sm, .btn-gold, .btn-link {
        display: inline-block;
        padding: 12px 20px;  /* 增大触摸区域 */
        font-size: 0.9rem;
    }
    .btn-sm {
        padding: 8px 16px;
    }
    
    /* 底部导航优化 */
    .footer {
        padding: 40px 0 24px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* 移动端隐藏桌面版横向滚动物理按钮 */
    .carousel-prev, .carousel-next {
        display: none;
    }
    
    /* 留言表单宽度适应 */
    .contact-form input, 
    .contact-form textarea {
        width: 100%;
        font-size: 16px; /* 防止iOS缩放 */
    }
}

/* 超小屏设备 (<=480px) */
@media (max-width: 480px) {
    .banner-text h2 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .guide-card-modern {
        flex: 0 0 90%;
    }
    .showcase-stats {
        gap: 12px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}

/* 修复iOS输入框自动缩放 */
@media (max-width: 768px) {
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* 触摸优化：增加可点击元素区域 */
.nav-links a,
.mobile-toggle,
.banner-prev,
.banner-next,
.banner-dots span,
.btn,
.btn-outline,
.btn-sm,
.btn-gold,
.btn-link,
.product-actions button,
.quick-view,
.carousel-prev,
.carousel-next {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

/* 横向滚动平滑滚动 */
.guide-carousel-container {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
}

/* 手机导航菜单美化 */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 24px 20px;
        z-index: 999;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }
    .nav-links.show {
        transform: translateY(0);
    }
    .nav-links li {
        margin: 12px 0;
    }
    .nav-links a {
        color: #1e2a32 !important;
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
        border-bottom: none;
    }
}

/* ========== 优化分页样式 ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border-radius: 40px;
    text-decoration: none;
    color: #2c3e2f;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid #e2e8e6;
}

/* 当前页（高亮） */
.pagination .current {
    background: #1b7b4e;
    border-color: #1b7b4e;
    color: white;
    cursor: default;
    box-shadow: 0 4px 8px rgba(27, 123, 78, 0.2);
}

/* 可点击的链接悬停效果 */
.pagination a:hover {
    background: #1b7b4e;
    border-color: #1b7b4e;
    color: white;
    transform: translateY(-2px);
}

/* 禁用状态（首页/末页不可用时，可根据实际需求添加类 disabled） */
.pagination a.disabled,
.pagination span.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 页码之间增加间距感 */
.pagination .page-num {
    margin: 0 2px;
}

/* 移动端调整 */
@media (max-width: 640px) {
    .pagination {
        gap: 8px;
    }
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
        padding: 0 8px;
    }
}


/* 活动列表页 - 现代化卡片网格 */
.event-list-modern {
    padding: 40px 0;
}

.page-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(27, 123, 78, 0.15);
}

.event-date {
    background: #eef3ea;
    padding: 12px 20px;
    font-weight: 600;
    color: #1b7b4e;
    border-bottom: 1px solid #e0e8dc;
    font-size: 0.9rem;
}

.event-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-info h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.event-info h2 a {
    text-decoration: none;
    color: #1e2a32;
    transition: color 0.2s;
}

.event-info h2 a:hover {
    color: #1b7b4e;
}

.event-info p {
    color: #5f6c66;
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn {
    align-self: flex-start;
    margin-top: auto;
}

/* 分页样式优化 */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border-radius: 40px;
    text-decoration: none;
    color: #2c3e2f;
    border: 1px solid #e2e8e6;
    transition: all 0.2s;
}

.pagination a:hover {
    background: #1b7b4e;
    color: white;
    border-color: #1b7b4e;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .event-info h2 {
        font-size: 1.2rem;
    }
    .pagination a,
    .pagination span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* ========== 攻略列表页现代化样式（限定作用域，不影响首页） ========== */
.guide-list-modern {
    padding: 40px 0;
}

.guide-list-modern .list-header {
    text-align: center;
    margin-bottom: 48px;
}

.guide-list-modern .page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a32;
    margin-bottom: 16px;
}

.guide-list-modern .title-decor {
    width: 60px;
    height: 3px;
    background: #c9a53b;
    margin: 0 auto 16px;
    border-radius: 3px;
}

.guide-list-modern .list-desc {
    color: #6b7a6f;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* 攻略卡片网格 */
.guide-list-modern .guide-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.guide-list-modern .guide-card-modern {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #f0f2ea;
}

.guide-list-modern .guide-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(27, 123, 78, 0.15);
    border-color: #d4e0d0;
}

.guide-list-modern .guide-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eef5ea, #e0ecdb);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1b7b4e;
    transition: all 0.2s ease;
}

.guide-list-modern .guide-card-modern:hover .guide-icon {
    background: #1b7b4e;
    color: white;
}

.guide-list-modern .guide-content-modern {
    flex: 1;
}

.guide-list-modern .guide-content-modern h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1e2a32;
    margin-bottom: 12px;
    line-height: 1.4;
}

.guide-list-modern .guide-content-modern p {
    color: #5f6c66;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.guide-list-modern .guide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: #8a9a8e;
    margin-bottom: 20px;
}

.guide-list-modern .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b7b4e;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.guide-list-modern .btn-link:hover {
    gap: 12px;
    color: #0f5f3a;
}

/* 分页样式优化（全局可用，不影响首页） */
.modern-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.modern-pagination .page-btn {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border-radius: 40px;
    text-decoration: none;
    color: #2c3e2f;
    border: 1px solid #e2e8e6;
    font-weight: 500;
    transition: all 0.2s;
}

.modern-pagination .page-btn:hover {
    background: #1b7b4e;
    border-color: #1b7b4e;
    color: white;
}

.modern-pagination .page-info {
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-left: 8px;
}

/* 移动端适配（限定作用域） */
@media (max-width: 768px) {
    .guide-list-modern {
        padding: 30px 0;
    }
    .guide-list-modern .page-title {
        font-size: 1.8rem;
    }
    .guide-list-modern .guide-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .guide-list-modern .guide-card-modern {
        padding: 20px;
        gap: 15px;
    }
    .guide-list-modern .guide-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    .guide-list-modern .guide-content-modern h2 {
        font-size: 1.2rem;
    }
    .guide-list-modern .guide-meta {
        gap: 12px;
        font-size: 0.75rem;
    }
    .modern-pagination {
        gap: 8px;
    }
    .modern-pagination .page-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .modern-pagination .page-info {
        width: 100%;
        text-align: center;
        margin-top: 12px;
        margin-left: 0;
    }
}


/* ========== 修复固定导航栏遮挡 ========== */
/* 全局主体预留导航栏高度（与 .header 实际高度对应） */
body {
    padding-top: 76px;
}

/* 移动端导航栏高度可能较小 */
@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
}

/* 全屏轮播不需要顶部间距，单独覆盖（如果首页有全屏轮播） */
.hero-fullscreen {
    margin-top: 0;  /* 抵消 body 的 padding，使其贴顶 */
    padding-top: 0;
}
@media (max-width: 768px) {
    .hero-fullscreen {
        margin-top: -66px;
    }
}

/* 确保列表页卡片等元素正常显示，无需额外调整 */



/* ========== 新闻列表页现代化样式 ========== */
.news-list-modern {
    padding: 40px 0;
}

.list-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a32;
    margin-bottom: 16px;
}

.title-decor {
    width: 60px;
    height: 3px;
    background: #c9a53b;
    margin: 0 auto 16px;
    border-radius: 3px;
}

.list-desc {
    color: #6b7a6f;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* 新闻卡片网格 */
.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.news-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(27, 123, 78, 0.15);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-modern:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(27, 123, 78, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.news-content-modern {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content-modern h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content-modern h2 a {
    text-decoration: none;
    color: #1e2a32;
    transition: color 0.2s;
}

.news-content-modern h2 a:hover {
    color: #1b7b4e;
}

.news-content-modern > p {
    color: #5f6c66;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-top: auto;
}

.news-meta-modern span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more {
    margin-left: auto;
    color: #1b7b4e;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 10px;
}

/* 分页样式优化（与之前保持一致） */
.modern-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.modern-pagination .page-btn {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border-radius: 40px;
    text-decoration: none;
    color: #2c3e2f;
    border: 1px solid #e2e8e6;
    font-weight: 500;
    transition: all 0.2s;
}

.modern-pagination .page-btn:hover {
    background: #1b7b4e;
    border-color: #1b7b4e;
    color: white;
}

.modern-pagination .page-info {
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-left: 8px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-list-modern {
        padding: 30px 0;
    }
    .page-title {
        font-size: 1.8rem;
    }
    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-image {
        height: 180px;
    }
    .news-content-modern {
        padding: 20px;
    }
    .news-content-modern h2 {
        font-size: 1.2rem;
    }
    .news-meta-modern {
        gap: 12px;
        font-size: 0.75rem;
    }
    .read-more {
        margin-left: 0;
        margin-top: 8px;
    }
    .modern-pagination {
        gap: 8px;
    }
    .modern-pagination .page-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .modern-pagination .page-info {
        width: 100%;
        text-align: center;
        margin-top: 12px;
        margin-left: 0;
    }
}


/* ========== 产品列表页现代化样式（限定作用域） ========== */
.product-list-modern {
    padding: 40px 0 60px;
    /* 如果有固定导航栏，增加顶部安全距离（如已全局处理可删除） */
    margin-top: 20px;  /* 可根据实际情况调整，避免被导航栏遮挡 */
}

.product-list-modern .list-header {
    text-align: center;
    margin-bottom: 48px;
}

.product-list-modern .page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a32;
    margin-bottom: 16px;
}

.product-list-modern .title-decor {
    width: 60px;
    height: 3px;
    background: #c9a53b;
    margin: 0 auto 16px;
    border-radius: 3px;
}

.product-list-modern .list-desc {
    color: #6b7a6f;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* 产品卡片网格 */
.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.product-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f2ea;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 36px -12px rgba(27, 123, 78, 0.15);
    border-color: #d4e0d0;
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f5f5f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-actions {
    opacity: 1;
}

.quick-view-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #1b7b4e;
    font-size: 1.1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-btn:hover {
    background: #1b7b4e;
    color: white;
}

.product-info-modern {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #1e2a32;
}

.product-info-modern p {
    color: #5f6c66;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b7b4e;
    margin-bottom: 12px;
}

.product-address-modern {
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1b7b4e;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-modern:hover {
    background: #0f5f3a;
    transform: translateY(-2px);
    gap: 12px;
}

/* 分页样式（复用已有 .modern-pagination，如未定义则补充） */
.modern-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.modern-pagination .page-btn {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border-radius: 40px;
    text-decoration: none;
    color: #2c3e2f;
    border: 1px solid #e2e8e6;
    font-weight: 500;
    transition: all 0.2s;
}

.modern-pagination .page-btn:hover {
    background: #1b7b4e;
    border-color: #1b7b4e;
    color: white;
}

.modern-pagination .page-info {
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-left: 8px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .product-list-modern {
        padding: 30px 0;
        margin-top: 10px;
    }
    .product-list-modern .page-title {
        font-size: 1.8rem;
    }
    .product-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-image {
        height: 200px;
    }
    .product-info-modern {
        padding: 16px;
    }
    .product-info-modern h3 {
        font-size: 1.15rem;
    }
    .product-price-modern {
        font-size: 1.3rem;
    }
    .btn-modern {
        padding: 10px 16px;
    }
    .modern-pagination {
        gap: 8px;
    }
    .modern-pagination .page-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .modern-pagination .page-info {
        width: 100%;
        text-align: center;
        margin-top: 12px;
        margin-left: 0;
    }
}


/* ========== 景点列表页现代化样式（限定作用域） ========== */
.scenic-list-modern {
    padding: 40px 0 60px;
    /* 避免固定导航栏遮挡，可根据实际情况调整值 */
    margin-top: 20px;
}

.scenic-list-modern .list-header {
    text-align: center;
    margin-bottom: 48px;
}

.scenic-list-modern .page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a32;
    margin-bottom: 16px;
}

.scenic-list-modern .title-decor {
    width: 60px;
    height: 3px;
    background: #c9a53b;
    margin: 0 auto 16px;
    border-radius: 3px;
}

.scenic-list-modern .list-desc {
    color: #6b7a6f;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* 景点卡片网格 */
.scenic-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.scenic-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f2ea;
}

.scenic-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 36px -12px rgba(27, 123, 78, 0.15);
    border-color: #d4e0d0;
}

.scenic-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f5f5f0;
}

.scenic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.scenic-card-modern:hover .scenic-image img {
    transform: scale(1.05);
}

.scenic-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(27, 123, 78, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
}

.scenic-info-modern {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scenic-info-modern h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #1e2a32;
}

.scenic-info-modern p {
    color: #5f6c66;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scenic-meta-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-bottom: 24px;
}

.scenic-meta-modern span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1b7b4e;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-modern:hover {
    background: #0f5f3a;
    transform: translateY(-2px);
    gap: 12px;
}

/* 分页样式（复用已有 .modern-pagination，如未定义则补充） */
.modern-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.modern-pagination .page-btn {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border-radius: 40px;
    text-decoration: none;
    color: #2c3e2f;
    border: 1px solid #e2e8e6;
    font-weight: 500;
    transition: all 0.2s;
}

.modern-pagination .page-btn:hover {
    background: #1b7b4e;
    border-color: #1b7b4e;
    color: white;
}

.modern-pagination .page-info {
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-left: 8px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .scenic-list-modern {
        padding: 30px 0;
        margin-top: 10px;
    }
    .scenic-list-modern .page-title {
        font-size: 1.8rem;
    }
    .scenic-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .scenic-image {
        height: 200px;
    }
    .scenic-info-modern {
        padding: 20px;
    }
    .scenic-info-modern h2 {
        font-size: 1.25rem;
    }
    .scenic-meta-modern {
        gap: 12px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    .btn-modern {
        padding: 10px 16px;
    }
    .modern-pagination {
        gap: 8px;
    }
    .modern-pagination .page-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .modern-pagination .page-info {
        width: 100%;
        text-align: center;
        margin-top: 12px;
        margin-left: 0;
    }
}


/* ========== 关于我们页面现代化样式 ========== */
.about-page-modern {
    padding: 0 0 60px;
}

/* 顶部品牌区 */
.about-page-modern .about-hero {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #fafaf5 0%, #f0f5ed 100%);
    border-radius: 0 0 48px 48px;
    margin-bottom: 48px;
}

.about-page-modern .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e2a32;
    margin-bottom: 16px;
}

.about-page-modern .title-decor {
    width: 80px;
    height: 3px;
    background: #c9a53b;
    margin: 0 auto 20px;
    border-radius: 3px;
}

.about-page-modern .about-slogan {
    font-size: 1.2rem;
    color: #1b7b4e;
    font-weight: 500;
    letter-spacing: 2px;
}

/* 主内容双栏布局 */
.about-page-modern .about-main {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.about-page-modern .about-intro {
    flex: 2;
    min-width: 260px;
}

.about-page-modern .about-form {
    flex: 1;
    min-width: 280px;
}

/* 简介内容样式 */
.about-page-modern .about-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a4a42;
    margin-bottom: 24px;
}

/* 数据统计 */
.about-page-modern .about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    background: #ffffff;
    border-radius: 32px;
    padding: 32px 24px;
    margin: 32px 0;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    justify-content: space-around;
}

.about-page-modern .stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.about-page-modern .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1b7b4e;
    line-height: 1;
}

.about-page-modern .stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7a6f;
    margin: 8px 0 4px;
}

.about-page-modern .stat-desc {
    font-size: 0.75rem;
    color: #8a9a8e;
}

/* 荣誉资质 */
.about-page-modern .about-honors {
    background: #fefaf0;
    border-radius: 28px;
    padding: 28px;
    margin: 32px 0;
}

.about-page-modern .about-honors h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e2a32;
}

.about-page-modern .about-honors ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.about-page-modern .about-honors li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #3a4a42;
}

.about-page-modern .about-honors li i {
    color: #c9a53b;
    width: 20px;
}

/* 联系我们卡片 */
.about-page-modern .about-contact {
    background: #eef5ea;
    border-radius: 28px;
    padding: 28px;
    margin-top: 32px;
}

.about-page-modern .about-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e2a32;
}

.about-page-modern .about-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.about-page-modern .about-contact i {
    width: 28px;
    color: #1b7b4e;
    font-size: 1.1rem;
}

/* 留言表单卡片 */
.about-page-modern .form-card {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaf0e6;
    position: sticky;
    top: 100px;
}

.about-page-modern .form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1e2a32;
}

.about-page-modern .form-card p {
    color: #6b7a6f;
    margin-bottom: 24px;
}

.about-page-modern .form-group {
    margin-bottom: 20px;
}

.about-page-modern .form-group input,
.about-page-modern .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee4de;
    border-radius: 28px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #fefef7;
}

.about-page-modern .form-group input:focus,
.about-page-modern .form-group textarea:focus {
    outline: none;
    border-color: #1b7b4e;
    box-shadow: 0 0 0 3px rgba(27, 123, 78, 0.1);
}

.about-page-modern .btn-submit {
    width: 100%;
    background: #1b7b4e;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.about-page-modern .btn-submit:hover {
    background: #0f5f3a;
    transform: translateY(-2px);
    gap: 12px;
}

.about-page-modern .form-privacy {
    font-size: 0.7rem;
    color: #8a9a8e;
    text-align: center;
    margin-top: 20px;
}

/* 移动端适配 */
@media (max-width: 992px) {
    .about-page-modern .about-main {
        flex-direction: column;
    }
    .about-page-modern .form-card {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .about-page-modern .about-hero {
        padding: 40px 20px;
        margin-bottom: 32px;
    }
    .about-page-modern .page-title {
        font-size: 1.8rem;
    }
    .about-page-modern .about-slogan {
        font-size: 1rem;
    }
    .about-page-modern .about-stats {
        gap: 20px;
        padding: 24px 16px;
    }
    .about-page-modern .stat-number {
        font-size: 1.5rem;
    }
    .about-page-modern .about-honors ul {
        grid-template-columns: 1fr;
    }
    .about-page-modern .about-contact p {
        flex-wrap: wrap;
    }
    .about-page-modern .form-card {
        padding: 24px;
    }
}


/* ========== 交通指南页面现代化样式 ========== */
.traffic-page-modern {
    padding: 40px 0 60px;
}

.traffic-page-modern .page-header {
    text-align: center;
    margin-bottom: 48px;
}

.traffic-page-modern .page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a32;
    margin-bottom: 16px;
}

.traffic-page-modern .title-decor {
    width: 60px;
    height: 3px;
    background: #c9a53b;
    margin: 0 auto 16px;
    border-radius: 3px;
}

.traffic-page-modern .page-desc {
    color: #6b7a6f;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 动态内容样式（后台编辑器输出） */
.traffic-page-modern .traffic-dynamic-content {
    margin-bottom: 48px;
    padding: 0 16px;
}
.traffic-page-modern .traffic-dynamic-content p,
.traffic-page-modern .traffic-dynamic-content ul {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* 交通方式卡片网格 */
.traffic-page-modern .traffic-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.traffic-page-modern .method-card {
    background: white;
    border-radius: 28px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid #f0f2ea;
}

.traffic-page-modern .method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(27, 123, 78, 0.15);
    border-color: #d4e0d0;
}

.traffic-page-modern .method-icon {
    font-size: 2.5rem;
    color: #1b7b4e;
    margin-bottom: 20px;
}

.traffic-page-modern .method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.traffic-page-modern .method-card p {
    color: #5f6c66;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* 地图区域 */
.traffic-page-modern .traffic-map {
    margin-bottom: 60px;
}

.traffic-page-modern .traffic-map h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.traffic-page-modern .map-container {
    width: 100%;
    height: 400px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.traffic-page-modern .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.traffic-page-modern .map-tip {
    font-size: 0.85rem;
    color: #8a9a8e;
    text-align: center;
}

/* 实用信息卡片 */
.traffic-page-modern .traffic-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.traffic-page-modern .tips-card {
    background: #fefaf0;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
}

.traffic-page-modern .tips-card i {
    font-size: 2rem;
    color: #c9a53b;
    margin-bottom: 16px;
}

.traffic-page-modern .tips-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.traffic-page-modern .tips-card p {
    color: #5f6c66;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 景区内部交通 */
.traffic-page-modern .internal-transport {
    background: #eef5ea;
    border-radius: 28px;
    padding: 32px;
    text-align: center;
}

.traffic-page-modern .internal-transport h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .traffic-page-modern {
        padding: 30px 0;
    }
    .traffic-page-modern .page-title {
        font-size: 1.8rem;
    }
    .traffic-page-modern .traffic-methods,
    .traffic-page-modern .traffic-tips {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .traffic-page-modern .method-card {
        padding: 20px 16px;
    }
    .traffic-page-modern .map-container {
        height: 280px;
    }
    .traffic-page-modern .internal-transport {
        padding: 24px;
    }
}

/* 示意图容器：居中 + 背景色 */
.traffic-page-modern .map-static-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2ea;      /* 浅灰背景，留白区域 */
    border-radius: 28px;
    overflow: hidden;
    min-height: 300px;               /* 保证最小高度，避免太矮 */
}

/* 图片：不强制铺满，按原始比例缩放，限制最大宽高 */
.traffic-page-modern .map-static-img img {
    max-width: 90%;                 /* 相对于容器宽度，最大90% */
    max-height: 400px;              /* 限制最大高度 */
    width: auto;
    height: auto;
    object-fit: contain;            /* 保持完整图片，不裁剪 */
    border-radius: 16px;
    transition: transform 0.3s;
}

/* 悬停效果可保留，但限制一下缩放范围 */
.traffic-page-modern .map-static-img:hover img {
    transform: scale(1.02);
}

/* 按钮覆盖层位置微调 */
.traffic-page-modern .map-overlay-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
}

/* 示意图容器：相对定位 + 居中 */
.traffic-page-modern .map-static-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2ea;
    border-radius: 28px;
    overflow: hidden;
    min-height: 300px;
}

/* 图片：限制铺满，居中显示 */
.traffic-page-modern .map-static-img img {
    max-width: 90%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.3s;
}

/* 悬浮效果 */
.traffic-page-modern .map-static-img:hover img {
    transform: scale(1.02);
}

/* 按钮：绝对定位，右下角 */
.traffic-page-modern .map-overlay-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

/* 按钮样式 */
.traffic-page-modern .btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.traffic-page-modern .btn-map:hover {
    background: #1b7b4e;
    transform: translateY(-2px);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .traffic-page-modern .map-static-img {
        min-height: 220px;
    }
    .traffic-page-modern .map-overlay-btn {
        bottom: 12px;
        right: 12px;
    }
    .traffic-page-modern .btn-map {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}


/* ========== 景点详情页现代化样式 ========== */
.scenic-article-modern {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* 文章头部 */
.scenic-article-modern .article-header {
    text-align: center;
    margin-bottom: 32px;
}

.scenic-article-modern .article-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e2a32;
    margin-bottom: 16px;
    line-height: 1.3;
}

.scenic-article-modern .article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: #8a9a8e;
}

.scenic-article-modern .article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 主图 */
.scenic-article-modern .article-feature-image {
    margin: 24px 0 32px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
}

.scenic-article-modern .article-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文章内容（后台编辑器输出） */
.scenic-article-modern .article-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3a4a42;
    margin-bottom: 48px;
}

.scenic-article-modern .article-content p {
    margin-bottom: 1.2em;
}

.scenic-article-modern .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
}

.scenic-article-modern .article-content h2,
.scenic-article-modern .article-content h3 {
    margin: 1.5em 0 0.5em;
}

/* 信息卡片（开放时间、门票等） */
.scenic-article-modern .article-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #f8faf6;
    border-radius: 32px;
    padding: 28px;
    margin-bottom: 48px;
}

.scenic-article-modern .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.scenic-article-modern .info-item i {
    font-size: 1.8rem;
    color: #1b7b4e;
}

.scenic-article-modern .info-item span {
    font-size: 0.85rem;
    color: #8a9a8e;
    text-transform: uppercase;
}

.scenic-article-modern .info-item strong {
    font-size: 1rem;
    font-weight: 600;
    color: #1e2a32;
}

/* 相关推荐 */
.scenic-article-modern .related-scenic {
    margin-top: 32px;
}

.scenic-article-modern .related-scenic h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scenic-article-modern .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.scenic-article-modern .related-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.scenic-article-modern .related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 123, 78, 0.1);
}

.scenic-article-modern .related-card a {
    text-decoration: none;
    color: inherit;
}

.scenic-article-modern .related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.scenic-article-modern .related-info {
    padding: 16px;
}

.scenic-article-modern .related-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e2a32;
}

.scenic-article-modern .related-info p {
    font-size: 0.85rem;
    color: #6b7a6f;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .scenic-article-modern {
        padding: 30px 16px;
    }
    .scenic-article-modern .article-title {
        font-size: 1.8rem;
    }
    .scenic-article-modern .article-meta {
        gap: 16px;
        font-size: 0.8rem;
    }
    .scenic-article-modern .article-info-box {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
    }
    .scenic-article-modern .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 关于我们聚合页板块样式 ========== */
.about-page-modern .about-section {
    margin-bottom: 48px;
}
.about-page-modern .about-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e2a32;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #c9a53b;
    display: inline-block;
}
.about-page-modern .about-section h2 i {
    color: #1b7b4e;
    margin-right: 12px;
}
.about-page-modern .about-content {
    line-height: 1.8;
    color: #3a4a42;
}
.about-page-modern .about-honors ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.about-page-modern .about-honors li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fefaf0;
    padding: 10px 16px;
    border-radius: 40px;
}
.about-page-modern .about-contact p {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #eef2e8;
}

/* ========== 景区动态聚合页样式 ========== */
.dynamics-page {
    padding: 40px 0;
}
.dynamics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.dynamics-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}
.dynamics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(27,123,78,0.15);
}
.card-header {
    padding: 20px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eef2e8;
    margin-bottom: 12px;
}
.card-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}
.card-header h2 i {
    color: #1b7b4e;
    margin-right: 8px;
}
.more-link {
    font-size: 0.85rem;
    color: #8a9a8e;
    text-decoration: none;
    transition: 0.2s;
}
.more-link:hover {
    color: #1b7b4e;
}
.dynamics-list {
    list-style: none;
    padding: 0 24px 24px 24px;
    margin: 0;
}
.dynamics-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f2ea;
}
.dynamics-list li:last-child {
    border-bottom: none;
}
.dynamics-list .date {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1b7b4e;
    background: #eef5ea;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
.dynamics-list a {
    text-decoration: none;
    color: #2c3e2f;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: 0.2s;
    flex: 1;
}
.dynamics-list a:hover {
    color: #1b7b4e;
}

/* ========== 搜索功能样式 ========== */
.search-area {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}
.search-form-desktop {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    border-radius: 40px;
    padding: 4px 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.search-form-desktop:focus-within {
    background: white;
    border-color: #1b7b4e;
    box-shadow: 0 0 0 3px rgba(27,123,78,0.1);
}
.search-form-desktop input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 0.9rem;
    width: 200px;
    outline: none;
}
.search-form-desktop button {
    background: transparent;
    border: none;
    color: #5f6c66;
    cursor: pointer;
    padding: 0 8px;
    font-size: 1rem;
}
.search-form-desktop button:hover {
    color: #1b7b4e;
}
.search-icon-mobile {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #2c3e2f;
    padding: 6px;
}
.mobile-search-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 100;
    border-top: 1px solid #eef2e8;
}
.mobile-search-panel.active {
    display: block;
}
.mobile-search-panel form {
    display: flex;
    gap: 8px;
}
.mobile-search-panel input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 1rem;
    outline: none;
}
.mobile-search-panel button {
    background: #1b7b4e;
    border: none;
    border-radius: 40px;
    padding: 0 20px;
    color: white;
    cursor: pointer;
}
@media (max-width: 992px) {
    .search-form-desktop {
        display: none;
    }
    .search-icon-mobile {
        display: block;
    }
    .search-area {
        margin-right: 10px;
    }
}

/* ========== 搜索结果页面样式 ========== */
.search-results-page {
    padding: 40px 0;
    min-height: 60vh;
}
.search-results-list {
    margin: 40px 0;
}
.search-item {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.2s;
}
.search-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(27,123,78,0.1);
}
.search-item-category {
    display: inline-block;
    background: #eef5ea;
    color: #1b7b4e;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.search-item h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.search-item h3 a {
    text-decoration: none;
    color: #1e2a32;
}
.search-item h3 a:hover {
    color: #1b7b4e;
}
.search-item-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-bottom: 16px;
}
.search-item p {
    color: #5f6c66;
    line-height: 1.6;
    margin-bottom: 16px;
}
.no-result {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 32px;
}
.no-result i {
    color: #cbd5e0;
    margin-bottom: 20px;
}
.suggestion-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.suggestion-links a {
    background: #eef5ea;
    padding: 8px 24px;
    border-radius: 40px;
    text-decoration: none;
    color: #1b7b4e;
}
.suggestion-links a:hover {
    background: #1b7b4e;
    color: white;
}


/* ========== 美食列表页样式 ========== */
.food-list-modern, .lodging-list-modern {
    padding: 40px 0;
}
.food-grid-full, .lodging-grid-full {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}
.food-card-full, .lodging-card-full {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.food-card-full:hover, .lodging-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(27,123,78,0.15);
}
.food-img-full, .lodging-img-full {
    flex: 0 0 280px;
    height: 200px;
    overflow: hidden;
}
.food-img-full img, .lodging-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.food-card-full:hover .food-img-full img,
.lodging-card-full:hover .lodging-img-full img {
    transform: scale(1.05);
}
.food-info-full, .lodging-info-full {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.food-info-full h2, .lodging-info-full h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.food-info-full p, .lodging-info-full p {
    color: #5f6c66;
    line-height: 1.5;
    margin-bottom: 16px;
}
.food-meta, .lodging-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b7b4e;
}
.lodging-meta .price {
    color: #c9a53b;
}
.lodging-features-full {
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #8a9a8e;
}
.lodging-features-full i {
    margin-right: 6px;
    color: #1b7b4e;
}
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1b7b4e;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    align-self: flex-start;
    transition: 0.2s;
}
.btn-modern:hover {
    background: #0f5f3a;
    gap: 12px;
}

/* 美食/住宿详情页样式 */
.food-article-modern, .lodging-article-modern {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.food-article-modern .article-title,
.lodging-article-modern .article-title {
    font-size: 2rem;
}
.food-info-box, .lodging-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #f8faf6;
    border-radius: 32px;
    padding: 24px;
    margin: 32px 0;
}
.food-info-box .info-item,
.lodging-info-box .info-item {
    text-align: center;
}
.food-info-box i,
.lodging-info-box i {
    font-size: 1.8rem;
    color: #1b7b4e;
    display: block;
    margin-bottom: 8px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .food-img-full, .lodging-img-full {
        flex: 0 0 100%;
        height: 200px;
    }
    .food-info-full, .lodging-info-full {
        padding: 18px;
    }
    .food-info-full h2, .lodging-info-full h2 {
        font-size: 1.2rem;
    }
    .food-article-modern .article-title,
    .lodging-article-modern .article-title {
        font-size: 1.5rem;
    }
}

/* ========== 民俗技艺列表页样式 ========== */
.folk-list-modern {
    padding: 40px 0;
}
.folk-grid-full {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}
.folk-card-full {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.folk-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(27,123,78,0.15);
}
.folk-img-full {
    flex: 0 0 280px;
    height: 200px;
    overflow: hidden;
}
.folk-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.folk-card-full:hover .folk-img-full img {
    transform: scale(1.05);
}
.folk-info-full {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.folk-info-full h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.folk-info-full p {
    color: #5f6c66;
    line-height: 1.5;
    margin-bottom: 16px;
}
.folk-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-bottom: 20px;
}
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1b7b4e;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    align-self: flex-start;
    transition: 0.2s;
}
.btn-modern:hover {
    background: #0f5f3a;
    gap: 12px;
}

/* ========== 民俗技艺详情页样式 ========== */
.folk-article-modern {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.folk-article-modern .article-title {
    font-size: 2rem;
}
.folk-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #fefaf0;
    border-radius: 32px;
    padding: 24px;
    margin: 32px 0;
}
.folk-info-box .info-item {
    text-align: center;
}
.folk-info-box i {
    font-size: 1.8rem;
    color: #c9a53b;
    display: block;
    margin-bottom: 8px;
}
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eef2e8;
}
.article-navigation a {
    text-decoration: none;
    color: #1b7b4e;
}
@media (max-width: 768px) {
    .folk-img-full {
        flex: 0 0 100%;
        height: 200px;
    }
    .folk-info-full {
        padding: 18px;
    }
    .folk-info-full h2 {
        font-size: 1.2rem;
    }
    .folk-article-modern .article-title {
        font-size: 1.5rem;
    }
}

/* ========== 通知通告列表页样式 ========== */
.notice-list-modern {
    padding: 40px 0;
}
.notice-grid-full {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}
.notice-card-full {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    border-left: 4px solid #c9a53b;
}
.notice-card-full:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 25px -10px rgba(27,123,78,0.1);
}
.notice-date {
    text-align: center;
    min-width: 70px;
    background: #fefaf0;
    border-radius: 16px;
    padding: 12px 8px;
}
.notice-date .day {
    font-size: 28px;
    font-weight: 700;
    color: #1b7b4e;
    display: block;
    line-height: 1;
}
.notice-date .month {
    font-size: 12px;
    color: #8a9a8e;
}
.notice-info-full {
    flex: 1;
}
.notice-info-full h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.notice-info-full h2 a {
    text-decoration: none;
    color: #1e2a32;
}
.notice-info-full h2 a:hover {
    color: #1b7b4e;
}
.notice-info-full p {
    color: #5f6c66;
    line-height: 1.5;
    margin-bottom: 12px;
}
.notice-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #8a9a8e;
    margin-bottom: 16px;
}

/* ========== 通知通告详情页 ========== */
.notice-article-modern {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.notice-article-modern .article-title {
    font-size: 1.8rem;
}
.notice-attachment {
    background: #f8faf6;
    border-radius: 24px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.btn-download {
    background: #1b7b4e;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.2s;
}
.btn-download:hover {
    background: #0f5f3a;
}
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eef2e8;
}
@media (max-width: 768px) {
    .notice-card-full {
        flex-direction: column;
        gap: 16px;
    }
    .notice-date {
        align-self: flex-start;
    }
    .notice-info-full h2 {
        font-size: 1.1rem;
    }
}