.help_body {
	flex: 1;
	display: flex;
	min-height: 50vh;
}
.help_nav {
	flex: 0 0 1.8rem;
	background: #f8f8f8;
	border-right: 1px solid #e9e9e9;
	max-height: 12rem;
	overflow-y: auto;
}
.help-content {
	flex: 1;
	/*padding-bottom: 1rem;*/
	max-height: 12rem;
	overflow-y: auto;
}

.help_nav::-webkit-scrollbar, .help-content::-webkit-scrollbar {	/*隐藏滚动条*/
	display:none
}

/*左侧筛选懒*/
.help_nav ul {
	list-style: none;
}
.help_nav ul li {
	position: relative;
	height: 1rem;
	line-height: 1rem;
	font-size: .24rem;
	color: #666666;
	padding-left: .3rem;
}
.help_nav ul li.active {
	background: #ffffff;
	color: #36bb81;
}
.help_nav ul li.active:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: #36bb81;
}


/*右侧列表*/
.help-content ul {
	list-style: none;
}
.help-content ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*min-height: 1rem;*/
	padding: .28rem .3rem;
	border-bottom: 1px solid #e9e9e9;

}
.help-content ul li p {
	margin-right: .4rem;
	line-height: .44rem;
	font-size: .28rem;
	color: #333333;
}
.noContent {
	text-align: center;
	font-size: .3rem;
	color: #999999;
	margin-top: 2rem;
}


/*案例 查看大图*/
.modalBox {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.modal_bg {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, .8);
	z-index: 19;
}
.modal_content {
	width: 90%;
	top: 50%;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 20;
}
.modal_content img {
	width: 100%;
}


/*================ 帮助详情 ====================*/
.help_details_content {
	min-height: 6.3rem;
	padding: 0 .3rem;
}
.help_title {
	font-size: .46rem;
	color: #000000;
	line-height: .66rem;
	margin: .5rem 0;
}
.help_details_content pre {
	background: #ffffff;
	border: none;
	margin: 0;
}