/* 新闻列表 */
.newsList-wrap{
    width: 100%;
    height: auto;
    background-color: white;
}
.newsList-box{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 60px 0 100px;
}
/* 新闻动画 */
.newsImg{
    overflow: hidden;
}
.newsImg img{
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 2s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-animation: transform 2s;
    -webkit-transition: transform 2s;
    -moz-transition: transform 2s;
    -ms-transition: transform 2s;
    -o-transition: transform 2s;
}
.newsImg img:hover{
    transition: transform 2s;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-animation: transform 2s;
    -webkit-transition: transform 2s;
    -moz-transition: transform 2s;
    -ms-transition: transform 2s;
    -o-transition: transform 2s;
}
/* 重要新闻/第一条新闻 */
.importantNews{
    width: 100%;
    height: 393px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #F7F7F7;
}
.importantNews .newsImg{
    max-width: 540px;
    width: 45%;
    height: 393px;
}
.importantNews .newsText{
    max-width: 660px;
    width: 55%;
    height: 393px;
    padding: 43px 55px 0 43px;
}
.importantNews .newsText .newsTitle{
    font-size: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.importantNews .newsText .newsTime{
    color: #969696;
    font-size: 12px;
    margin-top: 16px;
}
.importantNews .newsText .newsDetail{
    color: #666666;
    font-size: 14px;
    line-height: 30px;
    margin-top: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.importantNews .newsText .moreText{
    font-size: 16px;
    margin-top: 67px;
}
/* 新闻详情列表 */
.news-list{
    margin-top: 65px;
}
.news-item{
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #E6E6E6;
}
.news-item .newsImg{
    max-width: 250px;
    width: 20%;
    max-height: 165px;
}
.news-item .newsText{
    max-width: 950px;
    width: 80%;
    padding-left: 30px;
    max-height: 165pxpx;
}
.newsText .newsTitle{
    color: #332C2B;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.newsText .newsTime{
    color: #969696;
    font-size: 12px;
    margin-top: 12px;
}
.newsText .newsDetail{
    color: #646464;
    font-size: 14px;
    overflow: hidden;
    margin-top: 15px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.newsText .moreText{
    display: inline-block;
    color: #999999;
    font-size: 16px;
    margin-top: 35px;
}
.newsText .newsTitle:hover{
    text-decoration:underline;
}
/* 分页 */
.pageNum-wrap{
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.pageTip{
    color: #646464;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 0px;
}
.pageNum{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prevBtn,.nextBtn{
    cursor: pointer;
    display: inline=block;
    width: 86px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #969696;
    font-size: 12px;
    border-radius: 2px;
    background-color: #E6E6E6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.page-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-item a{
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    color: #666666;
    font-size: 12px;
    margin-left: 15px;
    border-radius: 2px;
    background-color: #E6E6E6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.page-item:last-child a{
    margin-right: 15px;
}
.page-itemOn a{
    color: #ffffff;
    background-color: #332C2B;
}
/* 移动端 */
@media screen and (max-width:768px){
    .newsList-box{
        padding-bottom: 40px;
    }
    /* 重要新闻/第一条新闻 */
    .importantNews{
        width: 100%;
        height: auto;
        background-color: #F7F7F7;
    }
    .importantNews .newsImg{
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .importantNews .newsText{
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 15px 20px;
    }
    .importantNews .newsText .newsTitle{
        font-size: 28px;
    }
    .importantNews .newsText .newsTime{
        color: #969696;
        font-size: 12px;
        margin-top: 14px;
    }
    .importantNews .newsText .newsDetail{
        color: #666666;
        font-size: 14px;
        line-height: 30px;
        margin-top: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .importantNews .newsText .moreText{
        font-size: 16px;
        margin-top: 20px;
    }
    /* 新闻列表 */
    .news-item{
        padding-bottom: 20px;
    }
    .news-item .newsImg{
        max-width: 100%;
        width: 100%;
        max-height: 100%;
    }
    .news-item .newsText{
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    /* 分页 */
    .pageTip{
        position: static;
        width: 100%;
    }
    .pageNum{
        margin-top: 20px;
    }
}