/**************************************/
/*************[公用start]**************/
/**************************************/

/*主站变灰*/
/*html {
-webkit-filter:grayscale(100%);
-moz-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
filter:grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)
}
* {
-moz-filter: grayscale(100%); 
-ms-filter: grayscale(100%); 
-o-filter: grayscale(100%); 
filter: gray;
}*/
/*主站变灰*/

/*淘宝变灰*/
/* body, html {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    }*/

/*淘宝变灰*/

/*百度百科變灰*/


/*body.memorial>* {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1)
}
*/


/*百度百科變灰*/
div.clear{
	clear: both;
	height: 0;
	width: 0;
}




a{
	text-decoration: none;
	color:inherit;
	cursor: pointer;
}

img{
	border:0;
	max-width: 100%;
}


div.wp{
	width: 1200px; /*主要内容区尺寸大小，每次制作前更新！！！ */
	margin:0 auto;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.tran{
	transition: all .3s ease-out 0s;
}
.tver{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}



/*图片中心放大代码区域*/

.img-box{/*图片盒子类名*/

	overflow: hidden;
}

.img-box img{
	transition: .3s;
	width: 100%;
	max-width: 100%;
}

.img-box:hover img{
	/*图片中心放大代码*/
	  -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/*图片中心放大代码区域*/


.imgbox_a{
	position:relative;
	padding-bottom: 100%;
	overflow:hidden;
	display: block;
}

.imgbox_a>img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%!important;
	height: 100%!important;
}
.imgbox_hover>img{
	/* ueco 时间曲线*/
	/*transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; */
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;

}
.imgbox_hover:hover>img{
	-webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/**************************************/
/************[公用over]****************/
/**************************************/




/*header-start*/
/**************************************************************/

#header{
	position: fixed;
	left: 0;
	top:0px;
	width: 100%;
	z-index: 999;
	height: 110px;
	/*background-color: #f0f;*/
}

.logo{
	width: 160px;
	/* margin-top: 28px; */
	margin-top: 6px;
}

.logo a,.logo img{
	display: block;
	width: 100%;
}
.logo img.curImg{
	display: block;
}

.iconIphone {
	width: 20px;
	height: 20px;
	position: relative;
	float: left;
	margin-top: 13px;
}

.phone{
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	padding-left: 34px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/phone.png);
	margin-top: 32px;
	width: 170px;
}

.glpt{
	width: 130px;
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background-color: #4575e9;
	margin-top:32px;
	margin-left: 35px;
}

.nav ul{
	margin:0;
}

.nav>ul>li{
	float: left;
	margin-right: 60px;
	position: relative;

}
.nav>ul>li>a{
	display: block;
	font-size: 16px;
	/* color: #fff; */
	color: rgb(34, 34, 34);
	/* height: 110px;
	line-height:110px; */
	height: 50px;
	line-height:50px;
	position: relative;
}
.nav>ul>li:hover>a,.nav>ul>li.cur>a{
	font-weight: bold;
}
.nav>ul>li>a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background-color: #4575e9;
  bottom: 0px;
  right: 0;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.nav>ul>li:hover>a:after {
  width: 100%;
  right: auto;
  left: 0;
}

.nav>ul>.active>a:after {
	width: 100%;
	right: auto;
	left: 0;
  }
.nav>ul>li ul{
	margin:0;
	position: absolute;
	left: -25px;
	right: -25px;
	top: 100%;
	background-color: #fff;
	padding: 5px 13px;
	display: none;
}

.nav>ul>li ul li+li{
	border-top: 1px solid #f5f5f5;
	
}
.nav>ul>li ul li{
	padding: 10px 0;
	line-height: 1.5;
	text-align: center;
}
.nav>ul>li ul li a{
	color: #000;
	font-size: 14px;
}
.nav>ul>li ul li a:hover{
	color: #4575e9;
}





#header.cur{
	background-color: #fff;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
} 
#header.cur .phone{
	color: #333;
	background-image: url(../images/phoneh.png);
}
#header.cur .nav>ul>li>a{color: #333;}
#header.cur .nav>ul>li:hover>a,#header.cur .nav>ul>li.cur>a{
	color: #4575e9;
}
#header.cur .logo img{
	display: block;
}
#header.cur .logo img.curImg{
	display: none;
}


#header.cur2{
	background-color: #fff;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
} 
#header.cur2 .phone{
	color: #333;
	background-image: url(../images/phoneh.png);
}
#header.cur2 .nav>ul>li>a{color: #333;}
#header.cur2 .nav>ul>li:hover>a,#header.cur .nav>ul>li.cur>a{
	color: #4575e9;
}
#header.cur2 .logo img{
	display: block;
}
#header.cur2 .logo img.curImg{
	display: none;
}

/**************************************************************/
/*header-over*/





/*main-start*/
/**************************************************************/

#main{

}

.fafa .slides>li{
	height: 813px;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}

.fafa .slides>li img{
	display: none;
}

.fafa .flex-control-paging li a{
	width: 17px;
	height: 17px;
}

.fafa .flex-control-nav{
	height: 0;
	bottom: 55px;
}

.fafa .flex-control-nav li{
	margin:0 3px;
}


.fbanner2 .slides>li{
	height: 713px;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}
