#head_menu{
	width:100%;
	display:flex;
	flex-direction:row;
	-webkit-box-shadow: 0px 4px 10px #333333;
	box-shadow: 0px 4px 10px #333333;
	font-family: 'Roboto';
	position: absolute;
}
#head_menu.hide{
	display:none;
}
#head_menu a{
	text-decoration:none
}
#head_menu .left_hm{
	display:flex;
	flex-direction:column;
	width: calc(((100% - 1280px) / 2) + 275px);
	background:#f9f9f9;
	align-items: end;
}
#head_menu .left_hm>div{
	width:100%;
	calc(100% - 260px)
}
#head_menu .left_hm>div>a{
	width:100%;
	display:block;
	color: #000;
	font-size: 18px;
	padding-left: calc(100% - 260px);
	padding-top:10px;
	padding-bottom:10px;
}

#head_menu .left_hm>div.active{
	background:#fff;
}
#head_menu .left_hm>div.active>a{
	border-right: 3px solid #f2640e;
	color: #f2640e;
}
#head_menu .left_hm>div>a>i{
	display:none;
}
#head_menu .left_hm .child_menu{
	display: none;
}
#head_menu .left_hm .child_menu.show_cm{
	display: flex;
	flex-direction: column;
}

#head_menu .left_hm .child_menu>a{
	color: #706b6b;
	font-size: 16px;
	padding-left: 30px;
}
#head_menu .left_hm .child_menu>a>i{
	color: #f2640e;
	margin-right: 10px;
}
#head_menu .right_hm{
	background:#fff;
	flex-grow: 1;
	display:flex;
}

#head_menu .right_hm>div{
	/*background:red;*/
	width:100%;
	margin-right: calc((100vw - 1280px) / 2);
	display:flex;
	flex-wrap: wrap;
}
#head_menu .right_hm>div .left_sm{
	flex-grow: 1;
	display:flex;
	flex-direction:column;
}
#head_menu .right_hm>div .left_sm>div{
	display:none;
}
#head_menu .right_hm>div .left_sm>div.show_submenu{
	display: flex;
	flex-direction: column;
}
#head_menu .right_hm>div .left_sm>div>p{
	color: #000;
	font-size: 18px;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 5px;
	font-weight: 600;
}
#head_menu .right_hm>div .left_sm>div>a{
	display:block;
	color: #000;
	font-size: 18px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#head_menu .right_hm>div .left_sm>div>a:hover{
	background: #dbdada;
}
#head_menu .right_hm>div .left_sm>div>a>i{
	color:#f2640e;
}
#head_menu .right_hm>div .right_sm{
	width:350px;
}
#head_menu .right_hm>div .right_sm .title{
	font-size: 18px;
	font-weight: 600;
	padding-top: 10px;
}
#head_menu .right_hm>div .right_sm a{
	display: block;
	color: #fff;
	background: #f2640e;
	padding: 10px 25px;
	font-weight: 600;
	border-radius: 5px;
	margin: 0 auto;
	width: 125px;
	margin-top: 20px;
}


@media screen and (max-width: 1040px){
	#head_menu .right_hm>div .right_sm{
		display:none;
	}
}
@media screen and (max-width: 1280px)  and (min-width: 680px){
	#head_menu .left_hm{
		width: max-content;
	}
	#head_menu .left_hm>div>a{
		padding-left:30px;
		padding-rifht:30px;
	}
}

@media screen and (max-width: 679.99px){
	#head_menu .left_hm{
		width:100%;
	}
	#head_menu .left_hm>div>a{
		padding-left:30px;
		display: flex;
		justify-content: space-between;
	}
	#head_menu .left_hm>div>a>i{
		color: #f2640e;
		margin-right: 10px;
		display: inline-block;
	}
	#head_menu .right_hm{
		display:none;
	}
}