/* 新闻列表 */
.news ul{}


@media (min-width:1200px) {
    .news ul{}
    .news li{
        padding: 15px 0;
    }
    
    .news li a{
        display: flex;
        justify-content: space-between;
    }
    .new-li-img{
        width: 320px;
        padding: 8px;
        border: 1px solid #745748;
    }
    .new-li-img img{
        width: 100%;
    }
    .new-li-right{
        position: relative;
        width: 750px;
    }
    .new-li-title{
        overflow: hidden;
        margin: 0;
        padding: 15px 0;
        font: bold 18px/30px '微软雅黑';
        color: #000;
        text-overflow: ellipsis;
        white-space: normal;
    }
    .new-li-time{
        font: 400 14px/24px '微软雅黑';
        color: #7e7e7e;
    }
    .new-li-p{
        margin-top: 20px;
    }
    .new-li-p p{
        font: 400 14px/24px '微软雅黑';
        color: #7e7e7e;
    }
}


/* 新闻详情 */
.new-er {}
.new-er-title{
    text-align: center;
}
.new-er-name{
    font:bold 18px/24px '微软雅黑';
    color: #333;
}
.new-er-time{
    font: 400 14px/24px '微软雅黑';
    color: #919191;
}

.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{
        min-height: 600px;
        padding: 0 0 50px;
    }
    .new-er-title{
        padding:0 0 15px 0; 
    }
    .new-er-name{
        font:bold 20px/42px '微软雅黑';
        color: #333;
    }

    .new-er-content p{
        font: 400 16px/30px '微软雅黑';
    }
}