*,
*:before,
*:after{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*{
	margin: 0;
	padding: 0;
}

body{
	background-color: #e7f1f5;
	font-family: 'PT Sans', sans-serif;
}

main{
	float: left;
	width: 100%;
	margin-top: 50px;
}

.title{
	font-size: 30px;
	text-align: center;
	margin-top: 30px;
}

.all-records{
	font-size: 15px;
	line-height: 25px;
	color: #999;
	text-align: center;
}

section{
	max-width: 1200px;
	margin: auto;
}

article{
	float: left;
	width: 25%;
	padding: 10px;
}

.inner{
	width: 100%;
	border: 0;
	position: relative;
	background: #fff;
	height: 120px;
	padding: 15px 15px 40px 15px;

	-webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.15);
}

.article__title{
	font-size: 18px;
}

.article__date{
	font-size: 13px;
	color: #999;
	position: absolute;
	bottom: 15px;
	right: 15px;
}

.empty-page{
	font-size: 15px;
	text-align: center;
}

.btn-more{
	text-align: center;
	color: blue;
	font-size: 15px;
	line-height: 90px;
	cursor: pointer;
}

.btn-more:hover{
	opacity: .85;
}