@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}
body {
    font-size: 12px;
    font-family: Microsoft YaHei;
	list-style:none;
	overflow-x:hidden;
}


table {
    font-family: Microsoft YaHei;
    font-size: 12px;
}
td {
    word-break: break-all;
	vertical-align:middle;
}
tr {
    vertical-align: top;
}
a:link, a:visited {
    text-decoration: none;
	font-style:normal;
}
a:hover {
    text-decoration: none;
	font-style:normal;
}
img {
    vertical-align: middle;
    border: 0px none;
}

.bx1200{ width:1200px; margin:0 auto;}

/*top*/
.top{ width:100%; height:157px; position:relative;}
.top_bg{}
.top_up{ width:100%; height:36px; border-bottom:1px #f7f7f7 solid;}
.top_up_left{width:77%; height:36px; float:left; text-align:left; color:#666; font-size:14px; line-height:36px; text-indent:20px;}
.top_up_right{width:23%; height:34px; float:right; color:#666; font-size:14px; overflow:hidden;}
.top_up_right a {width:64px; height:34px;color:#666; line-height:34px;}
.top_up_right a:link{  text-align:center; float:left; color:#666;}
.top_up_right a:hover{color:#0055b3;}

.top_logo{ width:1200px; height:120px; margin:0 auto;}
.img_logo{}
.img_ioc{padding-top:-5px;}
.top_logo_up{ width:1200px; height:120px; margin:0 auto;}

/*导航*/
* { box-sizing: border-box; }
/*左浮动*/
.float-left { float: left; }

/*右浮动*/
.float-right { float: right; }

/*清除浮动*/
.clearfix::before { content: ""; display: table-cell; }
.clearfix::after { content: ""; display: table; clear: both; }
body { margin: 0; padding: 0; color: #333; font: 16px/24px "-apple-system", "Helvetica", "Microsoft YaHei", "PingFang SC"; outline: none; }
ul, li { margin: 0; padding: 0; list-style: none; }

a, a:after, a:before { text-decoration: none; color: #333; cursor: pointer; outline: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s; 
    transition: all 0.5s; }
a:hover { color: #2073cf; }

/* 
- 设置导航高度宽度和背景色 
- 没有边距，文字贴着边不好看，给个内边距padding: 16px;
*/
.menu { padding: 0 25px; width: 1200px; margin:0 auto; height: 65px;}
.menu_bgs{ width:100%; height:65px;background: #2762ae;}

/* 一级菜单设置为相对定位 */
.menu > ul > li { position: relative;background:url(../img/menut_xian.jpg) right no-repeat;}/*background:url(../img/xian_menut.jpg) no-repeat right;*/

/* 
- 因为导航背景颜色是黑色，所以设置一级导航的文字颜色是白色 
- 导航高48px，一级导航的文字要垂直居中，可以计算（48-文字行高）/2，然后设置外边距或者内边距，让文字刚好居中。
- 上面的居中方式太复杂了，不如line-height: 48px;让文字行高和导航高度一样，自然就居中了。
*/
.menu > ul > li > a { line-height: 65px; color: #FFF;  margin-right:10px;}

.menu > ul > li > a { display: block; padding: 0 46px; line-height: 65px; color: #FFF; }

.menu > ul > li:hover > a,
.menu > ul > li.active > a { background: #f6c119; color:#fff;}


/* 
- 二级菜单会占用高度，因此需要给它设置绝对定位，因为一级菜单是相对定位，因此二级菜单的位置是根据一级菜单来的
- 二级菜单的宽度100%也是根据一级菜单来的
*/
.sub-menu { position: absolute; width: 156px; top: 65px; left: 0; background: #036fb8; box-shadow: 0 0 8px rgba(0,0,0,0.1); }
.sub-menu > li > a { display: block; padding: 8px; text-align: center; font-size: 12px; color: #FFF; }
.sub-menu > li + li > a { border-top: 1px solid rgba(65,128,246,1); }
.sub-menu > li:hover > a { background-color:rgba(255,255,255,1); color:#1e50ae;}

.sub-menu { position: absolute; width: 156px; top: 65px; left: 0; background-color:rgba(30,80,174,1); box-shadow: 0 0 8px rgba(0,0,0,0.1); opacity: 0; z-index: 999; visibility: hidden; 
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s; 
            transition: all 0.3s; 

            -webkit-transform-origin: 0 0;
            -moz-transform-origin: 0 0;
            -ms-transform-origin: 0 0;
            -o-transform-origin: 0 0;
            transform-origin: 0 0; 

            -webkit-transform:scaleY( 0 );
            -moz-transform:scaleY( 0 );
            -ms-transform:scaleY( 0 );
            -o-transform:scaleY( 0 );
            transform:scaleY( 0 ); }
			
.menu > ul > li:hover .sub-menu { opacity: 1; visibility: visible;
    -webkit-transform:scaleY( 1 );
    -moz-transform:scaleY( 1 );
    -ms-transform:scaleY( 1 );
    -o-transform:scaleY( 1 );
    transform:scaleY( 1 );  }

/*搜索*/
.sousuok{width: 100%;height:55px; background:#f7f7f7; border-bottom:1px #ededed solid;}
.sousuo_left{float: left;font-size: 16px;color: #666;width:1200px;line-height:55px; text-align:left;}
.sousuo_left span{color: #666;font-size: 16px;font-weight: bold;padding-left:13px;padding-right:0px;} 
.bx1200{ width:1200px; margin:0 auto;}

/*底部*/


/*图片放大img{transform:scale(1.07,1.07);    filter: brightness(110%);}*/



/*底部联系*/
.pflxdi{width: 100%;height: 470px;margin-top: 60px;}
.pflxk{width: 300px;float: right;margin-top: 55px;margin-right: 50px;}
.pflxbt{color: #fff;font-size: 22px;font-weight: bold;width: 280px;height: 65px;line-height: 65px;border-bottom: 1px solid #fff;}
.pflxnr{color: #fff;font-size: 16px;line-height: 26px;height: 210px;margin-top: 15px;}
.pflxdh{width: 245px;height: 60px;border-radius: 10px;background: #fff;padding: 15px;color: #272727;font-size: 16px;}
.pflxdh img{float: left;padding-left: 10px;}
.pflxdh p{color: #ff0;font-size: 28px;font-family: Impact;}
/*底部联系*/
.pfdibu{ width:100%;  height:245px;background:#2c2f34;overflow:hidden; text-align:left;}
.pfdi1{width: 240px;float: left;margin-top: 50px;margin-left: 80px;}
.pfdi1 h4{color: #fff;font-size: 20px;}
.pffldi{margin-top: 15px;}
.pffldi a{display: block;width: 50%;float: left;line-height: 26px;color: #929292;font-size: 14px;}
.pffldi a:hover{color: #ff0}
.pfdi2{width: 190px;float: left;margin-top: 50px;margin-left: 80px;}
.pfdi2 h4{color: #fff;font-size: 20px;}
.pfdhdi{margin-top: 15px;}
.pfdhdi li a{display: block;color: #929292;font-size: 14px;line-height: 26px;width: 50%;float: left;}
.pfdhdi li a:hover{color: #ff0}
.pfdi3{float: left;margin-top: 50px;margin-left: 100px;}
.pfdi3 h4{color: #fff;font-weight: normal;font-size: 20px;padding-left: 20px;}
.erweima_left{float: left;width: 245px;height: 105px;background: #424242;padding: 15px 20px 25px 20px;margin-top: 15px;color: #929292;font-size: 14px;line-height: 24px;}
.erweima{float: left;margin-top: 15px;}

/*版权*/
.dibanquan{ width:100%; background:#00284d; height:40px;margin: 0 auto;text-align: center;}
.dibanquan p{ font-size:14px; color:#a8afb8; line-height:40px;text-align:center;}

.foot-bottom{
        height:auto;
		padding-top:30px;
		padding-bottom:10px;
        text-align:left;
        line-height:25px;
		color:#a8afb8;
		background:#2c2f34;
		border-top:1px #424242 solid;
		font-size:14px;
		padding-top:10px;
    }
.foot-bottom a { color:#a8afb8;}
.foot-bottom a:hover { color:#ff0;}

/*关于我们*/
.main{ width:1200px; margin:0 auto; height:auto; overflow:hidden; margin-top:30px;}
.sitemap {
    height: 43px;
    line-height: 40px;
    font-size: 12px;
}
.nrbt{
    font-size: 22px;
	padding-left:20px;
}
.fl {
    float: left;
}
.fr {
    float: right;
	padding-right:20px;
}
/*right*/
.right{width:900px; height:auto; float:right; margin-bottom:20px; text-align:left;}
.right_top{ width:1200px; height:auto; margin:0 auto; text-align:center; margin-top:0px;}
.right_tf{ width:100%; height:60px; line-height:60px; text-transform:uppercase; color:#0a070a; font-size:40px; text-align:center; font-weight:bold;}
.right_r{ width:100%; height:50px; line-height:50px; text-align:center; font-size:28px; color:#337fca;}
.right_bg{ width:900px; height:auto; margin:0 auto; margin-top:20px; overflow:hidden;}
.right2_bg{ width:900px; height:auto; margin:0 auto; margin-top:10px; overflow:hidden;}
.right_bt{ width:900px; height:7px;}

.right_fr{float: right;	padding-right:20px; color:#999999; font-size:14px;}
.right_fr a{color:#999999;}
.right_fr a:visited{color:#999999;}
.right_fr a:hover{color:#c50c22;}
.right_fr a:active{color:#c50c22;}

/*左侧列表*/
/*left*/
.left{ float:left; width:253px; height:auto; margin:0 auto; overflow:hidden; margin-bottom:30px; background-color:#FFF;}
.left_pro_top{width:253px; height:66px;color:#FFF; overflow:hidden; background:url(../img/left_top.jpg) no-repeat;}
#left{
	width:253px;
	overflow:hidden;
	float:left;
	display:inline;
	margin-top:10px;
	}
.lx_left{ width:253px; margin-bottom:20px;}

.lx_bg{ width:100%; height:532px; overflow:hidden;}
.lx_body{ width:862px; height:481px; margin:0 auto;}
.lx_top{ width:731px; height:95px; margin:0 auto;}
.lx_body2{ width:650px; height:280px; color:#000; margin:0 auto; text-align:center; line-height:40px;}


.left_pro_bg{width:237px; height:auto; margin:0 auto; margin-bottom:20px;background:#fff; padding-top:10px; padding-bottom:5px; border-radius:8px;}

.left_list{ width:218px; height:auto; margin:0 auto; text-align:center; text-indent:0px; overflow:hidden;}
.left_list ul{}
.left_list ul li{ width:218px; height:45px;  margin:0 auto; line-height:45px; font-size:16px;}
.left_list ul li a{ text-decoration:none; color:#fff; display:block; background:url(../img/list_1.jpg) no-repeat; }


.left_list_on{ width:218px; height:auto; margin:0 auto; text-align:center; text-indent:0px; overflow:hidden;}
.left_list_on ul{}
.left_list_on ul li{ width:218px; height:45px;  margin:0 auto; line-height:45px; font-size:16px;}
.left_list_on ul li a{ text-decoration:none; color:#fff; display:block; background:url(../img/list_0.jpg) no-repeat;}

.left_list_on ul li a:visited{text-decoration:none; color:#fff; display:block;}
.left_list_on ul li a:hover{height:45px; line-height:45px; display:block; color:#fff; background:url(../img/list_1.jpg) no-repeat;
-webkit-transition:all 0.1s linear;-moz-transition:all 0.1s linear;-ms-transition:all 0.1s linear;-o-transition:all 0.1s linear; transition:all 0.1s linear;}
.left_list_on ul li a:active{ text-decoration:none; color:#fff; display:block;}
.lxwm3{ line-height:26px; padding-left:15px; padding-bottom:15px; width:255px; margin:0 auto; text-align:left; color:#000; font-size:16px; padding-top:10px;}
.fen2{
	line-height: 55px;
	background:#015bbb;
	margin: 0px;
	padding: 0px;
	float: left;
	height: auto;
	width: 253px;
	padding-top:10px;
}
.lx_bt{ width:253px; height:20px; background:#FFF;}




.left_lx{ width:300px; height:auto; margin:0 auto; overflow:hidden; margin-top:30px;}
.left_lx_top{ width:250px; height:142px; margin:0 auto; background:url(left_logo.jpg) no-repeat center top;}
.left_lx_tf{ float:left; color:#0f2e4a; font-size:18px; height:50px; font-weight:bold; line-height:50px;}
.left_lx_bg{ width:270px; height:auto; margin:0 auto;}

/*搜索*/

.sousuo{ font-size:14px; background:#2073cf; color:#FFF; border:1px solid #2073cf; padding:3px 10px 3px 10px;border-radius:10%;cursor:pointer;}
.sousuo:hover{ background:#004f9a;border:1px solid #2073cf;-webkit-transition:all 0.5s linear;-moz-transition:all 0.5s linear;-ms-transition:all 0.5s linear;-o-transition:all 0.5s linear; transition:all 0.5s linear;}


.pro_list{ width:275px; height:260px; float:left; margin-bottom:20px; margin-right:10px; padding-left:10px;}
.pro_list a{width:275px;height:260px; margin:0 auto; display:block; border:1px #ccc solid; color:#666666; cursor:pointer;}
.pro_list a:hover{width:275px;height:260px; display:block; margin:0 auto; border:#dddddd 1px solid; color:#094faf;
-webkit-box-shadow:0 0 10px #dddddd;  
  -moz-box-shadow:0 0 10px #dddddd; 
  box-shadow:0 0 10px #dddddd;}

.pro_list_text{ width:235px; height:auto; text-align:center; overflow:hidden; margin-left:10px; line-height:40px; margin-top:5px; font-size:16px;}



.anli_list{ width:275px; height:320px; float:left; margin-bottom:20px; margin-right:10px; padding-left:10px;}
.anli_list a{width:275px;height:320px; margin:0 auto; display:block; border:1px #ccc solid; color:#666666; cursor:pointer;}
.anli_list a:hover{width:275px;height:320px; display:block; margin:0 auto; border:#dddddd 1px solid; color:#094faf;
-webkit-box-shadow:0 0 10px #dddddd;  
  -moz-box-shadow:0 0 10px #dddddd; 
  box-shadow:0 0 10px #dddddd;}

.anli_list_text{ width:235px; height:auto; text-align:center; overflow:hidden; margin-left:10px; line-height:40px; margin-top:5px; font-size:16px;}

.news_author {
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #505050;
    font-size: 12px;
    text-align: center;
    border-bottom: #e1e3df dashed 1px;
    margin: 0 auto;
    color: #666;
    margin-bottom: 20px;
}

.pageNavi{ width:90%; margin:0 auto; height:auto;}
.pageleft{ width:48%; height:40px; line-height:40px; text-align:center; float:left; margin-bottom:20px; font-size:14px; background:#F7F7F7;}
.pageright{ width:48%; height:40px;line-height:40px; text-align:center; float:right;margin-bottom:20px; font-size:14px;background:#F7F7F7;}
.pageleft a:hover{ color:#094faf;}
.pageright a:hover{ color:#094faf;}

/*banner*/
.fullSlide {width:100%;position:relative;height:500px; clear:both;}
.fullSlide .bd {margin:0 auto;position:relative;z-index:0;overflow:hidden;}
.fullSlide .bd ul {width:100% !important;}
.fullSlide .bd li {width:100% !important;height:500px;overflow:hidden;text-align:center; background-position:center top;background-repeat:no-repeat;}
.fullSlide .bd li a {display:block;height:500px;}
.fullSlide .hd { position:absolute; z-index:7; bottom:10px; left:47%; padding:5px 6px;}
.fullSlide .hd ul {text-align:center;}
.fullSlide .hd ul li{border-radius:14px;width:18px;height:18px; color:#eee;  background:#eee; float:left; cursor: pointer;display:block;margin-left: 5px;transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; -moz-transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; /* Firefox 4 */-webkit-transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; /* Safari and Chrome */ -o-transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; /* Opera */}
.fullSlide .hd ul .on{ width:32px;height:18px;background:#2f7fee; color:#0e60d1;}
.fullSlide .prev,.fullSlide .next {	display:block;position:absolute;z-index:1;top:50%;margin-top:-30px;left:5%;z-index:1;width:40px;height:60px;cursor:pointer;filter:alpha(opacity=50);opacity:0.5;display:none;width:81px; height:80px;}
.fullSlide .prev{ background:url(../img/left1s.png) no-repeat;}
.fullSlide .next {left:auto;right:5%;background:url(../img/right1s.png) no-repeat;}
/*banner*/
.fullSlide2 {width:100%;position:relative;height:300px; clear:both;}
.fullSlide2 .bd {margin:0 auto;position:relative;z-index:0;overflow:hidden;}
.fullSlide2 .bd ul {width:100% !important;}
.fullSlide2 .bd li {width:100% !important;height:300px;overflow:hidden;text-align:center; background-position:center top;background-repeat:no-repeat;}
.fullSlide2 .bd li a {display:block;height:300px;}
.fullSlide2 .hd { position:absolute; z-index:7; bottom:20px; left:47%; padding:5px 6px;}
.fullSlide2 .hd ul {text-align:center;}
.fullSlide2 .hd ul li{border-radius:14px;width:18px;height:18px; color:#eee;  background:#eee; float:left; cursor: pointer;display:block;margin-left: 5px;transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; -moz-transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; /* Firefox 4 */-webkit-transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; /* Safari and Chrome */ -o-transition:width 0.5s,height 0.5s,background 0.5s,color 0.5s; /* Opera */}
.fullSlide2 .hd ul .on{ width:32px;height:18px;background:#2f7fee; color:#0e60d1;}
.fullSlide2 .prev,.fullSlide2 .next {	display:block;position:absolute;z-index:1;top:50%;margin-top:-30px;left:5%;z-index:1;width:40px;height:60px;cursor:pointer;filter:alpha(opacity=50);opacity:0.5;display:none;width:81px; height:80px;}
.fullSlide2 .prev{ background:url(../img/left1s.png) no-repeat;}
.fullSlide2 .next {left:auto;right:5%;background:url(../img/right1s.png) no-repeat;}


/*cp*/

.cp{ width:1200px; height:auto; margin:0 auto;}
.cp_top{width:1200px; height:190px; margin:0 auto; background:url(../img/cp_top.jpg) no-repeat;}
.cp_main{ width:1200px; height:auto; margin:0 auto;}


/*底部开始*/
.f_bg { background: url(../img/f_bg.jpg) no-repeat center 0; height:459px;}

/*服务内容*/

.index_fwnr {

    width:100%;

}

.index_box {

    width:1260px;

    margin:auto;


    padding-top:52px;

    position:relative;

}

.title_box {

    width:100%;

    text-align:center;

    position:relative;

    z-index:9;

}

.title_box_title1 {

    font-size:26px;

    color:#1969a8;

    line-height:48px;

}

.title_box_title2 {

    font-size:22px;

    line-height:30px;

    color:#b7b7b7;

    text-transform:uppercase;

    font-family:Arial;

    font-weight:initial;

}

.title_box_title3 {

    font-size:24px;

    color:#fff;

    line-height:38px;

}

.title_box_title4 {

    font-size:22px;

    line-height:30px;

    color:#fff;

    opacity:0.32;

    text-transform:uppercase;

    font-family:Arial;

    font-weight:initial;

}

.index_fwnr_list {

    width:100%;

    padding-top:33px;

}

.index_fwnr_list .bd {

    width:100%;

    height:320px;

}

.index_fwnr_list .bd ul {

    height:320px;

}

.index_fwnr_list .bd li {

    width:285px;

    height:271px;

    float:left;

    margin-right:40px;

    border-bottom:1px solid #e9e9e9;

    padding-top:10px;

    transition: all ease .3s;

}

.index_fwnr_list .bd li:hover {

    height:310px;

    padding-top:0;

    background:#1e50ae;

    border-bottom:none;

    box-shadow:0 5px 10px 0  #efefef;

}

.fwnr_list_img {

    width:285px;

    transition: all ease .3s;

}

.fwnr_list_title {

    width:100%;

    text-align:center;

    padding-top:22px;

    transition: all ease .3s;

}

.fwnr_list_title p {

    font-size:18px;

    line-height:32px;

    color:#333;

    transition: all ease .3s;

}

.fwnr_list_title span {

    font-size:12px;

    line-height:23px;

    color:#999;

}

.index_fwnr_list .bd li:hover .fwnr_list_title p, .index_fwnr_list .bd li:hover .fwnr_list_title span {

    color:#eee;

}

.fwnr_list_tb {

    width:30px;

    height:30px;

    margin:auto;

    margin-top:13px;

    display:none;

    transition: all ease .3s;

}

.index_fwnr_list .bd li:hover .fwnr_list_tb {

    display:block;

}

.fwnr_list_tb img {

    width:30px;

    height:30px;

}

.index_fwnr_list .hd {

    width:100%;

    height:42px;

    text-align:center;

    margin-top:30px;

    padding-bottom:55px;

}

.index_fwnr_list .hd .prev, .index_fwnr_list .hd .next {

    width:40px;

    height:40px;

    border:1px solid #dcdcdc;

    margin:0 3px;

    display:inline-block;

    cursor:pointer;

    transition: all ease .3s;

}

.index_fwnr_list .hd .prev {

    background:url(../images/tb6.jpg) center center no-repeat;

}

.index_fwnr_list .hd .prev:hover {

    background:url(../images/tb6-1.jpg) center center no-repeat;

    border:1px solid #4f64ae;

}

.index_fwnr_list .hd .next {

    background:url(../images/tb7-1.jpg) center center no-repeat;

}

.index_fwnr_list .hd .next:hover {

    background:url(../images/tb7.jpg) center center no-repeat;

    border:1px solid #4f64ae;

}
/*关于我们*/
.about_bg{width:100%; height:370px; padding-top:50px;}
.about_body{ width:1200px; margin:0 auto; background-color:rgba(255,255,255,0.9); height:365px;overflow:hidden; }
.about_rigth img{ width:600px; height:282px; float:right; overflow:hidden;  cursor: pointer;  transition: all 0.3s;}
.about_title{ font-size:26px; color:#000; padding-top:20px; text-indent:30px;}
.about_left{ float:left; width:600px; height:300px;}
.about_more{background:#f4bf1b; width:90px; height:30px; font-size:14px; text-align:center; line-height:30px; color:#fff;transition: all 0.3s; margin-top:10px; border-radius:15px;}
.about_more:hover{background:#bd0000;}
/*服务流程*/
.fuwuliucheng{ width:1000px; margin:0 auto;}
.fuwu_bg{ background:url(../images/fuwu_bg.jpg) center center no-repeat;width:1000px; height:530px;}
.fuwu_tu1{background:url(../images/q01.png) no-repeat; width:190px; height:190px; position:absolute; z-index:1; margin-left:70px;}
.fuwu_tu2{background:url(../images/q02.png) no-repeat; width:190px; height:190px; position:absolute; z-index:1; margin-left:70px;}
.fuwu_tu3{background:url(../images/q03.png) no-repeat; width:190px; height:190px; position:absolute; z-index:1; margin-left:70px;}
.fuwu_tu4{background:url(../images/q04.png) no-repeat; width:190px; height:190px; position:absolute; z-index:1; margin-left:70px;}
.fuwu_tu5{background:url(../images/q05.png) no-repeat; width:190px; height:190px; position:absolute; z-index:1; margin-left:70px;}
.fuwu_tu6{background:url(../images/q06.png) no-repeat; width:190px; height:190px; position:absolute; z-index:1; margin-left:70px;}
.fuwu_tu_zi{font-size:18px; color:#777777; position:relative; z-index:9; width:190px; margin-top:120px;}

/*案例展示*/
.zhanshi{ width:100%; height:500px; background:#f7f7f7; overflow:hidden;}
.pnav{width: 1200px;position: relative;padding-top: 1px;margin: 30px auto 0 auto;}
.pnav ul{text-align: center;}
.pnav ul li {display: block;margin: 0 14px;width: 270px;height: 320px;overflow: hidden;float: left;}
.pnav ul li a{display: block;}
.pnav ul li a img{transition:  1s;width: 270px;height: 270px;border-radius: 0%;transition: all .3s; padding:5px; border:0px #ccc solid;}
.pnav ul li a p{text-align: center;font-size: 18px;color: #404040;margin-top: 0px;transition: .3s;width: 100%; line-height:50px;}

.pnav ul li:hover{display:block;color: #cd0404;}
.pnav ul li a:hover img{filter: brightness(100%);}
.pnav ul li a:hover p {color: #cd0404;}

.pnav .btnLeft,.pnav .btnRight{position:absolute;top:40%;margin-top:-30px;width:27px;height:51px;transition: 0.5s;opacity: 0.6;}
.pnav .btnLeft{left:-80px;background:url(../img/leftbtn.png) no-repeat center;}
.pnav .btnLeft:hover{left: -90px;opacity: 1;}
.pnav .btnRight{right:-80px;background:url(../img/rightbtn.png) no-repeat center;}
.pnav .btnRight:hover{right: -90px;opacity: 1;}
.guobg{width: 100%;padding-top: 1px;overflow: hidden;padding-bottom: 65px;}
.guobg .wrap1366{position: relative;}
.guobg .wrap1200{position: relative;}

.ptxt{width: 435px;height: 78px;position: absolute;left: 50px;top: 100px;}
.infoList{margin:50px 0 0;}
.produtlist li{margin-bottom:20px;width:326px;float:left;margin-right:20px;background: #fff;overflow: hidden;}
.produtlist li a{color: #000;display: block;position: relative;}
.produtlist li a img{width:326px;height:230px;display:block;transition: .5s;}
.produtlist li a em{display: block; font-size: 16px; color: #fff; height: 40px; position: absolute; left: 0; bottom: 0; background:url(../img/bg70.png) repeat; width: 286px; padding: 0 20px; overflow: hidden; line-height: 40px;transition: .5s;text-align: center;}
.produtlist li a em b{display: block;transition: .4s;}
.produtlist li a em p{font-size: 14px;text-align:left;}
.produtlist li a:hover em{line-height: 26px; height:84px; padding-top: 33px;cursor: pointer;}
.produtlist li a:hover em b{line-height: 50px;}
.produtlist li a:hover img{transform:scale(1.07,1.07);    filter: brightness(110%);}

.anli_more{background:#006bbd; width:126px; height:40px; font-size:16px; text-align:center; line-height:40px; color:#fff;transition: all 0.3s; margin-top:10px; margin:0 auto;}
.aanli_more:hover{background:#bd0000;}

/*新闻中心*/
.news_bg{ width:100%; height:650px; background:#f7f7f7;}
.news_body{width:1200px; height:455px; margin:0 auto;}
.news_left{ width:120px; height:150px; float:left;position:absolute; border-right:1px #e4e4e4 solid; margin-top:20px;}
.news_date_m-d{ font-size:28px; color:#666666; padding-left:10px; padding-top:10px;}
.news_date_YY{ font-size:18px; color:#666666; padding-left:11px; padding-top:10px;}
.news_list{ width:560px; height:190px; background:#fff; float:left; margin-left:40px; margin-bottom:20px;}
.news_right{ width:420px; height:auto; float:right; }
.news_list img{display: inline; float:left; margin-top:15px;}
.news_title a{font-size:18px; color:#000; margin-bottom:10px;}
.news_title a:hover{ color:#ae1e1e;}
.mews_jianjie{font-size:14px; color:#666; margin-top:10px;}
.news_zi{width:420px; height:125px; float:right; margin-left:26px; padding-top:30px; padding-right:20px;}

/*foot*/
.foot{color:#888888; font-size:14px;}
.foot a{color:#888888;}
.foot a:hover{ color:#ff0;}
.foot_lx_bg{width:100%; height:325px; background:#f7f7f7; overflow:hidden;}
.foot_lx_center{width:1150px; margin:0 auto; padding-top:40px;}
.foot_left{ width:600px; float:left;}
.foot_right{ width:500px; float:right;}
.foot_hang{width:100%; height:50px; padding-top:10px;}
.foot_hang_zi{font-size:18px; font-family:'微软雅黑'; color:#555; margin-left:10px;}
.foot_menu { padding: 0 0px; width: 690px; margin:0 auto; height: 65px;}

/*页面底部*/
.foot1{
    height: 68px;
    background: #353434;
}
.fnav p{
  color: #fff;
  font-size: 11px;
  line-height: 68px;  
}
.fnav a{
  color: #fff;
  font-size: 16px;
  line-height: 68px;  
  margin:0 30px;
}
.foot2{
    background: #005bb8;
    overflow: hidden;
    padding:38px 0 25px;
}
.foot2_top{
    overflow: hidden;
    padding-bottom: 38px;
}
.f2_left{
    width: 285px;
    overflow: hidden;
}
.f2_left h2{
    font-size: 16px;
    color: #fff;
    margin-bottom: 7px;
    line-height: 16px;
}
.f2_left p{
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}
.f2_right{
    width: 544px;
    overflow: hidden;
}
.f2_right .fewm{
	margin-right:20px;
    width: 92px;
    text-align: center;
}

.f2_right .fewm-2{
	margin-left:20px;
    width: 92px;
    text-align: center;
}
.f2_right .fewm-2 p{
    font-size: 13px;
    line-height:30px;
    color: #fff;
	text-align:center;
}
.f2_right .fewm p{
    font-size: 13px;
    line-height:30px;
    color: #fff;
	text-align:center;
}

.f2_right .ftel{
    width: 266px;
    /*background: url(../img/ftel.jpg) left 5px no-repeat;*/
    box-sizing: border-box;
    padding-left:10px;
    text-align: left;
}
.f2_right .ftel p{
    font-size: 16px;
    line-height: 16px;
    padding-top: 2px;
    color: #fff;
}
.f2_right .ftel p:last-of-type{
    margin-top: 13px;
    font-weight: bold;
    font-size: 27px;
}
.foot2_bot{
    border-top: 1px solid #fff;
    overflow: hidden;
    padding-top: 26px;
}
.foot2_bot div,.foot2_bot p,.foot2_bot a{
    text-align: left;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
}

.w1920{
    width: 100%;
	}
.w1200{
    width: 1200px;
    position: relative;
    margin-left: -600px;
    left: 50%;
}

/* 一级菜单设置为相对定位 */
.foot_menu > ul > li { position: relative;}/*background:url(../img/xian_menut.jpg) no-repeat right;*/

/* 
- 因为导航背景颜色是黑色，所以设置一级导航的文字颜色是白色 
- 导航高48px，一级导航的文字要垂直居中，可以计算（48-文字行高）/2，然后设置外边距或者内边距，让文字刚好居中。
- 上面的居中方式太复杂了，不如line-height: 48px;让文字行高和导航高度一样，自然就居中了。
*/
.foot_menu > ul > li > a { line-height: 55px; color: #b6b6b6; margin-top:10px; margin-right:10px; font-size:14px;}

.foot_menu > ul > li > a { display: block; padding: 0 4px; line-height: 55px; color: #b6b6b6; }

.foot_menu > ul > li:hover > a { color:#ff0; }


/*优势*/
.wraper{width: 100%; min-width: 1200px;}
.wrap{width: 1200px; margin: 0 auto;}
.clearfix:before, .clearfix:after { content: ""; display: table;}
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }
.fl{float: left;}
.fr{float: right;}

.advan_box li {
    width: 398px;
    height: 327px;
    border-right: 1px solid #e7e7e7;
    text-align: center;
    border-bottom: 1px solid #E7E7E7;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fff;
}

    .advan_box li:hover {
        transform: translateY(-6px);
        -webkit-transform: translateY(-6px);
        -moz-transform: translateY(-6px);
        box-shadow: 0px 0px 40px rgba(0, 36, 100, 0.3);
        -webkit-box-shadow: 0px 0px 40px rgba(0, 36, 100, 0.3);
        -moz-box-shadow: 0px 0px 40px rgba(0, 36, 100, 0.3);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 100;
    }

.icon_advan {
    background: url(../img/advan2018.png) no-repeat;
    width: 110px;
    height: 112px;
    display: block;
    margin: 40px auto;
}

.advan_box li.violet:hover p {
    color: #7c56fa;
}

.advan_box li.violet:hover b {
    background-color: #7C56FA;
}

.advan_box li.blue:hover p {
    color: #129fee;
}

.advan_box li.blue:hover b {
    background-color: #129fee;
}

.advan_box li.orange:hover p {
    color: #f6a200;
}

.advan_box li.orange:hover b {
    background-color: #f6a200;
}

.advan_box li.red:hover p {
    color: #ff676b;
}

.advan_box li.red:hover b {
    background-color: #ff676b;
}

.advan_box li.green:hover p {
    color: #00d7b2;
}

.advan_box li.green:hover b {
    background-color: #00d7b2;
}

.advan_box li .ad_name {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.advan_box li .ad_tab {
    color: #999;
    font-size: 12px;
}

.advan_box li b {
    width: 40px;
    height: 2px;
    background-color: #d3d3d3;
    display: block;
    margin: 15px auto 15px;
}

.advan_box li.bor_none {
    border-bottom: none;
}

.advan_box li.bor_right {
    border-right: none;
}

.anvan_02 {
    background-position: 0 -123px;
}

.anvan_03 {
    background-position: 0 -243px;
}

.anvan_04 {
    background-position: 0 -374px;
}

.anvan_05 {
    background-position: 0 -496px;
}

.anvan_06 {
    background-position: 0 -623px;
}

/*主体样式*/
.tit{
    text-align: center;
    overflow: hidden;
}
.tit h2{
   color: #2662ae;
   font-size: 37px;
   line-height: 37px; 
   margin-bottom: 20px;
}
.tit p{
   color: #666666;
   background: url(../img/titbg.jpg) top center no-repeat;
   font-size: 18px;
   line-height: 18px;
}
.tit p a{
   width: 13px;
   height: 16px;
   display: inline-block;
   background: url(../img/titdot.jpg) center no-repeat;
}
.youshi_1{ width:1920px; height:300px; background:url(../img/youshi_1.jpg) center no-repeat; margin-top:30px;}

.phone1{
    width: 100%;
    background: #2662ae;
    text-align: center;
    padding:41px 0 25px;
}

.phone1 p{
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
}

.phone1 h2{
    color: #ffffff;
    font-size: 25px;
    margin:12px 0 20px;   
}
.phone1 p:last-of-type{
    margin-bottom:28px; 
}
.phone1 .more1{
    width: 157px;
    height: 30px;
    line-height: 30px;
    margin:0 auto;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    font-size: 14px;
    color: #000000;
}

.prod{
    width: 980px; float:right; margin-top:10px;
}
.prod li{
    width: 301px;
    box-sizing: border-box;
    float: left;
    overflow: hidden;
    margin-right:25px;
    text-align: center;
}
.prod li img{
     border:1px solid #e5e5e5; 
}
.prod li:nth-of-type(3n){
    margin-right: 0;
}
.prod li h3{
    line-height: 37px;
    font-size: 14px;
    color: #000000;
}
.prod li:hover img{
    border:1px solid #2f68b1;
}
.prod li:hover h3 a{
    color: #d10f0f;
}

.tit1 p{
    background: url(../img/tit1.jpg) center no-repeat;
}