/*导航*/
#menu li {
	width: 100%;
	text-align: center;
}
#menu {
	height: 100%;
	top: 0px;
	position: fixed;
	width: 200px;
	transition: 1000ms all cubic-bezier(0.19, 1, 0.22, 1);
	transform: translateX(-100%);
	left: 0px;
	z-index: 100;
}
#menu .menu-inner {
	width: 100%;
	height: 100%;
	position: relative;
	background: #004337;
	z-index: 10;
}
#menu .menu-inner .nir {
	top: 50%;
	position: absolute;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	text-align: center;
}
#menu .menu-inner .title {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
}
#menu.expanded {
	transform: translateX(0%);
	left: 0px;
	background: #fff;
}
#menu.expanded .menu-inner {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
#menu ul li {
	text-align: left;
	margin-bottom:20px;
}
#menu ul li a {
	position: relative;
	display: inline-block;
	height: 44px;
	line-height: 44px;
	width: 160px;
	font-size: 16px;
	color: #fff;
	text-align:center;
	border-top-right-radius:22px;
	border-bottom-right-radius:22px;
}
/*#menu ul li a:before {
	position: absolute;
	content: '';
	width: 0px;
	height: 1px;
	background: #fff;
	right: 0;
	top: 20px;
	width: 20px;
	opacity: 0;
	transition: all .3s;
}*/
#menu ul li.active a,
#menu ul li:hover a {
	background: #fff;
	color: #004337;
}
#menu ul li.active a:before,
#menu ul li:hover a:before {
	opacity: 1;
	right: -22px;
}
#blob {
	top: 0;
	z-index: -1;
	right: 60px;
	transform: translateX(100%);
	height: 100%;
	position: absolute;
}
#blob-path {
	height: 100%;
	fill: #004337;
}
.hamburger {
	right: 18px;
	position: absolute;
	width: 25px;
	height: 16px;
	margin-top: -10px;
}
.hamburger .line {
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
}
.hamburger .line:nth-child(2) {
	top: 50%;
	margin-top: -1px;
}
.hamburger .line:nth-child(3) {
	bottom: 0;
}
#menu.expanded #blob-path {
	fill: #004337;
}
#menu.expanded .line {
	background: #333;
}
/*# sourceMappingURL=index_left.css.map */