@charset "utf-8";

/* ==================== 外层框架 start ==================== */
/* —————————— 顶部 start —————————— */
.header {
	width: 100%;
	position: fixed;
	top: 20px;
	left: 0;
	z-index: 999;
}

.top {
	min-height: 90px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
	position: relative;
	padding: 0 24px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* logo start */
.logo {
	overflow: hidden;
}

.logo a {
	display: inline-block;
	height: 90px;
	display: table-cell;
	vertical-align: middle;
}

.logo img {
	display: block;
	height: 36px;
}

/* logo end */
.topR>div {
	float: left;
	display: inline;
	height: 90px;
	line-height: 90px;
	font-size: 16px;
	color: #999999;
	position: relative;
	padding: 0 20px;
	cursor: pointer;
}

.topR>div::after {
	content: "";
	display: block;
	width: 1px;
	height: 24px;
	background: #eaeaea;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -12px;
}

.topR>div:last-child {
	padding-right: 0;
}

.topR>div:last-child::after {
	display: none;
}

/* 搜索 start */
.topR .searchBtn {
	width: 22px;
	height: 90px;
	line-height: 90px;
	cursor: pointer;
	font-size: 30px;
	text-align: right;
}

.searchBox {
	width: 360px;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	position: absolute;
	top: 106px;
	right: -24px;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transform: scale(0);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.topR .searchBtn.hover .searchBox{
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	-webkit-transform: scale(1);
}

.searchBox .searchDiv {
	border-bottom: 1px solid #e1e1e1;
	overflow: hidden;
}

.searchBox .inputDiv {
	overflow: hidden;
	height: 40px;
}

.searchBox .inputDiv input {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
	background: none;
	outline: none;
}

.searchBox .inputDiv input::-webkit-input-placeholder {
	color: #808080;
	font-size: 16px;
	text-align: left;
}

.searchBox a {
	float: right;
	display: inline-block;
	color: #4bad8d;
	font-size: 30px;
	height: 40px;
	line-height: 40px;
}

.searchPW {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	visibility: hidden;
}

.searchPW.show {
	visibility: visible;
}

.searchPW .bg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0.5;
	transition: all 0.3s;
	color: #fff;
}

.searchPW .bg .close {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
	font-size: 72px;
	text-align: center;
	overflow: hidden;
}

.searchPW.show .bg {
	opacity: 1;
}

.searchPWBox {
	width: 600px;
	height: 60px;
	overflow: hidden;
	background: #fff;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	margin: -30px 0 0 -300px;
	visibility: hidden;
	opacity: 0.5;
	transform: scale(0.5);
	transition: all 0.3s;
}

.searchPW.show .searchPWBox {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.searchPWBox input {
	display: block;
	float: left;
	width: 530px;
	height: 60px;
	background: none;
	border: none;
	line-height: 60px;
	color: #333;
	font-size: 16px;
	margin-left: 10px;
}

.searchPWBox input::placeholder {
	color: #999;
	font-size: 16px;
}

.searchPWBox input::-webkit-placeholder {
	color: #999;
	font-size: 16px;
}

.searchPWBox a {
	float: left;
	display: inline;
	width: 60px;
	height: 60px;
	background: #4bad8d;
	color: #fff;
	font-size: 30px;
	text-align: center;
	line-height: 60px;
}

.searchPWBox a:hover {
	opacity: 0.9;
}

/* 搜索 end */
/* 语言 start */
.topR .leng em {
	font-size: 26px;
	color: #999999;
	position: relative;
}
.topR .leng em.icn1{
	top: 2px;
}
.topR .leng em.icn2 {
	font-size: 14px;
	font-weight: bold;
	top: -2px;
}

.topR .leng span {
	font-size: 16px;
	color: #999999;
	position: relative;
	top: -2px;
}

.lengDl {
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	position: absolute;
	top: 106px;
	right: -4px;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transform: scale(0);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.lengDl dd {
	border-bottom: 1px solid #f0f0f0;
	width: 120px;
	height: 44px;
	line-height: 44px;
	text-align: center;
}

.lengDl dd a {
	font-size: 16px;
	color: #808080;
}

.lengDl dd a:hover {
	color: #4bad8d;
}

.topR .leng:hover .lengDl {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	-webkit-transform: scale(1);
}

/* 语言 end */
/* 电话 start */
.topR .tel em {
	font-size: 24px;
	color: #999999;
}

.topR .tel .telShow {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	width: 200px;
	height: 78px;
	line-height: 78px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 30px;
	font-size: 18px;
	color: #808080;
	position: absolute;
	top: 106px;
	right: 0px;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transform: scale(0);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.topR .tel .telShow span {
	color: #4bad8d;
}

.topR .tel:hover .telShow {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	-webkit-transform: scale(1);
}

/* 电话 end */
/* 导航菜单 start */
.menuBox {
	min-height: 90px;
	position: relative;
	width: 58.25%;
	margin: 0 auto;
}
/*menu开始*/

.menuDl {
	height: 90px;
	position: relative;
	z-index: 2;
}

.menuDl dd {
	width: 14.2857%;
	float: left;
	position: relative;
}
.menuDl dd a.yj {
	display: block;
	height: 90px;
	line-height: 90px;
	overflow: hidden;
	color: #666666;
	font-size: 18px;
	transition: all 0.3s;
	position: relative;
	text-align: center;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.current{
	position: absolute;
	background: url(../images/new/menuBg.png) no-repeat center center;
	top: 0;
	height: 90px;
}
.menuDl dd:hover a.yj,
.menuDl dd.hover a.yj {
	color: #4bad8d;
}
.menuDl dd .ejBox{
	width: 100%;
	position: absolute;
	top: 90px;
	left: 0;
	background: rgba(255,255,255,0.85);
	border-radius: 0 0 15px 15px;
	padding: 15px 0;
	display: none;
}
.menuDl dd .ejBox a{
	display: block;
	color: #808080;
	line-height: 30px;
	font-size: 16px;
	overflow: hidden;
	text-align: center;
	padding: 5px 0;
}
.menuDl dd .ejBox a span{
	padding-left: 6px;
	position: relative;
}
.menuDl dd .ejBox a span::before{
	content: '';
	display: block;
	width: 2px;
	height: 0%;
	background: #4bad8d;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.menuDl dd .ejBox a:hover{
	color: #4bad8d;
}
.menuDl dd .ejBox a:hover span::before{
	height: 100%;
}
/* 导航菜单 end */
/* —————————— 顶部 end —————————— */
/* —————————— 底部 start —————————— */
.footer {
	background: #2a3b3b url(../images/new/footerBg.png) no-repeat;
	background-size: cover;
}

.footerT {
	padding: 40px 0;
}

.footerT .backTop {
	float: right;
	display: inline;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.footerT .backTop:hover{
	background:  rgb(50,169,227);
	background-image: -moz-linear-gradient( 0deg, rgb(50,169,227) 0%, rgb(69,196,155) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(50,169,227) 0%, rgb(69,196,155) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(50,169,227) 0%, rgb(69,196,155) 100%);
}
.footerT .backTop span{
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1) url(../images/new/backTop.png) no-repeat center center;
	background-size: 14px 19px;
}

.footerT .footerLogo {
	overflow: hidden;
}

.footerT .footerLogo img {
	height: 40px;
}

.footerM {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	padding: 20px 0;
}

.footerM .footerML {
	float: left;
	display: inline;
}

/* 地址 start */
.footerAdd {
	margin-bottom: 20px;
}

.footerAdd .con {
	height: 46px;
	line-height: 46px;
}

.footerAdd .con span {
	font-size: 14px;
	color: #ffffff;
}

.footerAdd .con span.title {
	color: #cccccc;
}

.footerAdd .con span img {
	vertical-align: middle;
}

/* 地址 end */
/* 二维码 start */
.footerEwmBox {
	width: 25%;
	padding-left: 86px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.footerEwm {
	overflow: hidden;
}

.footerEwm .dd {
	float: left;
	display: inline;
	position: relative;
	width: 100px;
	overflow: hidden;
	margin-right: 20px;
}

.footerEwm .dd:last-child {
	margin-right: 0;
}

.footerEwm .dd .picBox {
	width: 100px;
	height: 100px;
	background: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #ebebeb;
}

.footerEwm .dd .picBox img {
	display: block;
	width: 100%;
	height: 100%;
}

.footerEwm .dd span {
	display: block;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
}

/* 二维码 end */
.footerM .footerMR {
	overflow: hidden;
}

.footerB {
	font-size: 14px;
	color: #cccccc;
	height: 70px;
	line-height: 70px;
	overflow: hidden;
}

.footerB a {
	font-size: 14px;
	color: #cccccc;
}

.footerB img {
	vertical-align: middle;
}

/* 底部导航 start */
.footerMenu {
	overflow: hidden;
	margin-bottom: 55px;
}

.footerMenu dd {
	float: left;
	display: inline;
	overflow: hidden;
	margin: 0 55px;
}

.footerMenu dd:last-child {
	margin-right: 0;
}

.footerMenu dd em {
	font-style: normal;
	display: block;
	overflow: hidden;
	position: relative;
	height: 40px;
	line-height: 40px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.footerMenu dd em::before {
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	left: 0;
	bottom: 0;
}

.footerMenu dd em a {
	font-size: 16px;
	color: #ffffff;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.footerMenu dd span {
	font-style: normal;
	display: block;
	line-height: 26px;
	overflow: hidden;
}

.footerMenu dd.con span {
	text-align: left;
}

.footerMenu dd span a {
	font-size: 14px;
	color: #cccccc;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.footerMenu dd em a:hover,
.footerMenu dd span a:hover {
	color: #fff;
}

/* 底部导航 end */
/* 友情链接 start */
.linkDl {
	overflow: hidden;
}

.linkDl dd {
	float: left;
	display: inline;
	height: 36px;
	line-height: 36px;
	font-size: 14px;
	color: #cccccc;
	margin-left: 20px;
}

.linkDl dd a {
	display: block;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
	padding: 0 20px;
	font-size: 14px;
	color: #eaeaea;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.linkDl dd a:hover{
	background:  rgb(50,169,227);
	background: -moz-linear-gradient( 0deg, rgb(50,169,227) 0%, rgb(69,196,155) 100%);
	background: -webkit-linear-gradient( 0deg, rgb(50,169,227) 0%, rgb(69,196,155) 100%);
	background: -ms-linear-gradient( 0deg, rgb(50,169,227) 0%, rgb(69,196,155) 100%);
}

/* 友情链接 end */
/* —————————— 底部 end —————————— */
/* —————————— 悬浮 start —————————— */
/* —————————— 悬浮 end —————————— */
/* ==================== 外层框架 end ==================== */
/* ==================== 内页框架 start ==================== */
.subPage.subPageTop {
	position: relative;
	margin-top: -72px;
}

/* —————————— suBanner start —————————— */
.subBanner {
	height: 640px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
}

.pdySubBanner {
	height: 800px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
}

/* —————————— suBanner end —————————— */
/* —————————— 当前位置 start —————————— */
.location {
	height: 72px;
	line-height: 72px;
	background: rgba(255, 255, 255, 0.85);
	position: relative;
	z-index: 5;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.locationLDl {
	overflow: hidden;
	font-size: 0;
}

.locationLDl dd {
	float: left;
	display: inline;
	position: relative;
}

.locationLDl dd::before {
	display: block;
	content: "";
	height: 2px;
	width: 0%;
	background: #36afd5;
	position: absolute;
	left: 0;
	bottom: 0%;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	transform: scale(0);
	-webkit-transform: scale(0);
}

.locationLDl dd::after {
	display: block;
	content: "";
	width: 1px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
}

.locationLDl dd:last-child::after {
	display: none;
}

.locationLDl dd a {
	display: block;
	height: 72px;
	line-height: 72px;
	font-size: 16px;
	color: #555555;
	text-align: center;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
}

.locationLDl dd:hover a,
.locationLDl dd.hover a {
	color: #4bad8d;
	background: #fff;
}

.locationLDl dd:hover::before,
.locationLDl dd.hover::before {
	width: 100%;
	transform: scale(1);
	-webkit-transform: scale(1);
}
.locationLDl dd:hover::after,
.locationLDl dd.hover::after {
	width: 0;
}
/* —————————— 当前位置 end —————————— */
/* —————————— 页码 start —————————— */
.page {
	font-size: 0;
	text-align: center;
	height: 40px;
}

.page a {
	display: inline-block;
	overflow: hidden;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	border: 1px solid #e0e0e0;
	margin: 0 6px;
	font-size: 14px;
	color: #555555;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
}

.page span {
	display: inline-block;
	padding: 6px 2px;
	position: relative;
	top: -15px;
}

.page a:hover,
.page a.hover {
	color: #4bad8d;
	border: 1px solid #4bad8d;
}

.page a div {
	width: 38px;
	height: 38px;
	border-radius: 50%;
}

.page a.firstPage div {
	background-image: url(../images/page/firstPage.png);
}

.page a.prevPage div {
	background: url(../images/page/pageL.png) no-repeat center center;
	background-size: 6px 9px;
}

.page a.nextPage div {
	background: url(../images/page/pageR.png) no-repeat center center;
	background-size: 6px 9px;
}

.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: url(../images/page/pageLh.png) no-repeat center center;
	background-size: 6px 9px;
}

.page a.nextPage:hover div {
	background: url(../images/page/pageRh.png) no-repeat center center;
	background-size: 6px 9px;
}

.page a.lastPage:hover div {
	background-image: url(../images/page/lastPageh.png);
}

.page a.lastPage.disabled,
.page a.nextPage.disabled,
.page a.prevPage.disabled,
.page a.firstPage.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 span {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #555555;
	padding-left: 15px;
}

.page span input {
	width: 48px;
	height: 40px;
	line-height: 40px;
	padding: 0 5px;
	border: 1px solid #e0e0e0;
	outline: none;
	margin-right: 5px;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	background: transparent;
	margin: 0 5px;
}

/* —————————— 页码 end —————————— */
/* —————————— 三级导航 start —————————— */
.navigationDl {
	font-size: 0;
	text-align: center;
	margin: 60px 0 50px;
}

.navigationDl dd {
	display: inline-block;
	margin: 0 10px;
}

.navigationDl dd a {
	display: block;
	background: #f9f9f9;
	width: 150px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	overflow: hidden;
	font-size: 14px;
	color: #666666;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.navigationDl dd:hover a,
.navigationDl dd.hover a {
	background: url(../images/new/titleBg.png) no-repeat;
	background-size: cover;
	color: #fff;
}

/* —————————— 三级导航 end —————————— */
/* ==================== 内页框架 end ==================== */
/* ==================== 首页 start ==================== */
/* —————————— indexBanner start —————————— */
.indexBanner {
	position: relative;
}

.indexBanner .bd {
	overflow: hidden;
}

.indexBanner .bd,
.indexBanner .bd .slick-list,
.indexBanner .bd .slick-track {
	height: 100%;
}

.indexBanner.delay .bd .slick-track {
	transition-delay: 1.3s !important;
	-webkit-transition-delay: 1.3s !important;
}

.indexBanner .mySlide {
	height: 100%;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.indexBanner .mySlide a {
	display: block;
	height: 100%;
	width: 100%;
}

.indexBanner .bannerNext {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	animation-delay: 1.7s;
}

.indexBanner .bannerNext a {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 0;
	padding-top: 5px;
	position: relative;
}

.indexBanner .bannerNext a::before {
	content: "";
	display: block;
	width: 112px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -56px;
}

.indexBanner .bannerNext a i {
	font-size: 16px;
	color: #fff;
	line-height: 20px;
}

.indexBanner .slick-dots {
	position: absolute;
	bottom: 55px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 0;
	animation-delay: 1.5s;
}

.indexBanner .slick-dots li {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	margin: 0 10px;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	background: rgba(255, 255, 255, 0.5);
}

.indexBanner .slick-dots li.slick-active {
	background: rgba(255, 255, 255, 1);
}

.indexBanner .mySlide .text {
	position: absolute;
	left: 8.3333%;
	top: 50%;
	display: none;
}

.indexBanner .mySlide .text .text1 {
	font-size: 22px;
	color: #444444;
	line-height: 30px;
	margin-top: 20px;
}

.indexBanner .mySlide .text .text1 span {
	position: relative;
	letter-spacing: 3px;
	color: #bac5ce;
	padding: 0 200px;
}

.indexBanner .mySlide .text .text1 img {
	height: 80px;
}

.indexBanner .mySlide .text .text1 span:after,
.indexBanner .mySlide .text .text1 span:before {
	display: block;
	content: "";
	width: 180px;
	height: 1px;
	background: #bac5ce;
	position: absolute;
	top: 50%;
}

.indexBanner .mySlide .text .text1 span:after {
	left: 0;
}

.indexBanner .mySlide .text .text1 span:before {
	right: 0;
}

.indexBanner .mySlide .text .text2 {
	font-size: 0px;
	text-align: center;
	margin-bottom: 20px;
}

.indexBanner .mySlide .text .text2 span {
	height: 60px;
	font-size: 36px;
	color: #fff;
	text-align: center;
}

.indexBanner .mySlide.slick-active .text {
	display: block;
}

.indexBanner .img {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	font-size: 0;
}

.indexBanner .img .imgItem img {
	overflow: hidden;
	display: inline-block;
	visibility: hidden;
	margin-right: 44px;
}

.indexBanner .img .imgItem img.show {
	visibility: visible;
}

.indexBanner .mySlide .text .textMore {
	font-size: 0;
	text-align: center;
	margin-top: 8%;
}

.indexBanner .mySlide .text .textMore a {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	height: 36px;
	line-height: 36px;
	text-align: center;
}

.indexBanner .mySlide .text .textMore a span {
	display: inline-block;
	position: relative;
	padding: 0 24px;
}

.indexBanner .mySlide .text .textMore a span:after,
.indexBanner .mySlide .text .textMore a span:before {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background: #ccc;
	position: absolute;
	left: 0;
}

.indexBanner .mySlide .text .textMore a:before {
	top: 0;
}

.indexBanner .mySlide .text .textMore a:after {
	bottom: 0;
}

.cloudWave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/cloudWave1.png) left top no-repeat;
	background-size: contain;
	-webkit-animation: cloud 100s linear infinite;
	-moz-animation: cloud 100s linear infinite;
	-o-animation: cloud 100s linear infinite;
	animation: cloud 100s linear infinite;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.cloudWave.cloudWave2 {
	background: url(../images/cloudWave2.png) center center no-repeat;
	background-size: contain;
}

@keyframes cloud {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(1920px);
	}
}

/* —————————— indexBanner end —————————— */
/* —————————— 首页公共部分 start —————————— */
.indexTitleBox {}

.indexTitleBox .more {
	float: right;
	display: inline;
	height: 52px;
	line-height: 52px;
}

.indexTitleBox .more a {
	font-size: 16px;
	color: #aaaaaa;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.indexTitleBox .more a .em1 {
	margin-right: 10px;
}

.indexTitleBox .more a .em2 {
	margin-left: 5px;
	font-size: 12px;
}

.indexTitleBox .more a:hover {
	color: #4bad8d;
}

.indexTitleBox .indexTitle {
	overflow: hidden;
}

.indexTitleBox .indexTitle .title {
	font-size: 28px;
	color: #333333;
	height: 52px;
	line-height: 52px;
	overflow: hidden;
	position: relative;
	font-weight: bold;
}

.indexTitleBox.titleb .indexTitle .title {
	padding-left: 52px;
}

.indexTitleBox.titleb .indexTitle .title::before {
	display: block;
	content: "";
	width: 28px;
	height: 4px;
	background: url(../images/new/titleBg.png) no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -2px;
}

.indexTitleBox.titleb .indexTitle .subTitle {
	padding-left: 52px;
}

.indexTitleBox .indexTitle .subTitle {
	font-size: 16px;
	color: #dddddd;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
}

.indexMore {
	overflow: hidden;
	font-size: 0;
}

.indexMore a {
	display: inline-block;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	height: 48px;
	line-height: 48px;
	overflow: hidden;
	background: url(../images/new/titleBg.png) no-repeat;
	background-size: cover;
	font-size: 16px;
	color: #fff;
	padding: 0 46px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.indexMore a:hover {
	opacity: 0.9;
}
.indexMore a em{
	margin-left: 12px;
	font-size: 20px;
}
/* —————————— 首页公共部分 end —————————— */
/* —————————— 第1通栏 start —————————— */
.column1 {
	overflow: hidden;
	padding: 120px 0;
}

.column1 .wrap {
	background: url(../images/new/c1Bg.png) no-repeat center right;
	background-size: auto 376px;
}

.indexC1Con {
	overflow: hidden;
}

.indexC1Con .pic {
	float: left;
	display: inline;
	width: 750px;
	margin-right: 50px;
	overflow: hidden;
	border-bottom-right-radius: 60px;
	border-top-left-radius: 60px;
}
.indexC1Con .pic img{
	object-fit: contain;
}
.indexC1Con .pic .videoPlay {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	cursor: pointer;
	background: url(../images/player.png) center center no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
	z-index: 5;
}
.indexC1Con .pic::before {
	padding-top: 66.25%;
}

.indexC1Con .text {
	overflow: hidden;
}

.indexC1Con .text .info {
	line-height: 30px;
	max-height: 90px;
	overflow: hidden;
	font-size: 16px;
	color: #808080;
	margin: 35px 0 30px;
}

.indexC1Con .indexMore {
	padding-bottom: 50px;
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 32px;
}

.indexC1Dl {
	overflow: hidden;
	margin-right: -144px;
}

.indexC1Dl dd {
	width: 33.3333%;
	float: left;
	display: inline;
}

.indexC1Dl dd .con {
	margin-right: 144px;
	overflow: hidden;
}

.indexC1Dl dd .con .number {
	float: right;
	display: inline;
	color: #43c1a4;
	font-size: 80px;
}

.indexC1Dl dd .con .text {
	overflow: hidden;
}

.indexC1Dl dd .con .text .title {
	font-size: 16px;
	color: #555555;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
}

.indexC1Dl dd .con .text .icn {
	color: #d4d4d4;
	font-size: 36px;
	height: 42px;
	line-height: 42px;
	overflow: hidden;
}

/* —————————— 第1通栏 end —————————— */
/* —————————— 第2通栏 start —————————— */
.column2 {
	overflow: hidden;
	padding: 70px 0 0;
	background: url(../images/new/c2Bg.png) no-repeat center center;
	background-size: cover;
}

.indexC2Con {
	position: relative;
}

/* c2bnner start */
.indexC2Banner {
	overflow: hidden;
	width: 100%;
	position: relative;
	margin-bottom: 120px;
	padding-top: 20px;
}

.indexC2Banner .bd {
	height: 100%;
}

.indexC2Banner .bd a .indexBg {
	padding-top: 39.5833333%;
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}

.indexC2Banner .prev {
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: url(../images/new/c2prev.png) no-repeat center left;
	position: absolute;
	left: 52px;
	bottom: 0;
	z-index: 1;
	/* transform: scale(0); */
	/* -webkit-transform: scale(0); */
}

.indexC2Banner .prev:hover {
	background: url(../images/new/c2prevh.png) no-repeat center left;
	transform: scale(1.1);
}

.indexC2Banner .next {
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: url(../images/new/c2next.png) no-repeat center left;
	position: absolute;
	left: 204px;
	bottom: 0;
	z-index: 1;
}

.indexC2Banner .next:hover {
	background: url(../images/new/c2nexth.png) no-repeat center left;
	transform: scale(1.1);
}

.indexC2Banner .slick-dots li {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #b5e1d3;
	color: #ffffff;
	margin: 0 5px;
	cursor: pointer;
	position: absolute;
	z-index: 10;
	margin-left: -6px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	display: none;
}

.indexC2Banner #slick-slide00 {
	top: 30px;
	left: 58%;
}

.indexC2Banner #slick-slide01 {
	top: 262px;
	left: 66.8%;
}

.indexC2Banner #slick-slide02 {
	bottom: 30px;
	left: 62.3%;
}

.indexC2Banner #slick-slide03 {
	bottom: 30px;
	left: 37.7%;
}

.indexC2Banner #slick-slide04 {
	top: 262px;
	left: 33.2%;
}

.indexC2Banner #slick-slide05 {
	top: 30px;
	left: 42%;
}

.indexC2Banner .slick-dots li.slick-active {
	background-color: #4bad8d;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(5);
	-webkit-transform: scale(5);
}

.indexC2Banner .slick-dots li#slick-slide00.slick-active {
	background-image: url(../test/cpjt.png);
}

.indexC2Banner .slick-dots li#slick-slide01.slick-active {
	background-image: url(../test/cpjt.png);
}

.indexC2Banner .slick-dots li#slick-slide02.slick-active {
	background-image: url(../test/cpjt.png);
}

