/*
 * iweb52-style30
 *
 * Copyright 2017, TANK
 * 
 * 
 * 2017 / 4 / 27
 */


/* + bookList
*----------------------------------------------------------------------------*/
#bookList ul ,
#article ul {
	overflow: hidden;
}

#bookList ul li ,
#article ul li {
	position: relative;
	margin: 10px 0;
	margin-right: 1%;
	float: left;
	width: 32%;
}

#bookList ul li :nth-child(3n) ,
#article ul li :nth-child(3n) {
	margin-right: 0;
}

#bookList ul li a.photo ,
#article ul li a.photo {
	background-size: 100%;
	transition: all 0.4s ease;
}

#bookList ul li:hover a.photo ,
#article ul li:hover a.photo {
	background-size: 120%;
}

#bookList ul li .hoverBox {
	position: absolute;
	padding: 10px 0;
	width: 100%;
	background: rgba(0,0,0,0.5);
	text-align: center;
	bottom: 0;
}

#bookList ul li .hoverBox a {
	color: #fff;
}


/************ = 適應性 = ************/
/* +width:640 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
	#bookList ul li {
		width: 49%;
	}
	#bookList ul li :nth-child(3n) ,
	#article ul li :nth-child(3n) {
		margin-left: 1%;
	}
}

/* +width:450 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 450px) {
	#bookList ul li {
		margin: 10px 0;
		width: 100%;
	}
}
