body{
	transition: 0.8s;
}
body.hide{
	opacity: 0;
}


/*header>>>start*/
.head{
	position: fixed;
	top: 52px;
	width: 100%;	
	z-index: 1000;
}
.head.navbar-fixed-top{
	top: 0px;
}
.head .container{
	width: 1170px;
	margin: 0 auto;
	/*background: #fff;*/
	background-color: rgba(255,255,255,0.8);
}
.head.ts .container{
	background: #efefef;
}
.head .top{
	width: 880px;
	height: 44px;
	margin-left: 290px;
	background: #000;
	opacity: 0.75;
	/*background-color: rgba(0,0,0,0.8);*/
}
.head .top .en{
	font-family: arial;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	line-height: 44px;
	margin-left: 32px;
	float: left;
	opacity: 0.75;
}
.head .top a.r{
	float: right;
	font-size: 13px;
	color: #fff;
	line-height: 44px;
	margin-left: 0px;
	margin-right: 20px;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.head .top a.r.en{
	font-size: 12px;
	margin-right: 30px;
}
.head .top a:hover{
	color: red;
}
.head .navbar{
	width: 100%;
	height: 106px;
}
.head .navbar .logo{
	float: left;
	width: 167px;
	margin-left: 35px;
	margin-top: 7px;
}
.head .navbar .logo img{
	width: 100%;
	height: auto;
}












/*animated>>>>>>>start*/
.animated {
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-ms-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-ms-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


/*fadeInLeft*/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
            transform: translate3d(-40%, 0, 0);
  }

  100% {
    opacity: 1;
            transform: none;
  }
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translate3d(-40%, 0, 0);
	}
	
	100% {
		opacity: 1;
		-moz-transform: none;
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-ms-transform: translate3d(-40%, 0, 0);
	}
	
	100% {
		opacity: 1;
		-ms-transform: none;
	}
}

.fadeInLeft { 
	opacity: 0; 
	-webkit-animation-duration: 0.8s;
	-moz-animation-duration: 0.8s;
	-ms-animation-duration: 0.8s;
	-o-animation-duration: 0.8s;
	animation-duration: 0.8s;
}
.fadeInLeft.animated {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
}

/*fadeInRight*/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(40%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
            transform: translate3d(40%, 0, 0);
  }

  100% {
    opacity: 1;
            transform: none;
  }
}

@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translate3d(40%, 0, 0);
	}
	
	100% {
		opacity: 1;
		-moz-transform: none;
	}
}

@-o-keyframes fadeInRight {
	0% {
		opacity: 0;
		-ms-transform: translate3d(40%, 0, 0);
	}
	
	100% {
		opacity: 1;
		-ms-transform: none;
	}
}

.fadeInRight { 
	opacity: 0; 
	-webkit-animation-delay: 0.4s; 
	animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-ms-animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
}
.fadeInRight.animated {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
	-moz-animation-name: fadeInRight;
	-o-animation-name: fadeInRight;
}



