/* 新闻列表 */

.news {}

.news li {
    padding: 1px 0 0;
}

.news li a {
    display: block;
}

.new-li-img {
    overflow: hidden;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    border-bottom: 1px dashed #000;
}

.new-li-title {
    padding: 0.2rem 0;
    font-size: 0.3rem;
    line-height: 0.36rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}

.new-li-p {
    height: 40px;
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: #727887;
}

.new-li-time {
    padding: 0.1rem 0;
    font-size: 12px;
    line-height: 20px;
    color: #727887;
}

@media (min-width: 1200px) {
    .news {}

    .news li {
        padding: 1px 0;
    }

    .news li a {
        display: flex;
        justify-content: space-between;
        padding: 0.9vw 1.8vw;
    }

    .new-li-img {
        width: 16.5vw;
        overflow: hidden;
    }

    .new-li-img img {
        width: 100%;
        transition: 0.6s;
    }

    .new-li-font {
        width: 40.8vw;
        border-bottom: 1px dashed #000;
    }

    .new-li-title {
        padding: 0;
        font-size: 1.2vw;
        line-height: 1.8vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #000;
    }

    .new-li-p {
        height: 7.2vw;
        margin: 0.8vw 0;
        font-size: 0.8vw;
        line-height: 1.2vw;
        color: #727887;
    }

    .new-li-time {
        padding: 0;
        font-size: 0.8vw;
        line-height: 1.2vw;
        color: #727887;
    }

    .news li a:hover {
        background: #0e643f;
    }

    .news li a:hover .new-li-img img {
        transform: scale(1.1);
    }

    .news li a:hover .new-li-font {
        border-color: #fff;
    }

    .news li a:hover .new-li-title {
        color: #fff;
    }

    .news li a:hover .new-li-p {
        color: #fff;
    }

    .news li a:hover .new-li-time {
        color: #fff;
    }
}


/* 新闻详情 */

.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: 0 5vw 2vw;
    }

    .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;
    }
}