/* 城市分站导航页面专用样式 */

/* 英雄区域 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.hero-section p {
    font-size: 1rem;
    margin: 8px 0 0 0;
    opacity: 1;
    color: white;
}

/* 搜索容器 */
.search-container {
    max-width: 400px;
    margin: 15px auto;
    padding: 0 15px;
}

.search-box {
    display: flex;
    gap: 6px;
}

.search-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    color: #333;
}

.search-input:focus {
    border-color: #667eea;
}

.search-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}

/* 省份区域样式 */
.province-section {
    padding: 15px 0;
}

.province-header {
    margin-bottom: 12px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    color: white;
}

.province-title h2 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

/* 城市网格 */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

/* 城市卡片 */
.city-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
}

.city-header {
    padding: 8px 10px;
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: white;
}

.city-header h3 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.city-header .region {
    font-size: 0.8rem;
    opacity: 1;
    margin-top: 3px;
    color: white;
}

.city-content {
    padding: 8px 10px;
}

.city-areas {
    margin-bottom: 8px;
}

.city-areas span {
    display: inline-block;
    font-size: 0.8rem;
    color: #333;
    margin: 2px;
    padding: 2px 6px;
    background: #e3f2fd;
    border-radius: 3px;
}

.city-btn {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.city-btn:hover {
    text-decoration: none;
}

/* CTA区域 */
.cta-section {
    text-align: center;
    padding: 25px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-label {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-right: 5px;
}

.contact-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.contact-number:hover {
    text-decoration: none;
}

/* 底部 */
footer {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 6px 0;
    font-size: 0.9rem;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.4rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .city-grid {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .province-title h2 {
        font-size: 1.1rem;
    }
    
    .service-label,
    .contact-number {
        font-size: 1.4rem;
    }
}