/* CSS Document */

/* header */
.header {
	background: url(../img/header_wrap_line.png) repeat-x bottom #F8F8F8;
}
.header_bar {
	margin: auto;
	padding-top: 7px;
	width: 1200px;
	height: 37px;
	border-bottom: 1px solid #E6E6E6;
	font-size: 13px;
	line-height: 30px;
}
.header_bar a {
	padding: 0 16px;
	color: #666;
}
.header_bar a:hover {
	color: #D2161A;
}
.header_bar .space {
	display: inline-block;
	font-size: 12px;
	color: #CCC;
}
.header_bar a.login_btn {
	display: inline-block;
	border-radius: 4px;
	background: #EF8248;
	color: #FFF;
}
.header_bar a:hover.login_btn {
	background: #F29360;
}
.header_con {
	margin: auto;
	width: 1200px;
	height: 125px;
}
.header_con .logo {
	float: left;
	padding-top: 25px;
	width: 340px;
}
.header_con .search {
	float: left;
	padding-top: 40px;
}
.header_con .search_form {
	height: 40px;
	border: 2px solid #EF8248;
	border-radius: 4px;
}
.header_con .search_form_text {
	float: left;
	padding: 0 15px;
	width: 370px;
	height: 40px;
	border: 0;
	font-size: 14px;
}
.header_con .search_form_btn {
	float: left;
	width: 56px;
	height: 40px;
	border: 0;
	background: url(../img/search_ico.png) no-repeat center #EF8248;
	cursor: pointer;
}
.header_con .search_form_btn:hover {
	background: url(../img/search_ico.png) no-repeat center #F29360;
}
.header .channel {
	float: right;
	padding-top: 36px;
}
.header .channel li {
	float: left;
	width: 60px;
}
.header .channel li a {
	display: block;
	text-align: center;
}
.header .channel li a h3 {
	padding-top: 2px;
	font-size: 12px;
	font-weight: normal;
	color: #666;
}
.header .channel li a:hover h3 {
	color: #D2161A;
}
.header .nav {
	margin: auto;
	width: 1200px;
	height: 50px;
	background: #ED722E;
	font-size: 16px;
	line-height: 50px;
	text-align: center;
}
.header .nav a {
	position: relative;
	display: inline-block;
	padding: 0 32px;
	color: #FFF;
}
.header .nav a:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-7px);
	width: 1px;
	height: 16px;
	background: rgba(0,0,0,.15);
	content: "";
}
.header .nav a:last-child:after {
	width: 0;
}
.header .nav .space {
	display: inline-block;
	font-size: 15px;
	color: #A81215;
}
.header .nav a.cur {
	background: url(../img/nav_arrow.png) no-repeat center bottom;
}

/* footer */
.footer {
	background: url(../img/footer_map.png) no-repeat center top #282C35;
	color: #A5A5AC;
}
.footer .qr_code {
	float: left;
	padding-top: 20px;
	width: 260px;
}
.footer .qr_code li {
	float: left;
	margin-right: 20px;
	width: 100px;
	height: 124px;
	background: #FFF;
	text-align: center;
}
.footer .qr_code li h3 {
	font-size: 13px;
	font-weight: normal;
	color: #696970;
}
.footer .con {
	float: left;
	padding-top: 20px;
	width: 640px;
}
.footer .nav {
	border-top: 1px solid rgba(255,255,255,.1);
	border-bottom: 1px solid rgba(255,255,255,.1);
	height: 58px;
	font-size: 14px;
	line-height: 58px;
}
.footer .nav a {
	position: relative;
	display: inline-block;
	padding: 0 19px;
	color: #FFF;
}
.footer .nav a:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-6px);
	width: 1px;
	height: 12px;
	background: rgba(255,255,255,.1);
	content: "";
}
.footer .nav a:first-child {
	padding-left: 0;
}
.footer .nav a:last-child {
	padding-right: 0;
}
.footer .nav a:last-child:after {
	width: 0;
}
.footer .contact {
	padding-top: 16px;
	font-size: 13px;
	line-height: 24px;
}
.footer .copyright {
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: 13px;
	line-height: 24px;
}
.footer .copyright a {
	color: #A5A5AC;
}

/* to top */
.to-top {
	position: fixed;
	display: inline-block;
	bottom: 40px;
	right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 3px;
	/* image replacement properties */
	background: url(../img/to_top.png) no-repeat center center #999;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 999;
}
.to-top.is-visible {
	/* the button becomes visible */
	visibility: visible;
	opacity: 1;
}
.to-top.fade-out {
	/* 如果用户继续向下滚动,这个按钮的透明度会变得更低 */
	opacity: .5;
}
.to-top:hover {
	background-color: #666;
	opacity: 1;
}