body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.city {
    flex: 1;
}

.header {
    background-color: #4A53E6;
}

.banner {
    padding-top: 82px;
}

.banner .banner-content .banner-img {
    width: 100%;
    object-fit: cover;
    vertical-align: top;

}

.city .city-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 10px;
    padding: 30px 0;
}


.city .city-list .city-item {
    background-color: #F7F8FF;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    position: relative;
    line-height: 1.5em;

    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 10px;
    text-align: center;
}

.city .city-list .city-item:nth-child(1)::before,
.city .city-list .city-item:nth-child(2)::before,
.city .city-list .city-item:nth-child(3)::before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 0;
    width: 35px;
    height: 45px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top center;
}

.city .city-list .city-item:nth-child(1)::before {
    background-image: url('/img/rjdzmap/TOP1-pc.svg');
}

.city .city-list .city-item:nth-child(2)::before {
    background-image: url('/img/rjdzmap/TOP2-pc.svg');
}

.city .city-list .city-item:nth-child(3)::before {
    background-image: url('/img/rjdzmap/TOP3-pc.svg');
}

.city .city-list .city-item:hover {
    font-weight: 600;
    color: #FF7700;
}



/* 屏幕小于 1560px */
@media screen and (max-width: 1560px) {
    .city .city-list {
        grid-template-columns: repeat(5, 1fr);
    }
}


/* 屏幕小于 1375px */
@media screen and (max-width: 1375px) {
    .city .city-list {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* 手机 版心 */
@media screen and (max-width: 768px) {
    .banner {
        padding-top: 48px;
    }
    .city .city-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .city .city-list .city-item {
        height: 90px;
        font-size: 14px;
        font-weight: 600px;
        border-radius: 10px;
        text-align: center;
    }

    .city .city-list .city-item:nth-child(1)::before,
    .city .city-list .city-item:nth-child(2)::before,
    .city .city-list .city-item:nth-child(3)::before {
        width: 22px;
        height: 20px;
    }

    .city .city-list .city-item:nth-child(1)::before {
        background-image: url('/img/rjdzmap/TOP1-phone.svg');
    }

    .city .city-list .city-item:nth-child(2)::before {
        background-image: url('/img/rjdzmap/TOP2-phone.svg');
    }

    .city .city-list .city-item:nth-child(3)::before {
        background-image: url('/img/rjdzmap/TOP3-phone.svg');
    }

}

/* 小屏手机 */
@media screen and (max-width: 360px) {
    .city .city-list .city-item {
        height: 66px;
        font-size: 10px;
        border-radius: 4px;
    }
}