.main-container {
	margin-top: 105px;
	margin-bottom: 30px;
}

.topBanner {
	width: 100%;
	margin-bottom: 15px;
}

.help-title {
	color: #383838;
	font-weight: bold;
	font-size: 26px;
	margin-bottom: 30px;
}

.help-left-ul {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 20%;
	vertical-align: top;
	background-color: #FFFFFF;
}

.help-left-ul>li {
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #252525;
	font-size: 16px;
	cursor: pointer;
	position: relative;
}

.help-left-ul>li.active {
	background-color: #f8f8f8;
	border-radius: 4px;
	color: #FFFFFF;
}

.help-left-ul>li.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
	height: 100%;
	background-color: #3773f3;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.help-left-ul>li:hover {
	background-color: #f8f8f8;
}

.help-right-box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 78%;
	vertical-align: top;
	-webkit-border-radius: 0.25rem;
	-moz-border-radius: 0.25rem;
	-ms-border-radius: 0.25rem;
	-o-border-radius: 0.25rem;
	border-radius: 0px;
	background-color: #fff;
	min-height: 20rem;
	margin-left: 10px;
	
}

.help-right-ul {
	background-color: #f8f8f8;
	border-radius: 4px;
	padding: 5px 27px;
	min-height: 480px;
}

.help-right-ul>li {
	height: 55px;
	display: flex;
	align-items: center;
	color: #333333;
	font-size: 16px;
	border-bottom: 1px solid #ededed;
	cursor: pointer;
}

.help-right-ul>li::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 21px;
	background: url(../images/help/question_icon.png) no-repeat center;
	background-size: contain;
	margin-right: 13px;
}

.help-right-ul>li>a {
	display: inline-block;
	vertical-align: middle;
}

.help-right-ul>li>a:hover {
	color: #3773f3;
}

.help-noData {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}

.help-noData>div>div {
	text-align: center;
	margin-top: 10px;
	font-size: 16px;
	color: #333333;
}

@media screen and (max-width: 641px) {
	.help-left-ul {
		width: 100%;
		margin-bottom: 5%;
	}
	
	.help-left-ul>li {
		justify-content: flex-start;
		padding-left: 30px;
	}
	
	.help-right-box {
		width: 100%;
		margin-left: 0;
	}
}