@charset "UTF-8";
/*初始化浏览器默认样式*/
* {
    margin: 0;
    padding: 0;
}

body, input, button, select, textarea {
    font-family: "Microsoft Yahei", "verdana";
    font-size: 14px;
    line-height: 24px;
    color: #9e9e9e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
}

body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

img, a img {
    border: 0;
}

a {
    color: inset;
    outline: medium none;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    opacity: 0.6;
    filter: alpha(opacity=60);
    transition: 0.6s;
}

button, input {
    outline: none;
}

ul, li, ol, dl, dd, dt {
    list-style: none;
}

/*
em, cite, i { font-style: normal;}
p {	word-break: break-all; word-wrap:break-word; text-align: justify;text-justify: distribute-all-lines;text-justify: inter-ideograph;	width:100%;	float:left;}
*/

ul, dd {
    display: block;
}
.checkbox {
    padding-left: 26px;
    background: url(../images/checkbox.png) 0 0 no-repeat;
    cursor: default;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    display: inline-block;
    height: 24px;
    margin-right: 20px;
}

.checkbox:hover {
    background-position: 0 -24px;
}

.checked {
    background-position: 0 -48px !important;
}

input:focus, input:hover, textarea:focus, textarea:hover {
    border: solid 1px #69b82d;
}

.input {
    border: solid 1px #d9dee2;
    line-height: 30px;
    height: 30px;
    padding: 0 10px;
    border-radius: 3px;
    box-sizing: border-box;
    transition: all 0.3s;
}

::-webkit-input-placeholder {
    color: #ccc;
}

/* WebKit browsers */
:-moz-placeholder {
    color: #ccc;
}

/* Mozilla Firefox 4 to 18 */
::-moz-placeholder {
    color: #ccc;
}

/* Mozilla Firefox 19+ */
:-ms-input-placeholder {
    color: #ccc;
}

/* Internet Explorer 10+ */

/*去除Chrome等浏览器文本框默认发光边框*/
input:focus, textarea:focus {
    outline: none;
}

/*去除IE10+浏览器文本框后面的小叉叉*/
input::-ms-clear {
    display: none;
}

/*禁止多行文本框textarea拖拽*/
textarea {
    resize: none;
}

/*避免因子元素浮动而导致的父元素高度缺失能问题*/
.clearFix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearFix {
    zoom: 1;
}

/*浮动*/
.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

/*字体颜色*/
.green {
    color: #69b82d;
}

.blue {
    color: #0dc59f;
}

.red {
    color: #ff0000;
}

.f12 {
    font-size: 12px !important;
}

.f14 {
    font-size: 14px !important;
}

.brown {
    font-size: 16px;
    color: #cc6600;
}

.black {
    font-weight: bold;
    color: #000;
}

/*常用*/
.pointer {
    cursor: pointer;
}

.center {
    text-align: center;
}

.pos-re {
    position: relative;
}

.pos-ab {
    position: absolute;
}

/*显示/隐藏*/
.show {
    display: block !important;
}

.hide {
    display: none !important;
}

/*通用宽度 */
.wn {
    width: 1020px;
    margin: 0 auto;
}