.indexC2Banner .slick-dots li#slick-slide03.slick-active {
	background-image: url(../test/cpjt.png);
}

.indexC2Banner .slick-dots li#slick-slide04.slick-active {
	background-image: url(../test/cpjt.png);
}

.indexC2Banner .slick-dots li#slick-slide05.slick-active {
	background-image: url(../test/cpjt.png);
}

.indexC2Banner .con {
	position: relative;
	padding-left: 50px;
	overflow: hidden;
}

.indexC2Banner .con .conL {
	width: 25%;
}

.indexC2Banner .con .conR {
	width: 30%;
	padding-top: 10px;
}

.indexC2Banner .con .conR .info {
	font-size: 16px;
	color: #808080;
	line-height: 30px;
	height: 120px;
	overflow: hidden;
	margin-bottom: 40px;
}

.indexC2Banner .con .title {
	font-size: 26px;
	color: #333333;
	font-weight: bold;
	line-height: 60px;
}

.indexC2Banner .con .tag {
	display: inline-block;
	font-size: 16px;
	color: #4bad8d;
	height: 40px;
	line-height: 40px;
	border-radius: 5px;
	overflow: hidden;
	padding: 0 36px;
	background: #fff;
	margin-bottom: 40px;
}

.indexC2Banner .con .textC {
	font-size: 16px;
	color: #808080;
	line-height: 30px;
	height: 90px;
	overflow: hidden;
	margin-bottom: 30px;
}

