/* 新闻列表 */

.news {}

.news ul {
    display: flex;
    flex-wrap: wrap;
}

.news ul li {
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
}

.news ul a {
    position: relative;
    display: block;
    padding: 10px 0;
    color: #000;
}


.new-li-title {
    overflow: hidden;
    font: 400 18px/24px "微软雅黑";
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.6s;
}

.new-li-time {
    padding: 5px 0;
    font: 400 14px/24px "微软雅黑";
}

.new-li-img img {
    width: 100%;
}

.new-li-p {
    margin: 10px 0 0;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
}

@media (min-width: 1200px) {
    .news {
        padding: 0 20px;
    }

    .news ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 33.3%;
        padding: 0 1px;
        border-bottom: 1px solid #dcdcdc;
    }

    .news ul a {
        position: relative;
        display: block;
        padding: 64px 6px 30px;
        color: #000;
        background: url(../images/new_lia_bg.jpg) no-repeat 0 0/100% 0;
        transition: 0.6s background;
    }

    .news ul a::before {
        content: '';
        position: absolute;
        left: 0;
        top: -4px;
        left: 0;
        width: 0;
        height: 5px;
        background: #354d95;
        transition: 0.6s;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 24px/30px "微软雅黑";
        text-overflow: ellipsis;
        white-space: nowrap;
        transition: 0.6s;
    }

    .new-li-time {
        padding: 10px 0 20px;
        font: 400 14px/24px "微软雅黑";
        transition: 0.6s;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-p {
        height: 180px;
        margin: 18px 0 0;
        overflow: hidden;
        font: 400 16px/30px '微软雅黑';
    }

    .news ul a:hover {
        color: #fff;
        background-size: 100% 100%;
    }

    .news ul a:hover::before {
        width: 100%;
    }

    .news ul a:hover .new-li-title {
        transform: translate3d(0, -20px, 0);
    }

    .news ul a:hover .new-li-time {
        transform: translate3d(0, -20px, 0);
    }

}


/* 新闻详情 */

.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: 0 60px 20px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #000;
        text-align: left;
        border-bottom: 1px solid #000;
    }

    .new-er-name {
        color: #000;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #000;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #000;
    }
}