.fbanner2 .slides>li img{
	display: none;
}

.fbanner2 .flex-control-paging li a{
	width: 17px;
	height: 17px;
}

.fbanner2 .flex-control-nav{
	height: 0;
	bottom: 55px;
}

.fbanner2 .flex-control-nav li{
	margin:0 3px;
}

.main1-dls{
	display: flex;
	position: relative;
	margin-bottom: 50px;
	border-bottom: 1px solid rgba(238,238,238,0.9);
}

.main1-dls div {
	display: inline-block;
	font-size: 16px;
	color: #333;
	vertical-align: top;
	cursor: pointer;
	position: relative;
	text-align: center;
	padding: 0 20px 15px;
    white-space: nowrap;
}

.main1-dls div:hover {
	padding-bottom: 12px;
	border-bottom: 3px solid #375cc8;
}
.main1-dls .activeCont {
	padding-bottom: 12px;
	border-bottom: 3px solid #375cc8;
}

.main1-dls .getmore:hover {
	padding-bottom: 12px;
	border-bottom: 3px solid #fff;
}

.main1{
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(../images/main1-bg.png);
	padding: 50px 0 55px;
}
.main1-dl{
	margin-top: 45px;
}
.main1-dl dl{
	margin:0;
	font-size: 0;
	line-height: normal;
	text-align: center;
	background-repeat: repeat-x;
	background-position: left bottom;
	background-image: url(../images/main1-dl-bg.png);
}

.main1-dl dd{
	display: inline-block;
	width: 120px;
	font-size: 16px;
	color: #333;
	vertical-align: top;
	cursor: pointer;
	position: relative;
	padding-bottom: 24px;
}
.main1-dl dd+dd{
	margin-left: 80px;
}
.main1-dl dd img{
	display: block;
	width: 80px;
	margin:0 auto 10px;
}

.main1-dl dd img.curImg{
	display: none;
}


.main1-dl dd.cur{
	font-weight: bold;
	color: #375cc8;
}
.main1-dl dd::after{
	position: absolute;
	height: 3px;
	background-color: #375cc8;
	content:"";
	left: 50%;
	bottom: 0;
	width: 0%;
	z-index: 15;
}


.main1-dl dd.cur::after{
	left: 0;
	width: 100%;
	transition: left .3s,width .3s;
}
.main1-div-wp{
	margin-top: 45px;
}
.main1-div-wp .main1-div{display: none;}
.main1-div-wp .main1-div:first-child{display: block;}

.main1-pic{
	width: 504px;
	margin-right: 50px;
}
.main1-pic img{
	display: block;
	width: 100%;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}


.main1-con{
	overflow: hidden;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0 0 15px 1px rgba(0,0,0,0.05);
	padding: 45px 50px 30px;
}

.main1-con .main2-2-h1::after{display: none;}
.main1-con .main2-2-p{
	max-height: 8em;
	height: 8em;
	margin:15px 0 20px; 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow:ellipsis;
}
.main1-con .more1{margin-top: 35px;}
.main1-con-dl dl{
	margin:0;
}

.main1-con-dl dd{
	float: left;
	width: 135px;
}
.main1-con-dl dd+dd{margin-left: 24px;}
.main1-con-dl dd>a{
	display: block;
	border:1px solid #e8eaf3;
	font-size: 15px;
	color: #000;
	text-align: center;
	padding: 12px 0;
	border-radius: 5px;
}
.main1-con-dl dd>a:hover{
	color: #375cc8;
	font-weight: bold;
}
.main1-con-dl dd>a img{
	display: block;
	margin:0 auto 8px;
	width: 65px;
}



.main2{
	background-color: #fff;
	padding: 70px 0;
}
.main2-1 img{
	display: block;
	width: 100%;
}
.main2-2{
	margin-top: 55px;
}
.main2-2-div{
	background-color: #fff;
	box-shadow: 0px 0px 16px 0px rgba(207, 214, 235, 0.35);
	margin-top: 55px;
	height: 517px;
	position: relative;
	background-repeat: no-repeat;
	background-position: right center;
	background-image: url(../images/main2-2-div-bg.jpg);
	padding-left: 240px;
}
.main2-2-dl{
	position: absolute;
	width: 173px;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #f2f5ff;
	z-index: 15;
}
.main2-2-dl dl{
	margin:0;
	height: 100%;
}
.main2-2-dl dd{
	height: 33.333333333%;
	font-size: 22px;
	color: #333;
	text-align: center;
	padding-top: 25px;
	position: relative;
	cursor: pointer;
}
.main2-2-dl dd img{
	display: block;
	margin:0 auto 5px;
}
.main2-2-dl dd::after{
	position: absolute;
	width: 1px;
	background-color: #e8eaf3;
	height: 100%;
	content:"";
	z-index: 25;
	right: 0;
	top: 0;
}
.main2-2-dl dd.cur{
	background-color: #fff;
}
.main2-2-dl dd.cur::after{
	display: none;
}
.main2-2-dl dd.cur::before{
	position: absolute;
	width: 3px;
	background-color: #4472f8;
	height: 100%;
	content:"";
	z-index: 25;
	left: 0;
	top: 0;
}

