/* 新闻列表 */

.news {}

.news ul li {
    padding: 5px 2px;
}

.news ul a {
    display: block;
    padding: 10px;
    color: #666666;
    background: rgba(255, 255, 255, 0.72);
}

.new-li-title {
    font: 400 16px/30px '微软雅黑';
    color: #2e8a59;
}

.new-li-p {
    height: 80px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
}

.new-li-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    margin: 10px 0 0;
    border-top: 1px solid #00743b;
    border-bottom: 1px solid #00743b;
}

.new-li-more span {
    display: block;
    padding: 0 5px;
    font: 400 14px/24px '微软雅黑';
    color: #00743b;
    text-align: center;
}

@media (min-width: 1200px) {
    article {
        padding-bottom: 120px;
    }

    .news ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 460px;
        padding: 5px;
    }

    .news ul a {
        padding: 10px;
    }

    .new-li-title {
        font: 400 18px/60px '微软雅黑';
    }

    .new-li-more {
        width: 110px;
        margin: 20px 0 0;
    }

    .new-li-more span {
        padding: 0 15px;
        font: 400 14px/42px '微软雅黑';
    }

    .news ul a:hover {
        color: #fff;
        background: #00743b;
    }

    .news ul a:hover .new-li-title {
        color: #fff;
    }

    .news ul a:hover .new-li-more {
        border-color: #fff;
    }

    .news ul a:hover .new-li-more span {
        color: #fff;
    }

    .news ul a:hover i {
        background: url(../images/new_squarea.png) no-repeat center center;
    }

    .news ul a:hover i img {
        opacity: 0;
    }

}

@media (min-width: 1480px) {
    .news ul li {
        width: 528px;

    }
}

/* 新闻详情 */

.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-content p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-content p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 0 0 20px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #000;
        text-align: left;
        border-bottom: 1px solid #666;
    }

    .new-er-name {
        color: #333;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #333;
    }

    .new-er-content p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}