/* 新闻列表 */

.news {}

.news ul li {
    padding: 5px 0 0 0;
}

.news ul li a {
    display: block;
}

.new-li-img {
    padding: 4px;
    background: #fff;
    border: 1px solid #000;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 5px 0;
    border-bottom: 1px solid #000;
}

.new-li-title {
    font: 400 18px/30px '微软雅黑';
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

.new-li-p {
    height: 100px;
    margin:5px 0;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #000;
    transition: 0.6s;
}

@media (min-width: 1200px) {
    .news {
        padding: 30px;
    }

    .news ul li {
        padding: 15px 0;
    }

    .news ul li a {
        display: flex;
        justify-content: space-between;
    }

    .new-li-img {
        width: 356px;
        padding: 4px;
        background: #fff;
        border: 1px solid #000;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-font {
        width: 760px;
        border-bottom: 1px solid #000;
    }

    .new-li-title {
        font: 400 24px/30px '微软雅黑';
        color: #000;
    }

    .new-li-time {
        font: 400 16px/24px '微软雅黑';
        color: #000;
        transition: 0.6s;
    }

    .new-li-p {
        height: 120px;
        margin: 20px 0 30px;
        overflow: hidden;
        font: 400 16px/30px '微软雅黑';
        color: #000;
        transition: 0.6s;
    }

    .news ul li a:hover .new-li-img {
        background: #f8b801;
    }

    .news ul li a:hover .new-li-title {
        color: #00665a;
    }

    .news ul li a:hover .new-li-p {
        color: #000;
        transform: translate3d(0, 50px, 0);
    }

    .news ul li a:hover .new-li-time {
        transform: translate3d(0, -160px, 0);
    }

}


/* 新闻详情 */

.new-er {
    padding: 10px 0 0;
}

.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: 30px 100px;
    }

    .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;
    }
}