/* 新闻列表 */

.news {}

.news ul {
    display: flex;
    flex-wrap: wrap;
}

.news ul li {
    width: 50%;
    padding: 2px;
}

.news ul li a {
    display: block;
    overflow: hidden;
}

.new-li-img {
    overflow: hidden;
}

.new-li-img img {
    width: 100%;
    transition: 0.3s;
}

.new-li-title {
    padding: 5px 0;
    overflow: hidden;
    font: 400 16px/24px '微软雅黑';
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 40px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #999999;
}

.new-li-arrow {
    display: flex;
    width: 200%;
    overflow: hidden;
    margin-top: 10px;
    transition: 0.3s;
}

.new-li-arrow p {
    width: 50%;
    flex-shrink: 0;
    padding: 0 10px;
    font: 400 14px/24px '微软雅黑';
    color: #fff;
    background: #122a88 url(../images/new_li_arrowa.png) no-repeat 95% center/15px;
}

.new-li-arrow i {
    display: block;
    width: 50%;
    flex-shrink: 0;
    padding-left: 2px;
}


@media (min-width: 1200px) {
    .common-box {
        background-position-y: 20px;
    }

    .news {
        padding: 40px;
    }

    .news ul li {
        width: 33.3%;
        padding: 20px;
    }

    .new-li-title {
        padding: 20px 0;
        font: 400 18px/24px '微软雅黑';
    }

    .new-li-p {
        height: 96px;
    }

    .new-li-arrow {
        display: flex;
        width: 200%;
        margin-top: 20px;
        font: 400 14px/30px '微软雅黑';
        transform: translate3d(-50.1%, 0, 0);
        transition: 0.3s;
    }

    .new-li-arrow p {
        padding: 0 15px;
    }

    .news ul li a:hover .new-li-img img {
        transform: scale(1.1);
    }

    .news ul li a:hover .new-li-arrow {
        transform: translate3d(0, 0, 0);
    }
}

@media (min-width: 1480px) {
    .news {
        padding: 100px;
    }
}


/* 新闻详情 */

.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: 100px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 20px;
        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;
    }
}