.wrap-main {
    max-width: 1920px;
    overflow: hidden;
    margin: 0 auto;
}
.news-wrap {
    max-width: 1220px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 10px 80px 10px;
}

.product-banner {
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
    height: 200px;
    background: #0c0c0c;
    background: -moz-linear-gradient(top,  #0c0c0c 0%, #606060 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0c0c0c), color-stop(100%,#606060));
    background: -webkit-linear-gradient(top,  #0c0c0c 0%,#606060 100%);
    background: -o-linear-gradient(top,  #0c0c0c 0%,#606060 100%);
    background: -ms-linear-gradient(top,  #0c0c0c 0%,#606060 100%);
    background: linear-gradient(to bottom,  #0c0c0c 0%,#606060 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c0c0c', endColorstr='#606060',GradientType=0 );
}

.product-banner img {
    height: 100%;
    width: auto;
}

/*新闻列表开始*/
.data-prompt {
    height: 100px;
    line-height: 100px;
    font-size: 18px;
    text-align: center;
}
.news-center-left {
    margin-top: 40px;
}
.news-center-left .news-list .news-item {
    margin-top: 20px;
    width: 100%;
    height: 170px;
}
.news-center-left .news-list .news-item:first-child{
    margin-top: 0;
}
.news-center-left .news-item a{
    display: flex;
    width: 100%;
    height: 100%;
}
.news-center-left .news-item .news-item-img{
    overflow: hidden;
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
}
.news-center-left .news-item .news-item-img img{
    height: 100%;
}
.news-center-left .news-item  .news-item-content{
    position: relative;
    padding: 0 35px 0 25px;
    width: 70%;
    height: 100%;
}

.news-center-left .news-item .news-title{
    overflow: hidden;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    max-height: 46px;
}
.news-center-left .news-item .news-title span {
    overflow: hidden;
    display: inline-block;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-center-left .news-item  .news-summary{
    overflow: hidden;
    margin-top: 14px;
    color: #666;
    max-height: 40px;
}
.news-center-left .news-item .news-summary span {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-center-left .news-info{
    position: absolute;
    display: flex;
    justify-content: space-between;
    left: 0;
    bottom: 10px;
    height: 16px;
    padding: 0 35px 0 25px;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #999;
}

.news-center-left .news-info .see-num {
    overflow: hidden;
    display: flex;
    width: 50%;
    align-items: center;
}

.news-center-left .news-info .see-img{
    font-size: 20px;
}
.news-center-left .news-info .date{
    text-align: right;
}

.pagination{
    margin-top: 60px;
}
/*新闻列表结束*/

/*新闻推荐开始*/
.news-center-right {
    margin-top: 40px;
}

.news-center-right .recommend-inner{
    padding: 20px;
    background: #f7f7f7;
}
.news-center-right .recommend-title{
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #292929;
    font-weight: 500;
    border-bottom: 1px solid #ededed;
}
.news-center-right .recommend-list {
    padding-left: 15px;
}
.news-center-right .recommend-item{
    position: relative;
    margin: 20px 0 0 0;
    font-size: 9px;
    color: #666;
    max-height: 39px;
}
.news-center-right .recommend-item:before{
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: #666;
    position: absolute;
    left: -12px;
    top: 8px;
}
.news-center-right .recommend-item a{
    display: block;
    overflow: hidden;
    max-height: 40px;
    font-size: 14px;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
}
.news-center-right .recommend-item a span{
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-center-right .recommend-item a:hover{
    color: #0080f1;
}
/*新闻推荐结束*/





/*分页样式开始*/
.ff-pagination {
    margin-top: 60px;
    justify-content: center;
}
.ff-pagination .page-item {
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 0;
    margin: 0 5px 5px 0;
    font-size: 16px;
    border: none ;
}
.ff-pagination .page-link:hover{
    background: #fff;
    color: #292929;
}

.ff-pagination .page-link {
    border: none ;
    border-radius: 3px;
    padding: 0;
    margin: 0;
    height: 100%;
    line-height: 40px;
}
.ff-pagination .page-item.active .page-link {
    background: #292929;
    border: none;
    border-radius: 3px;
    overflow: hidden;
}
.ff-pagination .page-item.active .page-link {
    color: #fff;
}
.ff-pagination .page-link:focus,.page-link:active:focus,
.ff-pagination .page-link.active:focus,.page-link.focus,
.ff-pagination .page-link:active.focus,.page-link.active.focus {
    outline: none;
    border-color: transparent;
    box-shadow:none;
}
/*分页样式结束*/







@media screen and (max-width: 575px) {
    .product-banner {
        height: 120px;
    }

    .news-center-left .news-list .news-item{
        height: 120px;
    }
    .news-center-left .news-item .news-item-content {
        padding: 0 0 0 10px;
        width: 65%;
    }
    .news-center-left .news-item .news-item-img {
        width: 35%;
    }
    .news-center-left .news-item-content .news-info {
        padding: 0 0 0 10px;
    }
    .news-center-left .news-item-content .news-title {
        margin-top: 5px;
        font-size: 16px;
    }
    .news-center-left .news-item-content .news-summary {
        margin-top: 5px;
    }
    .news-center-left .news-item-content .news-info {
        bottom: 5px;
    }
    .layui-laypage-ff a,
    .layui-laypage-ff span {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
    .ff-pagination .page-item {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .ff-pagination .page-link {
        line-height: 30px;
    }
}


@media screen and (min-width: 576px) and (max-width: 767px){
    .product-banner {
        height: 140px;
    }

    .news-center-left .news-list .news-item{
        height: 130px;
    }
    .news-center-left .news-item .news-item-content {
        padding-right: 0;
    }
    .news-center-left .news-item-content .news-title {
        margin-top: 5px;
    }
    .news-center-left .news-item-content .news-summary {
        margin-top: 5px;
    }
    .news-center-left .news-item-content .news-info {
        bottom: 5px;
    }


    .news-center-left .news-item-content .news-info {
        padding-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px){
    .product-banner {
        height: 160px;
    }

    .news-center-left .news-list .news-item{
        height: 130px;
    }
    .news-center-left .news-item-content .news-title {
        margin-top: 5px;
    }
    .news-center-left .news-item-content .news-summary {
        margin-top: 5px;
    }
    .news-center-left .news-info {
        bottom: 5px;
    }


}

@media screen and (min-width: 992px) and (max-width: 1199px){
    .product-banner {
        height: 180px;
    }

    .news-center-left .news-list .news-item{
        height: 150px;
    }
    .news-center-left .news-item-content .news-title {
        margin-top: 10px;
    }
    .news-center-left .news-item-content .news-summary {
        margin-top: 10px;
    }

}

@media screen and (min-width: 1200px) {
    .product-banner {
        height: 200px;
    }
    .news-center-left .news-list .news-item{
        height: 170px;
    }
}
