/* 新闻列表 */

.news {}

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

.news ul a {
    display: block;
}
.new-li-img img {
    width: 100%;
}

.new-li-font {
    border-bottom: 1px solid #333;
}
.new-li-title{
    padding: 5px 0;
}
.new-li-title p {
    overflow: hidden;
    font: 400 18px/24px '微软雅黑';
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-title span {
    display: block;
    width: 90px;
    font: 400 14px/20px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #333;
}

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

@media (min-width: 1200px) {
    .news {
        position: relative;
        width: 1170px;
        padding: 70px;
    }

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

    .news ul a {
        display: flex;
        justify-content: space-between;
    }

    .new-li-img {
        width: 290px;
        height: 218px;
        overflow: hidden;
    }

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

    .new-li-font {
        width: 650px;
        border-bottom: 1px solid #333;
    }

    .new-li-title {
        display: flex;
        justify-content: space-between;
    }

    .new-li-title p {
        width: 530px;
        overflow: hidden;
        font: 400 24px/30px '微软雅黑';
        color: #333;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-title span {
        width: 90px;
        font: 400 14px/30px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #333;
    }

    .new-li-p {
        height: 96px;
        overflow: hidden;
        margin-top: 40px;
        font: 400 14px/24px '微软雅黑';
        color: #333;
    }

    .news ul a:hover .new-li-img img {
        transform: scale(1.1);
    }

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

    .news ul a:hover .new-li-title span {
        background: #930005;
    }
}


/* 新闻详情 */

.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;
    }
}