.article-layout {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}

.list-title {
	background: linear-gradient(to right, #9955fc, #fff);
	padding: 10px 0 10px 20px;
	margin-bottom: 20px;
	margin-top: 6px;
}

.list-title h1 {
	margin: 0;
	text-align: left;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.article-content-area {
	width: 860px;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #6d3dd9;
}

.list {
	margin: 25px auto;
}

.list .item {
	padding: 25px 0;
	border-bottom: 1px solid #eee;
}

.list .item:first-child {
	padding: 0 0 25px 0;
}

.list .item h3 {
	font-size: 21px;
	font-weight: bold;
	margin: 0 0 10px;
	line-height: 1.5;
	color: #111;
}

.list .item p {
	font-size: 16px;
	color: #888;
	line-height: 1.9;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.list .item .item-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 12px;
}

.list .item .item-info .item-c {
	font-size: 16px;
	color: #bfbfbf;
	display: flex;
	align-items: center;
}

.list .item .item-info .item-c:hover {
	color: #6d3dd9;
}

.list .item .item-info .item-c .item-c-icon {
    width: 16px;
    height: 16px;
    background-image: url(/xgdn/img/item-c-icon.png);
    background-size: 16px;
    background-repeat: no-repeat;
    margin-right: 4px;
}

.list .item .item-info .item-r {
	font-size: 15px;
	color: #bfbfbf;
	border: 1px solid #bfbfbf;
	padding: 6px 12px;
	border-radius: 4px;
	text-decoration: none;
	transition: 0.2s;
}

.list .item .item-info .item-r:hover {
	background-color: #e6eff7;
	color: #6d3dd9;
	border: 1px solid #6d3dd9;
}

.pagination {
	display: flex;
	justify-content: center;
	padding: 0;
}

.pagination a,.pagination span {
	border: 1px solid #444;
	border-radius: 4px;
	color: #444;
	display: block;
	font-family: geomanistmedium,sans-serif;
	font-size: 14px;
	margin: 15px 4px;
	padding: 7px 13px;
}

.pagination a.active,.pagination span.active,.pagination a:hover,.pagination span:hover {
	color: #fff !important;
	border: 1px solid #a060ff;
	background-color: #a060ff;
}

.pagination span.nonep {
	border: 1px solid #ccc;
	color: #ccc!important;
}