/* 政策资讯 */
/* policyInformationList */
.policyInformationList {
    width: 100%;
    box-sizing: border-box;
}
.polInfList_box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0.9rem;
    box-sizing: border-box;
    background-color: #fff;
    min-height: 70vh;
}
.polInfList_sele {
    width: 15%;
}
.polInfList_seleTitle {
    background: #26478a;
    text-align: center;
    height: 3rem;
    line-height: 3rem;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}
.polInfList_seleList {

}
.polInfList_seleItem {
    color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    font-size: 16px;
    line-height: 2.5rem;
    background: #f1f3f5;
}
.polInfList_seleItem_active {
    background: #e4e4e4;
}
.polInfList_seleItem>span {
    position: relative;
}
.polInfList_seleItem>span>img {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-200%, -50%);
    width: 8px;
    height: auto;
    object-fit: contain;
    display: block;
}
.polInfList_tent {
    flex: 1;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.polInfList_tentTitle {
    border-bottom: 1px solid #d9d9d9;
}
.polInfList_tentTitle>span {
    display: inline-block;
    font-size: 17px;
    color: #3f3f3f;
    font-weight: 600;
    padding: 0 0 10px;
    border-bottom: 4px solid #26478a;
    box-sizing: border-box;
}
.polInfList_tentList {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.polInfList_tentItem {
    display: flex;
    gap: 0.45rem;
    flex-direction: column;
    padding: 0 0 1rem;
    box-sizing: border-box;
    transition: all .5s ease;
}
.polInfList_tentItem:hover {
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.polInfList_tentItem>span {
    padding: 0 0.3rem;
    box-sizing: border-box;
}
.polInfList_tentItem>span:nth-child(2),
.polInfList_tentItem>span:nth-child(3) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 显示的行数 */
    -webkit-box-orient: vertical;
    line-height: 1.5em; /* 每行的高度 */
    max-height: 1.5em; /* 最大高度为三行的高度 */
}
.polInfList_tentItem>span:nth-child(2) {
    font-size: 15px;
    font-weight: 600;
    color: #3f3f3f;
}
.polInfList_tentItem>span:nth-child(3){
    font-size: 13px;
    color: #666666;
}
.polInfList_tentItem>span:nth-child(4) {
    font-size: 13px;
    color: #bbbbbb;
}
.polInfList_tentImg {
    margin-bottom: 0.2rem;
    overflow: hidden;
}
.polInfList_tentImg>img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: all .5s ease;
}
.polInfList_tentItem:hover .polInfList_tentImg>img {
    transform: scale(1.1);
}