  /* 独享CSS - 服务区域页面内容 */
        
        /* 全局样式增强 */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 页面顶部横幅 */
        .page-hero {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
            margin-top: 80px;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 区域筛选器样式 */
        .region-filter {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 50px;
        }
        
        .filter-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-title i {
            color: var(--secondary-color);
        }
        
        .filter-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition);
            padding: 10px;
            border-radius: 4px;
        }
        
        .filter-option:hover {
            background-color: rgba(26, 43, 76, 0.05);
        }
        
        .filter-option.active {
            background-color: rgba(26, 43, 76, 0.1);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .filter-option input {
            display: none;
        }
        
        .custom-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-color);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .filter-option.active .custom-checkbox {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .filter-option.active .custom-checkbox::after {
            content: '✓';
            color: white;
            font-size: 0.8rem;
        }
        
        /* 区域列表样式 */
        .regions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .region-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .region-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .region-icon {
            height: 120px;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            position: relative;
        }
        
        .region-icon.special {
            background: var(--gradient-gold);
        }
        
        .region-icon.recommended {
            background: var(--gradient);
        }
        
        /* 区域推荐标签 */
        .region-badge {
            position: absolute;
            top: 10px;
            right: -30px;
            background: var(--secondary-color);
            color: white;
            font-size: 0.7rem;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .region-badge.special {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
        }
        
        .region-content {
            padding: 20px;
        }
        
        .region-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .region-content p {
            color: var(--text-color);
            margin-bottom: 15px;
            font-size: 0.9rem;
            min-height: 60px;
        }
        
        .region-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 15px;
        }
        
        .region-tag {
            background-color: rgba(26, 43, 76, 0.1);
            color: var(--primary-color);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }
        
        .region-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.85rem;
            color: #666;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .stat-item i {
            color: var(--secondary-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
            width: 100%;
        }
        
        .btn:hover {
            background-color: #b3913d;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* 区域详情模态框样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .modal-content {
            background-color: white;
            max-width: 800px;
            margin: 50px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .modal-header {
            background: var(--gradient);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            margin: 0;
            font-size: 1.5rem;
        }
        
        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .region-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .detail-section h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .policy-list {
            list-style: none;
        }
        
        .policy-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .policy-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .contact-box {
            background-color: rgba(26, 43, 76, 0.05);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .contact-box h5 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* 区域比较样式 */
        .comparison-section {
            background-color: var(--light-color);
        }
        
        .comparison-table {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .comparison-header {
            display: grid;
            grid-template-columns: 1fr repeat(3, 1fr);
            background-color: var(--primary-color);
            color: white;
        }
        
        .comparison-header > div {
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }
        
        .comparison-row {
            display: grid;
            grid-template-columns: 1fr repeat(3, 1fr);
            border-bottom: 1px solid #eee;
        }
        
        .comparison-row:nth-child(even) {
            background-color: rgba(26, 43, 76, 0.02);
        }
        
        .comparison-row > div {
            padding: 15px;
        }
        
        .comparison-row .row-title {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .comparison-row .row-value {
            text-align: center;
        }
        
        .comparison-row .highlight {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        /* 宣传语样式 */
        .promotion {
            background: var(--gradient);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .promotion-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .promotion h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .promotion p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .promotion-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .promotion-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
        }
        
        .promotion-btn:hover::before {
            left: 100%;
        }
        
        .promotion-btn:hover {
            background-color: #b3913d;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .promotion-btn i {
            transition: var(--transition);
        }
        
        .promotion-btn:hover i {
            transform: translateX(5px);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .region-detail-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-header, .comparison-row {
                grid-template-columns: 1fr repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .regions-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-header, .comparison-row {
                grid-template-columns: 1fr 1fr;
            }
            
            .promotion h2 {
                font-size: 1.8rem;
            }
            
            .promotion p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .filter-options {
                grid-template-columns: 1fr;
            }
            
            .comparison-header, .comparison-row {
                grid-template-columns: 1fr;
            }
        }