.mobile-inner-header{width: 100%;height: 50px;position:fixed; z-index:1000}
.mobile-inner-header-icon{color: #ffffff;height: 55px;font-size:30px;text-align: center;float:right;width: 55px;position: relative;}

/*双线颜色*/
.mobile-inner-header-icon span{position:absolute;left: calc((100% - 25px)/2);top: calc((100% - 1px)/2);width: 30px;height:4px;background-color:#000;z-index:3000;}
.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){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-nav{z-index:10;background-color:rgba(0,0,0,0.8);width:100%;position:fixed;top:50px;padding-top:30px;padding-bottom:60px;display: none}
.mobile-inner-nav a{display:inline-block;line-height: 50px;text-decoration:none;width:95%;margin-left:2.5%;border-bottom:solid 1px rgba(0,0,0,0.2)}
.mobile-inner-nav a:link{color: #ccc;font-size:16px;}
.mobile-inner-nav a:hover{color: #ccc;}
.mobile-inner-nav a:visited{color:#ccc;}

/*滚动特效12种类调用*/
.mobile-inner-nav a{
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
}
	
		
@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
