﻿.list_wrap{
	margin: 20px 0;
}
.list_wrap ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.list_wrap ul li{
	width:48%;
	border: 1px solid #ccc;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.list_wrap ul li a{
	display: block;
}
.list_wrap ul li .img_box{
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.list_wrap ul li .img_box img{
	width: 100%;
	height: 300px;
	object-fit: contain;
	transition: all 0.5s;
}
.list_wrap ul li .img_box:hover img{
	transform: scale(1.1);
	transition: all 0.5s;
}
.list_wrap ul li h2{
	padding: 10px 0;
	text-align: center;
	color: #000;
	font-size: 16px;
	margin: 0;
}

.list_wrap ul.flex_center {
	justify-content: center;
}
.list_wrap ul.flex_center li{
	width:45%;
	margin: 1%;
}