@charset "UTF-8";
/*
********************************外层框架 start********************************
*/
/*头部开始*/
.top {
	position: fixed;
	width: 100%;
	height: 90px;
	background: #fff;
	z-index: 9;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.topR {
	border-radius: 3px;
}

.logo {
	padding: 16px 0;
}

.logo a img {
	display: block;
	height: 61px;
}

.topR {
	padding: 20px 0;
}

.topTel {
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #666;
}

.topTel span {
	font-size: 18px;
	font-weight: bold;
	color: #125fc8;
}

.topc {
	margin-left: 80px;
}

/*头部结束*/
/*menu开始*/
.menuDl {
	position: relative;
	margin: 0 -30px;
}

.menuDl:after {
	display: block;
	content: "";
	clear: both;
}

.menuDl dd {
	display: inline;
	float: left;
	position: relative;
	z-index: 3;
	padding: 0 30px;
}

.menuDl dd::before {
	display: block;
	content: "";
	position: absolute;
	width: 0;
	height: 14px;
	right: 0;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #e1e1e1;
	top: 50%;
	margin-top: -7px;
}

.menuDl dd:nth-last-child(2)::before {
	display: none;
}

.menuDl dd span a {
	display: block;
	height: 90px;
	overflow: hidden;
	line-height: 90px;
	color: #333;
	font-size: 16px;
	position: relative;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.menuDl dd.hover span a {
	color: #125fc8;
}

.menuDl dd div.ej {
	position: absolute;
	left: -30%;
	top: 90px;
	width: 160%;
	padding-top: 20px;
	visibility: hidden;
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	opacity: 0;
	transition: all 500ms 0s;
	-webkit-transition: all 500ms 0s;
}

.menuDl dd div.ej .con {
	background: #FFF;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
	border-radius: 5px;
	padding: 10px 0;
}

.menuDl dd div.ej .con i {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -10px;
	top: 0;
}

.menuDl dd div.ej .con i:before {
	display: block;
	content: '';
	position: absolute;
	border: 10px solid transparent;
	border-bottom-color: #fff;
	left: 0;
	top: 0;
	z-index: 2;
}

.menuDl dd div.ej .con i:after {
	display: block;
	content: '';
	position: absolute;
	border: 10px solid transparent;
	border-bottom-color: rgba(0, 0, 0, .08);
	left: 0;
	top: -1px;
}

.menuDl dd div.ej .con a {
	display: block;
	padding: 10px 5px;
	line-height: 20px;
	overflow: hidden;
	text-align: center;
	font-size: 14px;
	color: #333;
}

.menuDl dd div.ej .con a:hover {
	color: #125fc8;
;
}
.menuDl dd:hover div.ej {
	visibility: visible;
	transform: translateY(0);
	-webkit-transform: translateY(0px);
	opacity: 1;
}


.subMenuDiv {
	display: none;
	width: 100%;
	position: absolute;
	/*left: 0px;*/
	top: 90px;
	/*opacity: 0;*/
	z-index: 1;
	padding: 0 30px;
}

.menuDl dd.hover .subMenuDiv {
	z-index: 3;
}

.menuDl dt {
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: 25px;
	z-index: 2;
}

.menuDl dt::after {
	display: block;
	content: "";
	position: absolute;
	width: 10px;
	height: 100%;
	top: 0;
	left: 50%;
	margin-left: -5px;
	background: #125fc8;
}

.subMenu_ul {
	width: 1000px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

.subMenuShadow {
	height: 100%;
	overflow: hidden;
	position: absolute;
	background: rgba(0, 0, 0, 0.6);
	left: 50%;
	top: 0px;
	z-index: 1;
	width: 50000px;
	margin-left: -25000px;
}

.subMenu_ul li {
	overflow: hidden;
	height: 50px;
	line-height: 50px;
	position: relative;
	z-index: 2;
	float: left;
	display: inline;
	margin: 0px 15px;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menuDl dd.hover .subMenu_ul li {
	opacity: 0;
	-webkit-animation: liMove 0.3s linear forwards;
	-o-animation: liMove 0.3s linear forwards;
	animation: liMove 0.3s linear forwards;
}

@keyframes liMove {
	0% {
		transform: translateY(-110%);
		opacity: 0;
	}

	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

.menuDl dd.hide .subMenu_ul li {
	opacity: 1;
	-webkit-animation: liHIde 0.3s linear forwards;
	-o-animation: liHIde 0.3s linear forwards;
	animation: liHIde 0.3s linear forwards;
}

@keyframes liHIde {
	0% {
		transform: translateY(0px);
		opacity: 1;
	}

	100% {
		transform: translateY(110%);
		opacity: 0;
	}
}

.subMenu_ul li a {
	display: block;
	overflow: hidden;
	font-size: 16px;
	color: #FFFFFF;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.subMenu_ul li a:hover {
	font-weight: bold;
}

.half .subMenu_ul li a {
	font-size: 14px;
}

.subMenu_ul li a span {
	position: relative;
}


.listBg {
	width: 0px;
	height: 0px;
	overflow: hidden;
	background: #fff;
	position: absolute;
	left: 0px;
	top: 0px;
}

.menuBg {
	display: none;
	width: 100%;
	height: 50px;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 100px;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
}

.subMenuDiv.showMenu {
	-webkit-animation: showMenu 0.5s linear forwards;
	-o-animation: showMenu 0.5s linear forwards;
	animation: showMenu 0.5s linear forwards;
}

@keyframes showMenu {
	0% {
		opacity: 0.5
	}

	100% {
		opacity: 1
	}
}

.subMenuDiv.hideMenu {
	-webkit-animation: hideMenu 0.5s linear forwards;
	-o-animation: hideMenu 0.5s linear forwards;
	animation: hideMenu 0.5s linear forwards;
}

@keyframes hideMenu {
	0% {
		opacity: 0.2
	}

	100% {
		opacity: 0
	}
}

/*menu结束*/
/*底部开始*/

.footerBody {
	background: #203e82;
}

.footerBodyR {
	position: relative;
	padding-top: 47px;
}

.footerBodyR::after {
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	top: -54px;
	left: 0;
	bottom: 0px;
	background: rgba(255, 255, 255, 0.03);
}

.footerEwmDl {
	overflow: hidden;
}

.footerEwmDl dd {
	float: left;
	display: inline;
	width: 90px;
	margin-left: 30px;
}

.footerEwmDl dd .con {
	width: 90px;
	background: #FFFFFF;
	overflow: hidden;
}

.footerEwmDl dd img {
	display: block;
	width: 90px;
	height: 90px;
}

.footerEwmDl dd span {
	display: block;
	height: 34px;
	line-height: 34px;
	font-size: 14px;
	color: #ccc;
	text-align: center;
}

.footerBodyL_l {
	padding-top: 24px;
}

.footerTitle {
	height: 48px;
	line-height: 48px;
	font-size: 18px;
	color: #ccc;
	margin-bottom: 8px;
	overflow: hidden;
}

.footerSpan {
	height: 28px;
	line-height: 28px;
	font-size: 14px;
	color: #ccc;
}

.footerBodyL_C {
	margin-left: 85px;
	padding-top: 24px;
}

.footerEwmDl1 {
	overflow: hidden;
}

.footerEwmDl1 dd {
	float: left;
	display: inline;
	width: 90px;
	margin-right: 10px;
}

.footerEwmDl1 dd .con {
	width: 90px;
	background: #FFFFFF;
	overflow: hidden;
	margin: 0 auto;
}

.footerEwmDl1 dd img {
	display: block;
	width: 90px;
	height: 90px;
}

.footerEwmDl1 dd span {
	display: block;
	height: 34px;
	line-height: 34px;
	font-size: 14px;
	color: #ccc;
	text-align: center;
}

.footerBodyL_r {
	padding-top: 32px;
	margin-left: 90px;
	overflow: hidden;
}

.footerBodyL {
	overflow: hidden;
}

.footerBodyL_r {
	padding-top: 32px;
	padding-left: 90px;
	overflow: hidden;
}

.footerDl dd {
	padding: 8px 0;
}

.footerDl dd .con {
	overflow: hidden;
}

.footerDl dd .icon {
	width: 30px;
	height: 30px;
	float: left;
	display: inline;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.footerDl dd .text {
	overflow: hidden;
	line-height: 20px;
	padding: 5px 0 0 20px;
	font-size: 14px;
	color: #CCCCCC;
}

.footerBody1 {
	background: #1d3977;
	height: 50px;
}

.footerBottom {
	text-align: center;
}

.footerBottomT {
	overflow: hidden;
	display: inline-block;
	line-height: 50px;
}

.footerBottomT span {
	float: left;
	display: inline;
	font-size: 14px;
	color: #999;
	margin-right: 10px;
}

.footerBottomT span.span1 {
	padding-left: 28px;
	background: url(../images/iconJ.png) left center no-repeat;
}

.footerBottomT span a {
	color: #999;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.footerBottomT span a:hover {
	color: #fff;
}

.footerBottomB {
	line-height: 50px;
	color: #999;
	font-size: 14px;
}

.footerBottomB a {
	color: #999;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.footerBottomB a:hover {
	color: rgba(255, 255, 255, 1);
}

.footerBodyC {
	overflow: hidden;
}

.footerBody_dl {
	overflow: hidden;
}

.footerBody_dl dd {
	float: left;
	display: inline;
	margin-right: 50px;
}

.footerBody_dl dd .icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 56px;
}

.footerBody_dl dd span {
	display: block;
	height: 56px;
	background-repeat: no-repeat;
	background-position: center center;
}

.footerBody_dl dd .title {
	height: 32px;
	line-height: 32px;
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}

.footerBody_dl dd .text span {
	display: block;
	height: 32px;
	line-height: 32px;
	font-size: 14px;
	color: #B2B2B2;
}

.footerBody_dl dd .text img {
	display: block;
	height: 32px;
}

/*底部结束*/
/* 右边悬浮 start*/

/* 右边悬浮 end*/
/*
********************************外层框架 end********************************
*/
/*
********************************首页样式 start********************************
*/

/*indexBanner开始*/
.indexBanner {
	overflow: hidden;
	height: 700px;
	width: 100%;
	position: relative;
}

.indexBanner .myslide {
	position: relative;
	height: 700px;
}

.indexBanner .myslide a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.colBgBoxw1 {
	position: absolute !important;
	width: 100%;
	height: 100%;
	left: 0% !important;
	top: 0% !important;
}

.colBg {
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
}

.indexBanner .slick-dots {
	position: absolute;
	bottom: 40px;
	width: 100%;
	text-align: center;
}

.indexBanner .slick-dots li {
	width: 10px;
	height: 10px;
	line-height: 9999px;
	text-align: center;
	border: 1px solid #fff;
	display: inline-block;
	margin: 0 5px;
	cursor: pointer;
	border-radius: 16px;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease;
}

.indexBanner .slick-dots li.slick-active {
	background: #fff;
	width: 30px;
}

.indexBanner .text {
	position: absolute;
	width: 571px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.indexBanner .textC1 {
	position: relative;
	height: 243px;
}

.indexBanner .textC1 img {
	display: block;
	margin: 0 auto;
}

.indexBanner .prev {
	position: absolute;
	width: 54px;
	height: 54px;
	border-radius: 100%;
	border: 3px solid #fff;
	z-index: 1;
	left: 5.2083%;
	top: 50%;
	margin-top: -30px;
	background: url(../images/prev.png) center center no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	cursor: pointer;
	display: none;
	opacity: 0;
}

.indexBanner .next {
	position: absolute;
	width: 54px;
	height: 54px;
	border-radius: 100%;
	border: 3px solid #fff;
	z-index: 1;
	right: 5.2083%;
	top: 50%;
	margin-top: -30px;
	background: url(../images/next.png) center center no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	cursor: pointer;
	display: none;
	opacity: 0;
}

.indexBanner .prev:hover,
.indexBanner .next:hover {
	border-color: #0a3c7e;
	background-color: #0a3c7e;
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08);
}

/*indexBanner结束*/
/* 公共 */

/* 公共 */
/*第一通栏start*/
.column1 {
	background: #F5F5F5;
	padding: 37px 0;
}

.column1Dl {
	overflow: hidden;
	margin: 0 -55px;
}

.column1Dl dd {
	float: left;
	display: inline;
}

.column1Dl dd .con {
	margin: 0 55px;
	width: 180px;
}

.column1Dl dd.dd4 .con,
.column1Dl dd.dd5 .con {
	width: 224px;
}

.nubTitle {
	display: block;
	background: #125fc8;
	height: 100px;
	line-height: 100px;
	border-radius: 10px;
	text-align: center;
	font-size: 60px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 5px;
}

.column1Dl dd .text {
	padding: 0 17px;
	line-height: 24px;
	font-size: 14px;
	color: #999;
	text-align: center;
}

/*第一通栏end*/
/*第二通栏start*/
.column2 {
	padding-top: 86px;
	padding-bottom: 90px;
}

.indexTitle .title {
	height: 54px;
	line-height: 54px;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	text-align: center;
	margin-bottom: 10px;
}

.indexTitle .title1 {
	width: 63.888%;
	margin: 0 auto;
	line-height: 24px;
	font-size: 14px;
	color: #999;
	text-align: center;
}

.column2Box {
	overflow: hidden;
	padding-top: 75px;
	margin: 0 -10px;
}

.column2Outer {
	float: left;
	display: inline;
	padding: 10px 0;
}

.column2Outer.rank1 {
	width: 40.625%;
}

.column2Outer.rank2 {
	width: 59.375%;
}

.column2Outer.rank3 {
	width: 60.7639%;
}

.column2Outer.rank4 {
	width: 39.2361%;
	position: relative;
}

.column2OuterC {
	margin: 0 10px;
	background: #FAFAFA;
	padding-top: 32px;
	height: 350px;
	box-sizing: border-box;
	-wekit-box-sizing: border-box;
}

.column2Title {
	height: 36px;
	line-height: 36px;
	font-size: 22px;
	color: #333;
	padding-left: 25px;
}

.column2Itro {
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	color: #999;
	padding-left: 25px;
	margin-bottom: 17px;
}

.column2DL {
	padding: 0 30px;
	display: flex;
	justify-content: center;
}

.column2DL dd {
	float: left;
	display: inline;
	position: relative;
	padding: 5px 0;
	width: 50% !important;
	box-sizing: border-box;
}

.column2DL dd::before {
	display: block;
	content: "";
	position: absolute;
	width: 2px;
	height: 106px;
	right: -1px;
	top: 50%;
	margin-top: -53px;
	background: #F2F2F2;
}

.column2DL dd:last-child::before {
	display: none;
}

.column2Outer.rank1 .column2DL dd {
	width: 100%;
}
.column2Outer.rank1 .column2DL dd:last-child{
	display: none;
	opacity: 0 !important;
}
.column2Outer.rank2 .column2DL dd,
.column2Outer.rank3 .column2DL dd {
	width: 33.333%;
}

.column2DL .con {
	padding: 20px 0;
}

.column2DL .icon {
	width: 60px;
	height: 60px;
	margin: 0 auto;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column2DL .icon span {
	display: block;
	width: 60px;
	height: 60px;
	background-position: center center;
	background-repeat: no-repeat;
}

.column2DL .title {
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	font-weight: bold;
	color: #666;
	text-align: center;
	margin-bottom: 4px;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
}

.column2DL .text {
	padding: 0 15%;
	line-height: 25px;
	font-size: 14px;
	color: #999;
	text-align: center;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
}

/* .column2DL .con:hover {
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
} */

/* .column2DL .con:hover .icon {
	transform: rotateY(180deg) translateY(-5px);
	-webkit-transform: rotateY(180deg) translateY(-5px);
} */
.column2DL .con:hover .title{
	color: #125fc8;
}
.column2DL .con:hover .text{
	color: #125fc8;
}

.column2OuterImg {
	position: absolute;
	right: 55px;
	bottom: 28px;
	left: 0;
	top: 0;
}

.column2OuterImg span {
	display: block;
	height: 100%;
	background-position: right bottom;
	background-repeat: no-repeat;
}

/*第二通栏end*/
/*
*第三通栏start fpx 2018
*/
.column3 {
	padding: 85px 0 100px;
	overflow: hidden;
}

.column3_nav .slider-nav {
	padding: 0 10.4167%;
	position: relative;
}

.column3Box {
	padding-top: 44px;
}

.column3_nav .myslide {
	float: left;
	display: inline;
	width: 20%;
}

.column3_nav .myslide .pic {
	width: 110px;
	margin: 0 auto;
	background: #FFFFFF;
	border-radius: 100%;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column3_nav .myslide .pic::before {
	padding-top: 100%;
}

.column3_nav .myslide .text {
	overflow: hidden;
	text-align: center;
	height: 35px;
	line-height: 35px;
	font-size: 14px;
	color: #333;
	margin: 0 10px;
	overflow: hidden;
}

.column3_nav .myslide .con {
	overflow: hidden;
	margin: 0 10px;
	padding: 10px 0;
}

.column3_for {
	position: relative;
	height: 500px;
	overflow: hidden;
	background: #FFFFFF;
}

.column3_for .con {
	position: relative;
	overflow: hidden;
	height: 500px
}

.column3_for .con .picBox {
	width: 61.111%;
	height: 100%;
	padding-left: 20px;
	box-sizing: border-box;
}

.column3_for .con .picBox .pic {
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.column3_for .con .picBox .pic::before {
	padding-top: 0;
}

.column3_for .bdCon {
	position: relative;
	height: 100%;
	overflow: hidden;
	background: url(../images/gaiBg.png) top center no-repeat;
	background-size: 100% 100%;
}

.column3_for .bdContent {
	padding-left: 31.25%;
	margin-right: 30px;
}

.column3_for .bdContent .title {
	height: 68px;
	line-height: 68px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 20px;
}

.column3_for .bdContent .text {
	line-height: 24px;
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
	margin-bottom: 50px;
}

.column3_for .more {
	width: 120px;
	height: 40px;
	margin: 0 auto;
	background: #fff;
	border-radius: 2px;
	overflow: hidden;
}

.column3_for .more a {
	display: block;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	color: #125fc8;
	position: relative;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column3_for .more a::before {
	display: block;
	content: "";
	position: absolute;
	width: 110%;
	top: 0;
	left: -5%;
	height: 100%;
	background: rgba(18, 95, 200, 0.5);
	transform: scaleX(0.3);
	-webkit-transform: scaleX(0.3);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.column3_for .more a span {
	position: relative;
	z-index: 2;
}

.column3_for .more:hover a::before {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
	visibility: visible;
	opacity: 1;
}

.column3_for .more:hover a {
	color: #FFFFFF;
}

.column3_nav .myslide .con:hover .pic {
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.column3_nav .myslide .con:hover .text {
	color: #115bbf;
}

.column3_for .prev {
	position: absolute;
	width: 30px;
	height: 50px;
	left: 0;
	top: 50%;
	margin-top: -25px;
	background:rgba(0,0,0,0.4) url(../images/indexC3Prev.png) center center no-repeat;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	cursor: pointer;
	z-index: 1;
}

.column3_for  .prev:hover {
	z-index: 2;
	/* box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1); */
	/* transform: translateY(-2px);
	-webkit-transform: translateY(-2px); */
	background-color: rgba(0,0,0,0.7);
}

.column3_for .next {
	position: absolute;
	width: 30px;
	height: 50px;
	right: 0;
	top: 50%;
	margin-top: -25px;
	background:rgba(0,0,0,0.4) url(../images/indexC3Next.png) center center no-repeat;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	cursor: pointer;
}

.column3_for .next:hover {
	z-index: 2;
	/* box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
	-webkit-transform: translateY(-2px); */
	background-color: rgba(0,0,0,0.7);
}

/*第三通栏end*/

/*第四通栏start*/
.column4 {
	padding: 85px 0 100px;
	background: #FFFFFF;
}

.column4_dl {
	position: relative;
	height: 500px;
	padding-top: 55px;
	box-sizing: border-box;
}

.column4_dl dd {
	position: absolute;
	width: 140px;
	height: 140px;
	left: 0;
	top: 0;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	perspective: 800px;
}
.column4_dl dd .ddRot{
	position:relative;
	width: 140px;
	height: 140px;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	perspective: 800px;
}
.column4_dl dd.dd1 {
	left: 7.1528%;
}

.column4_dl dd.dd2 {
	left: 21.5278%;
}

.column4_dl dd.dd3 {
	left: 35.9722%;
}

.column4_dl dd.dd4 {
	left: 50.3472%;
}

.column4_dl dd.dd5 {
	left: 64.7222%;
}

.column4_dl dd.dd6 {
	left: 79.0972%;
}

.column4_dl dd.dd7 {
	left: 0%;
	top: 108px;
}

.column4_dl dd.dd8 {
	left: 14.3561%;
	top: 108px;
}

.column4_dl dd.dd9 {
	left: 28.8194%;
	top: 108px;
}

.column4_dl dd.dd10 {
	left: 43.1556%;
	top: 108px;
}

.column4_dl dd.dd11 {
	left: 57.6289%;
	top: 108px;
}

.column4_dl dd.dd12 {
	left: 71.875%;
	top: 108px;
}

.column4_dl dd.dd13 {
	left: 86.3583%;
	top: 108px;
}

.column4_dl dd.dd14 {
	left: 7.1528%;
	top: 215px;
}

.column4_dl dd.dd15 {
	left: 21.5278%;
	top: 215px;
}

.column4_dl dd.dd16 {
	left: 35.9722%;
	top: 215px;
}

.column4_dl dd.dd17 {
	left: 50.3472%;
	top: 215px;
}

.column4_dl dd.dd18 {
	left: 64.7222%;
	top: 215px;
}

.column4_dl dd.dd19 {
	left: 79.0972%;
	top: 215px;
}
.column4_dl dd.dd20 {
	left: 0%;
	top: 323px;
}

.column4_dl dd.dd21 {
	left: 14.3561%;
	top: 323px;
}

.column4_dl dd.dd22 {
	left: 28.8194%;
	top: 323px;
}

.column4_dl dd.dd23 {
	left: 43.1556%;
	top: 323px;
}

.column4_dl dd.dd24 {
	left: 57.6289%;
	top: 323px;
}

.column4_dl dd.dd25 {
	left: 71.875%;
	top: 323px;
}

.column4_dl dd.dd26 {
	left: 86.3583%;
	top: 323px;
}

.column4_dl dd .ddCon {
	transform: rotateZ(135deg);
	-webkit-transform: rotateZ(135deg);
	box-shadow: 0 0px 6px rgba(0, 0, 0, 0.08);
	height: 100%;
	overflow: hidden;
	position: relative;
}
.column4_dl dd .ddCon .con{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
	background: #fff;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
}
.column4_dl dd .ddCon .con1{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
}
.column4_dl dd:hover .ddCon{
	position: relative;
	z-index: 5;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}
.column4_dl dd:hover .ddCon .con1{
	opacity: 1;
	visibility: visible;
}
.column4_dl dd:hover .ddCon .con{
	opacity: 0;
	visibility: hidden;
}
.column4_dl dd .con a{
	display: block;
	position: relative;
	height: 100%;
	cursor: pointer;
/* 	transform: rotateZ(-135deg);
	-webkit-transform: rotateZ(-135deg); */
	}
.column4_dl dd  a .cona{
	position: relative;
	height: 100%;
	transform: rotateZ(-135deg);
	-webkit-transform: rotateZ(-135deg);
}
.column4_dl dd .con1 a .cona{
	transform: rotateZ(-135deg) rotateY(-180deg);
	-webkit-transform: rotateZ(-135deg) rotateY(-180deg);
}
.column4_dl dd .picBox {
	position: relative;
	height: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.column4_dl dd:hover .ddRot{
	z-index: 10;
	transform-style: preserve-3d;
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
}
.column4Wrap{
	width: 1440px;
	margin: 0 auto;
	clear: both;
	position: relative;
	z-index: 2;
}

/*第四通栏end*/
/*
********************************首页样式 end********************************
*/
/*内页框架开始*/
/*内页banner*/
.subBanner{
	clear: both;
	width: 100%;
	padding-top:31.25%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size:cover;
	position:relative;
}
/*当前位置 start*/
.locationBox {
	width: 100%;
	height: 60px;
	line-height: 60px;
	background: #fff;
	position: relative;
}

.locationBox::before {
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background-color: rgb(230, 230, 230);
	position: absolute;
	left: 0;
	bottom: 0;
}

.locationMenuDl {
	overflow: hidden;
}

.locationMenuDl dd {
	float: left;
	display: inline;
	position: relative;
	margin-right: 60px;
}

.locationMenuDl dd::before {
	display: block;
	content: '';
	height: 2px;
	width: 100%;
	background: #125fc8;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scale(0);
	-webkit-transform: scale(0);
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.locationMenuDl dd a {
	display: block;
	font-size: 14px;
	color: #666666;
	font-weight: bold;
}

.locationMenuDl dd:hover a,
.locationMenuDl dd.hover a {
	color: #125fc8;
}

.locationMenuDl dd:hover:before,
.locationMenuDl dd.hover:before {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.locationDl {
	overflow: hidden;
}

.locationDl dt {
	float: left;
	display: inline;
	width: 25px;
	height: 60px;
	margin-right: 6px;
}

.locationDl dt a {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/home1.png) no-repeat center center;
	background-size: 11px 10px;
	transition: all .3s linear;
	-webkit-transition: all .3s linear;
}

.locationDl dt a:hover {
	background: url(../images/home1h.png) no-repeat center center;
	background-size: 11px 10px;
}

.locationDl dd {
	float: left;
	display: inline;
	padding: 0 10px 0 16px;
	background: url(../images/right.png) no-repeat center left;
	background-size: 4px 6px;
}

.locationDl dd:hover,
.locationDl dd.hover {
	background: url(../images/righth.png) no-repeat center left;
	background-size: 4px 6px;
}

.locationDl dd.dd1 {
	background-size: 0;
}

.locationDl dd a {
	display: block;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	color: #666666;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.locationDl dd.hover a,
.locationDl dd:hover a {
	color: #125fc8;
}
/*当前位置 end*/
/*内页导航*/
.nav{margin-right:-15px;}
.nav a{
	display: inline;
	float: left;
	line-height: 60px;
	height:57px;
	color: #666666;
	font-size: 14px;
	padding:0 14px;
}
.nav a.hover{color: #1e5ab0}
.nav a:hover{color: #1e5ab0}
/*页码开始*/
.page{text-align: center;clear: both;font-size: 14px;}
.page a{display: inline-block;overflow: hidden;padding:10px 15px;color:#393939;border-radius:3px;background: #fff; margin: 0 3px;border: 1px solid #dedede;}
.page span{display: inline-block; padding: 6px 2px; position: relative; top: -15px;}
.page a:hover{background: #125fc8;color: #fff;}
.page a.hover{background: #125fc8;color: #fff;}
.page input{display: inline-block;vertical-align: middle;height: 22px;border: 1px solid #e6e6e6;position: relative; top: -2px;}
.page input.pageDetail{width: 30px; height: 30px; text-align: center; border-radius: 3px; color: #999999; position: relative; top: -13px;}
.page label{color:#999999;position: relative;top: -11px;}
.page input.page_bnt{border: none; width: 30px; height: 25px; cursor: pointer; background: none; color: #999999; position: relative; top: -13px;}

.page a div{
	width: 11px;
    height: 19px;
	background-position: center center;
	background-repeat: no-repeat;
}
.page a.firstPage:hover {color: #393939;}
.page a.prevPage:hover {color: #393939;}
/* .page a.firstPage div{background-image: url(../images/page/firstPage.png)}
.page a.prevPage div{background-image: url(../images/page/prevPage.png)}
.page a.nextPage div{background-image: url(../images/page/nextPage.png)}
.page a.lastPage div{background-image: url(../images/page/lastPage.png)} */

/* .page a.firstPage:hover div{background-image: url(../images/page/firstPageh.png)}
.page a.prevPage:hover div{background-image: url(../images/page/prevPageh.png)}
.page a.nextPage:hover div{background-image: url(../images/page/nextPageh.png)}
.page a.lastPage:hover div{background-image: url(../images/page/lastPageh.png)} */

.page a.firstPage.disabled{background:#E2E2E2;}
.page a.prevPage.disabled{background:#E2E2E2;}
.page a.nextPage.disabled{background:#E2E2E2;}
.page a.lastPage.disabled{background:#E2E2E2;}

/* .page a.firstPage.disabled div{background-image: url(../images/page/firstPage.png)}
.page a.prevPage.disabled div{background-image: url(../images/page/prevPage.png)}
.page a.nextPage.disabled div{background-image: url(../images/page/nextPage.png)}
.page a.lastPage.disabled div{background-image: url(../images/page/lastPage.png)}
 */
.page .pageInput{font-size: 16px;color: #393939;display: inline-block;height: 43px;line-height: 42px;overflow: hidden;margin-left: 14px;}
.page .pageInput input{width: 39px;height: 39px;border-radius: 7px;margin-right: 5px;text-indent: 5px;}
/*页码结束*/
/*内页框架结束*/

/* 鼠标经过圆圈动画 */
.animated-circles{
	position:absolute;
	z-index:1;
	left:0;
	top:0;
	width:100%;
	height:100%;
}
.column2DL .animated-circles .c-1,
.column2DL .animated-circles .c-2,
.column2DL .animated-circles .c-3 { 
	transition: 0.8s cubic-bezier(.25, .46, .45, .94) ;
	transform:scale(0);
	width:220px;
	height:220px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-110px 0 0 -110px;
	background:rgba(30,120,205,0.1);
	border-radius:50%;
}
.column2DL .animated-circles .c-2{
	transition-delay:0.2s;
}
.column2DL .animated-circles .c-3{
	transition-delay:0.4s;
}
.column2DL dd a:hover .animated-circles .c-1 ,
.column2DL dd a:hover .animated-circles .c-2 ,
.column2DL dd a:hover .animated-circles .c-3 {
	 transform: scale(1);
}