.newsPageBanner{
	height: 460px;
	background: url('../img/banner/banner-news.webp') no-repeat top center;
	background-size: cover;
}


.newsClsLs{
    margin-top: 80px;
}
.newsClsLs .newsLinkLs{
	display: flex;
	justify-content: center;
	align-items: center;
}

.newsClsLs .newsLinkLs a{
	display: block;
	width: 150px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	font-size: 18px;
	border: 1px solid #e50012;
	color: #e50012;
	margin: 0 24px;
	border-radius: 6px;
	box-sizing: border-box;
	/* transition: .3s; */
}
.newsClsLs .newsLinkLs a.showThisCls{
	background-color: #e50012;
	color: #fff;
}
.newsClsLs .newsLinkLs a:hover{
	background-color: #e50012;
	color: #fff;
}


.newsPageListBox .newsPageList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newsPageListBox .newsPageList .newsPageItem{
    width: calc(50% - 8px);
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
}


.newsPageListBox .newsPageList .newsPageItem img{
    width: 300px;
}

.newsPageListBox .newsPageList .newsPageItem .newsContBox{
    padding: 16px;
}

.newsPageListBox .newsPageList .newsPageItem .newsContBox h3{
    font-size: 18px;
    overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    transition: .3s;
}

.newsPageListBox .newsPageList .newsPageItem .newsContBox p{
    font-size: 16px;
    color: #666;
    overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
    margin-top: 18px;
    transition: .3s;
    line-height: 1.5;
}

.newsPageListBox .newsPageList .newsPageItem:hover h3{
    color: #e50012;
}

.newsPageListBox .newsPageList .newsPageItem:hover .newsContBox p{
    color: #000;
}

.newsPageCont h1{
    text-align: center;

}

.newsPageCont .newsContNum{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
}
.newsPageCont .newsContNum span{
    margin: 0 24px;
}

.newsPageCont .text{
    margin-top: 48px;
    text-align: center;
}

.newsPageCont .text h2{
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 24px;
    text-align: left;
}
.newsPageCont .text h3{
    font-size: 20px;
    margin-top: 36px;
    margin-bottom: 24px;
    text-align: left;
}

.newsPageCont .text p{
    margin: 12px 0;
    font-size: 16px;
    text-align: left;
}

.newsPageCont .text img{
    width: 800px;
    height: auto;
    margin: auto;
}

















