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

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

.banners .banner {
    height: 300px;
}

.banners .pagination {
    bottom: 19px;
    gap: 14px;
}

.banners .pagination li {
    width: 44px;
    height: 7px;
    border-radius: 3.5px;
}

/* #endregion */

/* #region 城市 */
.city .region {
    display: flex;
    padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
}

.city .region:first-child {
    padding-top: 0;
}

.city .region:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.city .region div {
    width: 5.5%;
    color: #383838;
    font-size: 20px;
    font-weight: 700;
}

.city .region ul {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.city .region li>a {
    color: #808080;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
}

.city .region li>a:hover {
    color: #318dde;
    transition: 0.3s;
}

.city .region .active a {
    color: #318dde;
}

/* #endregion */

/* #region 医院 */
.hospital {
    margin-top: 50px;
}

.hospital .title {
    display: flex;
    align-items: end;
    background: #fafafa;
    padding: 10px 5px;
}

.hospital .title img {
    width: 32px;
    height: 32px;
}

.hospital .title h3 {
    margin-left: 8px;
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.hospital .title span {
    margin-left: 22px;
    color: #000;
    font-size: 18px;
}

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

.hospital .list li {
    overflow: hidden;
    width: 23.3%;
    height: 346px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.hospital .list li>a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.hospital .list .img {
    position: relative;
    height: 194px;
}

.hospital .list .img span {
    position: absolute;
    top: 0;
    right: 23px;
    display: block;
    width: 42px;
    height: 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 48px;
    background: #FA8346;
}

.hospital .list .img span::before, .hospital .list .img span::after {
    position: absolute;
    bottom: -12px;
    width: 0;
    height: 0;
    content: "";
}

.hospital .list .img span::before {
    left: 0;
    border-top: 6px solid #FA8346;
    border-right: 11px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid #FA8346;
}

.hospital .list .img span::after {
    right: 0;
    border-top: 6px solid #FA8346;
    border-right: 11px solid #FA8346;
    border-bottom: 6px solid transparent;
    border-left: 11px solid transparent;
}

.hospital .list .info {
    flex: 1;
    padding: 6px 12px;
    text-align: center;
    background: rgba(242, 249, 255, 0.5);
}

.hospital .list .headline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 302px;    
}

.hospital .list .headline::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 68px;
    height: 4px;
    content: "";
    background: #467cee;
    border-radius: 2px;
}

.hospital .list .info p {
    margin-top: 8px;
    color: #808080;
    font-size: 14px;
    line-height: 155%;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hospital .list .tags {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.hospital .list .tags span {
    display: inline-block;
    padding: 0 6px;
    color: #D95700;
    font-size: 12px;
    line-height: 18px;
    background: #FFDCC4;
    border-radius: 4px;
}

/* #endregion */