@charset "utf-8";
/*@font-face {
    font-family: "Helvetica Neue";
    src: url("../font/helveticaneueltpro-th.eot");
	src: url("../font/helveticaneueltpro-th.eot?#iefix") format("embedded-opentype"),
	url("../font/helveticaneueltpro-th.woff2") format("woff2"),
	url("../font/helveticaneueltpro-th.woff") format("woff"),
	url("../font/helveticaneueltpro-th.tff") format("truetype"),
	url("../font/helveticaneueltpro-th.svg") format("svg");
	font-weight: bold;
	font-style: normal;
}*/



a{
    color: inherit;
    text-decoration: none;
}
img{
    border: none;
}
.error{
	border-color: #ff0000;
}

html{
    min-width: 980px;
}
body{
    margin: 0 auto;
    padding: 24px 0 0;
    min-width: 980px;
    font-size: 16px;
	overflow-x: hidden;
    font-family: /*"Helvetica Neue", */ Arial, Helvetica, sans-serif;
}

.header-wrap{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
	background: url(../images/nav_bg.png) repeat;
    background: rgba(255,255,255,0.55);
	z-index: 100;
}
.header-line{
   height: 24px;
   background-image: url(../images/img_top_background_0.png);
   background-repeat: repeat-x;
   background-position-x: center;
}
.header{
    height: 90px;
    width: 980px;
    margin: 0 auto;
	display: -ms-flexbox;
    display: flex;
	-ms-flex-pack:justify;
	justify-content: space-between;
}
.header a.logo{
	display: block;
	float: left;
	margin-top: 5px;
}
.header a.logo img{
    display: block;
}
.nav{
	float: right;
	padding-top: 23px;
	display: -ms-flexbox; 
    display: flex;
	font-size: 0;
}
.nav>span{
	display: inline-block;
    height: 44px;
    border-radius: 5px;
	position: relative;
	vertical-align: top;
}
.nav>span:hover,.nav>span.selected{
    background-color: rgb(255,174,0);
}
.nav>span>a{
	display: block;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 16px;
	color: #000000;
	font-weight: bold;
}
.nav>span:hover>a,.nav>span.selected>a{
	color: #ffffff;
}
.child-nav{
	position: absolute;
	top: 100%;
	left: -69px;
	display: none;
	width: 265px;
	padding-top: 23px;
}
.nav>span:hover .child-nav{
	display: block;
}
.child-nav>a{
	display: block;
	background: url(../images/nav_bg.png) repeat;
    background: rgba(255,255,255,0.55);
	margin-top: 1px;
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	height: 44px;
	line-height: 44px;
	text-align: center;
}
.child-nav>a:hover{
	color: #ffae00;
}

.banner-wrap{
	max-width: 1900px;
	height: 541px;
	margin: 0 auto;
	background-image: url(../images/banner_index.jpg);
	background-position: center;
	background-repeat: no-repeat;
}
div.banner{
	height: 100%;
	width: 980px;
	margin: 0 auto;
}



.contact-wrap{
    height: 98px;
    background: url(../images/contact_bg.png) no-repeat rgb(222,222,222) center top;
	display: block;
}
.contact{
	width: 980px;
	height: 100%;
	margin: 0 auto;
	display: -ms-flexbox;
	display: flex;
	/*justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	-ms-flex-align: center;*/
	position: relative;
	color: #2f2f2f;
}
.contact-text{
	height: 24px;
	line-height: 24px;
	margin: auto;
	padding: 37px 0;
	text-align: center;
}
.contact-btn{
	display: block;
	height: 14px;
	padding: 15px 20px;
	line-height: 14px;
	background-color: rgb(252,143,2);
	border-radius: 5px;
	position: absolute;
	top: 27px;
	right: 125px;
	color: #ffffff;
}
.footer-wrap{
	background-color: rgb(53,53,53);
	height: 40px;
}
.footer{
	color: rgb(151,151,151);
	width: 980px;
	font-size: 12px;
	height: 14px;
	line-height: 14px;
	margin: 0 auto;
	padding: 13px 0;
	text-align: center;
}
.footer>a{
	font-weight: bold;
}



@keyframes animate-stop{
	from{
		visibility: hidden;
	}
	to {
		visibility: hidden;
	}
}
@keyframes animate-up{
	from {
		transform:translate(0,-50px);
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
[data-animate~=up]{
	animation-name:animate-stop;
	animation-fill-mode: forwards;
}
.animate{
	/*position: relative;*/
	visibility: visible;
	animation-name: animate-up;
	animation-duration: 0.9s;
	animation-timing-function: ease;
	animation-fill-mode:none;
}