/* 新闻列表 */

.news {}

.news li {
    padding-bottom: 5px
}

.news li a {
    display: block;
}

.new-img img {
    width: 100%;
    border: 2px solid #fff;
}

.new-font {
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.8) url(../images/part5_hua.png) no-repeat right bottom/1.5rem;
    border: 2px solid #fff;
}

.new-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #157842;
    border-bottom: 1px solid #157842;
}

.new-line-title {
    width: 4rem;
    font-size: 0.3rem;
    line-height: 0.48rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-line-time {
    font-size: 14px;
    line-height: 0.3rem;
}

.new-p {
    height: 60px;
    margin: 0.1rem 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.new-more {
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

@media (min-width: 1200px) {
    .news {}
    .news li {
        padding-bottom: 0.9vw;
    }
    .news li a {
        display: flex;
        justify-content: space-between;
    }
    .new-img {
        width: 20vw;
    }
    .new-img img {
        width: 100%;
        border: 2px solid #fff;
        border-radius: 0.5vw;
    }
    .new-font {
        width: 41.5vw;
        padding: 2vw;
        background: rgba(255, 255, 255, 0.8) url(../images/part5_hua.png) no-repeat right bottom/7.5vw;
        border: 2px solid #fff;
        border-radius: 0.5vw;
    }
    .new-line {
        display: flex;
        justify-content: space-between;
        color: #157842;
        border-bottom: 1px solid #157842;
    }
    .new-line-title {
        width: 30vw;
        font-size: 1.2vw;
        line-height: 3vw;
    }
    .new-line-time {
        font-size: 0.8vw;
        line-height: 3vw;
    }
    .new-p {
        height: 4vw;
        margin: 1.2vw 0;
        overflow: hidden;
        font-size: 0.8vw;
        line-height: 1vw;
        color: #000;
    }
    .new-more {
        font-size: 0.8vw;
        line-height: 1vw;
        color: #000;
    }
    .news li a:hover .new-font {
        background-color: rgba(21, 120, 66, 0.8);
    }
    .news li a:hover .new-line {
        color: #fff;
    }
    .news li a:hover .new-p {
        color: #fff;
    }
    .news li a:hover .new-more {
        color: #fff;
    }
}


/* 新闻详情 */

.new-er {
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 5px #999;
}

.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: 1vw;
    }
    .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;
    }
}