#navToggle{
	display: none;
}

.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 50px;
	display: block;
	margin:30px auto;
}
.m_nav .ul{
	margin-top: 30px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;
    /*-webkit-transform: translateY(0);*/
    /*transform: translateY(0);*/
}
/*.m_nav .ul li:nth-child(1) {*/
    /*-webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(2) {*/
    /*-webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(3) {*/
    /*-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(4) {*/
    /*-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(5) {*/
    /*-webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(6) {*/
    /*-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(7) {*/
    /*-webkit-transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(8) {*/
    /*-webkit-transition: all 1.6s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all 1.6s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(9) {*/
    /*-webkit-transition: all 1.8s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all 1.8s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
/*.m_nav .ul li:nth-child(10) {*/
    /*-webkit-transition: all 2.0s cubic-bezier(.77, 0, .175, 1) 0ms;*/
    /*transition: all 2.0s cubic-bezier(.77, 0, .175, 1) 0ms;*/
/*}*/
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}
.m_nav .ul li .dropdown_menu{
	display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
	display: block;
}
.m_nav .ul li .dropdown_menu a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
	border: none;
}
