﻿@charset "utf-8";
/* CSS Document */

body{ margin:0px; padding:0px; border:0px; font-family:"Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei"; color:#555555; font-size:14px; width:100%; background:#ffffff;}
a{ margin:0px; padding:0px; border:0px; text-decoration:none; color:#555555; font-size:13px;}
a:hover{ text-decoration:none;}
*{ padding:0px; margin:0px; border:0px; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
/* background:rgba(0,0,0,0);filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);*/
li{ list-style:none;}
.clear{ clear:both !important; height:0px !important; width:0px !important; float:none !important; margin:0px !important; padding:0px !important; border:0px !important; line-height:0 !important; position:relative !important; }
input:focus{ outline: none;}/*去除按钮选中的高亮标签*/
textarea:focus{ outline: none;}/*去除文本框选中的高亮标签*/
button:focus{ outline: none;}/*去除按钮选中的高亮标签*/
select:focus{ outline: none;}/*去除下拉框选中的高亮标签*/
img{ vertical-align: middle;}
div,p,table,td,ul,li,span,a,ol,input,label{ padding:0px; margin:0px; border:0px;}
input::-ms-input-placeholder{ /* Internet Explorer 10+ */ color:#4d4d4d; font-size:12px;}
input::-webkit-input-placeholder{ /* WebKit browsers */ color:#4d4d4d; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */  color:#4d4d4d; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#4d4d4d; font-size:12px;}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#4d4d4d; font-size:12px;}
textarea::-webkit-input-placeholder{color:#4d4d4d; font-size:12px;}



.fl{ float:left;}
.fr{ float:right;}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    overflow: hidden;
}



/*下面是滚动条样式*/


    ::-webkit-scrollbar-track {
		  background-color: none;
	} /* 滚动条的滑轨背景颜色 */

	::-webkit-scrollbar-thumb {
		  background:#c0c0c0; 
	} /* 滑块颜色 */

	::-webkit-scrollbar-button {
		  background-color: none;
	} /* 滑轨两头的监听按钮颜色 */

	::-webkit-scrollbar-corner {
		  background: none;
	} /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
    ::-webkit-scrollbar {
    width: 13px;
    height: 5px;
} /* 这是针对缺省样式 (必须的)

/*渐变*/
.jianbian{
    height: 200px;
    background: -webkit-linear-gradient(blue, yellow); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(blue, yellow); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(blue, yellow); /* Firefox 3.6 - 15 */
    background: linear-gradient(circle, red, yellow); /* 标准的语法（必须放在最后） */
}
/*渐变从左向右*/
.jianbian2{
    height: 200px;
    background: -webkit-linear-gradient(to right,blue, yellow); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(to right,blue, yellow); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(to right,blue, yellow); /* Firefox 3.6 - 15 */
    background: linear-gradient(to bottom,white, yellow); /* 标准的语法（必须放在最后） */
}







/*黑白照片*/
.gray { 
-webkit-filter: grayscale(100%); 
   -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
     -o-filter: grayscale(100%); 
        filter: grayscale(100%); 
        filter: gray; 
}

.gray:hover { 
-webkit-filter: grayscale(0%); 
   -moz-filter: grayscale(0%); 
    -ms-filter: grayscale(0%); 
     -o-filter: grayscale(0%); 
        filter: grayscale(0%); 
        filter: gray; 
}
/*圆角5px*/
.radius5{ 
-webkit-border-radius:5px; 
   -moz-border-radius:5px; 
    -ms-border-radius:5px; 
     -o-border-radius:5px; 
        border-radius:5px; 
}
/*圆角10px*/
.radius10{ 
-webkit-border-radius:10px; 
   -moz-border-radius:10px; 
    -ms-border-radius:10px; 
     -o-border-radius:10px; 
        border-radius:10px; 
}
/*图片变大*/
.tra{
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
           filter: scale(1);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
.tra:hover{
-webkit-transform: scale(1.15);
   -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
     -o-transform: scale(1.15);
           filter: scale(1.15);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
/*透明度50%*/
.opacity5{ filter:alpha(opacity=50);-moz-opacity:0.5; -khtml-opacity:0.5;opacity: 0.5;}


/*投影*/
.shadow5{ 
-webkit-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
   -moz-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
    -ms-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
     -o-box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
        box-shadow:rgba(0,0,0,0.13) 5px 5px 5px; 
		transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
}

/*投影*/
.shadow10{ 
-webkit-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
   -moz-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
    -ms-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
     -o-box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
        box-shadow:rgba(0,0,0,0.13) 5px 5px 10px; 
}

.shadow11{ 
-webkit-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
   -moz-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
    -ms-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
     -o-box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
        box-shadow:rgba(0,0,0,0.33) 0px 0px 15px; 
}

/*图片居中*/
.chuizhi{
	display:-webkit-box;
	 display:-webkit-flex;
	 display:-moz-box;
	 display:-moz-flex;
	display:-ms-flexbox;
	display:flex;
	/* 水平居中*/ 
		   -webkit-box-align:center;
			  -moz-box-align:center;
			   -ms-flex-pack:center;
	 /* IE 10 */
	 -webkit-justify-content:center; 
		-moz-justify-content:center;
			 justify-content:center;
	/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
	/* 垂直居中 */ 
			-webkit-box-pack:center;
			  -ms-flex-align:center;
			   -moz-box-pack:center;
	/* IE 10 */
		 -webkit-align-items:center;
			-moz-align-items:center;
				 align-items:center;	
}

/*图片翻转*/
.flip{
	-webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
           transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
	cursor:pointer;
 }
.flip:hover{
	-webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
           transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;  
	cursor:pointer;
}




.fenye_nei b{
    display: inline-block;
    padding: 0 13px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    margin: 0 3px;
    border-radius: 5px;
    border: #dddddd solid 0px;
    overflow: hidden;
    font-size: 13px;
    color: #fff;
	background:#991e29;}




#wenhua{ padding-top:0px;}


.product1_nei_top{ border-bottom:1px dashed #dcdcdc}

.product8_nei_top{ border-bottom:0px !important}


.top{top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	height: 56px;
	position: relative;
	background: url(../images1/header-top.png) no-repeat top center;}
	
.top .topcc{position: relative; max-width:1350px; margin:auto;}
.top .info {
	color: #666;
	display: inline-block;
	padding-top: 20px;
}

.top .info img {
	max-height: 20px;
	margin: 2px 5px 0 0;
}

.top .tel {
	color: #fff;
	float: right;
	padding-left: 69px;
	position: relative;
	padding-top: 6px;line-height: 22px;
}

.top .tel img {
	left: 10px;
	top: 15px;
	position: absolute;
	max-height: 30px;
}

.top .tel span {
	display: block;
}

.top .tel span a {
	color: #fff;
	font-size: 21px;
	font-weight: 700;
	font-family: "DINPro-Light_0";
}

.top .tel .bt {
	position: relative;
}

.top .tel .bt:before {
	top: 14px;
	left: -15px;
	content: "";
	width: 1px;
	height: 26px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
}


.top .yy {
	 width:126px;
	float: right;
	font-size: 16px;
	position: relative;
	padding-left: 20px;
}

.top .yy a{ width:39px; float:left; text-align:center; display:block; margin-right:10px; line-height:24px; margin-top:6px; color:#ffffff; font-size:12px;}
.top .yy a:hover{color:#fff; text-decoration:underline;}


/*搜索*/
.top .link{ width:150px; height:55px; margin:0 auto;float: right; position: relative;}
.top .link ul{ width:150px; height:55px; margin:0 auto;}
.top .link ul li{ float:left; height:55px; margin-top:8px;}

.bannerfo{ width:150px;height:36px; border-top:1px solid rgba(255,255,255,0.4); position:relative; margin-top:2px;border-bottom:1px solid rgba(255,255,255,0.4);}
.bannerfo dl dt{ display:inline}
.bannerfo dl .inputbox{ position:absolute; left:0; top:0; width:90px; height:36px;}
.bannerfo dl .inputbox input{ width:85px; height:36px; padding:0 0 0 15px;color:rgba(255,255,255,0.4); line-height:36px; font-size:14px; background:none;position:absolute; font-family:微软雅黑;}
.bannerfo dl .menuser{ position:absolute; left:100px; top:0; width:53px; height:36px; display:block;background: url(../images1/search2.png) no-repeat 0 0; }
.bannerfo dl .menuser input{width:53px; height:36px;background: none;position:absolute;}










.top2{ width:100%; background:#fff; line-height:72px; position:absolute;z-index:999999; top:0; left:0}
.nei_top2{ background:rgba(255,255,255,0.9);box-shadow: 0px 0px 5px rgba(65,66,72,.15);}
.top2 .top2_nei{ max-width:1120px; margin:0 auto}
.top2 .top2_daohang{ padding-left:50px; position:relative;z-index:999999;}
.top2 .top2_daohang .top2_daohang_nei .daohang_nei_top{ color:#111; display:inline-block; line-height:78px; padding:0px 30px; position:relative;font-size:16px;border-bottom:2px solid rgba(255,255,255,0);}
.top2 .top2_daohang .top2_daohang_nei .daohang_nei_top:before{    content: "";display: block;width:1px;height:13px;background:#d1caca;position: absolute;left:100%;bottom:41%;transform:rotate(15deg);}
.top2 .top2_daohang .top2_daohang_nei:nth-child(8) .daohang_nei_top:before{ background:none}
.top2 .top2_daohang .top2_daohang_nei:hover .daohang_nei_top{ border-bottom:2px solid #c1272d;}

.top2 .top2_daohang .top2_daohang_nei:nth-child(2) .xiala{ left:-308px;}
.top2 .top2_daohang .top2_daohang_nei .xiala{ width:1350px; height:auto; background:rgba(255,255,255,1); position:absolute; display: none; padding-bottom:20px;z-index:999999;box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border:1px solid #eee} 




.top2 .top2_daohang .top2_daohang_nei .xiala2{ width:124px; height: auto !important;}
.top2 .top2_daohang .top2_daohang_nei .xiala2 .xiala_nei{display:block;width:100%; text-align:center;}




.top2 .top2_daohang .top2_daohang_nei .xiala .xiala_nei a{display:block; width:100%; font-size:15px; text-align:center;}
.top2 .top2_daohang .top2_daohang_nei .xiala .xiala_nei a:hover{ color:red}

.top2 .top2_daohang .top2_daohang_nei .xiala a:before{ display:none}


.navbar-nav{height:72px;float:right; width:70%;}
.navbar-nav .nav-list>li{height:72px;text-align:center;position:relative;z-index:999; width:12.3%;display: inline-block;}
.navbar-nav .nav-list>li>a{display:block;line-height:72px;color: #111111;height:72px;font-size: 16px;transition:all 0.4s; position:relative}
.navbar-nav .nav-list>li.dropdown a:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0px;
    height: 2px;
    background-color: #ef1f1f;
    opacity: 0;
    transition: all .5s ease
}

.navbar-nav .nav-list>li.dropdown:hover a:before,.navbar-nav .nav-list>li>a.nav_on:before{
    width: 100%;
    opacity: 1
}
.navbar-nav li.active>a,.navbar-nav .nav-list>li:hover>a,.navbar-nav .nav-list>li>a.reds{color:#111;}
.navbar-nav .nav-list>li>a.nav_on{font-size:16px;position:relative;color:#111}

.navbar-nav .header-contact>p{color:#444;font-size:14px;margin-bottom:0;line-height:18px;}
.navbar-nav .header-contact>.fr p{font-size:25px;color:#a10000;line-height:30px; font-family:impact}
.navbar-nav .header-contact>.fr p:first-child{font-size:12px;color:#999 !important;line-height: 14px}
.top-icon{width:12px;height:12px;position:absolute;margin-left:-18px;vertical-align:middle;margin-top:13px;}
.icon-follow{background:url("../images/top_icons2.png") no-repeat left center;}
.icon-global{background:url("../images/top_icons3.png") no-repeat left center;}
.dropdown-menu{display:block;display: none\9;display: block\9\0;-webkit-transform:scale(1.2,0);transform:scale(1.2,0);opacity:0;-webkit-transform-origin:top;transform-origin:top;-webkit-transition:all .2s ease-out;-webkit-transition:-webkit-all .2s ease-out;transition:-webkit-all .2s ease-out;transition:all .2s ease-out;transition:all .2s ease-out,-webkit-all .2s ease-out;z-index:9999; position: absolute; background:#fff; top:72px; width:100%; text-align:center;box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);border-top:none; }
.dropdown-menu > li{border-bottom:1px solid #e5e5e5;}
.dropdown-menu > li>a{font-size:14px;line-height:24px; display:block; width:100%;transition:all .1s ease; padding:9px 0; color:#333}
.dropdown-menu > li>a:hover{background:#ef1f1f; color:#fff}
.dropdown-menu > li:hover{border-bottom:1px solid #ef1f1f;}
.dropdown-active{display: block\9;-webkit-transform:scale(1,1);transform:scale(1,1);opacity:1;}

.navbar-nav .nav-list>li.dropdown:hover .dropdown-menu > li>a:before{ display:none !important}

body{ overflow-x:hidden}
.cpej{width:1920px !important; padding:0 0 20px; left:50% !important; margin-left:-870px !important}
.dropdown-menu .cpdh{  text-align:left; line-height:30px;  margin-top:30px;  overflow:hidden;}
.dropdown-menu .xiala_nei_title{ font-size:16px;  display:inline-block; padding-bottom:10px; color:#333}
.dropdown-menu .cpdh a{display:inline-block; width:100%;  font-size:15px; text-align:left !important;text-indent: 30px;float: left;overflow: hidden;height: 30px;line-height: 30px;text-overflow:ellipsis;white-space:nowrap;}
.dropdown-menu .cpdh a:hover{ color:red !important;}
.dropdown-menu .cpdh {height:315px;width:16.5%;border-right:1px solid rgba(0,0,0,0.1);box-sizing: border-box}
.dropdown-menu .cpdh:nth-child(1),.dropdown-menu .cpdh:nth-child(2){ width:33.5% !important}
.dropdown-menu .cpdh:nth-child(6){ width:17%}
.dropdown-menu .cpdh:nth-child(5){ width:33.5%}
.dropdown-menu .cpdh:nth-child(4),.dropdown-menu .cpdh:nth-child(9){ border-right:0px}
.dropdown-menu .cpdh:nth-child(1) a,.dropdown-menu  .cpdh:nth-child(2) a,.dropdown-menu  .cpdh:nth-child(5) a{ width:50%}
.dropdown-menu .cpdh a.xiala_nei_title2{ font-size:18px; font-weight: bold;display:block;  width:100%; padding:0 !important; margin-bottom:10px}
.dropdown-menu .cpdh a,.dropdown-menu .cpdh a:hover,.dropdown-menu .cpdh a:before{ background:none !important; border-bottom:none!important; padding:0 !important}
.cpej li{max-width:1350px; margin:0 auto}
.cpej li:hover{border-bottom:none;}


/*语言选择*/


/*.top2 .top2_daohang .top2_daohang_nei .daohang_nei_top1{ color:#989a9c; display:inline-block; line-height:80px; padding:0px 30px; position:relative;font-size:16px; background:url(../images1/dt.png) no-repeat left center;}
.top2 .top2_daohang .top2_daohang_nei:nth-child(6) .daohang_nei_top1:before{ background:none}
.top2 .top2_daohang .top2_daohang_nei .daohang_nei_top1:hover{ border-bottom:2px solid #c1272d; line-height:76px;}
*/




/*语言选择结束*/

.banner{ position:relative}



.index_body_yi{ background:url(../images1/bn3.png) no-repeat 50%/cover; width:100%; position:absolute; top:795px; height:98px; z-index:11}
.index_body_yi .body_yi_nei{ max-width:1090px; margin:0 auto; position:relative}
.index_body_yi .body_yi_nei .yi_nei_xun{ font-size:15px; color:#FFFFFF; text-align:center; display:inline-block; padding:0px 86px; position:absolute; top:-35px}

.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(2){ left:262px; padding:0 75px; top:-35px}
.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(3){ left:545px; padding:0 79px; top:-35px}
.index_body_yi .body_yi_nei .yi_nei_xun:nth-child(4){ left:826px; padding:0 54px; top:-35px}
.index_body_yi .body_yi_nei .yi_nei_xun div:nth-child(1){ padding-bottom:20px}




.index_body_er{ width:100%; background:#f6f6f6; padding-top:40px; padding-bottom:0px}
.index_body_er .body_er_nei{ max-width:1350px; margin:30px auto;}
.index_body_er .er_nei_title{ background:url(../images1/bn8.png) no-repeat 50% 100%; text-align:center; padding-bottom:45px}
.index_body_er .er_nei_title p:nth-child(1){ font-size:30px; color:#3e3a39; padding-bottom:10px}
.index_body_er .er_nei_title p:nth-child(2){ font-size:16px; color:#3e3a39;}
.index_body_er .er_nei_title p:nth-child(2) span{ font-size:15px; color:#3e3a39; font-weight:bolder; padding-right:10px}

.er_nei_titlea{ background:url(../images1/bn8a.png) no-repeat 50% 75%; text-align:center; padding-bottom:25px}
.er_nei_titlea p:nth-child(1){ font-size:36px; color:#3e3a39; padding-bottom:10px;font-weight: bold;}

.er_nei_titlea2{ background:url(../images1/bn8a.png) no-repeat 0 85%; text-align:left; padding-bottom:25px}
.er_nei_titlea2 p:nth-child(1){ font-size:36px; color:#3e3a39; padding-bottom:10px;font-weight: bold;}
.fo22{ line-height:2; font-size:22px; margin-bottom:10px}
.fo16{ line-height:1.8; font-size:18px}
/*人才招聘修改后样式*/
.job-warp {
}
.job-warp ul li { margin-top:30px;border: 1px solid #DDDDDD;border-radius: 10px 10px 10px 10px; overflow:hidden
	
}
.job-warp li .titlea {
	height: 62px !important;
	line-height: 62px !important;
	padding: 0 30px;
	color: #4b4b4b;
	background: #fff;
	font-size: 20px;
	cursor:pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	font-weight:bold;
}
.job-warp li .titlea font{ font-weight:500; font-size: smaller}
.job-warp ul li.on{border-bottom:5px solid #0068c5;}
.job-warp li.on .titlea {
	background-color: #f5f5f5;
	color: #111;
	font-weight:bold;border-radius: 10px 10px 0 0;
}
.job-warp li .titlea span {
	float: right;
	padding-right: 20px;
	background: url(../images/job-icon1.png) right center no-repeat;
	font-size:14px;
	line-height:62px !important;
	font-weight:500; color:#999
}
.job-warp li.on .titlea span {
	background: url(../images/job-icon2.png) right center no-repeat;
	color:#999;
}
.job-warp li .warp {
	padding: 10px 30px 20px;
	background-color: #fff;
	display: none;
}
.job-warp .warp .tbl {
	width:100%;
	margin-bottom: 15px;
	padding:10px 0 20px 0;
	border-bottom: 1px solid #e9ebed
}
.job-warp .warp .tbl p {
	width: 33.3%;
	float: left;
	line-height: 2;
	font-size: 16px;
}
.job-warp .warp .tbl p strong {
	font-size:16px;
}
.job-warp .warp .tbl p span {
	color: #565656;
	padding-left: 15px;
	font-size:16px;
}
.job-warp .warp .cont {
}
.job-warp .warp .cont h2 {
	font-size:16px;
}
.job-warp .warp .cont .cent, .job-warp .warp .cont .cent *{
	font-size:16px; line-height:2
}
.job-warp .warp .btns {
	color: #005ba0;
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	margin: 10px 0;
	display: block;
	font-size:16px;
}
.job-warp .warp .btns:hover {
	color: #222;
}

.invite-des-box {
    margin-top: 72px;
    display: flex;
    /* justify-content: space-between; */
}

.invite-title {
    margin-bottom: 25px;
}

.invite-more {
    padding-right:96px;
    margin-right: 96px;
    flex-shrink: 0;
    position: relative;
}
.invite-more .er_nei_titlea2,.invite-contact .er_nei_titlea2{ margin-bottom:10px}

.invite-more::after {
    content: '';
    width: 1px;
    height: 200px;
    background: #CCCCCC;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.invite-more-list {
    display: flex;
    margin-top: 40px;
}

.invite-more-a {
    margin-right: 35px;
    width:60px;
    height: 60px;
}

.invite-more-a:last-of-type {
    margin-right: 0;
}

.invite-more-a img {
    width: 100%;
    height: 100%;
}

.invite-more-img2 {
    display: none;
}

.invite-more-a:hover .invite-more-img1 {
    display: none;
}

.invite-more-a:hover .invite-more-img2 {
    display: block;
}

.invite-contact-list {
    display: flex;
}

.invite-contact-item {
    margin-right: 48px;
}

.invite-contact-text {
    font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    margin-bottom: 16px;
}

.invite-contact-a {
   font-size: 16px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
   margin-bottom: 16px;
}


.index_body_er .body_er_nei .er_nei_left{ margin-right:-668px; width:50%}
.index_body_er .body_er_nei .er_nei_right{ margin-left:686px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun{ display:inline-block; padding:23px 0px; border:2px solid #ebeaea; text-align:center; margin-right:11px; margin-bottom:11px; background:#fff; position:relative; overflow:hidden; width:326px; height:403px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_title{ height:278px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun img{ height:252px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:nth-child(2n){ margin-right:0px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_body{ padding-top:10px; padding-bottom:17px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_body p:nth-child(1){ font-size:10px; color:#595757; font-weight:bolder}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bottom{ color:#3e3a39; font-weight:bolder}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bottom span{ display:inline-block; width:18px; height:18px; background: url(../images1/jt.png) no-repeat center #276eb8; color:#fff; border-radius:30px; text-align:center; line-height:18px; margin-left:5px}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg{ width:323px; height:400px; background:url(../images1/bn9.png) no-repeat 50% 50%; position:absolute; top:0; left:-323px; font-size:18px; color:#fff; text-align:center; line-height:400px;-webkit-transition: all 0.5s ease;}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:hover .left_xun_bg{	left:0px;}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun:hover .left_xun_bg,.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg{
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;}


.index_body_er .body_er_nei .er_nei_left .nei_left_xun .left_xun_bg span{ display:inline-block; width:30px; height:30px;  border-radius:300px; text-align:center; line-height:30px; font-size:20px; margin-left:20px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei{display:inline-block; border:2px solid #ebeaea; text-align:center; background:url(../images1/bg2.jpg) no-repeat 50% 50%; width:656px; height:823px; padding:50px 0px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_title{ height:525px; margin:0 auto}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body{ padding-top:23px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body p:nth-child(1){ color:#3e3a39; font-size:16px; font-weight:bolder; padding-bottom:10px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_body p:nth-child(2){ color:#3e3a39; font-size:22px;}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_bottom{ font-size:18px; color:#FFFFFF; width:265px; height:52px; margin:87px auto; line-height:52px; border-radius:10px}





.index_body_er .body_er_nei_er{ padding-bottom:30px}
.index_body_er .body_er_nei_er img{ width: 100%;}

.er_body_xun div:nth-child(3){ padding-top:20px}

.index_body_er .index_body_si{ max-width:1350px; margin:0 auto; padding-bottom:70px}
.index_body_er .index_body_si .index_body_si_body{}
.index_body_er .index_body_si .index_body_si_body .si_body_xun{ width:auto;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_yi{ text-align:center; width:200px; height:518px; background:#FFFFFF; border-bottom:15px solid #263e7f; margin-top:76px; }
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_title{ background:#263e7f; height:105px; color:#ffffff; font-size:15px; text-align:center; line-height:105px; border-right:1px solid #b8dcfb;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_body{ padding:16px 0px; text-align:center; height:360px; display:block; overflow:hidden;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_body a{ display:inline-block; width:100%; color:#717071; font-size:12px; padding:12px 0px; background:url(../images1/bn18.png) no-repeat 50% 100%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_bottom{ margin-top:80px; display:inline-block}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er{ width:749px; margin-top:41px; display:none;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er.show{ display:inline-block}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er.hide{ display:none}

.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title{ background:url(../images1/bn23.png) no-repeat 50% 50%; padding:32px 43px; text-align:center; display: inline-block; width: 100%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title div:nth-child(1){ margin-bottom:10px}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_title div{ font-size:20px; color:#ffffff;padding-left:15px;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body{ height:435px; border-bottom:15px solid #263e7f; background:#fff; border-left:1px solid #dfdfdf; border-right:1px solid #dfdfdf;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun{ display:inline-block; border-right:1px solid #d2d2d2; height:100%; text-align:center; width:32.9%}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun:nth-child(3){ border:0px}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(1){ text-align:left; padding-left:15px; color:#3e3a39; font-size:14px; padding-top:15px; padding-bottom:30px}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(1) p:nth-child(1){ color:#3e3a39; font-size:12px; font-weight:bolder}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2){ width:220px; margin:0 auto}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(3){ font-size:15px; color:#3e3a39; font-size:15px}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(3) .fa-angle-right{ padding-left:10px}

.index_body_san{ width:100%; background:#FFFFFF}
.index_body_san .index_body_san_nei{ max-width:1350px; margin:0 auto}
.index_body_san .index_body_san_nei .er_nei_body{ border-top:14px solid #263e7f; background:#ededed; margin-top:55px; padding:14px 0px; position:relative; height:409px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left{ font-size:18px; color:#3e3a39; line-height:44px; padding:0px 22px; width:47%}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left span{ color:#000000; font-size:20px; font-weight:bolder}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left p{ text-indent:2em; margin-bottom: 10px;}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left p:last-child{ padding-bottom: 0px;}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left a{ color:#B81C1F; text-transform:uppercase}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right{ position:absolute; right:0; top:-20px; overflow:hidden; width:705px; height:420px;display: flex;justify-content: center;align-items: center; background:#000}

.index_body_wu{ width:100%; background:url(../images1/bn17.png) no-repeat 50% 50%; height:250px; margin-top:90px; margin-bottom:50px;}
.index_body_wu .body_wu_nei{  max-width:1350px; margin:0 auto; position:relative}
.index_body_wu .body_wu_nei .wrapper{ position:absolute; top:165px; font-size:36px; color:#fff; left:160px}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(1){ margin-right:225px}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(2){ margin-right:255px}
.index_body_wu .body_wu_nei .wrapper .counter:nth-child(3){ margin-right:230px}

.index_body_six{ width:100%;}
.index_body_six .body_six_nei{  max-width:1120px; margin:0 auto;}
.index_body_six .body_six_nei .six_nei_body{ padding-top:48px}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun{ display:inline-block; background:url(../images1/bg4.jpg) no-repeat 50% 50%; width:270px; height:456px; overflow:hidden;margin-right: -5px;}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(2){ background:url(../images1/bg5.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(3){ background:url(../images1/bg6.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(4){ background:url(../images1/bg7.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:nth-child(5){ background:url(../images1/bg8.jpg) no-repeat 50% 50%; }
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div{ background:rgba(0,0,0,0.65); width:100%; height:100%;transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; text-align:center}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p{ color:#fff}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(1){ font-size:16px; padding-top:147px}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(2){ font-size:15px; margin-top:66px; display:inline-block; background:url(../images1/bn28.png) no-repeat 50% 70%; width:100%; padding-bottom:25px}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun div p:nth-child(3){ display:inline-block; border:1px solid #fff; border-radius:100%; width:30px; height:30px; font-size:15px; line-height:28px;background:url(../images1/jt.png) no-repeat center ;}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun:hover div:hover{background: linear-gradient(to bottom,rgba(7,139,201,0.93),rgba(1,155,227,0.93)); transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s;}

.index_body_qi{ width:100%; background:#fff; padding-bottom:50px}
.index_body_qi .body_qi_nei{  max-width:1350px; margin:0 auto;}
.index_body_qi .body_qi_nei .qi_nei_body{ padding-top:50px}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun{ width:335px; margin-right:2px;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title{width:100%; background:#263e7f; color:#fff; font-size:16px; padding:35px 48px; border:1px solid #b8dcfb}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title span{ display:inline-block; width:22px; height:22px; border:1px solid #fff; border-radius:50%; text-align:center; line-height:22px; float:right; background:url(../images1/jt.png) no-repeat center ;}



.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_title a:nth-child(1){ display:inline-block; width:22px;height:22px; border:1px solid #fff; text-align:center; border-radius:100%; line-height:22px; float:right; margin-top:25px; margin-right:20px}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body{ background:url(../images1/bg9.jpg) no-repeat 50% 50%; padding:46px 46px 35px 46px;; height:404px; display:block !important}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(2) .body_xun_body{ background:url(../images1/bg10.jpg) no-repeat 50% 50%;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(3) .body_xun_body{ background:url(../images1/bg11.jpg) no-repeat 50% 50%;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun:nth-child(4) .body_xun_body{ background:url(../images1/bg12.jpg) no-repeat 50% 50%;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body a{ background:url(../images1/bn29.png) no-repeat 0% 50%; padding-left:10px; font-size:13px; color:#3e3a39; margin-bottom:24px; display:inline-block;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap; width:100%;
}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body a:hover{ font-weight:bolder; color:#b8272d;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body .xain{ background:#cfcfcf; height:1px; width:100%; margin-top:65px; display:none;}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun .body_xun_body .xain div{ background:#A3080B; height:1px; width:0px}

.index_body_ba{ width:100%; }
.index_body_ba .body_ba_nei{  max-width:1120px; margin:0 auto; padding:10px 0px;border-top:1px solid #e5e5e5}
.index_body_ba .body_ba_nei a{ display:inline-block; background:url(../images1/bn31.png) no-repeat 0% 50%; height:107px; padding-top:25px; width:25%; background-size:20%}
.index_body_ba .body_ba_nei a:hover{ background:url(../images1/bn35.png) no-repeat 0% 50%; background-size:20%}
.index_body_ba .body_ba_nei a p:nth-child(1){ color:#1a1a1a; font-size:20px; padding-left:80px}
.index_body_ba .body_ba_nei a p:nth-child(2){ color:#808080; font-size:13px; padding-left:80px}
.index_body_ba .body_ba_nei a:nth-child(2){ background:url(../images1/bn30.png) no-repeat 0% 50%; background-size:20%}
.index_body_ba .body_ba_nei a:nth-child(2):hover{ background:url(../images1/bn34.png) no-repeat 0% 50%; background-size:20%}
.index_body_ba .body_ba_nei a:nth-child(3){ background:url(../images1/bn32.png) no-repeat 0% 50%; background-size:20%}
.index_body_ba .body_ba_nei a:nth-child(3):hover{ background:url(../images1/bn36.png) no-repeat 0% 50%; background-size:20%}
.index_body_ba .body_ba_nei a:nth-child(4){ background:url(../images1/bn33.png) no-repeat 0% 50%;margin-right: 0px; background-size:20%}
.index_body_ba .body_ba_nei a:nth-child(4):hover{ background:url(../images1/bn37.png) no-repeat 0% 50%; background-size:20%}




.bannerfo3 {
    width: 560px;
    height: 40px;
    border: 1px solid #666666;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    background: #fff;
    margin: 0 auto
}

.bannerfo3 dl dt {
    display: inline
}

.bannerfo3 dl .inputbox3 {
    position: absolute;
    left: 0;
    top: 0;
    width: 510px;
    height: 38px;
}

.bannerfo3 dl .inputbox3 input {
    width: 512px;
    height: 38px;
    padding: 0;
    color: #757575;
    line-height: 38px;
    font-size: 14px;
    background: none;
    font-weight: 500;
    border: none;
    padding-left: 15px;
}

.bannerfo3 dl .menuser3 {
    position: absolute;
    right: 0;
    top: 0;
    width: 43px;
    height: 38px;
    display: block;
    background: url(../images/search.png) no-repeat center center;
}

.bannerfo3 dl .menuser3 input {
    width: 43px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer
}

.bottom{ width:100%; background:#fff; border-top:1px solid #e5e5e5}
.bottom .bottom_nei{  max-width:1120px; margin:0 auto; padding:55px 0px}
.bottom .bottom_nei .bottom_nei_left{ width:64%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun{ margin-right:2.5%;width:17.5%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(1){ width:40%}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(1) a.fl{ width:47%;}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(4){ margin-right:0}


.dblogo img{ width: 220px;}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun:nth-child(5){ margin-right:0px}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a{ width:100%; display:inline-block; color:#666; font-size:15px; line-height:30px; overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a.dbdda{font-size: 18px;color: #111;line-height: 35px;font-weight:500;padding-bottom:20px; position:relative}
.bottom .bottom_nei .bottom_nei_right{ width:30%;}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a:hover{ color:#111}
.bottom .bottom_nei .bottom_nei_left .nei_left_xun a.dbdda:after{content: '';width: 36px;height:2px;background: #ef1f1f;position: absolute;bottom: 10px;left: 0;}









.about_nei{ margin-top:80px}
.abot_body{ margin-top:89px}
.abot_body .abot_body_xun{ text-align:center; width:21%; margin-right:71px;}
.abot_body .abot_body_xun .body_xun_img.flip{
	-webkit-transform: rotateY(360deg);
       -moz-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
         -o-transform: rotateY(360deg);
            transform: rotateY(360deg);
           transition: all 1s ease;
    -webkit-transform: all 1s ease;
	}
.abot_body .abot_body_xun:nth-child(4){ margin-right:0px}
.abot_body .abot_body_xun div:nth-child(1){ height:91px}
.abot_body .abot_body_xun div:nth-child(2){ height:28px; width:1px; background:#c0c0c0; margin:27px auto}
.abot_body .abot_body_xun div:nth-child(3){ color:#000000; font-size:21px; padding-bottom:62px}
.abot_body .abot_body_xun div:nth-child(4){ color:#3e3a39; font-size:18px; line-height:32px}

.about_si .about_si_nei{ margin-top:50px}
.about_si .about_si_nei img{ width: 100%;}

.about_wu .about_wu_nei{ width:100%}
.about_wu .about_wu_nei .about_wu_body{ background:url(../images1/bg14.jpg) no-repeat 50%/cover; margin-top:50px}
.about_wu .about_wu_nei .about_wu_body .wu_body_left{width:50%;}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a{ display:inline-block; width:48%; margin-right:-4px; overflow:hidden; margin-bottom:-3px; position:relative;}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a .body_left_more{ background:url(../images1/bn55.png) no-repeat 50%/cover; width:100%; height:100%; position:absolute; z-index:10; top:0; font-size:24px; color:#ffffff; text-align:center; left:-504px}

.about_wu .about_wu_nei .about_wu_body .wu_body_left a:hover .body_left_more{	left:0px;}
.about_wu .about_wu_nei .about_wu_body .wu_body_left a .body_left_more,.about_wu .about_wu_nei .about_wu_body .wu_body_left a:hover .body_left_more{
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;}


.about_wu .about_wu_nei .about_wu_body .wu_body_left a img{ width:100%}

.about_wu .about_wu_nei .about_wu_body .wu_body_right{width:46%; padding-left:70px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei{ margin-top:140px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(1){ color:#333333; font-size:46px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(2){ color:#666666; font-size:24px; padding-top:12px; padding-bottom:56px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(2) span{ color:#666666; font-size:18px}
.about_wu .about_wu_nei .about_wu_body .wu_body_right .body_right_nei p:nth-child(3){ color:#333333; font-size:20px; line-height:30px}

.about_six .about_six_nei{ width:100%}
.about_six .about_six_nei .about_six_body{ background:url(../images1/bg16.jpg) no-repeat 50% 50%; margin-top:50px; height:760px}

.about_qi .about_qi_nei{ width:100%}
.about_qi .about_qi_nei .about_qi_body{ margin-top:20px; }





.case{ padding-bottom:0px}
.case .case_nei{width: 100%;margin: 0 auto;}
.case .case_nei .case_nei_body{ margin-top:48px;}
.case .case_nei .case_nei_body .case_top{padding-bottom: 20px;}
.case .case_nei .case_nei_body .case_top ul{ text-align:center}
.case .case_nei .case_nei_body .case_top ul li{display: inline-block;width: 120px;margin: 0 10px;}
.case .case_nei .case_nei_body .case_top ul li a{display: inline-block;width: 120px;border: 1px solid #ccc;border-left: none;
border-right: none;text-align: center;line-height: 40px;}
.case .case_nei .case_nei_body .case_top ul li a:hover{ border:0px; background:#991e29; cursor:pointer; color:#FFFFFF; display:inline-block}
.case .case_nei .case_nei_body .case_top ul li a{font-size: 16px;color: #4c4c4c;line-height: 40px;}
.case .case_nei .case_nei_body .case_body{ cursor:pointer}
.case .case_nei .case_nei_body .case_body .case_body_left{width: 50%;float: left;background: #d9d9d9;height: 407px;padding-left: 180px;padding-top: 90px;padding-right: 97px;}
.case .case_nei .case_nei_body .case_body .case_body_left dl{    width: 100%;padding-bottom: 22px;position: relative;margin-bottom: 20px;}
.case .case_nei .case_nei_body .case_body .case_body_left dl:before{content: "";display: block;width: 45px;height: 1px;background: #aeaeae;position: absolute;left: 0;bottom: 0px;}
.case .case_nei .case_nei_body .case_body .case_body_left dl a{    color: #333;}
.case .case_nei .case_nei_body .case_body .case_body_left dl a dt{    font-size: 26px;color: #333;width: 100%;height: 34px;
overflow: hidden;}
.case .case_nei .case_nei_body .case_body:hover .case_body_left dl a dt{    color: #991e29;}
.case .case_nei .case_nei_body .case_body .case_body_left dl dd{font-size: 18px;color: #333;width: 100%;height: 22px;overflow: hidden; margin-top:10px;}
.case .case_nei .case_nei_body .case_body .case_body_left p{    font-size: 14px;color: #666;line-height: 24px;margin-bottom: 35px;}
.case .case_nei .case_nei_body .case_body .case_body_left .read_m{    display: block;padding-left: 23px; background:url(../images1/img1.png) no-repeat 0 0;font-size: 14px;color: #9c9c9c;font-style: oblique;}
.case .case_nei .case_nei_body .case_body:hover .case_body_left .read_m{    color: #991e29; background:url(../images1/bn72.png) no-repeat 0 0;}
.case .case_nei .case_nei_body .case_body .case_body_right{    width: 50%;float: left;height: 407px; position:relative; overflow:hidden;}
.case .case_nei .case_nei_body .case_body .case_body_right a{display: block;width: 100%;height: 407px;text-align: center;position: relative;}
.case .case_nei .case_nei_body .case_body .case_body_right .tra{position: absolute;top: 0;right: 0;bottom: 0;left: 0; width:45%; height:auto;display: block;vertical-align: middle;margin: auto;}

.case .case_nei .case_nei_body .case_body .case_body_left2{width: 50%;float: left;height: 407px;}
.case .case_nei .case_nei_body .case_body .case_body_left2 a{display: block;width: 100%;height: 407px;text-align: center;position: relative;}
.case .case_nei .case_nei_body .case_body .case_body_right2{padding-right: 180px;padding-left: 97px;}
.case .case_nei .fenye{    width: 100%;text-align: center; margin-top:50px}
.case .case_nei .fenye .fenye_nei a{display: inline-block;padding: 0 13px;height: 34px;text-align: center;line-height: 34px;margin: 0 3px;border-radius: 5px;border: #dddddd solid 1px;overflow: hidden;font-size: 13px;color: #999999;}
.case .case_nei .fenye .fenye_nei a:hover{ background:#991e29; border:1px solid #991e29; color:#FFFFFF}


.news{ margin-top:0px; padding-top:10px}
.news .news_body ul{max-width: 1350px; margin:0 auto; padding-top:50px}
.news .news_body ul li{width: 580px;float: left;margin-right:94px;margin-bottom: 45px;}
.news .news_body ul li a dl{width: 90px;height: 104px;float: left;text-align: center;background: url(../images1/bn73.png) no-repeat;padding-top: 19px;}
.news .news_body ul li a dl dt{    width: 100%;text-align: center;font-size: 34px;color: #666;position: relative;margin-bottom: 5px;
padding-bottom: 4px;}
.news .news_body ul li a dl dd{    font-size: 14px;color: #999;}
.news .news_body ul li a div{    width: 490px;float: left;padding-left: 30px;}
.news .news_body ul li a div h5{    width: 100%;height: 25px;overflow: hidden;margin-bottom: 19px;font-size: 20px;color: #333;}
.news .news_body ul li a:hover div h5{ color:#991e29}
.news .news_body ul li a div p{font-size: 14px;color: #808080;line-height: 24px;overflow: hidden;}




.menu_list{}
  .menu_list .m_1 > li {border-bottom: 1px solid #eee; position:relative
  }
  .menu_list .m_1 > li:first-child{ border-top:1px solid #eee}
  .menu_list .m_1 > li:nth-child(3n) {}
  .menu_list .m_1 > li > a{    width: 100%;
    height: 50px;
    position: relative;
    overflow: hidden;
    background:#fff;
    display: block;
    text-align: left;
    text-indent: 20px;
    font-size: 16px;
    line-height: 50px; font-weight:bold; color:#555
  }
  
  .menu_list .m_1>li .menu_btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(../images/public/ny_left_ico.png) no-repeat center;
    top: 0;
    right: 0;
    cursor: pointer;
}
.menu_list .m_1>li .menu_btn_active{background:url(../images/public/ny_left_ico_active.png) no-repeat center;}

  .menu_list .m_1 > li:hover > a{
    width: 100%;
    height: 50px;
    position: relative;
    overflow: hidden;
    text-align: left;
    text-indent: 20px;
    font-size: 16px;
    line-height: 50px;
    color: #263e7f;
  }
  .menu_list .m_1 > li > a.active{ background:#263e7f;color: #fff;
  }
  .menu_list .m_2 {
    display: none;
  }
  .menu_list .m_2 > li:first-child{border-top: 1px solid #eee;} 
  .menu_list .m_2 > li a {text-indent: 20px;
    position: relative;
    display: block;
    background-color: #fff;
    font-size: 13px;
    line-height: 40px;border-bottom: 1px solid #eee;
  }
  .menu_list .m_2 > li a:hover {
      text-indent: 20px;
    position: relative;
    display: block;
    font-size: 13px;
    color: #263e7f;
    line-height: 40px;border-bottom: 1px solid #eee;
  }
  
  .menu_list .m_2 > li a.active {
      text-indent: 20px;
    position: relative;
    display: block;
    font-size: 13px;
    color: #263e7f;
    line-height: 40px;border-bottom: 1px solid rgba(38,62,127,0.6);
  }

.m_2>li a:after {
    content: "";
    width: 6px;
    height: 6px;
    border: 1px solid #b8b8b8;
    border-style: solid solid none none;
    position: absolute;
    top: 50%;
    right: 26px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}



.list_title{background: #263e7f;
    text-align: center;
    height: 65px;
    line-height: 65px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;}
	

.starproduct{ margin-top:100px; margin-bottom:10px; padding-top:10px;}
.starproduct .starproduct_nei_body{ padding-top:50px;margin: 0 auto;}
.starproduct .starproduct_nei_body .starproduct_body_xun{ display:inline-block; width:450px; height:444px; overflow:hidden; position:relative; text-align:center}
.starproduct .starproduct_nei_body .starproduct_body_xun div{     width: 378px;height: 468px; margin:0 auto}
.starproduct .starproduct_nei_body .starproduct_body_xun .nei_body_bottom{ position:absolute;    background: rgba(0,0,0,0.5);width: 100%;height: 100%;transition: all 0.5s ease 0s;-webkit-transform: all 0.5s ease 0s;text-align: center; left:0; right:0; top:0}
.starproduct .starproduct_nei_body .starproduct_body_xun div p{ color:#fff}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(1){ font-size:16px; padding-top:147px}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(2){ font-size:22px; padding-top:11px}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(3){ font-size:15px; margin-top:135px; display:inline-block; background:url(../images1/bn28.png) no-repeat 50% 70%; width:100%; padding-bottom:25px}
.starproduct .starproduct_nei_body .starproduct_body_xun div p:nth-child(4){ display:inline-block; border:1px solid #fff; border-radius:100%; width:30px; height:30px; font-size:15px; line-height:28px}
.starproduct .starproduct_nei_body .starproduct_body_xun:hover div:hover{background: linear-gradient(to bottom,rgba(153,30,41,0.93),rgba(230,56,40,0.85)); transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s;}


.cpfl{ width:18%; background:#fff; float:left}

.starproduct_er{ margin-top:0px;}
.starproduct_er .starproduct_er_body{ padding-top:50px;padding-bottom: 50px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun{ padding-bottom:20px !important; width: 80%; float: right;}

.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title{ border:1px solid #DCDCDC; border-radius:5px; line-height:50px; display:block !important}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a:nth-child(1){ display:inline-block; font-size:28px; font-weight:bolder; color:#717071; padding:0px 25px; background:url(../images1/bn59.png) no-repeat 100% 50%; margin-left: 0px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a{ margin-left:40px; font-size:14px; color:#717071; display:inline-block}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a.color{ color:#962934}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a:hover{ color:#962934}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun{ display:inline-block; position:relative; text-align:center;overflow:hidden; margin-top:25px; background:#fff;width: 23.5%; margin:0 2% 20px 0}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_title{ width:100%; border:10px solid #fff}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_title img{ width:100%;height:100%; display:block;transition:all 0.3s ease-in 0s; -webkit-transition:all 0.3s ease-in 0s; -moz-transition:all 0.3s ease-in 0s; -o-transition:all 0.3s ease-in 0s;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_title img{transform:scale(1.15); -webkit-transform:scale(1.15); -moz-transform:scale(1.15); -o-transform:scale(1.15);-ms-transform:scale(1.15);}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover{ box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.1);}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun em {
  position: absolute;
  z-index: 10;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #ea0823;
  transition: 0.6s; left:0
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover em{
  width: 100%;
}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:nth-child(4n){ margin-right:0px}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_wenzi{font-size: 16px;
    color: #333333;
    font-weight: bolder;
    left: 0;
    right: 0;
    /* padding-right: 26px; */
    margin-bottom: 10px;
    display: block !important;
    width: 90%;
    height: 50px;
    line-height: 50px;
    margin: 0 auto; overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_wenzi{ color:#263e7f}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more_er{ background:url(../images1/bn70.png) no-repeat right 50%; position:absolute; top:-31px; left:-100%;  height:100%; width:100%; text-align:center;  color:#fff; font-size:13px; font-weight:bolder;line-height: 340px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more_er{	left: 0px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more_er,.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more_er{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	}


.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2){ }
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) img{
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
           filter: scale(1);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
	
}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_er .xun_er_body .er_body_xun div:nth-child(2) img:hover{
-webkit-transform: scale(1.10);
   -moz-transform: scale(1.10);
    -ms-transform: scale(1.10);
     -o-transform: scale(1.10);
           filter: scale(1.10);
           filter: transform;
       transition: all 0.5s ease 0s;
-webkit-transform: all 0.5s ease 0s; 
	cursor:pointer;
}




.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun .nei_xun_more{ font-size:14px; color:#666; border-top:1px solid #eee; padding:10px 0px;font-weight:500; transition: all 0.5s ease 0s;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_body .xun_body_nei_xun:hover .nei_xun_more{ color:#263e7f}




.youshi .youshi_nei{ width:100%}
.youshi .youshi_nei .youshi_nei_title span{ font-size:30px; color:#1a1a1a; font-weight:bolder}
.youshi .youshi_nei .youshi_nei_body{ margin-top:60px;}
.youshi .youshi_nei .youshi_nei_body .nei_body_left{ background:url(../images1/bg24.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; padding:242px 220px; position:relative; height:572px; width:50%}
.youshi .youshi_nei .youshi_nei_body .nei_body_left div{ position:absolute; left:-400px}
.youshi .youshi_nei .youshi_nei_body .nei_body_left p:nth-child(2){ text-indent:2em}
.youshi .youshi_nei .youshi_nei_body .nei_body_right{background:url(../images1/bg25.jpg) no-repeat 50% 50%; height:572px; width:50%}


.youshi_er{margin-top:0px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_left{ background:url(../images1/bg26.jpg) no-repeat 50% 50%; font-size:36px; color:#fff; line-height:45px; width:50%; height:572px	}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right{ background:url(../images1/bg24.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; width:50%; height:572px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top{ margin-left:90px; padding-top:50px; width:584px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei{ text-align:center; font-size:16px; color:#808080; margin-right:135px; width:104px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(1){ width:104px; height:105px; background:url(../images1/bn61.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(1):hover{ width:104px; height:105px; background:url(../images1/bn61_on.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(2) div:nth-child(1){ width:104px; height:105px; background:url(../images1/bn62.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(2) div:nth-child(1):hover{ width:104px; height:105px; background:url(../images1/bn62_on.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3) div:nth-child(1){ width:104px; height:105px; background:url(../images1/bn63.png) no-repeat 50% 50%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3) div:nth-child(1):hover{ width:104px; height:105px; background:url(../images1/bn63_on.png) no-repeat 50% 50%}


.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei:nth-child(3){ margin-right:0px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top .body_right_nei div:nth-child(3){ padding-bottom:30px}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2{ padding-left:76px; padding-bottom:35px}

.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_left{ background:url(../images1/bg28.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; width:35%; height:572px}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right{ background:url(../images1/bg27.jpg) no-repeat 50% 50%; font-size:36px; color:#fff; line-height:45px; width:65%; height:572px; overflow:scroll}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div{ font-size:16px; color:#000000; line-height:24px}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi{ margin-top:138px;}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div div:nth-child(2){ padding-top:25px}
.youshi_san .youshi_nei .youshi_san_nei_body .nei_body_right .body_right_yi div p:nth-child(3){ border-bottom:3px solid #c1272d; font-size:12px; width:246px; padding-top:25px}

.youshi_si{ margin-bottom:0px}
.youshi_si .youshi_nei .youshi_si_nei_body .nei_body_left{ background:url(../images1/bg30.jpg) no-repeat 50%/cover; font-size:36px; color:#1a1a1a; line-height:45px; width:50%; height:572px}
.youshi_si .youshi_nei .youshi_si_nei_body .nei_body_right{ background:url(../images1/bg29.jpg) no-repeat 0% 50%; font-size:36px; color:#fff; line-height:45px; width:50%; height:572px; overflow:inherit}










.product1{ width:100%}
.product1 .product1_nei{ max-width:1120px; margin:0 auto; overflow:hidden}
.product1 .product1_nei .product1_nei_top{ margin-top:164px;padding-bottom:164px; position:relative; min-height:600px}
.product1 .product1_nei .product1_nei_top .nei_top_left{ width:38%}
.product1 .product1_nei .product1_nei_top .nei_top_left dl{ border-bottom:1px solid #c1272d}
.product1 .product1_nei .product1_nei_top .nei_top_left dl dd{ color:#b3b3b3; font-size:16px}
.product1 .product1_nei .product1_nei_top .nei_top_left dl dt{ color:#1a1a1a; font-size:40px; padding:13px 0px}
.product1 .product1_nei .product1_nei_top .nei_top_left .top_left_font{ font-size:20px; color:#333333; line-height:36px; padding-top:35px; }
.product1 .product1_nei .product1_nei_top .nei_top_left .top_left_font p{ text-indent:2em;}
.product1 .product1_nei .product1_nei_top .nei_top_right{ text-align:center; width:50%; padding-top:0px; position:absolute; right:0px; top:10px}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left{position:relative; padding-left:125px; width:100%}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .hd .prev{ background:url(../images1/bn80.png) no-repeat 50% 50%; width:21px; height:27px; display:inline-block; cursor:pointer; position:absolute; left:0px; top:50%}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .hd .next{ background:url(../images1/bn81.png) no-repeat 50% 50%; width:21px; height:27px; display:inline-block; cursor:pointer; position:absolute; right:0px; top:50%}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .bd{ width:436px; padding-top: 50px;}
.product1 .product1_nei .product1_nei_top .nei_top_right .picScroll-left .bd .picList li{ }





.product1 .product1_nei .product1_nei_center{border-bottom:1px dashed #999999; padding-bottom:84px;}
.product1 .product1_nei .product1_nei_center .nei_center_title{ background:url(../images1/bn82.png) no-repeat 50% 60%; color:#1a1a1a; font-size:50px; padding:80px 0px; text-align:center}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title{ position:relative;}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei div .title:nth-child(2){ padding-top:5px}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title dd{overflow:hidden}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei .title dd:nth-child(2){ background:rgba(51, 51, 51, 0.85);; font-size:18px; color:#FFFFFF; position:absolute; left:0; right:0; text-align:center; bottom:0px; line-height:38px}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2){ padding-top:5px}

.product1 .product1_nei .product1_nei_bottom{ padding-bottom:70px}
.product1 .product1_nei .product1_nei_bottom .nei_center_title{background:url(../images1/bn83.png) no-repeat 50% 60%; color:#1a1a1a; font-size:50px; padding:62px 0px; text-align:center}

.product1 .product1_neitwo{ max-width:1120px; margin:0 auto; padding-top:70px}
.product1 .product1_neitwo .product1_neitwo_title{ font-size:48px; color:#263e7f; font-weight:bolder}
.product1 .product1_neitwo .product1_neitwo_body{ padding-top:36px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun{ display:inline-block; margin-bottom:36px; border-bottom:1px dashed #263e7f; width:100%}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun:nth-child(6){ border:0px; padding-bottom:48px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(1){ color:#000000; font-size:24px; font-weight:bolder; padding-bottom:25px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(2){ color:#666; font-size:24px; padding-bottom:36px; line-height:60px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p b{ color:#a61c00;}




.product2 .product2_nei_top{ }
.product2 .product2_nei_top .nei_top_left{ width:45% !important} 
.product2 .product2_nei_top .nei_top_left dl dd{ line-height:79px}

.product2 .top_left_font p:nth-child(3){ text-indent:inherit}
.product2 .product2_body .product2_body_xun{ width:100%}
.product2 .product2_body .product2_body_xun .product2_body_title{ color:#808080; font-size:24px; padding-left:57px; margin-top:70px; background:url(../images1/bn86.png) no-repeat 0% 50%; padding-top:20px; padding-bottom:20px }
.product2 .product2_body .product2_body_xun .product2_body_bottom{ font-size:21px; color:#333333; line-height:36px}
.product2 .product2_body .product2_body_xun .product2_body_bottom p{ text-indent:2em}
.product2 .product2_body .product2_body_xun .product2_body_bottom p img{ width: 100%;}

.product2 .product2_body .product2_body_xun .product2_body_bottom img{ width: 100%}


.product1 .product1_nei .product4_nei_center{border-bottom:1px dashed #999999; padding-bottom:60px; line-height:35px; font-size:17px;}
.product1 .product1_nei .product4_nei_center .nei_center_title{ background:url(../images1/bn96.png) no-repeat 50% 60%; color:#1a1a1a; font-size:50px; padding:116px 0px; text-align:center}
.product1 .product1_nei .product4_nei_top{ margin-top:269px; border-bottom:0px dashed #000; padding-bottom:164px; position:relative}
.product1 .product1_nei .daohangnei{ border-bottom:1px solid #263e7f; background:#fff;}
.product1 .product1_nei .daohangnei.daohangnei_on{position: fixed;top: 0; z-index:98; width:1120px}
.product1 .product1_nei .daohangnei ul li{ display:inline-block; padding:10px 15px; font-size:16px; color:#1a1a1a; margin-right:13px; cursor:pointer}
.product1 .product1_nei .daohangnei ul li.on{ background:#263e7f; color:#FFFFFF}
.product1 .product1_nei .daohangnei ul li:hover{ background:#263e7f; color:#FFFFFF}

.product1 .product1_nei .product4_nei_center_er .nei_center_body{ padding-top:50px; line-height:35px; font-size:17px;}
.product4_nei_center_er .product2_body_xun{ width:100%}
.product4_nei_center_er .product2_body_xun .product2_body_title{ color:#808080; font-size:24px; padding-left:57px; margin-top:40px; background:url(../images1/bn86.png) no-repeat 0% 50%; padding-top:20px; padding-bottom:20px;border-bottom: 1px solid #ccc;}
.product4_nei_center_er .product2_body_xun .product2_body_bottom{ padding-top:30px}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg{ background:#8c8c8c; text-align:center; width:100%;}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr td{ background:#fff; line-height:26px; padding:15px 0px; width:auto; font-size:15px; color:#666666}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr td:nth-child(1){ width:20%}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td{ background:#a4231c; font-size:18px; color:#fff; font-weight:bolder; }
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td:nth-child(3){ border:0px}
.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(2) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(3) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(4) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(5) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(6) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(7) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(9) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(8) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(10) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(11) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(12) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(13) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(14) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(15) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(16) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(17) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(21) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(18) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(19) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(20) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(21) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(22) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(23) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(24) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(25) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(26) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(27) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(28) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(29) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(30) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(31) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(32) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(33) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(34) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(35) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(36) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(37) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(38) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(39) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(40) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(41) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(42) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(43) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(44) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(45) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(46) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(47) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(48) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(49) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(50) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(51) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(52) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(53) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(54) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(55) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(56) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(57) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(58) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(59) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(60) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(61) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(62) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(63) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(64) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(65) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(66) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(67) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(68) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(69) td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(70) td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(71) td:nth-child(1)




{ background:#e6e6e6; font-size:16px; color:#1a1a1a}

.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(2):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(3):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(4):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(5):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(6):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(7):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(8):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(9):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(10):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(11):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(12):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(13):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(14):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(15):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(16):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(17):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(18):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(19):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(20):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(21):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(22):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(23):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(24):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(25):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(26):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(27):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(28):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(29):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(30):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(31):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(32):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(33):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(34):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(35):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(36):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(37):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(38):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(39):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(40):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(41):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(42):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(43):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(44):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(45):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(46):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(47):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(48):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(49):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(50):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(51):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(52):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(53):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(54):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(55):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(56):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(57):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(58):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(59):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(60):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(61):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(62):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(63):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(64):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(65):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(66):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(67):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(68):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(69):hover td:nth-child(1)
,.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(70):hover td:nth-child(1),.product4_nei_center_er .product2_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(71):hover td:nth-child(1)


{ background:#a4231c; color:#FFFFFF}






 .product_diy_body_xun{ width:100%}
 .product_diy_body_xun .product2_body_title{ color:#808080; font-size:24px; padding-left:57px; margin-top:70px; background:url(../images1/bn86.png) no-repeat 0% 50%; padding-top:20px; padding-bottom:20px }
 .product_diy_body_xun .product2_body_bottom{ padding-top:100px}
 .product_diy_body_xun .product2_body_bottom .body_bottom_bg{ background:#8c8c8c; text-align:center; width:100%;}
 .product_diy_body_xun .product2_body_bottom .body_bottom_bg tr td{ background:#fff; line-height:50px; width:40%; font-size:15px; color:#666666}
 .product_diy_body_xun .product2_body_bottom .body_bottom_bg tr td:nth-child(1){ width:20%}

 .product_diy_body_xun .product2_body_bottom .body_bottom_bg tr:nth-child(1) td:nth-child(3){ border:0px}







.contact{ margin-top:37px !important; padding:0px !important}
.contact .contact_body{ padding:50px 0px; max-width:1350px; margin:0 auto}
/*.num{width: 280px;height: 287px;border: 2px solid #ccc;float: left;position: relative;text-align: center;background:#efefef; margin-right:76px; text-align:center;}*/
.contact .contact_body .num:nth-child(4){ margin-right:0px}
.contact .contact_body .num dl{ padding-top:40px; padding-bottom:35px}
.contact .contact_body .num dl dd{ padding-bottom:30px}
.contact .contact_body .num dl dt{ color:#4d4d4d; font-size:16px}
.contact .contact_body .num .dl2{ padding:0px}
.contact .contact_body .num .dl2 p{ color:#666666; font-size:12px; padding:0px 15px; line-height:18px;}
.contact .contact_body .num:nth-child(2) .dl2 p:nth-child(1):hover{ font-weight:bolder;}
.contact .contact_body .num:nth-child(2) .dl2 p:nth-child(2):hover{ font-weight:bolder;}
.contact .map{ margin-bottom:40px}
.contact .contact_body .num .phone p:first-child{ margin-bottom:10px;}
.contact .contact_body .num .phone p{ font-size:16px; color:#a61c00; font-weight:bolder;}
.contact .contact_body .num .dl2 p a span{ display:inline-block; margin-right:5px;}
.contact .contact_body .num .dl2 p span{ display:inline-block; margin-right:5px;}
.contact .contact_body .num .dl2 p .fa-weixin{ color:#9ac047;}






.honor{ margin-top:130px}
.honor .nei_center_body{ margin-top:50px}
.honor .nei_center_body .honor_body_xun{ display:inline-block; background:url(../images1/honor13.png) no-repeat 50% 80%; width:23%; margin-bottom:50px; text-align:center; margin-right: 36px;}
.honor .nei_center_body .honor_body_xun:nth-child(4n){ margin-right:0px}
.honor .nei_center_body .honor_body_xun dt{ text-align:center; padding-top:75px}
.honor .nei_center_body .honor_body_xun dt p:nth-child(1){ font-size:50px; color:#808080}
.honor .nei_center_body .honor_body_xun dt p:nth-child(2){ font-size:25px; color:#333333}
.honor .nei_center_body .honor_body_xun dt p:nth-child(3){ font-size:25px; color:#808080}











.product5{ width:100%; padding-bottom:200px !important; position:relative}
.product5 .product5_nei_title{ border-bottom:1px solid #263e7f; width:660px}
.product5 .product5_nei_title dl{ line-height:62px}
.product5 .product5_nei_title dl dd{ font-size:32px; color:#1a1a1a}
.product5 .product5_nei_title dl dt{ font-size:16px; color:#b3b3b3}
.product5 .nei_top_right{ padding-top:0px !important}
.product5 .product5_nei_body .nei_body_top ul li{ display:inline-block; background:url(../images1/bn99.png) no-repeat 50% 50%; width:328px; height:53px; cursor:pointer; margin-top:25px; padding:5px 20px; color:#999; font-size:18px;}
.product5 .product5_nei_body .nei_body_top ul li a{ color:#999; font-size:18px;}
.product5 .product5_nei_body .nei_body_top ul li p:nth-child(2){ font-size:18px; font-weight:bolder}
.product5 .product5_nei_body .nei_body_top ul li:hover{ background:url(../images1/bn100.png) no-repeat 50% 50%; color:#c1272d !important}
.product5 .product5_nei_body .nei_body_top ul li.bg{ background:url(../images1/bn100.png) no-repeat 50% 50%; color:#c1272d !important}
.product5 .product5_nei_wen{ width:40%}
.product5 .product5_nei_wen .nei_wen_xun{ margin-top:30px}
.product5 .product5_nei_wen .nei_wen_xun dl dd{font-size: 30px;font-weight: 700;color: #000;margin-bottom: 10px;}
.product5 .product5_nei_wen .nei_wen_xun dl dt{font-size: 16px;color: #333;margin-bottom: 30px; line-height:24px}
.product5 .product5_nei_wen .nei_wen_xun a{display:inline-block;width: 150px;color: #fff;font-size: 17px;text-align: center;background: #ccc;transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s; height:40px; overflow:hidden; margin-right:18px; line-height:40px}

.cptel{display:inline-block;width: auto; padding:0px 40px;color: #fff;font-size: 17px;text-align: center;background: #263e7f;overflow:hidden; max-width:390px; height:40px; line-height:40px}
/*.product5 .product5_nei_wen .nei_wen_xun a:hover{ color:#000; background:#ccc;transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s;}
*/





.icon{ width:100%; height:40px; background:url(../images1/icon1.png) no-repeat 50% 50%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(2) .icon{background:url(../images1/icon2.png) no-repeat 50% 50%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(3) .icon{background:url(../images1/icon3.png) no-repeat 50% 50%;}
.index_body_er .index_body_si .index_body_si_body .si_body_xun:nth-child(4) .icon{background:url(../images1/icon5.png) no-repeat 50% 50%;}




.hua{  position:absolute; left:-150px; width:150px; height:40px; top:0; background:#263e7f; z-index:83;}
.product5_nei_wen .nei_wen_xun a dd{ position:absolute; width:150px; height:40px; display:inline-block; text-align:center; line-height:40px; z-index:82; left:0; top:0;background:#263e7f;}
.product5_nei_wen .nei_wen_xun a{ position:relative}
.product5_nei_wen .nei_wen_xun a span{ position:absolute; width:150px; height:40px; left:0px; top:0; z-index:852; line-height:40px}




.si_body_xun img{ width:100%}

.about_qi_body img{ width:100%}
























@media screen and (max-width:1440px){
#wrap{ display:none;}
.mo_top{ display:block;}
.disable_text_highlighting,body {
	/*去除选中高亮*/
-webkit-touch-callout: none;
-webkit-user-select: none;    /* Webkit */
-moz-user-select: none;      /* Firefox */
-ms-user-select: none;        /* IE 10  */
        /* Opera 目前不支持在Opera，但将很快 */
-o-user-select: none;
user-select: none;
}

.index_body_er .body_er_nei .er_nei_right{ margin-left:0px}
.product1 .product1_nei .product1_nei_top .nei_top_right{ padding-top: 0px;}
.starproduct_er .starproduct_er_body .starproduct_er_body_xun .body_xun_title a{ margin-left: 23px;}
.index_body_ba .body_ba_nei a p:nth-child(1){ font-size: 18px;}

.top2 .top2_daohang{ padding-left:0}
.index_body_er .body_er_nei .er_nei_left .nei_left_xun{ width:292px}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei{ width:570px}
.index_body_er .index_body_si .index_body_si_body .si_body_xun .body_xun_yi{ width:149px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right{ width:645px}
.index_body_qi .body_qi_nei .qi_nei_body .nei_body_xun{ width:298px}
.abot_body .abot_body_xun{ margin-right:64px}
.honor .nei_center_body .honor_body_xun{ width:395px; margin-right:0px}
.honor .nei_center_body .honor_body_xun dd{ width:265px; height:353px; margin:0 auto}
#scroll{ max-width:1200px !important}
#scroll .item{ width:228px !important}
/*.num{ margin-right:26px}*/
.index_body_san .index_body_san_nei .er_nei_body .nei_body_right{ right: 0; top:-17px;height: 395px;}
.index_body_san .index_body_san_nei .er_nei_body{ height:100% !important}
.index_body_six .body_six_nei .six_nei_body .nei_body_xun{ width:241px}
.products-boss{ width:1200px !important}
.news .news_body ul li{ margin-right:20px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left{    height: 347px; line-height:30px; font-size:16px; overflow:scroll}

.bottom .bottom_nei{ width:1200px}


.starproduct .starproduct_nei_body .starproduct_body_xun{    width: 400px;}

.center_body_yi_nei{ width:1200px}
.center_body_yi .center_body_yi_nei:nth-child(1) dl:nth-child(1){ width:775px}
.center_body_yi .center_body_yi_nei:nth-child(1) div{ width:415px; overflow:hidden}
.center_body_yi .center_body_yi_nei:nth-child(1) div dl{ height:164px !important; width:415px !important; overflow:hidden}
.center_body_yi .center_body_yi_nei:nth-child(1) div dl:nth-child(2){ margin-top:4px}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei div .title:nth-child(2){    margin-top: 9px;}

.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2) div{ width:49%}
.product1 .product1_nei .product1_nei_center .nei_center_body .center_body_yi .center_body_yi_nei:nth-child(2) div:nth-child(2) dl{ height:241px !important; overflow:hidden}


.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2{ padding-left:20px; overflow: hidden;}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .body_right_nei2 img{ width: 100%}
.youshi_er .youshi_nei .youshi_er_nei_body .nei_body_right .nei_body_right_top{ margin-left:35px}



.product1 .product1_neitwo .product1_neitwo_title{ font-size:30px}

.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(1){ font-size:22px}
.product1 .product1_neitwo .product1_neitwo_body .neitwo_body_xun p:nth-child(2){ font-size:18px; line-height:28px; padding-bottom:15px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left span{ font-size:16px}
.index_body_san .index_body_san_nei .er_nei_body .nei_body_left a{ font-size:16px}

.product5{ padding-bottom:180px}




#scroll .item{    background: url(../images1/bn121.png) no-repeat 50% 75% !important;    height: 490px;}

.contact{ margin-top:25px !important; padding:0px !important}
.about_qi_body img{ width:100%}

#scroll .item .item_body{ margin-top:10px !important}



<!--.product1 img{ width:100%}-->

.case .case_nei .case_nei_body .case_body .case_body_left{ padding:40px;}



}
@media screen and (max-width:768px){
	

}

@media screen and (max-width:414px){
	

}
@media screen and (max-width:375px){
	

}
@media screen and (max-width:320px){
	

}




.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_bottom{ transition: all 0.3s ease 0s; font-weight:bolder;}
.index_body_er .body_er_nei .er_nei_right .nei_right_nei .right_nei_bottom:hover{ color:#991e29; background:#fff; transition: all 0.3s ease 0s;}




.p_xj{display: block;width: 150px;color: #fff;font-size: 24px;text-align: center;background: #ccc;padding: 8px 0;transition: all 0.2s linear 0s;-webkit-transition: all 0.2s linear 0s; height:47px; overflow:hidden; position:relative; margin-top:25px;}
.p_xj span{ position:absolute; width:150px; height:47px; left:0px; top:0; z-index:852; line-height:47px}
.p_xj dd{
    position: absolute;
    width: 150px;
    height: 47px;
    display: inline-block;
    text-align: center;
    line-height: 47px;
    z-index: 82;
    left: 0;
    top: 0;
    background: #263e7f;
}
.p_xj:hover .hua{ left:0px;transition: all 0.2s linear 0s;}




.d_khha{
	 display: flex;
    justify-content: space-between;
    justify-content: flex-start;
    flex-wrap: wrap;
    
}
.d_khha li{
     margin-right:5%;
	position: relative;width: 13.5%;
}
.d_khha li i{
    display: block;
}
.d_khha li i img{
	width: 100%;
}
.d_khha li .hahh_ahh{
    position: absolute;
    left: 0;
    top: -100px;
    display: none;
}
.d_khha li:hover .hahh_ahh{
    display: block;
}
.d_khha li .hahh_ahh img{
    width: 100px;
}
.d_lianxi{
	font:500 14px/1.8em "微软雅黑";margin-top: 15px; margin-bottom: 25px;
}
.d_lianxi a{
	color: #ffffff;
}
.bottom_di{ font-size:13px; color:#fff; background:#284186; padding:28px 0px; text-align:center}
.bottom_tiao{ height:12px; background:#901e29; width:100%}

.cpmr{ width:260px; height:50px; line-height:50px; margin:30px auto;text-align: center; background:#263e7f; color:#fff; display:block;}
.cpmr a{ color:#fff;font-size:18px;}

