/* CSS Document */

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
}

a,
img {
    border: 0;
}
img {
    vertical-align: top;
}
body {
    font-size: 12px;
    font-family: '微软雅黑', "Microsoft YaHei", 'Arial', ;
    color: #333;
    margin: 0px;
    min-width: 1280px;
}
input {
    outline: none;
}
a {
    color: #333333;
    text-decoration: none;
    outline: none;
}
li {
    list-style-type: none;
}

/* a:hover {
    color: #fff
} */

.fl {
    float: left;
}

.fr {
    float: right;
}

.w {
    width: 1200px;
    margin: 0 auto;
}

.logo a img {
   width: 420px;
}
.clear:after {
    content: '';
    display: block;
    clear: both;
}

@font-face {
    font-family: 'SourceHanSansCN-Light';
    src: url('../fonts/SourceHanSansCN-Light.otf');
}

@font-face {
    font-family: 'SourceHanSansCN-Medium';
    src: url('../fonts/SourceHanSansCN-Medium.otf');
}

@font-face {
    font-family: 'SourceHanSansCN-Normal';
    src: url('../fonts/SourceHanSansCN-Normal.ttf');
}


/*单行文字隐藏*/

.text-truncate {
    word-wrap: normal;
    /* for IE */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

input::-webkit-input-placeholder {
    color: #999;
    letter-spacing: 1px;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
    letter-spacing: 1px;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
    letter-spacing: 1px;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999;
    letter-spacing: 1px;
}

button:focus {
    outline: none;
}

header {
    width: 100%;
    height: auto;
    background: #ffffff;
}

header .qc-head-top {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    background: #1a1818;
}
header .qc-head-top .login-register p{
    float: left;
    color: #999999;
}
header .qc-head-top .login-register ul{
   float: left;
}
header .qc-head-top .login-register ul li {
    float: left;
    padding: 0 6px;
    color: #999999;
    
}
header .qc-head-top .login-register ul li:first-child {
    background: none;
    padding-left: 0px;
}
header .qc-head-top .login-register ul li a {
    color: #999999;
}
header .qc-head-top .login-register ul li a:hover{
    color: #ffffff;
}
header .qc-head-top .minnav ul li {
    float: left;
    padding: 0 17px;
    position: relative;
}
header .qc-head-top .minnav ul li::after{
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background: #5a5a5a;
    position: absolute;
    left: 0px;
    top:9px;
}
header .qc-head-top .minnav ul li:first-child {
    background: none;
}
header .qc-head-top .minnav ul li:first-child::after{
    width: 0px;
}
header .qc-head-top .minnav ul li a {
    color: #999999;
}
header .qc-head-top .minnav ul li a:hover{
     color: #ffffff;
}
header .qc-head-middle {
    height: 107px;
    border-bottom: 1px solid #e6e6e6;
    overflow: hidden;
}

header .qc-head-middle .logo {
    /*margin-top: 20px;*/
}

header .qc-head-middle .phone {
    line-height: 100px;
}

header .qc-head-middle .phone p {
    display: inline-block;
    font-size: 14px;
    color: #666666;
    margin-left: 25px;
}

header .qc-head-middle .phone p span {
    font-size: 18px;
    color: #ff6c00;
    font-weight: bold;
}
header .qc-head-bottom{
    width: 100%;
    height: 53px;
    position: relative;
    background: #ffffff;

}
header .qc-head-fixed{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
     box-shadow:0 0 6px rgba(0,0,0,.3);
}
header .nav{
    position: relative;
}
header nav {
    width: 1040px;
    height: 53px;
    line-height: 53px;
    float: left;
}

header nav ul {
    position: relative;
}

header nav ul li {
    float: left;
    margin: 0 26px;
    height: 53px;
    line-height: 53px;
    text-align: center;
}
header nav ul li:nth-child(2){
    padding-right: 20px;
    background: url('../images/drop_down.png') right center no-repeat;
}
header nav ul li a {
    display: block;
    font-size: 16px;
    color: #000000;
    position: relative;
}
header nav ul li a::after{
    content: '';
    display: block;
    width: 20%;
    height: 3px;
    background:#00aeff;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .5s;
}

header nav ul li a:hover {
    color: #5681e5;
}
header nav ul li a:hover::after{
    opacity:1;
    width: 100%;
}
header nav ul .active{
    color: #5681e5;
}
header nav ul .active:after{
    opacity:1;
    width: 100%;
}

header .qc-online {
    float: right;
    width: 150px;
    height: 53px;
}

header .qc-online a {
    display: block;
    width: 120px;
    height: 34px;
    margin: 10px 0px;
    float: right;
    text-align: center;
    line-height: 34px;
    border-radius: 5px;
    background: #5681e5;
    color: #ffffff;
    font-size: 14px;
}
header .qc-online a:hover{
    background: #6c94f0;
}
.foot {
    float: left;
    width: 100%;
    height: 110px;
    padding: 0 35px;
    box-sizing: border-box;
    background-image: url(../images/foot.png)
}
.foot div {
    width: 20%;
    float: left;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 110px
}
.foot div span {
    font-size: 28px;
    margin-right: 10px
}
.footer {
    float: left;
    width: 100%;
    background-color: #384146
}
.footer-top {
    padding-top: 30px;
}
.footer-top-left {
    float: left
}
.footer-top-left-shang {
    font-size: 16px;
    color: #d96527;
    font-weight: 500;
    line-height: 30px
}
.footL{
    padding-top: 10px;
}
.topzt{
    font-size: 16px;
    color: #9b9ea0;
    float: left;
    margin-left: 10px;
    margin-top: 6px;
}
.footer-top-left-xia {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    line-height: 40px;
    float: left;
}
.footer-top-left-xia>img{
    padding-left: 4px;
    margin-top: 10px;
}
.footer-top-right {
    float: right;
}
.footer-top-right-shang {
    width: 100%;
    height: 30px
}
.footer-top-right-shang div {
    float: right
}
.footer-top-right-shang div .jtico {
    background: 0 0;
    height: 43px!important;
    padding: 0;
    margin: 0
}
#foot-img {
    padding-right: 40px;
    width: 300px;
    margin-right: -80px;
}
.footer-top-right-xia {
    padding: 14px 0;
    margin-top: 30px;
}
.footer-top-right-xia span {
    float: right;
    font-size: 16px;
    color: #fff;
    padding-left: 20px
}
.footQQ,.footWB,.footWX {
    display: inline-block
}
.footer-con {
    width: 100%;
    padding: 20px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #656565
}
.footer-con-five {
    width: 220px;
    float: left;
    padding: 20px 0
}
.footer-con-six {
    width: 80px;
    float: right;
    padding: 20px 0
}
.footer-con-five div,.footer-con-six div {
    display: inline-block;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    padding: 7px 0
}
.footer-con-five ul,.footer-con-six ul {
    padding-top: 25px;
    cursor: pointer
}
.footer-con-five ul li,.footer-con-six ul li {
    font-size: 14px;
    line-height:25px
}
.footer-con-five ul li a,.footer-con-six ul li a {
    text-decoration: none;
    color: #9b9ea0;
}
#cc {
    padding-bottom: 24px
}
.footer-button {
    width: 100%;
    height: 100px;
    color: #fff;
    position: relative
}
.footer-button-xx {
    width: 100%;
    overflow: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    cursor: default
}
.footer-button-sx {
    float: left
}
.footer-button-ux {
    width: 1010px
}
.footer-button-sx span {
    padding: 0 20px;
    border-right: 1px solid #747474;
    color: #747474;
    display: inline-block;
    margin-bottom: 8px;
    white-space: nowrap
}
.footer-button-sx span a{
    color: #9b9ea0
}
.foot-dzcon {
    position: relative;
    padding-bottom: 20px
}
.foot-dzcon>div {
    color: #6b6c6d;
    font-size: 14px;
    display: inline-block;
    padding: 20px 10px;
    padding-top: 10px;
    margin: 0 auto
}
.foot-dzcon>div>a {
    color: #6b6c6d;
    font-size: 16px;
}
.foot-dzRigt {
    position: absolute;
    right: 0
}
.product{
    padding-top: 30px;
    /*width:100%;*/
    position: absolute;
    top:53px;
    left: 0px;
    z-index: 10000;
    background: #ffffff;
    box-shadow:0 0 6px rgba(0,0,0,.3);
    display: none;
}
.product ul li{
    width: 300px;
    height:530px;
    float: left;
    border-left:1px solid #ededed;
    padding-left: 50px;
    padding-right: 25px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
}
.product ul li:first-child{
    border: none;
}
.product ul li dl{
   margin-bottom: 20px;
}
.product ul li dt{
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}
.product ul li dd{
    height: 40px;
    margin-bottom: 20px;
}
.product ul li dd img{
    display: block;
    width: 40px;
    height:40px;
    float: left;
    margin-right: 15px;
}
.product ul li dd a span{
    display: inline-block;
    font-size: 14px;
    color: #333333;
}
.product ul li dd a:hover span{
    color:#34bfff;
    text-decoration: underline;
}
.product ul li dd p{
    font-size: 12px;
    color: #888888;
    margin-top: 5px;
}
.product1{
    padding-top: 30px;
    /*width:100%;*/
    position: absolute;
    top:53px;
    left: 210px;
    z-index: 10000;
    background: #ffffff;
    box-shadow:0 0 6px rgba(0,0,0,.3);
    display: none;
}
.product1 ul li{
    width: 300px;
    height:530px;
    float: left;
    border-left:1px solid #ededed;
    padding-left: 50px;
    padding-right: 25px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
}
.product1 ul li:first-child{
    border: none;
}
.product1 ul li dl{
   margin-bottom: 20px;
}
.product1 ul li dt{
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}
.product1 ul li dd{
    height: 40px;
    margin-bottom: 20px;
}
.product1 ul li dd img{
    display: block;
    width: 40px;
    height:40px;
    float: left;
    margin-right: 15px;
}
.product1 ul li dd a span{
    display: inline-block;
    font-size: 14px;
    color: #333333;
}
.product1 ul li dd a:hover span{
    color:#34bfff;
    text-decoration: underline;
}
.product1 ul li dd p{
    font-size: 12px;
    color: #888888;
    margin-top: 5px;
}
.product2{
    padding-top: 30px;
    /*width:100%;*/
    position: absolute;
    top:53px;
    left: 10px;
    z-index: 10000;
    background: #ffffff;
    box-shadow:0 0 6px rgba(0,0,0,.3);
    display: none;
}
.product2 ul li{
    width: 300px;
    height:530px;
    float: left;
    border-left:1px solid #ededed;
    padding-left: 50px;
    padding-right: 25px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
}
.product2 ul li:first-child{
    border: none;
}
.product2 ul li dl{
   margin-bottom: 20px;
}
.product2 ul li dt{
    font-size: 18px;
    color: #333333;
    margin-bottom: 20px;
}
.product2 ul li dd{
    height: 40px;
    margin-bottom: 20px;
}
.product2 ul li dd img{
    display: block;
    width: 40px;
    height:40px;
    float: left;
    margin-right: 15px;
}
.product2 ul li dd a span{
    display: inline-block;
    font-size: 14px;
    color: #333333;
}
.product2 ul li dd a:hover span{
    color:#34bfff;
    text-decoration: underline;
}
.product2 ul li dd p{
    font-size: 12px;
    color: #888888;
    margin-top: 5px;
}
.subnav{
    width: 200px;
    height: auto;
    background: #ffffff;
    position: absolute;
    top: 53px;
    box-shadow:0 0 6px rgba(0,0,0,.3);
    z-index: 10000;
}
.sub1{
    left: 190px;
    display: none;
}
.sub2{
    left: 310px;
    display: none;
}
.sub3{
    left: 430px;
    display: none;
}
.subnav dl dd{
    padding:15px 20px;
    overflow: hidden;
    border-bottom:1px solid #ededed;
}
.subnav dl dd .pic{
    width: 40px;
    height: 40px;
    float: left;
}
.subnav dl dd .pic img{
    display: block;
    width: 40px;
    height:40px; 
}
.subnav dl dd .txt{
    width:105px;
    float: right;
}
.subnav dl dd a .txt  span{
    display: inline-block;
    font-size: 14px;
    color: #333333;
}
.subnav dl dd  a:hover .txt span{
    color:#34bfff;
    text-decoration: underline;
}
.subnav dl dd .txt p{
    font-size: 12px;
    color: #888888;
    margin-top: 5px;
}
.fixed-left{
    position: fixed;
    width: 121px;
    height: 60px;
    background: url('../images/mifb.png') no-repeat;
    bottom: 100px;
    border-radius: 0 1000px 1000px 0;
    cursor: pointer;
    display: block;
    z-index: 10000;
}
.fixed-right{
    position: fixed;
    top:200px;
    right:4px;
    z-index: 10000;
    cursor: pointer;  
}
.fixed-right .a1{
    display: block;
    width: 60px;
    height: 94px;
    background:url('../images/dz.png') no-repeat;
}
.fixed-right .a2{
    display: block;
    width: 60px;
    height: 122px;
    background:url('../images/mb.png') no-repeat;
}
.fixed-right .a3{
    display: block;
    width: 60px;
    height: 94px;
    background:url('../images/ols.png') no-repeat;
}
.fixed-right .a1:hover{
     background:url('../images/dz_on.png') no-repeat;
}
.fixed-right .a2:hover{
     background:url('../images/mb_on.png') no-repeat;
}
.fixed-right .a3:hover{
     background:url('../images/ols_on.png') no-repeat;
}
.gotop{
   position: fixed;
    width: 60px;
    height:68px;
    background: url('../images/up.png') no-repeat;
    bottom: 40px;
    right:4px;
    z-index: 10000;
    cursor: pointer;  
}
.gotop:hover{
    background: url('../images/up_on.png') no-repeat;
}
.contact-form{
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 120px;
    z-index: 99999;
    background: rgba(0,0,0,.8);
    display:none;
}
.contact-form .box{
    position: relative;
}
.contact-form .box::after{
    content: '';
    display: block;
    width:197px;
    height:150px;
    background: url('../images/contactform_bg.png') no-repeat;
    position: absolute;
    right: -100px;
    top: -30px;
}
.contact-form .txt{
    width: 500px;
    float: left;
    padding-top: 24px;
    color: #ffffff;
}
.contact-form .txt h5{
    font-size: 36px;
    font-weight: normal;
    
}
.contact-form .txt h5 span{
    color:#ffff00;
}
.contact-form .txt p{
    font-size: 24px;
    padding-left: 60px;
}
.contact-form .form{
    width: 530px;
    float: left;
    padding-top: 20px;
    font-size: 16px;
}
.contact-form .form li{
    width: 240px;
    height: 40px;
    padding-left: 60px;
    padding-right: 20px;
    border-radius: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    overflow: hidden;
}
.contact-form .form li:nth-child(1){
    background: url('../images/formname.png') left 20px center no-repeat;
     background-color: #ffffff;
}
.contact-form .form li:nth-child(2){
    background: url('../images/formphone.png') left 20px center no-repeat;
     background-color: #ffffff;
}
.contact-form .form li input{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: none;
    outline: none;
}
.contact-form .form .submit{
    display: block;
    width: 530px;
    height: 40px;
    margin-top: 10px;
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
    background: #5681e5;
    color: #ffffff; 
}
.contact-form .close{
    position: absolute;
    width: 23px;
    height: 23px;
    background: url('../images/form_close.png') no-repeat;
    right: 20px;
    top: 10px;
    cursor: pointer;
}
.tanmodal{
    width: 550px;
    height: 320px;
    background: url('../images/tcl2.png') no-repeat;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10000;
    display:none;
}
.tanmodal a{
    display: block;
    position: absolute;
    cursor: pointer;
}
.tanmodal .btn1{
    width: 20px;
    height: 23px;
    right: 17px;
    top: 16px;
}
.tanmodal .btn2{
    width:145px;
    height: 40px;
    left: 110px;
    bottom: 36px;
}
.tanmodal .btn3{
    width: 145px;
    height: 40px;
    left: 293px;
    bottom: 30px;
}
.error-page{
    padding: 200px 0px;
}
.error-page img{
    display: block;
    margin: 0 auto;
}
.error-page  h3{
    font-size: 32px;
    text-align: center;
    color: #5681e5;
    margin-top: 50px;
    padding-bottom: 10px;
    background: url('../images/txt_bg.png') center bottom no-repeat;
}
.error-page  p{
    font-size: 24px;
    color: #666666;
    text-align: center;
    margin-top: 70px;
}
.error-page  p span{
    color:#5681e5;
}
.error-page  a{
    display:block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    margin: 40px auto 0 auto;
    background: #5681e5;
    font-size: 20px;
    color: #ffffff;
}




