/* #region 基础 */
.module {
    margin-top: 20px;
}

.right .module .title {
    padding-bottom: 10px;
}

.right .module .title span {
    font-size: 20px;
}

.module .content {
    margin-top: 20px;
}

.banners .banner {
    height: 540px;
}

.city .left {
    width: 970px;
}

.city .right {
    width: 390px;
}

.city .title {
    padding: 0;
    border: 0;
}

.advertise {
    height: 200px;
}

/* #endregion */


/* #region 地区 */
.region .align {
    display: flex;
    gap: 20px;
}

.region .align:not(:first-child) {
    margin-top: 20px;
}

.region .align div {
    margin-top: 4px;
    padding: 0 0 20px 20px;
    color: #999;
    font-size: 16px;
}

.region .align ul {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px 20px 0;
    padding-left: 0;
    border-bottom: 1px solid #e5e5e5;
}

.region .align li>a {
    display: inline-block;
    padding: 3px 16px;
    color: #999;
    font-size: 16px;
    background: #f1f1f1;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    transition: 0.3s;
}

.region .align li>a:hover {
    color: #49c066;
    background: #f2fff4;
    border: 1px solid #49c066;
    transition: 0.3s;
}

.region .align .active a {
    color: #49c066;
    background: #f2fff4;
    border: 1px solid #49c066;
}

/* #endregion */

/* #region 医院列表 */
.city-list .title span {
    color: #3388ff;
}

.city-list .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.city-list .list li {
    width: 31.9%;
    height: 310px;
}

.city-list .list li>a {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.city-list .list .img {
    width: 100%;
    height: 100%;
}

.city-list .list .name {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    padding: 14px;
    background: linear-gradient(90deg, rgba(73, 192, 102, 1) 59.03%, rgba(73, 192, 102, 0) 100%);
}

.city-list .list .name img {
    width: 32px;
    height: 32px;
}

.city-list .list .name div {
    color: #fff;
    font-size: 25px;
}
/* #endregion */