.cont{
	height: calc(100% - 47px);
	display: flex;
	flex-direction: column;
}

.cont .cont_head{
	margin-top: 26px;
	width: 100%;
	text-align: center;
	padding-bottom: 15px;
	border-bottom: 1px dashed #ced2d4;
	font-size: 20px;
	font-weight: bold;
	color: #222222;
}

.cont .cont_scroll{
	flex: 1;
	height: 0;
	overflow: auto;
	margin-bottom: 28px;
}

.cont .cont_scroll_text{
	margin-top: 21px;
}

.cont .cont_article{
	margin-top: 19px;
}

.cont .cont_article_title{
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	color: #222222;
}

.cont .cont_article_line{
	width: 100%;
	margin-top: 15px;
	height: 1px;
	background-color: #CED2D4;
}

.cont .cont_article_item{
	margin-top: 16px;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #222222;
	cursor: pointer;
	height: 20px;
	line-height: 20px;
}

.cont .cont_article_item:hover{
	color: #548235;
}

.cont .cont_btn{
	height: 89px;
	background: #f4f4f4;
	display: flex;
	justify-content: center;
	padding: 0 12px;
	flex-direction: column;
	margin-bottom: 28px;
}

.cont .cont_btn_item{
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #222222;
	cursor: pointer;
	margin-top: 16px;
}

.cont .cont_btn_item:first-child{
	margin-top: 0;
}

.cont .cont_btn_item:hover{
	color: #548235;
}

.cont .disabled{
	cursor: auto;
}

.cont .disabled:hover{
	color: #222222;
}

/* 移动端公共样式 */
@media screen and (max-width: 768px) {
	.cont{
		height: auto;
		display: block;
	}
	.cont .cont_scroll{
		height: auto;
	}
}