.titlePlate{
	margin-top: 21px;
	height: 42px;
	background: #f4f4f4;
	padding: 0 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.titlePlate .titlePlate_left{
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	color: #222222;
}

.titlePlate .titlePlate_right{
	padding: 0 9px;
	height: 28px;
	background: #ffffff;
	border: 0.5px solid #727272;
	border-radius: 2px;
	display: flex;
	align-items: center;
}

.titlePlate .titlePlate_right_text{
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	color: #222222;
	cursor: pointer;
}

.titlePlate .titlePlate_right_text:hover{
	color: #548235;
}

.titlePlate .disabled{
	color: #909090;
	cursor: auto;
}

.titlePlate .disabled:hover{
	color: #909090;
}

.titlePlate .titlePlate_right_line{
	width: 1px;
	height: 12px;
	background: #727272;
	margin: 0 15px;
}

.cont{
	height: calc(100% - 47px - 21px - 42px);
	overflow: hidden;
	padding-top: 20px;
}

.cont .cont_scroll{
	height: 100%;
	overflow: auto;
}

.cont .menu-item-allContent-tab-list-item:first-child .menu-item-allContent-tab-list-item-head{
	padding-top: 0;
}

/* 移动端公共样式 */
@media screen and (max-width: 768px) {
	.titlePlate{
		flex-direction: column;
		height: auto;
		padding: 12px;
		align-items: flex-start;
	}
	.titlePlate .titlePlate_right{
		margin-left: auto;
		margin-top: 10px;
	}
	.cont{
		height: auto;
	}
}