/* 文章列表 */
#article-lists {
	padding: 0 20px;
}
/* left */
#article-lists .search {
	width: 700px;
	display: flex;
	margin: 30px 0;
}
#article-lists .search input {
	height: 40px;
	width: 500px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	text-indent: 10px;
	font-size: 14px;
}
#article-lists .search input:focus {
	border: 1px solid #77B633;
}
#article-lists .search label {
	width: 200px;
	height: 40px;
	font-size: 24px;
}
#article-lists .ar-h1 {
	width: 700px;
	height: 40px;
	display: flex;
	align-items: center;
	font-size: 16px;
	margin-bottom: 20px;
}
#article-lists .ar-h1::before{
	content: '';
	border: 2px solid #77B633;
	width: 4px;
	height: 8px;
	margin-right: 10px;
}
#article-lists .ar-h1::after{
	content: '';
	border-bottom: 1px dashed #ccc;
	margin-left: 10px;
	flex: 1;
}
#article-lists .lists {
	width: 700px;
}
#article-lists .lists .item {
	border-bottom: 1px dashed #77B633;
	padding: 15px 0 5px 0;
	display: flex;
}
#article-lists .lists .item img {
	width: 160px;
	height: 80px;
	border: 1px solid #ccc;
	padding: 2px;
	box-sizing: border-box;
}
#article-lists .lists .item p {
	flex: 1;
}
#article-lists .lists .item p a {
	width: 500px;
	display: block;
	height: 30px;
	margin: 10px 0 10px 10px;
	line-height: 30px;
	font-size: 14px;
	padding: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#article-lists .lists .item p span {
	display: block;
	text-align: right;
	height: 24px;
	margin: 0 10px;
}
#article-lists .lists .lists-default {
	height: 300px;
	font-size: 30px;
	line-height: 300px;
	text-align: center;
	color: #aaa;
}
/* left */
/* right */
#article-lists .write-article {
	width: 300px;
	height: 40px;
	box-sizing: border-box;
	font-size: 24px;
	margin: 30px 0;
}
/* right */
/* 发布文章 */