.main2-2-con-wp .main2-2-con{display: none;}
.main2-2-con-wp .main2-2-con:first-child{display: block;}
.main2-2-con{
	padding: 65px 105px 0 0;
}

.main2-2-pic{
	width: 438px;
	margin-left: 28px;
}

.main2-2-con-nr{
	overflow: hidden;
}

.main2-2-h1{
	font-size: 24px;
	font-weight: bold;
	color: #385ecd;
}
.main2-2-h1::after{
	display: block;
	width: 2em;
	height:2px;
	margin-top: 15px;
	content:"";
	background-color: #385ecd;
}


.main2-2-p{
	font-size: 16px;
	color: #333;
	line-height: 2;
	max-height: 6em;
	overflow: hidden;
	margin:25px 0 60px;
}


.main2-2-con-dl dl{
	margin:0;
}

.main2-2-con-dl dd{
	float: left;
}

.main2-2-con-dl dd+dd{
	margin-left: 65px;
}
.main2-2-con-dl dd{
	font-size: 16px;
	color: #333;
	text-align: center;
}
.main2-2-con-dl dd img{
	display: block;
	margin:0 auto 10px;
	width: 40px;
}

.more1{
	margin-top: 47px;
	width: 168px;
	height: 55px;
	padding: 3px 5px 0 5px;
	background-image: url("../images/more1.png");
	background-repeat: no-repeat;
	background-position: center;
}
.more1 a{
	display: block;
	height: 45px;
	line-height: 45px;
	color: #fff;
	font-size: 16px;
	color: #fff;
	padding-left: 30px;
}
.more1 a:hover{
	font-weight: bold;
}



.main3{
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url("../images/main3-bg.png");
	padding: 100px 0;
}

.main3-dl dl{
	margin:0;
	margin-left: -2%;
}

.main3-dl dd{
	float: left;
	width: 23%;
	margin-left: 2%;
	text-align: center;
	margin-top: 50px;
}
.main3-dl dd img{
	display: block;
	margin:0 auto;
}
.main3-dl dd h1{
	margin:0;
	font-size: 40px;
	color: #000;
	padding: 15px 0;
}
.main3-dl dd h2{
	margin:0;
	font-size: 18px;
	color: #000;
}
.main4{
	background-color: #fff;
	padding:95px 0 50px;
}

.main4-div{

	position: relative;
	margin-top: 50px;
}


