/* Banner Css */
.banner-container {
	height: 500px;
	min-width: 1080px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background: rgb(154, 67, 64) url("../jpg/bg_banner@2x.png") no-repeat top;
	background-size: cover;
}
.banner-img > ul > li > img {
	width: 1080px;
	height: auto;
}

/* Article Css */
.article-container {
	min-width: 1080px;
	height: 700px;
	width: 100%;
	background: rgb(246, 246, 246);
	position: relative;
}
.article-body {
	height: 700px;
	width: 1080px;
	background: #FFFFFF;
	/* margin-top: -80px; */
	position: absolute;
	z-index: 1;
	top: -80px;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.article-nav {
	box-sizing: border-box;
	width: 220px;
	height: 100%;
	border-right: 1px solid rgb(230, 230, 230);
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	position: relative;
}
.article-nav > a {
	width: 100%;
	height: 140px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.article-nav > a:link,
.article-nav > a:visited,
.article-nav > a:hover,
.article-nav > a:active {
	text-decoration: none;
	color: #000000;
}
.article-nav > a:after {
	content: "";
	height: 0px;
	width: 4px;
	background: #CF0000;
	display: block;
	position: absolute;
	right: 0;
	opacity: 0;
	transition: all .2s;
}
.article-nav > a:hover:after {
	height: 48px;
	opacity: 1;
}
.article-nav > a > span {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.article-nav > a > span > p {
	width: 100%;
	text-align: center;
}
.article-nav > a > span > img {
	height: 70px;
	width: 70px;
}
.article-word {
	height: 100%;
	width: 900px;
	padding: 50px 100px;
	box-sizing: border-box;
	overflow: auto;
}
.article-word > p {
	/* margin: 50px 100px; */
	/* font-family: PingFangSC-Regular; */
	font-size: 14px;
	color: #1B1B1B;
	letter-spacing: 0;
	line-height: 22px;
}
.article-word > p > img {
	height: auto;
	width: 100%;
	margin: 38px 0px;
}
.article-word > .honor {
	width: 100%;
	height: auto;
}
