*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
main {
	max-width: 1920px;
	padding: 0 20px;
	line-height: 1.8;
}
.product-wrap{
	width: 100%;
	max-width: 1920px;
	margin: 48px auto ;
	margin-top:50px;
	padding: 0 16px;
	padding-bottom: 50px;
}
.product{
	display: grid;
	width: 100%;
	/* PC端强制每行8张*/
	grid-template-columns: repeat(8, 1fr);
	gap: 16px;
}
/* 图片样式 强制统一尺寸 不变形 */
.climbingrope img {
	width: 100%;
	aspect-ratio: 250 / 350; /* 显示比例 */
	display: block;
	border-radius: 8px;
	object-fit: cover ; /* 自动裁剪填充 所有图片大小完全一致 */
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
	.product-wrap{
		margin-top:10px;
		padding-bottom: 10px;
	}
	.product-wrap .product{
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px;
	}
	.product img{
		padding: 10px;
		width: 100%;
	}
}
@media (hover: hover) {
	.climbingrope img:hover {
		opacity: 0.9;
	}
}