.index {
	position: relative;
	margin: 10px 0 0 0;
	height: auto;
	overflow: hidden;
}
.index .item {
	position: relative;
	float: left;
	margin: 0 0 20px;
	width: 33.333333%;
	box-sizing: border-box;
}
.index .item a {
	display: block;
	position: relative;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.index .item a:after {
	content: '';
	display: block;
	padding-top: 60%;
	height: 0;
}
.index .item a .category {
	position: absolute;
	top: 10px; right: 0;
	padding: 5px 10px;
	background-color: rgba(0, 0, 0, 0.2);
	text-shadow: 0 0 3px rgba(0, 0, 0, 1);
	color: #FFF;
}
.index .item a .text {
	position: absolute;
	bottom: 0;
	padding: 5px 7px;
	width: 100%;
	color: #FFF;
	background-color: rgba(0, 0, 0, 0.2);
	text-shadow: 0 0 3px rgba(0, 0, 0, 1);
	box-sizing: border-box;
}
.index .item a .text h3 {
	position: relative;
	font-size: 0.9em;
}
.index .item a .text p {
	display: none;
	position: relative;
}
.index .item:nth-child(3n+1) {
	padding: 0 10px 0 0;
}
.index .item:nth-child(3n+2) {
	padding: 0 5px 0 5px;
}
.index .item:nth-child(3n) {
	padding: 0 0 0 10px;
}

@media (min-width : 420px) and (max-width : 740px){
.index .item {
	margin: 0 0 10px;
	width: 50%;
}
.index .item:nth-child(2n) {
	padding: 0 0 0 5px !important;
}
.index .item:nth-child(2n+1) {
	padding: 0 5px 0 0 !important;
}	
.index .item:nth-child(1) {
//	padding: 0 !important;
}
}
@media(max-width : 420px){
.index {
	
}
.index .item {
	margin: 0 0 10px !important;
	padding: 0 !important;
	width: 100% !important;
}
.index .item a:hover {
	opacity: 1;
}
}
