/* 学术研究 */
.AcademicResearchList {
    width: 100%;
    box-sizing: border-box;
}
.AcaResList_box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0.9rem;
    box-sizing: border-box;
    background-color: #fff;
    min-height: 70vh;
}
/* AcaResList_tentList */
.AcaResList_tentList {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.AcaResList_tentItem {
    background-color: #fff;
    transition: all .5s ease;
    padding: 1rem 1.5rem 1.5rem;
    box-sizing: border-box;
}
.AcaResList_tentItem:hover {
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.AcaResList_tentItem>span {
    font-size: 14px;
    color: #bbbbbb;
}
.AcaResList_tentItem>.AcaResList_tentItem_title {
    font-size: 15px;
    color: #404040;
    font-weight: 600;
    margin: 0.6rem 0 1.1rem;
    box-sizing: border-box;
}
.AcaResList_tentItem>span:last-child {
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 显示的行数 */
    -webkit-box-orient: vertical;
    line-height: 1.8em; /* 每行的高度 */
    max-height: 5.4em; /* 最大高度为三行的高度 */
}
/* digColList_tentList */
.digColList_tentList {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.digColList_tentItem {
    padding: 0 0 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: all .5s ease;
}
.digColList_tentItem:hover {
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.digColList_tentItem_img {
    overflow: hidden;
}
.digColList_tentItem_img>img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all .5s ease;
}
.digColList_tentItem:hover .digColList_tentItem_img>img {
    transform: scale(1.1);
}
.digColList_tentItem_title {
    display: flex;
    gap: 0.45rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0.3rem;
    box-sizing: border-box;
}
.digColList_tentItem_title>span {

}
.digColList_tentItem_title>span:first-child {
    font-size: 15px;
    color: #3f3f3f;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 显示的行数 */
    -webkit-box-orient: vertical;
    line-height: 1.5em; /* 每行的高度 */
    max-height: 1.5em; /* 最大高度为三行的高度 */
}
.digColList_tentItem_title>span:last-child {
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 显示的行数 */
    -webkit-box-orient: vertical;
    line-height: 1.8em; /* 每行的高度 */
    max-height: 1.8em; /* 最大高度为三行的高度 */
}