/* 新闻列表 */

.news {}

.news li {
    padding: 0 0 10px;
}

.news li a {
    display: block;
    color: #00234b;
    background: #fff;
}


.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 10px 0;
}

.new-li-time {
    font: 400 14px/24px '微软雅黑';
}

.new-li-title {
    overflow: hidden;
    font: bold 16px/30px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 72px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    text-align: justify;
}

.new-li-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 10px 0 0;
    background: url(../images/new_arrow0_bg.png) no-repeat center center/100%;
}

@media (min-width: 1200px) {
    .news {
        padding-top: 50px;
    }

    .news li {
        padding: 0 0 30px;
    }

    .news li a {
        display: flex;
        color: #00234b;
        background: #fff;
    }

    .new-li-img {
        width: 380px;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-font {
        width: 820px;
        padding: 20px 60px 20px 30px;
    }

    .new-li-time {
        font: 400 14px/24px '微软雅黑';
    }

    .new-li-title {
        overflow: hidden;
        padding: 15px 0 20px;
        font: bold 18px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 72px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
        text-align: justify;
    }

    .new-li-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        margin: 20px 0 0;
        background: url(../images/new_arrow0_bg.png) no-repeat center center;
    }

    .news li a:hover {
        color: #fff;
        background: #00bbf4;
    }

    .news li a:hover .new-li-arrow {
        background: url(../images/new_arrowa_bg.png) no-repeat center center;
    }
}


/* 新闻详情 */

.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;
    }
}