
/***** 新闻列表 开始 *****/
.news-list-content{
    padding: 20px 0;
    min-height: calc(100vh - 200px);
    background-color: #F5F5F5;
    
}
.news-list-content .news-list{
}
.news-list-content .news-item{
    margin: 0 auto;
    display: flex;
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    
    /*延迟*/
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.news-list-content .news-item:hover{
    box-shadow: 0px 4px 10px 0px rgba(216, 216, 216, 0.3);
    transform: translate(0,-5px);
}
.news-list-content .img-box{
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
}
.news-list-content .img-box img{
    border-radius: 4px;
}
.news-list-content .tit-box{
    width: 80%;
    padding-left: 10px;
}
.news-list-content 
.news-list-content  .news-desc{
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}
.news-list-content  img{
    max-width: 100%;
}

.news-list-content  a{
    color: #666666;
}
.news-list-content  a:hover{
    color: #444;
}
.news-list-content .title{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




@media (max-width: 1000px) {
    .news-list-content .title{
        white-space: wrap;
        overflow:auto;
        text-overflow: ellipsis;
    }
}


/***** 新闻列表 结束 *****/