/* 新闻列表 */

.news {
    padding: 5px;
}

.news ul li {
    padding: 0;
    padding: 2px 0;
    border-bottom: 1px solid #eee;
}

.news ul li a {
    display: block;
    padding: 1px;
    background: #fff;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 5px;
}

.new-li-title {
    overflow: hidden;
    font: bold 16px/30px '微软雅黑';
    color: #353535;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    font: 400 12px/20px '微软雅黑';
    color: #353535;
}

.new-li-p {
    height: 60px;
    overflow: hidden;
    font: 400 12px/20px '微软雅黑';
    color: #353535;
}

@media (min-width: 1200px) {


    .news ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 33.3%;
        padding: 10px;
        border: 0;
    }

    .news ul li a {
        display: block;
        padding: 1px;
        background: #fff;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-font {
        padding: 10px;
    }

    .new-li-title {
        overflow: hidden;
        font: bold 16px/30px '微软雅黑';
        color: #353535;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-time {
        font: 400 12px/20px '微软雅黑';
        color: #353535;
    }

    .new-li-p {
        height: 60px;
        overflow: hidden;
        font: 400 12px/20px '微软雅黑';
        color: #353535;
    }

}


/* 新闻详情 */

.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 div {
    text-align: center;
}

.new-er-p img {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 15px 60px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
    }

    .new-er-name {
        font: bold 26px/36px '微软雅黑';
        color: #000;
    }

    .new-er-time {
        margin-top: 10px;
        color: #000;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #000;
    }
}