@charset "utf-8";
/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%; /* 10÷16=62.5% */
}

/* 去除iPhone中默认的input样式 */
input {
    /* -webkit-appearance:none; */
    resize: none;
}

/* 去除数字input中的上下箭头 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/* 取消链接高亮  */
body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, textarea, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article,
aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: Microsoft YaHei, Tahoma, Arial, Roboto, "Droid Sans", "Helvetica Neue", "Droid Sans Fallback", "Heiti SC", sans-self;
    list-style: none;
    -webkit-appearance: none;
    outline: none;
}

/* 设置HTML5元素为块 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 图片自适应 */
img {
    /*max-width: 100%;*/
    height: auto;
    width: auto\9; /* ie8 */
    -ms-interpolation-mode: bicubic; /*为了照顾ie图片缩放失真*/
}

*:focus {
    outline: none;
}

/* 清零 */
body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article,
aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
    border: none;
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}

a:active,a:link {
    text-decoration: none;
    /*color: #969696;*/
}

a:hover {
    color: #969696;
    text-decoration: none;
}

ul, ol, li {
    list-style: none;
}

fieldset, img {
    border: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th {
    text-align: left;
}

input:password {
    ime-mode: disabled;
}

* {
    box-sizing: border-box;
}

.line1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    line-clamp: 1;
    box-orient: vertical;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    line-clamp: 2;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*首页*/
.headBox {
    width: 100%;
    height: 100px;
    background: #F8F8F8;
}

.headcontent {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.head_logo {
    float: left;
    margin-top: 55px;
    width: 100px;
    height: 45px;
}

.head_logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.head_nav {
    float: right;
}

.search_b {
    width: 220px;
    height: 22px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 35px;
    float: right;
}

.search_b input {
    width: 190px;
    height: 22px;
    border-left: 1px solid #B8B6B6;
    border-top: 1px solid #B8B6B6;
    border-bottom: 1px solid #B8B6B6;
    float: left;
    display: block;
    border-radius: 5px 0 0 5px;
    padding: 0 5px;

}

.search_b a {
    width: 30px;
    height: 22px;
    display: block;
    float: left;
    background: #E60011 url("../images/search_nav.png") no-repeat center;

}

.search_b a:hover {
    background: #D8000F url("../images/search_nav.png") no-repeat center;
}

.nav_box ul {
    overflow: hidden;
    float: right;
    margin-top: 8px;
}

.nav_box li {
    float: left;
    font-size: 14px;
    font-weight: bold;
    width: 110px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.nav_box li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #797778;
}

.nav_box li.cur a {
    background: url("../images/navbg.png") no-repeat center;
    background-size: cover;
    color: #ffffff;
}

.nav_box li a:hover {
    background: url("../images/navbg.png") no-repeat center;
    background-size: cover;
    color: #ffffff;
}

/*首页轮播*/
#divSmallBox {
    overflow: hidden;
    display: inline;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 10px;
    background: #ffffff;
}

#playBox {
    width: 100%;
    height: 409px;
    background: #333;
    position: relative;
    overflow: hidden;
}

#playBox .oUlplay {
    width: 99999px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#playBox .oUlplay li {
    float: left;
    height: 100%;
}
#playBox .oUlplay li img {
    width: 100%;
    height: 100%;
}

#playBox .pre {
    cursor: pointer;
    width: 45px;
    height: 64px;
    background: url(../images/l.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 10;
    margin-top: -32px;
}

#playBox .next {
    cursor: pointer;
    width: 45px;
    height: 64px;
    background: url(../images/r.png) no-repeat;
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 10;
    margin-top: -32px;
}

#playBox .smalltitle {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 45px;
    z-index: 10
}

#playBox .smalltitle ul {
    width: 120px;
    margin: 0 auto;
}

#playBox .smalltitle ul li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 10px;
    background: rgba(255,255,255,0.3);
    float: left;
    overflow: hidden;
    display: inline;
}
#playBox .smalltitle ul li:hover {
    cursor: pointer;
}

#playBox .smalltitle .thistitle {
    background: #ffffff;
}



.productBox {
    padding: 50px 0;
    width: 1200px;
    margin: 0 auto;
}

.tit_head {
    font-size: 48px;
    text-align: center;
    color: #696969;
    letter-spacing: 5px;
    font-weight: normal;
}
.tit_name {
    font-size: 22px;
    color: #696969;
    text-align: center;
    line-height: 280%;
}


.container {
    margin: 0 auto;
    max-width: 600px;
}

.carousel {
    margin: 0 30px;

}
.carousel[data-shift="1"] .carousel-inner > .item {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.carousel .carousel-inner > .item.row {
    margin: 0;
}
.carousel .carousel-control {
    color: transparent;
    overflow: hidden;
    text-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    top: 50%;
    background: url("../images/pro_arr.png") no-repeat center;
}
.carousel .carousel-control:before {
    color: #444;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;

}
.carousel .carousel-control:after {
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    content: '';
    height: 60%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 100%;
}
.carousel .carousel-control:hover:after {

}
.carousel .carousel-control.left {
    left: -30px;
    -moz-transform:scaleX(-1);
    -webkit-transform:scaleX(-1);
    -o-transform:scaleX(-1);
    transform:scaleX(-1);
}
.carousel .carousel-control.left:before {

}
.carousel .carousel-control.left:after {
    right: -100%;
}
.carousel .carousel-control.right {
    right: -30px;
}
.carousel .carousel-control.right:before {

}
.carousel .carousel-control.right:after {
    left: -100%;
}

.carousel-inner {
    height: 461px;
    overflow: hidden;
    margin-top: 55px;
    padding-left: 6px;
}

.carousel-inner li {
    width: 366px;
    height: 461px;
    margin:0 5px;
    padding: 0;
}

.carousel-inner li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}
.carousel-inner li a img {
    position: absolute;
}
.carousel-inner li a img.norm {
    top: 5px;
    left: 9px;
    width: 348px;
    height: 443px;
}
.carousel-inner li a img.hover {
    top: 100%;
    left: 0;
    width: 366px;
    height: 461px;
}

.carousel-inner li a:hover img.hover {
    top: 0;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}


.video_box {
    margin-top: 20px;
}

.video_cont {
    width: 100%;
    height: 690px;
    background: #000000;
    margin-top: 30px;
    position: relative;
}

