body {
	background: #fff;
}

.banner {
	height: 98px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.banner .container {
	position: relative;
}
@media (min-width: 992px) {
	.banner {
		height: 500px;
	}

	.banner-colName {
		position: absolute;
		top: 0;
		left: 0;
		width: 300px;
		height: 300px;
		background: #b00328;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.banner-colName h2 {
		color: #ffffff;
		font-size: 36px;
		position: relative;
	}

	.banner-colName h2::after {
		bottom: -25px;
		width: 58px;
		left: calc(50% - 36px);
	}
}

.page-main {
	background-color: #FFFFFF;
	box-sizing: border-box;
	padding: 10px;
	margin-top: 20px;
}

@media (min-width: 992px) {
	.page-main {
		padding: 32px 0 72px 0;
		min-height: 60vh;
	}
}

.left-columnHeader {
	background-color: #B00328;
	padding: 20px 0;
	color: #FFFFFF;
	text-align: center;
}

.left-columnHeader h2 {
	margin-bottom: 0;
}

.left-columnBody {
	background-color: #fff;
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.left-columnHeader {
		padding: 20px 0;
	}

	.left-columnBody {
		margin: 0 20px;
		margin-bottom: 0;
		flex-direction: column;
		border: 1px solid #DFDFDF;
	}
}

.left-columnBody-item {
    background-color: #FFFFFF;
    padding: 10px 10px;
    display: inline-block;
    flex: 1;
    border: 1px solid #cccccc;
    margin-right: 6px;
}

.left-columnBody-item:last-child {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.left-columnBody-item {
		font-size: 18px;
 		display: block;
 		margin-right: 0;
 		border: none;
	}
}

.left-columnBody-item.active {
	background-color: #0067C1;
	font-weight: 400;
	font-size: 24px;
	color: #fff;
}

.left-columnBody-item h3 {
	color: #333333;
	text-align: center;
	margin-bottom: 0;
	font-size: 14px;
}

.left-columnBody-item.active:hover h3 {
	color: #FFFFFF;
}

.left-columnBody-item.active:hover {
	background: #0067C1;
}

@media (min-width: 992px) {
	.left-columnBody-item {
		padding: 20px 0;
	}
	.left-columnBody-item h3{
		font-size: 18px;
	}
	.left-columnBody .active h3{
		font-size: 24px;
	}
}

.left-columnBody-item.active h3 {
	color: #FFFFFF;
}

.left-columnBody-item:hover h3 {
	color: #0067C1;
}

.left-columnBody-item:hover {
	background: #efefef;
}

.left-columnFooter {}

.left-columnFooter img {
	width: 100%;
}

.right-columnTitle {
	padding-bottom: 20px;
	border-bottom: 1px solid #0067c1;
	position: relative;
}

.right-columnTitle h2 {
	font-weight: 700;
	font-size: 20px;
	color: #0067C1;
	position: relative;
}

.right-columnTitle:before {
	position: absolute;
	content: '';
	width: 74px;
	height: 6px;
	background: #0067c1;
	bottom: -3px;
	left: 0;
}

/*文章列表*/
.article-list {}

.article-item {
	padding: 16px 0;
	border-bottom: 1px solid #DEDEDE;
}

.article-item:first-child {
	border-top: 1px solid #DEDEDE;
}

.article-item a {
	display: flex;
	align-items: center;
}

.article-item a img {
	margin-right: 16px;
}

.article-item-title {
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
	color: #333;
}

.right-columnTitle p {
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #666;
}

.article-item-title:hover {
	color: #0067C1;
	font-weight: 700;
}

.article-item-info {
	font-size: 14px;
	text-align: right;
	color: #333;
}

@media (min-width: 992px) {
	.right-columnTitle {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

	.right-columnTitle p {
		font-weight: 400;
		font-size: 14px;
		line-height: 18px;
		color: #666;
	}

	.article-item-info {
		font-size: 20px;
		text-align: left;
	}

	.article-item {
		padding: 27px 0 28px 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.article-item a h5 {
		font-weight: 400;
		font-size: 16px;
		line-height: 24px;
		color: #333;
	}

	.article-item-info {
		font-weight: 400;
		font-size: 16px;
		line-height: 24px;
		color: #999;
	}
}