/* 新闻列表 */

.news {}

.news ul {
    display: block;
}

.news ul li {
    width: 100%;
    padding: 5px;
}

.news ul a {
    display: block;
    padding: 15px 0 10px;
    color: #000;
    background: url(../images/new_li_arrow.png) no-repeat 0 0;
}

.new-li-line {
    display: flex;
    justify-content: space-between;
}

.new-li-time {
    flex-shrink: 0;
    width: 72px;
    height: 90px;
    padding: 10px 3px 0;
    text-align: center;
    background: #fff;
    border: 1px solid #000;
}

.new-li-day {
    font: 400 36px/42px '微软雅黑';
}

.new-li-year {
    padding: 2px 0 0;
    font: 400 14px/24px '微软雅黑';
    border-top: 1px solid #bbbbbb;
}

.new-li-font {
    flex-grow: 1;
    overflow: hidden;
    padding: 0 0 0 10px;
    color: #000;
}

.new-li-title {
    height: 48px;
    overflow: hidden;
    font: 400 18px/24px '微软雅黑';
}

.new-li-p {
    height: 120px;
    overflow: hidden;
    margin-top: 10px;
    font: 400 14px/20px '微软雅黑';
    color: #000;
    text-align: justify;
}

.new-li-more {
    margin-top: 5px;
    font: 400 14px/20px '微软雅黑';
    background: url(../images/part_arrow.png) no-repeat 60px center;
}

@media (min-width: 1200px) {
    .news {}

    .news ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0 0 72px;
    }

    .news ul li {
        width: 33.3%;
        padding: 20px;
    }

    .news ul a {
        display: block;
        padding: 75px 0 10px;
        color: #000;
        background: url(../images/new_li_arrow.png) no-repeat 0 0;
    }

    .new-li-line {
        display: flex;
        justify-content: space-between;
        transition: 0.3s;
    }

    .new-li-time {
        width: 72px;
        height: 110px;
        padding: 20px 6px 0;
        text-align: center;
        background: #fff;
        border: 1px solid #000;
    }

    .new-li-day {
        font: 400 36px/42px '微软雅黑';
    }

    .new-li-year {
        padding: 2px 0 0;
        font: 400 14px/24px '微软雅黑';
        border-top: 1px solid #bbbbbb;
    }

    .new-li-font {
        width: 274px;
        color: #000;
    }

    .new-li-title {
        height: 60px;
        overflow: hidden;
        font: 400 24px/30px '微软雅黑';
    }

    .new-li-p {
        height: 210px;
        margin-top: 30px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
        text-align: justify;
    }

    .new-li-more {
        margin: 0;
        font: 400 14px/20px '微软雅黑';
        background: url(../images/part_arrow.png) no-repeat 60px center;
    }

    .news ul a:hover {
        background: url(../images/new_lia_arrow.png) no-repeat 0 0,
            url(../images/new_lia_arrow.png) no-repeat 0 bottom;
    }

    .news ul a:hover .new-li-time {
        color: #fff;
        background: #03633e;
        border-color: #03633e;
    }

    .news ul a:hover .new-li-year {
        border-color: #468d71;
    }

    .news ul a:hover .new-li-line {
        transform: translate3d(0, -35px, 0);
    }

    .news ul a:hover .new-li-name {
        color: #03633e;
    }

}


/* 新闻详情 */

.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 {
    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 100px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 20px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #333;
    }

    .new-er-name {
        font: bold 18px/24px "微软雅黑";
        color: #333;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #333;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}