.video_cont .video_list {
    width: 100%;
    height: 100%;
    position: relative;
}
.video_cont .video_list li {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}
.video_cont .video_list li.now {
    display: block;
}
.startbt {
    display: block;
    width: 72px;
    height: 72px;
    background: url("../images/startbt.png") no-repeat center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -36px;
    margin-top: -36px;
    cursor: pointer;
    opacity: 0.6;
}
.startbt:hover {
    opacity: 1;
}
.video_nav {
    width: 280px;
    height: 550px;
    background: #454545;
    border-radius: 5px;
    position: absolute;
    top:60px ;
    left: -265px;
    box-shadow:0 0 10px 5px #2D2929 ;
    padding: 15px;
}
.video_nav:hover {
    left: 0;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.video_nav:hover .arrrnav {
   display: none;
}
.video_nav ul {
    background: #202020;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #262626;
}
.video_nav ul h1 {
    font-size: 28px;
    color: #FF0000;
    font-weight: bold;
    padding: 15px 10px;
}

.video_nav ul li {
    height: 50px;
    width: 100%;
    background: #3C3C3C;
    border-bottom: 1px solid #202020;
    line-height: 50px;
    position: relative;

}

.video_nav ul li a:active,.video_nav ul li a:link {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #FF0000;
    padding: 0 10px;
    text-decoration: none;
}

.video_nav ul li.cur a {
    background: #FF0000;
    /*color: #ffffff;*/
    color: #ffffff;
}

.video_nav ul li a:hover {
    /*background: #FF0000;*/
    color: #ffffff;
}
.arrrnav {
    width: 15px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 0;
    background: url("../images/aee.png") no-repeat center right;
}
.video_nav ul li .aee {
    height: 55px;
    width: 15px;
    display: none;
    background: url("../images/aee.png") no-repeat center;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: -15px;
}
.video_nav ul li.cur .aee {
    display: block;
}

.pro_anli {
    padding: 50px 0;
}
.video_img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.video_img img{
    text-align: center;
    height: 100%;
    width: 100%;
}

.anli_box {
    width: 1200px;
    margin: 0 auto;
    padding-top: 200px;
}
.anli_box ul li:first-child .logobox {
    box-shadow:-2px -2px 15px 2px #F8F8F8 ;
}
.anli_box ul li:last-child .logobox {
    box-shadow:2px 2px 15px 2px #F8F8F8 ;
}
.logobox {
    width: 200px;
    height: 200px;
    overflow: hidden;
    /*box-shadow:0 0 10px 2px #E8E8E8 ;*/
    border: 1px solid #E4E4E4;
    float: left;
    margin-left: 84px;
    margin-top: 50px;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg); 	/* Opera */
    transform:rotate(45deg);
}
.logobox:hover {
    box-shadow:0 0 10px 5px #E8E8E8 ;
    border: 1px solid #B1AFAF;
}
.logobox a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    -ms-transform:rotate(-45deg); 	/* IE 9 */
    -moz-transform:rotate(-45deg); 	/* Firefox */
    -webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
    -o-transform:rotate(-45deg); 	/* Opera */
    transform:rotate(-45deg);
}
.logobox a img {
    height: 60%;
}
.logobox a h2 {
    font-size: 16px;
    color: #484848;
    margin-top: 3px;
}
.logobox a p {
    font-size: 14px;
    color: #898989;
    padding: 5px 16px;
}
.anli_box li {
    overflow: hidden;
    height: 300px;
    margin-top: -159px;
}
.anli_box .three {
    padding-left: 142px;
}

.anli_box .four .logobox:first-child {
    box-shadow:-5px 5px 10px 2px #F8F8F8 ;
}

.anli_box .four .logobox:last-child {
    box-shadow:5px -5px 10px 2px #F8F8F8 ;
}



.jxs_cont {
    width: 100%;
    padding: 90px 0;
    background: #E50011;
    margin-top: 40px;
}