/* 弹窗 */
.mess_Box{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 999999;
}
.mess_Box .D_Box{
    width: 520px;
    height: 290px;
    background: #fff;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    overflow: hidden;
}
.mess_Box .D_Box>h3{
    height: 55px;
    background: #5681e5;
    line-height: 55px;
    padding: 0 30px;
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    position: relative;
}
.mess_Box .D_Box>h3 i{
    display: block;
    width: 19px;
    height: 19px;
    background: url("../images/mess_cloes.png") no-repeat;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}
.mess_Box .D_Box .txt{
    width: 373px;
    margin: 0 auto;
}
.mess_Box .D_Box .txt>div{
    height: 152px;
    position: relative;
}
.mess_Box .D_Box .txt>div>div{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.mess_Box .D_Box .txt>div>.fr{
    left: 72px;
}
.mess_Box .D_Box .txt>div>.fl{
    left:0;
}
.mess_Box .D_Box .txt .icon_yes{
    width: 54px;
    height: 54px;
    background: url("../images/mess_yes.png") no-repeat;
}
.mess_Box .D_Box .txt .icon_no{
    width: 54px;
    height: 54px;
    background: url("../images/mess_no.png") no-repeat;
}
.mess_Box .D_Box .txt>div>.fr h3{
    margin-bottom: 5px;
}
.mess_Box .D_Box .txt>a{
    display: block;
    width: 100%;
    height: 44px;
    border: 1px solid #d4d4d4;
    border-radius: 1000px;
    line-height: 44px;
    font-size: 16px;
    text-align: center;
    color: #999999;
}