/* 关于本院 */
/* AboutHospitalList */
.AboutHospitalList {
    width: 100%;
    box-sizing: border-box;
}
.AboHosList_box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0.9rem;
    box-sizing: border-box;
    background-color: #fff;
    min-height: 70vh;
}
/* AboHosList_tentList */
.AboHosList_tent {
    flex: 1;
    width: 60%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.AboHosList_tent_sift {
    background: #f8f8f8;
    padding: 1.2rem 2rem;
    font-size: 16px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0.5rem
}
.AboHosList_tent_sift a {
    padding: 0.3rem 0.6rem;
    box-sizing: border-box;
    border-radius: 5px;
}
.AboHosList_tent_sift .AboHosList_tent_sift_active {
    color: #fff;
    background-color: #26478a;
}
.AboHosList_tentList {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    box-sizing: border-box;
    height: 18.7rem;
    font-size: 16px;
    color: #666;
    line-height: 1.6em;
}
.AboHosList_tentListF {
    font-size: 16px;
    color: #666;
    line-height: 2em;
    padding: 0.6rem 0 0;
    box-sizing: border-box;
}
.AboHosList_tentList_img {
    /* width: 38%; */
    max-width: 52%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.AboHosList_tentList_img>img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.5s ease;
}
.AboHosList_tentBox:hover .AboHosList_tentList_img>img {
    transform: scale(1.1);
}
.AboHosList_tentList_tent {
    flex: 1;
    height: 100%;
    font-size: 16px;
    color: #666;
    line-height: 1.6em;
    overflow-x: hidden;
    overflow-y: scroll;
}
.AboHosList_tentList_tent::-webkit-scrollbar {
    display: none;
}
.AboHosList_tagG {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #26478a;
    border-radius: 50%;
    margin-right: 8px;
}
.AboHosList_tagGS {
    color: #26478a;
    margin-right: 8px;
}

/* OrgStrList_tentList */
.OrgStrList_tentList {
    display: flex;
    justify-content: center;
    align-items: center;
}
.OrgStrList_tentList>img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* HosStaList_tentList */
.HosStaList_tentList {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.HosStaList_tentItem {
    padding: 0 0 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: all .5s ease;
}
.HosStaList_tentItem:hover {
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.HosStaList_tentItem_img {
    width: 100%;
    overflow: hidden;
}
.HosStaList_tentItem_img>img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all .5s ease;
}
.HosStaList_tentItem:hover .HosStaList_tentItem_img>img {
    transform: scale(1.1);
}
.HosStaList_tentItem_title {
    display: flex;
    gap: 0.45rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.HosStaList_tentItem_title>span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 显示的行数 */
    -webkit-box-orient: vertical;
    line-height: 1.5em; /* 每行的高度 */
    max-height: 1.5em; /* 最大高度为三行的高度 */
}
.HosStaList_tentItem_title>span:first-child {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}
.HosStaList_tentItem_title>span:last-child {
    font-size: 13px;
    color: #666;
}