/*外边距*/
.ml10 {
    margin-left: 10px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt30 {
    margin-top: 30px !important;
}

/*内边*/
.plr40 {
    padding: 0 40px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.pl50 {
    padding-left: 50px !important;
}

.pl80 {
    padding-left: 80px !important;
}

/*按钮*/
.btn {
    width: 108px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    background: #fb5443;
    border: none;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.center > .btn {
    display: block;
    margin: auto;
}

/*头部*/
.header {
    width: 100%;
    height: 85px;
    border-bottom: rgba(210, 227, 255, .1) 1px solid;
    position: absolute;
    top: 0;
    z-index: 9;
    border-bottom: #272e44 1px solid \9;
}

.logo {
    float: left;
    display: inline-block;
    margin: 24px 0 0 37px;
    width: 140px;
    height: 33px;
}

.nav {
    float: left;
    width: auto;
}

.nav > li {
    color: #9fa3ab;
    float: left;
    display: inline-block;
    height:84px;
    line-height:84px;
    position: relative;
    margin-right: 30px;
}

.nav > li.hover {
    border-bottom: #fb4c3b 2px solid;
    color: #fff;
    font-weight: bold;
}

.nav > li:hover {
    color: #fff;
    font-weight: bold;
}

.nav > li > span {
    display: block;
}

.nav > li > span > a {
    display: block;
    color: #9fa3ab;
    padding: 0 10px;
}

.nav > li > span > a:hover {
    color: #fff;
    opacity: 1;
}

.nav > li.hover > span > a, .nav > li:hover > span > a {
    color: #fff;
}

.nav > li > span > a > i {
    content: '';
    width: 0;
    height: 0;
    border-style: solid dashed dashed;
    border-color: #9fa3ab transparent transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
    border-width: 6px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    margin-top: 4px;
}

.nav > li.hover > span > a > i {
    border-color: #fff transparent transparent;
    margin-top: 4px;
}

.nav > li:hover > span > a > i {
    border-style: dashed dashed solid;
    border-color: transparent transparent #fff;
    margin-top: -6px;
}

.headDown {
    width: 100%;
    padding: 10px 0;
    border-radius: 0 0 3px 3px;
    background: rgba(0, 0, 0, .4);
    position: absolute;
    top: 84px;
    display: none;
    background: #000 \9;
}

.nav > li:hover .headDown {
    display: block;
}

.headDown > li > a {
    height: 42px;
    line-height: 42px;
    color: #9fa3ab;
    padding: 0 10px;
    height: 42px;
    line-height: 42px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    display: block;
    font-weight: normal;
}

.headDown > li.hover > a, .headDown > li > a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    background: #333 \9;
    opacity: 1;
}

.tel {
    width:133px;
    padding:0 10px;
    height:38px;
    background:#fb4c3b url("../img/tel.png") 10px center no-repeat;
    line-height: 38px;
    text-align: center;
    font-size: 16px;
    border-radius:3px;
    color: #fff;
    text-indent: 25px;
}

.header .tel {
    float: right;
    display: inline-block;
    margin: 24px 28px 3px;
}

/*底部*/
.footer {
    background: #2e3035;
}

.footer dl {
    width: 18%;
    float: left;
    display: inline-block;
    padding: 50px 30px 50px 10px;
    box-sizing: border-box;
}

.foot_dl > dt {
    color: #fff;
    margin-bottom: 15px;
}

.foot_dl > dd {
    color: #888b94;
    line-height: 26px;
    font-size: 12px;
}

.foot_dl > dd a {
    color: #888b94
}

.foot_lxwm {
    height: 20px;
    line-height: 20px;
    border-radius: 3px;
    color: #fff;
    margin: 10px 0 3px;
    width: auto;
}

.foot_lxwm span,.foot_lxwm a {
    padding: 2px 6px;
    margin-right: 6px;
    background: #fb4c3b;
    border-radius: 3px;
}
.foot_lxwm a{
    color:#fff!important;
    text-decoration:none;
}
.foot_lxwm a:hover{
    opacity: 1;
    filter: alpha(opacity=100);
    cursor: text;
}

.foot_p {
    text-align: center;
    line-height: 24px;
    color: #56585e;
    font-size: 12px;
    background: #2b2d32;
    padding: 10px 0;
}

.erwm {
    background: #fff;
    width: 140px;
    height: 140px;
    padding: 10px;
}

.erwm img {
    width: 140px;
    height: 140px;
}

/*goTop*/
.goTop {
    width: 60px;
    background: #fcfdfd;
    border-radius: 3px;
    box-sizing: border-box;
    border: #e4e5e8 1px solid;
    top: 60%;
    right: 30px;
    z-index: 99;
    box-shadow: 0 0 5px rgba(0, 0, 0, .05);
    position: absolute \9;
    position: fixed;
}

.goTop > li {
    height: 60px;
    line-height: 60px;
    border-top: #f2f3f5 1px solid;
    text-align: center;
    position: relative;
}

.goTop > li:first-child {
    border-top: none;
}

.goTop > li > a {
    width: 30px;
    height: 30px;
    background: url("../img/goTop.png") 0 0 no-repeat;
    display: inline-block;
    vertical-align: middle;
}

.goTop .kefu > a {
    background-position: 0 0;
}

.goTop .kefu > a:hover, .goTop .kefu.hover > a {
    background-position: -30px 0;
    opacity: 1;
}

.goTop .weix > a {
    background-position: 0 -30px;
}

.goTop .weix > a:hover, .goTop .weix.hover > a {
    background-position: -30px -30px;
    opacity: 1;
}

.goTop .totop {
    display: none;
}

.goTop .totop > a {
    background-position: 0 -60px;
}

.goTop .totop > a:hover {
    background-position: -30px -60px;
}

.goTop_box {
    padding: 10px 15px;
    background: #fff;
    border-radius: 3px;
    border: #e0e2e5 1px solid;
    position: absolute;
    box-shadow: 0 0 5px rgba(0, 0, 0, .05);
    right: 70px;
    display: none;
}

.goTop .hover .goTop_box {
    display: block;
    animation: fadeIn 1s both;
}

.goTop_box > img {
    float: left;
    margin-bottom: 5px;
}

.goTop .kefu .goTop_box {
    top: 0;
}

.goTop .weix .goTop_box {
    bottom: 0;
    padding: 15px;
    text-align: center;
}

.goTop_p {
    text-align: center;
    line-height: 30px;
    color: #666;
}

.goTop_icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: #fff;
    position: absolute;
    right: -6px;
    right: -4px \9;
    border-top: #e0e2e5 1px solid;
    border-right: #e0e2e5 1px solid;;
    filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865474, M12=-0.7071067811865477, M21=0.7071067811865477, M22=0.7071067811865474);
}

