* {
	margin: 0;
	padding: 0;
	text-decoration: none!important;
}
.banner{
	width: 100%;
	position: relative;
	margin-bottom: 100px;
}
.banner img{
	width: 100%;
	z-index: -1;
}
.banner .bannerText{
	position: absolute;
	/* top: 0;
	left: 0;
	width: 100%; */
	/* width: 1200px; */
	width: 72%;
	height: 100%;
	top: 50%;
	/* margin-top: -25px; */
	left: 50%;
	/* margin-left: -25px; */
	transform: translate(-50%,-50%);
}
/* @media screen and (min-width:1920px) {
	p {
		color: #007AFF;
	}
} */
.banner .bannerText p,.banner .bannerText a{
	display: block;
}
.banner .bannerText p:nth-child(1){
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	margin-top: 10%;
	margin-bottom: 20px;
}
.banner .bannerText p:nth-child(2){
	font-size: 16px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 28px;
	width: 40%;
	margin-bottom: 20px;
	text-align: justify;
}
.banner .bannerText a{
	width: 146px;
	height: 42px;
	position: absolute;
	top: 60%;
}
.banner .bannerText a button{
	padding: 3px 15px;
	background: #FFFFFF;
	border-radius: 21px;
	font-size: 14px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #333333;
	border: none;
	outline: none;
}
.banner .bannerText a button:hover{
	background-color: #013D87;
	color: white;
}
.product{
	margin-bottom: 100px;
}
.product .item{
	display: flex;
	flex-wrap: nowrap;
	padding: 0;
}
.product .item .itemList{
	width: 49%;
	background-color: #F5F5F5;
	display: block;
}
.product .item .itemList:hover {
	background-color: #d3d3d3;
}
.product .item .itemList:nth-child(2){
	margin-left:2%;
}
.product .item .itemList .listItem{
	width: 100%;
	height: 100%;
	padding-top: 30px;
	position: relative;
}
.product .item .itemList .listItem .up{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	border-radius: 10px;
	display: none;
}
.product .item .itemList .listItem:hover .up{
	display: block;
}
.product .item .itemList .listItem .up p{
	text-align: center;
	margin-top: 15%;
	font-size: 35px;
	color: white;
	font-weight: 500;
}
.product .item .itemList .listItem .up button{
	display: block;
	margin: 0 auto;
	border: none;
	width: 90px;
	height: 35px;
	border-radius: 20px;
	font-size: 15px;
	font-weight: 600;
}
.product .item .itemList .listItem .up button:hover{
	opacity: 0.7;
}

.product .item .itemList .listItem img {
	width: 60%;
	display: block;
	margin: 0 auto;
	margin-bottom: 3%;
	transition: 1s;
}
.product .item .itemList:hover .listItem img{
	width:65%;
	margin-bottom: -.5%;
	transition: 1s;
}
.product .item .itemList .listItem p{
	font-size: 20px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #333333;
	text-align: center;
	margin-bottom: 50px;
}
.use{
	margin-bottom: 100px;
}
.use>p:nth-child(1){
	font-size: 28px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #333333;
	text-align: center;
}
.use>p:nth-child(2){
	font-size: 16px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #3E3A39;
	line-height: 32px;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 50px;
	display: block;
	padding: 0;
}
.use .useList{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.use .useList .item{
	width: 296px;
	/*margin-right: 2%;*/
	margin-bottom: 30px;
	background-color: #F5F5F5;
}
/*.use .useList .item:nth-child(4n){*/
/*	margin-right: 0;*/
/*}*/
.use .useList .item .img{
	width: 296px;
	height: 200px;
	overflow: hidden;
}
.use .useList .item .img img{
	width: 296px;
	margin-left: 0;
	transition: 1s;
}
.use .useList .item .img img:hover{
	transform: scale(1.3);
	-ms-transform: scale(1.3);
	transition: 1s;
}
.use .useList .item p{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	text-align: center;
	width: 80%;
	display: block;
	margin: 0 auto;
	line-height: 50px;
}

@media screen and (max-width: 998px){
	.banner img {
		width: 100%;
		z-index: -1;
		height: 675px;
		object-fit: cover;
	}
	.banner .bannerText{
		left: 54%;
		width: 90%;
	}

	.banner .bannerText p:nth-child(2){
		margin-bottom: 8px;
		width: 55%;
		height: 280px;
		overflow: auto;
	}
	.banner .bannerText p:nth-child(2)::-webkit-scrollbar{
		width: 1px;
	}
	.product .item .itemList .listItem .up p {
		text-align: center;
		margin-top: 15%;
		font-size: 35px;
		color: white;
		font-weight: 500;
		height: 33%;
	}
	.use .useList{
		max-width: min-content;
	}
}