.pageContent>h2{
	margin-top: 10px;
	text-transform: uppercase;
	text-align: center;
}
.pageContent_Goods{
	display: flex;
	margin: 50px auto;
	justify-content: space-around;
	align-items: center;
	min-height: 500px;
	position: relative;
	flex-wrap: wrap;
	transition: 0.5s;
	width: 100%;
	max-width: 1050px;
	transform: skewY(-2deg);
}
.pageContent_Goods__Item{
	position: relative;
	margin-top: 60px;
	margin-left: 30px;
	width: 300px;
	height: 400px;
	background-color: #dfdfdf;
	transition: 0.5s;
}
.pageContent_Goods__Item:before{
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	height: 15px;
	background: #dfdfdf;
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;
	
}
.pageContent_Goods__Item:after{
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	width: 15px;
	height: 50%;
	background: #dfdfdf;
	transform-origin: left;
	transform: skewY(45deg);
	transition: 0.5s;
	border-bottom: 200px solid #006400;
}
.pageContent_Goods__Item:hover{
	transform: translateY(-40px);
}
.goodsImg{
	position: relative;
	width: 300px;
	height: 200px;
	background-color: #dfdfdf;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	overflow: hidden;
}
.goodsImg img{
	width: 100%;
	opacity: 0.5;
}
.goodsImg h3{
	position: absolute;
	bottom: 5px;
	left: 50%;
	color: #006400;
	margin-top: 10px;
	transform: translateX(-50%);
}
.goodsDesc{
	position: relative;
	width: 100%;
	height: 200px;
	padding: 20px;
	text-align: center;
	background-color: #006400;
	color: #dfdfdf;
}
.goodsDesc:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 400px;
	background: linear-gradient(transparent,transparent,rgba(0,0,0,.1));
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;
	pointer-events: none;
	z-index: -1;
}
.goodsDesc a{
	color: yellow;
	text-decoration: none;
}
.goodsDesc a:hover{
	font-weight: 600;
	text-decoration: underline;
}
.pageContent_Goods__Item:hover .goodsDesc:before{
	transform: translateY(40px) skewX(45deg);
	filter: blur(5px);
	opacity: 0.5;
}
.pageContent_Goods__Item:nth-child(1){
	z-index: 7;
}
.pageContent_Goods__Item:nth-child(2){
	z-index: 6;
}
.pageContent_Goods__Item:nth-child(3){
	z-index: 5;
}
.pageContent_Goods__Item:nth-child(4){
	z-index: 4;
}
.pageContent_Goods__Item:nth-child(5){
	z-index: 3;
}
.pageContent_Goods__Item:nth-child(6){
	z-index: 2;
}
.pageContent_Goods__Item:nth-child(7){
	z-index: 1;
}
@media screen and (min-width:1280px){
	.pageContent{
		max-width: 1200px;
	}
}
	

@media screen and (min-width:1024px) and (max-width:1279px){
	.pageContent{
		max-width: 900px;
	}
}


@media screen and (min-width:768px) and (max-width:1023px){
	
}

@media screen and (min-width:600px) and (max-width:767px){

}

@media screen and (min-width:480px) and (max-width:599px){

}

@media screen and (min-width:320px) and (max-width:479px){
	
	}
}

@media screen and (max-width:319px){

}