
        /* ========== 全局重置 & 基础 ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, "Microsoft Yahei", "PingFang SC", "Helvetica Neue", sans-serif;
            background-color: #f5f7fb;
            color: #1e2a3e;
            line-height: 1.5;
            padding: 0;
            margin: 0;
        }

        /* 容器全宽，内部用padding控制呼吸 */
        .container {
            max-width: 100%;
            padding: 0 16px;
            margin: 0 auto;
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
                padding: 0 20px;
            }
        }

        /* 导航优化 - 移动优先 */
        .navbar {
            background-color: #ffffff !important;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            padding: 8px 0;
        }

        .navbar-brand img {
            height: 48px;
            width: auto;
        }

        .nav-link {
            font-size: 15px;
            font-weight: 500;
            color: #2c3e50 !important;
            margin: 0 6px;
        }

        .nav-link.active {
            color: #0d6efd !important;
        }

        /* 面包屑 */
        .breadcrumb {
            background: transparent;
            padding: 12px 0 8px 0;
            margin-top: 68px;
            font-size: 13px;
        }

        /* 头部 & 统计卡片 */
        .header-section {
            text-align: center;
            margin-bottom: 32px;
        }

        .header-section h1 {
            font-size: 28px;
            font-weight: 800;
            color: #0b2b3b;
            margin: 16px 0 12px;
            letter-spacing: -0.3px;
        }

        .header-section p {
            font-size: 16px;
            color: #4a627a;
            max-width: 700px;
            margin: 0 auto 24px;
            padding: 0 8px;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .stat-item {
            background: white;
            border-radius: 20px;
            padding: 12px 16px;
            min-width: 100px;
            flex: 1 0 auto;
            max-width: 130px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
            border: 1px solid #eef2f6;
        }

        .stat-item .number {
            font-size: 26px;
            font-weight: 800;
            color: #0d6efd;
            line-height: 1.2;
        }

        /* ========= 区县卡片 - 极简风格：仅图片+区名，双列手机，强点击感 ========= */
        .city-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 20px 16px;
            margin-bottom: 32px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
        }

        .city-header {
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #eef2f8;
        }

        .city-header h2 {
            font-size: 22px;
            font-weight: 700;
            margin: 0;
        }

        .city-header small {
            font-size: 14px;
            color: #6c86a3;
            font-weight: normal;
        }

        /* 网格重构：手机默认双列，完全无简介/标签 */
        .counties-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        /* 每个区县卡片 - 简洁优雅，强点击反馈 */
        .county-item {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.25s ease;
            border: 1px solid #edf2f7;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            cursor: pointer;
        }

        /* 悬停 / 点击反馈: 提升交互感，吸引点击 */
        .county-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            border-color: #c0d4e6;
            background: #fefeff;
        }

        .county-item:active {
            transform: translateY(-1px);
            transition: 0.05s;
        }

        /* 图片容器：居中，圆形，精致投影 */
        .county-img-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 20px 8px 20px;
            background: #fafcff;
        }

        .county-img {
            width: 90px;
            height: 90px;
            background-size: cover;
            background-position: center;
            border-radius: 50%;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
            border: 3px solid white;
            transition: transform 0.2s ease;
        }

        .county-item:hover .county-img {
            transform: scale(1.02);
        }

        /* 文字信息区域：只保留区名，完全移除简介和标签 */
        .county-info {
            text-align: center;
            padding: 6px 12px 18px 12px;
        }

        .county-info h5 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 0;
            color: #1e2f3e;
            letter-spacing: -0.2px;
        }

        /* 彻底移除所有标签和简介的样式 */
        .county-tags, .county-info p, .county-tag {
            display: none;
        }

        /* 平板及大屏适配：三列或四列，图片稍大 */
        @media (min-width: 768px) {
            .counties-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .county-img {
                width: 100px;
                height: 100px;
            }
            .county-info h5 {
                font-size: 17px;
            }
        }

        @media (min-width: 1024px) {
            .counties-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* 当宽度极小 (<=480px) 依然保持双列，确保紧凑 */
        @media (max-width: 480px) {
            .counties-container {
                gap: 12px;
            }
            .county-img {
                width: 75px;
                height: 75px;
            }
            .county-info h5 {
                font-size: 14px;
            }
        }

        /* ========= 旅游攻略区域 - 紧凑无左右多余空间 ========= */
        .tour-guide {
            background: #ffffff;
            border-radius: 28px;
            padding: 20px 0px;
            margin-bottom: 40px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
        }

        .tour-header {
            text-align: center;
            padding: 0 16px 20px 16px;
            border-bottom: 1px solid #eef2f8;
            margin-bottom: 24px;
        }

        .tour-title {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.3px;
            color: #0b2b3b;
        }

        .tour-subtitle {
            font-size: 15px;
            color: #4b6b8f;
            margin-top: 6px;
        }

        .tour-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding: 0 16px;
            margin-bottom: 32px;
        }

        .highlight-card {
            flex: 1 1 calc(50% - 12px);
            background: #f8fafd;
            border-radius: 24px;
            padding: 14px 8px;
            text-align: center;
            border: 1px solid #eef2fa;
        }

        .highlight-icon {
            font-size: 26px;
            color: #0d6efd;
            margin-bottom: 6px;
        }

        .highlight-title {
            font-size: 13px;
            font-weight: 600;
            color: #4b5e77;
            letter-spacing: 0.3px;
        }

        .highlight-desc {
            font-size: 15px;
            font-weight: 700;
            color: #1f2f3e;
            margin-top: 4px;
        }

        @media (min-width: 500px) {
            .tour-highlights {
                flex-wrap: nowrap;
                gap: 16px;
            }
            .highlight-card {
                flex: 1;
            }
        }

        /* 每日行程卡片 */
        .itinerary-card {
            margin: 0 0 28px 0;
            border-radius: 24px;
            background: #ffffff;
            overflow: hidden;
            border: 1px solid #eef2f6;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }

        .day-header {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            padding: 14px 18px;
            color: white;
        }

        .day-number {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            margin-right: 16px;
        }

        .day-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .day-subtitle {
            font-size: 13px;
            opacity: 0.9;
        }

        .itinerary-body {
            padding: 20px 18px;
        }

        .itinerary-section {
            margin-bottom: 24px;
        }

        .section-title {
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: #1e2f3e;
        }

        .section-title i {
            color: #0d6efd;
            font-size: 18px;
            margin-right: 8px;
        }

        .attraction-card {
            background: #f9fbfe;
            padding: 14px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
            border-left: 4px solid #0d6efd;
        }

        .attraction-name {
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
            color: #0a2b44;
        }

        .attraction-desc {
            font-size: 14px;
            color: #4b6589;
            line-height: 1.45;
        }

        .info-title {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #1e4663;
        }

        .info-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .info-list li {
            font-size: 13px;
            background: #f0f4fa;
            padding: 5px 12px;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .info-list i {
            color: #198754;
            font-size: 12px;
        }

        .row-custom {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 6px;
        }

        .info-col {
            flex: 1 1 180px;
        }

        .day-img img, .food-img img, .page-cover img, .map-box img {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 24px;
            object-fit: cover;
            display: block;
            margin: 0 auto;
        }

        .page-cover img {
            max-height: 280px;
            object-fit: cover;
        }

        .day-img {
            margin: 16px 0 12px 0;
        }

        .food-img {
            margin-top: 24px;
            margin-bottom: 28px;
        }

        .food-img h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }

        .map-box {
            background: #fafdff;
            border-radius: 28px;
            padding: 12px;
            margin: 24px 0;
        }

        .map-box h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        @media (max-width: 480px) {
            .itinerary-body {
                padding: 16px 14px;
            }
            .day-header {
                padding: 12px 16px;
            }
            .day-number {
                width: 42px;
                height: 42px;
                font-size: 22px;
            }
            .day-title {
                font-size: 18px;
            }
            .attraction-card {
                padding: 12px;
            }
        }

        /* 辅助聚焦 */
        .county-item:focus-visible {
            outline: 2px solid #0d6efd;
            outline-offset: 2px;
        }

        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;
        }

