/* 最新资讯 */
/* 新闻中心 */

.LatestNews {
    background-color: #f1ebeb;
    /* height: 2000px; */
    padding-top: 120px;
}
.LatestNews .new-c {
    width: 1400px;
    /* height: 700px; */
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.LatestNews .new-c .new1 {
    width: 50%;
}
.LatestNews .new-c .new1 img{
    width: 100%;
}
.LatestNews .new-c .new2 {
    width: 617px;
    height: 350px;
    padding-left: 80px;
    border: 1px solid #f0f0f0;
}
.LatestNews .new-c .new2 .w{
    font-size: 28px;
    color: #222222;
    margin-top: 60px;
    font-weight: bold;   
}
.LatestNews .new-c .new2 .w:hover{
    color: #e37518;
}
.LatestNews .new-c .new2 .c{
    width: 144px;
    height: 28px;
    background-color: #e37518;
    font-size: 15px;
    color: #fff;
    margin-top: 30px;
    text-align: center;
    line-height: 28px;
}
.LatestNews .new-c .new2 .s{
    color: #888888;
    margin-top: 40px;
    padding-right: 78px;
    line-height: 30px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* 用来限制在一个块元素显示的文本的行数。*/
    -webkit-line-clamp: 3;  
    overflow: hidden;
}




/* 新闻下面的按钮 */
.LatestNews .cc_botton {
    width: 100%;
    display: flex;
    background-color: #f1ebeb;
}
.LatestNews .pagination{
    display: flex;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 120px;
	font-size: 14px;
}
.btn-group {
	display: flex;
}
#page_center_botton {
	display: none;
}
.LatestNews .pagination .btn{
	display: block;
    width: 100px;
    height: 40px;
    background-color: #222222;
    color: white;
    text-align: center;
    line-height: 40px;
    margin-right: 1px;
    font-weight: bold;
    cursor: pointer;
	margin-right: 10px;
}
.LatestNews .pagination .btn-group  a {
	/* background-color: #e37518; */
}
.LatestNews .pagination .btn:hover{
    background-color: #e37518;
}





/* 适应1200-1400的屏幕 */
@media screen and (min-width:1200px) and (max-width:1400px) {
    .LatestNews .new-c {
        width: 1200px;
    }
    .LatestNews .new-c .new2 {
        width: 518px;
    }
}




/* 手机端 */
@media screen and (max-width: 550px) {
    .LatestNews {
        padding-top: 45px;
    }
    .LatestNews .new-c {
        width: 100%;
        /* height: 700px; */
        background-color: #fff;
        display: flex;
        flex-wrap: wrap;
        margin: auto;
    }
    .LatestNews .new-c .new2 {
        width: 93%;
        height: 350px;
        padding: 0 20px;
    }
    .LatestNews .new-c .new2 .s {
        padding-right: 30px;
    }
    .LatestNews .new-c .new1 {
        width: 100%;
    }
    .LatestNews .pagination .btn {
        width: 80px;
        height: 30px;
        line-height: 30px;
    }
}