@charset "utf-8";
/* CSS Document */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a, select, input, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	outline: 0;
	background: transparent;
	box-sizing: border-box;
}
table, caption, tbody, tfoot, thead, tr, th, td {
	vertical-align: middle;
}
li {
	list-style: none outside none;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}
a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}
ins {
	text-decoration: none;
	color: #000;
	background-color: #ff9;
}
mark {
	font-weight: bold;
	font-style: italic;
	color: #000;
	background-color: #ff9;
}
del {
	text-decoration: line-through;
}
em {
	font-style: normal;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
hr {
	display: block;
	height: 1px;
	margin: 1em 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #ccc;
}
input, select, textarea {
	vertical-align: middle;
	outline: none;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif
}
textarea {
	outline: none;
}
body {
	font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
	-webkit-user-select: none;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	margin: 0 auto;
	position: relative;
	font-size: 12px;
	line-height: 1;
	overflow-x: hidden;
}
/**** 伪元素 *****/
:focus {
	outline: 1;
}
:-ms-input-placeholder {
 color: #333;
 text-indent: 5px;
}
::-webkit-input-placeholder {
 color: #333;
 text-indent: 5px;
}
::-moz-placeholder {
 color: #333;
 text-indent: 5px; /* 没有用 */
 opacity: 1!important;
}
/**** 浮动及清除浮动 ****/
.fleft {
	float: left;
}
.fright {
	float: right;
}
.clear {
	clear: both;
}
.clear:after {
	content: "";
	display: block;
	clear: both;
	width: 0;
	height: 0;
	visibility: hidden;
}
/**** 设置内容区的宽度 ****/ 
.w1000 {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
/**** 超出容器部分隐藏 ****/
.overflow {
	overflow: hidden;
}
/**** 将结构变为表格 ****/
.dis-table {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.dis-tablerow {
	display: table-row;
}
.dis-tablecell {
	display: table-cell;
	vertical-align: middle;
}
/**** 取消元素背景 ****/
.no-bg {
	background: none!important;
}
/**** 取消元素边框 ****/
.no-border {
	border: none!important;
}
/**** 将结构变为inlineblock列表循环 *****/
.dis-inlinelist {
	font-size: 0;
	text-align: justify;
}
.dis-inlineblock {
	display: inline-block;
	vertical-align: top;
}
.fixit {
	height: 0;
	padding: 0;
	margin: 0;
	visibility: hidden;
}

#layout-wrap{
	width: 100%;
	overflow-x: hidden;
}

/** 网站头部 **/
#header{}
#header .header-container{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}
#header .header-container:after{
	content: "";
	display: block;
	clear: both;
	width: 0;
	height: 0;
	visibility: hidden;
}

#header .header-container .header-logo{
	float: left;
	width: 300px;
	height: 124px;
	font-size: 0;
}
#header .header-container .header-logo a{
	display:block;
	width: 100%;
	height: 100%;
	line-height: 124px;
}

#header .header-container .header-logo a img{
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	vertical-align: middle;
}

#header .header-container .header-nav{
	float: right;
	width: calc(100% - 300px);
	line-height: 124px;
	vertical-align: middle;
}

#header .header-container .header-nav ul{
	text-align: right;
}

#header .header-container .header-nav ul li{
	width: 120px;
	line-height: 28px;
	vertical-align: middle;
	text-align: center;
}

#header .header-container .header-nav ul li a{
	color: #000;
	font-size: 16px;
	display: inline-block;
	width: 90px;
}

#header .header-container .header-nav ul li.buy-button a{
	background: #3a4a75;
	color: #fff;
	box-shadow: 1px 1px 5px #000,1px 1px 5px rgba(255,255,255,.6) inset;
	border-radius: 5px;
}

#header .header-container .header-nav ul li a:hover{
	color: #28335a;
	text-decoration: underline
}

#header .header-container .header-nav ul li.buy-button a:hover{
	background: #e27300;
	color: #fff;
	text-decoration: none;
}

#mnav{
	display: none;
}

/********* 页脚 ********/
footer{
	background: #222222;
}

footer .footer-top{
	border-bottom: 1px #fff solid;
}

footer .footer-top .footer-container{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

footer .footer-top .footer-container:after{
	content:"";
	display: block;
	clear: both;
	width: 0;
	height: 0;
	visibility: hidden;
}

footer .footer-top .footer-container .footer-menu{
	float: left;
	width: 800px;
	padding: 70px 0;
}

footer .footer-top .footer-container .footer-menu > ul{
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

footer .footer-top .footer-container .footer-menu > ul > li{
	display: table-cell;
	vertical-align: top;
}

footer .footer-top .footer-container .footer-menu > ul > li h4{
	color: #fff;
	font-size: 18px;
	line-height: 2;
	font-weight: normal;
	margin-bottom: 15px;
}

footer .footer-top .footer-container .footer-menu > ul > li ul{
	
}

footer .footer-top .footer-container .footer-menu > ul > li ul li{
	
}

footer .footer-top .footer-container .footer-menu > ul > li ul li a{
	color: #b3b3b3;
	font-size: 14px;
	line-height: 2;
}

footer .footer-top .footer-container .footer-qr{
	padding: 70px 0;
	float: right;
	width: calc(100% - 800px);
	font-size: 0;
	text-align: center;
}

footer .footer-top .footer-container .footer-qr .img{
	border: 10px #fff solid;
	display: inline-block;
	width: 130px;
	height: 130px;
}

footer .footer-top .footer-container .footer-qr .img img{
	width: 110px;
	height: 110px;
}

footer .footer-top .footer-container .footer-qr .text{
	font-size: 14px;
	line-height: 2;
	color: #b3b3b3;
	margin: 10px 0;
}

footer .footer-top .footer-container .footer-qr .footer-tel{
	color: #fff;
	font-family: Constantia, Lucida Bright, DejaVu Serif, Georgia, serif;
	font-size: 26px;
}

footer .footer-copyright{
	text-align: center;
	background: #28335a;
	color: #fff;
	font-size: 14px;
	line-height: 2;
	padding: 10px 0;
}

#container{
	position: relative;
	z-index: 0;
}