/**************************************/
/*************[公用start]**************/
/**************************************/
@font-face{
	font-family:"jbs";
	src:url("../fonts/jbs3.ttf");
}
@font-face{
	font-family:"hs";
	src:url("../fonts/hs.ttf");
}
/*主站变灰*/
/*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{
	height: 125px;
	background-color: #fff;
	padding:0 50px;
	position: relative;
	z-index: 999;
	box-shadow: 0 4px 5px -3px rgba(0,0,0,0.15);
}



#header .container-fluid{
	padding-left: 0;
	padding-right: 0;
}

.logo{
	width: 423px;
	margin-top: 26px;
}

.logo a,.logo img{
	display: block;
	width: 100%;
}

.header-right{
	margin-top: 25px;
}

.search{
	width: 180px;
	margin-left: auto;
	position: relative;
}

.search input:focus{
	outline: none;
}

.search input[type="text"]{
	display: block;
	width: 100%;
	height: 36px;
	border:1px solid #eaeaea;
	border-radius: 999em;
	font-size: 14px;
	color: #333;
	padding: 6px 44px 6px 18px;
}


.search input[type="image"]{
	position: absolute;
	width: 29px;
	right: 4px;
	top: 4px;
}


.nav{
	margin-top: 24px;
}
.nav ul{
	margin:0;
}

.nav>ul>li{
	float: left;
	position: relative;
}
.nav>ul>li+li{
	margin-left: 54px;
}

.nav>ul>li>a{
	display: block;
	font-size: 20px;
	color: #333;
	padding-bottom: 20px;
	line-height: 1;
	position: relative;
}
.nav>ul>li>a::after{
	position: absolute;
	width: 2em;
	height: 3px;
	background-color: #044c87;
	content:"";
	left: 50%;
	margin-left: -1em;
	bottom: 0;
	opacity: 0;
	transition: opacity .3s;
}
.nav>ul>li:hover>a::after,
.nav>ul>li.cur>a::after{
	opacity: 1;
}
.nav>ul>li>ul{
	position: absolute;
	left: 50%;
	margin-left: -60px;
	width: 120px;
	top:100%;
	z-index: 600;
	display: none;
	background-color:#fff;
}
.nav>ul>li>ul>li>a{
	display: block;
	padding: 10px 5px;
	text-align: center;
	line-height: 1.6;
	font-size: 15px;
	color:#333;
	text-align: center;
}
.nav>ul>li>ul>li>a:hover{
	background-color: #044c87;
	color: #fff;
}


.header-index#header{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	background-color: transparent;
	background-repeat: repeat-x;
	background-position: left bottom;
	background-image: url(../images/header-index-bg.png);
	box-shadow: none;
}


.header-index .nav>ul>li>a{
	color: #fff;
}

.header-index .nav>ul>li>a::after{
	background-color: #fff;
	/*opacity: 1;*/
}



/**************************************************************/
/*header-over*/





/*main-start*/
/**************************************************************/

#main{

}


.main1{
	position: relative;
	background-image: url(../images/main1-bg.jpg);
	background-position: center top!important;
	background-color: #f2faff;
	background-size: contain!important;
}


.main1 .container{
	position: relative;
	z-index: 10;
}
.main1::after{
	position: absolute;
	height: 434px;
	background-repeat: no-repeat;
	background-position: center;
	content:"";
	left: 0;
	bottom: 0;
	background-image: url(../images/ban.png);
	width: 100%;
	z-index: 50;
}

.main1-list{
	padding: 0 50px;
}


.main1-list dl{
	margin:0;
	margin-left: -3%;
}

.main1-list dd{
	float: left;
	width: 13.6667%;
	margin-left: 3%;
}
.main1-list dd>a{
	display: block;
	padding-top: 72px;
	background-image: url(../images/zhi0.png);
	height:800px;
	position: relative;
	transition: background-image .3s;
}

.main1-ico{
	width: 120px;
	border:1px dashed #7cb7d8;
	border-radius: 50%;
	padding: 10px;
	margin:0 auto;
	position: relative;
	transition: border-color .3s;
}

.main1-ico-dh{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
  
}

