/* 新闻列表 */
.news ul {}

.news ul li {
    padding: 5px 0;
}

.news ul li a {
    display: block;
    text-align: center;
    border-bottom: 3px solid #eeeeee;
}

.new-li-img {}

.new-li-img img {
    width: 100%;
}

.new-li-title {
    padding: 5px 0 0;
    font: 400 16px/30px '微软雅黑';
    color: #838383;
}

.new-li-time {
    font: 400 12px/20px '微软雅黑';
    color: #505050;
}

.new-li-p {
    padding: 0 10px 10px;
}

.new-li-p p {
    font: 400 14px/24px '微软雅黑';
    color: #505050;
}

@media (min-width:1200px) {
    .news ul {
        display: flex;
        flex-flow: wrap;
    }

    .news ul li {
        width: 33.3333%;
        padding: 5px 0;
    }

    .news ul li a {
        display: block;
        padding: 10px;
        text-align:left;
        border-bottom: 6px solid #eeeeee;
    }

    .new-li-img {
        overflow: hidden;
    }

    .new-li-img img {
        width: 102%;
        transition: 0.6s;
        height:300px;
    }

    .new-li-title {
        padding: 20px 0 0;
        font: 400 18px/30px '微软雅黑';
        color: #838383;
    }

    .new-li-time {
        font: 400 14px/24px '微软雅黑';
        color: #505050;
    }

    .new-li-p {
        height: 96px;
        padding: 0 0px;
        overflow: hidden;
    }

    .new-li-p p {
        font: 400 14px/24px '微软雅黑';
        color: #505050;
    }

    .news ul li a:hover {
        background: url('../images/new_li_bg.jpg') no-repeat center 0/100% 100%;
        border-color: #2b2b2b;
    }

    .news ul li a:hover .new-li-title {
        font-weight: bold;
        color: #2b2b2b;
    }

    .news ul li a:hover .new-li-img img {
        transform: translate3d(-2%, 0, 0);
    }
}


/* 新闻详情 */
.new-er {
    padding: 10px 10px 10px;
    text-align: center;
    background: url('../images/new_er_bg.jpg') no-repeat center 0/100%;
}

.new-er-name {
    font: bold 16px/24px '微软雅黑';
    color: #333;
}

.new-er-time {
    font: 400 14px/24px '微软雅黑';
    color: #999;
}

.new-er-content p {
    margin-bottom: 10px;
    font: 400 14px/24px '微软雅黑';
    color: #333;
    text-align: justify;
}

.new-er-content p img {
    width: 100%;
}

@media (min-width:1200px) {
    .new-er {
        position: relative;
        padding: 50px 35px 50px;
        text-align: left;
        background: url('../images/new_er_bg.jpg') no-repeat center 0/100%;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 30px;
        padding-bottom: 15px;
        font: bold 24px/36px '微软雅黑';
        color: #333;
        border-bottom: 1px solid #cbcbcb;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
    }

    .new-er-content {}

    .new-er-content p {
        font: 400 16px/30px '微软雅黑';
    }

    .new-er-content p img {
        max-width: 600px;
    }
}