/* 新闻列表 */

.news {}

.news ul li {
    padding: 10px;
    border-bottom: 1px dashed #5f5e5c;
}

.news ul li a {
    display: block;
}

.new-li-title {
    overflow: hidden;
    font: 400 18px/30px '微软雅黑';
    color: #5f5e5c;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-img {
    margin: 20px 0 10px;
    border: 1px solid #000;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    position: relative;
}

.new-li-arrow {
    position: absolute;
    left: -20px;
    top: 0;
}

.new-li-p {
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    color: #5f5e5c;
}

.new-li-time {
    width: 100px;
    margin-top: 5px;
    font: 400 14px/24px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #5f5e5c;
}
@media (min-width: 1200px) {
    .news {}

    .news ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 50%;
        padding: 50px;
    }

    .new-li-title {
        font: 400 24px/36px '微软雅黑';
    }

    .new-li-img {
        margin: 36px 0 24px;
        border: 3px solid #000;
    }

    .new-li-arrow {
        left: -30px;
    }

    .new-li-p {
        height: 120px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
    }

    .new-li-time {
        width: 100px;
        font: 400 14px/30px '微软雅黑';
    }
}


/* 新闻详情 */

.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 150px;
    }

    .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;
    }
}