.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_list{
	display: flex;
	margin-top: 8px;
}

.cont .cont_list:nth-child(2){
	margin-top: 20px;
}

.cont .cont_list_title{
	width: 92px;
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #222222;
}

.cont .cont_list_text{
	flex: 1;
	width: 0;
	display: flex;
	flex-wrap: wrap;
	margin-left: 6px;
}

.cont .cont_list_text_item{
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #727272;
	margin-right: 20px;
}

/* 移动端公共样式 */
@media screen and (max-width: 768px) {
	.cont{
		height: auto;
		display: block;
	}
	.cont .cont_scroll{
		height: auto;
		overflow: hidden;
	}
}