@charset "utf-8";

/*========== List ===========*/
.list ul li {
	height:200px;
	padding-left:10px;
	padding-right:10px;
	overflow:hidden;
	width:20%;
	float:left;
	text-align:center;
}

.list ul li .Img img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.list ul li .Img:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 0.7;
}

.list ul li .txt {
	margin-top:15px;
}

.list ul li .txt h3 a {
	word-wrap:break-word;
	font-size: 22px;
	line-height:1.5;
    font-weight: 500;
	text-align: center;
	color: #5f5b57;
}

.list ul li:hover .txt h3 a {
	color: #97928c;
}



@media (max-width: 800px) {
	.list ul li {
		width:33%;
		height:220px;
	}
}



@media (max-width: 640px) {
	.list ul li {
		width:50%;
		height:250px;
	}
}



@media (max-width: 480px){
	.list ul li{
		width:100%;
		height:310px;
	}
}