@charset "utf-8";

body,h1,h2,h3,ul,ol,p,figure {
	margin: 0;
	padding: 0;
}
body {
	background-color: #fff;
	/*background-color: #FBF3E4;*/
	font-family: "Helvetica Neue",Helvetica,Arial,"Microsoft Yahei UI","Microsoft YaHei",SimHei,"宋体",simsun,sans-serif;
}
ul,ol {
	list-style-position: outside;
	list-style-image: none;
	list-style-type: none;
	/*简写方式。list-style:
	包含了三个属性:
	list-style-position、list-style-type、list-style-img。也就是说给他们分别赋值。*/
}
a {
	text-decoration: none;
}
.none {
	display: none;
}
#header {
	width: 100%;
	/*设置百分百宽度，自适应屏幕*/
	min-width: 1263px;
	/*在这里设置最小宽度，防止自适应造成的网页变形*/
	height: 102px;
	/*background-color: red;*/
	background:  url(../img/header_bg.png);
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
	/*CSS3提供的属性，加阴影，rgba着色的属性，最后的0.3是透明度*/
	position: relative;/*这里的相对点，为了布局*/
	z-index: 9999;/*设置为9999，代表层次是最高的*/
}
#header .center {
	width: 1263px;
	height: 70px;
	margin: 0 auto;
}
#header .logo {
	width: 764px;
	height: 47px;
    margin-top: 27px;
	background-image: url(../img/logo.png);
	text-indent: -9999px;
	float: left;
}
#header .register{
	float: right;
	margin-top: 37px;
}
#header .register li{
	float: left;
}
#header .register li a{
	color:#3F668F;
	padding-left:5px;

}
#header .register li img{
	position: relative;
	top:5px;
}
#header .link {
	width: 650px;
	height: 70px;
	line-height: 70px;
	color: #eee;
	float: right;
}
#header .link li {
	width: 120px;
	text-align: center;
	float: left;
}
#header .link a {
	color: #eee;
	display: block;
}
#header .link a:hover, 
#header .active a {
	background-color: #000;
}


/*导航开始*/
#nav {
	width: 100%;
	/*设置百分百宽度，自适应屏幕*/
	min-width: 1263px;
	/*在这里设置最小宽度，防止自适应造成的网页变形*/
	height: 56px;
	background-color: #0F92E4;
	/*background:  url(../img/header_bg.png);*/
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
	/*CSS3提供的属性，加阴影，rgba着色的属性，最后的0.3是透明度*/
	/*position: relative;!*这里的相对点，为了布局*!*/
	/*z-index: 9999;!*设置为9999，代表层次是最高的*!*/
}
#nav .navcenter {
	width: 1263px;
	height: 56px;
	line-height: 56px;
	margin: 0 auto;
	color: #eee;
}
#nav .navcenter li{
	width: 150px;
	text-align: center;
	float: left;
}
#nav .navcenter a{
	color: #eee;
	display: block;

}
#nav .navcenter a:hover,
#nav .active a {
	background-color: #0074BD;
}

	/*导航结束*/
#footer {
	height: auto;
	background-color: #0F92E4;

}

#footer .bottom {
	padding-top: 20px;
	height: auto;
	line-height: 35px;
	text-align: center;
	color: #ffffff;
	background-color: #0F92E4;
	border-top: 1px solid #ccc;
	padding-bottom: 20px;
}