.new_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 260px;
}
.new_item_box{
    width: 33.3%;
    box-sizing: border-box;
    overflow: hidden;
    /*margin-right: 25px;*/
    /*margin-bottom: 25px;*/
    padding: 15px;
}
/*.new_item_box:nth-child(3n){*/
/*    margin-right: 0;*/
/*}*/
.new_item_box:last-child{
    margin-right: auto;
}
.new_item {
    background: #f8f8f8;
    text-align: left;
    cursor: pointer;
}
.new_item:hover{
    background: #f2f2f2;
}

.news-container-box{
    margin-top: 85px;
}


.new_item_image {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 65.3%;
}

.new_item_image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}
.new_item:hover .new_item_image img {
    transform: scale(1.05);
}
.news_item_title{
    width: 100%;
    height: 65px;
    padding: 20px 32px;
    color: #595757;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 2;*/
    /*-webkit-box-orient: vertical;*/
}
.news_item_date{
    width: 100%;
    padding: 6px 32px 27px;
    color: #9a999a;
    font-size: 18px;
    box-sizing: border-box;
}
.pagination{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    margin: 0 0 40px;
    position: relative;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.pagination_item{
    padding: 0 4px;
    background: #f4f4f5;
    vertical-align: top;
    display: inline-block;
    font-size: 13px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    color: #606266;
    border-radius: 2px;
    margin: 0 5px;
    user-select: none;
}
.pagination_item.active{
    background: #76B72B;
    color: #FFFFFF;
    font-weight: bold;
}
@media screen and (max-width: 450px){
    .pagination_item_btn{
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .previous_btn{
        left: 0;
    }
    .next_btn{
        right: 0;
    }
}
.disabled_pages_btn{
    cursor: no-drop;
    color: #c0c4cc;
}


.news-title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 48px 0 30px;
}
.news-title .side-line{
    width: 100%;
    margin-top: 0;
}
.news-title .forth-title{
    flex-shrink: 0;
}




@media screen and (max-width: 1200px){
    .news_item_title{
        padding: 15px 20px;
        font-size: 17px;
        height: 45px;
    }
    .news_item_date {
        padding: 3px 20px 15px;
        font-size: 14px;
    }
    .news_item_summary{
        padding: 15px 20px;
    }
}
@media screen and (max-width: 996px) {
    .news-container-box{
        margin-top: 65px;
    }
}

@media screen and (max-width: 880px){
    .new_item_box{
        width: 50%;
    }

    .new_item_box:nth-child(3n){
        padding-right: 15px;
    }
    .new_item_box:nth-child(3n+1){
        padding-left: 15px;
    }
    .new_item_box:nth-child(2n){
        padding-right: 0;
    }
    .new_item_box:nth-child(2n+1){
        padding-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .news-container-box{
        margin-top: 25px;
    }
}

@media screen and (max-width: 480px){
    .new_item_box{
        width: 100%;
        padding:  15px 0 !important;
    }
}<!--0.00018310546875-->