               :root {
            --primary: #ff2442;
            --secondary: #ff7b9c;
            --light-bg: #fff5f7;
            --card-bg: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --border: #e8e8e8;
            --gold: #d4af37;
            --day1: #ff7b9c;
            --day2: #ff9e6d;
            --day3: #5c6bc0;
            --day4: #f1c40f;
            --day5: #1abc9c;
            --day6: #e74c3c;
            --day7: #8e44ad;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: #f8f9fa;
            color: var(--text-dark);
            padding-top: 80px;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .header-section {
            background: linear-gradient(135deg, #17C2AB 0%, #B7E66D 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .header-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1593693392685-362b0a2a0eb7?q=80&w=1000');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
        }
        
        .header-section h1 {
            font-weight: 800;
            font-size: 3rem;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            margin-bottom: 20px;
            position: relative;
        }
        
        .header-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
            position: relative;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
            position: relative;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 15px 25px;
            margin: 0 10px 20px;
            min-width: 180px;
            backdrop-filter: blur(5px);
        }
        
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 700;
            color: red;
            margin-bottom: 5px;
        }
        
        .city-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .city-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }
        
        .city-header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 20px 25px;
            position: relative;
            overflow: hidden;
        }
        
        .city-header h2 {
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 2;
            font-size: 1.8rem;
        }
        
        .city-header::after {
            content: "";
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .counties-container {
            padding: 20px;
        }
        
        .county-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid var(--border);
            transition: background-color 0.3s;
            text-decoration: none;
            color: var(--text-dark);
        }
        
        .county-item:last-child {
            border-bottom: none;
        }
        
        .county-item:hover {
            background-color: var(--light-bg);
            text-decoration: none;
        }
        
        .county-img {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            margin-right: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .county-info {
            flex-grow: 1;
        }
        
        .county-info h5 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--text-dark);
        }
        
        .county-info p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .county-tags {
            display: flex;
            flex-wrap: wrap;
        }
        
        .county-tag {
            background-color: var(--light-bg);
            color: var(--primary);
            border-radius: 20px;
            padding: 3px 12px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 5px;
            display: inline-block;
        }
        
        .county-arrow {
            color: var(--text-light);
            font-size: 1.5rem;
            transition: transform 0.3s;
            min-width: 24px;
        }
        
        .county-item:hover .county-arrow {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .tour-guide {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .tour-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .tour-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .tour-subtitle {
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .tour-highlights {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .highlight-card {
            background-color: var(--light-bg);
            border-radius: 12px;
            padding: 15px 20px;
            min-width: 180px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        .highlight-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .highlight-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .highlight-desc {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .itinerary-card {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        
        .itinerary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .day-header {
            padding: 20px;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .day-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-right: 15px;
            min-width: 60px;
        }
        
        .day-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .day-subtitle {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .day1 .day-header { background-color: var(--day1); }
        .day2 .day-header { background-color: var(--day2); }
        .day3 .day-header { background-color: var(--day3); }
        .day4 .day-header { background-color: var(--day4); }
        .day5 .day-header { background-color: var(--day5); }
        .day6 .day-header { background-color: var(--day6); }
        .day7 .day-header { background-color: var(--day7); }
        
        .itinerary-body {
            padding: 25px;
            background-color: white;
        }
        
        .itinerary-section {
            margin-bottom: 25px;
        }
        
        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .itinerary-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .attraction-card {
            flex: 1;
            min-width: 250px;
            border-radius: 12px;
            overflow: hidden;
            background-color: #f9f9f9;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }
        
        .attraction-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
        }
        
        .attraction-name i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1.3rem;
        }
        
        .attraction-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-left: 28px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .info-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
        }
        
        .info-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .info-title i {
            margin-right: 10px;
        }
        
        .info-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .info-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
        }
        
        .info-list li:last-child {
            border-bottom: none;
        }
        
        .info-list li i {
            color: var(--primary);
            margin-right: 10px;
            min-width: 20px;
        }
        
        .featured-section {
            margin-bottom: 50px;
        }
        
        .featured-title {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
            color: var(--text-dark);
        }
        
        .featured-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .featured-card:hover {
            transform: translateY(-10px);
        }
        
        .featured-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .featured-body {
            padding: 20px;
            background-color: white;
        }
        
        .featured-body h5 {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        
        .featured-body p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 30px;
            color: #aaa;
            text-align: center;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .header-section {
                padding: 30px 20px;
            }
            
            .header-section h1 {
                font-size: 2.2rem;
            }
            
            .stat-item {
                min-width: 140px;
                padding: 12px 20px;
            }
            
            .stat-item .number {
                font-size: 1.8rem;
            }
            
            .city-header h2 {
                font-size: 1.5rem;
            }
            
            .county-item {
                padding: 12px;
            }
            
            .county-img {
                width: 70px;
                height: 70px;
                margin-right: 15px;
            }
            
            .itinerary-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .header-section {
                padding: 20px 20px;
            }
            
            .header-section h1 {
                font-size: 1.8rem;
            }
            
            .stat-item {
                min-width: 100%;
                margin: 0 0 15px;
            }
        }
        
        .culture-card {
            border-left: 4px solid var(--gold);
            padding-left: 15px;
        }
        
        .featured-card .featured-img {
            height: 250px;
        }
        
        .food-section {
            background-color: #fffaf0;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .food-title {
            text-align: center;
            color: var(--primary);
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .food-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding: 15px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .food-info {
            flex-grow: 1;
        }
        
        .food-info h4 {
            color: var(--text-dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .food-info h4 i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .food-info p {
            color: var(--text-light);
            margin-left: 28px;
        }
        
        /* 代表图片区域 */
.representative-image-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin-bottom: 40px;
            aspect-ratio: 16/9; /* 保持16:9的宽高比 */
        }
        
        .representative-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.5s ease;
        }

    .representative-image-container:hover .representative-image {
            transform: scale(1.03);
        }
        
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .representative-image-container {
                height: 300px;
            }
        }

        
        .image-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .image-description {
            font-size: 1.1rem;
            display:none;
        }

        /* 省份区域 */
        .province-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .province-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .province-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 10px;
            border-radius: 10px;
            background-color: #f9f9f9;
            transition: all 0.3s ease;
            text-align: center;
            min-height: 100px;
            text-decoration: none;
            color: inherit;
        }
        
        .province-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            background-color: var(--light-bg);
        }
        
        .province-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 12px;
            background-size: cover;
            background-position: center;
            border: 2px solid white;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        }
        
        .province-name {
            font-weight: 500;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }
        
        .province-count {
            font-size: 0.8rem;
            color: var(--text-light);
        }

