/* #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;
}

.hospital .left {
    width: 850px;
}

.hospital .right {
    width: 330px;
}

.hospital .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: #3375e2;
    background: #f2fff4;
    border: 1px solid #3375e2;
    transition: 0.3s;
}

.region .align .active a {
    color: #3375e2;
    background: #ffffff;
    border: 1px solid #3375e2;
}

/* #endregion */

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

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

.hospital-list .list li {
    width: 46.7%;
    height: 340px;
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-radius: 3px;
    overflow: hidden;
}

.hospital-list .list li>a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;

}

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

.hospital-list .list .info {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    align-content: end;
    gap: 10px;
    height: 60%;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 1) 25.69%,
            rgba(255, 255, 255, 0) 100%);
}

.hospital-list .list .info>span {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
}

.hospital-list .list .info:hover>span {
    color: #3375e2;
    transition: 0.3s;
}

.hospital-list .list .info p {
    color: #999;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: 0.3s;
}

.hospital-list .list .info:hover>p {
    color: #3375e2;
    transition: 0.3s;
}

.hospital-list .list .tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hospital-list .list .tags span {
    display: inline-block;
    padding: 2px 10px;
    color: #ffa96b;
    font-size: 10px;
    background: #fff2d9;
    border: 1px solid #ffa96b;
    border-radius: 17px;
}

.hospital-list .list .tags .city {
    color: #3375e2;
    background: #f2fff4;
    border: 1px solid #3375e2;
}

.hospital-list .list .tags .city::before {
    display: inline-block;
    vertical-align: -2px;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    content: "";
    background: url(/static/icon/location.png) no-repeat;
    background-size: 100% 100%;
}

.hospital-list .list .tags .kab {
    color: #3388ff;
    background: #f2f9ff;
    border: 1px solid #3388ff;
}

.hospital-list .list .tags .kab::before {
    display: inline-block;
    vertical-align: -2px;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    content: "";
    background: url(/static/icon/award.png) no-repeat;
    background-size: 100% 100%;
}

/* #endregion */