/*文章*/
#article-list{
	margin-left: 20px;
	margin-top: 20px;
}

/*文章单元*/
.article-card{
	position: relative;
	width: 100%;
	margin: 0 auto 30px auto;
	padding: 10px 50px;
	padding-bottom: 50px;

	background: #eee;
	box-shadow: -5px -5px 5px #999;

	border-top: solid 1px #fff;
}

.article-card:hover{
	background: #fff;
	box-shadow: -10px -10px 10px #666;
}

.article-card-title{
	cursor: pointer;

	padding: 10px 0;
	border-bottom: 3px solid black;
	
	text-align: center;
	font-size: 24px;
}
.article-card-main{
	min-height: 100px;
	margin-top: 10px;
}
.article-card-picture{
	position: relative;
	
	min-height: 120px;
	width: 220px;
	overflow: hidden;
	/*background: url("/public/static/catt/img/img_bg.jpg") left top;*/
	float: left;
}
.article-card-picture img{
	height: 120px;
}
.article-card-introduce{
	position: absolute;

	left: 265px;
	right: 0px;
	padding: 0 20px;
}
.article-card-meta{
	position: absolute;
	background: #222;
	color: white;

	min-width: 400px;
	height: 35px;
	line-height: 35px;

	text-align: center;

	left: -20px;
	bottom: -10px;

	box-shadow: 0 0 5px #333;

	border-radius: 0 2px 2px 0;
	border-right: solid 1px #fff;
	border-top: solid 2px #999;

	border-bottom: solid 1px #fff;
}
.article-card-meta-author{
	display: inline-block;
}
.article-card-meta-time{
	display: inline-block;
	margin-left: 60px;
}

