/* 新闻列表 */

.news {
    padding: 10px;
    background: #f8f8f8;
}

.news ul li {
    padding: 5px 0;
}

.news ul li a {
    display: flex;
}

.new-li-img {
    flex-shrink: 0;
    width: 150px;
}

.new-li-img img {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.new-li-right {
    padding-left: 10px;
}

.new-li-title {
    height: 96px;
    overflow: hidden;
    font: 400 16px/24px '微软雅黑';
    color: #000000;
}

.new-li-p {
    display: none;
}

.new-li-time {
    width: 84px;
    margin-top: 5px;
    font: 400 14px/18px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #3b3b3b;
}

.news ul li a:hover .new-li-title {
    color: #ab1400;
}

.news ul li a:hover .new-li-time {
    background: #ab1400;
}

.news ul li a:hover {}

@media (min-width:1200px) {
    .news {
        padding: 36px;
    }

    .news ul li {
        padding: 25px 0;
    }


    .new-li-img {
        width: 200px;
    }

    .new-li-img img {
        height: 150px;
    }

    .new-li-right {
        width: 925px;
        padding-left: 20px;
    }

    .new-li-title {
        height: auto;
        padding-top: 15px;
        font: 400 18px/30px '微软雅黑';
        color: #000000;
    }

    .new-li-p {
        display: block;
        height: 48px;
        overflow: hidden;
        margin: 10px 0;
        font: 400 14px/24px '微软雅黑';
        color: #000000;
    }

    .new-li-time {
        width: 84px;
        font: 400 14px/18px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #3b3b3b;
    }

    .news ul li a:hover .new-li-title {
        color: #ab1400;
    }

    .news ul li a:hover .new-li-time {
        background: #ab1400;
    }

    .news ul li a:hover {}

}


/* 新闻详情 */

.new-er {
    padding: 10px;
}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 18px/24px '微软雅黑';
    color: #333;
}

.new-er-time {
    font: 400 14px/24px '微软雅黑';
    color: #999;
}

.new-er-content p {
    margin-bottom: 10px;
    font: 400 14px/24px '微软雅黑';
    color: #333;
    text-align: justify;
}

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

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

    .new-er-title {
        position: relative;
        margin: 0;
        padding-bottom: 15px;
        font: 400 30px/36px '微软雅黑';
        color: #333;
        text-align: left;
        border-bottom: 1px solid #333;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
    }

    .new-er-content {
        padding: 20px 0 0;
    }

    .new-er-content p {
        padding-bottom: 10px;
        font: 400 16px/30px '微软雅黑';
    }
}