/* clearfix */
.clearfix {
	clear:both;
}
/* wrapper css */
#wrapper{
    margin-bottom: 20px;
	width:100%;
}
#wrapper hgroup{
	text-align:center;
}

#container{
	position:relative;
	margin:0 auto 25px;
	padding-bottom: 10px;
	
}
.grid{
	width:188px;
    min-height: 200px;
    padding: 8px;
    background: #fff;
    margin: 8px 6px;
    font-size: 12px;
    /* border-radius: 6px; */
	float:left;
	box-shadow: 0 1px 3px rgba(34,25,25,0.4);
	-moz-box-shadow: 0 1px 3px rgba(34,25,25,0.4);
	-webkit-box-shadow: 0 1px 3px rgba(34,25,25,0.4);
	-webkit-transition: top 1s ease, left 1s ease;
	-moz-transition: top 1s ease, left 1s ease;
	-o-transition: top 1s ease, left 1s ease;
	-ms-transition: top 1s ease, left 1s ease;
}

.grid strong {
	border-bottom:1px solid #ccc;
	margin:10px 0;
	display:block;
	padding:0 0 5px;
	font-size:17px;
}
.grid .meta{
	text-align:right;
	color:#777;
	font-style:italic;
}
.grid .imgholder img{
	max-width:100%; 
	display:block;
	background:url(../images/loding.gif) no-repeat center;
    cursor: pointer;
}
.grid .imgholder img:hover{
	box-shadow: 0px 0px 6px #000;
	transition: all 0.5s;
}

@media screen and (max-width : 1240px) {
	body{
		overflow:auto;
	}
}
@media screen and (max-width : 900px) {
	#wrapper{
		margin-top:90px;
	}
}

/**加载更多 add by liyanqiu**/
.load_more{
    padding: 15px;
    font-size: 20px; 
    text-align: center;
    cursor: pointer;
    color: #ffff;
    background: rgba(186, 49, 132, 0.4);
    margin-top: 80px;
    border-radius: 10px;
	transition: all 1s;
	letter-spacing: 3px;
}
.load_more:hover{
    background: rgba(200, 200, 200, 0.4);
	/* color: rgba(186, 49, 132); */
}