.goTop .kefu .goTop_icon {
    top: 25px;
}

.goTop .weix .goTop_icon {
    bottom: 25px;
}




/*/!*滚动条*!/*/
/*::-webkit-scrollbar-button {*/
    /*height: 0;*/
    /*width: 0;*/
    /*display: none;*/
/*}*/

/*::-webkit-scrollbar-track {*/
    /*background-color: #fff;*/
/*}*/

/*::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {*/
    /*border: 0;*/
/*}*/

/*::-webkit-scrollbar {*/
    /*height: 10px;*/
    /*width: 10px;*/
    /*background-color: #cacaca;*/
    /*border-radius: 5px;*/
/*}*/

/*::-webkit-scrollbar-thumb {*/
    /*padding-top: 100px;*/
    /*-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1), inset -1px -1px 0 rgba(0, 0, 0, .07);*/
    /*background-color: #797979;*/
    /*min-height: 28px;*/
    /*border-radius: 4px;*/
    /*background-clip: padding-box;*/
/*}*/

/*::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {*/
    /*border: 0;*/
/*}*/

/*::-webkit-scrollbar-thumb:hover {*/
    /*-webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .25);*/
    /*background-color: rgba(0, 0, 0, .4);*/
/*}*/

/*::-webkit-scrollbar-thumb:active {*/
    /*-webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .35);*/
    /*background-color: rgba(0, 0, 0, .5);*/
/*}*/

/*body {*/
    /*scrollbar-base-color: #fff;*/
    /*scrollbar-track-color: #fff;*/
    /*scrollbar-face-color: #dadada;*/
    /*scrollbar-arrow-color: #dadada;*/
    /*scrollbar-shadow-color: #fff;*/
/*}*/





