/* 非遗资料库-详情 */
/* IntDat_tent */
.IntDat_tent {
    display: flex;
    gap: 2.5rem;
    flex-direction: column;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
}
.IntDat_tentDetail {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    /* background: #26478a; */
    /* padding: 1rem; */
    box-sizing: border-box;
}
.IntDat_tentDetail_video {
    position: relative;
    width: 60%;
    overflow: hidden;
}
.IntDat_tentDetail video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.IntDat_tentDetail_video .IntDat_tentDetail_img {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(8);
    width: 75px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all .5s ease;
}
.IntDat_tentDetail:hover .IntDat_tentDetail_video .IntDat_tentDetail_img_active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
/* .IntDat_tentDetail:hover .IntDat_tentDetail_video .IntDat_tentDetail_img_active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
} */
.IntDat_tentDetail .IntDat_tentInfo {
    flex: 1;
    /* color: #fff; */
    padding: 1rem 0;
    box-sizing: border-box;
}
.IntDat_tentInfo .IntDat_tentInfo_title {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    font-size: 18px;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #d9d9d9;
}
.IntDat_tentInfo .IntDat_tentInfo_title>span:last-child {
    font-size: 15px;
}
.IntDat_tentInfo .IntDat_tentInfo_tent {
    font-size: 16px;
    padding-top: 1rem;
}
.IntDat_tentInfo .IntDat_tentInfo_tent * {
    text-wrap: wrap !important;
}
.IntDat_tentInfo .IntDat_tentInfo_tent img {
    max-width: 100% !important;
    height: auto;
    object-fit: contain;
    vertical-align: baseline;
}


/* IntDat_tentRec */
.IntDat_tentRec {

}
.IntDat_tentRec_title {
    font-size: 16px;
    border-bottom: 1px solid #d9d9d9;
}
.IntDat_tentRec_title>span {
    padding-bottom: 0.5rem;
    display: block;
}
.IntDat_tentRec_list {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 0;
    box-sizing: border-box;
}
.IntDat_tentRec_item {
    background-color: #fff;
    transition: all .5s ease;
}
.IntDat_tentRec_item:hover {
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.IntDat_Library_item_video {
    position: relative;
}
.IntDat_Library_item_video video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.IntDat_Library_item_video img {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(6);
    width: 42px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all .5s ease;
}
.IntDat_Library_item_video .IntDatList_Library_time {
    position: absolute;
    bottom: 6px;
    right: 12px;
    color: #fff;
    font-size: 12px;
}
.IntDat_tentRec_item:hover img{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.IntDat_Library_tent {
    display: flex;
    gap: 0.1rem;
    flex-direction: column;
    font-size: 15px;
    color: #666;
    padding: 0.8rem 0.7rem;
    box-sizing: border-box;
}
.IntDat_Library_tent>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; /* 最大高度为三行的高度 */
}
.IntDat_Library_tent>span:first-child {
    color: #333;
    font-size: 16px;
}