.indexC2Banner .arrowsBox {
	width: 110px;
	height: 30px;
	line-height: 30px;
	position: absolute;
	bottom: 0;
	left: 80px;
	text-align: center;
}

.indexC2Banner .arrowsBox span {
	display: inline-block;
	font-size: 18px;
	color: #cccccc;
	font-weight: bold;
}

.indexC2Banner .arrowsBox span.cut {
	font-size: 24px;
}

.indexC2Banner .arrowsBox span.nubActive {
	font-size: 24px;
	color: #4bad8d;
}

/* c2bnner end */
.circleBox {
	width: 540px;
	height: 540px;
	position: absolute;
	left: 50%;
	top: 86px;
	margin-left: -270px;
}

.circleUl li {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #b5e1d3;
	color: #ffffff;
	margin: 0 5px;
	cursor: pointer;
	position: absolute;
	z-index: 10;
	margin-left: -6px;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	background-color: #b5e1d3;
}
.circleUl li.hover{
	background: #4bad8d;
}
.circleUl li .imgBox{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 50px;
}
.circleUl li img {
	width: 100%;
	height: 100%;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	opacity: 0;
	visibility: hidden;
	object-fit: cover;
}
.circleUl li.on {
	transform: scale(5);
	-webkit-transform: scale(5);
	border: 1px solid #fff;
}
.circleUl li.on::before{
	transform: scale(0.5,0.5);
	-webkit-transform: scale(0.5,0.5);
	content: '';
	width: 32px;
	height: 32px;
	border-radius: 50%;
	position: absolute;
	top: -11px;
	left: -11px;
	border: 1px solid #fff;
}

