/* banner图 */
.banner-wrap{
    width: 100%;
    height: auto;
    font-size: 0;
}
.banner-wrap img{
    width: 100%;
    height: 100%;
}
/* 路由跳转 */
.router-wrap{
    width: 100%;
    height: 80px;
    box-shadow:0 2px 5px rgba(100, 100, 100, 0.5);
}
.router-list{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.router-item a{
    display: inline-block;
    width: 130px;
    height: 80px;
    text-align: center;
    font-size: 16px;
    line-height: 80px;
}
.router-itemOn a{
    color: white;
    background-color: #54B33E;
}
/* 新闻 */
.newsList-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
}
.newsList-box{
    max-width: 1200px;
    margin: 0 auto;
}
/* 第一条新闻 */
.firstNews-wrap{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.firstNews-img{
    width: 562px;
    height: 360px;
}
.firstNews-img img{
    width: 562px;
    height: 360px;
}
.firstNews-text{
    width: calc(100% - 562px);
    height: 360px;
    padding-left: 33px;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: flex-start;
}
.newsText-title .newsTextTitle{
    color: #333333;
    font-size: 18px;
}
.newsText-title .newsTextTime{
    color: #333333;
    font-size: 14px;
    margin-top: 18px;
}
.newsText-text{
    color: #333333;
    font-size: 14px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}
.lookDetail{
    color: #F5B100;
    font-size: 14px;
    line-height: 28px;
}
/* 新闻列表 */
.news-list{
    width: 100%;
    margin: 50px 0;
}
.news-item{
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.newsTitle{
    width: 70%;
}
.news-item .newsTitle a{
    color: #333333;
    font-size: 16px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-item:hover{
    background-color: #F6F6F6;
}
.news-item:hover .newsTitle a{
    color: #54B33E;
}
.news-item .newsTime{
    color: #888888;
    font-size: 16px;
    line-height: 28px;
}
/* 分页按钮 */
.paging-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 86px;
}
.paging-prev,.paging-next{
    cursor: pointer;
    display: inline-block;
    width: 120px;
    height: 50px;
    color: #666666;
    font-size: 34.38px;
    border: 1px solid #E5E5E5;
    text-align: center;
    line-height: 50px;
    background-color: white;
}
.page-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-num{
    width: 75px;
    height: 50px;
    color: #333333;
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    margin: 0 10px;
}
.page-num a{
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #E5E5E5;
}
.pageNum-on a{
    color: white;
    background: #54B33E;
}
/* 手机端 */
@media screen and (max-width:768px){
    .firstNews-wrap{
        flex-wrap: wrap;
    }
    .firstNews-img{
        width: 100%;
        height: auto;
        font-size: 0;
    }
    .firstNews-img img {
        width: 100%;
        height: auto;
    }
    .firstNews-text{
        width: 100%;
        height: auto;
        padding: 20px;
        background-color: #F6F6F6;
    }
    .news-list{
        margin-top: 20px;
    }
}