/* 新闻列表 */
.news-wrap{
    width: 100%;
    height: auto;
    padding: 100px 0;
    background-color: #FAFAFA;
}
.news-box{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}
.newsList{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.newsItem{
    width: 30%;
    max-width: 370px;
    margin-left: 5%;
    margin-top: 46px;
    padding: 38px 35px 22px;
    background-color: white;
}
.newsItem:nth-child(3n+1){
    margin-left: 0;
}
.newsItem:nth-child(-n+3){
    margin-top: 0;
}
.newsImg{
    width: 100%;
    height: 206px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.newsTitle{
    color: #333333;
    font-size: 18px;
    margin-top: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.newsText{
    color: #666666;
    font-size: 14px;
    margin-top: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.newsTime{
    color: #999999;
    font-size: 12px;
    margin-top: 44px;
}
.moreText{
    width: 100%;
    margin-top: 56px;
    text-align: right;
}
.moreText a{
    color: #999999;
    font-size: 14px;
}
.moreText a:hover{
    color: #90C42F;
}



/* 分页 */
.pageBox{
    width: 100%;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pageList{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pageNum a{
    display: inline-block;
    width: 36px;
    height: 35px;
    margin-left: 20px;
    text-align: center;
    line-height: 35px;
    color: #999999;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #CCCCCC;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.pageNum:last-child a{
    margin-right: 20px;
}
.pageNumOn a{
    color: white;
    background-color: #90C42F;
    border: 1px solid #90C42F;
}
.prevPage,.nextPage{
    cursor: pointer;
    display: inline-block;
    width: 70px;
    height: 35px;
    line-height: 35px;
    color: #999999;
    font-size: 14px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #CCCCCC;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
@media screen and (max-width:768px){
    .news-wrap{
        padding-top: 20px;
    }
    .newsItem{
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
    .newsItem:nth-child(-n+3){
        margin-top: 46px;
    }
    .newsText{
        margin-top: 20px;
    }
    .newsTime{
        margin-top: 20px;
    }
    .moreText{
        margin-top: 30px;
    }
}