/* 导航css */
#nav-box {

}
/* 顶部 */
.nav-top {
	width:100%;
	height:36px;
	line-height: 36px;
	background: #ddd;
}
.nav-top .wrap-container {
	height:36px;	
}
.nav-top .wrap-container ol li {
	float: left;
	font-size:12px;
	font-family:'EB Garamond', 'Noto Serif SC', serif;
	font-weight:400;
	color:rgba(164,164,164,1);
	/* line-height:24px; */
	cursor: pointer;
	margin-left: 38px;
}	
.nav-top .wrap-container ol li a{
	color:rgba(164,164,164,1);
}
.nav-top .wrap-container ol li:hover {
	color:#259A20;
}
.nav-top .wrap-container ol li a:hover {
	color:#259A20;
}
/* nav-bottom */
.nav-bottom {
	/* padding-top: 13px; */
}
.nav-bottom .nav-logo {
	height: 100px;
}
.search-box {
	height:40px;
	margin-top: 4px;
}
.search-box .left {
	width:214px;
	height:40px;
	background:rgba(255,255,255,1);
	border:1px solid rgba(238,238,238,1);
	position: relative;
}
.search-box .left .icon {
	width: 20px;
	height: 20px;
	position: absolute;
	left: 20px;
	top: 10px;
}
.search-box .left input {
	margin-left: 44px;
	line-height: 40px;
}
.search-box .btn {
	width:64px;
	height:42px;
	background:rgba(37,154,32,1);
	font-size:18px;
	font-family:'EB Garamond', 'Noto Serif SC', serif;
	font-weight:400;
	color:rgba(255,255,255,1);
	line-height:42px;
	text-align: center;
	cursor: pointer;
}
/* menu-box */
.menu-box {
	margin-top: 8px;
	height: 59px;
	display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
}
.menu-box li {
	min-width: 60px;
	float: left;
	font-size:18px;
	font-family:'EB Garamond', 'Noto Serif SC', serif;
	font-weight:400;
	color:rgba(51,51,51,1);
	/* line-height:24px; */
	padding: 16px 9px 20px 9px;
	cursor: pointer;
	margin-right: 40px;
	position: relative;
	box-sizing: border-box;
}
.menu-box li.last{
	margin-right: 0;
}
.menu-box li.active{
	color: #259A20;
	font-weight: bold;
	border-bottom: 3px solid #259A20;
}
.menu-box li.active a {
	color: #259A20;
	font-weight: bold;
}
/* 隐藏菜单 */
.menu-box li .hide-box {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
    top: 59px;
	background: rgba(0,0,0,.5);
	z-index: 999;
}
.hide-box .hide-menu {
	min-width: 64px;
	width: 100%;
	margin: 0 auto;
}
.hide-box .hide-menu li {
	font-size:16px;
	font-family:'EB Garamond', 'Noto Serif SC', serif;
	font-weight:400;
	color:rgba(255,255,255,1);
	/* line-height:48px; */
	border-bottom: 1px solid #fcfcfc;
	margin: 0;
	padding: 12px 2px;
	text-align: center;
	width: 100%;
}
.hide-box .hide-menu li a {
	color:rgba(255,255,255,1);
	font-size:16px;
	font-family:'EB Garamond', 'Noto Serif SC', serif;
	font-weight:400;
}
.hide-box .hide-menu li.last{
	border: 0;
}
.hide-box .hide-menu li:hover{
	font-weight: normal;
	border-bottom: 1px solid #fcfcfc;
}
.hide-box .hide-menu li.last:hover{
	border-bottom: 0 solid #fcfcfc;
}
.menu-box li:hover{
	color: #259A20;
	font-weight: bold;
	border-bottom: 3px solid #259A20;
}
.menu-box li:hover > a {
	color: #259A20;
	font-weight: bold;
}
.menu-box li:hover > .hide-box {
	display: block;
}