body{
	min-height: 800px;
}
.header{
	width: 100%;
	height: 80px;
	background-color: #fff;
	border-bottom: 2px solid #76b900;
}
.header .container{
	width: 1200px;
	margin: 0 auto;
	height: 100%;
}
.header .logo{
	float: left;
	height: 100%;
}
.header .logo a{
	display: flex;
	height: 100%;
	align-items: center;
}
.header .logo a img{
/*	height: 65%;*/
	height: 35%;
	width: auto;
}
.header .menu{
	float: right;
	color: #333;
	height: 100%;
}
.header .menu > ul{
	height: 100%;
	display: flex;
	align-items: center;
}
.header .menu > ul > li{
	float: left;
	font-size: 18px;
	position: relative;
}
.header .menu a{
	color: inherit;
}
.header .menu > ul > li > a{
	padding: 15px 20px;
	position: relative;
	display: block;
}
.header .menu > ul > li > a::before{
    position: absolute;
    content: "";
    margin: 0 auto;
    width: 0;
    height: 2px;
    transition: all .3s ease;
    right: 0;
    left: 0;
    bottom: 0;
    pointer-events: none;
    background-color: rgb(118, 185, 0);
}
.header .menu > ul > li:hover > a{
	color: #76b900;
}
.header .menu > ul > li:hover > a::before{
	width: 100%;
}
.header .menu > ul > li.menu-item-has-children > a::after{
	display: inline;
	margin-left: 6px;
	font-family: "iconfont";
	content: "\eb04";
	font-style: normal; 
    font-weight: 900; 
    text-decoration: inherit; 
}
.header .menu > ul > li.menu-item-has-children .sub-menu{
	position: absolute;
    z-index: 10;
    width: 250px;
    top: 48px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease,visibility 0.2s ease,transform 0.2s ease;
    padding: 0;
    display: block;
    box-shadow: 0px 10px 20px rgba(41, 51, 61, 0.1);
    border-radius: 2px;
    background-color: #fff;
    transform: translate3d(0,10px,0);
    padding-bottom: 10px;
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li{
	padding: 0 20px;
	position: relative;
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li > a{
	display: block;
	height: 58px;
	line-height: 58px;
}
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li{
	border-bottom: 1px dashed rgb(224,233,236);
	transition: border 0.2s ease;
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li:hover{
	border-bottom: 1px solid rgb(118, 185, 0);
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li:hover a{
	color: #76b900;
}