/* 新闻列表 */

.news ul{
    display: flex;
    flex-wrap: wrap;
}
.news ul li {
    width: 50%;
    padding: 0 0.1rem;
}

.news ul a {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0.3rem;
    color: #fff;
    background: url(../images/new_li_bg.png) no-repeat 0 0/cover;
    border: 1px solid #fff;
}

.new-li-box {
    width: 3.2rem;
}

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

.new-li-p {
    height: 160px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
}

.new-li-more {
    width: 2.4rem;
    margin-top: 20px;
    font: 400 14px/24px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #000;
}

.new-li-title {
    width: 18px;
    height: 144px;
    overflow: hidden;
    font: 400 16px/18px '微软雅黑';
    color: #fff;
}

.new-li-icon {
    position: absolute;
    right: 0.2rem;
    bottom: 0.2rem;
    width: 1rem;
    height: 1rem;
    background: url(../images/new_li_icon.png) no-repeat 0 0/100%;
}

@media (min-width: 1200px) {

    .news ul {
        display: flex;
        flex-wrap: wrap;
        padding: 30px;
    }

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

    .news ul li a {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding: 25px 25px 0;
        color: #000;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid #000;
    }

    .new-li-box {
        width: 220px;
        padding: 24px 0 0;
        transition: 0.6s;
    }

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

    .new-li-p {
        height: 240px;
        overflow: hidden;
        font: 400 16px/30px '微软雅黑';
    }

    .new-li-more {
        width: 120px;
        margin-top: 30px;
        font: 400 16px/36px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #000;
    }

    .new-li-title {
        width: 36px;
        height: 240px;
        overflow: hidden;
        font: 400 30px/30px '微软雅黑';
        color: #000;
        transition: 0.6s;
    }

    .new-li-icon {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100px;
        height: 100px;
        background: url(../images/new_li_icon.png) no-repeat 0 0;
        opacity: 0;
        transform: translate3d(50%, 50%, 0);
        transition: 0.6s;
    }

    .news a:hover {
        color: #fff;
        background: url(../images/new_li_bg.png) no-repeat 0 0/cover;
    }

    .news a:hover .new-li-box {
        transform: translate3d(0, -30px, 0);
    }

    .news a:hover .new-li-title {
        color: #fff;
        transform: translate3d(0, -10px, 0);
    }

    .news a:hover .new-li-icon {
        opacity: 1;
        transform: translate3d(0, 0, 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 {
        padding: 50px 150px;
    }

    .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;
    }
}