@charset "utf-8";

/* 新闻列表 */

.newslist {
    margin-top: 56px;
}

.newslist_item {
    display: flex;
    padding: 48px 0;
    border-bottom: 1px solid #e5e5e5;
    justify-content: center;
    align-items: center;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.newslist .newslist_item:hover {
    background-color: #f1f1f1;
}

.newslist .newslist_item:hover .newslist_item_txth {
    padding-left: 8px;
    color: #cf1b1b;
}

.newslist .newslist_item:hover .newslist_item_i i {
    transform: translateX(8px);
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    -ms-transform: translateX(8px);
    -o-transform: translateX(8px);
}

.newslist_item_img {
    width: 18%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.newslist_item_img img {
    width: 100%;
}

.newslist_item_txt {
    margin-left: 45px;
    width: 60%;
}

.newslist_item_txth {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    color: #222222;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.newslist_item_txtp {
    margin-top: 12px;
    font-size: 14px;
    color: #777;
    line-height: 22px;
}

.newslist_item_txtsj {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.newslist_item_txtsj i {
    color: #777;
}

.newslist_item_txtsj span {
    font-size: 14px;
    color: #777;
    margin-left: 8px;
}

.newslist_item_i {
    margin-left: 8%;
}

.newslist_item_i i {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    font-size: 30px;
    color: #b0afaf;
}

.newslist_item_i i:hover {
    color: #cf1b1b;
}


/*分页 */

.page_box {
    margin-top: 48px;
}

.foot {
    margin-top: 90px;
}

@media screen and (max-width: 992px) {
    .newslist_item_i {
        display: none;
    }
    .newslist_item_img {
        width: 36%;
    }
}

@media screen and (max-width: 768px) {
    .newslist_item {
        flex-wrap: wrap;
        padding: 0 0 25px;
        margin-bottom: 20px;
    }
    .newslist_item>div {
        width: 100%;
    }
    .newslist_item_img {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
    .newslist_item_txt {
        margin-top: 20px;
        margin-left: 0;
        padding: 0 10px;
    }
    .foot {
        margin-top: 40px;
    }
    .page_box {
        margin-top: 0;
    }
    .newslist {
        margin-top: 40px;
    }
}

.headx4 {
    content: '';
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
}