* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #f5f8fb;
    color: #132033;
    line-height: 1.75
}

a {
    text-decoration: none;
    color: inherit
}

.wrap {
    width: 1160px;
    max-width: calc(100% - 28px);
    margin: 0 auto
}

.top {
    background: #fff;
    border-bottom: 1px solid #e7edf4
}

.top .wrap {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.brand b {
    display: block;
    font-size: 22px;
    color: #0f4c75
}

.brand span {
    display: block;
    font-size: 12px;
    color: #64748b
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: #0f4c75;
    color: #fff;
    font-weight: 900
}

.hero {
    background: linear-gradient(135deg, #123d5a, #0d5677);
    color: #fff;
    padding: 54px 0
}

.hero h1 {
    font-size: 36px;
    line-height: 1.25
}

.hero p {
    max-width: 820px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .84)
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px
}

.meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 800
}

.toolbar {
    padding: 18px 0
}

.toolbar a {
    display: inline-flex;
    margin-right: 8px;
    margin-bottom: 8px;
    min-height: 34px;
    align-items: center;
    padding: 5px 12px;
    border: 1px solid #dfe8f2;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 800
}

.province-block {
    margin: 0 0 22px;
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(19, 32, 51, .06)
}

.province-block h2 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 14px
}

.province-block h2 span, .city-card h3 span {
    margin-left: 8px;
    font-size: 12px;
    color: #64748b;
    font-weight: 700
}

.city-card {
    border-top: 1px dashed #e7edf4;
    padding-top: 16px;
    margin-top: 16px
}

.city-card:first-of-type {
    border-top: 0;
    padding-top: 0
}

.city-card h3 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 10px
}

.site-grid {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 10px
}

.site-grid a {
    display: block;
    border: 1px solid #dfe8f2;
    border-radius: 12px;
    background: #f8fbff;
    padding: 12px;
    min-height: 72px
}

.site-grid a:hover {
    border-color: #b8c9dc;
    background: #fff
}

.site-grid strong {
    display: block;
    color: #0f4c75;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.site-grid span {
    display: block;
    margin-top: 4px;
    color: #526278;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.empty {
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    color: #64748b
}

.note {
    margin: 24px 0 34px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.9
}

.foot {
    padding: 24px 0;
    background: #0f172a;
    color: #cbd5e1;
    font-size: 13px
}

.foot a {
    color: #e2e8f0
}

@media (max-width: 900px) {
    .site-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .hero h1 {
        font-size: 28px
    }

    .top .wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0
    }
}

@media (max-width: 560px) {
    .site-grid {
        grid-template-columns:1fr
    }

    .province-block {
        padding: 16px
    }
}