/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, 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, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {display: block;}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {max-width: 100%;}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: scroll;}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom;}
.ie7 input[type="checkbox"] {vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

small {font-size: 85%;}

strong {font-weight: bold;}

td, td img {vertical-align: top;}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button,
input[type=button] {width: auto; overflow: visible;}

/* scale images in IE7 more attractively */
.ie7 img {-ms-interpolation-mode: bicubic;}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/

/* let's clear some floats */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
/**
 * base
 */

/* reset */
:focus
{
    outline: none;
}

/* quick */
.clearfix:before,
.clearfix:after
{
    display: table;
    content: '';
}

.clearfix:after
{
    clear: both;
}

.fl
{
    float: left;
}

.fr
{
    float: right;
}

.dn,
.hide,
.hidden,
.none
{
    display: none;
}

.show
{
    display: block;
}

.di
{
    display: inline;
}

.db
{
    display: block;
}

.cp
{
    cursor: pointer;
}

.cb
{
    clear: both;
}

.cl
{
    clear: left;
}

.cr
{
    clear: right;
}

.tl
{
    text-align: left;
}

.tr
{
    text-align: right;
}

.tc
{
    text-align: center;
}

.oh
{
    overflow: hidden;
}

.vm
{
    vertical-align: middle;
}

.pr
{
    position: relative;
}

.pa
{
    position: absolute;
}

.ps
{
    position: static;
}

.fn
{
    font-weight: normal;
}

.fb
{
    font-weight: bold;
}

.tu
{
    text-decoration: underline;
}

.tt
{
    text-decoration: line-through;
}

.p5
{
    padding: 5px;
}

.p10
{
    padding: 10px;
}

.p20
{
    padding: 20px;
}

.pt5
{
    padding-top: 5px;
}

.pt10
{
    padding-top: 10px;
}

.pt15
{
    padding-top: 15px;
}

.pt20
{
    padding-top: 20px;
}

.pt30
{
    padding-top: 30px;
}

.pb5
{
    padding-bottom: 5px;
}

.pb10
{
    padding-bottom: 10px;
}

.pb15
{
    padding-bottom: 15px;
}

.pb20
{
    padding-bottom: 20px;
}

.pb30
{
    padding-bottom: 30px;
}

.pl5
{
    padding-left: 5px;
}

.pl10
{
    padding-left: 10px;
}

.pl15
{
    padding-left: 15px;
}

.pl20
{
    padding-left: 20px;
}

.pl30
{
    padding-left: 30px;
}

.pr5
{
    padding-right: 5px;
}

.pr10
{
    padding-right: 10px;
}

.pr15
{
    padding-right: 15px;
}

.pr20
{
    padding-right: 20px;
}

.pr30
{
    padding-right: 30px;
}

.mt5
{
    margin-top: 5px;
}

.mt10
{
    margin-top: 10px;
}

.mt15
{
    margin-top: 15px;
}

.mt20
{
    margin-top: 20px;
}

.mt30
{
    margin-top: 30px;
}

.mb5
{
    margin-bottom: 5px;
}

.mb10
{
    margin-bottom: 10px;
}

.mb15
{
    margin-bottom: 15px;
}

.mb20
{
    margin-bottom: 20px;
}

.mb30
{
    margin-bottom: 30px;
}

.ml5
{
    margin-left: 5px;
}

.ml10
{
    margin-left: 10px;
}

.ml15
{
    margin-left: 15px;
}

.ml20
{
    margin-left: 20px;
}

.ml30
{
    margin-left: 30px;
}

.mr5
{
    margin-right: 5px;
}

.mr10
{
    margin-right: 10px;
}

.mr15
{
    margin-right: 15px;
}

.mr20
{
    margin-right: 20px;
}

.mr30
{
    margin-right: 30px;
}

.no-spacing
{
    margin: 0;
    padding: 0;
}

.no-border
{
    border-style: none !important;
}

.no-top-border
{
    border-top-style: none !important;
}

.no-left-border
{
    border-left-style: none !important;
}

.no-right-border
{
    border-right-style: none !important;
}

.no-bottom-border
{
    border-bottom-style: none !important;
}

.no-padding
{
    padding: 0 !important;
}

.no-top-padding
{
    padding-top: 0 !important;
}

.no-left-padding
{
    padding-left: 0 !important;
}

.no-right-padding
{
    padding-right: 0 !important;
}

.no-bottom-padding
{
    padding-bottom: 0 !important;
}

.margin-center
{
    margin: 0 auto;
    text-align: center;
}
/**
 * global
 */

/**
 * 滚动条样式
 */

/* 设置垂直滚动条的宽度和水平滚动条的高度 */
::-webkit-scrollbar
{
    width: 4px;
    height: 4px;
}

/* 设置滚动条的滑轨 */
::-webkit-scrollbar-track
{
    background-color: transparent;
}

/* 滑块 */
::-webkit-scrollbar-thumb
{
    border-radius: 2px;
    background-color: rgba(153, 153, 153, 1);
}

/* 滑轨两头的监听按钮 */
::-webkit-scrollbar-button
{
    display: none;
}

/* 横向滚动条和纵向滚动条相交处尖角 */
::-webkit-scrollbar-corner
{
}

/**
 * 高亮文本样式
 */

::-webkit-selection
{
    color: #fff;
    background-color: #f11f2f;
}

::-moz-selection
{
    color: #fff;
    background-color: #f11f2f;
}

::selection
{
    color: #fff;
    background-color: #f11f2f;
}

/**
 * 清除IE默认输入框样式
 */

input::-ms-clear,
input::-ms-reveal
{
    display: none;
}

/**
 * 清除IOS单击高亮样式
 */
html
{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

/**
 * placeholder样式
 */
::-webkit-input-placeholder
{
    color: #999;
}

:-moz-placeholder
{
    color: #999;
    opacity: 1;
}

::-moz-placeholder
{
    color: #999;
    opacity: 1;
}

:-ms-input-placeholder
{
    color: #999 !important;
}

/**
 * 元素样式
 */
a
{
    text-decoration: none;
}

#footnav li a:hover{
    color: #f00;
}

i,
em
{
    font-style: normal;
}

input[type="tel"],
input[type="text"]
{
    background-color: transparent;
    padding: 0;
}

/**
 * 快捷样式
 */
.highlight,
a.highlight
{
    color: #2bba66 !important;
}

/**
 * 基础样式
 */

html
{
    font-family: PingFang SC, Lantinghei SC, Helvetica Neue, Helvetica,Arial, Microsoft YaHei, \\5FAE\8F6F\96C5\9ED1, STHeitiSC-Light, simsun, \\5B8B\4F53, WenQuanYi Zen Hei, WenQuanYi Micro Hei, "sans-serif";
}

body
{
    margin: 0px;
    padding: 0px;
    font-size: 12px;
    color: #333;
    font-family: Arial, Helvetica, sans-serif,"宋体";
    background: #efefef url(../image/bg.png) repeat-x left top;
}

body:after,
body:before
{
    display: table;
    content: '';
}

body:after
{
    clear: both;
}

.banner {
    width: 100%;
    float: left;
    padding: 12px;
    background: #fff;
}

.w1010 
{
    width: 1010px;
    margin: 0 auto;
}

#main {
    width: 100%;
    float: left;
    padding: 0 23px 30px 23px;
    margin: 12px 0 0 0;
    background: #fff;
}

