@charset "utf-8";
.category {
	width: 100%;
	float: left;
	margin:0;
	padding:0;
	background: none;
}
.category ul {
	width:100%;
	float: left;
	margin:0;
	padding: 0;
}
.category ul li {
	width:50%;
	float: left;
	margin:0;
	padding: 0;
	list-style: none;
	position: relative;
	transition: all 0.5s ease;
	overflow: hidden;
}
.category ul li a {
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.category ul li img {
	width: auto;
	float: left;
	max-width: 100%;
	border: 0 none;
	transition: all 500ms ease 0s;
	position: relative;
	z-index: 1;
	transform: scale(1, 1);
}
.category ul li a:hover img {
	transform: scale(0.9, 0.9);
}
