body {
    background: #F5F5F5;
   
}
.banner {
    background: url('../images/news-banner.png') no-repeat center;
    background-size: auto 100%;
    height: 400px;
}
.banner .banner_text {
    width: 1280px;
    height: 400px;
    margin: 0 auto;
    padding-left: 550px;
    color: #ffffff;
    box-sizing: border-box;
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.banner .banner_text p {
    font-size: 28px;
}
.banner .banner_text h1 {
    font-size: 70px;
}
/* 分类列表 */
.type_list {
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 70px;
}
.type_list li {
    width: 106px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #666666;
    background: #ffffff;
    margin-right: 20px;
    cursor: pointer;
}
.type_list li:hover {
    background: #FE8C21;
    color: #ffffff;
    font-weight: bold;
}
.type_list li.active {
    background: #FE8C21;
    color: #ffffff;
    font-weight: bold;
}
/* 资讯列表 */
.news_list {
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.news_list li {
    width: 31%;
    height: 278px;
    display: block;
    background: #ffffff;
    margin-right: 30px;
    margin-bottom: 40px;
    padding: 37px 20px;
    box-sizing: border-box;
    transition: 0.5s;
}
.news_list li:nth-child(3n) {
    margin-right: 0;
}
.news_list li:hover {
    background: #FE8C21;
    color: #ffffff;
}
.news_list li:hover .title h2,
.news_list li:hover .title .time,
.news_list li:hover .desc,
.news_list li:hover a{
    color: #ffffff;
}
.news_list li .title {
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.news_list li .title h2 {
    width:216px;
    height:85px;
    font-size:20px;
    font-weight:bold;
    line-height:28px;
    color:rgba(102,102,102,1);
}
.news_list li .title .time {
    text-align: right;
    color:rgba(238,238,238,1);
}
.news_list li .title .time .date {
    font-size:44px;
    font-family:Impact;
    font-weight:400;
    line-height:53px;
}
.news_list li .title .time .year {
    font-size:18px;
    font-family:Impact;
    font-weight:400;
    line-height:22px;
}
.news_list li .desc {
    margin-top: 30px;
    font-size:12px;
    font-family:Microsoft YaHei;
    font-weight:400;
    line-height:20px;
    color:rgba(187,187,187,1);
}
.news_list li a {
   
    font-size:12px;
    font-weight:400;
    line-height:20px;
    color:rgba(254,140,33,1);
    margin-top: 10px;
    display: block;
}