.main4-div-bgg{
	position: relative;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 15;
	opacity: 0.8;
	overflow:hidden; 
	 background: #f7f9fc;
    background: -moz-linear-gradient(top, #fff 0%, #f7f9fc 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #f7f9fc));
    background: -webkit-linear-gradient(top, #fff 0%, #f7f9fc 100%);
    background: -o-linear-gradient(top, #fff 0%, #f7f9fc 100%);
    background: -ms-linear-gradient(top, #fff 0%, #f7f9fc 100%);
    background: linear-gradient(to bottom, #fff 0%, #f7f9fc 100%);
}
.main4-div-bgg img {
	display: block;
	width: 100%;
    transform: scale(2);
    transition: all .8s ease;
}
.main4-div-bgg:hover img {
    transition-delay: .5s;
    transform: scale(1);
}
.main4-ys{
	position: relative;
	top: -100px;
	height: 208px;
	width: 947px;
	border-radius: 15px;
	background-color: #bcc3d1;
	margin:0 auto;
	background-image: url(../images/main4-ys-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 50px;
	position: relative;
	z-index: 50;
}
.main4-ys h1{
	margin:0;
	font-size: 34px;
	color: #fff;
	text-align: center;
}

.main4-ys-a{
	width: 220px;
	margin:20px auto 0;
}
.getmore {
	float: right !important;
	color: #888 !important;
	font-size: 16px;
	left: 450px !important;
}
.main4-ys-a a{
	display: block;
	height: 60px;
	line-height: 60px;
	border-radius: 999em;
	color: #fff;
	text-align: center;
	font-size: 20px;
	background:#3b63d9;
	background: -webkit-linear-gradient(left, #3356bd , #4471f6); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #3356bd, #4471f6); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #3356bd, #4471f6); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #3356bd , #4471f6); /* 标准的语法 */
}
.main4-ys-a a:hover{
	font-weight: bold;
}

/**************************************************************/
/*main-over*/





/*footer-start*/
/**************************************************************/

#footer{
	background-color: #494e5a;
}

.footer-1{
	padding: 75px 0 140px;
	border-bottom: 2px solid #5f636e;
}

.foo1{
	width: 220px;
}

.foo-logo{
	width: 180px;

}
.foo-logo a,.foo-logo img{
	display: block;
	width: 100%;
}
.foo1-dl{
	padding-top: 25px;
}
.foo1-dl dl{
	margin:0;
}

.foo1-dl dd{
	font-size: 18px;
	color: #fff;
	margin-top: 18px;
}
.foo1-dl dd img{
	margin-top: -3px;
	margin-right: 20px;
}
.foo1-dl dd h1{
	margin:0;
	font-size: 24px;
	color: #fff;
}

.foo3{
	width: 154px;
	margin-left: 130px;
}

.foo3 h1{
	margin:0;
	font-size:18px;
	color: #fff;
	font-weight: bold;

}
.er{
	margin-top: 17px;
}

.er img{
	display: block;width: 100%;
}

.foo2{
	
}
.foo2 ul{
	margin:0;
}

.foo2 li{
	float: left;
	width: 115px;
}
.foo2 li+li{
	margin-left: 100px;
}

.foo2 dl{
	margin:0;
}
.foo2 li h1{
	margin:0;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	padding-bottom: 18px;
	border-bottom:1px solid #5f636e;
}

.foo2 dd{
	margin-top: 15px;
	
}
.foo2 dd a{
	transition: color .3s;
	font-size: 16px;
	color: #c2c4c9;
}
.foo2 dd a:hover{
	color: #fff;
}
.footer-2{
	font-size: 15px;color: #fff;
	line-height: 1.8;
	padding: 15px 0;
}
.footer-2 a:hover{
	text-decoration: underline;
}


/**************************************************************/
/*footer-over*/





/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/
#header-2{
	display: none;
	height: 75px;
	/*border-bottom:0px solid #035cac;*/
	box-shadow: 0 4px 8px -3px #000;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 1001;
	background-color: #fff;

}
.nav-2{
	display: none;
	background-color: #fff;
	position: relative;
	z-index:900;

}

.nav-2>ul>li{

	border-top: 1px dotted #ccc;
	position: relative;
}

.jiaspan{
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(../images/jia2.png);
	background-repeat: no-repeat;
	background-position: center ;
	top: 5px;

	right: 14px;
}
.jiaspan.cur{
	background-image: url(../images/jia2h.png);

}
.nav-2>ul>li:first-child{
	/*border-top: 0;*/
}
.nav-2>ul>li>a{

	padding:8px 10px;
	display: block;
	font-size: 16px;
	width: 100%;
	color:#333;
	font-family: "anb";
	text-transform: uppercase;

}
.nav-2>ul>li>ul{
	padding-bottom: 10px;
	display: none;
}
.nav-2>ul>li>ul>li>a{
	padding: 6px 10px;
	display: block;
	font-size: 14px;
	padding-left: 25px;
	width: 100%;
	color:#666;
}
/*.downla-2 {
	padding: 5px 0 10px;
	display: none;
}
.downla-2 dd{
	padding-left: 30px;
}
.downla-2 dd a{
	font-size: 14px;
	display: inline-block;
	padding: 3px 0;
	width: auto;
}*/
/*.nav-2 li a:hover{
	color:#1a0d07;
}*/

.nav-2-form{
	padding: 10px;
	position: relative;
}
.nav-2-form input[type="image"]{
	position: absolute;
	right: 19px;
    top: 17px;
    width: 18px;

}

.nav-2-form .form-control{padding-right: 50px;}
.logo-2 {
   font-size: 0;
   width: 145px;
   margin-left: 15px;
   margin-top:15px;
}

.logo-2 img{
	display: block;
	width: 100%;
}


.menu2{

	margin-right: 15px;
	height: 75px;
	font-size: 0;

}
.menu2 li{
	cursor:pointer ;
	margin-left: 15px;
	float: right;
	margin-top: 29px;
}
.menu2 li+li{
	margin-top: 21px;
}
.menu2 li img{
	/*vertical-align: middle;*/


}

.chenggao{
		display: none;
		height: 75px;
	}


#nav-2-heidi{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 800;
	background-image: url(../images/heidi.png);
	display: none;

}




/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/

.banner-2{

	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}




.mianbaoxie{
	font-size: 18px;
	color: #a9a9a9;
	padding: 30px 0;
	background-color: #f9fafc;
}

.mianbaoxie a:hover,.mianbaoxie span{
	color: #4472f8;
}

.erji{
	padding: 90px 0 55px;
}

.erji-h1{
	font-size: 36px;
	color: #000;
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.sanji-dl{padding: 25px 0 45px;}
.sanji-dl dl{
	margin:0;
	font-size: 0;
	line-height: normal;
	text-align: center;
}

.sanji-dl dd{
	display: inline-block;
}
.sanji-dl dd+dd{
	padding-left: 26px;
	margin-left: 25px;
	background-image: url(../images/sanji-dd.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.sanji-dl dd>a{
	font-size: 20px;
	color: #333;
}
.sanji-dl dd>a:hover{
	color: #4472f8;
}
.sanji-dl dd.cur>a{
	font-weight: bold;
	color: #4472f8;
}

.xinwen-list dl{
	margin:0;
}
.xinwen-list dd{
	background-color: #fff;
	padding: 40px;
	box-shadow: 0px 14px 31.28px 2.72px rgba(144, 144, 144, 0.08);
	border-radius: 25px;
}
.xinwen-list dd+dd{
	margin-top: 30px;
}

.xinwen-pic{
	width: 350px;
	margin-right: 65px;
}

.xinwen-pic .imgbox_a{
	padding-bottom: 58.857%;
}

.xinwen-con{
	overflow: hidden;
	padding-top: 8px;
}

.xinwen-con h1{
	margin:0;
	font-size: 14px;
	font-weight: bold;
	color: #999999;
}

.xinwen-con h2{
	margin:0;
	font-size: 26px;
	color: #000;
	margin:20px 0;
}
.xinwen-con h2 a:hover{
	color: #4472f8;
}

.xinwen-con p{
	margin:0;
	font-size: 14px;
	color: #999;
}

.xinwen-a{
	
	width: 126px;
	position: relative;
	margin-top: 52px;
}
.xinwen-a::after{
	position: absolute;
	width: 55px;
	height: 1px;
	background-color: #000;
	content:"";
	right: 0;
	top: 50%;
}
.xinwen-a a{
	font-size: 14px;
	font-weight: bold;
	color: #000;
}

.xinwen-a a:hover{
	color: #4472f8;
}

.fenye{
	text-align: center;
	margin-top: 50px;
}

.fenye ul{
	margin:0;
}


.danpian{
	max-width: 1400px;
	margin:0 auto;
}
.danpian-h1{
	font-size: 28px;
	line-height: 1.6;
	color:#333;
	text-align: center;

}

.danpian-h2{
	font-size: 14px;
	line-height: 1.6;
	color:#999;
	text-align: center;
	border-bottom: 1px solid #eee;
	padding: 10px 0 15px;

}
.bsBox,.bsBox *,#bsPanelHolder,#bsPanelHolder *{
	-webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.danpian-con{
	font-size: 14px;
	color:#333;
	line-height: 2;
	padding: 20px 0 20px;
}

.danpian-con img{
	display: block;
	margin:15px auto;
}


.dan-page{
	padding-top: 10px;
	border-top: 1px solid #eee;
}

.dan-a{
	margin-top: 12px;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dan-a a{
	font-size: 16px;
	color:#333;
}

.dan-a a:hover{
	color:#4472f8;
}

.anli-list dl{
	margin:0;
	margin-top: -3%;
	margin-left: -3%;
}

.anli-list dd{
	float: left;
	width: 30.33333333%;
	margin-left: 3%;
	margin-top: 3%;
	background-color: #fff;
	box-shadow: 0px 23px 58.88px 5.12px rgba(144, 144, 144, 0.08);
	border-top-left-radius:15px; 
	border-top-right-radius:15px; 
	overflow: hidden;
}


.anli-pic .imgbox_a{
	padding-bottom: 56.2%;
}


.anli-con{
	padding: 25px;
}

.anli-con h1{
	margin:0;
	font-size: 20px;
	color: #000;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
}

.anli-con h2{
	margin:0;
	font-size: 18px;
	color: #000;
	font-weight: bold;
	margin-top: 18px;
}

.anli-con p{
	margin:0;
	font-size: 16px;
	color: #999;
	line-height: 1.8;
	height: 5.4em;
	overflow: hidden;
	margin-top: 12px;
}

.anli-a{
	margin-top: 40px;
}

.anli-a a{
	font-size: 18px;
	color: #999;
}
.anli-a a:hover{
	color: #586daa;

}

.jiejue-item{
	padding: 80px 0;
}

.jiejue-pic{
	width: 40%;
}
.jiejue-pic img{display: block;width: 100%;}
.jiejue-pic.fl{
	margin-right: 80px;
}
.jiejue-pic.fr{
	margin-left: 80px;
}

.jiejue-con{
	overflow: hidden;
}

.jiejue-num{
	font-size: 58px;
	font-weight: bold;
	color: #4472f8;
	line-height: 1;
}

.jiejue-h1{
	font-size: 36px;
	color: #000;
	margin:17px 0 12px;
}

.jiejue-p{
	font-size: 18px;
	color: #000;
	line-height: 1.8;
}

.jiejue-dl-h1{
	font-size: 18px;
	color: #000;
	font-weight: bold;
	padding: 20px 0 5px;
}

.jiejue-dl dl{margin:0;}
.jiejue-dl dd{
	font-size: 16px;
	color: #8c919b;
	line-height: 1.5;
	margin-top: 10px;
	background-image: url(../images/dian.png);
	background-repeat: no-repeat;
	background-position: left 10px;
	padding-left: 13px;
}

.jiejue-a{
	width: 160px;
	margin-top: 30px;
}

.jiejue-a a{
	height: 43px;
	line-height: 43px;
	border-radius: 999em;
	display: block;
	color: #fff;
	font-size: 16px;
	background-color: #a7aec1;
	text-align: center;
}


.jiejue-a a:hover{
	background: -webkit-linear-gradient(left, #3357bd , #4472f6); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #3357bd, #4472f6); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #3357bd, #4472f6); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #3357bd , #4472f6); /* 标准的语法 */
}

.jiejue-item-hui{
	background: #f3f5f8;
	background: -webkit-linear-gradient(#f4f6f9, #fff); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(#f4f6f9, #fff); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(#f4f6f9, #fff); /* Firefox 3.6 - 15 */
  background: linear-gradient(#f4f6f9, #fff); /* 标准的语法 */
}


.join-div{
	background-color: #fff;
	padding: 40px;
	box-shadow: 0px 14px 31.28px 2.72px rgba(144, 144, 144, 0.08);
	border-radius: 25px;
}

.join1-h1{
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

.join1-con{
	font-size: 16px;
	color: #8c919b;
	margin-top: 10px;
	line-height: 2;
}


.join2{
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #ddd;
}

.join-div+.join-div{
	margin-top: 40px;
}

.zhihui .jiejue-a{
	margin:0 auto;
}

.pp50{
	padding: 50px 0;
}

.zhihui1 img{
	display: block;
	margin:0 auto;
}

.zhihui1-p{
	font-size: 20px;
	color: #000;
	line-height: 2;
}

.zhihui2 img{
	display: block;
	margin:0 auto;
}

.zhihui3 img{
	display: block;
	margin:0 auto;
}

.zhihui4-pic{
	width: 48%;
	margin-right: 50px;
}

.zhihui4-pic img{
	display: block;
	width: 100%;
}

.zhihui4-dl{
	overflow: hidden;
}

.zhihui4-dl dl{
	margin:0;
}

.zhihui4-dl dd{
	font-size: 22px;
	color: #000;
	line-height: 1.5;
	padding-left: 24px;
	background-repeat: no-repeat;
	background-position: left 11px;
	background-image: url(../images/dian2.png);
	margin-top: 13px;
}


.zhihui5-pic{
	width: 58%;
	margin-left: 50px;
	margin-right: 120px;
}

.zhihui5-pic img{
	display: block;
	width: 100%;
}

.zhihui5-dl{
	overflow: hidden;
}

.zhihui5-dl dl{
	margin:0;
}

.zhihui5-dl dd+dd{
	margin-top: 30px;
}

.zhiihui5-h1{
	width: 90px;
	height: 35px;
	line-height: 35px;
	background-color:#475d9e;
	text-align: center; 
	color: #fff;
	font-size: 16px;
}

.zhihui5-con{
	font-size: 16px;
	color: #000;
	line-height: 1.8;
	padding-left:11px;
	margin-top: 12px;
}

.zhihui6-pic{
	width: 50%;
	margin-right: 50px;
}

.zhihui6-pic img{
	display: block;
	width: 100%;
}

.zhihui7-pic{
	width: 410px;
	margin-left: 65px;
}

.zhihui7-pic img{
	display: block;
	width: 100%;
}

.zhihui7-div{
	overflow: hidden;
}
.zhihui7-div .zhihui7-table table.table{margin:0;}
.zhihui7-div .zhihui7-table table.table tr th{
	height:50px;
	vertical-align: middle;
	font-size: 20px;
	color: #fff;
	text-align: center;
	background-color: #475d9e;
}
.zhihui7-div .zhihui4-dl dd{
	font-size: 20px;
	margin-top: 8px;
	
}
.zhihui7-div .zhihui4-dl{
	padding: 20px;
}
.zhihui7-div .zhihui4-dl dd:first-child{
	margin-top: 0;
}


.product-pic{
	width: 662px;
}
.product-pic img{
	display: block;	width: 100%;
}
.product-pic.fl{
	margin-right: 50px;
}
.product-pic.fr{
	margin-left: 50px;
}

.product-con{
	overflow: hidden;
}

.product-dl dl{
	margin:0;
}

.product-dl dd{
	padding-left: 80px;
	padding-top: 18px;
	margin-top: 30px;
	background-repeat: no-repeat;
	background-position: left top;
	min-height: 60px;
}

.product-dl dd h1{
	margin:0;
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.product-dl dd p{
	margin:0;
	font-size: 16px;
	color: #8c919b;
	line-height: 1.8;
	margin-top: 17px;
}

.textcolor {
	color: #ffffff;
}


.denglu-wp{
	background-color: #f5f5fb;
	padding: 40px 0 100px;
}

.denglu-header .nav>ul>li>a{color: #333;}
.denglu-header .phone{color: #333;    background-image: url(../images/phoneh.png);}
.denglu{
	background-image: url(../images/denglu-bg.png);
	background-repeat: no-repeat;
	/* background-position: 5% center; */
	background-position: 2% center;
}
.denglu-div{
	width: 580px;
	height: 730px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 14px 0px rgba(172, 172, 172, 0.34);
	margin-left: auto;
	padding: 35px 40px 0;
}

.denglu-title h1{
	margin:0;
	font-size: 30px;
	font-weight: bold;
	color: #4472f8;
}
.denglu-title h2{
	margin:0;
	font-size: 16px;
	color: #a0a8bb;
	line-height: 1.5;margin-top: 13px;
}

.denglu-form{
	padding-top: 5px;
}

.denglu-li{
	margin-top: 18px;
}

.contact-Form .el-form-item__label {
	font-size: 18px;
	color: #333;
	font-weight: 400;
	padding-bottom: 0 !important;
	margin-bottom: 0;
}
.contact-Form .el-input__inner {
	border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
}
.denglu-li-h1{
	font-size: 18px;
	color: #333;
}
.denglu-li-input{
	position: relative;
}
.denglu-li-input input:focus{
	outline: none;
}
.denglu-li-input input[type="text"]{
	display: block;
	width: 100%;
	height: 38px;
	background-color:#fff;
	border:0;
	border-bottom: 1px solid #e8e8ee;
	font-size: 14px;
	color: #333;
	line-height: 1.428571;
	padding-right: 150px;
}

.point{
	position: absolute;
	right: 0;
	top: 7px;
	font-size: 14px;
	color: #f00;
}



.denglu_p{
	font-size: 16px;
	color: #333;
	margin-top: 25px;
}

.denglu_p a{
	color: #bbbbcd;
}

.denglu_p a:hover{
	color: #4472f8;
}

.denglu-li-input input::-webkit-input-placeholder{
    color:#e4e4ea;
}
.denglu-li-input input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#e4e4ea;
}
.denglu-li-input input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#e4e4ea;
}
.denglu-li-input input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
    color:#e4e4ea;
}

.denglu-li-input-a{
	position: relative;
}
.denglu-li-input-a input[type="text"]{
	padding-right: 80px;

}
.denglu-li-input input[type="text"]:focus{
	border-bottom: 1px solid #4472f8;
}
.denglu-li-input-a input[type="button"]{
	position: absolute;
	right: 0;
	top: 5px;
	font-size: 14px;
	color: #4472f8!important;
	border:0;
	background-color: #fff;
}
.denglu-li-input-a a{
	position: absolute;
	right: 0;
	top: 7px;
	font-size: 14px;
	color: #4472f8;
}


.denglu-li-input-a a:hover{
	font-weight: bold;
}
.denglu-btn{
	margin-top: 27px;
	text-align: center;
}
.denglu-btn .el-button{
	width: 355px;
	height: 50px;
	background-color:#4472f8;
	border-radius: 25px !important;
	font-size: 18px;
}


.about1{
	background-color: #f9fafc;
	border-top: 1px solid #e9e9e9;
	padding: 65px 0 55px;
}

.about1 dl{
	margin:0;
	margin-left: -3%;
}

.about1 dd{
	float: left;
	width: 22%;
	margin-left: 3%;
}

.about1 dd img{
	display: block;
	width: 124px;
	margin:0 auto;
}

.about1 dd h1{
	margin:0;
	font-size: 20px;
	color: #333;
	padding: 20px 0 13px;
	text-align: center;
}

.about1 dd p{
	margin:0;
	font-size: 16px;
	color: #8c919b;
	line-height: 1.8;
	height: 3.6em;
	text-align: center;
}

.about2-div-wp{
	padding-left: 738px;
	position: relative;
}

.about2-div{
	background-color: #fff;
	box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.06);
	border-top: 3px solid #4f64aa;
	padding: 40px 40px 0 50px;
	height: 379px;
	position: relative;
	z-index: 25;
}

.about2-pic{
	position: absolute;
	width: 738px;
	left: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: left center;
	z-index: 15;
}

.about2-div h1{
	margin:0;
	font-size: 32px;
	color: #333;
}

.about2-div-p{
	margin:0;
	font-size: 18px;
	color: #8c919b;
	line-height: 2;
	height: 12em;
	overflow: hidden;
	margin-top: 25px;
	padding-right: 20px;
}
.about2-div-p.mCS_no_scrollbar{
	padding-right: 0;
}
.about2-div-p p{margin:0;}
.mmm90{
	margin-top: 90px;
}

.about-h1{
	font-size: 36px;
	color: #333;
	text-align: center;
	padding-bottom: 50px;
}


.about3-div-wp{
	background-repeat: repeat-x;
	background-position: left center;
	background-image: url(../images/about3-line.png);
	padding: 0	30px;
}
.about3-div-wp dl{
	margin:0;
}

.about3-div-wp dd{
	float: left;
	height: 626px;
	width: 20%;
	position: relative;
}


.about3-num{
	position: absolute;
	left: 50%;
	top:50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 76px;
	height: 76px;
	line-height: 60px;
	border:8px solid #fff;
	border-radius: 50%;
	background-color: #ededed;
	font-size: 22px;
	font-weight: bold;
	color: #000;
	text-align: center;
}

.about3-div{
	position: absolute;
	width: 346px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.about3-h1{
	height: 96px;
	padding: 0	25px;
	position: relative;
}
.about3-h1::after{
	position: absolute;
	content:"";
	width: 0px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	
	height: 0px;
	border-left: 12px solid transparent;
  
  border-right: 12px solid transparent;

}
.about3-table{
	display: table;
	width: 100%;
	height: 100%;
}
.about3-table-cell{
	display: table-cell;
	vertical-align: middle;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	max-height: 3em;
	overflow: hidden;
	text-align: center;
}

.about3-con{
	border:1px solid #eee;
	height: 155px;
	padding: 22px 17px;
}

.about3-p{
	font-size:18px;
	color: #666; 
	line-height: 1.8;
	height: 5.4em;
	overflow: hidden;
}


.about3-div1 .about3-h1{
	background-color: #475b9a;
}
.about3-div1 .about3-h1::after{
	top: 100%;
	border-top:12px solid #475b9a;
}
.about3-div2 .about3-h1{
	background-color: #566db3;
}
.about3-div2 .about3-h1::after{
	bottom: 100%;
	border-bottom:12px solid #566db3;
}
.about3-div3 .about3-h1{
	background-color: #6b80bd;
}
.about3-div3 .about3-h1::after{
	top: 100%;
	border-top:12px solid #6b80bd;
}
.about3-div4 .about3-h1{
	background-color: #8d9bc3;
}
.about3-div4 .about3-h1::after{
	bottom: 100%;
	border-bottom:12px solid #8d9bc3;
}
.about3-div5 .about3-h1{
	background-color: #a6a9b2;
}

.about3-div5 .about3-h1::after{
	top: 100%;
	border-top:12px solid #a6a9b2;
}

.about3-div1{
	top: 0;
}
.about3-div2{
	bottom: 0;
}
.about3-div3{
	top: 0;
}
.about3-div4{
	bottom: 0;
}
.about3-div5{
	top: 0;
}




.about4-div{
	background-color: #fff;
	box-shadow: 0px 0px 12px 0px rgba(201, 204, 212, 0.35);
	padding: 45px;
	border-radius: 20px;

}

.about4-list{
	overflow: hidden;
}

.about4-list dl{
	margin:0;
	margin-left: -5%;
	margin-top: -3%;
}
.about4-list dd{
	float: left;
	width: 15%;
	margin-left: 5%;
	margin-top: 3%;
}

.about4-list dd .imgbox_a{
	padding-bottom: 33.2%;
	background-color: #f9fafc;
}

.about{
	padding-bottom: 90px;
}

.about5-pic .imgbox_a{
	padding-bottom: 42.73%;
}

.about5-div dl{
	margin:0;
	margin-left: -3%;
}

.about5-div dd{
	float: left;
	width: 30.333333333%;
	margin-left: 3%;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0px 23px 64px 0px rgba(144, 144, 144, 0.08);
	background-color: #fff;
}

.about5-con{
	padding: 30px 35px; 
}

.about5-con h1{
	margin:0;
	font-size: 20px;
	color: #333;
	padding-bottom: 15px;
	border-bottom: 1px solid #cdced2;
}

.about5-di{
	font-size: 16px;
	color: #848586;
	padding-left: 35px;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin-top: 20px;
	background-image: url(../images/di.png);
	background-repeat: no-repeat;
	background-position: 0 3px;
}


#piaoc{
  position: fixed;
  width: 60px;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(171,171,171,.24);
  box-shadow: 0 2px 10px 0 rgba(171,171,171,.24);
  border-radius: 6px;
  position: fixed;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 888;
  padding: 15px 0;
}
.piaoc-item+.piaoc-item{
	margin-top: 25px;
}
.piaoc-item>a{
	display: block;
	position: relative;
	font-size: 12px;
	color: #333;
	text-align: center;
}

.piaoc-item>a img{
	display: block;
	margin:0 auto 5px;
}
.piaoc-item>a:hover .piaoc-item-div{display: block}
.piaoc-item-div{
	width: 170px;
  height: 70px;
  position: absolute;
  right: 75px;
  bottom: -5px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
  border: 1px solid #e1e6f0;
  background: #fff;
  border-radius: 6px;
  text-align: left;
  padding: 15px 15px 0;
  display: none;
}

.piaoc-item-div h1{
	margin:0;
	font-size: 12px;
  color: #9b9b9b;
}

.piaoc-item-div h2{
	margin:0;
	font-size: 18px;
  color: #17212c;
  font-weight: bold;
  margin-top: 9px;
}

.piaoc-item-div::after{
	position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  right: -7px;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  top: 31px;
  border-color: #e1e6f0 transparent transparent #e1e6f0;
  border-style: solid;
  border-width: 1px;
  content:"";
}

.piaoc-item-div2{
	height: auto;
	padding: 15px;
	width: 130px;
	bottom: -15px;

}
.piaoc-item>a .piaoc-item-div2 img{
	margin-bottom: 0;
}
.piaoc-item-div2::after{
	top:90px;
}







.diliMap-wp,.diliMap-wp2{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1010;
    opacity: 0;
    visibility: hidden;

}
.diliMap-wp.cur,.diliMap-wp2.cur{
    opacity: 1;
    visibility: visible;
    transition: .3s;

}
.diliMap,.diliMap2{
    height: 100%;
    position: relative;
}
.diliMap-hei,.diliMap-hei2{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/heidi.png);
    z-index: 50;
    cursor: pointer;
}

.diliMap-div,.diliMap-div2{
    position: absolute;
    width: 70%;
    height: 500px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15%;
    top: 50%;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    z-index: 70;
}

.mmap,.mmap2{
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 50;
}

.diliMap-close,.diliMap-close2{
    position: absolute;
    right: -29px;
    top: -29px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #4575e9;
    cursor: pointer;
    z-index: 80;
}

.diliMap-close::after,.diliMap-close2::after{
    content:"";
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url(../images/gb.png);
    background-repeat: no-repeat;
    background-position: center;
    left: 50%;
    margin-left: -12px;
    top: 50%;
    margin-top: -12px;
    z-index: 60;
    transform:rotate(0deg);
    -ms-transform:rotate(0deg);     /* IE 9 */
    -moz-transform:rotate(0deg);    /* Firefox */
    -webkit-transform:rotate(0deg); /* Safari å’Œ Chrome */
    -o-transform:rotate(0deg);  /* Opera */
}

.diliMap-close:hover::after,.diliMap-close2:hover::after{
    transform:rotate(180deg);
    -ms-transform:rotate(180deg);     /* IE 9 */
    -moz-transform:rotate(180deg);    /* Firefox */
    -webkit-transform:rotate(180deg); /* Safari å’Œ Chrome */
    -o-transform:rotate(180deg);  /* Opera */
    transition: .5s;
}


.miaodian{
	position: relative;
	height: 0;
	top: -190px;
}