.banner {
    position: relative;
    height: 430px;
    background: url("../img/news/news_bg.png") no-repeat;
    background-size: 100% 100%;
    margin-top: 70px;
}
.banner .banner_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 56px;
    width: 84%;
    text-align: left;
    padding-left: 16%;
}
.banner .banner_center p:last-child {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    line-height:28px;
    margin-top: 7px;
}
.news_list {
    padding: 74px 0 0 0;
    max-width: 1200px;
    margin: 0 auto;
}
.news_list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;;
}
.news_list ul li {
    width: calc(50% - 15px);
    background: #fff;
    margin-bottom: 29px;
    padding: 40px 0;
    cursor: pointer;
}
.news_list ul li:hover {
    background: url("../img/news/news.png") no-repeat;
    background-size: 100% 100%;
}
.news_list ul li:hover .news_top>h3,
.news_list ul li:hover .news_top>div h3,
.news_list ul li .news_top>div p {
    color: #fff;
}
.news_list ul li:nth-child(odd) {
    margin-right: 15px;
}
.news_list ul li:nth-child(even) {
    margin-left: 15px;
}
.news_list ul li .news_top, .news_list ul li .news_bottom {
    display: flex;
    align-items: start;
}
.news_list ul li .news_top>div {
    margin-right: 44px;
    padding-left: 40px;
}
.news_list ul li .news_top>div h3 {
    font-size: 1.5rem;
    color: #000;
    line-height: 28px;
}
.news_list ul li .news_top>div p {
    font-size: 0.6rem;
    color: #999;
    line-height: 20px;
    margin-top: 4px;
}
.news_list ul li .news_top>h3 {
    font-size: 0.7rem;
    font-weight: 500;
    color: #000;
    line-height: 28px;
    padding-right: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news_list ul li .news_bottom span {
    display: block;
    width: 78px;
    height: 1px;
    background: #D9D9D9;
    margin-top: 32px;
    margin-right: 44px;
    margin-left: 40px;
}
.news_list ul li .news_bottom p {
    font-size: 0.6rem;
    font-weight: 400;
    color: #999;
    line-height: 26px;
    margin-top: 20px;
    padding-right: 40px;
    width: calc(100% - 202px);
    overflow: hidden;
    text-overflow: ellipsis;
    height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    word-break: break-all;
    -webkit-box-orient: vertical;
}
.pagination {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    line-height: 24px;
    margin: 36px 0 40px 0;
}
.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination ul li {
    margin-left: 17px;
    cursor: pointer;
}
.pagination ul li a {
    color: #333;
}
.pagination ul li.active a, .pagination ul li:hover a{
    color: #D81719;
}
.pagination ul li.active .next, .pagination ul li:hover .prev{
    color: #333;
}
.pagination ul li a.disabled{
    color: #999;
}