.jxs_bb {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.jxs_bb li {
    overflow: hidden;
}
.jxs_bb li span {
    width: 150px;
    text-align: right;
    color: #ffffff;
    font-size: 18px;
    /*font-weight: bold;*/
    border-right: 2px solid #fff;
    padding-right: 30px;
    padding-top: 8px;
    padding-bottom: 5px;
    display: block;
    float: left;
}
.jxs_bb ul {
    padding-right: 340px;
}
.jxs_bb li a {
    margin: 0 0 0 10px;
    color: #FDEAEB;
    font-size: 16px;
    line-height: 38px;
    width: 60px;
    display: block;
    float: left;
}
.search_tt {
    position: absolute;
    width: 336px;
    height: 44px;
    top: 0;
    right: 0;
    background: #ffffff;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 5px;
    border: 2px solid #D00615;
}
.search_tt input {
    width: 100%;
    height: 100%;
    background: url("../images/search_bb.png") no-repeat center right;
    padding-right: 25px;
}
.search_tt a {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top:0;
}
.footer {
    background: #4B4A4A;
    padding: 80px 0;
}
.footer_cont {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-bottom: 1px solid #959595;
    padding-bottom: 50px;
}

.footleft {
    width: 600px;
	height: 268px;
    float: left;
    border-right: 1px solid #959595;
}

.footleft h3 {
    font-size: 18px;
    color: #959595;
    font-weight: bold;
}
.footleft p {
    margin-top: 8px;
}
.footleft p a {
    font-size: 14px;
    color: #959595;
}
.footleft p a:hover {
    text-decoration: underline;
}
.footleft li {
    float: left;
    margin-right: 90px;
}


.footright {
    width: 520px;
    float: right;
    padding-left: 80px;
}


.fr_left {
    overflow: hidden;
    width: 280px;
    float: left;
}

.phtel {
    background: url("../images/phone.png") no-repeat left center;
    height: 50px;
    padding-left: 25px;
    color: #959595;
}

.phtel p {
    font-size: 14px;
    line-height: 170%;
}

.phtel h2 {
    font-size: 24px;
}
.zax {
    width: 190px;
    height: 46px;
    display: block;
    background: #E50011;
    color: #ffffff;
    line-height: 45px;
    text-align: center;
    border-radius: 46px;
    border: 2px solid #454444;
    margin-top: 30px;
}
.zax:hover {
    color: #ffffff;
    background: #D60312;
}

.libt {
    margin-top: 10px;
}
.libt a {
    width: 30px;
    height: 30px;
    display: block;
    float: left;
    margin-right: 10px;
}
.libt .weix {
    background: url("../images/weixin.png") no-repeat center;
}
.libt .email {
    background: url("../images/youx.png") no-repeat center;
}

.fr_right {
    width: 135px;
    height: 135px;
    background: #ffffff;
    float: right;
    padding: 5px;
}

.fr_right img {
    width: 100%;
    height: 100%;
}

.info {
    color: #959595;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}





.saocode {
    width: 100%;
    border-top: 1px solid #DCDCDC;
    margin-top: 10px;
}

.saocode p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #FF0505;
    margin-top: 10px;
    line-height: 130%;
}
.top_erwei {
    width: 80%;
    margin: 20px auto 0 auto;
    text-align: center;
}
.top_erwei img {
    max-width: 100%;
}

/*产品中心*/
.banner_yo {
    width: 100%;
}
.banner_yo img {
    width: 100%;
    display: block;
}
.pro_list {
    padding-bottom: 50px;
}

.pro_list li {
    padding: 40px 0;
}
.pro_list li:hover {
    background: url("../images/prolist_bg.png") repeat-x;
    background-size: auto 100%;
}
.pro_cont {
    width: 870px;
    margin: 0 auto;
    padding: 55px 0 25px 0;
    border-radius: 10px;
    box-shadow:0 0 10px 5px rgba(0,0,0,0.1) ;
    background: -webkit-linear-gradient(#ffffff, #F7F7F7); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#ffffff, #F7F7F7); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#ffffff, #F7F7F7); /* Firefox 3.6 - 15 */
    background: linear-gradient(#ffffff, #F7F7F7);
    position: relative;
}

.pro_tlogo {
    width: 270px;
    height: 80px;
    /*background: #F6F7F7;
    box-shadow:0 0 10px 5px rgba(0,0,0,0.1) ;
    border: 1px solid #ffffff;
    border-radius: 10px;*/
    margin-top: -40px;
    position: absolute;
    left: 0;
    top: 50%;
    text-align: center;
}
.pro_tlogo img {
    margin-top: 10px;
    width: 170px;
}
.pro_text {
    width: 100%;
    padding-left: 280px;
    overflow: hidden;
    padding-right: 20px;
}
.pro_text .tit1 {
     font-size: 14px;
     color: #8A8A8A;

}

.pro_text .tit2 {
    font-size: 26px;
    color: #E50012;
    text-shadow: 0 -1px 1px #8B030D;
    margin-top: 5px;
}

.pro_text .tit3 {
    font-size: 18px;
    color: #8A8A8A;
    margin-top: 5px;
}

.btlink {
    width: 105px;
    height: 35px;
    display: block;
    line-height: 30px;
    color: #ffffff;
    padding-left: 15px;
    font-size: 14px;
    background: url("../images/pro_link.png") no-repeat;
    background-size: 100% 100%;
    margin-top: 10px;
    margin-left: 25px;
    float: right;
}

.btlink:hover {
    color: #ffffff;
}

/*获取服务*/
.serText_banner {
    margin-top: 50px;
}
.serText_banner>p {
    /*font-family:"微软细黑";*/
    font-size: 30px;
    text-align: center;
    letter-spacing: 12px;
    color: #939393;
    line-height: 160%;
    font-weight: lighter;
}


.ser_list {
    width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    padding-bottom: 100px;
}
.ser_list li {
    width: 300px;
    float: left;
    margin: 10px 50px 30px 50px;
}
.ser_list li .ser_tit {
    font-size: 24px;
    color: #757575;
    text-align: center;
    letter-spacing: 10px;
    margin-bottom: 22px;
}
.ser_box {
    width: 300px;
    height: 350px;
    border: 1px solid #D7D7D7;
    border-radius: 10px;
    box-shadow:0 0 10px 5px rgba(0,0,0,0.1) ;
    padding: 15px 30px 25px 30px;
}

.ser_box h1 {
    text-align: center;
    margin-top: 10px;
}
.ser_box h1 img {
    height: 50px;
}

.ser_contt {
    text-align: center;
    margin-top: 20px;
    height: 140px;
}
.ser_contt img {
    max-width: 45%;
}


.bot_tex {
    font-size: 14px;
    color: #3F3F3F;
    margin-top: 5px;
    line-height: 160%;
}


.act_tex {
    margin-top: 20px;
    margin-bottom: 60px;
}
.act_tex .actBt {
    text-align: center;
}
.ser_contt .actBt {
    padding-top: 30px;
}
.actBt>a {
    display: block;
    width: 210px;
    height: 40px;
    background: #FF0202;
    border-radius: 5px;
    margin: 0 auto;
    line-height: 40px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    box-shadow:1px 1px 10px 1px rgba(0,0,0,0.2) ;
}
.actBt>a:hover {
    background: #D80303;
}
.act_p {
    text-align: center;
    font-size: 16px;
    color: #3F3F3F;
    margin-top: 30px;
}

.ser_contt .bigt {
    font-size: 26px;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.ser_contt.nows .bigt {
    color: #FF0202;
}

.ser_contt.ear .bigt {
    color: #02ABFF;
}
.ser_contt.tel .bigt {
    color: #8DB041;
}
.ser_contt.tel .bigt.litt {
    color: #8DB041;
    font-size: 20px;
    font-weight: normal;
}
.ser_contt.isd {
    margin-top: 10px;
}
.ser_contt.isd .actBt {
    padding-top: 10px;
}
.ser_contt.isd .isdact {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
    color: #3F3F3F;
}
.ser_contt .actBt>a {
    font-size: 16px;
}


/*解决方案*/
.sol_banner {
    width: 100%;
}
.sol_banner img {
    width: 100%;
    display: block;
}

.sol_tag {
    width: 1200px;
    margin: -50px auto 0 auto;
    position: relative;
}
.tagbox {
    padding: 0 65px;
    overflow: hidden;
}
.tagbox li {
    width: 200px;
    height: 50px;
    float: left;
    line-height: 50px;
    margin-left: 120px;
}
.tagbox li a {
    display: block;
    width: 100%;
    height: 100%;
    background: #E11313;
    border-radius: 10px 10px 0 0;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.tagbox li a:hover {
    background: #FCFCFC;
    color: #E50012;
}

.tagbox li.cur a {
    background: #FCFCFC;
    color: #E50012;
}

.tagCont {
    width: 1200px;
    background: #FAFBFB;
    border-radius: 10px;
    box-shadow:0 0 10px 5px rgba(0,0,0,0.1) ;
    margin-bottom: 80px;
}
.sol_cont.solbb {
    padding: 45px 20px;
}

.sol_cont.solbb .sol_tit {
    text-align: center;
    font-size: 18px;
    color: #E50012;
    width: 490px;
    margin: 0 auto;
    line-height: 170%;
}
.sol_cont.solbb ul {
    overflow: hidden;
}
.sol_cont.solbb li {
    width: 350px;
    height: 250px;
    float: left;
    margin: 20px 20px 0 16px;
    overflow: hidden;

}
.sol_cont.solbb li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
}
.sol_cont.solbb li img {
    width: 100%;
    height: 190px;
}


.indtit_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 84px;
    left: 0;
    /* background: rgba(0,0,0,0.4); */
}
.indtit_box p {
    color: #ffffff;
    height:85px;
    font-size: 20px;
    text-align: center;
    padding: 0 15px;
    line-height: 60px;
}

.sol_cont.solbb li a:hover {
    border: 2px solid #ffffff;
    box-shadow:0 2px 10px 5px rgba(0,0,0,0.8) ;
}
.sol_cont.solbb li a:hover .indtit_box {
    top: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sol_cont.solbb li a:hover .indtit_box p {
    font-size: 24px;
    text-align: center;
    line-height: 250px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sol_cont.solbb li a:hover img {
    height: 100%;
    width: auto;
    max-width: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.role_sol {
    overflow: hidden;
    padding-bottom: 30px;
}
.sol_cont.solbb .role_sol li {
    width: 310px;
    height: 205px;
    float: left;
    border-radius: 10px;
    box-shadow:0 2px 10px 5px rgba(0,0,0,0.2) ;
    background: #FBFCFB;
    border: 1px solid #DCDCDC;
    margin: 40px 20px 20px 47px;
}
.role_sol li a {
    padding-top: 50px;
}
.sol_cont.solbb .role_sol li a:hover {
    border: none;
    box-shadow:none;
}
.role_sol h1 {
    font-size: 44px;
    color: #747171;
    text-align: center;
    font-style:italic;
    font-weight: bold;
}
.role_sol .zw_tit {
    text-align: center;
    color: #9A9797;
    font-size: 16px;
}


/*经典案例*/
.sutratt {
    padding: 50px 20px;
    overflow: hidden;
}
.sutratt li {
    width: 240px;
    height: 225px;
    background: #ffffff;
    float: left;
    box-shadow:0 2px 10px 5px rgba(0,0,0,0.2) ;
    margin: 30px 25px 0 25px;
}
.sutratt li:hover {
    border: 1px solid #A2A2A2;
}
.sutratt li a {
    display: block;
    width: 100%;
    height: 100%;
}

.sutratt li img {
    width: 241px;
    height: 153px;
}
.sutratt li .anlitext {
    padding: 0 5px;
}
.sutratt li .anlitext h1 {
    font-size: 18px;
    color: #747171;
    font-weight: normal;
    line-height: 180%;
}

.sutratt li .anlitext p {
    font-size: 16px;
    color: #8F8E8E;
}
.sutratt ul {
    overflow: hidden;
    padding: 20px 0;
}

.anlitit {
    border-top: 1px solid #CECECE;
    width: 600px;
    margin: 50px auto 0 auto;
    text-align: center;
}

.anlitit span {
    display: -webkit-inline-box;
    display: inline-box;
    padding: 10px 20px;
    margin-top: -36px;
    font-size: 32px;
    color: #838383;
    background: #FAFBFB;
}

/*体验中心*/
.taste_banner {
    text-align: center;
    color: #757575;
    font-size: 48px;
    line-height: 170%;
    letter-spacing: 15px;
    padding: 50px 0;
}

.taste_motit {
    height: 55px;
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #8E8E8E;
    letter-spacing: 10px;
    background: #F8F8F8;
    line-height: 55px;
}

.taste_cut {
    width: 940px;
    margin: 0 auto 50px auto;
}

.taste_cut .carousel-inner {
    margin-top: 35px;
    height: 115px;
}

.taste_cut .carousel-inner li {
    width: 245px;
    height: 115px;
    margin: 0 20px;
    padding: 0;
}
.taste_cut .carousel-inner li a img.norm {
    top: 5px;
    left: 9px;
    width: 245px;
    height: 115px;
    opacity: 0.5;
}


.taste_cut .carousel-inner li.cur a img.norm {
    opacity: 1;
}


.taste_choose {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 0;
}

.choose_left {
    width: 500px;
    float: left;
}

.choose_left h2 {
    font-size: 24px;
    color: #FF0013;
    font-weight: normal;
    text-align: center;
}

.chlebox {
    width: 100%;
    height: 400px;
    margin: 20px auto 0 auto;
    border-radius: 10px;
    border: 1px solid #DDDDDD;
    box-shadow:0 5px 10px 3px rgba(0,0,0,0.1) ;
    padding: 40px 30px;
}

.chlebox label {
    display: block;
    float: left;
    width: 120px;
    margin-left: 20px;
    font-size: 18px;
    color: #786D5D;
    line-height: 19px;
    font-weight: normal;
    margin-bottom: 50px;
}
.chlebox label input {
    margin-right: 10px;
    float: left;
}



.choose_right {
    width: 600px;
    float: left;
    margin-left: 50px;
}

.choose_right h2 {
    font-size: 24px;
    color: #FF0013;
    font-weight: normal;
    text-align: center;
}

.choose_right .chlebox {
    width: 100%;
    height: 400px;
    margin: 20px auto 0 auto;
}


.choose_right .chlebox label {
    display: block;
    float: left;
    width: 150px;
    margin-left: 20px;
    font-size: 18px;
    color: #786D5D;
    line-height: 19px;
    font-weight: normal;
    margin-bottom: 50px;
}


.taste_choose.infor .choose_left {
    width: 580px;
}

.taste_choose.infor .choose_right {
    width: 580px;
    margin-left: 30px;
}
.taste_choose.infor .chlebox {
    padding: 15px 30px 15px 0;
}
.ch_tit {
    text-align: center;
    font-size: 18px;
    color: #FF0013;
    margin-bottom: 30px;
}
.formtext li {
    height: 42px;
    line-height: 42px;
    padding: 0 80px;
    margin-top: 20px;
}

.formtext li span {
    color: #786D5D;
    font-size: 18px;
    padding-right: 10px;
}
.formtext li input {
    width: 270px;
    height: 42px;
    border: 1px solid #DDDDDD;
    padding: 5px;
    border-radius: 5px;
}
.redtt {
    margin-top: 30px;
    padding-left: 80px;
}
.redtt span {
    float: left;
    font-size: 18px;
    color: #786D5D;
}


.submitbt {
    width: 215px;
    height: 45px;
    background: #E60011;
    border-radius: 5px;
    margin: 50px auto;
}
.submitbt a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 45px;
    color: #ffffff;
    font-size: 20px;
}


.taste_choose.contgw .choose_left {
    width: 810px;
    padding: 15px;
}

.taste_choose.contgw .choose_right {
    width: 360px;
    margin-left: 30px;
    margin-top: 15px;
}

.contgw_top {
    overflow: hidden;
}

.gw_pic {
    width: 310px;
    height: 170px;
    background: #F8F8F8;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding: 5px;
    float: left;
}
.gw_pic img {
    height: 100%;
    width: 120px;
    border-radius: 5px;
    border: 1px solid #CCCACA;
    float: left;
}
.gwtext {
    float: left;
    margin-left: 10px;
    margin-top: 20px;
}
.gwtext h1 {
    font-size: 36px;
    color: #939393;
}

.gwtext p {
    font-size: 18px;
    color: #939393;
    margin-top: 5px;
}

.gwtext p.clo {
    font-size: 14px;
    color: #E60012;
}

.gwright {
    float: right;
    width: 390px;
}
.gwright p {
    font-size: 18px;
    color: #939393;
}

.gwright .worktime {
    margin-top: 70px;
}

.contbot_tit {
    color: #939393;
    font-size: 18px;
    margin-top: 25px;
}
.contgw_left {
    float: left;
}
.formbbs {
    margin-top: 20px;
}
.formbbs span {
    font-size: 14px;
    color: #939393;
    padding-right: 10px;
}
.formbbs li {
    margin-top: 10px;
}
.formbbs input {
    width: 90px;
    height: 22px;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    padding: 0 5px;
}


.areabbs {
    float: left;
    margin-left: 30px;
    margin-top: 20px;
}

.areabbs textarea {
    width: 460px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    height: 90px;
    padding: 5px;

}

.bbssub {
    width: 55px;
    height: 30px;
    display: block;
    float: left;
    background: #F8F8F8;
    border: 1px solid #E1E1E1;
    border-radius: 3px;
    text-align: center;
    line-height: 30px;
    color: #939393;
    font-size: 14px;
    margin-top: 80px;
    margin-left: 10px;
    box-shadow:0 2px 3px 1px rgba(0,0,0,0.1) ;
}
.bbssub:hover {
    background: #EDEDED;
}


.bbsteh {
    margin-top: 30px;
    text-align: center;
    font-size: 26px;
    color: #363636;
}

.bbserw {
    width: 170px;
    height: 170px;
    margin: 30px auto;
}
.bbstx {
    text-align: center;
    color:#838383 ;
    font-size: 18px;
}


/*解决方案详情*/
.sol_details {
    width: 1200px;
    overflow: hidden;
    margin: 0 auto;
    padding: 50px 0;
}
.details_cont {
    width: 700px;
    float: left;
    margin-left: 80px;
}
.details_side {
    width: 300px;
    float: left;
    margin-left: 40px;
}
.selectbx {
    overflow: hidden;
    margin-bottom: 50px;
}
.selectbx select {
    width: 330px;
    height: 40px;
    border: 2px solid #BABABA;
    border-radius: 5px;
    font-size: 2rem;
    margin-top: 5px;
}

.selectbx select option:hover {
    background: #DC0000;
}

.selectbx label {
    font-size: 36px;
    color: #5E5E5E;
    float: left;
    padding-right: 35px;
}

.detai_cont {
    text-align: left;
    margin-top: 50px;
}
.detai_cont h1 {
    font-size: 40px;
    font-weight: normal;
    color: #5D5D5D;
}
.detai_cont p {
    font-size: 18px;
    color: #727272;
    margin-top: 20px;
    line-height: 160%;
}

.adjbx li {
    height: 70px;
    width: 100%;
    background: #C5C5C5;
    margin-top: 30px;
    line-height: 70px;
    padding: 0 10px;
}
.adjbx li a {
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/icon_pdf.png") no-repeat center left;
    padding-left: 55px;
    color: #747171;
    font-size: 22px;
}
.adjbx li a:hover {
    text-decoration: underline;
}


.details_side {
    border: 2px solid #D3D3D3;
    border-radius: 5px;
    padding: 10px;
}
.details_side h1 {
    color: #6D6D6D;
    font-size: 26px;
}

.details_side li {
    height: 130px;
    padding: 20px 0;
    border-bottom: 1px solid #C5C5C5;
}
.details_side li:last-child {
    border-bottom: none;
}
.details_side li img {
    height: 100%;
    width: 140px;
    float: left;
    display: block;
}
.details_side li a {
    padding-left: 10px;
    color: #747171;

}
.details_side li a:hover {
    text-decoration: underline;
}
.details_side li a * {
    padding-left: 150px;
}

.details_side li a h2 {
    font-size: 16px;
    margin-bottom: 5px;

}
.details_side li a p {
    font-size: 12px;
    color: #8F8E8E;
}

.role_top {
    overflow: hidden;
    height: 150px;
}
.role_top img {
    float: left;
    display: block;
    height: 100%;
    width: 220px;
}

.role_top h1 {
    padding-left: 230px;
    color: #DC0000;
    font-size: 40px;
}

.role_top p {
    padding-left: 230px;
    color: #727272;
    font-size: 24px;
}

.role_top p span {
    color: #DC0000;
    font-size: 26px;
}

.zldown {
    background: url("../images/dw.png") no-repeat left center;
    padding-left: 30px;
    font-size: 22px;
    color: #747171;
    font-weight: normal;
}
.details_side.zldbx li {
    height: 60px;
    padding: 10px 10px;
    line-height: 40px;
}
.details_side .pdfdw {
    background: url("../images/icon_pdf.png") no-repeat center left;
    background-size: auto 100%;
    padding-left: 55px;
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    color: #8F8E8E;
}

/*经典案例详情*/
.caseTop {
    padding: 70px 0;
    border-bottom: 1px solid #D4D4D4;
}

.casecont {
    width: 1200px;
    margin:0 auto;
    overflow: hidden;
}
.casecont .caseName {
    font-size: 40px;
    color: #5E5E5E;
}
.case_info {
    margin-top: 50px;
}
.case_info .case_img {
    width: 550px;
    height: 330px;
    display: block;
    float: left;
    margin-right: 50px;
}
.case_info a .caseLogo {
    height: 80px;
    margin-bottom: 20px;
}

.case_info a p {
    font-size: 18px;
    color: #727272;
    line-height: 170%;
}

.casecName {
    font-size: 40px;
    color: #5E5E5E;
    margin-bottom: 20px;
}

.caseCont {
    width: 1200px;
    margin: 0 auto;
    padding: 35px 0;
    overflow: hidden;
}
.casebox {
    font-size: 18px;
    color: #727272;
    line-height: 170%;
}


.caseleft {
    width: 710px;
    float: left;
}

.caseright {
    width: 330px;
    float: right;
    border: 2px solid #D3D3D3;
    border-radius: 10px;
    padding: 20px;
}
.bta {
    overflow: hidden;
}
.bta span {
    width: 50%;
    display: block;
    float: left;
    font-size: 16px;
    color: #8F8E8E;
    margin-top: 10px;
}

.anlidw.zldbx {
    margin-top: 20px;
}


.anlidw.zldbx li {
    height: 60px;
    padding: 10px 10px;
    line-height: 40px;
}
.anlidw .pdfdw {
    background: url("../images/icon_pdf.png") no-repeat center left;
    background-size: auto 100%;
    padding-left: 55px;
    display: block;
    height: 100%;
    width: 100%;
    font-size: 16px;
    color: #8F8E8E;
}
.anlidw .pdfdw:hover {
    text-decoration: underline;
}

.btimg {
    width: 100%;
    margin-top: 15px;
}


.conter {
    width: 1200px;
    margin: 0 auto;
}
.Utop {
    padding: 40px 0 20px 0;
}
.proName {
    font-size: 36px;
    color: #DC0000;
    text-align: center;
}


.prolitName {
    text-align: center;
    font-size: 24px;
    color: #5E5E5E;
    font-weight: normal;
    margin-top: 15px;
}
.pro_ttx {
    font-size: 18px;
    color: #727272;
    margin-top: 15px;
    line-height: 180%;
    padding: 0 50px;
    margin-bottom: 50px;
}


.proppt {

}

.proppt li {
    padding: 40px 0;
    overflow: hidden;
    height: 345px;
}

.propp_left {
    width: 50%;
    height: 100%;
    float: left;
    font-size: 18px;
    color: #727272;
    padding: 40px 60px;
    line-height: 180%;
    vertical-align:middle;
}

.propp_right {
    width: 50%;
    height: 100%;
    float: left;
}
.propp_right img {
    height: 100%;
}
.colpro {
    background: #F6F6F6;
}


.aplaybt {
    width: 260px;
    height: 55px;
    margin: 50px auto;
}
.aplaybt a {
    width: 100%;
    height: 100%;
    display: block;
    color: #ffffff;
    text-align: center;
    background: #FF0202;
    border-radius: 10px;
    line-height: 55px;
    font-size: 28px;
}

.aplaybt a:hover {
    background: #E80808;
}


/*合作伙伴*/
.partnertt {
    overflow: hidden;
    margin-bottom: 50px;
}


.partner_tags {
    width: 15%;
    float: left;
}
.partner_tit {
    font-size: 30px;
    color: #DC0000;
    padding: 30px 0 20px 40px;
}


.partner_tags li {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
}
.partner_tags li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #595959;
    padding-left: 30px;
}

.partner_tags li a:hover {
    color: #000000;
}

.partner_tags li.cur a {
    background:#DC0000 ;
    color: #ffffff;
    border-radius: 10px 0 0 10px;
}


.partner_cont {
    width: 83%;
    float: left;
    border: 1px solid #B7B7B7;
    margin-left: -1px;
    margin-top: -10px;
    border-radius: 10px;
    padding: 35px;
    min-height: 500px;
}

.partner_cont li {

}

/*服务认证*/
.approve {
    height: 800px;
    margin: 30px auto;
    background: url("../images/approve_bg.png") no-repeat center;
    background-size: 100% 100%;
    padding: 45px;
}

.apprnav a {
    font-size: 18px;
    color: #6A6A6A;
    text-decoration: underline;
}
.apprnav a:hover {
    color: #000000;
}

.appro_box {
    width: 720px;
    margin: 60px auto 0 auto;
}

.appro_box h1 {
    font-size: 60px;
    color: #DF0000;
    text-align: center;
}
.appro_box h2 {
    font-size: 28px;
    color: #737373;
    text-align: center;
    font-weight: normal;
}

.appr_input {
    margin-top: 80px;
}
.inputbx {
    border: 1px solid #CDCDCD;
    border-radius: 5px;
    height: 60px;
    width: 530px;
    float: left;
    background: #ffffff;
}
.appr_input select {
    width: 120px;
    border-radius: 5px;
    height: 55px;
    padding: 0 5px;
    font-size: 20px;
    color: #737373;
}
.appr_input input {
    height: 55px;
    width: 400px;
    font-size: 20px;
}

.searchbbt {
    display: block;
    width: 120px;
    height: 60px;
    background: #DF0000;
    color: #ffffff;
    text-align: center;
    line-height: 60px;
    float: right;
    font-size: 24px;
    border-radius: 10px;
}
.searchbbt:hover {
    background: #C40303;
    color: #ffffff;
}

.yanzcode {
    width: 100%;
    margin-top: 50px;
}

.yanzcode>span {
    font-size: 20px;
    color: #A3A3A3;
    font-weight: normal;
    float: left;
    line-height: 60px;
    margin-right: 10px;
}
.yanzcode>input {
    font-size: 20px;
    color: #A3A3A3;
    width: 130px;
    height: 60px;
    border: 1px solid #CDCDCD;
    background: #ffffff;
    border-radius: 10px;
    padding: 5px;
    float: left;
}

.yanzcode a {
    display: block;
    float: left;
    margin-left: 20px;
    height: 60px;
    line-height: 60px;
    padding-top: 10px;
}
.yanzcode a img {
    float: left;
    margin-right: 20px;
}
.yanzcode a span {
    line-height: 60px;
    font-size: 18px;
    color: #6A6A6A;
}
.yanzcode a span:hover {
    color: #000;
    text-decoration: underline;
}

/*实施服务*/
.ss_banner img {
    width: 100%;
}

/*应用服务*/
.useVideo {
    width: 100%;
    height: 540px;
    background: #000000;
    position: relative;
}

.cont_top {
    font-size: 36px;
    color: #3A3A3A;
    text-align: center;
    margin-top: 40px;
    font-weight: normal;
}

.proshow {
    width: 100%;
    height: 290px;
    border: 1px solid #BABABA;
    margin: 50px 0 0 0;
}

.proshow a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px 0;
}
.proshow a:hover {
    background: #F5F5F5;
}
.proshow img {
    margin-top: 20px;
}
.proshow .nom {
    color: #8A8A8A;
    font-size: 18px;
    margin-top: 10px;
}

.proshow .bnom {
    color: #E50012;
    font-size: 40px;
    margin-top: 10px;
}

.proshow .snom {
    color: #8A8A8A;
    font-size: 24px;
    margin-top: 10px;
}

.knowlist {
    height: 60px;
    line-height: 60px;
    text-align: right;
}

.knowlist a {
    font-size: 16px;
    color: #E92C3B;
}
.knowlist a:hover {
    text-decoration: underline;
}


.seruse img {
    width: 100%;
}

.useNav {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}


.useNav li {
    width: 20%;
    height: 150px;
    float: left;
    border-right: 1px solid #DCDCDC;
    text-align: center;
}

.useNav li:last-child {
    border-right: none;
}
.useNav li a {
    padding: 15px 0;
    display: block;
    width: 100%;
    height: 100%;
}
.useNav li img {
    width: 55px;
    height: 55px;
}
.useNav li .tita {
    font-size: 18px;
    color: #292929;
    margin-top: 15px;
}
.useNav li .titb {
    font-size: 14px;
    color: #616161;
    margin-top: 5px;
}

.usedw {
    overflow: hidden;
    margin-bottom: 60px;
    margin-top: 40px;
}

.usedw li {
    width: 32%;
    height: 270px;
    float: left;
    position: relative;
}
.usedw li:nth-child(2) {
    margin: 0 2%;
}
.usedw li img {
    height: 235px;
    width: 100%;
    border: 1px solid #B7B7B7;
}

.usedw li p {
    text-align: center;
    font-size: 16px;
    color: #626262;
    margin-top: 10px;
}

.usedw li a {
    color: #626262;
    margin: 0 10px;
}
.usedw li a:hover {
    text-decoration: underline;
}


.usedw .postit {
    position: absolute;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #ffffff;
    background: rgba(0,0,0,0.5);
    text-align: center;
}



.jxs_bb.par_jxs li {
    margin-top: 5px;
}
.jxs_bb.par_jxs li a {
    color: #6C6C6C;
    font-size: 16px;
    line-height: 38px;
    width: auto;
    padding: 0 10px;
}

.jxs_bb.par_jxs li a:hover {
    color: #000000;
}

.jxs_bb.par_jxs li span {
    width: 150px;
    text-align: right;
    color: #000;
    font-size: 20px;
    font-weight: normal;
    border-right: 2px solid #DDDDDD;
    padding-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    float: left;
}
.jxs_bb.par_jxs {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 30px;
    width: 100%;
}

.centtit {
    font-size: 26px;
    color: #E60012;
    margin-bottom: 20px;
}


.search_jxs {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -71px;
    width: 225px;
    height: 142px;

}
.search_jxs a {
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/newpic.png") no-repeat;
}


.sidebx {
    float: left;
    width: 50%;
}
.sidebx li {
    margin-bottom: 30px;
}
.sidebx li h2 {
    font-weight: normal;
    font-size: 20px;
    color: #141414;
    margin-top: 10px;
}

.sidebx li p {
    font-size: 16px;
    color: #818181;
    margin-top: 10px;
}
.sidebx li a {
    font-size: 16px;
    color: #818181;
}
.sidebx li a:hover {
    text-decoration: underline;
}

.jxbtit {
    font-size: 24px;
    color: #E60012;
    margin-top: 20px;
    font-weight: normal;
}



.footleft li {
    margin-right: 132px;
}
.aboutyo {
    width: 50%;
    float: left;
}

.aboutyo p {
    color: #959595;
    line-height: 170%;
    font-size: 14px;
}
.fr_left {
    overflow: hidden;
    width: 230px;
    float: left;
}
.footright {
    width: 550px;
    float: right;
    padding-left: 40px;
}
.fr_right {
    width: 245px;
    height: auto;
    float: right;
    background: none;
    padding: 0;
    color: #959595;
}

.fr_right h3 {
    margin-bottom: 15px;
}
.fr_right li {
    margin-bottom: 5px;
}
.fr_right li span {
    padding-right: 5px;
    float: left;
    line-height: 26px;
}

.fr_right li input {
    height: 24px;
    padding: 5px;
    width: 200px;
}
.fr_right li.nameli input {
    height: 24px;
    padding: 5px;
    width: 80px;
}
.fr_right li.nameli label {
    margin-right: 10px;
}
.fr_right li.nameli label input {
    width: 15px;
    height: 15px;
}
.fr_right li textarea {
    height: 80px;
    padding: 5px;
    width: 200px;
}

.subinfo {
    background: #E00000;
    color: #ffffff;
    padding: 2px 5px;
    line-height: 26px;
}

.info img {
    height: 20px;
    padding-top: 5px;
    margin-right: 10px;
}

/*首页修改新版*/
.headBox {
    background: #ffffff;
}
.headTitle {
    height: 30px;
    width: 100%;
    background: #3C3C3C;
    text-align: right;
    line-height: 30px;
    font-size: 12px;
}

.headTitle .htmain {
    width: 1200px;
    margin: 0 auto;
    color: #ffffff;
}
.headTitle span {
    padding: 0 10px;
    border-right: 1px solid #5A5A5A;
}
.headTitle span:last-child {
    border-right: none;
}
.headTitle span img {
    margin-right: 5px;
}
.headTitle a {
    color: #CBCBCB;
}

.headTitle a:hover {
    text-decoration: underline;
}


.headcontent_b {
    width: 1200px;
    margin: 0 auto;
    height: 70px;
}
.headcontent_b h1 {
    display: block;
    float: left;
    height: 45px;
    margin-top: 4px;
}
.headcontent_b h1 img {
    height: 45px;
}

.headmenu {
    float: right;
    height: 70px;
}

/*三级下拉*/
.header-widht {
    height: 100%;
    float: right;
    font-size: 16px;

}

/*nav*/

.nvmenu_right {
    width: 515px;
    float: left;
    position: relative;
}

.licont {
    overflow: hidden;
    padding: 25px;
    display: none;
    /*position: absolute;*/
    width: 100%;
}
.licont.cur {
    display: block;
}
.licont li {
    width: 31%;
    float: left;
    height: 50px;
    margin-right: 2%;
    line-height: 150%;
    margin-bottom: 15px;
}
.licont li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #9D9D9D;
    font-size: 12px;
}

.licont li a .lititnew {
    font-size: 14px;
    color: #3C3C3C;
    border-bottom: 1px solid #E7E7E7;
}



.productBox {
    padding: 80px 0 60px 0;
}
.tit_head {
    letter-spacing: 5px;
    font-size: 40px;
    color: #3C3C3C;
}
.product_ctnn {
    margin-top: 50px;
    /*height: 320px;*/
}
.product_ctnn li {
    float: left;
    margin: 0 5px;
}
.product_ctnn li a {
    display: block;

    position: relative;
}
.product_ctnn li img {
    width: 100%;
    height: 100%;

}

.product_ctnn li img.hover {
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 99;
}


/*.product_ctnn li a:hover img {
    width: 310px;
    max-width: 310px;
    height: 310px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    margin-top: -15px;
}*/


.video_nav {
    width: 320px;
    height: 550px;
    background: none;
    border-radius: 5px;
    position: absolute;
    top: 60px;
     left: -290px;
     box-shadow: none;
     padding: 0;
    /*left: -265px;
    box-shadow: 0 0 10px 5px #2D2929;
    padding: 15px;*/
}
.video_nav:hover {
    left: 15px;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.video_nav ul {
    background: #5F5F5F;
    width: 280px;
    height: 100%;
    border-radius: 5px;
    border: none;
}
.video_nav ul h1 {
    font-size: 28px;
    color: #FFFFFF;
    font-weight: bold;
    padding: 15px 10px;
}


.video_nav ul li a:active, .video_nav ul li a:link {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    padding: 0 10px;
    text-decoration: none;
}

.video_nav ul li.cur a {
    background: #323232;
    width: 120%;
    margin-left: -10%;
    padding-left: 32px;
}
/*.video_nav ul li:hover a {
    background: #323232;
    width: 120%;
    margin-left: -10%;
    padding-left: 32px;
}*/

.video_nav ul li:hover a {
    color: #B4B4B4;
}
.video_nav ul li {
    height: 50px;
    width: 100%;
    background: none;
    border-bottom: 1px solid #555555;
    line-height: 50px;
    position: relative;
    padding: 0 15px;
}

.video_nav ul li .aee {
    height: 55px;
    width: 15px;
    display: none;
    background: url("../images/new_aee.png") no-repeat center;
    background-size: 80% auto;
    position: absolute;
    top: 0;
    left: 0;
}

.arrrnav {
    width: 36px;
    height: 67px;
    position: absolute;
    top: 50%;
    margin-top: -34px;
    right: -3px;
    background: url("../images/new_aee_h.png") no-repeat center right;
    opacity: 0.8;
}

.video_nav:hover .arrrnav {
    display: none;
}


.softBox {
    margin-top: 80px;
}

.softCont {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 60px;
}
.softCont li {
    float: left;
    padding: 2px;
}
.softCont li img {
    width: 100%;
    height: 100%;
}
.softCont li.s1 {
    width: 400px;
    height: 500px;
}

.softCont li.s2 {
    width: 400px;
    height: 250px;
}
.softCont li.s3 {
    width: 400px;
    height: 250px;
}
.softCont li.s4 {
    width: 400px;
    height: 250px;
}
.softCont li.s5 {
    width: 400px;
    height: 250px;
}
.softCont li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}


.softCont li a span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.2);
    display: none;
}

