/* 新闻列表 */

.news {}
.news ul li {
    background: #f7f7f7;
}

.news ul li:nth-child(2n) {
    background: #ffffff;
}

.news ul a {
    display: block;
    padding: 10px;
}

.new-li-title p {
    overflow: hidden;
    font: bold 16px/24px '微软雅黑';
    color: #3f3f3f;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-title span {
    font:400 14px/24px '微软雅黑';
    color: #696969;
}

.new-li-p {
    height: 40px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #696969;
}
@media (min-width: 1200px) {
    .news {}

    .news ul li {
        background: #f7f7f7;
    }

    .news ul li:nth-child(2n) {
        background: #ffffff;
    }

    .news ul a {
        display: block;
        padding: 20px 40px;
    }

    .new-li-title {
        display: flex;
        justify-content: space-between;
    }

    .new-li-title p {
        width: 560px;
        overflow: hidden;
        font: bold 20px/30px '微软雅黑';
        color: #3f3f3f;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-title span {
        font: 14px/30px '微软雅黑';
        color: #696969;
    }

    .new-li-p {
        height: 60px;
        overflow: hidden;
        margin-top: 10px;
        font: 400 14px/30px '微软雅黑';
        color: #696969;
    }

    .news ul a:hover {
        color: #fff;
        background: #c22a21;
    }

    .news ul a:hover .new-li-title p {
        color: #fff;
    }

    .news ul a:hover .new-li-title span {
        color: #fff;
    }
    .news ul a:hover .new-li-p{
        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 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;
    }
}