.wap-header{position: absolute;top:0;left:0;}
.mobile,.wap-header{
	width: 100%;
	
}
.wap-logo{float:left;padding:5px 0 0 4%;}
.wap-logo img{max-height: 40px;}
.mobile-inner{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background: #383838;
	position: relative;
	z-index: 999999;
}

.mobile-inner p{
	color: #676767;
	line-height: 25px;
	font-size: 16px;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
	margin:0px;
}
.mobile-inner-header{
	position: absolute;
	top:0;
	left:0;
	z-index: 999999999999;
	width: 100%;
	height: 50px;
	background: #383838;
}
.mobile-inner-header-icon{
	color: #fff;
	height: 50px;
	font-size:25px;
	text-align: center;
	float:right;
	width: 50px;
	margin-right:8px;
	position: relative;
	z-index: 9999999;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-inner-header-icon:hover{
	background-color: rgba(255,255,255,0.2);
	cursor: pointer;
}
.mobile-inner-header-icon span{
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 2px;
	
	background-color: #fff;
}
.mobile-inner-header-icon span:nth-child(1){
transform: translateY(4px) rotate(0deg);
	
	}
.mobile-inner-header-icon span:nth-child(2){
transform: translateY(-4px) rotate(0deg);
	
	}
	



	
.mobile-inner-header-icon-click span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	}		
.mobile-inner-header-icon-click span:nth-child(2){
	opacity: 0;
	}
.mobile-inner-header-icon-click span:nth-child(3){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	}
	










@keyframes clickfirst {
  0% {
	  transform: translateY(4px) rotate(0deg);
	  
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}	



@keyframes clicksecond {
  0% {
	  transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}	

.mobile-inner-header-icon-out span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	}		
.mobile-inner-header-icon-out span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}	



@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

.mobile-inner-nav{
	
	background-color:#fff;
	width: 100%;
	position: absolute;
	top: 50px;
	left: 0px;
	padding-top: 15px;
	padding-bottom: 40px;
	display: none;
	height: 100vh;
	z-index: 9999999999;
}
.mobile-inner-nav a{
	display: inline-block;
	line-height: 50px;
	text-decoration: none;
	width: 100%;
	margin-left: 0;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	
}
.mobile-inner-nav a:hover{
	color: rgba(255,255,255,0.4);
	border-bottom: solid 1px rgba(255,255,255,0.2);
}



/*下拉*/
.VerticalMenu {
 
  width: 100%;
  cursor: pointer;
}
.VerticalMenu > div {
  width: 100%;
  float: left;
	
}
.VerticalMenu > div span,.VerticalMenu > div span a{font-size:1.5rem;color:#333;}
.VerticalMenu > div > div:first-child {
  text-align: left;
  height: 50px;  
  line-height: 50px;
  padding-right: 10px;
  border-bottom: 1px solid  #F1F1F1;
  transition: background-color 0.4s linear;
	margin:0 15px;
	padding-left:10px;
	
}

.VerticalMenu > div > div:first-child > i:last-child {
  line-height: 50px;
  float: right;
  transform: rotate(0deg);
  transition: transform 0.4s linear;
	font-size:1.7rem;
}
.VerticalMenu > div > div:last-child {
  width: 100%;
  display: none;
}
.VerticalMenu > div > div:last-child > div {
  background: #F7F6F6;
  transition: background-color 0.1s linear;
  text-align: left;
  line-height: 50px;  
	padding:0 15px;
	padding-left:25px;
}
.VerticalMenu > div > div:last-child > div i.line{width:15px;height: 1px;background: #ccc;display: inline-block;vertical-align: middle;overflow: hidden;padding:0;margin:0 10px 0 0;}
.VerticalMenu > div > div:last-child > div a{display: inline-block;vertical-align: middle;width:calc(100% - 25px);font-size:1.5rem;}
.VerticalMenu > div:last-child::after {
  display: block;
  clear: both;
}
.VerticalMenu a:hover{color:#333;}
