/* 新闻列表 */

.news {}

.news ul li {
    padding: 1px 0;
}

.news ul a {
    display: block;
}

.new-li-img {
    overflow: hidden;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 10px 5px;
    background: #fff;
}

.new-li-title {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 60px;
    margin: 5px 0 10px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.new-li-time {
    width: 120px;
    font-size: 12px;
    line-height: 20px;
    color: #000;
    text-align: center;
    background: #d7d7d7;
}

@media (min-width: 1200px) {
    .news {}
    .news ul {
        padding: 1vw 2vw;
    }
    .news ul li {
        padding: 1vw 0;
    }
    .news ul a {
        display: flex;
        justify-content: space-between;
        transition: 0.3s;
    }
    .new-li-img {
        width: 15vw;
        overflow: hidden;
    }
    .new-li-img img {
        width: 100%;
        transition: 0.3s;
    }
    .new-li-font {
        width: 42vw;
        padding: 0.5vw 0 0;
        background: none;
    }
    .new-li-title {
        font-size: 1.2vw;
        line-height: 1.8vw;
        color: #000;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-p {
        height: 6vw;
        margin: 0.5vw 0;
        overflow: hidden;
        font-size: 0.9vw;
        line-height: 1.5vw;
        color: #000;
    }
    .new-li-time {
        width: 6.4vw;
        font-size: 0.9vw;
        line-height: 1.5vw;
        color: #000;
        text-align: center;
        background: #d7d7d7;
    }
    .news ul a:hover {
        transform: translate3d(-0.5vw, 0, 0);
    }
    .news ul a:hover .new-li-img img {
        transform: scale(1.1);
    }
    .news ul a:hover .new-li-title {
        color: #00943c;
    }
    .news ul a:hover .new-li-time {
        color: #fff;
        background: #00943c;
    }
}


/* 新闻详情 */

.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: 2.5vw 5vw;
    }
    .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;
    }
}