/*头部要改的地方*/
.head {
    /*要改的地方*/
    height: 550px;
    background: url(../images/banner5e.jpg) no-repeat;
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .head {
        background-position: -302px center;
    }
}




/* 最新资讯 */
.LatestNews {
    overflow: hidden;
}
.new-c {
    width: 1300PX;
    margin: 0 auto;
    margin-top: 133px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.new-c .atemp {
    display: block;
    margin-bottom: 55px;
    cursor: pointer;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 60px;
}
.new-c .temp {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.new-c .temp .ll{
    width: 11%;
    background-color: #eeeeee;
    color: #999999;
    text-align: center;
    transition: all 1s;
}
.new-c .temp .ll .day{
    font-size: 58px;
    margin-top: 15px;
}
.new-c .temp .ll .year{
    font-size: 23px;
}


.new-c .temp .cc{
    width: 53%;
    color: #b6b6b6;
    font-size: 15px;
    line-height: 30px;
}
.new-c .temp .cc h2{
    color: #666666;
    font-size: 20px;
    margin-bottom: 21px;
}

.new-c .temp .rr{
    width: 29%;
}
.new-c .temp .rr img{
    width: 100%;
}

.new-c .atemp:hover h2{
    color: #2eb872;
}
.new-c .atemp:hover .ll{
    color: #fff;
    background-color: #2eb872;
}






/* 新闻下面的按钮 */
.LatestNews .cc_botton {
    width: 100%;
    display: flex;
}
.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: #2eb872;
    color: white;
    text-align: center;
    line-height: 40px;
    margin-right: 1px;
    font-weight: bold;
    cursor: pointer;
	margin-right: 10px;
}
.btn-group a {
	background-color: #ec0a00;
}
.LatestNews .pagination .btn:hover{
    background-color: #cebdbd;
}




/* 适应1200-1400的屏幕 */
@media screen and (min-width:1200px) and (max-width:1400px) {
    .new-c {
        width: 1200px;
    }
}


/* 手机端 */
@media all and (max-width:550px) {
    .LatestNews {
        height: auto;
    }
    .new-c {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .new-c .atemp {
        width: 100%;
        padding: 10px;
    }
    .new-c .temp h2 {
        font-size: 18px;
    }
    .LatestNews .pagination .btn {
        width: 80px;
        height: 30px;
        line-height: 30px;
    }
    
}