/* 新闻列表 */

.news {}

.news ul li {
    padding: 3px 0;
}

.news ul a {
    display: block;
    position: relative;
    padding: 10px;
    color: #000;
    background: #fff;
}

.news ul a i {
    display: none;
}

.new-li-title {
    font: 400 18px/30px '微软雅黑';

}

.new-li-time {
    font: 400 14px/18px '微软雅黑';

}

.new-li-p {
    height: 90px;
    overflow: hidden;
    font: 400 14px/30px '微软雅黑';
    color:#666;
    transition: 0.6s;
}

.new-li-time2 {
    display: none;
}

@media (min-width: 1200px) {
    .news {
        padding: 60px;
    }

    .news ul li {
        border-bottom: 1px solid #5d5d5d;
    }

    .news ul a {
        display: block;
        position: relative;
        padding: 30px;
        color: #000;
        background: url(../images/new_lis_bg.png) no-repeat 0 0/0 100%;
        transition: 0.6s;
    }

    .news ul a i {
        display: block;
        position: absolute;
        left: 0;
        top: 24px;
        width: 42px;
        height: 42px;
        background: url(../images/new_li_circle.png) no-repeat 0 center;
    }

    .new-li-title {
        font: 400 18px/30px '微软雅黑';
    }

    .new-li-time {
        font: 400 14px/18px '微软雅黑';
        opacity: 0;
        transition: 0.6s;
    }

    .new-li-p {
        height: 90px;
        overflow: hidden;
        font: 400 14px/30px '微软雅黑';
        transition: 0.6s;
    }

    .new-li-time2 {
        display: block;
        margin-top: 10px;
        font: 400 14px/24px '微软雅黑';
    }

    .news ul li a:hover {
        padding-left: 40px;
        color: #fff;
        background-size: 100% 100%;
    }

    .news ul a:hover i {
        top: 36px;
        left: -20px;
        background: url(../images/new_li_puls.png) no-repeat 0 0;
    }

    .news ul a:hover .new-li-time {
        opacity: 1;
        transform: translate3d(0, 5px, 0);
    }

    .news ul a:hover .new-li-p {
        width: 800px;
        transform: translate3d(0, 20px, 0);
    }

    .news ul a:hover .new-li-time2 {
        opacity: 0;
    }

}


/* 新闻详情 */

.new-er {}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 16px/24px "微软雅黑";
    color: #333;
}

.new-er-time {
    font: 400 14px/24px "微软雅黑";
    color: #999;
}

.new-er-p p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-p p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 50px 150px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #333;
    }

    .new-er-name {
        color: #333;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #333;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}