﻿.mh-menu{
	
	width: 800px;
	position:  absolute;
	left:40%;
top:50%;
	margin: -10% -400px  ;
	
}
.mh-menu li{
	width: 400px;
}
.mh-menu li a{
	display: block;
	width: 380px;
	padding: 0px 10px;
	text-align: right;
	position: relative;
	z-index: 10;
	background: #fff;
	height: 97px;
	border-right: 1px solid #ddd;
	background:transparent;
}
.mh-menu li:nth-child(1):hover a{
	background-color: rgba(71,163,218, 0.9);
}
.mh-menu li:nth-child(2):hover a{
	background-color: rgba(95, 160, 37, 0.9)
}
.mh-menu li:nth-child(3):hover a{
	background-color:#CCC;
}
.mh-menu li:nth-child(4):hover a{
		background-color: rgba(71,163,218, 0.9);
}
.mh-menu li a span{
	display:block;
}
.mh-menu li a span:first-child{
	font-weight: 700;
	font-size: 20px;
	color: #ddd;
	padding-top: 10px;
	
}
.mh-menu li a span:nth-child(2){
	font-weight: 400;
	font-style: italic;
	font-size: 28px;
	
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	-ms-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.mh-menu li a span:nth-child(3){
	font-weight: 400;

	font-size: 14px;
	color:#47a3da;
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	-ms-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.mh-menu li:hover span:nth-child(2){
	color: #fff;
}

.mh-menu li:hover span:nth-child(3){
	color: #eee;
}

.mh-menu li img{
	position: absolute;
	margin-left:120px;
	z-index: 1;
	left: 0px;
	top: 0px;
	opacity: 0;
	-webkit-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-moz-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-o-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	-ms-transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
	transition: left 0.4s ease-in-out, opacity 0.6s ease-in-out;
}
.mh-menu li:hover img{
	left: 300px;
	opacity: 1;
}