/* 新闻列表 */

.news {}


.news ul li {
    padding:5px 2px;
}

.news ul a {
    display: block;
    padding: 10px;
    border: 1px solid #666;
}

.new-li-time {
    background: url(../images/arrow_b.png) no-repeat right 10px/auto 6px;
}

.new-li-day {
    padding: 0 0 0 10px;
    font: 400 18px/24px '微软雅黑';
    color: #000;
    background: url(../images/circle_y.png) no-repeat 0 center/6px;
}

.new-li-year {
    width: 50px;
    margin: 5px 0 0 10px;
    font: 400 14px/20px '微软雅黑';
    color: #999999;
    text-align: center;
    border: 1px solid #999999;
}

.new-li-name {
    margin:6px 12px;
    overflow: hidden;
    font: 400 16px/30px '微软雅黑';
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 120px;
    margin: 0 0 0 12px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #999999;
}

.new-li-more {
    margin: 10px 0 0 20px;
    font: 400 14px/20px '微软雅黑';
    color: #000;
}
@media (min-width: 1200px) {
    .news {}
    .news ul {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .news ul li {
        width: 33.3%;
        padding: 30px 0;
        border-bottom: 1px dashed #000;
    }

    .news ul a {
        display: block;
        padding: 60px 40px 60px 20px;
    }

    .new-li-time {
        background: url(../images/new_li_arrow.png) no-repeat right center;
    }

    .new-li-day {
        padding: 0 0 0 20px;
        font: 400 24px/30px '微软雅黑';
        color: #000;
        background: url(../images/circle_y.png) no-repeat 0 center;
    }

    .new-li-year {
        width: 60px;
        margin: 10px 0 0 20px;
        font: 400 16px/21px '微软雅黑';
        color: #999999;
        text-align: center;
        border: 1px solid #999999;
    }

    .new-li-name {
        margin: 20px 0 20px 20px;
        overflow: hidden;
        font: 400 18px/30px '微软雅黑';
        color: #000;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 144px;
        margin: 0 0 0 20px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
        color: #999999;
    }

    .new-li-more {
        margin: 10px 0 0 20px;
        font: 400 14px/20px '微软雅黑';
        color: #000;
    }

    .news ul a:hover {
        background: url(../images/new_li_bg.jpg) no-repeat center 0;
    }

    .news ul a:hover .new-li-time {
        background-image: url(../images/arrow_w.png);
    }

    .news ul a:hover .new-li-day {
        color: #fff;
        background-image: url(../images/circle_w.png);
    }

    .news ul a:hover .new-li-year {
        color: #fff;
        border-color: #fff;
    }

    .news ul a:hover .new-li-name {
        color: #fff;
    }

    .news ul a:hover .new-li-p {
        color: #fff;
    }

    .news ul a:hover .new-li-more {
        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: 50px;
    }

    .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;
    }
}