@charset "utf-8";
/* CSS Document */
.article{
	bottom:30px;
}
.innerContent{
	opacity:0;
	
	-webkit-transition:opacity 1s linear 1s;
	-moz-transition:opacity 1s linear 1s;
	-ms-transition:opacity 1s linear 1s;
	-o-transition:opacity 1s linear 1s;
	transition:opacity 1s linear 1s;
}
.showNow .innerContent{
	opacity:1;
}
.innerContent::before, .innerContent::after{
	content:'';
	display:block;
	margin:10px auto;
	height:30px;
	width:1px;
	background:#FFF;
	opacity:0.3;
}
.innerContent::after{
	margin:10px auto 0 auto;
}

.list{
	overflow:hidden;
	margin:20px auto;
	max-width:950px;
}
.listItem{
	float:left;
	position:relative;
	margin:5px;
	width:180px;
	overflow:hidden;	
}
.listItem::after{
	content:'';
	display:block;
	width:100%;
	height:2px;
	margin:10px 0 0;
	background:#b5975b;
	position:relative;
}
.listItem img{
	width:100%;
}
.name{
	position:absolute;
	top:100%;
	width:100%;
	height:100%;
	padding:10px;
	box-sizing:border-box;
	background:rgba(33,33,33,0.9);
	opacity:0;
	
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	-ms-transition:all 0.3s ease-out;
	-o-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}
.listItem:hover .name{
	top:0;
	opacity:1;
}
.year{
	font-size:1.3em;
	line-height:1em;
	letter-spacing:0;
	color:#b5975b;
}
.pressName{
	position:absolute;
	top:50%;
	left:10px;
	right:10px;
	text-align:center;
	font-size:0.9em;
	
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.con{
	position:absolute;
	right:10px;
	left:10px;
	bottom:10px;
	text-align:right;
	font-size:0.75em;
	color:#ccc;
}
.pressClass{
	position:absolute;
	right:10px;
	bottom:0px;
	color:#FFF;
	font-size:1.5em;
	opacity:0.1;
}

@media screen and (max-width:990px){
.list{
	max-width:760px;
}
}
@media screen and (max-width:800px){
.list{
	max-width:570px;
}
}
@media screen and (max-width:610px){
.list{
	max-width:380px;
}
.listItem{
	font-size:0.8em;
}
}
@media screen and (max-width:420px){
.list{
	max-width:none;
	margin:0 -5px;
}
.listItem{
	width:50%;
	height:auto;
	margin:0;
	box-sizing:border-box;
	border:solid 5px transparent;
}
.pressClass{
	font-size:1em;
}
.con{
	display:none;
}
}
@media screen and (max-width:640px), screen and (max-height:400px){
.innerContent::before, .innerContent::after{
	height:15px;
}	
}