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

.city-index-page {
    background: #eef3f7;
}

.hero-section {
    background: linear-gradient(135deg, #0d47a1 0%, #00897b 100%);
    color: white;
    padding: 54px 0 46px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.28);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

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

.hero-section p {
    font-size: 1.05rem;
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,0.94);
    text-align: left;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-stats div {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    padding: 18px 12px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.hero-stats strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #fff59d;
    margin-bottom: 8px;
}

.hero-stats span {
    color: white;
    font-size: 0.92rem;
}

.search-container {
    max-width: 760px;
    margin: -24px auto 24px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.search-box {
    display: flex;
    gap: 10px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(31, 64, 104, 0.18);
}

.search-input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #d8e1ea;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    color: #22313f;
}

.search-input:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30,136,229,0.12);
}

.search-btn {
    padding: 12px 24px;
    background: #0d47a1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.index-panel {
    background: white;
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(28, 51, 84, 0.08);
}

.section-heading {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 20px;
}

.section-heading h2 {
    color: #0d47a1;
    margin: 0;
    font-size: 1.45rem;
    border: 0;
    padding: 0;
}

.section-heading p {
    margin: 0;
    color: #526273;
    text-align: left;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tags a {
    text-decoration: none;
    color: #0d47a1;
    background: #e8f2ff;
    border: 1px solid #cfe3fa;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.92rem;
}

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

.coverage-grid div {
    border-left: 4px solid #00897b;
    background: #f6fbfb;
    padding: 16px;
    border-radius: 6px;
}

.coverage-grid strong {
    display: block;
    color: #00695c;
    font-size: 1rem;
    margin-bottom: 8px;
}

.coverage-grid span {
    color: #435466;
    font-size: 0.92rem;
}

.province-list {
    display: grid;
    gap: 24px;
}

.province-section {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
}

.province-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin: 0;
    padding: 22px 26px;
    background: linear-gradient(135deg, #0d47a1 0%, #00897b 100%);
    color: white;
}

.province-header h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    color: white;
    border: 0;
    padding: 0;
}

.province-header p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    text-align: left;
}

.province-header span {
    flex: 0 0 auto;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.86rem;
    color: white;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    padding: 22px;
    background: white;
}

.city-card {
    border: 1px solid #dce6ef;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(28, 51, 84, 0.06);
}

.featured-city {
    border-color: #ffb74d;
    box-shadow: 0 8px 22px rgba(245, 124, 0, 0.13);
}

.city-header {
    padding: 16px 18px;
    background: #f6f9fc;
    border-bottom: 1px solid #e4edf5;
}

.city-header h3 {
    margin: 0;
    font-size: 1.12rem;
    color: #0d47a1;
}

.city-header .region {
    font-size: 0.88rem;
    color: #607286;
    margin-top: 4px;
}

.city-content {
    padding: 16px 18px 18px;
}

.city-content p {
    margin: 0 0 12px;
    color: #435466;
    font-size: 0.92rem;
    text-align: left;
}

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

.city-areas span {
    display: inline-block;
    font-size: 0.8rem;
    color: #24445f;
    margin: 3px 4px 3px 0;
    padding: 3px 8px;
    background: #edf6ff;
    border: 1px solid #d8eafb;
    border-radius: 999px;
}

.city-btn {
    display: inline-block;
    padding: 9px 14px;
    background: #0d47a1;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
}

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

.cta-section {
    text-align: center;
    padding: 28px 0;
    background: #0d47a1;
    color: white;
}

.service-label,
.contact-number {
    font-size: 1.55rem;
    font-weight: bold;
    color: #fff;
}

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

.index-footer {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 0;
}

@media (max-width: 900px) {
    .hero-layout,
    .section-heading,
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 36px 0 42px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

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

    .search-box {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .index-panel,
    .city-grid {
        padding: 16px;
    }

    .province-header {
        flex-direction: column;
        padding: 18px;
    }

    .service-label,
    .contact-number {
        font-size: 1.25rem;
    }
}
