/* 新闻列表 */

.news {}
 .news ul li {
     padding: 2px 0;
 }

 .news ul a {
     display: block;
     color: #000;
     background: rgba(255, 255, 255, 0.75);
 }

 .new-li-img {
    width: 100%;
     border: 2px solid #fff;
 }

 .new-li-img img {
     width: 100%;
 }


 .new-li-title {
     margin: 10px 0 10px;
     overflow: hidden;
     padding-left: 20px;
     font: 400 16px/24px '微软雅黑';
     text-overflow: ellipsis;
     white-space: nowrap;
     background: url(../images/new_li_arrow.png) no-repeat 5px center/8px;
 }

 .new-li-p {
     height: 72px;
     overflow: hidden;
     padding: 0 10px;
     font: 400 14px/24px '微软雅黑';
 }

 .new-li-time {
     padding: 5px 10px;
     font: 400 14px/24px '微软雅黑';
 }
@media (min-width: 1200px) {
    .news {
        background: none;
    }
    .news ul li {
        padding: 10px 0;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        color: #000;
        background: rgba(255, 255, 255, 0.75);
        transition: 0.6s transform;
    }

    .new-li-img {
        width: 215px;
        height: 160px;
        border: 3px solid #fff;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
    }

    .new-li-font {
        width: 880px;
        padding-right: 30px;
    }

    .new-li-title {
        margin: 10px 0 10px;
        padding-left: 30px;
        font: 400 18px/30px '微软雅黑';
        background: url(../images/new_li_arrow.png) no-repeat 0 center;
    }

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

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

    .news ul a:hover {
        color: #fff;
        background: rgba(133, 65, 55, 0.75) url(../images/new_logo.png) no-repeat 96% 90%;
        transform: translate3d(-20px,0,0);
    }
    .news ul a:hover .new-li-title{
        background-image: url(../images/new_li_arrow_w.png);
    }
}


/* 新闻详情 */

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