
/*--------------------------------基础设置--------------------------------*/
body {
	font-size: 14px;
	background: #FFF;}
	
/*页面宽度*/
.layout {width: 1200px;}
/*页面宽度（header）*/
.layoutHd{width: 1200px;}
/*页面宽度（首页，有间隙）*/
.layoutHome{
	overflow:hidden;
	margin-bottom:40px !important;padding: 20px;
	width: 1160px;
	background-color:#fafafa;}

/*页面宽度（子页面）*/
.layoutSub {
	width: 1160px;padding:10px 20px;
	margin-top:-80px !important;
	background-color: #fff;
	border-top-left-radius: 20px;
	-webkit-border-top-left-radius: 20px;
	-moz-border-border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-border-top-right-radius: 20px;
	z-index:9;}

	
/*子页面板(内容、新闻、菜单)*/	
.panelSub,.panelNews,.panelMenu{
	}


/*a标签*/
a {color: #666;}
a:visited {}
a:hover {color: #C00;}


/*--------------------------------页面设置--------------------------------*/

/*--------头部--------*/
#header {
	position:relative;
	width: 100%;height: 130px;	
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 900;}
	

	
/*logo*/
#header .hdLogo {
	position: relative;float: left;}

#header .hdLogo img {
	display: block;float: left;	
	margin-top: 10px;}
	
/*#header .hdOther {
	position: relative;float: right;
	margin-top: 30px;}*/
	

/*--------导航--------*/

/*导航背景(通栏)*/
#header .navbg {
	position: absolute;
	top: 80px;
	width: 100%;height: 50px;
	background-color: #fff;}
	
/*导航*/	
/*.navBar {
	position: absolute;display: table;margin: 0 auto;
	top: 80px;
	background-color: #fff;
	z-index: 2;}*/
	
/*所有导航项UL样式*/		
/*.navBar ul {
	position: absolute;
	opacity: 0;visibility: hidden;
	width: 100%;
	border: 1px solid #ddd;
	background-color: #fff;
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	box-shadow: 0px 15px 10px -15px #aaa;
	-moz-box-shadow: 0px 15px 10px -15px #aaa;
	-webkit-box-shadow: 0px 15px 10px -15px #aaa;
	z-index: 999;}*/


/*二级导航显示动画*/
/*.navBar ul {top: 60%;}		
.navBar li:hover > ul {
	opacity: 1;visibility: visible;
	top: 100%;}*/
	
/*三级导航显示动画*/		
/*.navBar ul ul {
	top: 0%;left: 80%;}
.navBar ul li:hover > ul {
	opacity: 1;visibility: visible;
	top: 0%;left: 100%;}*/
	
	
/*所有导航项li样式*/	
/*.navBar li {position: relative;float: left;}*/

/*二级及以下导航*/	
/*.navBar ul li {	position: relative;float: none;}*/

/*一级a标签*/		
.navParent > a {
	display: block;
	padding: 0 40px;
	line-height: 50px;
	color: #333;font-size: 18px;text-align: center;}
.navParent:hover > a, li.active a {
	padding: 0 40px;
	color: #004a99;}
	
/*一级a标签的箭头*/		
.navParent > a i {
	position: absolute;display: inline-block;
	margin-left: 10px;
	transition: transform 0.3s ease-out;
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-moz-transition: -moz-transform 0.3s ease-out;}
.navParent:hover > a i {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);}
	
/*当前选中样式*/		
.navParent > a.on {color: #004a99;font-weight: bold;}

/*二级导航a标签*/	
.navParent ul li:hover > a {color: #fff;
	background-color: #5694e4;}
/*二级及以下导航a标签*/		
.navParent ul li a {
	display: block;
	margin: 10px;
	line-height: 50px;
	color: #333;text-decoration: none;text-align: center;font-size: 16px;
	background-color: #e5f1fc;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;}
.navParent ul li a:hover {
	color: #fff;
	background-color: #5694e4;}

.navParent ul li a i {
	position:absolute;
	right:20px;}

	
/*三级导航Ul*/	
.navBar ul ul {}
/*三级导航Ul*/
.navBar ul ul a:hover {background-color: #4082d8}
	
	
/*--------左侧菜单--------*/
.panelMenu{}
.panelMenu .title{
	text-align:left;
	font-size:20px;
	color:#2972d2;
	line-height:50px;
	font-weight:bold;}
	
ul.menu {margin-bottom: 40px;}

/*一级菜单*/	
ul.menu > li {
	line-height: 50px;
	font-size: 16px;}
ul.menu > li a {
	position: relative;display:block;	
	padding-left:16px;
	border:1px solid #ddd;border-top:none;}
ul.menu > li:first-child{border-top:1px solid #ddd;}	

/*一级菜单i标签*/		
ul.menu > li a i {
	position:absolute;
	right:20px;
	color: #ddd;}

ul.menu > li a:hover {
	color: #2972d2;
	border-left:4px solid #2972d2;
	background-color:#eef4fc;}
ul.menu > li a:hover i {color: #5672f6;}
ul.menu > li a.active {
	color: #2972d2;
	border-left:4px solid #2972d2;
	background-color:#eef4fc;}
ul.menu > li a.active i {color: #2972d2;}

/*二级菜单*/
ul.menu ul {
	display: none;
	background-color:#f3f8ff;}
ul.menu ul li a{padding-left:40px;}
ul.menu ul li a:hover{
	border-left:4px solid #ddd;}

ul.menu ul li a.active {
	color: #2972d2;
	border-left:4px solid #ddd;}


/*--------尾部--------*/
#footer {
	padding: 16px 0;
	background-color: #3d3d3d;}
#footer p.copyright {
	line-height: 30px;text-align: center;color: #d5d5d5;}
#footer a {color: #d5d5d5;}


	
/*---------首页banner---------*/
.bannerHome {
	position: relative;clear: both;
	background-color: #296aec;
	margin-bottom: 40px;}
	
/*通栏轮播图高度*
.slideBox {}
.slideBox .bd img {
	width: 100%;}


/*------子页banner------*/
.bannerSub {
	position: relative;overflow: hidden;
	background-color: #367BF0;}
.bannerSub img {
	display: block;	margin: 0 auto;
	width: 100%;}
	

/*--------------------------------组件设置--------------------------------*/
	
/*--------首页标题--------*/
.titleBigHome {
	position: relative;margin-bottom: 30px;
	text-align: center;
	overflow:hidden;}
.titleBigHome h3 {
	float:left;line-height:38px;height:40px;
	font-size:20px;color:#004ab9;
	border-bottom:2px solid #004ab9;}
/*.titleBigHome span {
	display: inline;
	padding-left: 12px;
	font-size: 16px;font-family: Arial, Helvetica, sans-serif;font-weight: normal;color: #999;}*/
	

/*--------子页标题--------*/
.titleBigSub {
	overflow:hidden;margin-bottom: 20px;
	text-align: center;
	border-bottom:1px solid #ddd;}
.titleBigSub h3 {
	float:left;display: inline;
	font-size: 20px;line-height:39px;}



/*--------------------------------更新module样式--------------------------------*/

/*调整面包屑显示位置*/	
.crumbs {
	top:-40px;padding-right:60px;
	text-align:right;	
	z-index:10;}


/*调整首页新闻图片尺寸*/
ul.listNews-3 img{
	width:100px !important;height:100px !important;}
	
	
/*调整"模块_内容-9“图片尺寸*/
.mdlContent-9{
	padding:20px;
	width:1160px;
	background-color:#fafafa;}
.imgtxt-7 img{height:140px !important;}

/*调整"列表页_内容-5"*/
/*隐藏标题*/
.listImg-5 h3{display:none;}
/*设置简介高度*/
.listImg-5 h4{height:80px;}
	
/*新闻列表页标题加下划线*/	
.tmpNews-6 .titleTemp{
	border-bottom:1px solid #ddd;}


/*新闻标题向下移动*/	
.cryNews-1 .titleCry h3{margin-top:30px}
	
/*新闻列表标题去粗体*/	
ul.listNews-5 span.titleNews{
	font-weight:normal !important;}

/*内容页标题字体加大*/		
.cryNews-1{margin-top:40px;}	
.cryContent-1 .titleCry h3{font-size:24px !important;}		




/*--------------------------------定制化样式--------------------------------*/

/*首页新闻-3（文字列表）*/
.newsHome-3{
	position:relative;overflow:hidden;
	margin-bottom:40px;}

.newsHome-3 .listNews_l{
	float: left;margin-right:2%;
	width: 32%;height:330px;
	background-color:#fafafa;}		

	
.newsHome-3 .listNews_c{
	float: left;
	width: 32%;height:330px;
	background-color:#fafafa;}		


.newsHome-3 .listNews_c .contentTemp{padding-top:10px;}
.newsHome-3 .listNews_c .contentTemp img{/*width:100%;height:200px;*/}
.newsHome-3 .listNews_c .contentTemp .titleImg{
	padding-top:10px;
	text-align:center;font-size:16px;}	




.newsHome-3 .listNews_r{
	float: right;
	width: 32%;height:330px;
	background-color:#fafafa;}	

.newsHome-3 .titleTemp{height:38px;line-height:38px;border-bottom:2px solid transparent;margin:10px 20px;}
.newsHome-3 .titleTemp h3{float:left;font-size:20px;color:#004ab9;border-bottom:2px solid #004ab9;}	
.newsHome-3 .contentTemp{clear:both;overflow:hidden;padding:0 20px;}

/*公司概况-企业荣誉*/
.listImg-2 img {
  height: 216px!important;
}
	
	
/*主参控股企业*/
a.suncmpy{
	display:block;
	color:#333;
	font-size:16px;
	padding-bottom:20px;}	
a.suncmpy:hover{
	color:#C00;}	
	
	
/*新闻tab切换*/


ul.tabNewsjt{
	position:absolute;
	top:10px;left:160px;
	}
ul.tabNewsjt li{
	float:left;padding:0 6px;
	color:#666;
	cursor:pointer;}
ul.tabNewsjt li.active{color:#c00;}

a.jyly{
	font-size:16px;}
a.jyly:hover{}
.jyly{
	width: 100%!important;
	height: 50px;
	padding-bottom: 14px;
}
.jyly img{
	width: 344px;
}

.location-name i{
	font-size:62px !important;
}

.inews-r h3{
	height: 28px !important;
	overflow: hidden;
	width:420px !important; 
	white-space: nowrap; 
	text-overflow: ellipsis;
}

/*0919*/
.dj-tit{
	width:130px;
	position: absolute;
	z-index:9;
	left:50%;
	margin-left:-320px;
	top:400px;
	display: block;
	height: 40px;
	line-height:38px;
	font-size:18px;
	background-color: #222;
	color:#fff;
	border-radius: 20px;
}
.nav-icons a{
	cursor: pointer;
}
.weixin{
	position: relative;
}
.gzh{
	display: block;
	position:absolute;
	z-index:99;
	top:60px;
	right:10px;
	text-align: center;
}
.gzh img{
	display: block;
	width:100px !important;
	height: 100px !important;
	padding:5px 5px 0 5px !important;
	background-color: #fff;
	border-radius: 4px 4px 0 0;
}
.gzh span{
	display:block;
	background-color: #fff;
	height: 24px;
	line-height:24px;
	font-size:12px;
	border-radius: 0 0 4px 4px;
	color:#333;
}
.gzh::before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left:5px solid transparent;
	border-right:5px solid transparent;
	border-bottom: 8px solid #fff;
	margin-left:84px;
}

.sec-4 ul li .info{
	bottom:40% !important;
}
.sec-4 ul li .info h2{
	font-size:32px !important;
}