/* 新闻列表 */
.news .main{
    padding: 10px;
    background: #f0f2f5;
}
.news ul{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}
.news li{
    padding-bottom: 10px;
}
.news li a{
    display: block;
    position: relative;
    height: 120px;
    padding-left: 184px;
    color: #000000;
}
.news li a .new-li-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 174px;
    height: 120px;
    overflow: hidden;
}
.news li a .new-li-img img{
    width: 100%;
    height: 100%;
}

.new-li-title{
    height: 92px;    
    overflow: hidden;
    padding: 10px 0 10px;
    font: bold 16px/24px '微软雅黑';

}
.new-li-time{
    font: 400 14px/20px '微软雅黑';
}
.new-li-p{
    display: none;
}
@media (min-width:1200px) {
    .news .main{
        padding: 60px 0 15px;
        background: #f0f2f5;
    }
    .news ul{
        justify-content: space-between;

    }
    .news li{
        width: 48%;
        padding-bottom: 40px;
    }
    .news li a{
        height: 150px;
        padding-left: 230px;
    }
    .news li a .new-li-img{
        width: 215px;
        height: 150px;
        overflow: hidden;
    }
    .news li a .new-li-img img{
        width: 100%;
        height: 100%;
        transition: 0.6s;
    }

    .new-li-title{
        height: auto;
        padding: 20px 0 10px;
        font: bold 18px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-p{
        display: block;
        height: 40px;
        margin-top: 20px;
        overflow: hidden;
        font: 400 14px/20px '微软雅黑';
    }
    .news li a:hover img{
        transform: scale(1.08);
    }  
    .news li a:hover{
        background: #017b1e;
    }
    .news li a:hover .new-li-title{
        color: #fff;
    }
    .news li a:hover .new-li-time{
        color: #fff;
    }
    .news li a:hover .new-li-p{
        color: #fff;
    } 
}


/* 新闻详情 */
.new-er {}
.new-er-title{
    padding-bottom: 10px;
    text-align: center;
    background: url('../images/new_er_line.png') no-repeat center bottom;
}
.new-er-name{
    font: bold 18px/24px '微软雅黑';
    color: #000; 
}
.new-er-time{
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

.new-er-content{
    padding: 10px 0;
}
.new-er-content p {
    margin-bottom: 8px;
    font: 400 14px/24px 'Microsoft Yahei';
    text-align: justify;
    color: #333333;
}

.new-er-content p img {
    max-width: 100%;
}
@media (min-width:1200px) {
    .new-er{
        padding-bottom: 15px;
    }
    .new-er-name{
        font: bold 30px/36px '微软雅黑';
        color: #000; 
    }
    .new-er-time{
        font: 400 14px/20px '微软雅黑';
        color: #000;
    }
    .new-er .main{
        padding: 60px 0 60px;
        background: #f0f2f5;
    }
    .new-er-content{
        padding: 40px 130px 0;
    }
    .new-er-content p {
        font: 400 16px/30px '微软雅黑';
    }
}