/*头部要改的地方*/
.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;
    }
}



/* 最新资讯 */
.NewsAll {
    height: 879px;
    background-color: #eeeeee;
    overflow: hidden;
}
.NewsAll .newAll-c {
    width: 1300px;
    margin: auto;
    margin-top: 100px;
    background-color: #fff;
    padding: 50px;
    box-sizing: border-box;
}
.NewsAll .newAll-c .title {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-bottom: 38px;
    border-bottom: 1px solid #eeeeee;
}
.NewsAll .newAll-c .title h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 17px;
}
.NewsAll .newAll-c .title p {
    font-size: 14px;
    color: #666666;
}



/* 新闻内容 */
.NewsAll .content {
    margin-top: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e4e4e4 ;
}
.NewsAll .content .words{
    margin-top: 40px;
    color: #666666;
    line-height: 30px;
}





/* 新闻结尾 按钮自带的 */
.NewsAll .last .article_page {
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
    margin-bottom: 20px;
}
.NewsAll .last .fl p,
.NewsAll .last .cc,
.NewsAll .last .fr p{
    border: 1px solid #e6e6e6;
    width: 190px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    cursor: pointer;
    color: #222222;
    background-color: #f0f0f0;
}
.NewsAll .last .fl p:hover{
    transform: scale(1.2);
    color: #fff;
    background-color: #2eb872;
}
.NewsAll .last .cc:hover{
    transform: scale(1.2);
    color: #fff;
    background-color: #2eb872;
}
.NewsAll .last .fr p:hover{
    transform: scale(1.2);
    color: #fff;
    background-color: #2eb872;
}

/* 尾部 */


/* 适应1200-1400的屏幕 */
@media screen and (min-width:1200px) and (max-width:1400px) {
    .NewsAll .newAll-c {
        width: 1200px;
    }
}


/* 手机端 */
@media all and (max-width:550px) {
    .NewsAll {
        height: auto;
    }
    .NewsAll .newAll-c {
        width: 100%;
        padding: 15px;
    }
    .NewsAll .last .fl p,
    .NewsAll .last .cc, 
    .NewsAll .last .fr p {
        width: 105px;
    }
}