/*
 * iweb51-style11
 *
 * Copyright 2015, TANK
 * 
 * 
 * 2015 / 11 / 12
 */


 
 
/* +book list
*----------------------------------------------------------------------------*/
.wrapper section #album {
	overflow: hidden;
	margin-bottom: 20px;
}

.wrapper section #album .photoItem {
	overflow: hidden;
	margin: 10px;
	float: left;
	width: 46%;
}

.wrapper section #album .photoItem a.thumbnail {
	display: block;
	padding: 4px;
	margin-bottom: 20px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out
}

.wrapper section #album .photoItem a.thumbnail .holder {
	position: relative;
	height: 100%;
	width: 100%;
}

.wrapper section #album .photoItem a.thumbnail .holder .info {
	overflow: hidden;
	position: absolute;
	display: block;
	width: 100%;
	left: 0;
	bottom: 0;
	background: none repeat scroll 0 0 rgba(0,0,0,.4);
	z-index: 20;
}

.wrapper section #album .photoItem a.thumbnail .holder .info h4 {
	width: 100%;
	display: inline-block;
	margin: 10px;
	color: #fff;
	font-size: 15px;
	line-height: 17px;
	text-transform: uppercase;
}

.wrapper section #album .photoItem a.thumbnail .holder .info span {
	margin: 0 auto 5px;
	padding: 5px 0;
	width: 80%;
	background-color: #1C2E48;
	color: #fff;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	display: block;
	text-align: center;
}

.wrapper section #album .photoItem a.thumbnail .holder .img-grid {
	overflow: hidden;
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: auto 100%;
	transition: all 0.4s ease-in-out 0s;
}

.wrapper section #album .photoItem a.thumbnail .holder .img-grid:hover {
	background-size: auto 120%;
}

.wrapper section #album .photoItem a.thumbnail .holder .img-grid img {
	width: 100%;
}

.wrapper .container section .content-wrap .content-main #article #album .album_box {
	width: 290px;
	overflow: hidden;
}

.wrapper .container section .content-wrap .content-main #article #album .album_box .photo-wrap {
	margin: 10px;
	position: relative;
}

.wrapper .container section .content-wrap .content-main #article #album .album_box .photo-wrap h3 {
	margin: 10px 0;
	text-align: center;
	font-size: 18px;
}

.wrapper .container section .content-wrap .content-main #article #album .album_box .photo-wrap .photo-item {
	overflow: hidden;
	position: relative;
}

.wrapper .container section .content-wrap .content-main #article #album .album_box .photo-wrap .photo-item img {
	width: 100%;
	opacity: 1;
	transition: all 0.4s ease-in-out 0s;
}

.wrapper .container section .content-wrap .content-main #article #album .album_box .photo-wrap .photo-item:hover img {
	opacity: 0.4;
	-webkit-transform:scale(1.05);
	-moz-transform:scale(1.05);
	-o-transform:scale(1.05);
	transform:scale(1.05);
}

.wrapper .container section .content-wrap .content-main #article #album .album_box .photo-wrap .photo-item .photo-group {
	width: 100%;
	height: 500px;
	position: absolute;
	top: 0;
}

.wrapper .container section .content-wrap .content-main #article #album .album_box .photo-wrap .photo-item .photo-group a {
	display: block;
	text-indent: -999999px;
}


/* +photo article
*----------------------------------------------------------------------------*/
.wrapper .container .content-wrap .content-main section #album-article {
	margin: 0 20px 20px;
	overflow: hidden;
	line-height: 170%;
	font-size: 16px;
}


/**********適應性**********/
/************************/
@media only screen and (min-width : 320px) {
	.wrapper section #album .photoItem {
		width: 95%;
	}
}

@media only screen and (min-width : 640px) {
	.wrapper section #album .photoItem {
		width: 46%;
	}	
}

@media only screen and (min-width : 768px) {
}