/* 新闻列表 */

.news {}


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

.news ul a {
    display: block;
    background: #f3f3f3;
}


.new-li-img {
    margin: 0 0 10px;
}

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

.new-li-time {
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

.new-li-title {
    overflow: hidden;
    font: bold 16px/24px '微软雅黑';
    color: #00234b;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 72px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    color: #00234b;
}

.new-li-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #000000;
    border-radius: 50%;
}

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

    .news ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 33.3%;
        padding: 15px;
    }

    .news ul li a {
        transition: 0.3s;
    }

    .new-li-font {
        padding: 20px;
    }

    .new-li-img {
        margin: 0 0 10px;
    }

    .new-li-time {
        font: 400 14px/20px '微软雅黑';
    }

    .new-li-title {
        margin: 5px 0 10px;
        font: bold 18px/30px '微软雅黑';
    }

    .new-li-p {
        height: 72px;
        font: 400 14px/24px '微软雅黑';
    }

    .news ul li a:hover {
        transform: translate3d(0, -10px, 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 {
    width: 100%;
}

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

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #333;
        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;
    }
}