.menu{
  margin-top:6px;
}


.langsw{
  float:right;
/*  width:7vh;
  height:7vh;
  line-height:7vh;
  
  
  border:solid thin #eee;
  border-radius:50%;
*/
}


.langsw ul{
	text-align:center;
  margin-top:12px!important;
}

.langsw li>a{
  color:#fff;
  font-size:14px;
  border: solid thin #eee;
  border-radius: 40%;
  padding: 5px
}

.langsw li>a>img{
  width:30px;
  
}

.inner-header{
	background-color: #083ddd;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0px;
	left: 0px;
}
.inner-header-icon{
	color: #ffffff;
	height: 80px;
	font-size:25px;
	text-align: center;
	float:right;
	width: 80px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.inner-header-icon:hover{
	background-color: rgba(255,255,255,0.2);
	cursor: pointer;
}
.inner-header-icon span{
	position: absolute;
	left: calc((100% - 40px) / 2);
	top: calc((100% - 3px) /2);
	width: 40px;
	height: 3px;
	background:rgba(255,255,255,1);
	
}
.inner-header-icon span:nth-child(1){
	transform: translateY(4px) rotate(0deg);
}
 
.inner-header-icon span:nth-child(2){
	opacity: 0;
}
 
.inner-header-icon span:nth-child(3){
	transform: translateY(-4px) rotate(0deg);
}
 
 
.inner-header-icon-click span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	}
 
.inner-header-icon-click span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}
 
.inner-header-icon-click span:nth-child(3){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickthird;
	}
 
 
/*第一条线旋转动画*/
@keyframes clickfirst {
  0% {
	  transform: translateY(4px) rotate(0deg);
	  
  }
 
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
/*第二条线淡入淡出动画动画*/
@keyframes clicksecond {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
 
/*第三条线旋转动画*/
@keyframes clickthird {
  0% {
	  transform: translateY(-4px) rotate(0deg);
  }
 
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}	
 
.inner-header-icon-out span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	}
 
.inner-header-icon-out span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}
.inner-header-icon-out span:nth-child(3){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outthird;
	}
 
@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
 
  100% {
    transform: translateY(-8px) rotate(0deg);
  }
}
 
@keyframes outsecond {
  0% {
    opacity: 0;
  }
 
  100% {
	  opacity: 1;
  }
}
 
@keyframes outthird {
	0% {
		transform: translateY(0) rotate(45deg);
	}
 
	100% {
		transform: translateY(8px) rotate(0deg);
	}
}
 
.inner-nav{
	background-color: rgba(255,255,255,1);
	width: 250px;
	position: absolute;
	top: 00px;
	left: 0px;
	height:100%;
	z-index:9;
	padding-top:90px;
	padding-left:20px;
   border-radius:5px;
	display:none;
}
.inner-nav a{
	display: inline-block;
	line-height: 50px;
	text-decoration: none;
	width: 80%;
	margin-left: 10%;
	color: rgba(0,0,0,1);
	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;
	font-weight:300;
}
.inner-nav a:hover{
	color: rgba(0,0,255,0.8);
	border-bottom: solid 1px rgba(127,127,127,0.5);
}

.toplogo{
  float:left;
  width:10%;
  height:7vh;
  line-height:7vh;
  min-width:100px;
}

.nav-pills>li{
  padding:0px;
}

.nav-pills>li>a{
  color:white!important;
  font-size:14px;
}

.nav-pills>.active>a{
  font-size:15px;
  border-bottom:solid 2px #ccc;
  background:transparent;
  border-radius:0;
  color:#c3a271!important;
  border-image:linear-gradient(to right,transparent,#c3a271,transparent) 10 1;
}


.nav-pills>li>a:hover{
  border-bottom:solid 2px #ccc;
  background:transparent!important;
  border-radius:0;
  border-image:linear-gradient(to right,transparent,#c3a271,transparent) 10 1;
}