.top
{
    width: 1010px;
    margin: 0 auto;
}

.top .logo
{
    background: url(../image/logo.png);
    background-repeat: no-repeat;
    float: left;
    width: 260px;
    height: 60px;
    margin-top: 32px;
}

.common {
    width: 100%;
    float: left;
    height: 125px;
    margin: 2px 0 0 0;
}

#head_right {
    float: right;
    margin-top: 42px;
}

.clear {
    clear: both;
}

#tel {
    float: right;
    line-height: 42px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    font-family: "微软雅黑";
    font-style: italic;
}

#tel span {
    color: #328e12;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
}

.top .nav
{
    width: 100%;
    height: 40px;
    float: left;
    line-height: 40px;
}

.top .nav li
{
    float: left;
    margin-right: 20px;
}

.top .nav li:last-child
{
    margin-right: 0;
}

.top .nav li :hover
{
    color: #fff;
    background: #47D86E;
}

.top .nav .activate
{
    color: #fff;
    background: #47D86E;
}

.top .nav li > a
{
    width: 110px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    float: left;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}

.bottom
{
    font-size: 12px;
    color: #333;
}

#copyright {
    width: 100%;
    float: left;
    text-align: center;
    padding: 0px 0 10px 0;
    line-height: 25px;
    background: #fff;
}

#footnav {
    width: 100%;
    float: left;
    line-height: 35px;
    height: 35px;
    background: #efefef;
    color: #131230;
}

#footnav ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

#footnav li {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: inline;
}

#footnav li a {
    margin: 0 20px;
    color: #131230;
}

#copy_txt {
    width: 100%;
    float: left;
    padding: 20px 0 0px 0;
}

.link_txt {
    width: 100%;
    float: left;
}

.link_txt ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}