#album{
	overflow:hidden;
	position:relative;
	z-index:2;
}
#album .bookList{
	overflow:hidden;
	margin: 30px 0;
}
#album .bookList >div{
	float:left;
	width:32%;
	margin-right:2%;
	margin-bottom:30px;
}
#album .bookList >div:nth-child(3n){
	margin-right:0;
}
#album .bookshow{
	position:relative;
	margin: 0;
}
#album .bookshow .photo{
	background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
#album .bookshow .photo a{
	display:block;
}
#album .bookshow .bookdetail{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	background:rgba(255,255,255,0.7);
	padding: 20px 0;
	transition:all ease-in-out 0.3s;
}
#album .bookshow:hover .bookdetail{
	background:rgba(25,25,25,0.7);
}
#album .bookshow .bookdetail h3{
	text-align:center;
}
#album .bookshow .bookdetail h3 a{
	color:#252525;
	font-size:16px;
}
#album .bookshow:hover .bookdetail h3 a{
	color:#fff;
}
#album .bookshow .bookdetail p{
	text-align:center;
}
#album .bookshow .bookdetail p a{
	color:#9b8146;
	font-size:12px;
}
#album-info{
	display: flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
#album-info::after {
	content: '';
	flex-grow: 999999999;
	-moz-flex-grow: 999999999;
	-ms-flex-grow: 999999999;
	-o-flex-grow: 999999999;
	-webkit-flex-grow: 999999999;
	min-width: 200px;
	height: 0;
}

article{
	font-size:16px;
	margin:30px 0;
	color: #706f6f;
}

/* bookBox */
#bookBox .wall { position: relative; overflow: hidden; display: block; }
#bookBox .wall-column { position: relative; float: left; width: 50%; display: block; box-sizing: border-box; }
#bookBox .wall-column .article { position: relative; margin: 15px; }
#bookBox .wall-column .album_box { box-shadow: 0 0 10px #c0c0c0; }
#bookBox .wall-column .article a { display: block; }
#bookBox .wall-column .article h3 { position: absolute; width: 100%; bottom: 0; left: 0; }
#bookBox .wall-column .article h3 a { margin: 10px; padding: 10px; background: rgba(255, 255, 255, .7); text-align: center; font-size: 18px; color: #444; }

/* album-info */
#bookBox .wall-column { width: calc(100% / 3); }
#bookBox .wall-column .album_box img { width: 100%; }


@media screen and (max-width: 1280px) {
	#bookBox .wall-column { width: 50%; }
}
@media screen and (max-width: 768px) {
	#album .bookList >div,
	#album .bookList >div:nth-child(3n){
		width:49%;
		margin-right:2%;
	}
	#album .bookList >div:nth-child(2n){
		margin-right:0;
	}
}
@media screen and (max-width: 640px) {
	#bookBox .wall-column { width: 100%; }
}
@media screen and (max-width: 480px) {
	#album .bookList >div,
	#album .bookList >div:nth-child(3n),
	#album .bookList >div:nth-child(2n){
		width:100%;
		margin-right:0;
	}
}