.main1-ico-dh::before{
	width: 10px;
	height: 10px;
	position: absolute;
	border-radius: 50%;
	background-color: #7bb6d8;
	content:"";
	left: -5px;
	top: 50%;
	margin-top: -10px;
	transition: background-color .3s;
}

 
@keyframes spinAround {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}



.main1-ico .imgbox_a{
	border-radius: 50%;
	position: relative;
	z-index: 15;
}

.main1-con{
	font-size: 0;
	text-align: center;
	padding-top: 30px;
	position: relative;
}
.main1-con::before{
	position: absolute;
	width: 1px;
	height: 148px;
	content:"";
	top: -10px;
	content:"";
	background-color: #7bb6d8;
	left: 102px;
	transition: background-color .3s;
}

.main1-h1{
	display: inline-block;
	width: 1em;
	font-size: 24px;
	color: #222;
	position: relative;
	transition: color .3s;
}
.main1-h1::before{
	position: absolute;
	width: 18px;
	height: 20px;
	background-image: url(../images/yezi2.png);
	background-repeat: no-repeat;
	background-position: center;
	content:"";
	left: -22px;
	top: -3px;
	transition: background-image .3s;
}
.more11{
	margin-top: 20px;
}
.main1-h2{
	display: inline-block;
	width: 1em;
	font-size: 14px;
	color: #222;
	writing-mode: vertical-rl;
	writing-mode: tb-rl;
	text-transform: uppercase;
	margin-left: 20px;
	vertical-align: top;
	/*text-align: left;*/
	transition: color .3s;
}
.main1-icox{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 240px;
	opacity: 0;
	transition: opacity .3s;
}
.main1-icox img{
	display: block;
	margin:0 auto;
}


