.index{position:relative;overflow:hidden;}
.header_main{position:relative;width:100%;height:114px;background:transparent;transition: all 0.9s ease-out 0s;z-index:100;}
.header{}
.header_main .webLogo{padding-top:14px;float:left;}
.header_main .webLogo img{display:block; height:88px;}
.header_main .nav_main{float:right;height: 114px;}
.header_main .nav_main .nav{ clear:left; display:inline-block;}
.header_main .nav_main .item{padding: 0 50px;float:left;position:relative;height:54px;line-height:54px;z-index:12;}
.header_main .nav_main .item.li6{ padding-right:0;}
.header_main .nav_main .item a{display:block;height:52px;font-size:18px;line-height:52px;color:#5e5e5e;}
 .header_main .nav_main .item:hover .alink,.header_main .nav_main .item.hover .alink{font-weight:bold; color:#cc9c59;}
.header_main .nav_main .item.hover .alink{border-bottom:3px solid #cc9c59;}
.header_main.xc .nav_main .item.hover .alink{border-bottom:3px solid #cc9c59;}
.header_main .nav li .subnav{position: absolute;left: 50%;top:54px;background-color: #fff;width:54px;margin-left: -60px;display: none;border-radius: 4px;overflow: hidden;}
.header_main .nav li .subnav .subA{color: #333;line-height: 35px;height: 35px;overflow: hidden;display: block;margin: 0;font-size: 14px;line-height: 35px;height: 35px;overflow: hidden;display: block;font-size: 14px;border-bottom: 1px dotted #ddd;margin: 0;text-align: center;}
.header_main .nav li .subnav .subA:hover{font-weight:bold;background: #3bb79b;color: #4872de;background: #ffbe8b;background: rgba(21, 21, 21, 0.8);}
.header_main .nav .sub-box{width:100%;position:absolute;left:0;text-align:center;top:55px;background:#fff;display:none;line-height:35px}
.header_main .nav_main .item.li6 .sub-box{ left:26px;}
.header_main .nav .sub-box p a{color:#fff}
.header_main .nav .sub-box p .icon{width:6px;height:10px;background-position:-96px 0;position:absolute;top:19px;left:15px}
.header_main .nav .sub-box p a{border-bottom:1px solid #ddd;color:#333 !important;line-height:46px!important;height:46px!important;padding:0;font-weight:100;text-align:center;overflow:hidden;vertical-align:top;font-size:14px;display:block;background:none;transition: ease-in-out 0.2s;}
.header_main .nav .sub-box p a:hover{background:#cc9c59;text-indent: 6px;color:#fff!important;}
.header_main .nav .li7 .sub-box{ width:140px; left:50%; margin-left:-70px;}

.header_main .quick{padding-top:30px;float:right;margin-right: 2vw;margin-left: 2vw;}
.header_main .quick .searcher{margin-top:-6px;float:left;width:20px;margin-right: 30px;}
.header_main .quick .search_btn{width:20px;height:20px;background:url("../images/searchico.png") no-repeat center center;float:left;display: block;width: 34px;height: 34px;border-radius: 50%;cursor: pointer;}
.header_main .quick .search_btn:hover{opacity:.8;filter:alpha(opacity=80);}
.header_main .quick .search_main{position: absolute; z-index: 10; -webkit-transition: all ease 300ms; -moz-transition: all ease 300ms; -ms-transition: all ease 300ms; -o-transition: all ease 300ms; transition: all ease 300ms; width: 0; height: 80px; right: 50px; top:90px; overflow: hidden; background: rgba(0,0,0,0.2);*background:#000;}
.header_main .quick .search_box{width:280px;height:40px;margin-top:20px;margin-left:40px;background:url(../images/search_main.png) no-repeat bottom center;}
.header_main .quick .search_box input{background-color: none; border: none;}
.header_main .quick .search_box .stxt{width: 240px; height: 40px;line-height: 40px; display: block; text-indent: 10px;color:#fff; background-color:transparent;    outline: none;}
.header_main .quick .search_box .sbtn{font-size:0;width: 34px;height: 34px;display: block;cursor: pointer;border-radius:100%;margin-top: 5px;outline: none;background:url("../images/searchico.png") no-repeat center center;}
.header_main .quick .cte{position:relative;float:left;margin-right:14px;cursor: pointer;}
.header_main .quick .cte .cvalue{padding-right:12px;font-family:arial;font-size:20px;color:#fff;background:url("../images/cearr.png") no-repeat right center;}

.header_main .quick .member{float:left;display:block;width:20px;height:20px;background:url("../images/member.png") no-repeat center center;}
.header_main .quick .member:hover{opacity:.8;filter:alpha(opacity=80);}

@media (max-width: 1366px) {
.header_main .webLogo img {
    height: 66px;
}
.header_main .webLogo {
    padding-top: 26px;
}
}


.modal{display: none; /* 默认隐藏 */ position: fixed; /* 根据浏览器定位 */ z-index:666; /* 放在顶部 */ left: 0; top: 0; width: 100%; /* 全宽 */ height: 100%; /* 全高 */ overflow: auto; /* 允许滚动 */ background-color: rgba(0,0,0,0.4); /* 背景色 */}
/*模态框内容*/
.modal-content{display: flex; /*采用flexbox布局*/ flex-direction: column; /*垂直排列*/ position: relative; background-color: #fefefe; margin: 15% auto; /*距顶部15% 水平居中*/ padding: 20px; padding-top:20px; border: 1px solid #888; width:612px; animation: topDown 0.4s; /*自定义动画，从模态框内容上到下出现*/}
@keyframes topDown{from{top: -300px; opacity: 0} to{top: 0; opacity: 1}}
/*模态框头部*/
.modal-header{display:block; /*采用flexbox布局*/ flex-direction: row; /*水平布局*/ align-items: center; /*内容垂直居中*/ justify-content: space-between; text-align:right;}
/*关闭X 样式*/
.close{float:right;color: #aaa; font-size: 28px; font-weight: bold;transition:all ease 0.36s;display:block;width:32px;height:32px;background:url("../images/closeModal.png") no-repeat center center;}
.close:hover{color: black; text-decoration: none; cursor: pointer;transform: rotate(360deg);transition:all ease 0.36s;}

.modal-ss{ width:100%; margin-top:28px; height:31px;}
.modal-body{  height:31px; float:right;}
.modal-body .stxt{float:left; width:189px; height:29px; border:#5e5e5e solid 1px; padding-left:30px; line-height:29px; border-radius:5px 0 0 5px;}
.modal-body .sbtn{width:42px; height:31px; background:url("../images/search_btn.png") no-repeat center center #5e5e5e;border:none; cursor:pointer; border-radius: 0 5px 5px 0;}

/*banner*/
#banner_main{position:relative; z-index:3;}
.banner{position: relative;width: 100%;min-width: 1000px;padding: 0px 0 40.93%;overflow: hidden; }
.banner .list{width: 100%;display:inline-block;}
.banner .list li{width: 100%; position: absolute; left: 0; top: 0; bottom: 0; right: 0; z-index: 1; overflow: hidden; background: #fff;}
.banner .list li a{width: 100%; display: block; height: 100%;}
.banner .img1{width: 100%; height: 100%; display: block; position: relative; left: 0; top: 0;}
.banner .img2{width: 1400px; height: 100%; display: block; position:absolute; left:50%; top: 0; margin-left:-700px;}

.banner .prev,.banner .next {background:url("../images/icon.png") no-repeat center center; width:68px; height:68px; position: absolute; z-index: 12; top: 50%; margin-top: -34px; cursor: pointer; background-position: -0px -161px;display:none;}
.banner .prev {left:8%; background-position: -0px -161px;}
.banner .prev:hover { background-position:  -0px -240px;}
.banner .next { right:8%; background-position: -88px -161px;}
.banner .next:hover { background-position: -88px -240px;}
.banner:hover .prev,.banner:hover .next { display: block;}
.banner .sline{ display:none;}
.banner .tip{position: absolute; width: 100%; left:0%; bottom: 40px; height: 34px; z-index: 30; text-align:center;}
.banner .tip li{margin: 0 5px; width: 34px; height: 34px; line-height: 10px; text-align: center; cursor: pointer; font-size: 0; font-weight: bold; overflow: hidden; display: inline-block; background:url("../images//tip.png") no-repeat center center; *display: inline; *zoom: 1; transition: ease-in-out 0.2s;}
.banner .tip li.cur{background:url("../images/tip_on.png") no-repeat center center;}
.banner .pbg1{position:absolute;bottom:0;left:0;width:885px;height:225px;background:url("../images/banner_bg1.png") no-repeat center center;z-index:4;background-size:cover;}
.banner .pbg2{position:absolute;bottom:0;right:0;width:1614px;height:330px;background:url("../images/banner_bg2.png") no-repeat center center;z-index:3;background-size:cover;}
.banner .v-txt{position:absolute;width:100%;top:44%;text-align:center;z-index:14;}
.banner .v-txt h3{height:90px;font-size:54px;line-height:90px;margin-bottom:12px;color:#fff;letter-spacing:8px;}
.banner .v-txt h3 .uimg1{display:block;width:596px;height:61px;margin:0 auto;}
.banner .v-txt h3 .uimg2{display:block;width:283px;height:30px;margin:0 auto;margin-top:30px;}
.banner .video-container{background-color:#fff;z-index:1;}
.banner .video-container #video{display:block;min-width:100%;min-height:106%;position:absolute;top:0%;left:0%;z-index:12;/*transform:scale(1.25)*/}
.banner .opacity{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:rgba(0,0,0,0.1);z-index:13;}
.banner .online{position:absolute;bottom:30%;left:50%;margin-left:-70px;display:block;width:140px;height:40px;font-size:14px;line-height:40px;text-align:center;color:#fff;border:1px solid #fff;z-index:16;transition:all ease 0.36s;border-radius:5px;}
.banner .online:hover{text-indent:6px;color:#fff;border-color:#d9491d;background:#d9491d;transition:all ease 0.36s;box-shadow: 0 6px 12px rgba(71, 114, 222, 0.17);transition:all ease 0.36s;}
.banner .video-container{background-color:#fff;z-index:1;}
.banner .video-container #video{display:block;min-width:100%;min-height:106%;position:absolute;top:0%;left:0%;z-index:12;/*transform:scale(1.25)*/transform:scale(1.1)}
.banner .opacity{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background:url("../images/s1_01.png") no-repeat center center;z-index:13;}
.banner .online{position:absolute;bottom:30%;left:50%;margin-left:-70px;display:block;width:140px;height:40px;font-size:14px;line-height:40px;text-align:center;color:#fff;border:1px solid #fff;z-index:16;transition:all ease 0.36s;border-radius:5px;}
.banner .online:hover{text-indent:6px;color:#fff;border-color:#cea200;background:#cea200;transition:all ease 0.36s;box-shadow: 0 6px 12px rgba(71, 114, 222, 0.17);transition:all ease 0.36s;}




.ui-linebar{height:75px;background-color: #466ec1;opacity: 1;position: absolute;left: 50%;bottom: 0;width: 1px;margin-left: -.5px;z-index:10; display:none;}
.ui-linebar .ink{-webkit-animation: k-ink 2s linear -.5s infinite;animation: k-ink 2s linear -.5s infinite;background-color: #fff;position: absolute;left: 0; right: 0;top: 0; bottom: 0;-webkit-transform: scaleY(0);-ms-transform: scaleY(0);transform: scaleY(0);-webkit-transform-origin: 0 0;-ms-transform-origin: 0 0;transform-origin: 0 0;}
@-webkit-keyframes k-ink{0%,25%{-webkit-transform:scaleY(0);transform:scaleY(0)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}
@keyframes k-ink{0%,25%{-webkit-transform:scaleY(0);transform:scaleY(0)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}

/* footer */
.footerM{height:286px;overflow:hidden;background:url("../images/z4_02.jpg") no-repeat center center;padding-top:44px; position:relative;}
.footerM .f_left{position:relative;float:left;width:21.4%;height:430px;}
.footerM .f_left .left_box{padding-top:70px;}
.footerM .f_left .btlogo{display:block; background-color:#fff; padding:20px 0;}
.footerM .f_left .btlogo .img1{display:block;width:200px;height:116px;margin:0 auto;}
.footerM .f_left .btlogo .img2{display:block;width:180px;height:21px;margin:0 auto;margin-top:18px;}
.footerM .f_left .tel_box{padding-top:80px;}
.footerM .f_left .tel_box .zx{display:block;width:198px;height:18px;font-size:16px;line-height:18px;text-align:center;margin:0 auto;color:#fff;background:url("../images/btline.png") no-repeat center center;}
.footerM .f_left .tel_box .webTel{margin-top:20px;font-family:arial;font-size:30px;line-height:30px;text-align:center;color:#fff;}
.footerM .f_right{ width:100%; position:relative;height:480px;}
.footerM .footer_1{ height:210px; border-bottom:#fff solid 1px;}
.footerM .fl_logo{ float:left;}
.footerM .fl_lx{ float:left; width:350px; padding-left:50px; color:#fff;}
.footerM .fl_lx h3{ font-size:18px; color:#fff; line-height:38px; font-weight:bold;}
.footerM .fl_lx i{ display: block; width:42px; height:2px; background-color:#fff; margin-top:20px;}
.footerM .fl_lx p{ font-size:12px; color:#fff; line-height:34px; padding-top:18px;}

.footerM .ewm{ float:right; width:120px; margin-right:50px; text-align:center; color:#fff; padding-top:34px; font-size:12px;}
.footerM .ewm img{ display:block; width:120px; padding-bottom:10px;}

.footerM .bnav{float: right; width:200px;}
.footerM .bnav h3{ font-size:18px; color:#fff; line-height:38px; font-weight:bold;}
.footerM .bnav i{ display: block; width:42px; height:2px; background-color:#fff; margin-top:20px; margin-bottom:19px;}
.footerM .bnav a{ display:block; float:left; font-size:12px; color:#fff; line-height:34px; width:98px;}

.footerM .footer_1 .qrcode{float:right;display:block;}
.footerM .f_right .list li{float:left;width:128px; margin-right:7%;display:block;list-style:none;line-height:32px;text-align:left;overflow:hidden;}
.footerM .f_right .list .li1{padding-left:0;}
.footerM .f_right .list li dt{ height:46px; border-bottom:#1e3e8b solid 1px;}
.footerM .f_right .list li dt a{display:block;font-size:18px;line-height:18px;color:#fff;}
.footerM .f_right .list dd{padding-top:10px;}
.footerM .f_right .list dd a{display:block;width:100%;font-size:14px;line-height:40px;color:#cacaca;}
.footerM .f_right .list li a:hover{color:#fff;}
.footerM .f_right .list .drop a:hover{color:#fff;}
.footerM .f_right .qimg{float:right;display:block;width:136px;}
.footerM .f_right .qimg .img1{display:block;width:126px; float:right; border-radius:8px;}
.footerM .f_right .qrcode .tit{display:block;font-size:14px;line-height:40px;text-align:center;color:#fff; text-align:right;}
.footerM .footer_2{position:absolute;bottom:0;left:0;width:100%;height:76px;}
.footerM .copyright{font-size:12px;color:#fff;}
.footerM .copyright .copy{float:left;height:76px;line-height:76px;color:#fff;}
.footerM .copyright a{color:#fff;}
.footerM .copyright em{margin:0 5px;}
.footerM .copyright .jszc{float:right;height: 76px;line-height:76px;}
.footerM .copyright .jszc span{height:76px;}
.footerM .copyright a:hover{color:#fff;}

/* index css */
.index .index_title{padding-top:90px;}
.index .index_title .tit{float:left;display:block;width:170px;font-size:40px;line-height:44px;color:#333;/*background:url("../images/ctitline.png") no-repeat 30px bottom;*/}
.index .index_title .subtit{float:left;display:block;padding-top:24px;margin-left:20px;font-size:18px;line-height:20px;color:#999;}
.index .tit_left{float:left;}
.index .menu_right{float:right;}
.index .menu_right a{position:relative;display:block;width:132px;height:40px;font-size:16px;line-height:40px;color:#333;background:#f3f3f3; text-align:center;transition:all ease 0.36s; border-left:#cc9c59 solid 8px;}
.index .menu_right a span{position:relative;z-index:12;transition:all ease 0.36s;}
.index .menu_right a:before,.index .menu_right a:after{content: '';position: absolute;left: 0;top: 0;width: 0;height: 100%;background:#cc9c59;z-index:2;transition: .8s;}
.index .menu_right a:before{transition: .8s; background:#cc9c59;z-index:-1; }         
.index .menu_right a:hover:after,.index .menu_right a:hover:before{width: 100%;}
.index .menu_right a:hover span{ color:#fff;}



.headv{ position:fixed; left:1%; top:30%; z-index:2;}
.headv div{ margin:10px 0;display:block; padding:5px; background-color:#CCC; border-radius:30px;}
.headv .headv-check{ color:#fff; background-color:#1d46a9;}

/* 解决方案 */
.index .floor_1_main{position:relative;background:url(../images/z1_02.jpg) center center no-repeat; width:100%; height:800px;} 
.floor_1_1{ padding-top:176px; width:100%; position:relative;}
.floor_1_1 h3{ font-size:30px; color:#333; line-height:60px; writing-mode:vertical-rl;writing-mode:tb-rl; float:right; font-weight:bold; padding-right:150px; }
.floor_1_1 p{ font-size:22px; color:#333; line-height:40px; height:416px; writing-mode:vertical-rl;writing-mode:tb-rl; float:right; padding-right:10px; }
.floor_1_1 .img1{ display:block; position:absolute; left:120px;top:120px;}

/* 产品中心 */
.index .floor_2_main{background:url(../images/z2_02.jpg) center center no-repeat; width:100%; height:798px; }
.floor_2_1{ float:left; width:52%; padding-top:6%;}
.floor_2_1 h3{ font-size:44px; color:#fff; line-height:44px; font-weight:bold; border-left:#fff solid 4px;text-shadow: 0 1px 2px #2b558d; padding-left:16px; }
.floor_2_1 .x{ font-size:18px; color:#fff; line-height:36px; text-indent:36px;text-shadow: 0 1px 2px #2b558d; padding-top:9%;}
.floor_2_1 .l{ width:166px; height:42px; background-color:#cc9c59;transition: all ease 0.36s; margin-top:14%; text-align:center;}
.floor_2_1 .l p{ display:inline-block;}
.floor_2_1 .l p span{ display:block; float:left; line-height:42px; color:#fff; font-size:18px;}
.floor_2_1 .l p i{display:block; width:18px; height:9px;background: url("../images/z7_03.png") no-repeat center center; float:left; margin-top:18px; margin-left:10px;}
.floor_2_1 .l:hover{ width:180px;}

.floor_2_2{ float:right; width:39%; padding-top:6%;}
.floor_2_2 ul{ display:inline-block; width:100%;}
.floor_2_2 ul li{ width:100%;background: url("../images/z6_03.jpg") no-repeat center center;background-size: cover;background-repeat: no-repeat;background-position: center center; height:192px; margin-bottom:24px;}
.floor_2_2 ul li.li2{background: url("../images/z6_06.jpg") no-repeat center center;}
.floor_2_2 ul li.li3{background: url("../images/z6_08.jpg") no-repeat center center;}
.floor_2_2 ul li a{ display:block; width:100%; height:100%;}

.floor_2_2 ul li h3{ font-size:30px; color:#fff; line-height:30px;text-shadow: 0 1px 2px #2b558d; padding-top:50px; padding-left:24px;}
.floor_2_2 ul li p{ font-size:16px; color:#fff;text-shadow: 0 1px 2px #2b558d; border:#fff solid 1px; width:100px; height:30px; text-align:center; line-height:30px; margin-left:24px; margin-top:20px;transition:all ease 0.36s;}
.floor_2_2 ul li p:hover{ width:120px;transition:all ease 0.36s;}



@media (max-width: 1366px) {

}

.zx_hx h3{ font-size:44px; color:#333; line-height:44px; font-weight:bold; padding-top:80px; text-align:center;}


/* 势 */
.index .floor_3_main{ width:100%;background:#f9f9f9; padding-bottom:100px;}
.index .index_title2{padding-top:100px;}
.zx_lm{padding-top:20px;}
.zx_lm .list{ display:inline-block; width:104%;}
.zx_lm .list .item{margin-right:3%;margin-top:46px;float:left;width:30%;box-shadow: 1px 0 2px rgba(0,0,0,0.1);background:#0050a5;transition:all ease 0.36s;}
.zx_lm .list .item .img{display: block;overflow: hidden;position: relative;width:100%;}
.zx_lm .list .item img{display: block;width: 100%;height: 100%;transition: ease-in-out .2s;}
.zx_lm .list .item .txtBox{padding:30px;transition:all ease 0.36s;transform: translateY(0);z-index:2;}
.zx_lm .list .item .t_top{ text-align:left;}
.zx_lm .list .item .t_top .tit{font-size:22px;line-height:30px;color:#fff;background:url("../images/z5_04.png") no-repeat center right;}
.zx_lm .list .item .t_top .desc{margin-top:10px;height:48px;font-size:14px;line-height:24px;color:#fff;}
.zx_lm .list .item .t_bottom{padding-top:30px;}
.zx_lm .list .item .t_bottom .ite{font-size:14px;line-height:30px;color:#999;}
.zx_lm .list .item .t_bottom .it2{margin-left:20px;color:#666;}
.zx_lm .list .item:hover{transform:translateY(-3px);box-shadow: 8px 0 16px rgba(0,0,0,0.1);transition:all ease 0.36s;}
.zx_lm .list .item:hover img{filter:brightness(105%);-webkit-filter:brightness(105%);}
.zx_lm .list .item:hover .txtBox{}

/* 客户案例 */
.index .floor_4_main{background:url("../images/z3_02.jpg") no-repeat center center; width:100%; padding-bottom:92px;}
.index .floor_4_main .zx_hx h3{ color:#fff;}
.floor_4{ position:relative;}
.floor_4_1{ margin-top:30px; position:relative; width:100%;}
.floor_4_1 ul{ display:inline-block; width:102%;}
.floor_4_1 ul li{ width:45.3%; float:left; margin-top:20px; margin-right:1.5%; background-color:#fff; padding:1.5%;}
.floor_4_1 ul li a{ display:block; width:100%; height:100%;}
.floor_4_1 ul li .img{ display:block; width:39%; float:left;}
.floor_4_1 ul li .img img{ display:block; width:100%;}
.floor_4_1 ul li .txtBox{ float:right; width:56.4%;}
.floor_4_1 ul li .txtBox h3{ font-size:22px; color:#333; line-height:30px; height:74px; font-weight:bold;}
.floor_4_1 ul li .txtBox p{ font-size:16px; color:#333; line-height:24px; height:78px;}
.floor_4_1 ul li .txtBox b{ display:block; font-weight:normal; font-size:16px; color:#333; line-height:16px;background: url("../images/z5_03.png") no-repeat center right;}
.floor_4_1 ul li:hover{background:#0050a5;transform:translateY(-3px);box-shadow: 8px 0 16px rgba(0,0,0,0.1);}
.floor_4_1 ul li:hover .txtBox h3{ color:#fff;}
.floor_4_1 ul li:hover .txtBox p{ color:#fff;}
.floor_4_1 ul li:hover .txtBox b{ color:#fff; line-height:16px;background: url("../images/z5_04.png") no-repeat center right;}


@media (max-width: 1366px) {
	.floor_4_1 ul li .txtBox h3{ height:64px;font-size:20px;}
	.floor_4_1 ul li .txtBox p{ height:64px;}
}



/* 合作流程 */
.index .floor_5_main{padding-bottom:90px;background:#f9f9f9;}
.floor_5_1{ margin-top:50px; position:relative;}
.floor_5_1 ul{ display:inline-block; width:102%;}
.floor_5_1 ul li{margin-right:2%;float:left;width:31.3%;background:#fff;transition:all ease 0.36s;}
.floor_5_1 ul li .img{ display:block; width:100%;}
.floor_5_1 ul li .img img{ display:block; width:100%;}
.floor_5_1 ul li .txtBox{ padding:5%;}
.floor_5_1 ul li .txtBox h3{ font-size:22px; color:#333; line-height:22px; height:40px; font-weight:bold;}
.floor_5_1 ul li .txtBox p{ font-size:16px; color:#333; line-height:24px; height:78px;}
.floor_5_1 ul li .txtBox b{ display:block; font-weight:normal; font-size:16px; color:#333; line-height:32px; width:122px; height:32px; text-align:center; border:#333 solid 1px;}
.floor_5_1 ul li:hover{transform:translateY(-3px);box-shadow: 8px 0 16px rgba(0,0,0,0.1);transition:all ease 0.36s;}
.floor_5_1 ul li:hover h3{ color:#0050a5;}
.floor_5_1 ul li .txtBox b:hover{ background-color:#0050a5; border:#0050a5 solid 1px; color:#fff;}



/* 关于我们 */
.index .floor_6_main{position:relative;width:100%;height:950px;background:url("../images/j8_02.jpg") no-repeat top center; }
.index .floor_6_main{position:relative;width:100%;height:950px;background:url("../images/j8_02.jpg") no-repeat top center; }
.floor_6 .x_l{ width:1200px; height:392px; position:absolute; left:50%; margin-left:-600px; top:260px; z-index:2;}
.floor_6 .x_c{ width:100%; height:100%; position:absolute; left:0; top:0; z-index:1;background-color: rgba(16,25,46,0.7)}
.x_l .zx_t{ width:1130px; margin:0 auto;}
.x_l .zx_t h3{ font-size:36px; color:#fff; line-height:36px; float:left; background:url(../images/j10_03.png) left center no-repeat; padding-left:56px; padding-right:130px; font-weight:100; margin-top:8px;}
.x_l .zx_t dl{ float:left; width:250px;}
.x_l .zx_t dl dt{ font-size:36px; color:#fff; line-height:65px; font-weight:400;}
.x_l .zx_t dl dt span{ display:inline-block;font-size:75px; color:#fff; line-height:75px;font-family:"Arial";font-weight:600; padding-right:6px;}
.x_l .zx_t dl dd{ font-size:16px; color:#c3c3c3; line-height:18px; font-weight:100; padding-top:4px;}
.x_l p{ clear:left; width:600px; margin:0 auto; text-align:left; padding-top:60px; font-size:16px; color:#fff; line-height:36px; }
.x_l a{display:block; float:left; width:200px; height:40px; border:#fff solid 1px; margin:0 auto;  text-align:center; line-height:40px; color:#fff; font-size:16px; transition: all 0.6s ease 0s;margin:0 10px;margin-top:60px;}
.x_l a:hover{ background-color:#04287e; color:#fff; width:210px; border:#04287e solid 1px; }
.zx_lm{ text-align:center;}
.zad{ width:600px; margin:0 auto;}
/* 新闻动态 */
.index .floor_7_main{background:#fff; padding-bottom:140px; padding-top:90px;}
.index .floor_7 .index_title{padding-top:70px;}
.index .newslist1{margin-top:30px;}
.newslist1 ul{ display:inline-block; width:100%;}
.newslist1 ul li{ width:45%; float:left; padding:2.5% 0; margin-right:5%;transition:all ease 0.36s;}
.newslist1 ul li.li2,.newslist1 ul li.li4{ margin-left:5%; margin-right:0;}
.newslist1 ul li b{ display:block; width:300px; height:168px; float:left; overflow:hidden; margin-right:30px;}
.newslist1 ul li b img{ display:block; width:300px; height:168px;transition: all .36s ease;}
.newslist1 ul li:hover b img { -webkit-transform: scale(1.08);-ms-transform: scale(1.08); transform: scale(1.08);}
.newslist1 ul li i{ display:block; font-size:16px; color:#666; line-height:16px; font-family:"Arial";}
.newslist1 ul li p{ font-size:24px; color:#151527; line-height:30px; margin-top:12px; height:60px;display:block;text-overflow: -o-ellipsis-lastline;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp:2; line-clamp: 2;-webkit-box-orient: vertical;transition: all .36s ease; }
.newslist1 ul li span{ display:block;text-overflow: -o-ellipsis-lastline;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;-webkit-box-orient: vertical;transition: all .36s ease; font-size:14px; line-height:20px; color:#666; margin-top:20px;}
.newslist1 ul li:hover p span{ color:#00a27d; padding-left:8px;}
.newslist1 ul li:hover p{ color:#04287e;}
.newslist1 ul li:hover{transform: translateY(-3px);transition:all ease 0.36s;}


/* 快捷导航 */
.index .floor_8_main{padding-bottom:80px;}
.index .floor_8 .index_title{padding-top:50px;}
.index .quick-box{margin-top:60px;}
.quick_nav{margin-bottom:30px;}
.quick_nav .tit{margin-right:30px;float:left;display:block;width:172px;height:43px;line-height:43px;text-align:center;color:#fff;background:#2a9c3e;border:1px solid #2a9c3e;transition:all ease 0.36s;}
.index .navlist{float:left;}
.index .quick-box li{margin-right:10px;float:left;padding:0 20px 0 23px;display:block;height:43px;line-height:43px;border:1px solid #ddd;}
.index .quick-box li a{display:block;font-size:18px;color:#666;}
.index .quick-box li:hover{color:#fff;background:#2a9c3e;border:1px solid #2a9c3e;transition:all ease 0.36s;}
.index .quick-box li:hover a{color:#fff;}


@media (max-width: 1700px) {
}
@media (max-width: 1600px) {
}


/* 响应1200屏幕 */
@media (max-width: 1366px) {

}

/*响应1440 到 1680屏幕*/
@media (min-width: 1366px) and (max-width: 1680px) {
}
@media (max-width: 1300px) {
	}


/*rightFix*/
.rightFix{width: 48px; position: fixed; right: 10px; top: 50%; margin-top: -120px; z-index: 999;}
.rightFix a{width:48px; height: auto; background: #0050a5; text-align: center; display: block; margin-bottom: 6px; position: relative; padding-top: 8px; border-radius:50px; padding-bottom: 7px;}
.rightFix a h3{color: #fff; font-weight: 400; font-size: 12px; display:none;}
.rightFix .ico{width: 32px; height: 32px; display: block; position: relative; overflow: hidden; transition: all ease 300ms; margin: 0 auto; margin-bottom: 1px; padding: 0px; background: url(../images/fix-ico.png) no-repeat 0 0;}
.rightFix .img{width: 110px; height: auto; position: absolute; left: -10px; top: 0; padding: 6px; background: #cea200; border: 1px solid #ddd; background: #fff; display: none; text-align: center; opacity: 0; filter: alpha(opacity=0); transition: all ease-in-out 0.2s; border-radius: 5px; color: #333; padding-bottom: 10px;}
.rightFix .img p{padding-top: 5px;}
.rightFix a:hover .img{opacity: 1; filter: alpha(opacity=100); left: -140px; display: block;}
.rightFix .img img{width: 110px; height:110px;}
.rightFix a span{width: 210px; text-align: center; height:48px; line-height: 48px; position: absolute; left: -78px; top: 0px; background: #cc9c59; color: #fff; display: block; font-weight: bold; font-size: 18px; opacity: 0; filter: alpha(opacity=0); transition: all ease-in-out 0.2s; border-radius:30px;}
.rightFix a:hover{background-color: #cea200; overflow: visible;}
.rightFix a:hover h3{color: #fff;}
.rightFix a.fix-ewm:hover img{opacity: 1; filter: alpha(opacity=100); left: -140px;}
.rightFix a:hover span{opacity: 1; filter: alpha(opacity=100); left: -215px;}
.rightFix .fix-tel:hover .ico{background-position: -32px 0;}
.rightFix .fix-xcx .ico{background-position: 0 -32px;}
.rightFix .fix-xcx:hover .ico{background-position: -32px -32px;}
.rightFix .fix-ewm .ico{background-position: 0px -64px;}
.rightFix .fix-ewm:hover .ico{background-position: -32px -64px;}
.rightFix .mess .ico{background-position: 0 -96px;}
.rightFix .mess:hover .ico{background-position: -32px -96px;}
.rightFix .fix_top .ico{background-position: 0 -128px;}
.rightFix .fix_top:hover .ico,
.rightFix .fix_top.hover .ico{background-position: -32px -128px;}
.rightFix .fix-form{background-position: 10px -234px;}
.rightFix .fix-form span{font-size: 14px; line-height: 23px; width: 180px;}
.rightFix .fix-form:hover{background-position: -37px -234px;}


/* 图片 */
@-webkit-keyframes gradient-rectangle {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        background: linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));
        background: -webkit-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));
        background: -moz-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6)); /*FireFox*/
        background: -o-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));  /* Opear */
        background: -ms-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));
        opacity: 1; 
      }
    
      100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: top;
        transform-origin: top;
        background: linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));
        background: -webkit-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));
        background: -moz-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6)); /*FireFox*/
        background: -o-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));  /* Opear */
        background: -ms-linear-gradient(to top, rgba(255,255,255,0) , rgba(255,255,255,.6));
        opacity: 0;
      }
    } 

/* Underline From Center1 */
.hvr-underline-from-center1{display: inline-block; vertical-align: middle; -webkit-transform: translateZ(0); transform: translateZ(0); box-shadow: 0 0 1px rgba(0, 0, 0, 0); -webkit-backface-visibility: hidden; backface-visibility: hidden; -moz-osx-font-smoothing: grayscale; position: relative;}
.hvr-underline-from-center1:before{content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; bottom: -3px; background: #cc9c59; height: 3px; -webkit-transition-property: left, right; transition-property: left, right; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out;}

.common_nav .hvr-underline-from-center1:before{content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; bottom: -3px; background: #0050a5; height: 3px; -webkit-transition-property: left, right; transition-property: left, right; -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out;}


.hvr-underline-from-center1:hover:before,
.hvr-underline-from-center1.hover:before,
.hvr-underline-from-center1:focus:before,
.hvr-underline-from-center1:active:before{left: 0; right: 0;}
.hvr-underline-from-center1:hover,
.hvr-underline-from-center1.hover{*height: 43px; *border-bottom: 3px solid #cea200; *line-height: 43px;}
@-webkit-keyframes scale{0%{-webkit-transform: scale(1);} 50%{-webkit-transform: scale(1.02);} 100%{-webkit-transform: scale(1);}}
@keyframes scale{0%{transform: scale(1);} 50%{transform: scale(1.02);} 100%{transform: scale(1);}}
