/* 新闻列表 */

.news {}

.news ul {}

.news ul li {
    padding: 1px;
}

.news ul a {
    display: block;
    padding: 2.4vw;
    background: rgba(0, 0, 0, 0.6);
}

.new-li-line {
    display: flex;
    justify-content: space-between;
    padding: 0 0 1.5vw;
    color: #fff;
}

.new-li-title {
    overflow: hidden;
    flex-flow: 1;
    font-size: 16px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    width: 84px;
    font-size: 14px;
    line-height: 20px;
}

.new-li-p {
    height: 80px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.new-li-more {
    width: 1.6rem;
    margin: 0.2rem 0 0;
}

.new-li-more span {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    background: url(../images/part_three.png) no-repeat right center/6px;
}

@media (min-width: 1200px) {
    .news {
        background: none;
    }
    .news ul {
        display: flex;
        flex-wrap: wrap;
    }
    .news ul li {
        width: 50%;
        padding: 1px;
    }
    .news ul a {
        display: block;
        padding: 2.4vw;
        background: rgba(0, 0, 0, 0.6);
    }
    .new-li-line {
        display: flex;
        justify-content: space-between;
        padding: 0 0 1.5vw;
        color: #fff;
    }
    .new-li-title {
        overflow: hidden;
        flex-flow: 1;
        font-size: 1.2vw;
        line-height: 1.6vw;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-time {
        width: 84px;
        font-size: 14px;
        line-height: 20px;
    }
    .new-li-p {
        height: 80px;
        overflow: hidden;
        font-size: 14px;
        line-height: 20px;
        color: #fff;
    }
    .new-li-more {
        width: 6vw;
        margin: 1vw 0 0;
    }
    .new-li-more span {
        display: block;
        font-size: 0.9vw;
        line-height: 2.4vw;
        color: #fff;
        background: url(../images/part_three.png) no-repeat right center;
    }
    .news ul li a:hover {
        background: rgba(0, 124, 62, 0.8) url(../images/part5_li_bg.png) no-repeat right bottom/18vw;
    }
}


/* 新闻详情 */

.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;
        background: rgba(255, 255, 255, 0.6);
    }
    .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;
    }
}