*{
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	outline: none;
	text-decoration: none;
}
/* 最大宽度 手机端 */
@media (max-width:780px) {
	.pro-selet{
		width: 100%;
		height: auto;
		padding: 1rem 3% ;
	}
	.pro-sel-st{
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-auto-flow: row;
		grid-gap: 1rem;
		background-color: #fff;
	}
	.pro-sel-li{
		width: 100%;
		height: auto;
		box-shadow: 0 0 0.625rem #ccc;
	}
	.pro-img{
		width: 100%;
		height: auto;
		max-height: 28.5rem;
		overflow: hidden;
		display: flex;
		align-items: center;
		background-color: #fff;
	}
	.pro-img>img{
		width: 100%;
		height: auto;
	}
	.pro-title{
		width: 100%;
		height: auto;
		padding: 1rem;
		
	}
	.pro-title>a{
		font-weight: 400;
		color: #19110b;
		font-size: 0.75rem;
	}
	.pro-title h2{
		width: 100%;
		font-weight: 700;
		font-size: 0.875rem !important;
		margin-bottom: 5px;
	}
}

/* 最小宽度 电脑端 */
@media (min-width:780px) {
	/* 商品列表开始 */
		.pro-selet{
			width: 100%;
			height: auto;
			padding: 2.5rem 3% ;
		}
		.pro-sel-st{
			width: 100%;
			display: grid;
			grid-template-columns: repeat(3,1fr);
			grid-auto-flow: row;
			grid-gap: 2rem;
			background-color: #fff;
		}
		.pro-sel-li{
			width: 100%;
			height: auto;
			border: 1px solid #eae8e4;
		}
		.pro-sel-li:hover{
			box-shadow: 0 0 0.625rem #ccc;
		}
		.pro-img{
			width: 100%;
			height: auto;
			overflow: hidden;
			display: flex;
			align-items: center;
			background-color: #fff;
		}
		.pro-img>img{
			width: 100%;
			height: auto;
		}
		.pro-title{
			width: 100%;
			height: auto;
			padding: 1rem;
			
		}
		.pro-title>h2{
			width: 100%;
			font-weight: 700;
			font-size: 1rem;
			margin-bottom: 5px;
		}
		.pro-title>a{
			font-weight: 400;
			color: #19110b;
			font-size: 0.75rem;
		}
		/* 商品列表结束 */
}

