.menus_block{
	width: 100%;
	height: 42px;
	line-height: 42px;
	margin-top: 0.5rem;
	box-shadow: 0 8px 8px 0 #808080;
	border: 1px solid #0A58CA;
	background-color: #E7E7E7;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
}
.menus_block i{
	margin-right: 0.5rem;
}
.menus_block_but{
	padding: 0rem 1rem;
	height: 28px;
	line-height: 28px;
	color: #5A5C5E;
	cursor: pointer;		/*	手形鼠标	*/
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	display: block;
	transition: all 0.2s;	/* 设置上浮过渡时间 */
}
.menus_block_but:hover{
	color: #ffffff;
	border-radius: 13px;
	border: 1px solid #6e6e6e;
	background-color: #f56e17;
	transform: translate(0, 0px) scale(1.1);
}
.but_ok{
	color: #ffffff;
	border-radius: 13px;
	border: 1px solid #6e6e6e;
	background-color: #f56e17;
}

.menus_block_duo{
	margin-right: 7rem;
	padding: 0rem 1rem;
	height: 28px;
	line-height: 28px;
	color: #5A5C5E;
	cursor: pointer;		/*	手形鼠标	*/
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s;	/* 设置上浮过渡时间 */
	display: none;
	flex-direction: column;
}
.menus_block_duo:hover{
	color: #ffffff;
	border-radius: 13px;
	border: 1px solid #6e6e6e;
	background-color: #f56e17;
}
.menus_block_duo:hover .menus_block_duo_menus{
	display: block;
}
.menus_block_duo_menus{
	position: relative;
	display: none;
}
.menus_block_duo_buts{
	position: absolute;
	z-index: 10000;
	min-width: 12rem;
	box-shadow: 0 8px 8px 0 #808080;
	border: 1px solid #0A58CA;
	background-color: #E7E7E7;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
}
.menus_block_duo_but{
	margin: 0.5rem 0px;
	text-align: left;
	white-space: nowrap;
	padding-left: 1rem;
	line-height: 26px;
	display: block;
	color: #5d5d5d;
	transition: all 0.2s;	/* 设置上浮过渡时间 */
}
.menus_block_duo_but:hover{
	color: #f56e17;
	transform: translate(0, 0px) scale(1.2);
}