/* 新闻列表 */

.news {}

.news ul {
    display: block;
}

.news ul li {
    padding: 5px;
    border-bottom: 1px dashed #333;
}

.news ul li a {
    display: block;
    padding: 10px 0;
}

.new-li-title {
    overflow: hidden;
    margin: 5px 0;
    font: 400 16px/20px '微软雅黑';
    color: #c4181f;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 60px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

.new-li-more {
    margin: 10px 0 0;
    font: 400 14px/18px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .news {}

    .news ul {
        display: flex;
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    .news ul li {
        width: 50%;
        padding: 10px 5px;
        border-bottom: 1px dashed #333;
    }

    .news ul li a {
        display: flex;
        justify-content: space-between;
        padding: 30px 40px;
    }

    .new-li-title {
        overflow: hidden;
        margin: 10px 0;
        font: 400 18px/24px '微软雅黑';
        color: #c4181f;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 96px;
        overflow: hidden;
        font: 400 16px/24px '微软雅黑';
        color: #000;
    }

    .new-li-more {
        margin: 10px 0 0;
        font: 400 14px/18px '微软雅黑';
        color: #000;
    }

    .news ul li a:hover {
        background: url(../images/new_img.png) no-repeat center center/cover;
    }


    .news ul li a:hover .new-li-title {
        color: #fff;
    }

    .news ul li a:hover .new-li-p {
        color: #fff;
    }

    .news ul li a:hover .new-li-more {
        color: #fff;
    }

    .pages {
        padding: 10px 20px 20px;
    }
}


/* 新闻详情 */

.new-er {}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 16px/24px "微软雅黑";
    color: #333;
}


.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;
        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;
    }
}