.boxBigShow {
	display: block;
}

.boxSmallShow {
	display: none;
}

.productCls {
	text-align: center;
	padding: 80px 0;
	width: 100%;
}

.productClsTit h3 {
	text-align: center;
	font-size: 36px;
	line-height: 1;
	color: #222;
}

.productClsTit p {
	font-size: 14px;
	line-height: 26px;
	color: #555;
	margin: auto;
	margin-top: 50px;
	max-width: 600px;
}

.productClsList {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 20px;
	align-items: center;
	width: 100%;
	margin-top: 30px;
}

.productClsList a {
	color: #555;
	position: relative;
}

.aBackColor {
	width: 100%;
	background: #f6f6f6;
	padding: 30px 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: .5s;
}

.hoverShow {
	width: 100%;
	height: 160px;
	background-color: #f6f6f6;
	border-radius: 10px;
}

.showOne {
	display: inline;
}

.showTwo {
	display: none;
}

.productClsList a:hover .aBackColor {
	color: #fff;
	background: #063eaa;
	padding: 40px 10px;
	left: -10px;
	top: -10px;
	border-radius: 10px;
}

.productClsList a:hover .showOne {
	display: none;
}

.productClsList a:hover .showTwo {
	display: inline;
}

.productClsList img {
	max-width: 100px;
}

.productClsList p {
	font-size: 20px;
	text-align: center;
	margin-top: 10px;
}

.someProduct {
	width: 100%;
	background: #fafafa;
	padding: 80px 0;
}

.someProduct h3 {
	font-size: 36px;
	font-weight: bold;
	color: #222;
	line-height: 1;
	text-align: center;
}



@media screen and (min-width:751px) and (max-width:1000px) {
	.productParamBtn .productBtn{
		display: block;
		margin-top: 20px;
	}
	.productParamBtn .productBtn a {
		display: block;
		width: 100%;
		height: 28px;
		text-align: center;
		line-height: 28px;
		font-size: 14px;
		border-radius: 50px;
		border: 1px solid #063eaa;
		background: #063eaa;
		color: #fff;
		margin-top: 10px;
	}
}
@media screen and (max-width:750px) {
	.boxBigShow {
		display: none;
	}

	.boxSmallShow {
		display: block;
	}
	.productCls{
		padding: 48px 15px 20px 15px;
		box-sizing: border-box;
	}
	.productClsTit h3{
		font-size: 24px;
		line-height: 36px;
	}
	.productClsTit p{
		margin-top:28px;
	}
	.aBackColor {
		width: 100%;
		background: #f6f6f6;
		padding: 10px ;
		box-sizing: border-box;
		position: unset;
	}
	.productClsList img{
		width: 70%;
	}
	.productClsList p{
		font-size: 14px;
		margin-top: 0;
	}
	.productClsList {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 10px;
		margin-top: 20px;
	}

	.productClsList a {
		margin-bottom: 10px;
	}
	.someProduct{
		padding: 48px 0 ; 
	}
	.someProduct h3{
		font-size: 24px;
		margin-bottom: 24px;
	}
	.someProduct .productParamBtn>h3{
		margin-bottom: 5px;
	}
	.productClsList a:hover .aBackColor{
		padding: 10px;
	}
	.hotNewBuyBox{
		padding-top: 33px;
	}
}