/* 右侧悬浮菜单 right_menu（原 index.htm 内联 <style>，已抽离） */
.f-ewmBox {
	display: flex;
}

.marginLeft {
	margin-left: 20px;
}

.right_menu {
	position: fixed;
	right: 0;
	top: 30vh;
	background: #FFFFFF;
	box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
	z-index: 998;
}

.rm_item {
	height: 80px;
	width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.rm_item+.rm_item {
	border-top: 1px solid #F5F5F5;
}

.rm_item .titt {
	font-size: 12px;
	color: #333333;
}

.rm_phone {
	position: absolute;
	top: -1px;
	right: 100%;
	width: 200px;
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #1166DD;
	font-weight: bold;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	margin-right: -10px;
}

.rm_img {
	position: absolute;
	top: -1px;
	right: 100%;
	width: 200px;
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #1166DD;
	font-weight: bold;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	margin-right: -10px;
}

.rm_img img {
	width: 100%;
}

.rm_item:hover .rm_phone {
	opacity: 1;
	visibility: visible;
	margin-right: 5px;
}

.rm_item:hover .rm_img {
	opacity: 1;
	visibility: visible;
	margin-right: 5px;
}

@media screen and (max-width:768px) {
	.right_menu {
		display: none;
	}
}

@media screen and (max-width:768px) {
	.marginLeft {
		margin-left: 0px;
	}
}
