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

/* #endregion */

/* #region 列表 */
.hospital-list .title {
    padding-bottom: 0;
    border-bottom: 0;
}

.hospital-list .intro {
    margin-top: 20px;
    padding: 16px;
    color: #666;
    font-size: 16px;
    line-height: 28px;
    text-indent: 2em;
    background: #f5f8ff;
    border-radius: 10px;
}

.hospital-list>.content {
    display: flex;
    align-items: start;
    align-content: start;
    gap: 40px;
    margin-top: 20px;
}

.hospital-list .left {
    width: 260px;
}


.hospital-list .right {
    position: relative;
    width: 1100px;
}

/* #endregion */

/* #region 地区 */
.left .region {
    background: #f4f4f4;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
}

.left .region .title {
    display: block;
    padding: 24px 16px 0;
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.left .region .list {
    margin-top: 24px;
    padding-bottom: 10px;
}

.left .region .list>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 13px 16px;
    color: #333;
    font-size: 16px;
    line-height: 22px;
    transition: .3s;
}

.left .region .list>li>a:hover,
.left .region .list .active>a {
    color: #fff;
    background: #3375e2;
}

.left .region .list>li>a>svg {
    transform: rotate(0deg);
    transition: transform .3s;
}

.left .region .list i {
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(/static/icon/arrow.svg);
    transform: rotate(0deg);
    transition: all .3s;
}

.left .region .list .active i {
    background-image: url(/static/icon/arrow-a.svg);
    transform: rotate(180deg);
}

.left .region .list>li>a:hover i {
    background-image: url(/static/icon/arrow-a.svg);
}

.left .region .district {
    overflow: hidden;
    max-height: 0;
    background: #fefefe;
    transition: .5s;
}

.left .region .list .active .district {
    max-height: 350px;
}

.left .district ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 8px;
    padding: 16px;
}

.left .region .show ul {
    top: 0;
}

.left .district ul>li {
    width: 29.7%;
}

.left .district a {
    display: block;
    width: 100%;
    color: #333;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .3s;
}

.left .district a:hover {
    color: #3375e2;
}

/* #endregion */

/* #region 搜索 */
.right .search {
    position: absolute;
    right: 0;
    display: flex;
}

.right .search input {
    box-sizing: border-box;
    width: 240px;
    height: 32px;
    color: #666;
    font-size: 14px;
    padding: 0 32px 0 16px;
    border: 1px solid #3375e2;
    border-radius: 2px 0 0 2px;
}

.right .search a {
    box-sizing: border-box;
    display: block;
    height: 32px;
    padding: 0 16px;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    background: #3375e2;
    border-radius: 0 2px 2px 0;
    transition: .3s;
}

.right .search a:hover {
    background: #093a92;
}

.right .search a:active {
    background: #3375e2;
    border-top: 1px solid #3375e2;
}

/* #endregion */

/* #region 医院 */
.right .hospital .title h3 {
    font-size: 22px;
    line-height: 32px;
}

.right .hospital .district {
    margin-top: 40px;
}

.right .hospital .district div {
    position: relative;
    padding-left: 12px;
    color: #3375e2;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.right .hospital .district div::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 5px;
    height: 20px;
    content: "";
    background: #3375e2;
}

.right .hospital .district ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 24px;
    margin-top: 24px;
    padding: 0 16px;
}

.right .hospital .district ul>li {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 48.1%;
}

.right .hospital .district ul a {
    display: block;
    color: #333;
    font-size: 16px;
    line-height: 22px;
    transition: .3s;
}

.right .hospital .district ul a:hover {
    color: #3375e2;
}

.right .hospital .district ul i {
    display: block;
    width: 76px;
    height: 22px;
    background: url(/static/icon/ivf.png) no-repeat;
    background-size: 100% 100%;
}

.right .hospital .district ul p {
    display: block;
    width: 100%;
    color: #999;
    font-size: 12px;
    line-height: 17px;
}

/* #endregion */