/* ==================== 页面专用样式 ====================
   广府旅游指南 - 各页面专用样式汇总
   注意：此文件包含所有页面的内联样式
   建议按需分割为独立文件以提高加载性能
*/

/* ==================== about.html - Section 1 ==================== */
/* ==================== 页面横幅区域 ==================== */
        .page-hero {
            position: relative;
            height: 320px;
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/guangzhou_cityview_bg.jpg') center/cover;
            opacity: 0.15;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(92, 0, 0, 0.7), rgba(139, 0, 0, 0.85));
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-white);
            padding: 0 20px;
        }

        .page-hero .hero-icon {
            font-size: 64px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 16px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
        }

        .page-hero .hero-subtitle {
            font-size: 20px;
            color: var(--accent-gold-light);
            letter-spacing: 4px;
        }

        .page-hero .hero-border {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
            z-index: 2;
        }

        /* 面包屑导航 */
        .breadcrumb-nav {
            background: linear-gradient(to right, var(--bg-light-gray), var(--bg-white));
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb-nav .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.15s ease;
        }

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

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

        .breadcrumb-nav .current {
            color: var(--primary-red);
            font-weight: 500;
        }

        /* ==================== 主内容区域 ==================== */
        .about-main {
            padding: 40px 0 60px;
        }

        .section-wrapper {
            margin-bottom: 50px;
        }

        /* 通用标题样式 */
        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .section-title h2 {
            font-size: 26px;
            color: var(--primary-red);
        }

        .section-title .title-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 16px;
        }

        .section-title .title-en {
            font-size: 12px;
            color: var(--text-light);
            margin-left: auto;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ==================== 广府概况区 ==================== */
        .overview-section {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 30px;
        }

        .overview-content {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .overview-content p {
            font-size: 15px;
            line-height: 2;
            color: var(--text-secondary);
            text-align: justify;
            margin-bottom: 20px;
        }

        .overview-content p:first-of-type::first-letter {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-red);
            float: left;
            margin-right: 8px;
            line-height: 1;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 30px;
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Arial, sans-serif;
        }

        .stat-card {
            background: linear-gradient(
                135deg,
                var(--primary-red),
                var(--primary-red-light)
            );
            padding: 24px 20px;
            text-align: center;
            border-radius: 8px;
            color: var(--text-white);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(var(--text-white-rgb), 0.1) 0%,
                transparent 50%
            );
            pointer-events: none;
            z-index: -1;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .stat-card .stat-value {
            font-size: 32px;
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
            line-height: 1.2;
            letter-spacing: 1px;
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;

            color: var(--primary-red);
        }

        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-primary);
            font-weight: 600;
            letter-spacing: 0.5px;
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }

        .overview-sidebar {
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .info-panel-header {
            background: linear-gradient(to right, var(--primary-red), var(--primary-red-light));
            padding: 16px 20px;
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-panel-header i {
            color: var(--accent-gold);
            font-size: 20px;
        }

        .info-panel-header h3 {
            font-size: 16px;
        }

        .info-panel-body {
            padding: 20px;
        }

        .info-item {
            display: flex;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-light);
        }

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

        .info-item .info-label {
            width: 100px;
            font-size: 13px;
            color: var(--text-light);
            flex-shrink: 0;
        }

        .info-item .info-value {
            flex: 1;
            font-size: 13px;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* ==================== 城市版图区 ==================== */
        .cities-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .cities-header h2 {
            font-size: 28px;
            color: var(--primary-red);
            margin-bottom: 8px;
        }

        .cities-header p {
            font-size: 14px;
            color: var(--text-light);
        }

        .cities-header .cities-highlight {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .city-card {
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .city-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .city-card .city-image {
            position: relative;
            height: 140px;
            overflow: hidden;
        }

        .city-card .city-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .city-card:hover .city-image img {
            transform: scale(1.1);
        }

        .city-card .city-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent-gold);
            color: var(--primary-red-dark);
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        .city-card .city-info {
            padding: 16px;
        }

        .city-card .city-name {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .city-card .city-name-en {
            font-size: 11px;
            color: var(--text-light);
            font-family: "Noto Sans SC", sans-serif;
        }

        .city-card .city-desc {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-top: 8px;
        }

        /* ==================== 文化特色区 ==================== */
        .culture-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .culture-box {
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .culture-box-header {
            background: linear-gradient(to right, var(--primary-red), var(--primary-red-light));
            padding: 16px 20px;
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .culture-box-header i {
            color: var(--accent-gold);
            font-size: 20px;
        }

        .culture-box-header h3 {
            font-size: 18px;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            padding: 20px;
        }

        .culture-item {
            text-align: center;
            padding: 20px 12px;
            background: var(--bg-cream);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .culture-item:hover {
            background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
        }

        .culture-item .culture-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .culture-item h4 {
            font-size: 14px;
            color: var(--primary-red);
            margin-bottom: 6px;
        }

        .culture-item p {
            font-size: 11px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* 民俗节庆时间轴 */
        .festival-timeline {
            padding: 20px;
        }

        .festival-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px dashed var(--border-light);
        }

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

        .festival-item .festival-date {
            width: 80px;
            flex-shrink: 0;
            text-align: center;
            padding: 10px;
            background: var(--primary-red);
            color: var(--text-white);
            border-radius: 6px;
        }

        .festival-item .festival-date .date-month {
            font-size: 12px;
        }

        .festival-item .festival-date .date-day {
            font-size: 20px;
            font-weight: 700;
            display: block;
        }

        .festival-item .festival-info h4 {
            font-size: 15px;
            color: var(--primary-red);
            margin-bottom: 6px;
        }

        .festival-item .festival-info p {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ==================== 历史沿革区 ==================== */
        .history-section {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .history-timeline {
            position: relative;
            padding: 20px 0;
        }

        .history-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--accent-gold), var(--primary-red));
            transform: translateX(-50%);
        }

        .history-item {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }

        .history-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .history-item .history-content {
            width: calc(50% - 40px);
            background: var(--bg-cream);
            padding: 24px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }

        .history-item:nth-child(odd) .history-content {
            border-left: none;
            border-right: 4px solid var(--accent-gold);
        }

        .history-item .history-content h4 {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 8px;
        }

        .history-item .history-content .dynasty {
            font-size: 13px;
            color: var(--accent-gold-dark);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .history-item .history-content p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .history-item .history-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--accent-gold);
            border: 4px solid var(--bg-white);
            border-radius: 50%;
            z-index: 2;
        }

        /* ==================== 自然地理区 ==================== */
        .geography-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .geo-box {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .geo-box h3 {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent-gold);
        }

        .geo-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .geo-stat {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: var(--bg-cream);
            border-radius: 8px;
        }

        .geo-stat i {
            font-size: 28px;
            color: var(--accent-gold);
        }

        .geo-stat .geo-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-red);
        }

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

        .geo-box p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .resource-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .resource-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: var(--bg-cream);
            border-radius: 6px;
        }

        .resource-item i {
            color: var(--accent-gold);
            font-size: 18px;
        }

        .resource-item span {
            font-size: 13px;
            color: var(--text-primary);
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 1200px) {
            .overview-section {
                grid-template-columns: 1fr;
            }

            .cities-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .culture-section {
                grid-template-columns: 1fr;
            }

            .geography-section {
                grid-template-columns: 1fr;
            }

            .history-timeline::before {
                left: 20px;
            }

            .history-item,
            .history-item:nth-child(odd) {
                flex-direction: row;
            }

            .history-item .history-content,
            .history-item:nth-child(odd) .history-content {
                width: calc(100% - 60px);
                margin-left: 50px;
                border: none;
                border-left: 4px solid var(--accent-gold);
            }

            .history-item .history-dot {
                left: 20px;
            }
        }

        @media (max-width: 992px) {
            .page-hero h1 {
                font-size: 36px;
            }

            .overview-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-card {
                padding: 20px 16px;
            }

            .stat-card .stat-value {
                font-size: 26px;
            }

            .stat-card .stat-label {
                font-size: 12px;
            }

            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .culture-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .geo-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                height: 240px;
            }

            .page-hero h1 {
                font-size: 28px;
                letter-spacing: 4px;
            }

            .page-hero .hero-icon {
                font-size: 48px;
            }

            .overview-stats {
                grid-template-columns: 1fr 1fr;
            }

            .stat-card {
                padding: 18px 14px;
            }

            .stat-card .stat-value {
                font-size: 24px;
                letter-spacing: 0.5px;
            }

            .stat-card .stat-label {
                font-size: 11px;
            }

            .cities-grid {
                grid-template-columns: 1fr;
            }

            .culture-grid {
                grid-template-columns: 1fr;
            }

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

            .section-title .title-en {
                display: none;
            }

            .festival-item {
                flex-direction: column;
            }

            .festival-item .festival-date {
                width: 100%;
                display: flex;
                gap: 8px;
                align-items: center;
            }
        }

/* ==================== food.html - Section 1 ==================== */
/* ==================== 页面横幅区域 ==================== */
        .page-hero {
            position: relative;
            height: 320px;
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/food_bg_about.jpg') center/cover;
            opacity: 0.15;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(92, 0, 0, 0.7), rgba(139, 0, 0, 0.85));
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-white);
            padding: 0 20px;
        }

        .page-hero .hero-icon {
            font-size: 64px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 16px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
        }

        .page-hero .hero-subtitle {
            font-size: 20px;
            color: var(--accent-gold-light);
            letter-spacing: 4px;
        }

        .page-hero .hero-border {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
            z-index: 2;
        }

        /* 面包屑导航 */
        .breadcrumb-nav {
            background: linear-gradient(to right, var(--bg-light-gray), var(--bg-white));
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb-nav .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.15s ease;
        }

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

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

        .breadcrumb-nav .current {
            color: var(--primary-red);
            font-weight: 500;
        }

        /* ==================== 主内容区域 ==================== */
        .food-main {
            padding: 40px 0 60px;
        }

        /* ==================== 筛选导航区 ==================== */
        .filter-section {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-label {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-label i {
            color: var(--accent-gold);
        }

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

        .filter-btn {
            padding: 8px 18px;
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--bg-light-gray);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

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

        .filter-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
        }

        /* ==================== 结果统计区 ==================== */
        .results-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 16px 20px;
            background: linear-gradient(to right, var(--bg-cream), var(--bg-white));
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }

        .results-count {
            font-size: 15px;
            color: var(--text-secondary);
        }

        .results-count strong {
            color: var(--primary-red);
            font-weight: 700;
        }

        .clear-filter-btn {
            padding: 8px 20px;
            font-size: 13px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .clear-filter-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        /* ==================== 广府饮食文化专区 ==================== */
        .culture-section {
            background: linear-gradient(135deg, #f9f5e7 0%, #fffaf0 100%);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 12px rgba(201, 169, 110, 0.15);
        }

        .culture-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 40px;
        }

        .culture-left h3,
        .culture-right h3 {
            font-family: "Noto Serif SC", serif;
            font-size: 22px;
            color: var(--primary-red);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .culture-left h3 i,
        .culture-right h3 i {
            color: var(--accent-gold);
        }

        .culture-left p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        .four-kings {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .king-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: var(--bg-white);
            border-radius: 24px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        }

        .king-item i {
            color: var(--accent-gold);
            font-size: 16px;
        }

        .king-item span {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }

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

        .seasonal-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: var(--bg-white);
            border-radius: 8px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        }

        .seasonal-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 18px;
        }

        .seasonal-content {
            flex: 1;
        }

        .seasonal-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .seasonal-desc {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* ==================== 区域标题 ==================== */
        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .section-header h2 {
            font-size: 22px;
            color: var(--primary-red);
            font-family: "Noto Serif SC", serif;
        }

        .section-header .header-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 16px;
        }

        /* ==================== 美食网格区 ==================== */
        .food-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .food-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .food-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .food-card .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .food-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .food-card:hover .card-image img {
            transform: scale(1.08);
        }

        .food-card .card-category {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary-red);
            color: var(--text-white);
            font-size: 11px;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        .food-card .card-badge {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px 16px 12px;
        }

        .food-card .card-badge span {
            display: inline-block;
            padding: 4px 12px;
            background: var(--accent-gold);
            color: var(--primary-red-dark);
            font-size: 12px;
            border-radius: 4px;
            font-weight: 600;
        }

        .food-card .card-favorite {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            z-index: 10;
        }

        .food-card .card-favorite:hover {
            background: var(--text-white);
            color: var(--primary-red);
            transform: scale(1.1);
        }

        .food-card .card-favorite.active {
            color: var(--primary-red);
        }

        .food-card .card-favorite.active i::before {
            content: '\f004';
        }

        .food-card .card-body {
            padding: 20px;
        }

        .food-card .card-title {
            font-size: 20px;
            color: var(--primary-red);
            margin-bottom: 10px;
            font-family: "Noto Serif SC", serif;
            font-weight: 600;
        }

        .food-card .card-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
        }

        .food-card .card-rating .stars {
            color: var(--accent-gold);
            font-size: 14px;
        }

        .food-card .card-rating .rating-value {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 600;
        }

        .food-card .card-taste {
            font-size: 13px;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 14px;
        }

        .food-card .card-ingredients {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .food-card .card-ingredients span {
            font-size: 12px;
            padding: 4px 10px;
            background: var(--bg-light-gray);
            color: var(--text-secondary);
            border-radius: 4px;
        }

        .food-card .card-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 14px;
            border-top: 1px solid var(--border-light);
            margin-bottom: 16px;
        }

        .food-card .card-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .food-card .card-info-item i {
            color: var(--accent-gold);
            font-size: 14px;
            width: 16px;
        }

        .food-card .card-footer {
            display: flex;
            gap: 12px;
        }

        .food-card .detail-btn {
            flex: 1;
            padding: 10px 20px;
            font-size: 14px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .food-card .detail-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        /* ==================== 老字号推荐区 ==================== */
        .timeless-section {
            margin-bottom: 40px;
        }

        .timeless-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .timeless-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--accent-gold);
        }

        .timeless-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .timeless-card h4 {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 8px;
            font-family: "Noto Serif SC", serif;
        }

        .timeless-card .year {
            display: inline-block;
            font-size: 12px;
            color: var(--text-white);
            background: var(--primary-red);
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .timeless-card .signature {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .timeless-card .signature strong {
            color: var(--accent-gold-dark);
        }

        .timeless-card .desc {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ==================== 时令推荐区 ==================== */
        .seasonal-section {
            margin-bottom: 40px;
        }

        .seasonal-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .seasonal-card {
            display: flex;
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .seasonal-card:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .seasonal-card .seasonal-img {
            width: 200px;
            flex-shrink: 0;
        }

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

        .seasonal-card .seasonal-content {
            padding: 20px;
            flex: 1;
        }

        .seasonal-card .seasonal-content h4 {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 10px;
            font-family: "Noto Serif SC", serif;
        }

        .seasonal-card .seasonal-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ==================== 分页导航 ==================== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination-btn {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-secondary);
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pagination-btn:hover:not(.disabled):not(.active) {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .pagination-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

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

        /* ==================== 模态框 ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-white);
            border-radius: 12px;
            max-width: 850px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary-red);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.6);
            border: none;
            border-radius: 50%;
            color: var(--text-white);
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        .modal-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .modal-body {
            padding: 36px;
        }

        .modal-title {
            font-size: 32px;
            color: var(--primary-red);
            margin-bottom: 20px;
            font-family: "Noto Serif SC", serif;
        }

        .modal-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            padding: 16px 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 24px;
        }

        .modal-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            padding: 6px 14px;
            background: var(--bg-light-gray);
            border-radius: 20px;
        }

        .modal-meta-item i {
            color: var(--accent-gold);
        }

        .modal-meta-item .rating-stars {
            color: var(--accent-gold);
        }

        .modal-section {
            margin-bottom: 28px;
        }

        .modal-section h3 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-section h3 i {
            color: var(--accent-gold);
        }

        .modal-section p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            text-align: justify;
        }

        .restaurant-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .restaurant-item {
            padding: 16px;
            background: var(--bg-cream);
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }

        .restaurant-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .restaurant-branch {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .restaurant-reason {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .tips-box {
            background: var(--bg-light-gray);
            padding: 20px;
            border-radius: 8px;
        }

        .tips-box p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .modal-footer {
            display: flex;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
        }

        .modal-btn {
            flex: 1;
            padding: 14px 24px;
            font-size: 15px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 500;
        }

        .modal-btn-primary {
            background: var(--primary-red);
            border: none;
            color: var(--text-white);
        }

        .modal-btn-primary:hover {
            background: var(--primary-red-light);
        }

        .modal-btn-secondary {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold-dark);
        }

        .modal-btn-secondary:hover {
            background: var(--accent-gold-light);
            border-color: var(--accent-gold);
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 1200px) {
            .food-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeless-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .page-hero h1 {
                font-size: 36px;
            }
            .culture-grid {
                grid-template-columns: 1fr;
            }
            .food-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeless-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .seasonal-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                height: 240px;
            }
            .page-hero h1 {
                font-size: 28px;
                letter-spacing: 4px;
            }
            .page-hero .hero-icon {
                font-size: 48px;
            }
            .food-grid {
                grid-template-columns: 1fr;
            }
            .timeless-grid {
                grid-template-columns: 1fr;
            }
            .seasonal-card {
                flex-direction: column;
            }
            .seasonal-card .seasonal-img {
                width: 100%;
                height: 160px;
            }
            .results-info {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .filter-buttons {
                gap: 8px;
            }
            .filter-btn {
                padding: 6px 14px;
                font-size: 12px;
            }
            .modal-body {
                padding: 24px;
            }
            .modal-title {
                font-size: 24px;
            }
            .modal-meta {
                flex-direction: column;
                gap: 10px;
            }
            .modal-footer {
                flex-direction: column;
            }
            .culture-section {
                padding: 24px;
            }
        }

/* ==================== guide.html - Section 1 ==================== */
/* ==================== 页面横幅区域 ==================== */
        .page-hero {
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/baiyun_mountain.jpg') center/cover;
            opacity: 0.15;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(92, 0, 0, 0.7), rgba(139, 0, 0, 0.85));
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-white);
        }

        .page-hero .hero-icon {
            font-size: 60px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 6px;
            margin-bottom: 12px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
        }

        .page-hero .hero-subtitle {
            font-size: 18px;
            color: var(--accent-gold-light);
            letter-spacing: 3px;
        }

        /* 面包屑导航 */
        .breadcrumb-nav {
            background: var(--bg-light-gray);
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb-nav .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.15s ease;
        }

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

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

        .breadcrumb-nav .current {
            color: var(--primary-red);
            font-weight: 500;
        }

        /* ==================== 主内容区域 ==================== */
        .guide-main {
            padding: 40px 0 60px;
        }

        /* ==================== 攻略分类导航区 ==================== */
        .category-section {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .category-tab {
            padding: 10px 24px;
            font-size: 14px;
            color: var(--text-secondary);
            background: var(--bg-light-gray);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

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

        .category-tab.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
        }

        /* ==================== 区域标题 ==================== */
        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .section-header h2 {
            font-size: 22px;
            color: var(--primary-red);
            font-family: "Noto Serif SC", serif;
        }

        .section-header .header-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 18px;
        }

        /* ==================== 精选攻略推荐区 ==================== */
        .guides-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .guide-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .guide-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .guide-card .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .guide-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .guide-card:hover .card-image img {
            transform: scale(1.08);
        }

        .guide-card .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 50px 16px 12px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        }

        .guide-card .card-overlay .card-day {
            display: inline-block;
            padding: 4px 12px;
            background: var(--primary-red);
            color: var(--text-white);
            font-size: 12px;
            border-radius: 4px;
            font-weight: 600;
        }

        .guide-card .card-favorite {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }

        .guide-card .card-favorite:hover {
            background: var(--text-white);
            color: var(--primary-red);
            transform: scale(1.1);
        }

        .guide-card .card-favorite.active {
            color: var(--primary-red);
        }

        .guide-card .card-favorite.active i::before {
            content: '\f004';
        }

        .guide-card .card-body {
            padding: 20px;
        }

        .guide-card .card-title {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 12px;
            font-family: "Noto Serif SC", serif;
            font-weight: 600;
            line-height: 1.4;
        }

        .guide-card .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .guide-card .card-meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .guide-card .card-meta-item i {
            color: var(--accent-gold);
        }

        .guide-card .card-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .guide-card .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .guide-card .card-tag {
            font-size: 11px;
            padding: 4px 10px;
            background: var(--bg-light-gray);
            color: var(--text-secondary);
            border-radius: 12px;
        }

        .guide-card .card-btn {
            width: 100%;
            padding: 12px;
            font-size: 14px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .guide-card .card-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        /* ==================== 实用锦囊区 ==================== */
        .tips-section {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .tip-card {
            text-align: center;
            padding: 24px 16px;
            background: var(--bg-light-gray);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            background: var(--bg-cream);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .tip-card .tip-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 28px;
            color: var(--text-white);
        }

        .tip-card h4 {
            font-size: 15px;
            color: var(--primary-red);
            margin-bottom: 8px;
        }

        .tip-card p {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ==================== 当季推荐区 ==================== */
        .seasonal-section {
            margin-bottom: 40px;
        }

        .seasonal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .seasonal-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .seasonal-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .seasonal-card .seasonal-image {
            height: 160px;
            overflow: hidden;
        }

        .seasonal-card .seasonal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .seasonal-card .seasonal-body {
            padding: 20px;
        }

        .seasonal-card .seasonal-tag {
            display: inline-block;
            padding: 4px 10px;
            background: var(--accent-gold);
            color: var(--primary-red-dark);
            font-size: 11px;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .seasonal-card h4 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 8px;
            font-family: "Noto Serif SC", serif;
        }

        .seasonal-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ==================== 用户评价区 ==================== */
        .reviews-section {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .review-card {
            padding: 24px;
            background: var(--bg-light-gray);
            border-radius: 12px;
            border-left: 4px solid var(--accent-gold);
        }

        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .review-card .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent-gold);
        }

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

        .review-card .review-user h4 {
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .review-card .review-user p {
            font-size: 12px;
            color: var(--text-light);
        }

        .review-card .review-content {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .review-card .review-guide {
            font-size: 13px;
            color: var(--primary-red);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .review-card .review-guide:hover {
            text-decoration: underline;
        }

        /* ==================== 分页导航 ==================== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination-btn {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-secondary);
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pagination-btn:hover:not(.disabled):not(.active) {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .pagination-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* ==================== 模态框 ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-white);
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary-red);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.6);
            border: none;
            border-radius: 50%;
            color: var(--text-white);
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        .modal-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .modal-body {
            padding: 36px;
        }

        .modal-title {
            font-size: 28px;
            color: var(--primary-red);
            margin-bottom: 16px;
            font-family: "Noto Serif SC", serif;
        }

        .modal-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-light);
        }

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

        .modal-meta-item i {
            color: var(--accent-gold);
        }

        .modal-section {
            margin-bottom: 24px;
        }

        .modal-section h3 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent-gold);
        }

        .modal-section p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .modal-itinerary {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .modal-day {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: var(--bg-light-gray);
            border-radius: 8px;
        }

        .modal-day .day-badge {
            width: 60px;
            height: 60px;
            background: var(--primary-red);
            color: var(--text-white);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .modal-day .day-badge span:first-child {
            font-size: 20px;
            font-weight: 700;
        }

        .modal-day .day-badge span:last-child {
            font-size: 10px;
        }

        .modal-day .day-content h4 {
            font-size: 15px;
            color: var(--primary-red);
            margin-bottom: 8px;
        }

        .modal-day .day-content p {
            font-size: 13px;
            line-height: 1.7;
        }

        .modal-footer {
            display: flex;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
        }

        .modal-btn {
            flex: 1;
            padding: 14px 24px;
            font-size: 15px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 500;
        }

        .modal-btn-primary {
            background: var(--primary-red);
            border: none;
            color: var(--text-white);
        }

        .modal-btn-primary:hover {
            background: var(--primary-red-light);
        }

        .modal-btn-secondary {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold-dark);
        }

        .modal-btn-secondary:hover {
            background: var(--accent-gold-light);
            border-color: var(--accent-gold);
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 1200px) {
            .guides-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .tips-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .seasonal-grid,
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 32px;
                letter-spacing: 3px;
            }
            .page-hero .hero-icon {
                font-size: 48px;
            }
            .guides-grid,
            .tips-grid,
            .seasonal-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .category-tabs {
                gap: 8px;
            }
            .category-tab {
                padding: 8px 16px;
                font-size: 13px;
            }
            .modal-body {
                padding: 24px;
            }
            .modal-title {
                font-size: 22px;
            }
            .modal-footer {
                flex-direction: column;
            }
            .modal-day {
                flex-direction: column;
            }
            .tips-section,
            .reviews-section {
                padding: 24px;
            }
        }

/* ==================== heritage.html - Section 1 ==================== */
/* ==================== 页面横幅区域 ==================== */
        .page-hero {
            position: relative;
            height: 320px;
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/cantonese_opera.jpg') center/cover;
            opacity: 0.15;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(92, 0, 0, 0.7), rgba(139, 0, 0, 0.85));
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-white);
            padding: 0 20px;
        }

        .page-hero .hero-icon {
            font-size: 64px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 16px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
        }

        .page-hero .hero-subtitle {
            font-size: 20px;
            color: var(--accent-gold-light);
            letter-spacing: 4px;
        }

        .page-hero .hero-border {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
            z-index: 2;
        }

        /* 面包屑导航 */
        .breadcrumb-nav {
            background: linear-gradient(to right, var(--bg-light-gray), var(--bg-white));
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb-nav .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.15s ease;
        }

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

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

        .breadcrumb-nav .current {
            color: var(--primary-red);
            font-weight: 500;
        }

        /* ==================== 主内容区域 ==================== */
        .heritage-main {
            padding: 40px 0 60px;
        }

        /* ==================== 非遗概况区 ==================== */
        .overview-section {
            background: linear-gradient(135deg, #f9f5e7 0%, #fffaf0 100%);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 2px 12px rgba(201, 169, 110, 0.15);
        }

        .overview-intro {
            text-align: center;
            margin-bottom: 30px;
        }

        .overview-intro p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-card {
            background: var(--bg-white);
            border: 2px solid var(--primary-red);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: "Noto Serif SC", serif;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* ==================== 筛选导航区 ==================== */
        .filter-section {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .filter-group {
            margin-bottom: 16px;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-label {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-label i {
            color: var(--accent-gold);
        }

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

        .filter-btn {
            padding: 8px 18px;
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--bg-light-gray);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

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

        .filter-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
        }

        /* ==================== 结果统计区 ==================== */
        .results-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 16px 20px;
            background: linear-gradient(to right, var(--bg-cream), var(--bg-white));
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }

        .results-count {
            font-size: 15px;
            color: var(--text-secondary);
        }

        .results-count strong {
            color: var(--primary-red);
            font-weight: 700;
        }

        .clear-filter-btn {
            padding: 8px 20px;
            font-size: 13px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .clear-filter-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        /* ==================== 区域标题 ==================== */
        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .section-header h2 {
            font-size: 22px;
            color: var(--primary-red);
            font-family: "Noto Serif SC", serif;
        }

        .section-header .header-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 16px;
        }

        /* ==================== 非遗项目网格 ==================== */
        .heritage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .heritage-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .heritage-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .heritage-card .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .heritage-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .heritage-card:hover .card-image img {
            transform: scale(1.08);
        }

        .heritage-card .card-level {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 11px;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
            color: var(--text-white);
        }

        .heritage-card .card-level.world {
            background: linear-gradient(135deg, #8B0000, #C9A96E);
        }

        .heritage-card .card-level.national {
            background: var(--primary-red);
        }

        .heritage-card .card-level.provincial {
            background: var(--accent-gold);
            color: var(--primary-red-dark);
        }

        .heritage-card .card-year {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px 16px 12px;
            color: var(--text-white);
            font-size: 12px;
        }

        .heritage-card .card-favorite {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            z-index: 10;
        }

        .heritage-card .card-favorite:hover {
            background: var(--text-white);
            color: var(--primary-red);
            transform: scale(1.1);
        }

        .heritage-card .card-favorite.active {
            color: var(--primary-red);
        }

        .heritage-card .card-favorite.active i::before {
            content: '\f004';
        }

        .heritage-card .card-body {
            padding: 20px;
        }

        .heritage-card .card-title {
            font-size: 20px;
            color: var(--primary-red);
            margin-bottom: 10px;
            font-family: "Noto Serif SC", serif;
            font-weight: 600;
        }

        .heritage-card .card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .heritage-card .card-meta i {
            color: var(--accent-gold);
            margin-right: 4px;
        }

        .heritage-card .card-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .heritage-card .card-inheritor {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            padding: 10px;
            background: var(--bg-light-gray);
            border-radius: 6px;
        }

        .heritage-card .card-inheritor i {
            color: var(--accent-gold);
            margin-right: 6px;
        }

        .heritage-card .card-footer {
            display: flex;
            gap: 10px;
        }

        .heritage-card .detail-btn {
            flex: 1;
            padding: 10px 16px;
            font-size: 13px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            text-align: center;
        }

        .heritage-card .detail-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        .heritage-card .experience-btn {
            flex: 1;
            padding: 10px 16px;
            font-size: 13px;
            color: var(--primary-red-dark);
            background: var(--accent-gold);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            text-align: center;
        }

        .heritage-card .experience-btn:hover {
            background: var(--accent-gold-dark);
        }

        /* ==================== 非遗名录表格 ==================== */
        .table-section {
            margin-bottom: 40px;
        }

        .table-wrapper {
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .heritage-table {
            width: 100%;
            border-collapse: collapse;
        }

        .heritage-table thead {
            background: var(--primary-red);
            color: var(--text-white);
        }

        .heritage-table th {
            padding: 16px 12px;
            font-size: 14px;
            font-weight: 600;
            text-align: left;
            border-bottom: 2px solid var(--accent-gold);
        }

        .heritage-table td {
            padding: 14px 12px;
            font-size: 13px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-light);
        }

        .heritage-table tbody tr:hover {
            background: var(--bg-cream);
        }

        .heritage-table tbody tr:last-child td {
            border-bottom: none;
        }

        .table-level {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }

        .table-level.world {
            background: linear-gradient(135deg, #8B0000, #C9A96E);
            color: var(--text-white);
        }

        .table-level.national {
            background: var(--primary-red);
            color: var(--text-white);
        }

        .table-level.provincial {
            background: var(--accent-gold);
            color: var(--primary-red-dark);
        }

        .table-more {
            text-align: center;
            padding: 20px;
        }

        .table-more-btn {
            padding: 10px 30px;
            font-size: 14px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .table-more-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        /* ==================== 传承人风采区 ==================== */
        .inheritor-section {
            margin-bottom: 40px;
        }

        .inheritor-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .inheritor-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .inheritor-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .inheritor-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 16px;
            border: 4px solid var(--accent-gold);
        }

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

        .inheritor-name {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 8px;
            font-family: "Noto Serif SC", serif;
            font-weight: 600;
        }

        .inheritor-project {
            font-size: 13px;
            color: var(--accent-gold-dark);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .inheritor-quote {
            font-size: 13px;
            color: var(--text-secondary);
            font-style: italic;
            line-height: 1.6;
        }

        /* ==================== 政策动态区 ==================== */
        .policy-section {
            background: var(--bg-light-gray);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
        }

        .policy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .policy-news h4 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }

        .policy-news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .policy-news-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            background: var(--bg-white);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .policy-news-item:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .policy-date {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--primary-red);
            color: var(--text-white);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .policy-date .day {
            font-size: 20px;
            font-weight: 700;
        }

        .policy-date .month {
            font-size: 11px;
        }

        .policy-news-content h5 {
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 4px;
            font-weight: 500;
        }

        .policy-news-content p {
            font-size: 12px;
            color: var(--text-light);
        }

        .policy-achievements h4 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }

        .achievement-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .achievement-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .achievement-card:last-child {
            margin-bottom: 0;
        }

        .achievement-img {
            height: 120px;
            overflow: hidden;
        }

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

        .achievement-content {
            padding: 16px;
        }

        .achievement-content h5 {
            font-size: 15px;
            color: var(--primary-red);
            margin-bottom: 6px;
        }

        .achievement-content p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ==================== 分页导航 ==================== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination-btn {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-secondary);
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pagination-btn:hover:not(.disabled):not(.active) {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .pagination-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* ==================== 模态框 ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-white);
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary-red);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.6);
            border: none;
            border-radius: 50%;
            color: var(--text-white);
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        .modal-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .modal-body {
            padding: 36px;
        }

        .modal-title {
            font-size: 32px;
            color: var(--primary-red);
            margin-bottom: 20px;
            font-family: "Noto Serif SC", serif;
        }

        .modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .modal-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: var(--bg-light-gray);
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .modal-tag i {
            color: var(--accent-gold);
        }

        .modal-tag.level-world {
            background: linear-gradient(135deg, #8B0000, #C9A96E);
            color: var(--text-white);
        }

        .modal-tag.level-national {
            background: var(--primary-red);
            color: var(--text-white);
        }

        .modal-tag.level-provincial {
            background: var(--accent-gold);
            color: var(--primary-red-dark);
        }

        .modal-section {
            margin-bottom: 28px;
        }

        .modal-section h3 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-section h3 i {
            color: var(--accent-gold);
        }

        .modal-section p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            text-align: justify;
        }

        .inheritor-info {
            background: var(--bg-light-gray);
            padding: 20px;
            border-radius: 8px;
            display: flex;
            gap: 20px;
        }

        .inheritor-avatar-sm {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid var(--accent-gold);
        }

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

        .inheritor-details h4 {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 8px;
        }

        .inheritor-details p {
            font-size: 14px;
            line-height: 1.6;
        }

        .experience-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .experience-item {
            padding: 16px;
            background: var(--bg-cream);
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }

        .experience-item h4 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 8px;
        }

        .experience-item p {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .modal-footer {
            display: flex;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
        }

        .modal-btn {
            flex: 1;
            padding: 14px 24px;
            font-size: 15px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 500;
        }

        .modal-btn-primary {
            background: var(--primary-red);
            border: none;
            color: var(--text-white);
        }

        .modal-btn-primary:hover {
            background: var(--primary-red-light);
        }

        .modal-btn-secondary {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold-dark);
        }

        .modal-btn-secondary:hover {
            background: var(--accent-gold-light);
            border-color: var(--accent-gold);
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 1200px) {
            .heritage-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .inheritor-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .page-hero h1 {
                font-size: 36px;
            }
            .overview-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .heritage-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .policy-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                height: 240px;
            }
            .page-hero h1 {
                font-size: 28px;
                letter-spacing: 4px;
            }
            .page-hero .hero-icon {
                font-size: 48px;
            }
            .overview-stats {
                grid-template-columns: 1fr 1fr;
            }
            .stat-number {
                font-size: 36px;
            }
            .heritage-grid {
                grid-template-columns: 1fr;
            }
            .inheritor-grid {
                grid-template-columns: 1fr;
            }
            .results-info {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .filter-buttons {
                gap: 8px;
            }
            .filter-btn {
                padding: 6px 14px;
                font-size: 12px;
            }
            .modal-body {
                padding: 24px;
            }
            .modal-title {
                font-size: 24px;
            }
            .modal-footer {
                flex-direction: column;
            }
            .inheritor-info {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .overview-section,
            .policy-section {
                padding: 24px;
            }
            .table-wrapper {
                overflow-x: auto;
            }
        }

/* ==================== interactive.html - Section 1 ==================== */
/* ==================== 页面横幅区域 ==================== */
        .page-hero {
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/cantonese_embroidery.jpg') center/cover;
            opacity: 0.15;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(92, 0, 0, 0.7), rgba(139, 0, 0, 0.85));
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-white);
        }

        .page-hero .hero-icon {
            font-size: 60px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 6px;
            margin-bottom: 12px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
        }

        .page-hero .hero-subtitle {
            font-size: 18px;
            color: var(--accent-gold-light);
            letter-spacing: 3px;
        }

        /* 面包屑导航 */
        .breadcrumb-nav {
            background: var(--bg-light-gray);
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb-nav .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.15s ease;
        }

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

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

        .breadcrumb-nav .current {
            color: var(--primary-red);
            font-weight: 500;
        }

        /* ==================== 主内容区域 ==================== */
        .interactive-main {
            padding: 40px 0 60px;
        }

        /* ==================== 区域标题 ==================== */
        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .section-header h2 {
            font-size: 22px;
            color: var(--primary-red);
            font-family: "Noto Serif SC", serif;
        }

        .section-header .header-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 18px;
        }

        /* ==================== 留言咨询区 ==================== */
        .message-section {
            margin-bottom: 40px;
        }

        .message-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        /* 留言表单 */
        .message-form-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .message-form-card .form-header {
            background: linear-gradient(to right, var(--primary-red), var(--primary-red-light));
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .message-form-card .form-header i {
            font-size: 24px;
            color: var(--accent-gold);
        }

        .message-form-card .form-header h3 {
            font-size: 18px;
            color: var(--text-white);
            font-weight: 600;
        }

        .message-form-card .form-body {
            padding: 24px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-group label .required {
            color: var(--primary-red);
            margin-left: 2px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            font-size: 14px;
            border: 1px solid var(--border-light);
            border-radius: 6px;
            transition: all 0.2s ease;
            background-color: var(--bg-white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: #dc3545;
            background-color: #fff5f5;
        }

        .form-error {
            font-size: 12px;
            color: #dc3545;
            margin-top: 4px;
            display: none;
        }

        .form-group.has-error .form-error {
            display: block;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .captcha-group {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .captcha-group input {
            width: 120px;
        }

        .captcha-display {
            background: var(--bg-light-gray);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-red);
            letter-spacing: 2px;
            cursor: pointer;
            user-select: none;
        }

        .captcha-display:hover {
            background: var(--border-light);
        }

        .submit-btn {
            width: 100%;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-gold);
            background: linear-gradient(to right, var(--primary-red-dark), var(--primary-red));
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn:hover {
            background: linear-gradient(to right, var(--primary-red), var(--primary-red-light));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
        }

        .submit-btn i {
            font-size: 18px;
        }

        /* FAQ区 */
        .faq-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .faq-card .faq-header {
            background: linear-gradient(to right, var(--primary-red), var(--primary-red-light));
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .faq-card .faq-header i {
            font-size: 24px;
            color: var(--accent-gold);
        }

        .faq-card .faq-header h3 {
            font-size: 18px;
            color: var(--text-white);
            font-weight: 600;
        }

        .faq-list {
            padding: 16px;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-light);
        }

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

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            gap: 12px;
        }

        .faq-question:hover {
            background: var(--bg-cream);
        }

        .faq-question h4 {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .faq-question h4 i {
            color: var(--primary-red);
            font-size: 12px;
        }

        .faq-question .faq-icon {
            width: 24px;
            height: 24px;
            background: var(--bg-light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-question .faq-icon i {
            font-size: 12px;
            color: var(--text-secondary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: var(--primary-red);
        }

        .faq-item.active .faq-icon i {
            color: var(--text-white);
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 16px 16px 36px;
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ==================== 民意征集区 ==================== */
        .survey-section {
            margin-bottom: 40px;
        }

        .survey-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .survey-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .survey-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .survey-image {
            height: 140px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .survey-image i {
            font-size: 48px;
            color: var(--text-white);
            opacity: 0.8;
        }

        .survey-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 12px;
            font-size: 12px;
            color: var(--text-white);
            background: rgba(0,0,0,0.3);
            border-radius: 12px;
        }

        .survey-badge.urgent {
            background: #dc3545;
        }

        .survey-body {
            padding: 20px;
        }

        .survey-body h4 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 10px;
            font-family: "Noto Serif SC", serif;
        }

        .survey-body p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .survey-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid var(--border-light);
        }

        .survey-deadline {
            font-size: 12px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .survey-deadline i {
            color: var(--accent-gold);
        }

        .survey-btn {
            padding: 8px 16px;
            font-size: 13px;
            color: var(--text-white);
            background: var(--primary-red);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .survey-btn:hover {
            background: var(--primary-red-light);
        }

        /* ==================== 精选留言区 ==================== */
        .feedback-section {
            margin-bottom: 40px;
        }

        .feedback-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feedback-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: relative;
        }

        .feedback-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-gold);
            border-radius: 4px 0 0 4px;
        }

        .feedback-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .feedback-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feedback-icon {
            width: 36px;
            height: 36px;
            background: var(--bg-light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
        }

        .feedback-title h4 {
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 600;
        }

        .feedback-title span {
            font-size: 12px;
            color: var(--text-light);
        }

        .feedback-type {
            padding: 4px 12px;
            font-size: 12px;
            border-radius: 4px;
            background: var(--bg-light-gray);
            color: var(--text-secondary);
        }

        .feedback-type.advice {
            background: #e3f2fd;
            color: #1565c0;
        }

        .feedback-type.suggestion {
            background: #fff3e0;
            color: #e65100;
        }

        .feedback-content {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            padding-left: 46px;
        }

        .feedback-reply {
            background: var(--bg-cream);
            padding: 16px 20px;
            border-radius: 8px;
            margin-left: 46px;
        }

        .feedback-reply-label {
            font-size: 13px;
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .feedback-reply-label i {
            color: var(--accent-gold);
        }

        .feedback-reply p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .feedback-footer {
            display: flex;
            justify-content: flex-end;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px dashed var(--border-light);
        }

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

        /* ==================== 模态框 ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-white);
            border-radius: 12px;
            max-width: 480px;
            width: 100%;
            padding: 40px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: var(--bg-light-gray);
            border: none;
            border-radius: 50%;
            color: var(--text-secondary);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--primary-red);
            color: var(--text-white);
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: var(--text-white);
        }

        .modal-icon.success {
            background: linear-gradient(135deg, #28a745, #20c997);
        }

        .modal-icon.warning {
            background: linear-gradient(135deg, var(--accent-gold), #ffc107);
        }

        .modal-title {
            font-size: 24px;
            color: var(--primary-red);
            margin-bottom: 12px;
            font-family: "Noto Serif SC", serif;
        }

        .modal-message {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .modal-btn {
            padding: 12px 32px;
            background: var(--primary-red);
            color: var(--text-white);
            border: none;
            border-radius: 6px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .modal-btn:hover {
            background: var(--primary-red-light);
        }

        .modal-btn.secondary {
            background: var(--bg-light-gray);
            color: var(--text-secondary);
            margin-right: 12px;
        }

        .modal-btn.secondary:hover {
            background: var(--border-light);
        }

        /* 调查参与模态框 */
        .survey-modal .survey-question {
            text-align: left;
            margin-bottom: 20px;
        }

        .survey-modal .survey-question h5 {
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .survey-modal .survey-question label {
            display: block;
            padding: 10px 16px;
            background: var(--bg-light-gray);
            border-radius: 6px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .survey-modal .survey-question label:hover {
            background: var(--bg-cream);
        }

        .survey-modal .survey-question input[type="radio"] {
            margin-right: 10px;
        }

        .modal-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 1200px) {
            .message-grid {
                grid-template-columns: 1fr;
            }

            .survey-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 32px;
                letter-spacing: 3px;
            }

            .page-hero .hero-icon {
                font-size: 48px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .feedback-header {
                flex-direction: column;
                gap: 10px;
            }

            .feedback-content,
            .feedback-reply {
                padding-left: 0;
            }

            .feedback-icon {
                display: none;
            }
        }

/* ==================== login.html - Section 1 ==================== */
:root {
            --primary-red: #8B0000;
            --primary-red-light: #A52A2A;
            --primary-red-dark: #5C0000;
            --accent-gold: #C9A96E;
            --accent-gold-light: #D4B896;
            --accent-gold-dark: #A88B55;
            --bg-cream: #FDF8F0;
            --bg-white: #FFFFFF;
            --bg-light-gray: #F5F5F5;
            --text-primary: #333333;
            --text-secondary: #666666;
            --text-light: #999999;
            --text-white: #FFFFFF;
            --border-light: #E8E0D5;
            --border-gold: #D4B896;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
            background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 50%, var(--bg-cream) 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Noto Serif SC", "SimSun", serif;
        }

        /* ==================== 简化顶部栏 ==================== */
        .simple-header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            padding: 16px 0;
        }

        .simple-header .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .header-logo .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 22px;
        }

        .header-logo .logo-text {
            font-size: 20px;
            color: var(--primary-red);
            font-weight: 700;
            font-family: "Noto Serif SC", serif;
        }

        .back-home {
            font-size: 14px;
            color: var(--text-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s ease;
        }

        .back-home:hover {
            color: var(--primary-red);
        }

        /* ==================== 主内容区域 ==================== */
        .login-main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .login-card {
            background: var(--bg-white);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            width: 100%;
            display: grid;
            grid-template-columns: 40% 60%;
            overflow: hidden;
        }

        /* ==================== 品牌宣传区 ==================== */
        .brand-section {
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .brand-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/login_bg.jpg') center/cover;
            opacity: 0.1;
        }

        .brand-content {
            position: relative;
            z-index: 1;
            color: var(--text-white);
        }

        .brand-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .brand-subtitle {
            font-size: 16px;
            color: var(--accent-gold-light);
            margin-bottom: 40px;
            font-family: "Noto Serif SC", serif;
        }

        .brand-carousel {
            min-height: 100px;
            margin-bottom: 40px;
        }

        .carousel-item {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .carousel-item.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .carousel-item p {
            font-size: 20px;
            line-height: 1.6;
            font-family: "Noto Serif SC", serif;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
            margin-top: 20px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--accent-gold);
        }

        .brand-stats {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
        }

        .stats-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: "Noto Serif SC", serif;
        }

        .stats-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 4px;
        }

        /* ==================== 表单区 ==================== */
        .form-section {
            padding: 50px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-tabs {
            display: flex;
            border-bottom: 2px solid var(--border-light);
            margin-bottom: 30px;
        }

        .form-tab {
            padding: 12px 30px;
            font-size: 18px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            border: none;
            background: none;
        }

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

        .form-tab.active {
            color: var(--primary-red);
            font-weight: 600;
        }

        .form-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-red);
        }

        .form-panel {
            display: none;
        }

        .form-panel.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        /* ==================== 表单样式 ==================== */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-group label .required {
            color: var(--primary-red);
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
        }

        .form-group input.error {
            border-color: #dc3545;
            background-color: #fff5f5;
        }

        .form-group input.valid {
            border-color: #28a745;
        }

        .form-group .input-error {
            font-size: 12px;
            color: #dc3545;
            margin-top: 6px;
            display: none;
        }

        .form-group.has-error .input-error {
            display: block;
        }

        .form-group .input-hint {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 6px;
        }

        .form-row {
            display: flex;
            gap: 12px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .input-with-btn {
            display: flex;
            gap: 12px;
        }

        .input-with-btn input {
            flex: 1;
        }

        .get-code-btn {
            padding: 14px 20px;
            font-size: 14px;
            color: var(--text-white);
            background: var(--accent-gold);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            min-width: 120px;
        }

        .get-code-btn:hover:not(:disabled) {
            background: var(--accent-gold-dark);
        }

        .get-code-btn:disabled {
            background: var(--text-light);
            cursor: not-allowed;
        }

        /* 密码强度指示器 */
        .password-strength {
            margin-top: 8px;
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .strength-bar {
            height: 4px;
            flex: 1;
            background: var(--border-light);
            border-radius: 2px;
            transition: background 0.3s ease;
        }

        .strength-bar.active.weak {
            background: #dc3545;
        }

        .strength-bar.active.medium {
            background: #ffc107;
        }

        .strength-bar.active.strong {
            background: #28a745;
        }

        .strength-label {
            font-size: 12px;
            margin-left: 8px;
        }

        .strength-label.weak { color: #dc3545; }
        .strength-label.medium { color: #ffc107; }
        .strength-label.strong { color: #28a745; }

        /* 复选框 */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 24px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: var(--primary-red);
        }

        .checkbox-group label {
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
            line-height: 1.5;
        }

        .checkbox-group a {
            color: var(--primary-red);
            text-decoration: none;
        }

        .checkbox-group a:hover {
            text-decoration: underline;
        }

        /* 记住我 */
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
        }

        .remember-me input {
            width: 16px;
            height: 16px;
            accent-color: var(--primary-red);
        }

        .forgot-link {
            font-size: 14px;
            color: var(--primary-red);
            text-decoration: none;
        }

        .forgot-link:hover {
            text-decoration: underline;
        }

        /* 提交按钮 */
        .submit-btn {
            width: 100%;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-gold);
            background: linear-gradient(to right, var(--primary-red-dark), var(--primary-red));
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn:hover:not(:disabled) {
            background: linear-gradient(to right, var(--primary-red), var(--primary-red-light));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
        }

        .submit-btn:disabled {
            background: var(--text-light);
            cursor: not-allowed;
            color: var(--bg-white);
        }

        /* 社交登录 */
        .social-divider {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }

        .social-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border-light);
        }

        .social-divider span {
            background: var(--bg-white);
            padding: 0 16px;
            position: relative;
            font-size: 13px;
            color: var(--text-light);
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .social-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-light-gray);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .social-btn:hover {
            background: var(--primary-red);
            color: var(--text-white);
            transform: translateY(-3px);
        }

        .social-btn.wechat:hover { background: #07c160; }
        .social-btn.alipay:hover { background: #1677ff; }
        .social-btn.qq:hover { background: #12b7f5; }

        /* 切换链接 */
        .switch-link {
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .switch-link a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
        }

        .switch-link a:hover {
            text-decoration: underline;
        }

        /* 温馨提示 */
        .tips {
            margin-top: 30px;
            padding: 16px;
            background: var(--bg-cream);
            border-radius: 8px;
        }

        .tips p {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tips p:last-child {
            margin-bottom: 0;
        }

        .tips i {
            color: var(--accent-gold);
        }

        .test-account {
            margin-top: 16px;
            padding: 12px;
            background: var(--bg-light-gray);
            border-radius: 6px;
            text-align: center;
        }

        .test-account p {
            font-size: 12px;
            color: var(--text-light);
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 992px) {
            .login-card {
                max-width: 800px;
            }

            .brand-section,
            .form-section {
                padding: 40px 30px;
            }

            .brand-title {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .login-card {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .brand-section {
                padding: 40px 30px;
                min-height: 220px;
            }

            .brand-title {
                font-size: 26px;
            }

            .brand-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .carousel-item p {
                font-size: 16px;
            }

            .brand-stats {
                padding-top: 20px;
            }

            .stats-number {
                font-size: 24px;
            }

            .form-section {
                padding: 30px 24px;
            }

            .form-tab {
                padding: 10px 20px;
                font-size: 16px;
            }

            .form-row {
                flex-direction: column;
            }

            .input-with-btn {
                flex-direction: column;
            }

            .get-code-btn {
                width: 100%;
            }
        }

/* ==================== scenery.html - Section 1 ==================== */
/* ==================== 页面横幅区域 ==================== */
        .page-hero {
            position: relative;
            height: 320px;
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/guangzhou_tower.jpg') center/cover;
            opacity: 0.15;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(92, 0, 0, 0.7), rgba(139, 0, 0, 0.85));
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-white);
            padding: 0 20px;
        }

        .page-hero .hero-icon {
            font-size: 64px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 16px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
        }

        .page-hero .hero-subtitle {
            font-size: 20px;
            color: var(--accent-gold-light);
            letter-spacing: 4px;
        }

        .page-hero .hero-border {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
            z-index: 2;
        }

        /* 面包屑导航 */
        .breadcrumb-nav {
            background: linear-gradient(to right, var(--bg-light-gray), var(--bg-white));
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb-nav .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.15s ease;
        }

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

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

        .breadcrumb-nav .current {
            color: var(--primary-red);
            font-weight: 500;
        }

        /* ==================== 主内容区域 ==================== */
        .scenery-main {
            padding: 40px 0 60px;
        }

        /* ==================== 筛选导航区 ==================== */
        .filter-section {
            background: var(--bg-white);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .filter-group {
            margin-bottom: 20px;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-label {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-label i {
            color: var(--accent-gold);
        }

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

        .filter-btn {
            padding: 8px 18px;
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--bg-light-gray);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

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

        .filter-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
        }

        /* ==================== 结果统计区 ==================== */
        .results-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding: 16px 20px;
            background: linear-gradient(to right, var(--bg-cream), var(--bg-white));
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }

        .results-count {
            font-size: 15px;
            color: var(--text-secondary);
        }

        .results-count strong {
            color: var(--primary-red);
            font-weight: 700;
        }

        .clear-filter-btn {
            padding: 8px 20px;
            font-size: 13px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .clear-filter-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        /* ==================== 推荐线路区 ==================== */
        .routes-section {
            margin-bottom: 40px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .section-header h2 {
            font-size: 22px;
            color: var(--primary-red);
        }

        .section-header .header-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 16px;
        }

        .routes-scroll {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .routes-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .routes-scroll::-webkit-scrollbar-track {
            background: var(--bg-light-gray);
            border-radius: 3px;
        }

        .routes-scroll::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 3px;
        }

        .route-card {
            min-width: 360px;
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .route-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .route-card .route-image {
            height: 160px;
            position: relative;
            overflow: hidden;
        }

        .route-card .route-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .route-card .route-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent-gold);
            color: var(--primary-red-dark);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        .route-card .route-info {
            padding: 16px;
        }

        .route-card .route-name {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .route-card .route-days {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 8px;
        }

        .route-card .route-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .route-card .route-spots {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            font-size: 12px;
            color: var(--text-light);
        }

        .route-card .route-spots span {
            background: var(--bg-light-gray);
            padding: 3px 10px;
            border-radius: 12px;
        }

        /* ==================== 景点网格区 ==================== */
        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .attraction-card {
            background: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .attraction-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .attraction-card .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .attraction-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .attraction-card:hover .card-image img {
            transform: scale(1.1);
        }

        .attraction-card .card-type {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary-red);
            color: var(--text-white);
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 12px;
        }

        .attraction-card .card-favorite {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .attraction-card .card-favorite:hover {
            background: var(--text-white);
            color: var(--primary-red);
            transform: scale(1.1);
        }

        .attraction-card .card-favorite.active {
            color: var(--primary-red);
        }

        .attraction-card .card-favorite.active i::before {
            content: '\f004';
        }

        .attraction-card .card-body {
            padding: 20px;
        }

        .attraction-card .card-title {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 8px;
            font-family: "Noto Serif SC", serif;
        }

        .attraction-card .card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 10px;
        }

        .attraction-card .card-rating {
            color: var(--accent-gold);
            font-size: 14px;
        }

        .attraction-card .card-rating span {
            color: var(--text-secondary);
            font-size: 12px;
            margin-left: 4px;
        }

        .attraction-card .card-location {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .attraction-card .card-location i {
            color: var(--accent-gold);
            margin-right: 4px;
        }

        .attraction-card .card-desc {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .attraction-card .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .attraction-card .card-tag {
            font-size: 11px;
            padding: 3px 8px;
            background: var(--bg-light-gray);
            color: var(--text-secondary);
            border-radius: 4px;
        }

        .attraction-card .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid var(--border-light);
        }

        .attraction-card .detail-btn {
            padding: 8px 20px;
            font-size: 13px;
            color: var(--accent-gold-dark);
            background: transparent;
            border: 2px solid var(--accent-gold);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .attraction-card .detail-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        .attraction-card .card-views {
            font-size: 12px;
            color: var(--text-light);
        }

        .attraction-card .card-views i {
            margin-right: 4px;
        }

        /* ==================== 分页导航 ==================== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination-btn {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-secondary);
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pagination-btn:hover:not(.disabled):not(.active) {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .pagination-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

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

        /* ==================== 模态框 ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-white);
            border-radius: 12px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            border: 3px solid var(--primary-red);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: rgba(0,0,0,0.5);
            border: none;
            border-radius: 50%;
            color: var(--text-white);
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        .modal-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-title {
            font-size: 28px;
            color: var(--primary-red);
            margin-bottom: 16px;
            font-family: "Noto Serif SC", serif;
        }

        .modal-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 16px 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 20px;
        }

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

        .modal-meta-item i {
            color: var(--accent-gold);
        }

        .modal-meta-item .rating-stars {
            color: var(--accent-gold);
        }

        .modal-section {
            margin-bottom: 24px;
        }

        .modal-section h3 {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent-gold);
        }

        .modal-section p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            text-align: justify;
        }

        .modal-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .modal-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            background: var(--bg-cream);
            border-radius: 8px;
        }

        .modal-info-item i {
            color: var(--accent-gold);
            font-size: 20px;
            margin-top: 2px;
        }

        .modal-info-item .info-label {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .modal-info-item .info-value {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .modal-nearby {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .modal-nearby-item {
            padding: 8px 16px;
            background: var(--bg-light-gray);
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-secondary);
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .modal-nearby-item:hover {
            background: var(--accent-gold-light);
            color: var(--primary-red-dark);
        }

        .modal-footer {
            display: flex;
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }

        .modal-btn {
            flex: 1;
            padding: 14px 24px;
            font-size: 15px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .modal-btn-primary {
            background: var(--primary-red);
            border: none;
            color: var(--text-white);
        }

        .modal-btn-primary:hover {
            background: var(--primary-red-light);
        }

        .modal-btn-secondary {
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold-dark);
        }

        .modal-btn-secondary:hover {
            background: var(--accent-gold-light);
            border-color: var(--accent-gold);
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 1200px) {
            .attractions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .page-hero h1 {
                font-size: 36px;
            }

            .attractions-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .page-hero {
                height: 240px;
            }

            .page-hero h1 {
                font-size: 28px;
                letter-spacing: 4px;
            }

            .page-hero .hero-icon {
                font-size: 48px;
            }

            .attractions-grid {
                grid-template-columns: 1fr;
            }

            .route-card {
                min-width: 300px;
            }

            .results-info {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .filter-buttons {
                gap: 8px;
            }

            .filter-btn {
                padding: 6px 14px;
                font-size: 12px;
            }

            .modal-body {
                padding: 20px;
            }

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

            .modal-meta {
                flex-direction: column;
                gap: 12px;
            }

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

/* ==================== transport.html - Section 1 ==================== */
/* ==================== 页面横幅区域 ==================== */
        .page-hero {
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/transport_bg.jpg') center/cover;
            opacity: 0.15;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(92, 0, 0, 0.7), rgba(139, 0, 0, 0.85));
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-white);
        }

        .page-hero .hero-icon {
            font-size: 60px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: 6px;
            margin-bottom: 12px;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
        }

        .page-hero .hero-subtitle {
            font-size: 18px;
            color: var(--accent-gold-light);
            letter-spacing: 3px;
        }

        /* 面包屑导航 */
        .breadcrumb-nav {
            background: var(--bg-light-gray);
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb-nav .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.15s ease;
        }

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

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

        .breadcrumb-nav .current {
            color: var(--primary-red);
            font-weight: 500;
        }

        /* ==================== 主内容区域 ==================== */
        .transport-main {
            padding: 40px 0 60px;
        }

        /* ==================== 区域标题 ==================== */
        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-gold);
        }

        .section-header h2 {
            font-size: 22px;
            color: var(--primary-red);
            font-family: "Noto Serif SC", serif;
        }

        .section-header .header-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 18px;
        }

        /* ==================== 交通指南区 ==================== */
        .transport-section {
            margin-bottom: 40px;
        }

        .transport-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .transport-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .transport-card h3 {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .transport-card h3 i {
            color: var(--accent-gold);
        }

        .transport-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .transport-item {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: var(--bg-light-gray);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .transport-item:hover {
            background: var(--bg-cream);
            transform: translateX(4px);
        }

        .transport-item .item-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 20px;
            flex-shrink: 0;
        }

        .transport-item .item-content h4 {
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .transport-item .item-content p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .transport-item .item-tip {
            font-size: 12px;
            color: var(--accent-gold-dark);
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ==================== 城市间交通表格 ==================== */
        .table-section {
            margin-bottom: 40px;
        }

        .table-wrapper {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .transport-table {
            width: 100%;
            border-collapse: collapse;
        }

        .transport-table thead {
            background: var(--primary-red);
            color: var(--text-white);
        }

        .transport-table th {
            padding: 16px 12px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
        }

        .transport-table td {
            padding: 14px 12px;
            font-size: 13px;
            color: var(--text-secondary);
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }

        .transport-table tbody tr:hover {
            background: var(--bg-cream);
        }

        .transport-table tbody tr:last-child td {
            border-bottom: none;
        }

        .time-badge {
            display: inline-block;
            padding: 4px 10px;
            background: var(--bg-light-gray);
            border-radius: 12px;
            font-size: 12px;
        }

        .time-badge.fast {
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            color: var(--text-white);
        }

        /* ==================== 住宿推荐区 ==================== */
        .hotel-section {
            margin-bottom: 40px;
        }

        .hotel-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .hotel-filter-btn {
            padding: 10px 24px;
            font-size: 14px;
            color: var(--text-secondary);
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

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

        .hotel-filter-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: var(--text-white);
            box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
        }

        .hotel-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .hotel-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .hotel-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .hotel-card .hotel-image {
            position: relative;
            height: 160px;
            overflow: hidden;
        }

        .hotel-card .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .hotel-card:hover .hotel-image img {
            transform: scale(1.08);
        }

        .hotel-card .hotel-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            font-size: 11px;
            color: var(--text-white);
            border-radius: 4px;
            font-weight: 600;
        }

        .hotel-card .hotel-tag.luxury {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: var(--primary-red-dark);
        }

        .hotel-card .hotel-tag.boutique {
            background: var(--primary-red);
        }

        .hotel-card .hotel-tag.economy {
            background: var(--accent-gold);
            color: var(--primary-red-dark);
        }

        .hotel-card .hotel-tag.hostel {
            background: #4CAF50;
        }

        .hotel-card .hotel-body {
            padding: 16px;
        }

        .hotel-card .hotel-name {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 8px;
            font-family: "Noto Serif SC", serif;
            font-weight: 600;
            line-height: 1.4;
        }

        .hotel-card .hotel-location {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .hotel-card .hotel-location i {
            color: var(--accent-gold);
        }

        .hotel-card .hotel-features {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 12px;
        }

        .hotel-card .hotel-feature {
            font-size: 11px;
            padding: 3px 8px;
            background: var(--bg-light-gray);
            color: var(--text-secondary);
            border-radius: 4px;
        }

        .hotel-card .hotel-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid var(--border-light);
        }

        .hotel-card .hotel-price {
            font-size: 18px;
            color: var(--primary-red);
            font-weight: 700;
        }

        .hotel-card .hotel-price span {
            font-size: 12px;
            color: var(--text-light);
            font-weight: 400;
        }

        .hotel-card .book-btn {
            padding: 8px 16px;
            font-size: 13px;
            color: var(--text-white);
            background: var(--primary-red);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .hotel-card .book-btn:hover {
            background: var(--primary-red-light);
        }

        /* ==================== 贴士区 ==================== */
        .tips-section {
            margin-bottom: 40px;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .tip-panel {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .tip-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: linear-gradient(to right, var(--primary-red), var(--primary-red-light));
            color: var(--text-white);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tip-panel-header:hover {
            background: var(--primary-red-light);
        }

        .tip-panel-header h4 {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tip-panel-header h4 i {
            color: var(--accent-gold);
        }

        .tip-panel-header .panel-icon {
            transition: transform 0.3s ease;
        }

        .tip-panel.active .tip-panel-header .panel-icon {
            transform: rotate(180deg);
        }

        .tip-panel-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .tip-panel.active .tip-panel-body {
            max-height: 500px;
        }

        .tip-panel-content {
            padding: 20px;
        }

        .tip-panel-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .tip-panel-content ul {
            list-style: none;
        }

        .tip-panel-content li {
            font-size: 13px;
            color: var(--text-secondary);
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
        }

        .tip-panel-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* ==================== 模态框 ==================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-white);
            border-radius: 12px;
            max-width: 450px;
            width: 100%;
            padding: 40px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: var(--bg-light-gray);
            border: none;
            border-radius: 50%;
            color: var(--text-secondary);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--primary-red);
            color: var(--text-white);
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: var(--text-white);
        }

        .modal-title {
            font-size: 24px;
            color: var(--primary-red);
            margin-bottom: 12px;
            font-family: "Noto Serif SC", serif;
        }

        .modal-message {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .modal-btn {
            padding: 12px 32px;
            background: var(--primary-red);
            color: var(--text-white);
            border: none;
            border-radius: 6px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .modal-btn:hover {
            background: var(--primary-red-light);
        }

        /* ==================== 响应式设计 ==================== */
        @media (max-width: 1200px) {
            .hotel-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .transport-grid {
                grid-template-columns: 1fr;
            }
            .hotel-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 32px;
                letter-spacing: 3px;
            }
            .page-hero .hero-icon {
                font-size: 48px;
            }
            .hotel-grid {
                grid-template-columns: 1fr;
            }
            .hotel-filters {
                gap: 8px;
            }
            .hotel-filter-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
            .transport-table {
                font-size: 12px;
            }
            .transport-table th,
            .transport-table td {
                padding: 10px 8px;
            }
        }
