.topimgbox {
    width: 100%;
    height: 100%;
    display: flex;
}

.topimgbox img {
    width: 100%;
    height: 100%;
    display: block;
}



/* 新闻中心 */
.newbox {
    width: 100%;
}

/* tabar */
.tabbox {
    display: flex;
    margin: 60px 0;
}


.tabbox .new_bar {
    width: 33%;
    cursor: pointer;
    border: 1px solid #7a84b0;
    display: flex;
}

.tabbox .new_bar:hover {
    background-color: #2f4dd5;

}

.tabbox .new_bar:hover p {
    color: #fff;
}

.tabbox .new_bar P {
    margin: 16px auto;
    font-size: 22px;
}

.tabbox .new_baractive {
    background-color: #2f4dd5;
}

.tabbox .new_baractive p {
    color: #fff;
}


.news_detail {
    width: 100%;
    padding-bottom: 100px;
}


.list_deinfo {
    margin-bottom: 40px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    box-shadow: 5px 5px 10px #777777;
}

.infoimg {
    width: 30%;
    /* border: 1px solid red; */
    overflow: hidden;
}

.infoimg img {
    width: 100%;
    transition-duration: 1.2s;
    height: 235px
}

.info {
    width: 67%;
    padding: 15px 30px 00px 30px;
    display: flex;
    flex-direction: column;
}

.info p:nth-child(1) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 26px;
}

.info p:nth-child(2) {
    line-height: 26px;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.info p:nth-child(3) {
    margin-top: 15px;
    color: #777777;
    text-align: end;
    cursor: pointer;
}

.list_deinfo:hover .info p:nth-child(3) {
    color: #5D5DC3;
}


.list_deinfo:hover .infoimg img {
    transform: scale(1.2);
}




/* 分页 */
.none_box {
    display: none;
}

.show_box {
    display: block;
}

.page_container {
    display: flex;
}

#pagebox {
    margin: 60px auto;
}