@charset "utf-8";
html,body{
    background: #F9F9F9 !important;
}
.banner{
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: url(../images/news_ban.png) no-repeat center center;
    background-size: cover;
    margin-bottom: 60px;
}
.news .page{
    padding-top: 14px;
}
.news .page a,.news .page span{
    display: block;
    height: 32px;
    line-height: 32px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-align: center;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: all .3s;
    -webkit-transition: all .3s;
    margin: 0 5px;
}
.news .page a{
    border: 1px solid #ddd;
    color: #666666;
    background: #fff;
}
.news .page span,.news .page a:hover{
    color: #fff;
    background: #29D350;
    border-color: #29D350;
}
.news .title{
    max-height: 50px;
    line-height: 25px;
    position: relative;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .desc{
    max-height: 60px;
    line-height: 20px;
    position: relative;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news .news_nav li a{
    height: 40px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.65);
    position: relative;
}
.news .news_nav li.on a{
    background: rgba(56, 194, 78, .1);
}
.news .news_nav li.on a:after{
    content: '';
    display: block;
    width: 4px;
    height: 30px;
    background: url(../images/nav_on_bj.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    z-index: 20;
    top: 50%;
    transform: translate(0,-50%);
    left: -27px;
}