/* 新闻列表 */

.news {}

.news ul li {
    padding:1px 5px;
}

.news ul li a {
    display: block;
    padding: 0 0 5px;
    border-bottom: 1px solid #004b7d;
}

.new-li-img img {
    width: 100%;
}

.new-li-title {
    padding: 10px 0 0;
    font: 400 16px/30px '微软雅黑';
    color: #004b7d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 96px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

.new-li-more {
    display: flex;
    justify-content: flex-end;
}

.new-li-more span {
    display: block;
    width: 100px;
    padding: 0 15px;
    font: 400 14px/24px '微软雅黑';
    color: #004b7d;
    background: url(../images/part_icon_blue.png) no-repeat 80px center;
    border: 1px solid #004b7d;
    border-radius: 12px;
}

@media (min-width: 1200px) {
    .news ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 50%;
        padding: 0 10px;
    }

    .news ul li a {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px solid #004b7d;
    }

    .new-li-img {
        width: 240px;
        height: 180px;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
    }

    .new-li-font {
        width: 290px;
    }

    .new-li-title {
        padding: 10px 0;
        font: 400 18px/30px '微软雅黑';
        color: #004b7d;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 96px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
        color: #000;
    }

    .new-li-more {
        display: flex;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .new-li-more span {
        display: block;
        width: 100px;
        padding: 0 15px;
        font: 400 14px/24px '微软雅黑';
        color: #004b7d;
        background: url(../images/part_icon_blue.png) no-repeat 80px center;
        border: 1px solid #004b7d;
        border-radius: 12px;
        transition: 0.3s;
    }

    .news ul a:hover {
        color: #e47018;
        border-color: #e47018;
    }

    .news ul a:hover .new-li-title {
        color: #e47018;
    }

    .news ul a:hover .new-li-more span {
        color: #fff;
        background-color: #e47018;
        background-image: url(../images/part_icon_w.png);
        border-color: #e47018;
    }

}


/* 新闻详情 */

.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 100px 50px;
    }

    .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;
    }
}