.main1-list dd>a:hover{background-image: url(../images/zhi.png);}
.main1-list dd>a:hover .main1-ico{border-color:#fff;}
.main1-list dd>a:hover .main1-ico-dh{
	animation: spinAround 4s linear infinite; /* 应用动画 */
}
.main1-list dd>a:hover .main1-ico-dh::before{background-color:#fff;}
.main1-list dd>a:hover .main1-h1{color: #fff;}
.main1-list dd>a:hover .main1-h1::before{background-image: url(../images/yezi2h.png);}
.main1-list dd>a:hover .main1-h2{color: #fff;}
.main1-list dd>a:hover .main1-con::before{background-color: #fff;}
.main1-list dd>a:hover .main1-icox{opacity: 1;}







.main2-1{
	width: 1000px;
	margin-right: 50px;
}

.main-title span.fl{
	font-size: 22px;
	color: #222;
	font-family: "jbs";
	position: relative;
	margin-top: 10px;
	cursor: pointer;
}
.main-title span.fl+span.fl{
	margin-left: 35px;
}
.main-title span.fl::after{
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #8c9f70;
	left: 0;
	bottom: 0;
	content:"";
}
.main-title span.fl.cur{
	font-size: 32px;
	color: #044c87;
	margin-top: 0px;
}
.main-title span.fl.cur::after{
	display: none;
}

.main4-divx{
	display: none;
}


.main4-list2 .owl-nav button.owl-prev{
  position: absolute;
  left:0px;
  top: 50%;
  margin-top: -28px;
  width: 56px;
  height: 56px;
  background-image: url(../images/b-left2.png);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center ;
  font-size: 0;
  z-index: 50;
}

.main4-list2 .owl-nav button.owl-next{
  position: absolute;
  right:0px;
  top: 50%;
  margin-top: -28px;
  width: 56px;
  height: 56px;
  background-image: url(../images/b-right2.png);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center ;font-size: 0;
  z-index: 50;
}







.main-title a.fr{
	display: none;
	font-size: 16px;
	color: #666;
	margin-top: 13px;
}
.main-title a.fr::after{
	display: block;
	width: 100%;
	height: 1px;
	background-color: #8c9f70;
	content:"";
	margin-top: 5px;
}
.main-title a.fr:hover{
	color: #044c87;
}
.main-title a.fr img{
	margin-top: -3px;
	margin-left: 4px;
}
.main-title a.frr{
	display: block;
}

.main-divx-wp{
	margin-top: 25px;
}
.main-divx-wp .main-divx{display: none;}
.main-divx-wp .main-divx:first-child{display: block;}

.main2-1-left{
	width: 658px;
	margin-right: 20px;
}

.main2-pic .imgbox_a{
	padding-bottom: 55.32%;
}

.main2-h1{
	font-size: 18px;
	color: #222;
	padding: 12px 25px;
	background-color: #f3f7f9;
}
.main2-h1 a:hover{
	color: #044c87;
}

.fmain2 .flex-control-paging li a{
	width: 29px;
	height: 6px;
	border-radius: 6px;
	background-image: none!important;
	background-color: #ffffff;
}

.fmain2 .flex-control-paging li a.flex-active{
	background-color: #7bb6d8;
}


.fmain2 .flex-control-nav{
	height: 0;
	bottom: 80px;
	text-align: right;
	padding-right: 20px;
}

.fmain2 .flex-control-nav li{
	margin:0;
}
.fmain2 .flex-control-nav li+li{
	margin-left: 10px;
}

.main2-1-list1{
	overflow: hidden;
}

.main2-1-list1 dl{
	margin:0;
}

.main2-1-list1 dd{
	background-color: #f3f7f9;
	padding: 30px;
}
.main2-1-list1 dd+dd{
	margin-top:20px;
}
.main2-1-list1-h1{
	font-size: 18px;
	color: #222;
	line-height: 1.8;
	height: 3.6em;
	overflow: hidden;
}
.main2-1-list1-h1 a:hover{
	color: #044c87;
}
.main2-1-list1-h2{
	font-size: 16px;
	color: #999;
	margin-top: 50px;
}

.main2-1-bottom{
	margin-top: 21px;
}
.main2-1-bottom dl{
	margin:0;
}

.main2-1-bottom dd{
	position: relative;
	padding-left: 40px;
	font-size: 18px;
	color: #222;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	height: 60px;
	line-height: 60px;
	padding-right: 120px;
	background-repeat: no-repeat;
	background-position: 21px center;
	background-image: url(../images/jiao2.png);
	background-color: #f3f7f9;
}
.main2-1-bottom dd+dd{
	margin-top: 15px;
}
.main2-1-bottom dd a:hover{
	color: #044c87;
}
.main2-1-bottom dd span.span_002{
	position: absolute;
	right: 24px;
	top: 0;
	font-size: 16px;
	color: #999;
}

.main2-1-bottom-zp{
	margin-top: 21px;
}
.main2-1-bottom-zp dl{
	margin:0;
}

.main2-1-bottom-zp dd{
	position: relative;
	padding-left: 40px;
	font-size: 18px;
	color: #222;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	height: 60px;
	line-height: 60px;
	padding-right: 120px;
	background-repeat: no-repeat;
	background-position: 21px center;
	background-image: url(../images/jiao2.png);
	background-color: #f3f7f9;
}
.main2-1-bottom-zp dd+dd{
	margin-top: 13px;
}
.main2-1-bottom-zp dd a:hover{
	color: #044c87;
}
.main2-1-bottom-zp dd span.span_002{
	position: absolute;
	right: 24px;
	top: 0;
	font-size: 16px;
	color: #999;
}




.main-over{
	overflow: hidden;
}


.main2-2-list{
	background-color: #f3f7f9;
	padding: 35px;
	height: 568px;
}
.main2-2-list dl{
	margin:0;
	position: relative;
}
.main2-2-list dl::before{
	position: absolute;
	width: 1px;
	top: 7px;
	bottom: 0;
	background-color: #c4deec;
	content:"";
	left: 8px;
}
.main2-2-list dd{
	padding-left: 37px;
	position: relative;
	z-index: 50;
}
.main2-2-list dd::before{
	position: absolute;
	width: 18px;
	height: 18px;
	content:"";
	background-image: url(../images/main2-2-ico1.png);
	background-size: 100%;
	left: 0;
	top: 7px;
}
.main2-2-list dd+dd{
	margin-top: 24px;
}


.main2-2-list_1 .main2-2-h2{
	height: auto;
}

.main2-2-list_1.main2-2-list dd+dd{
	margin-top: 32px;
}





.main2-2-h1{
	width: 110px;
	height: 32px;
	line-height: 32px;
	font-size: 16px;
	color: #fff;
	background-color: #7bb6d8;
	border-radius: 4px;
	text-align: center;
}
.main2-2-h2{
	font-size: 18px;
	color: #222;
	line-height:1.8;
	height: 3.6em;
	overflow: hidden;
	margin-top: 10px;
}
.main2-2-h2 a:hover{
	color: #044c87;
}

.main3{
	padding: 60px 0 100px;
}
.main-hua{
	margin-top: 7px;
}
.main-hua img{
	display: block;
	margin:0 auto;
}


.main3-list dl{
	margin:0;
}

.main3-list dd{
	float: left;
	width: 189px;
	overflow: hidden;
	position: relative;
	height: 413px;
	transition: width .3s;
	padding-left: 188px;
	border-left: 1px solid #fff;
}
.main3-list dd.cur{
	width: 930px;
}
.main3-title{
	position: absolute;
	width: 190px;
	left: 0;
	top: 0;
	height: 413px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	cursor: pointer;
}

.main3-title span{
	position: absolute;
	width: 1em;
	font-size: 24px;
	color: #fff;
	left:20px;
	bottom: 22px;
	line-height: 1.2;
	z-index: 50;
}
.main3-title::before{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content:"";
	background-color: #000;
	opacity: 0.33;
	z-index: 5;
}
.main3-title::after{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content:"";
	background-repeat: repeat-x;
	background-position: left bottom;
	background-image: url(../images/hei1.png);
	transition: opacity .3s;
	z-index: 15;
}
dd.cur .main3-title::after,
.main3-title:hover::after{
	opacity: 0;
}

.main .about-title2{
	font-size: 32px;
	color: #083961;
}


.main3-dd{
	height: 413px;
	background-color: #f3f7f9;
	width: 741px;
	padding: 50px 35px 0;
}


.main3-dd-h1{
	font-size: 24px;
	color: #083961;
	font-weight: bold;
}


.main3-dd-p{
	font-size: 16px;
	color: #666;
	line-height: 2;
	height: 14em;
	overflow: hidden;
	margin-top: 20px;
}



.more11 a{
	font-size: 16px;
	color: #666;
	display: inline-block;
}
.more11 a::after{
	display: block;
	width: 100%;
	height: 1px;
	background-color: #b3caab;
	content:"";
	margin-top: 5px;
}
.more11 a:hover{
	color: #044c87;
}
.more11 a img{
	margin-top: -3px;
	margin-left: 4px;
}





.main4{
	padding: 70px 0 60px;
	background-image: url(../images/main4-bg.jpg);
	position: relative;
}
.main4::before{
	height: 123px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/main4-line.png);
	content:"";
	position: absolute;
	width: 100%;
	left: 0;
	top:300px;
	z-index: 10;
}
.main4 .container{
	position: relative;
	z-index: 30;
}
.mm50{margin-top: 50px;}

.main4-list1{
	padding: 0 60px;
}
.main4-list1 dl{
	margin:0;
}

.main4-list1 dd{
	float: left;
	width: 16%;
}
.main4-list1 dd+dd{
	margin-left: 5%;
}

.main4-list1 dd:nth-child(even){
	margin-top: 140px;
}

.main4-pic .imgbox_a{
	border-radius: 50%;
	border:1px solid #7bb6d8;
	background-repeat: no-repeat;
	background-position: center 0;
	background-size: cover;
}
.main4-con{
	position: relative;
	text-align: center;
	margin-top: 35px;
}
.main4-h1{
	font-size: 22px;
	color: #222;
	font-weight: bold;
}
.main4-h2{
	font-size: 16px;
	color: #666;
	margin-top: 10px;
}


.fmain4 .flex-direction-nav .flex-prev {
  left: -70px;
  width: 56px;
  height: 56px;
  margin-top: 0;
  top:55px;
  background-image: url(../images/b-left2.png);
}

.fmain4 .flex-direction-nav .flex-next {
  right: -70px;
  width: 56px;
  height: 56px;
  margin-top: 0;
  top: 55px;
  background-image: url(../images/b-right2.png);
}






.main5{
	padding: 80px 0;
}


.main5-div{
	width: 48.5%;
}

.main5-tui{
	border-bottom: 1px solid #eaeaea;
}
.main5-tui-pic{
	width: 346px;
	margin-right: 40px;
}

.main5-tui-pic .imgbox_a{
	padding-bottom: 68.786%;
}

.main5-tui-con{
	overflow: hidden;
}

.main5-h1{
	font-size: 20px;
	color: #222;
	line-height: 1.6;
	height: 3.2em;
	overflow: hidden;
	font-weight:bold;
}
.main5-h1 a:hover{
	color: #083961;
}
.main5-p{
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	height: 5.4em;
	overflow: hidden;
	margin-top: 20px;
}
.main5-h2{
	font-size: 16px;
	color: #666;
	margin-top: 25px;
}
.main5-div .main2-1-bottom{
	margin-top: 30px;
}
.main5-div .main2-1-bottom dd+dd{
	margin-top: 25px;
}
.main5-div .main2-1-bottom dd{
	background-color: #fff;
	height: 22px;
	line-height: 22px;
	padding-left: 20px;
	background-position: 0 center;
	padding-right: 100px;
}
.main5-div .main2-1-bottom dd span.span_002{right: 0;}





.main6{
	padding: 80px 0 100px;
	background-image: url(../images/main6-bg.jpg);
	background-position: center bottom!important;
	background-color: #ecf3f7;
}


.main6-div{
	float: left;
	width: 31%;
}
.main6-div:nth-child(2){
	margin:0 3.5%;
}


.main6-pic .imgbox_a{
	padding-bottom: 31%;
}


.main6-list1{
	background-color: #fff;
	padding: 25px;
	height: 282px;
}


.main6-list1 dl{
	margin:0;
}

.main6-list1 dd{
	border-bottom: 1px solid #efefef;
	padding-bottom: 13px;
	font-size: 18px;
	color: #222;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.main6-list1 dd+dd{
	margin-top: 25px;
}
.main6-list1 dd a:hover{
	color: #083961;
}

.main6-list2{
	background-color: #fff;
	padding: 8px 25px 0;
	height: 282px;
}
.main6-list2 dl{
	margin:0;
}

.main6-list2 dd{
	border-bottom: 1px solid #efefef;
	padding: 15px 0;
}
.main6-h1{
	font-size: 18px;
	color: #222;
}
.main6-h1 a:hover{
	color: #083961;
}

.main6-h2{
	font-size: 16px;
	color: #999;
	margin-top: 5px;
}




/**************************************************************/
/*main-over*/





/*footer-start*/
/**************************************************************/

#footer{
	background-image: url(../images/footer-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #d0e3f2;
}

.footer-1{
	padding: 40px 0;
	border-top: 2px solid #b5d1e6;
}

.er{
	font-size: 13px;
	color: #676f76;
	text-align: center;
}
.er img{
	display: block;
	width: 129px;
	margin:0 auto 15px;
}

.foo1-logo{
	width: 442px;
	margin-top: 34px;
	margin-right: 260px;
}
.foo1-logo img{
	display: block;
	width: 100%;
}


.foo1-p{
	overflow: hidden;
	font-size: 16px;
	color: #676f76;
	line-height: 2.2;
	padding-top:25px;
}

.foo1-p p{margin:0;}






.footer-2{
	background-color: #a2c2da;
	padding: 20px 0;
	font-size: 14px;
	color: #54626d;
	line-height: 1.8;
}



/**************************************************************/
/*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{
	margin:0;
	max-height: calc(100vh - 129px);
	overflow-y: auto;
}
.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;
}
.nav-2>ul>li>ul>li>ul{
	padding: 5px 0;
}
.nav-2>ul>li>ul>li>ul>li{
	font-size: 14px;
	padding-left: 50px;
	width: 100%;
	color:#666;
}
.nav-2>ul>li>ul>li>ul>li+li{
	margin-top: 7px;
}
.nav-2>ul>li>ul>li>ul>li>ul{
	padding: 10px 0 5px;
}
.nav-2>ul>li>ul>li>ul>li>ul>li{
	font-size: 14px;
	padding-left: 30px;
	width: 100%;
	color:#666;
}
.nav-2>ul>li>ul>li>ul>li>ul>li+li{
	margin-top: 7px;
}
/*.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: 18px;
    width: 18px;
}
.nav-2-form .form-control{padding-right: 50px;}
.logo-2 {
   font-size: 0;
   width: 300px;
   margin-left: 15px;
   margin-top:12px;
}
.logo-2 a{
	display: block;
	width: 100%;
}
.logo img{
	display: block;
	width: 100%;
}
.logo-2 img{
	display: block;
	width: 100%;
}
.menu2{
	margin-right: 15px;
	height: 73px;
	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{
	height: 510px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}


.banner-2 .container{
	position: relative;
	height: 100%;
}

.banner-2-wen{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 15;
}
.banner-2-wen::before{
	position: absolute;
	width: 623px;
	height: 157px;
	right:1085px;
	bottom: 0;
	content:"";
	background-image: url(../images/banner-2-title-bg.png);
	background-repeat: no-repeat;
	background-position: right center;
	z-index: 5;
}
.banner-2-h1{
	font-size: 36px;
	color: #222;
	height: 74px;
	line-height: 74px;
	z-index: 15;
	position: relative;
	font-family:"jbs";
}

.banner-2-h2{
	font-size: 32px;
	color: #fff;
	opacity: 0.32;
	height:83px;
	line-height: 83px;
	position: relative;
	z-index: 15;
	text-transform: uppercase;
	font-family:"jbs";
}

.erji-top{
	background-color: #fff;
	background-image: url(../images/erji-top.png);
	background-repeat: repeat-x;
	background-position: left bottom;
}

.nav{
	margin-top: 24px;
}
.erji-nav dl{
	margin:0;
}

.erji-nav>dl>dd{
	float: left;
}
.erji-nav>dl>dd+dd{
	margin-left: 50px;
}

.erji-nav>dl>dd>a{
	display: block;
	font-size: 18px;
	color: #333;
	height: 66px;
	line-height:66px;
	position: relative;
}
.erji-nav>dl>dd>a::after{
	position: absolute;
	width: 2em;
	height: 3px;
	background-color: #044c87;
	content:"";
	left: 50%;
	margin-left: -1em;
	bottom: 0;
	opacity: 0;
	transition: opacity .3s;
}
.erji-nav>dl>dd:hover>a::after,
.erji-nav>dl>dd.cur>a::after{
	opacity: 1;
}
.mianbaoxie{
	background-image: url(../images/m1.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	padding-left:26px;
}
.mianbaoxie dl{
	margin:0;
}

.mianbaoxie dd{
	float: left;
	position: relative;
	font-size: 16px;
	color: #333;
	height: 66px;
	line-height:66px;
}
.mianbaoxie dd+dd{
	padding-left: 34px;

}
.mianbaoxie dd+dd::before{
	position: absolute;
	width: 34px;
	height: 66px;
	left: 0%;
	top: 0;
	content:"";
	background-image: url(../images/m2.png);
	background-repeat: no-repeat;
	background-position: center;
}
.mianbaoxie dd a:hover,
.mianbaoxie dd span{
	color: #044c87;
}

.erji-bottom{
	background-color: #f8f8f8;
	padding: 60px 0 100px;
	overflow: hidden;
}

.erji-title-h1{
	font-size: 36px;
	color: #222;
}

.news-list dl{
	margin:0;
}

.news-item{
	border-bottom: 1px solid #ebebeb;
	padding: 35px 0;
}

.news-pic{
	width: 400px;
	margin-left: 150px;
}

.news-pic .imgbox_a{
	padding-bottom: 62.5%;
}

.news-con{
	overflow: hidden;
	padding-top: 20px;
}

.news-con-h1{
	font-size: 22px;
	color: #333;
	font-weight: bold;
	line-height: 1;
}

.news-con-h2{
	font-size: 22px;
	color: #333;
	font-weight: bold;
	margin:25px 0;
}

.news-con-p{
	font-size: 16px;
	color: #999;
	line-height: 2;
	height: 4em;
	overflow: hidden;
}



.news-item:hover{
	border-bottom: 1px solid #7bb6d8;
}

.news-item:hover .news-con-h2{
	color: #7bb6d8;
}

.fenye{
	margin-top: 80px;
	text-align: center;
}

.fenye ul{
	margin:0;
}

.danpian{
    	background-color: #fff;
    padding: 25px 25px;
}

.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;
	line-height: 2;
	padding: 20px 0 20px;
	
}
.danpian-con *{
	font-size: 16px!important;
	line-height: 2!important;
}
.danpian-con img{
	display: block;
	margin:15px auto;
}
.danpian-con img[src*="fileTypeImages/icon"] {
    display: inline-block;
    margin: 0;
}

.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:#666;
}

.dan-a a:hover{
	color:#7bb6d8;
}
.mm30{
	margin-top: 30px;
}
.tongzhi-list dl{
	margin:0;
}

.tongzhi-list dd{
	position: relative;
	padding-left: 25px;
	font-size: 20px;
	color: #333;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	height: 81px;
	line-height: 80px;
	padding-right: 125px;
	border-bottom: 1px solid #e6e8ea;
	background-repeat: no-repeat;
	background-position: 1px center;
	background-image: url(../images/jiao1.png);
}

.tongzhi-list dd a:hover{
	color: #7bb6d8;
}
.tongzhi-list dd span.span_001{
	position: absolute;
	right: 12px;
	top: 0;
	font-size: 18px;
	color: #999;
}

.zhaopin-table{
	margin-bottom: 0!important;
	background-color: #fff;
	box-shadow: 0 0 20px 1px rgba(0,0,0,0.03);
}

.zhaopin-table table.table tr th{
	font-size: 22px;
	color: #fff;
	text-align: center;
	background-color: #7bb6d8;
	height: 70px;
	font-weight: normal;
	vertical-align: middle;
	border:0;
}

.zhaopin-table table.table tr td{
	font-size: 18px;
	color: #666;
	text-align: center;
	height:80px;
	font-weight: normal;
	vertical-align: middle;
}

.zhaopin-table table.table tr td a{
	display: inline-block;
	font-size: 16px;
	color: #064d97;
	padding-bottom: 5px;
	border-bottom: 1px solid #b7cbe1;
}

.zhaopin-table table.table tr td a:hover{
	font-weight: bold;
}

.wenti-item{
	border-bottom: 1px solid #ecedef;
	padding: 0px 30px;
	border-radius: 6px;
}
.wenti-item1{
	font-size: 20px;
	color: #333;
	line-height: 1.6;
	position: relative;
	padding: 30px 60px;
	background-image: url(../images/q.png);
	background-repeat: no-repeat;
	background-position: 0 30px;
	cursor: pointer;
}
.wenti-item1::after{
	position: absolute;
	right: 10px;
	top: 35px;
	width: 20px;
	height: 20px;
	background-image: url(../images/wjia.png);
	content:"";
	background-size: 100%;
}
.wenti-item2{
	font-size: 16px;
	color: #999;
	line-height:2;
	padding: 25px 60px;
	padding-right: 0!important;
	display: none;
	background-image: url(../images/ah.png);
	background-repeat: no-repeat;
	background-position: 0 25px;
}

.wenti-item.cur{background-color: #fff;box-shadow: 0 0 20px 1px rgba(0,0,0,0.03);border-bottom:0;}
.wenti-item.cur .wenti-item1::after{
	background-image: url(../images/wjian.png);
}
.wenti-item.cur .wenti-item1{background-image: url(../images/qh.png);color:#7bb6d8;border-bottom: 1px solid #ecedef;}
.wenti-item1:hover{
	color:#7bb6d8;
}

.lingdao-bg{
	background-image: url(../images/lingdao-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.lingdao-list dl{
	margin:0;
	margin-left: -3%;
}

.lingdao-list dd{
	float: left;
	width: 17%;
	margin-left: 3%;
	margin-top: 3%
}

.lingdao-list dd:first-child{
	margin-left: 33%;
}
.lingdao-list dd:first-child+dd+dd{
	clear: left;
	margin-left: 13%;
}

.lingdao-list2.lingdao-list dd:first-child{
	margin-left: 3%;
}

.lingdao-list2.lingdao-list dd:first-child+dd+dd{
	clear: none;
	margin-left: 3%;
}


.lingdao-item .imgbox_a{
	padding-bottom: 140.85%;
}

.lingdao-item-con{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.34);
	z-index: 15;
	padding: 15px 30px;
}

.lingdao-item-h1{
	font-size: 20px;
	color: #fff;
	line-height: 1;
	font-weight: bold;
}
.lingdao-item-h2{
	font-size: 16px;
	color: #fff;
	margin-top: 8px;
}


.daohang-div{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-left: 110px;
	padding-top: 64px;
	position: relative;
}
.daohang-div::before{
	position: absolute;
	width: 1px;
	background-color: #fff;
	opacity: 0.5;
	height: 170px;
	top: 0;
	content:"";
	left: 55px;
}
.daohang-div+.daohang-div{
	margin-top: 50px;
}

.daohang-title{
	position: absolute;
	width: 110px;
	font-size: 32px;
	color: #fff;
	text-align: center;
	padding: 185px 35px 0;
	z-index: 10;
	left: 0;
	top: 0;
	line-height: 1.2;
	font-weight: bold;
}

.daohang-dl{
	background-color: #fff;
	border-top-left-radius: 25px;
	padding: 30px 65px;
	min-height: 415px;
}

.daohang-dl dl{
	margin:0;
	margin-left: -3%;
}

.daohang-dl dd{
	float: left;
	width: 30.3333%;
	margin-left: 3%;
	margin-top: 3%;
}

.daohang-dl dd>a{
	display: block;
	padding-bottom: 25px;
	border-bottom: 1px solid #dedede;
	font-size: 20px;
	color: #333;
	position: relative;
	padding-right: 25px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.daohang-dl dd>a::after{
	position: absolute;
	right: 10px;
	content:"+";
	top: -2px;
}

.daohang-dl dd>a:hover{
	color: #064d97;
	border-color: #064d97;
}

.pp50{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.about1{
	background-image: url(../images/about1-bg.jpg);
	padding: 120px 0 170px;
}


.about-title1{
	font-size: 36px;
	color: rgba(4,76,135,0.12);
	text-transform: uppercase;
	font-family:"jbs";
	line-height: 1;
}

.about-title2{
	font-size: 36px;
	color: #222;
	font-family:"jbs";
	line-height: 1.2;
	margin-top: 5px;
}
.about-title2 i{
	font-family:"hs";
	font-style: normal;
	font-size: 1.44em;
	padding: 0 7px;
}

.about1-div-wp{
	padding-left: 225px;
	position: relative;
}
.about1-div-wp .about-title{
	position: absolute;
	left: 0;
	top: -35px;
	width: 100px;
}
.about1-div-wp .about-title1{
	writing-mode: vertical-rl;
  writing-mode: tb-rl;
  display: inline-block;
}

.about1-div-wp .about-title2{
  display: inline-block;
  width: 1em;
  text-align: center;
  margin-top: 0;
  margin-left: 5px;
} 
.about1-div-wp .about-title2 i{
	padding: 0
}





.about1-div{
	position: relative;
}
.about1-div::before{
	position: absolute;
	width: 105px;
	height: 105px;
	background-image: url(../images/about1-ico.png);
	content:"";
	background-size: 100%;
	right: 0;
	top: -40px;
}
.about1-h1{
	font-size: 38px;
	color: #222;
	font-family:"jbs";

}

.about1-p{
	font-size: 18px;
	color: #666;
	line-height: 2;
	margin-top:40px;
}
.about1-p p{margin:0;}


.about-more{
	position: absolute;
	width: 18px;
	text-align: center;
	font-size: 16px;
	left: 8px;
	bottom: -85px;
}
.about-more::before{
	position: absolute;
	width: 1px;
	height: 53px;
	content:"";
	left: 49%;
	top: -66px;
	background-color: #b3caab;
}
.about-more img{
	display: block;
	margin:7px auto 0;
}

.about-more a:hover{
	color: #b3caab;
}


.about2{
	background-image: url(../images/about2-bg.jpg);
	padding: 70px 0 130px;
}

.about2-div{margin-top: 60px;}

.about2-item-wp{
	width: 47%;
}

.about2-item{
	border-bottom: 1px solid #dcdedf;
	padding: 30px 0;
}

.about2-item1{
	font-size: 30px;
	color: #0062b2;
	line-height: 30px;
	padding-left: 30px;
	border-left: 3px solid #878d92;
}

.about2-item2{
	overflow: hidden;
	text-align: right;
}

.about2-item2-name{
	font-size: 24px;
	color: #222;
	line-height: 30px;
}
.about2-item2-name+.about2-item2-name{
	margin-top: 30px;
}