.softCont li a:hover span {
    display: block;
}


.pro_anli {
    background: #F6F6F6;
    margin-top: 100px;
}

.logobox {
    background: #ffffff;
}

.logobox h2,.logobox p {
    opacity: 0;
}

.logobox a img {
    margin-top: 15%;
    -webkit-filter:grayscale(1);
    -moz-filter:grayscale(1);
    -o-filter:grayscale(1);
    -ms-filter:grayscale(1);
    filter:gray;
}



.logobox a:hover img {
    margin-top: 0;
    -webkit-filter:grayscale(0);
    filter:grayscale(0);
    -webkit-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.logobox a:hover h2,.logobox a:hover p {
    opacity: 1;
    -webkit-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

/*.logobox:hover {
    background: #F6913C;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}*/

.jxs_box {
    background: #E50011;
    padding-top: 60px;
}
.jxs_box .tit_head {
    color: #ffffff;
}
.jxs_cont {
    padding: 40px 0 90px 0;
}

.returnTop {
    width: 55px;
    height: 165px;
    background: rgba(67,67,67,0.9);
    position: fixed;
    right: 5px;
    bottom: 10%;
}


.returnTop .top {
    width: 100%;
    height: 55px;
    background: url("../images/new_top.png") no-repeat center;
    border-bottom: 1px solid #5F5F5F;
}

.returnTop .top:hover {
    background: #323232 url("../images/new_top.png") no-repeat center;
    cursor: pointer;
}

.returnTop .code_new {
    width: 100%;
    height: 55px;
    background: url("../images/new_code.png") no-repeat center;
    border-bottom: 1px solid #5F5F5F;
    position: relative;
}

.returnTop .code_new:hover {
    background: #323232 url("../images/new_code.png") no-repeat center;
    cursor: pointer;
}
.returnTop .code_new:hover .codecont {
    display: block;
}
.codecont {
    display: none;
    width: 180px;
    height: 220px;
    background: #ffffff;
    position: absolute;
    left: -180px;
    top: -90px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid #fafafa;
}

.codecont p {
    text-align: center;
    font-size: 14px;
    color: #FF2626;
    font-weight: bold;
    margin-top: 10px;
    width: 100%;
}

.codecont p img {
    width: 80%;
}



.returnTop .tel_new {
    width: 100%;
    height: 55px;
    background: url("../images/new_tel.png") no-repeat center;
    border-bottom: 1px solid #5F5F5F;
    position: relative;
}

.returnTop .tel_new:hover {
    background: #323232 url("../images/new_tel.png") no-repeat center;
    cursor: pointer;
}

.telct {
    display: none;
    width: 180px;
    height: 50px;
    background: #ffffff;
    position: absolute;
    left: -180px;
    top: 3px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid #fafafa;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #FF2626;
}
.returnTop .tel_new:hover .telct {
    display: block;
}
.headcontent_b h1 img {
    /*height: 54px;*/
    height: 50px;
    float: left;
    margin-top: 8px;
}
.headcontent_b h1 a span {
    font-size: 16px;
    color: #7E7E7E;
    border-left: 1px solid #C1C1C1;
    padding:9px 0 6px 8px;
    font-weight: bold;
}



.libt .weix {
    position: relative;
}



.libt .weix .weximgbox {
    position: absolute;
    top: 30px;
    width: 270px;

    left: -100px;
    padding: 5px 5px 0 5px;
    background: #ffffff;
    border-radius: 3px;
    display: none;
}


.libt .weix .weiximg {

    left: 0;
    padding: 5px;
    background: #ffffff;
    border-radius: 3px;
    float: left;
}
.libt .weix:hover .weximgbox {
    display: block;
}
.libt .weix .weiximg img {
    width: 120px;
    height: 120px;
}
.libt .weix .weiximg p {
    text-align: center;
    margin-top: 3px;
    color: #464646;
    line-height: 180%;
}
.fr_left {
     overflow:visible;
}



.product_ctnn li a {
    display: block;
    position: relative;
    width: 290px;
    height: 218px;
    overflow: hidden;
}


.bttextbx>div {
    width: 100%;
    height: 50%;
}



.bttextbx .bttop {
    color: #ffffff;
    text-align: center;
    line-height: 280px;
    position: relative;
}

.bttextbx .btbottom {
    color: #ffffff;
    text-align: center;
    line-height: 280px;
    background: rgba(0,0,0,0.4);
}
.product_ctnn li a .bttextbx {
    position: absolute;
    top: 0;
    left: 0;
    height: 200%;
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.product_ctnn li a:hover .bttextbx {
    top:-100%;
    -webkit-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}


.bttop p {
    height: 50px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    color: #ffffff;
    line-height: 50px;
    font-size: 16px;
    font-weight: bold;
}

.product_ctnn li a:hover .bttop p {
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btbottom {
    padding-top: 25%;
}
.btbottom p.ttx {
    font-weight: bold;
    font-size: 30px;
    line-height: 160%;

}

.btbottom p.tts {
    font-size: 16px;
    line-height: 20px;
}


/*新轮播*/

.slides{width:100%;position:relative;overflow:hidden;}
.slideInner{height:100%;position:relative;left:0;margin-left:0;}
.slideInner a{display:block;height:100%;background-size:cover;background-position:center center;position:relative;text-align:center;z-index:1;
	display:flex;
    display: -webkit-flex;
    align-items:flex-start;
    -webkit-align-items:flex-start;
    justify-content: center;
    -webkit-justify-content: center;
}
.slideInner a img {
    max-width: auto;
  
    /*min-height: 100%;
	min-width: 100%;*/
}

.navl{width:90%;height:100%;position:relative;margin:0 auto;display:none;}
.navl a{display:block;width:41px;height:119px;opacity:.2;z-index:9;}
.navl a.prev{position:absolute;left:0;top:-50%;margin-top:-58px;background:url(../images/l.png) no-repeat center;}
.navl a.next{position:absolute;right:0;top:-50%;margin-top:-58px;background:url(../images/r.png) no-repeat center;}
.navListBox{position:absolute;left:50%;bottom: 60px;z-index:99;}
.navListBox li{width:12px;height:12px;float:left;margin-left:5px;border-radius:50%;overflow:hidden;}
.navListBox li:first-child{margin-left:0;}
.navListBox li a{display:block;width:100%;height:100%;border-radius:50%;background-color:rgba(255,255,255,0.4);border:1px solid #ccc;}
.navListBox li a.active{background-color:#ffffff;border: 1px solid #7A7685;}


.actBt {
    position: relative;
}
.actBt.bxbt:hover .bxcontx {
    display: block;
}
.bxcontx {
    position: absolute;
    top: 50px;
    left: 40px;
    padding: 20px 21px 0 20px;
    width: 145px;
    height: 288px;
    background: url(../images/bg_lestss.png) no-repeat 0 0;
    display: none;
}

.bxcontx a {
    display: block;
    margin-bottom: 3px;
    font: 13px/25px "微软雅黑", "黑体";
    color: #414141;
    text-align: center;
}

.bxcontx a:hover {
    background: #F2F2F2;
}


.jxs_bb.par_jxs li span {
    width: auto;
    text-align: left;
    color: #000;
    font-size: 20px;
    font-weight: normal;
    border-right: none;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    float: left;
}
.jxs_bb.par_jxs li {
    overflow: inherit;
}
.jxs_bb.par_jxs li span {
    position: relative;
    display: block;
    float: left;
}
.jxs_bb.par_jxs li span .listlink {
    overflow: hidden;
    position: absolute;
    left: 0;
    top:38px;
    background: #F2F2F2;
    border: 1px solid #dddddd;
    display: none;
    border-radius: 3px;
    z-index: 99;
}
.jxs_bb.par_jxs li span .listlink a {
    padding: 0 15px;
    width: 100px;
    float: none;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid #E8E8E8;
}

.jxs_bb.par_jxs li span:hover .listlink {
    display: block;
}


.weximgbox {
    margin-top: 10px;
}

.libt {
    overflow: hidden;
}
.weximgbox .weiximg {
    width: 155px;
    float: left;
    text-align: center;
    margin-right: 5px;
    background: #FFFFFF;
    padding: 3px;
    border-radius: 3px;
}
.weximgbox .weiximg img {
    width: 100%;
    height: 140px;
}

.slides {
    height:450px !important;
	background:#141519;
}

.slideInner a img {
	width:1920px !important;
	height:450px !important;
	display:block;
	position:absolute;
	top:0;
	left:50%;
	margin-left:-960px;
}

.navListBox {
    position: absolute;
    left: 50%;
    bottom: 10px;
    z-index: 99;
}

.slideInner a {
	overflow:hidden;
	width:100% !important;
}


