/* 新闻列表 */
.common-title {
    color: #fff;
}

.common-title span {
    color: #fff;
}

.bread {
    color: #fff;
}

.bread a {
    color: #fff;
}

.news {}

.news ul {
    padding: 5px;
}

.news ul li {
    padding: 2px;
}

.news ul li a {
    display: block;
    border-bottom: 1px solid #000;
}

.new-li-img {
    position: relative;
}

.new-li-img i {
    display: block;
}

.new-li-img img {
    width: 100%;
}

.new-li-time {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 120px;
    font: 400 14px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #000000;
}

.new-li-title {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    font: 400 18px/30px '微软雅黑';
    color: #132a88;
}

.new-li-title p {
    width: 5.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-title span {
    font-size: 14px;
}

.new-li-p {
    height: 72px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {

    .news ul {
        display: flex;
        flex-wrap: wrap;
        padding: 40px;
    }

    .news ul li {
        width: 50%;
        padding: 18px;
    }

    .news ul li a {
        display: block;
        padding-bottom: 33px;
        border-bottom: 1px solid #000;
        transition: 0.6s;
    }

    .new-li-img {
        position: relative;
    }

    .new-li-img i {
        display: block;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-time {
        position: absolute;
        z-index: 10;
        left: 0;
        bottom: 0;
        width: 110px;
        font: 400 14px/36px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #000000;
    }

    .new-li-title {
        display: flex;
        justify-content: space-between;
        margin: 15px 0;
        font: 400 24px/30px '微软雅黑';
        color: #132a88;
    }

    .new-li-title p {
        width: 410px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-title span {
        font-size: 14px;
    }

    .new-li-p {
        height: 60px;
        overflow: hidden;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }

    .news ul li a:hover {
        transform: translate3d(-10px, -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 {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        width: 1100px;
        margin: 0 auto;
        padding: 50px 100px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        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;
    }
}