.circleUl li.on img {
	opacity: 1;
	visibility: visible;
}

.circleUl li.cili1 {
	top: -6px;
	left: 50%;
	margin-left: -6px;
}

.circleUl li.cili2 {
	top: 25%;
	margin-top: -6px;
	right: 26px;
}

.circleUl li.cili3 {
	bottom: 24%;
	right: 26px;
}

.circleUl li.cili4 {
	bottom: -6px;
	left: 50%;
	margin-left: -6px;
}

.circleUl li.cili5 {
	bottom: 24%;
	left: 36px;
}

.circleUl li.cili6 {
	top: 25%;
	left: 34px;
}

.circleBox .picBox {
	width: 340px;
	height: 340px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -170px;
	margin-top: -170px;
	z-index: 5;
}

.circleBox .picBox .pic::before {
	padding-top: 100%;
}

.circleBox .picBox img {
	object-fit: contain;
}

.circleBox .circleItem {
	width: 508px;
	height: 508px;
	border: 16px solid #f6f7fb;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.circleBox .circleItem span{
	display: inline-block;
	width: 50%;
	height: 100%;
}
.circleBox .circleItem span.span1{
	background: #fff;
}
.circleCon {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	border: 1px solid #ebf1ef;
	border-radius: 50%;
}

.circleConL {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.circleConR {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.circleConL .leftcircle {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 100%;
	height: 100%;
	left: 100%;
	border: 1px solid #4bad8d;
	top: 0px;
	position: absolute;
	border-radius: 0 600px 600px 0;
	transform-origin: left center;
	border-left: none;
}

.circleConR .rightcircle {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 100%;
	height: 100%;
	right: 100%;
	border: 1px solid #4bad8d;
	top: 0px;
	position: absolute;
	border-radius: 600px 0 0 600px;
	transform-origin: right center;
	border-right: none;
}

.rotate0 {
	transform: rotate(0deg);
}

.rotate60 {
	transform: rotate(60deg);
}
.rotate60f {
	transform: rotate(-60deg);
}
.rotate120 {
	transform: rotate(120deg);
}
.rotate120f {
	transform: rotate(-120deg);
}
.rotate180 {
	transform: rotate(180deg);
}
.rotate180f {
	transform: rotate(-180deg);
}
/* —————————— 第2通栏 end —————————— */
/* —————————— 第3通栏 start —————————— */
.column3 {
	overflow: hidden;
	padding: 70px 0 0;
	background: url(../images/new/c3Bg.png) no-repeat;
	background-size: cover;
}

.indexC3Banner {
	position: relative;
	padding: 50px 0 110px;
}

.indexC3Banner .bd {
	overflow: hidden;
	margin: -15px;
}

.indexC3Banner .slick-list {
	overflow: visible;
}

.indexC3Banner .myslide {
	width: 20%;
	float: left;
	display: inline;
}

.indexC3Banner .slick-dots {
	position: absolute;
	bottom: 55px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 0;
}

.indexC3Banner .slick-dots li {
	display: inline-block;
	width: 60px;
	height: 5px;
	margin: 0 5px;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	background: #fff;
}

.indexC3Banner .slick-dots li.slick-active {
	background: url(../images/new/titleBg.png) no-repeat;
	background-size: cover;
	height: 5px;
}

.indexC3Banner .mySlide .con {
	margin: 15px;
	overflow: hidden;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	border-top-left-radius: 60px;
	border-bottom-right-radius: 60px;
}
.indexC3Banner .mySlide .con:hover{
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
}
.indexC3Banner .mySlide .con .pic {
	border-top-left-radius: 60px;
	border-bottom-right-radius: 60px;
	overflow: hidden;
}

.indexC3Banner .mySlide .con .pic::before {
	padding-top: 118.677%;
}

.indexC3Banner .mySlide .con .text {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 72.7311%;
	width: 90%;
	z-index: 2;
	background: #fff;
	border-bottom-right-radius: 50px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 25px 40px 25px 30px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.indexC3Banner .mySlide .con:hover .text {
	background: url(../images/new/titleBg.png) no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	border-bottom-right-radius: 60px;
	background-image: -moz-linear-gradient( 0deg, rgba(50,169,227,0.851) 0%, rgba(69,196,155,0.851) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgba(50,169,227,0.851) 0%, rgba(69,196,155,0.851) 100%);
	background-image: -ms-linear-gradient( 0deg, rgba(50,169,227,0.851) 0%, rgba(69,196,155,0.851) 100%);
}

.indexC3Banner .mySlide .con .text .icn {
	float: right;
	display: inline-block;
	font-size: 40px;
	color: #cccccc;
	padding: 15px 0;
}

.indexC3Banner .mySlide .con .text .textC {
	overflow: hidden;
}

.indexC3Banner .mySlide .con:hover .text .icn {
	font-size: 0;
}

.indexC3Banner .mySlide .con .text .title {
	line-height: 36px;
	height: 36px;
	font-size: 22px;
	color: #333333;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.indexC3Banner .mySlide .con:hover .text .title {
	color: #fff;
}

.indexC3Banner .mySlide .con .text .subTitle {
	line-height: 32px;
	height: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	color: #cccccc;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.indexC3Banner .mySlide .con:hover .text .subTitle {
	display: none;
}

.indexC3Banner .mySlide .con .text .info {
	font-size: 14px;
	color: #fff;
	line-height: 30px;
	height: 0px;
	overflow: hidden;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.indexC3Banner .mySlide .con:hover .text .info {
	height: 60px;
}

/* —————————— 第3通栏 end —————————— */
/* —————————— 第4通栏 start —————————— */
.column4 {
	overflow: hidden;
	padding: 70px 0 60px;
	background: url(../images/new/c4Bg.png) no-repeat;
	background-size: cover;
}

.imgTextC3Dl {
	overflow: hidden;
	margin: 0 -25px;
	padding: 45px 0 0;
}

.imgTextC3Dl dd {
	width: 50%;
	float: left;
	display: inline;
	margin-bottom: 50px;
}

.imgTextC3Dl dd .con {
	margin: 0 25px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 35px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.imgTextC3Dl dd .con .pic {
	width: 300px;
	float: right;
	display: inline;
	margin-left: 30px;
}

.imgTextC3Dl dd .con .text {
	overflow: hidden;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 20px 0 0;
}

.imgTextC3Dl dd .con .text .title {
	line-height: 30px;
	max-height: 60px;
	overflow: hidden;
	margin-bottom: 5px;
}

.imgTextC3Dl dd .con .text .title a {
	font-size: 20px;
	color: #333333;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
}

.imgTextC3Dl dd .con:hover .text .title a {
	color: #4bad8d;
	font-weight: bold;
}

.imgTextC3Dl dd .con .text .info {
	font-size: 16px;
	color: #808080;
	line-height: 30px;
	max-height: 60px;
	overflow: hidden;
	margin-bottom: 15px;
}

.imgTextC3Dl dd .con .text .time {
	font-size: 14px;
	color: #aaaaaa;
}

/* —————————— 第4通栏 end —————————— */
/* ==================== 首页 end ==================== */
/* ==================== 关于汉盟 start ==================== */
.aboutColumn1 {
	position: relative;
	padding-bottom: 60px;
	overflow: hidden;
	padding-top: 145px;
}

.colBgBox {
	position: absolute !important;
	width: 102%;
	height: 102%;
	left: -1% !important;
	top: -1% !important;
	z-index: 1;
}

.colBg {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

.aboutColumn1R {
	width: 750px;
	position: relative;
}

.columnVideo {
	position: relative;
}

.columnVideo .pic {
	overflow: hidden;
}

.columnVideo .pic::before {
	padding-top: 41.333%;
}

.columnVideo .videoBox {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.columnVideo .videoPlay {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	cursor: pointer;
	background: url(../images/player.png) center center no-repeat;
}

.aboutColumn1L {
	overflow: hidden;
	padding-right: 55px;
}

.aboutTitle {
	height: 53px;
	line-height: 53px;
	position: relative;
	font-size: 26px;
	color: #1b1b1b;
}

.aboutTitle::before {
	display: block;
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	left: 0;
	bottom: 0;
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(#34adda),
			to(#42c0a5));
	background-image: -webkit-linear-gradient(left, #34adda, #42c0a5);
	background-image: -moz-linear-gradient(left, #34adda, #42c0a5);
	background-image: linear-gradient(to right, #34adda, #42c0a5);
}

.aboutColumn1Itro {
	line-height: 32px;
	height: 320px;
	font-size: 16px;
	color: #808080;
	overflow: hidden;
	margin-bottom: 28px;
	padding-right: 30px;
	overflow-y: auto;
}
.aboutColumn1L ::-webkit-scrollbar {width:3px;background:rgba(60,183,191,0.3);}
.aboutColumn1L ::-webkit-scrollbar-thumb {width:3px;background:rgba(60,183,191,1);border-radius: 2px;}
.aboutMore {
	width: 181px;
	height: 50px;
	border-radius: 0 20px 0 20px;
	overflow: hidden;
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(#35aed6),
			to(#42bfa7));
	background-image: -webkit-linear-gradient(left, #35aed6, #42bfa7);
	background-image: -moz-linear-gradient(left, #35aed6, #42bfa7);
	background-image: linear-gradient(to right, #35aed6, #42bfa7);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.aboutMore a {
	display: block;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 16px;
	color: #fff;
}

.aboutMore a span {
	display: inline-block;
	padding-right: 25px;
	background: url(../images/aboutMore.png) center right no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.aboutMore:hover {
	border-radius: 20px;
}

.aboutMore:hover a span {
	padding-right: 30px;
}

.aboutColumn2 {
	position: relative;
	height: 715px;
	overflow: hidden;
}

.aboutColumn2 .aboutTitleBox {
	padding-top: 67px;
}

.aboutTitleBox.center .aboutTitle {
	text-align: center;
}

.aboutTitleBox.center .aboutTitle::before {
	left: 50%;
	margin-left: -12px;
}

.aboutTitle1 {
	line-height: 36px;
	text-align: center;
	font-size: 16px;
	color: #aaa;
}

.aboutBanner2 .bd {
	padding: 30px 0;
	overflow: hidden;
	margin: 0 -20px;
}

.aboutBanner2 .myslide {
	float: left;
	display: inline;
	width: 33.333%;
}

.aboutBanner2 .myslide .con {
	margin: 0 20px;
	padding: 67px 0 59px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 20px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.aboutLogo {
	width: 280px;
	height: 90px;
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(rgba(53, 174, 215, 0.1)),
			to(rgba(66, 192, 167, 0.1)));
	background-image: -webkit-linear-gradient(left,
			rgba(53, 174, 215, 0.1),
			rgba(66, 192, 167, 0.1));
	background-image: -moz-linear-gradient(left,
			rgba(53, 174, 215, 0.1),
			rgba(66, 192, 167, 0.1));
	background-image: linear-gradient(to right,
			rgba(53, 174, 215, 0.1),
			rgba(66, 192, 167, 0.1));
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	margin: 0 auto 56px;
}

.aboutLogo a {
	display: block;
	height: 90px;
	background-position: center center;
	background-repeat: no-repeat;
}

.aboutBanner2 .title {
	height: 40px;
	line-height: 40px;
	font-size: 22px;
	text-align: center;
	padding: 0 20px;
	overflow: hidden;
	font-weight: 500;
	margin-bottom: 5px;
	color: #333;
}

.aboutBanner2 .textBox {
	padding: 0 20px 0 58px;
}

.aboutBanner2 .textBox .text {
	height: 108px;
	overflow: hidden;
}

.aboutBanner2 .textBox .textC {
	line-height: 27px;
	font-size: 16px;
	color: #808080;
	padding-right: 38px;
}

.aboutBanner2 .con:hover {
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(rgba(53, 174, 215, 0.8)),
			to(rgba(66, 192, 167, 0.8)));
	background-image: -webkit-linear-gradient(left,
			rgba(53, 174, 215, 0.8),
			rgba(66, 192, 167, 0.8));
	background-image: -moz-linear-gradient(left,
			rgba(53, 174, 215, 0.8),
			rgba(66, 192, 167, 0.8));
	background-image: linear-gradient(to right,
			rgba(53, 174, 215, 0.8),
			rgba(66, 192, 167, 0.8));
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	box-shadow: 0 3px 7px rgba(255, 255, 255, 0.1);
}

.aboutBanner2 .con:hover .aboutLogo {
	background: #fff;
}

.aboutBanner2 .con:hover .textC {
	color: #fff;
}

.aboutBanner2 .con:hover .title {
	color: #fff;
}

.aboutColumn3 {
	position: relative;
	height: 690px;
	overflow: hidden;
}

.aboutColumn3 .aboutTitleBox {
	padding-top: 46px;
}

.aboutCulture {
	padding-top: 28px;
	overflow: hidden;
}

.aboutCultureDl {
	overflow: hidden;
	height: 434px;
	margin: 0 -57px;
}

.aboutCultureDl dd {
	float: left;
	display: inline;
	width: 20%;
	height: 100%;
	position: relative;
}

.aboutCultureDl dd .conBox {
	margin: 0 57px;
	position: relative;
	height: 100%;
}

.aboutCultureDl dd .con {
	position: absolute;
	width: 231px;
	height: 200px;
	top: auto;
	bottom: 0;
	left: 0;
	z-index: 2;
}

.aboutCultureDl dd.odd .con {
	top: 40px;
	bottom: auto;
}

.aboutCultureDl dd .title {
	height: 42px;
	line-height: 42px;
	font-size: 22px;
	color: #333;
	text-align: center;
	overflow: hidden;
	padding: 0 38px;
	margin-bottom: 8px;
}

.aboutCultureDl dd .text {
	height: 40px;
	line-height: 20px;
	font-size: 16px;
	color: #808080;
	text-align: center;
	overflow: hidden;
	padding: 0 38px;
}

.aboutCultureDl dd.odd::before {
	display: block;
	content: "";
	position: absolute;
	width: 358px;
	height: 197px;
	top: 40px;
	overflow: hidden;
}

.aboutCultureDl dd.odd::after {
	display: block;
	content: "";
	position: absolute;
	width: 355px;
	height: 200px;
	top: 100px;
	right: -231px;
	background: #000;
}

.aboutCultureDl dd.odd.dd2::before {
	left: -232px;
	background: url(../images/whLine1.png) top right no-repeat;
}

.aboutCultureDl dd.odd.dd4::before {
	left: -222px;
	top: 42px;
	background: url(../images/whLine3.png) top right no-repeat;
}

.aboutCultureDl dd.odd.dd2::after {
	right: -297px;
	top: 139px;
	background: url(../images/whLine2.png) top left no-repeat;
}

.aboutCultureDl dd.odd.dd4::after {
	right: -297px;
	top: 139px;
	background: url(../images/whLine4.png) top left no-repeat;
}

.aboutCultureDl dd .conIcon {
	position: absolute;
	width: 80px;
	height: 80px;
	top: -40px;
	left: 22px;
	border-radius: 80px;
	line-height: 80px;
	text-align: center;
}

.aboutCultureDl dd .conIcon span {
	display: block;
	width: 80px;
	line-height: 80px;
	font-size: 40px;
	color: #fff;
}

.aboutCultureDl dd.dd1 .conIcon {
	background: #24d399;
}

.aboutCultureDl dd.dd2 .conIcon {
	background: #6ecafa;
}

.aboutCultureDl dd.dd3 .conIcon {
	background: #febf59;
}

.aboutCultureDl dd.dd4 .conIcon {
	background: #b1e03f;
}

.aboutCultureDl dd.dd5 .conIcon {
	background: #f8aaad;
}

/* ==================== 关于汉盟 end ==================== */
/* ==================== 加入汉盟 start ==================== */
.joinColumn1 {
	position: relative;
	height: 710px;
	overflow: hidden;
}

.joinColumn1 .aboutTitleBox {
	padding-top: 36px;
}

.jionDl1 {
	position: relative;
	height: 475px;
	overflow: hidden;
	margin-top: 30px;
	border-radius: 20px;
}

.jionDl1 dd {
	float: left;
	display: inline;
	width: 30.625%;
	height: 100%;
	transition: all 0.35s ease-in;
	-webkit-transition: all 0.35s ease-in;
	overflow: hidden;
}

.jionDl1 dd.hover {
	width: 69.375%;
}

.jionDl1 dd .con {
	position: relative;
	height: 100%;
}

.jionDl1 dd .con .pic {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.jionDl1 dd .con .pic::before {
	padding-top: 0;
}

.jionDl1 dd .con .pic img {
	object-position: left center;
}

.jionDl1 dd .con .conBox {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

/* .jionDl1 dd .con .conBox::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/COLORbG.png) bottom left no-repeat;
} */

.jionDl1 dd .con .conText {
	position: relative;
	height: 100%;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	padding-left: 50px;
}

.jionDl1 dd .con .title {
	padding-top: 43px;
	position: relative;
}

.jionDl1 dd .con .title span {
	display: block;
	height: 66px;
	line-height: 33px;
	width: 45px;
	font-size: 20px;
	color: #333;
	padding-bottom: 15px;
	position: relative;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.jionDl1 dd .con .title span::before {
	display: block;
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	left: 0;
	bottom: 0;
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(#34adda),
			to(#42c0a5));
	background-image: -webkit-linear-gradient(left, #34adda, #42c0a5);
	background-image: -moz-linear-gradient(left, #34adda, #42c0a5);
	background-image: linear-gradient(to right, #34adda, #42c0a5);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	animation-delay: 0.3s;
}

.jionDl1 dd .con .text {
	padding-top: 16px;
	width: 0;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	animation-delay: 0.5s;
}

.jionDl1 dd .con .text span {
	line-height: 30px;
	overflow: hidden;
	color: #808080;
	font-size: 0;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	animation-delay: 0.8s;
	opacity: 0;
}

.jionDl1 dd .con .textIcon {
	position: absolute;
	width: 100%;
	height: 45px;
	left: 0;
	bottom: 62px;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	animation-delay: 1s;
	padding-left: 50px;
}

.jionDl1 dd .con .textIcon span {
	font-size: 40px;
	color: #3dc9bd;
}
.jionDl1 dd.hover .con .title {
	text-align: left;
}

.jionDl1 dd.hover .con .title span {
	margin: 0 0;
}

.jionDl1 dd.hover .con .conBox::before {
	visibility: hidden;
	opacity: 0;
}

.jionDl1 dd.hover .con .text {
	width: 340px;
}

.jionDl1 dd.hover .con .text span {
	font-size: 16px;
	opacity: 1;
}
.joinColumn2 {
	position: relative;
	height: 687px;
	overflow: hidden;
	background: #ffffff;
}

.joinColumn2Box {
	position: relative;
	width: 100%;
	height: 440px;
}

.joinColumn2L {
	position: absolute;
	width: 57%;
	bottom: 40px;
	left: 0;
	top: 0;
	border-radius: 30px 0 30px 0;
	overflow: hidden;
	background: url(../images/joinBg1.jpg) center center no-repeat;
}

.joinColumn2R {
	position: absolute;
	width: 47%;
	top: 40px;
	right: 0;
	bottom: 0;
	border-radius: 30px 0 30px 0px;
	overflow: hidden;
	z-index: 2;
}

.joinColumn2R .pic {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.joinColumn2R .pic::before {
	padding-top: 0;
}

.joinColumn2C {
	position: absolute;
	right: 6.5789%;
	left: 0;
	top: 0;
	bottom: 0;
}

.joinColumn2_dl {
	padding: 0 25px;
}

.joinColumn2_dl dd {
	float: left;
	display: inline;
	width: 25%;
	padding: 15px 0;
}

.joinColumn2_dl dd .con {
	margin: 0 25px;
	overflow: hidden;
}

.joinColumn2_dl dd .conIcon {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.2);
	text-align: center;
	line-height: 64px;
}

.joinColumn2_dl dd .conIcon span {
	font-size: 30px;
	color: #fff;
}

.joinColumn2_dl dd .text {
	overflow: hidden;
	padding: 0 10px;
	height: 64px;
	line-height: 64px;
	font-size: 16px;
	color: #fff;
}

.joinColumn3 {
	position: relative;
	height: 657px;
	overflow: hidden;
}

.joinTabTitle {
	text-align: center;
}

.joinTabTitle_dl {
	display: inline-block;
}

.joinTabTitle_dl dd {
	float: left;
	display: inline;
	height: 40px;
	line-height: 40px;
	margin: 0 10px;
}

.joinTabTitle_dl dd a {
	display: block;
	padding: 0 47px;
	height: 40px;
	line-height: 40px;
	background: #f9f9f9;
	border-radius: 0 20px 0 20px;
	font-size: 14px;
	color: #666;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.joinTabTitle_dl dd.hover a {
	color: #ffffff;
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(#34adda),
			to(#42c0a5));
	background-image: -webkit-linear-gradient(left, #34adda, #42c0a5);
	background-image: -moz-linear-gradient(left, #34adda, #42c0a5);
	background-image: linear-gradient(to right, #34adda, #42c0a5);
}

.joinTabC {
	padding: 20px 0 420px;
	position: relative;
}

.joinBannerC {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 20px;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.joinBannerC.active {
	opacity: 1;
	visibility: visible;
	z-index: 10;
}

.joinBanner .bd {
	margin: 0 -25px;
}

.joinBanner .myslide {
	float: left;
	display: inline;
	width: 33.333%;
	padding: 20px 0;
}

.joinBanner .con {
	margin: 0 25px;
	border-radius: 30px;
	overflow: hidden;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.joinBanner .con:hover {
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.joinBanner .con .pic::before {
	padding-top: 60%;
}

.joinBannerBtn {
	padding-top: 26px;
	height: 50px;
	line-height: 50px;
	position: relative;
	width: 205px;
	margin: 0 auto;
}

.joinMore {
	width: 48px;
	height: 48px;
	border: 1px solid #ddd;
	border-radius: 50px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.joinMore a {
	display: block;
	height: 50px;
	background: url(../images/moreW.png) center center no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.joinMore:hover a {
	background: url(../images/moreW_H.png) center center no-repeat;
}

.joinMore:hover {
	border-color: #42c0a5;
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(#34adda),
			to(#42c0a5));
	background-image: -webkit-linear-gradient(left, #34adda, #42c0a5);
	background-image: -moz-linear-gradient(left, #34adda, #42c0a5);
	background-image: linear-gradient(to right, #34adda, #42c0a5);
}

.joinBanner .prev {
	position: absolute;
	width: 48px;
	height: 48px;
	border: 1px solid #ddd;
	border-radius: 50px;
	left: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	bottom: 25px;
	margin-left: -100px;
	z-index: 5;
}

.joinBanner .prev::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/joinPrev.png) center center no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.joinBanner .next {
	position: absolute;
	width: 48px;
	height: 48px;
	border: 1px solid #ddd;
	border-radius: 50px;
	right: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	bottom: 25px;
	margin-right: -100px;
	z-index: 5;
}

.joinBanner .next::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/joinNext.png) center center no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.joinBanner .prev:hover,
.joinBanner .next:hover {
	border-color: #42c0a5;
	background-image: -webkit-gradient(linear,
			left top,
			right top,
			from(#34adda),
			to(#42c0a5));
	background-image: -webkit-linear-gradient(left, #34adda, #42c0a5);
	background-image: -moz-linear-gradient(left, #34adda, #42c0a5);
	background-image: linear-gradient(to right, #34adda, #42c0a5);
}

.joinBanner .prev:hover::before {
	background: url(../images/joinPrev_h.png) center center no-repeat;
}

.joinBanner .next:hover::before {
	background: url(../images/joinNext_h.png) center center no-repeat;
}

.joinColumn4 {
	background: #ffffff;
	padding-bottom: 80px;
}

.joinDl4 {
	overflow: hidden;
}

.joinDl4 dd {
	float: left;
	display: inline;
	width: 50%;
}

.joinDl4 dd .con {
	margin: 0 25px;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}

.joinDl4 dd .pic::before {
	padding-top: 45.1613%;
}

.joinDl4 dd .text {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.joinDl4 dd.dd1 .text {
	background: url(../images/jrzz1.png) right center no-repeat;
	text-align: right;
}

.joinDl4 dd.dd2 .text {
	background: url(../images/jrzz2.png) left center no-repeat;
}

.joinDl4 dd .text .title1 {
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	color: #fff;
	padding: 0 50px;
	margin-bottom: 60px;
	text-transform: capitalize;
}

.joinDl4 dd .text .title {
	height: 40px;
	line-height: 40px;
	font-size: 24px;
	color: #fff;
	padding: 0 50px;
	text-transform: capitalize;
}

.joinDl4 dd .more {
	position: absolute;
	width: 54px;
	height: 54px;
	bottom: 50px;
	left: auto;
	right: 50px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 1);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.joinDl4 dd .more a {
	display: block;
	height: 54px;
	background: url(../images/moreLeftwh.png) center center no-repeat;
}

.joinDl4 dd.dd2 .more {
	left: 50px;
	right: auto;
}

.joinDl4 dd.dd2 .more a {
	display: block;
	height: 54px;
	background: url(../images/moreRightwh.png) center center no-repeat;
}

.joinDl4 dd .more:hover {
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
	right: 60px;
}

.joinDl4 dd.dd2 .more:hover {
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
	left: 60px;
}

/* ==================== 加入汉盟 end ==================== */
/* ==================== 创新研发 start ==================== */
/* 第1通栏start */
.innovateC1 {
	overflow: hidden;
	padding: 40px 0 0px;
}

.innovateC1Con {
	padding: 30px 0 60px;
}

.columnSwiperw .inC1Next,
.columnSwiperw .inC1Prev {
	width: 260px;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	top: 0 !important;
}
.columnSwiperw .inC1Next{
	right: 20px !important;
}
.columnSwiperw .inC1Prev{
	left: 20px !important;
}

.columnSwiperw .inC1Next::after,
.columnSwiperw .inC1Prev::after {
	font-size: 0px;
	color: #fff;
}

.columnSwiperw {
	position: relative;
	overflow: hidden;
}

.columnSwiperw .bdCon {
	position: relative;
	padding-top: 31.25%;
	overflow: hidden;
	margin: 0 -20px;
}

.columnSwiperw .bd {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.columnSwiperw .swiper-slide {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.columnSwiperw .bd .con {
	margin: 0 20px;
	position: relative;
	height: 100%;
}

.columnSwiperw .bd .con .conBox {
	height: 100%;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.columnSwiperw .swiper-slide.swiper-slide-active .conBox {
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	width: 100%;
	height: 100%;
	position: relative;
}

.columnSwiperw .swiper-slide.swiper-slide-prev .conBox {
	position: absolute;
	width: 25.85%;
	height: 74%;
	right: 0;
	top: 13%;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.columnSwiperw .swiper-slide.swiper-slide-next .conBox {
	position: absolute;
	width: 25.85%;
	height: 74%;
	left: 0;
	top: 13%;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.columnSwiperw .picBox {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.columnSwiperw .picBox img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
}

.columnSwiperw .picBox::after {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.1);
}

.columnSwiperw .swiper-slide.swiper-slide-prev .conBox {
	border-radius: 20px 0 0 20px;
	overflow: hidden;
}

.columnSwiperw .swiper-slide.swiper-slide-next .conBox {
	border-radius: 0px 20px 20px 0px;
	overflow: hidden;
}

.columnSwiperw .swiper-slide.swiper-slide-active .conBox {
	border-radius: 20px;
	overflow: hidden;
}

.columnSwiperw .swiper-slide .text {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	perspective: 1000px;
	-webkit-perspective: 1000px;
}

.columnSwiperw .swiper-slide .text .textTitle {
	background: rgba(0, 0, 0, 0.6);
	height: 64px;
	line-height: 64px;
	font-size: 16px;
	color: #fff;
	padding: 0 15px;
	text-align: center;
	transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
	transform-origin: 0 100%;
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
}

.columnSwiperw .swiper-slide .text .textBox {
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	border-bottom-left-radius: 20px;
}

.columnSwiperw .swiper-slide .text .textLeft {
	transition: all .5s ease-in;
	-webkit-transition: all .5s ease-in;
	float: left;
	display: inline;
	visibility: hidden;
	opacity: 0;
	width: 42%;
	transition-delay: .2s;
}

.columnSwiperw .swiper-slide .text .textLeft .title1 {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition-delay: .2s;
}

.columnSwiperw .swiper-slide .text .title2 {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
}

.columnSwiperw .swiper-slide .text .titleLine {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition-delay: .3s;
}

.columnSwiperw .swiper-slide .text .itro {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition-delay: .4s;
}

.columnSwiperw .swiper-slide .text .textLeftRight {
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition-delay: .4s;
}

.columnSwiperw .swiper-slide.swiper-slide-active .textTitle {
	transform: rotateX(-180deg);
	-webkit-transform: rotateX(-180deg);
	width: 100%;
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .textBox {
	opacity: 1;
	visibility: visible;
	position: relative;
	z-index: 5;
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .textLeft {
	background: #42c0a5;
	background-image: -webkit-gradient(linear, left top, right top, from(#34adda), to(#42c0a5));
	background-image: -webkit-linear-gradient(left, #34adda, #42c0a5);
	background-image: -moz-linear-gradient(left, #34adda, #42c0a5);
	background-image: linear-gradient(to right, #34adda, #42c0a5);
	opacity: 1;
	visibility: visible;
	padding: 15px 30px 28px;
	box-sizing: border-box;
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .title {
	height: 64px;
	line-height: 64px;
	overflow: hidden;
}

.columnSwiperw .swiper-slide.swiper-slide-active .textLeft .title1 {
	height: 64px;
	line-height: 64px;
	font-size: 20px;
	color: #fff;
	visibility: visible;
	opacity: 1;
}

.columnSwiperw .swiper-slide.swiper-slide-active .textLeft .title2 {
	height: 64px;
	line-height: 64px;
	font-size: 16px;
	color: #afdce3;
	visibility: visible;
	opacity: 1;
	padding: 0 20px;
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .titleLine {
	height: 2px;
	width: 32px;
	visibility: visible;
	opacity: 1;
	background: rgba(255, 255, 255, 0.3);
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .itro {
	height: 26px;
	line-height: 26px;
	padding-top: 16px;
	visibility: visible;
	opacity: 1;
	font-size: 16px;
	color: #fff;
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .textLeftRight {
	position: absolute;
	right: 5.8%;
	visibility: visible;
	opacity: 1;
	bottom: 20px;
	height: 34px;
	line-height: 34px;
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .textLeftRight a {
	padding-right: 25px;
	height: 34px;
	line-height: 34px;
	background: url(../images/moreRightw.png) right center no-repeat;
	background-size: auto 12px;
	font-size: 16px;
	color: #fff;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.columnSwiperw .swiper-slide.swiper-slide-active .text .textLeftRight a:hover {
	font-weight: bold;
	padding-right: 35px;
}

.columnSwiperw .columnSwiperwDot {
	position: absolute;
	width: 80px !important;
	top: 50%;
	transform: translateY(-60%);
	z-index: 5;
	left: 20.625% !important;
}

.columnSwiperw .columnSwiperwDot .swiper-pagination-bullet {
	display: block;
	height: 30px;
	position: relative;
	line-height: 30px;
	width: 80px;
	overflow: hidden;
	background: none;
	margin: 7px 0;
	border-radius: 0;
	opacity: 1;
	outline: none;
}

.columnSwiperw .columnSwiperwDot .swiper-pagination-bullet em {
	float: left;
	display: inline;
	width: 10px;
	height: 10px;
	border: 1px solid #fff;
	margin-top: 9px;
	margin-left: 2px;
	font-style: normal;
	border-radius: 4px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	position: relative;
}

.columnSwiperw .columnSwiperwDot .swiper-pagination-bullet i {
	float: right;
	display: inline;
	overflow: hidden;
	height: 30px;
	line-height: 30px;
	text-align: right;
	font-style: normal;
	font-size: 0;
}

.columnSwiperw .columnSwiperwDot .swiper-pagination-bullet.swiper-pagination-bullet-active em {
	border-width: 2px;
	border-radius: 0;
}

.columnSwiperw .columnSwiperwDot .swiper-pagination-bullet.swiper-pagination-bullet-active em::after {
	display: block;
	content: "";
	position: absolute;
	width: 32px;
	height: 2px;
	right: -32px;
	bottom: -2px;
	background: #fff;
}

.columnSwiperw .columnSwiperwDot .swiper-pagination-bullet.swiper-pagination-bullet-active i {
	font-size: 16px;
	color: #fff;
}

/* 第1通栏end */
/* 第2通栏start */
.inColumn2 {
	background-repeat: no-repeat;
	background-size: cover;
	height: 846px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 50px 0 0;
	position: relative;
	overflow: hidden;
}
.inColumn2 ::-webkit-scrollbar {
	width: 2px;
	background: #eaeff2;
}

.inColumn2 ::-webkit-scrollbar-thumb {
	width: 2px;
	background: #4bad8d;
	border-radius: 8px;
}

.inColumn2 .aboutTitle {
	color: #fff;
}

.inColumn2 .aboutTitle1 {
	color: #dbdbdb;
}

.quanBg {
	width: 1788px;
	height: 246px;
	background: url(../images/innovate/quanBgh.png) no-repeat center right;
	background-size: 100%;
	position: absolute;
	top: 555px;
	right: 0;
	transform: scale(0.93);
	-webkit-transform: scale(0.93);
}
.inColumn2Con {
	position: relative;
}

.myRoundabout {
	position: absolute;
	top: 0px;
	left: 66px;
	width: 100%;
	height: 520px;
	transform:scale(0.93);
	-webkit-transform:scale(0.93);
	z-index: 3;
}

.myRoundabout li {
	width: 294px;
	height: 263px;
	cursor: pointer;
	z-index: 2;
}

.myRoundabout li img {
	width: 100%;
	height: 100%;
}

#bt-prev {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: absolute;
	top: 100px;
	left: -70px;
	background: rgba(95, 209, 180, 1) url(../images/joinPrev_h.png) no-repeat center center;
	background-size: 10px;
	z-index: 5;
	cursor: pointer;
	display: none;
}

#bt-next {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: absolute;
	top: 100px;
	right: -70px;
	background: rgba(95, 209, 180, 1) url(../images/joinNext_h.png) no-repeat center center;
	background-size: 10px;
	z-index: 5;
	cursor: pointer;
	display: none;
}

.inColumn2Con .conTentL {
	width: 494px;
	height: 406px;
	background: url(../images/innovate/inC2ConL.png) no-repeat left top;
	background-size: 100%;
	position: absolute;
	left: 0;
	top: -54px;
}

.inColumn2Con .conTentR {
	width: 494px;
	height: 406px;
	background: url(../images/innovate/inC2ConR.png) no-repeat left top;
	background-size: 100%;
	position: absolute;
	right: 0;
	top: -54px;
}
.inColumn2Con .conTentL,
.inColumn2Con .conTentR{
	overflow: hidden;
	z-index: 5;
}
.titleBtnBox {
	width: 100%;
	position: absolute;
	top: 100px;
}

.titleBtnBox .titleBtn {
	width: 220px;
	height: 60px;
	line-height: 60px;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	font-size: 0;
}

.titleBtnBox .titleBtn span {
	display: inline-block;
}

.titleBtnBox .titleBtn .span1 {
	font-size: 28px;
	font-weight: bold;
}

.titleBtnBox .titleBtn .span2 {
	font-size: 22px;
}

.titleBtnBox .titleBtn.btn1 {
	background: #14c1cc;
}

.titleBtnBox .titleBtn.btn2 {
	background: #0cda69;
}

.titleBtnBox .titleBtn.btn3 {
	background: #da4f4c;
}

.myRoundabout li .imgTitle {
	height: 60px;
	line-height: 60px;
	overflow: hidden;
	text-align: center;
	font-weight: bold;
	font-size: 28px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.myRoundabout li.roundabout-in-focus .imgTitle {
	visibility: hidden;
	opacity: 0;
}

.myRoundabout li.item1 .imgTitle {
	color: #14c1cc;
}

.myRoundabout li.item2 .imgTitle {
	color: #0cda69;
}

.myRoundabout li.item3 .imgTitle {
	color: #c13833;
}

.inTextDl1 {
	position: relative;
	top: 120px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 20px 60px;
	height: 265px;
	overflow-y: auto;

}

.inTextDl1 dd {
	line-height: 30px;
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
}

.inTextDl1 dd::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background: url(../images/innovate/em1.png) no-repeat;
	background-size: 12px;
	position: absolute;
	top: 9px;
	left: 0;
}

.inTextDl1 dd a {
	font-size: 16px;
	color: #333333;
}
.inTextDl1 dd a:hover{
	color: #4bad8d;
}
.inTextDl2 {
	position: relative;
	top: 120px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 20px 50px 0;
	height: 155px;
	overflow-y: auto;

}

.inTextDl2 dd {
	line-height: 45px;
	position: relative;
	padding-left: 25px;
}

.inTextDl2 dd::before {
	content: '';
	display: block;
	width: 8px;
	height: 2px;
	background: url(../images/innovate/em2.png) no-repeat;
	background-size: 8px 2px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -4px;
}

.inTextDl2 dd a {
	font-size: 16px;
	color: #333333;
}
.inTextDl2 dd a:hover{
	color: #4bad8d;
}
.conTentR .more {
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 60px;
	left: 0;
}

.conTentR .more a {
	display: inline-block;
	height: 48px;
	line-height: 48px;
	font-size: 16px;
	color: #ffffff;
	background: url(../images/new/titleBg.png) no-repeat;
	background-size: cover;
	padding: 0 46px;
	border-radius: 10px;
	overflow: hidden;
}
.conTentR .more a:hover{
	transform: translateY(-5px);
	-webkit-transform: translateY(-5px);
	opacity: 0.8;
}
.conTentR .more a span {
	display: inline-block;
	padding-right: 26px;
	background: url(../images/innovate/inMoreh.png) no-repeat center right;
}



/* 第2通栏end */
/* 第3通栏start */
.innovateC3 {
	overflow: hidden;
	padding: 40px 0 0px;
}

.innovateC3Con {
	overflow: hidden;
}

.innovateC3Banner {
	position: relative;
	padding: 30px 0 100px;
}

.innovateC3Banner .prev {
	display: block;
	width: 40px;
	height: 64px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -20px;
	z-index: 1;
	display: none;
}

.innovateC3Banner .next {
	display: block;
	width: 40px;
	height: 64px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -20px;
	z-index: 1;
	display: none;
}

.innovateC3Banner .slick-dots {
	position: absolute;
	bottom: 38px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 0;
	animation-delay: 1.5s;
}

.innovateC3Banner .slick-dots li {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	margin: 0 10px;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	background: rgba(0, 0, 0, 0.2);
}

.innovateC3Banner .slick-dots li.slick-active {
	background: rgba(75, 173, 141, 1);
}

.innovateC3Banner .slick-list {
	overflow: visible;
	margin: 0 -30px;
}

.innovateC3Banner .myslide {
	float: left;
	display: inline;
}

.innovateC3Banner .con {
	display: block;
	margin: 0 30px;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	overflow: hidden;
	height: 648px;
	position: relative;
	box-sizing: border-box;
	-webkitt-box-sizing: border-box;
	padding: 40px 30px 0 0;
}

.innovateC3Banner .con .picBox {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 89%;
}

.innovateC3Banner .con .pic {
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.innovateC3Banner .con .pic img {
	border-radius: 20px;
	overflow: hidden;
}

.innovateC3Banner .con .pic::before {
	padding-top: 100%;
}

.innovateC3Banner .con .text {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.innovateC3Banner .myslide:nth-child(3n+1) .con .text {
	background: rgba(254, 191, 89, 0.2);
}

.innovateC3Banner .myslide:nth-child(3n+2) .con .text {
	background: rgba(110, 202, 250, 0.2);
}

.innovateC3Banner .myslide:nth-child(3n+3) .con .text {
	background: rgba(95, 209, 180, 0.2);
}

.innovateC3Banner .myslide:nth-child(3n+1) .con:hover .text {
	background: rgba(254, 191, 89, 1);
}

.innovateC3Banner .myslide:nth-child(3n+2) .con:hover .text {
	background: rgba(110, 202, 250, 1);
}

.innovateC3Banner .myslide:nth-child(3n+3) .con:hover .text {
	background: rgba(95, 209, 180, 1);
}

.innovateC3Banner .con .text .textC {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 20px;
	z-index: 2;
}

.innovateC3Banner .con .text .icn {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 34px;
	margin-bottom: 23px;
	position: relative;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.innovateC3Banner .con .text .icn img {
	height: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	z-index: 2;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.innovateC3Banner .con .text .icn .img2 {
	z-index: 1;
}

.innovateC3Banner .myslide:nth-child(3n+1) .con .text .icn {
	background-color: #febf59;
}

.innovateC3Banner .myslide:nth-child(3n+2) .con .text .icn {
	background-color: #6ecafa;
}

.innovateC3Banner .myslide:nth-child(3n+3) .con .text .icn {
	background-color: #5fd1b4;
}

.innovateC3Banner .myslide .con:hover .text .icn {
	background-color: #fff;
}

.innovateC3Banner .myslide .con:hover .text .icn .img2 {
	z-index: 3;
}

.innovateC3Banner .con .text .title {
	font-size: 22px;
	color: #333333;
	line-height: 34px;
	height: 34px;
	overflow: hidden;
}

.innovateC3Banner .con:hover .text .title {
	color: #ffffff;
}

.innovateC3Banner .con .text .subTitle {
	font-size: 16px;
	color: #bbbbbb;
	line-height: 23px;
	height: 23px;
	overflow: hidden;
}

.innovateC3Banner .con:hover .text .subTitle {
	color: #ffffff;
}

.innovateC3Banner .con .text .more {
	margin: 30px 0;
}

.innovateC3Banner .con .text .more a {
	display: block;
	font-size: 16px;
	color: #aaaaaa;
	line-height: 30px;
	height: 30px;
	overflow: hidden;
	background: url(../images/innovate/inMore.png) no-repeat center right;
}

.innovateC3Banner .con:hover .text .more a {
	color: #ffffff;
	background: url(../images/innovate/inMoreh.png) no-repeat center right;
}

/* 第3通栏end */
/* ==================== 创新研发 end ==================== */
