@charset "UTF-8";

/* ========== 主体框架 start ========== */
/* ————— 头部 start ————— */
.top {
	position: fixed;
	top: 0;
	width: 100%;
	height: 94px;
	left: 0;
	z-index: 99;
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	background: #FFF;
	box-shadow: 0 2px 4px rgba(53, 53, 53, 0.08);
}

/* .top.hover{transform: translateY(-94px);-webkit-transform: translateY(-94px);} */
.topC {
	position: relative;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
}

.top .logo {
	margin-top: 24px;
}

.top .logo img {
	height: 46px;
}

.menuDl dd {
	display: inline;
	position: relative;
	float: left;
	margin-right: 50px;
	height: 30px;
	margin-top: 14px;
}

.menuDl dd:last-child {
	margin-right: 60px;
}

.menuDl dd .yj {
	height: 70px;
	line-height: 70px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.menuDl dd .yj a {
	display: block;
	font-size: 15px;
	color: #333;
	transition: all .3s linear;
	-webkit-transition: all .3s linear;
}

.menuDl dd .yj::before {
	display: block;
	content: '';
	width: 30px;
	height: 4px;
	background-color: #e60012;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: scale(0);
	margin-left: -15px;
	-webkit-transform: scale(0);
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
}

.menuDl dd.hover .yj::before {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.menuDl dd:hover .yj::before {
	transform: scale(0);
	-webkit-transform: scale(0);
}

.menuDl dd.hover .yj a {
	color: #e60012;
	font-weight: bold;
}

.menuDl dd .ej {
	position: absolute;
	left: 50%;
	top: 80px;
	width: 100%;
	min-width: 140px;
	opacity: 0;
	background: #fff;
	-webkit-transform: translateX(-50%);
	border-radius: 6px;
	box-shadow: 0 3px 20px -8px rgb(53 53 53 / 50%);
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	visibility: hidden;
	padding: 5px 0;
	z-index: 9999;
}

.menuDl dd .ej::before {
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	background-color: #fff;
	transform: rotate(90deg);
	-webkit-transform: rotate(45deg);
	position: absolute;
	top: -4px;
	left: 50%;
	margin-left: -5px;
}

.menuDl dd .ej.hover {
	top: 68px;
	opacity: 1;
	z-index: 1;
	visibility: visible;
}

.menuDl dd .ej a {
	display: block;
	width: 100%;
	line-height: 40px;
	text-align: center;
	color: #333;
	margin-bottom: 1px;
	font-size: 15px;
	position: relative;
	padding: 0 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
}

.menuDl dd .ej a:hover {
	color: #e60012;
	letter-spacing: 1px;
}

.menuDl dd .ej a:first-child {
	margin-bottom: 0;
	border-radius: 2px 2px 0 0;
}

.menuDl dd .ej a:last-child {
	margin-bottom: 0;
	border-radius: 0 0 2px 2px;
}

.topSearch {
	position: relative;
	top: 26px;
	width: 46px;
	height: 46px;
	z-index: 4;
}

.topSearch .searchBox {
	padding-left: 18px;
	width: 46px;
	height: 46px;
	line-height: 46px;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 23px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	background: #fff;
	overflow: hidden;
	background-color: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
	border: 1px solid #ececec;
}

.topSearch span {
	width: 44px;
	height: 44px;
	cursor: pointer;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	display: inline;
	float: right;
	background: url(../images/search.png) no-repeat center;
}

.topSearch .searchBox .inputBox {
	overflow: hidden;
	padding-top: 7px;
	position: relative;
}

.topSearch .searchBox input {
	border: none;
	display: block;
	width: 100%;
	height: 32px;
	line-height: 32px;
	color: #666;
	font-size: 14px;
	background: none;
}

.topSearch .searchBox .inputBox::before {
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}

.topSearch .searchBox input::-webkit-input-placeholder {
	color: #999;
	font-size: 14px;
	text-align: left;
}

.menuBtn .menubg {
	position: absolute;
	left: 50%;
	top: 65%;
	width: 250rem;
	padding-top: 250rem;
	margin-top: -125rem;
	margin-left: -125rem;
	background: rgba(2, 59, 8, 0.6);
	border-radius: 100%;
	transform: scale(0);
	-webkit-transform: scale(0);
	;
	transform-origin: center center;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1);
}

.menuBtn .menubg.active {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

.menuBox {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../test/menuBg.jpg) no-repeat center / cover;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
}

.menuBox.active {
	z-index: 999;
	opacity: 1;
	visibility: visible;
}

.menuBox .topC {
	position: relative;
	height: 100%;
}

.menuBox .menuBtn {
	position: absolute;
	top: 20px;
	right: 50px;
	z-index: 2;
}

.menuBox .menuLogo {
	position: absolute;
	top: 20px;
	left: 50px;
	z-index: 2;
}

.menuBox .menuLogo img {
	height: 52px;
}

.menuBox .menuBtn span {
	height: 2px;
	width: 22px;
}

.menuBox .menuBtn span.line1 {
	transform: rotateZ(45deg)translate(4px, 4px);
}

.menuBox .menuBtn span.line3 {
	display: none;
}

.menuBox .menuBtn span.line2 {
	transform: rotateZ(-45deg)translate(0px, 0px);
}

.menuBoxDl {
	height: 100%;
	position: relative;
	overflow: hidden;
	width: 1200px;
	margin: 0 auto;
}

.menuBoxDl dd {
	display: inline;
	float: left;
	width: 200px;
	height: 100%;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding-top: 25.6851%;
	text-align: center;
}

.menuBoxddBg {
	width: 200px;
	height: 100%;
	background: rgba(5, 251, 69, 0.1);
	position: absolute;
	left: 0;
	top: 0;
	ransition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	opacity: 0;
}

.menuBoxDl dd ul {
	position: relative;
	z-index: 2;
}

.menuBoxDl dd ul li {
	height: 38px;
	line-height: 38px;
}

.menuBoxDl dd ul li a {
	font-size: 16px;
	color: #FFF;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
}

.menuBoxDl dd ul li.title {
	margin-bottom: 23px;
}

.menuBoxDl dd ul li.title a {
	font-size: 20px;
	color: #FFF !important;
	font-weight: bold;
}

.menuBoxDl dd ul li a:hover {
	letter-spacing: 1px;
}

/* ————— 头部 end   ————— */
/* ————— indexBanner start ————— */
.indexBanner {
	position: relative;
	height: 100%;
}

.indexBanner .bd {
	height: 100%;
	overflow: hidden;
}

.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-size: cover;
	background-repeat: no-repeat;
	animation: kenburns-top linear;
}

.indexBanner .myslide a {
	display: block;
	height: 100%;
	width: 100%;
}

.indexBanner .slick-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0;
}

.indexBanner .slick-dots li {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin: 0 5px;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	text-align: center;
	border: 1px solid transparent;
}

.indexBanner .slick-dots li::before {
	display: block;
	content: '';
	width: 7px;
	height: 7px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.indexBanner .slick-dots li.slick-active {
	border-color: #fff;
}

.indexBanner .prev {
	width: 50px;
	height: 50px;
	background: rgb(0, 0, 0, 0.4) url(../images/bannerPrev.png) no-repeat center;
	position: absolute;
	left: 9.375%;
	top: 50%;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	margin-top: -25px;
}

.indexBanner .next {
	width: 50px;
	height: 50px;
	background: rgb(0, 0, 0, 0.4) url(../images/bannerNext.png) no-repeat center;
	position: absolute;
	right: 9.375%;
	top: 50%;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	margin-top: -25px;
}

.indexBanner .prev:hover {
	background-color: #FFF;
	background-image: url(../images/bannerPrevH.png);
}

.indexBanner .next:hover {
	background-color: #FFF;
	background-image: url(../images/bannerNextH.png);
}

.indexBanner .img {
	width: 1200px;
	position: absolute;
	left: 15%;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0;
	opacity: 0;
}

.indexBanner .img .imgItem img {
	overflow: hidden;
	display: inline-block;
	visibility: hidden;
}

.indexBanner .img .imgItem img.show {
	visibility: visible;
}

.indexcol1Bg {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}

.indexBanner .myslide.slick-active .indexcol1Bg {
	animation: changeScale2 5s forwards linear;
	-webkit-animation: changeScale2 5s forwards linear;
}

@keyframes changeScale2 {
	0% {
		transform: scale(1.2, 1.2);
		-webkit-transform: scale(1.2, 1.2);
	}

	100% {
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
	}
}

@-webkit-keyframes changeScale2

/* Safari 和 Chrome */
	{
	0% {
		transform: scale(1.2, 1.2);
		-webkit-transform: scale(1.2, 1.2);
	}

	100% {
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
	}
}

/* ————— indexBanner end ————— */
/* ————— 底部 start ————— */
/* 友情链接start */
.footer {
	background: #323232;
}

.ftNavBox {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ftNav {
	overflow: hidden;
}

.ftNav dd {
	display: inline;
	float: left;
	margin-right: 50px;
	height: 94px;
	line-height: 94px;
}

.ftNav dd a {
	font-size: 16px;
	color: #fff;
}

.footerC {
	padding: 50px 0 55px 0;
}

.footerCUp {
	overflow: hidden;
	margin-bottom: 40px;
}

.footerCUp .logo {
	margin: 12px 140px 0 0;
}

.footerCUp .logo img {
	height: 46px;
}

.footerCUp .textBox {
	overflow: hidden;
	padding-top: 10px;
}

.footerCUp .phone {
	background: url(../images/ftPhone.png) no-repeat center left;
	padding-left: 40px;
	height: 30px;
	line-height: 30px;
	margin-bottom: 20px;
}

.footerCUp .dz {
	line-height: 30px;
	font-size: 14px;
	color: #808080;
}

.footerEwm {
	overflow: hidden;
	margin-top: 10px;
}

.footerEwm dd {
	display: inline;
	float: left;
	margin-right: 20px;
}

.footerEwm dd:nth-child(2) {
	margin-right: 0;
}

.footerEwm dd .ewmImg {
	width: 104px;
	height: 104px;
	border-radius: 4px;
	background-color: #fff;
	overflow: hidden;
	margin-bottom: 16px;
}

.footerEwm dd .ewmImg img {
	width: 100%;
	height: 100%;
}

.footerEwm dd .text {
	text-align: center;
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	color: #808080;
}

.ftArchival {
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	color: #808080;
}

.ftArchival a {
	color: #808080;
	transition: all 100ms linear;
	-webkit-transition: all 100ms linear;
}

.ftArchival a.beian {
	padding-left: 27px;
	background: url(../images/common/beian.png) no-repeat center left;
	margin-left: 10px;
}

.ftArchival a:hover {
	color: #fff;
}

.backTop {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background: #e60012 url(../images/backTop.png) no-repeat center center;
	cursor: pointer;
	margin-top: 25px;
	position: relative;
}

.backTop::before {
	content: "";
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	background: rgba(255, 255, 255, .8);
	position: absolute;
	animation: circle-opacity 2s infinite;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0, 0);
}

@keyframes circle-opacity {
	from {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}

	to {
		opacity: 0;
		transform: translate(-50%, -50%) scale(2);
	}
}

/* ————— 底部 end   ————— */
/* ========== 主体框架 end ========== */

/* ========== 内层框架 start ========== */
/* ————— subBanner start ————— */
.subBanner {
	position: relative;
	width: 100%;
	margin-top: 94px;
	overflow: hidden;
}

.subBanner:before {
	display: block;
	content: '';
	padding-top: 29.1666%;
}

.subBanner img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: all 3s ease;
	-webkit-transition: all 3s ease;
}

.subBanner.on img {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.subBanner .text {
	width: 100%;
	position: absolute;
	bottom: 36px;
	left: 0;
}

.subBanner .cnTitle {
	font-size: 26px;
	color: #ffffff;
	line-height: 32px;
	position: relative;
}

/* ————— subBanner end ————— */
/* ————— 当前位置 start ————— */
.locationBox {
	clear: both;
	width: 100%;
	height: 80px;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
}

.location {
	height: 80px;
	position: relative;
}

.location::before {
	display: block;
	content: '';
	width: 8px;
	height: 30px;
	background-color: #e60012;
	position: absolute;
	top: -20px;
	left: 0;
}

.location a.home {
	background: url(../images/common/home.png) no-repeat center;
	width: 20px;
	height: 80px;
	padding-left: 0;
}

.location a {
	display: inline;
	float: left;
	height: 80px;
	line-height: 80px;
	padding-left: 14px;
	margin-right: 10px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url(../images/common/icon8.png);
	color: #999;
	font-size: 14px;
}

.location a:hover {
	color: #e60012
}

.location a.hover {
	color: #e60012
}

.subNavBox {
	margin-right: -14px;
	position: relative;
	margin-top: 20px;
}

.subNav::after {
	display: block;
	content: '';
	clear: both;
	visibility: hidden;
}

.subNav a {
	display: inline;
	float: left;
	line-height: 40px;
	height: 40px;
	color: #333;
	font-size: 14px;
	margin-right: 14px;
	border-radius: 20px;
	padding: 0 17px;
	transition: all 100ms linear;
	-webkit-transition: all 100ms linear;
}

.subNav a.hover {
	color: #fff;
	background-color: #e60012;
}

.subNav a:hover {
	color: #fff;
	background-color: #e60012;
}

/* ————— 当前位置 end ————— */
/* ————— 三级栏目 start ————— */
.sjMenu {
	text-align: center;
	font-size: 0;
}

.sjMenu a {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 30px;
	color: #333;
	border: 1px solid #fff;
	border-radius: 32px;
	font-size: 14px;
	margin: 0 5px;
	background: #FFF;
}

.sjMenu a:hover {
	background: #015293;
	color: #FFF;
	border-color: #015293;
}

.sjMenu a.hover {
	background: #015293;
	color: #FFF;
	border-color: #015293;
}

/* ————— 三级栏目 end ————— */
/* ————— 页码 start ————— */
.page {
	text-align: center;
	clear: both;
	font-size: 14px;
}

.page a {
	display: inline-block;
	overflow: hidden;
	width: 40px;
	height: 40px;
	color: #999999;
	border-radius: 50%;
	line-height: 40px;
	background: #fff;
	margin: 0 5px;
	border: 1px solid #ededed;
	font-size: 14px;
}

.page span {
	display: inline-block;
	padding: 6px 2px;
	position: relative;
	top: -15px;
}

.page a:hover {
	background: #e60012;
	color: #fff;
}

.page a.hover {
	background: #e60012;
	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: 40px;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.firstPage div {
	background-image: url(../images/common/page/firstPage.png)
}

.page a.prevPage div {
	background-image: url(../images/common/page/prevPage.png)
}

.page a.nextPage div {
	background-image: url(../images/common/page/nextPage.png)
}

.page a.lastPage div {
	background-image: url(../images/common/page/lastPage.png)
}

.page a.firstPage:hover div {
	background-image: url(../images/common/page/firstPageh.png)
}

.page a.prevPage:hover div {
	background-image: url(../images/common/page/prevPageh.png)
}

.page a.nextPage:hover div {
	background-image: url(../images/common/page/nextPageh.png)
}

.page a.lastPage:hover div {
	background-image: url(../images/common/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/common/page/firstPage.png)
}

.page a.prevPage.disabled div {
	background-image: url(../images/common/page/prevPage.png)
}

.page a.nextPage.disabled div {
	background-image: url(../images/common/page/nextPage.png)
}

.page a.lastPage.disabled div {
	background-image: url(../images/common/page/lastPage.png)
}

/* ————— 页码 end ————— */
/* ————— 弹窗 start ————— */
.aykj-recruitTc .layui-layer-btn {
	text-align: center;
}

.aykj-recruitTc .layui-layer-btn a {
	height: 38px;
	line-height: 38px;
	padding: 0 40px;
	font-size: 14px;
}

.aykj-recruitTc .layui-layer-btn .layui-layer-btn0 {
	background: #e60012;
	color: #FFF;
	border-color: #e60012;
}

.aykj-recruitTc .layui-layer-btn .layui-layer-btn1 {
	background: #ddd;
	color: #8b8b8b;
	border-color: #ddd;
}

.aykj-alert .layui-layer-btn .layui-layer-btn0 {
	background: #e60012;
	border-color: #e60012;
}

/* ————— 弹窗 end ————— */
/* ========== 内层框架 end ========== */

/* ========== 首页 start ========== */
/* ————— 公共部分 start ————— */
#fullpage {
	transition: all 1s cubic-bezier(0.47, 0, 0, 0.6) !important;
	transition-delay: 0.3s !important;
}

.section {
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.animHide {
	opacity: 0;
}

.animShow {
	opacity: 1;
}

#fp-nav {
	display: none;
}

.animated {
	-webkit-animation-duration: 1.3s !important;
	animation-duration: 1.3s !important;
}

#fp-nav.hover {
	opacity: 0;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
	width: 10px !important;
	height: 10px !important;
	background: none !important;
	border: 1px solid #fff !important;
	margin: -6px 0 0 -6px !important;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
	border-color: #029c2a !important;
	background: #029c2a !important;
}

#fp-nav ul li a:hover span {
	background: #029c2a !important;
	border-color: #029c2a !important;
}

#fp-nav ul li,
.fp-slidesNav ul li {
	margin: 15px !important;
}

#fp-nav ul li a.hover1 span {
	border-color: #666 !important;
}

#fp-nav ul li a em {
	font-style: normal;
	color: #029c2a;
	font-size: 15px;
	position: absolute;
	top: -2px;
	left: -80px;
	opacity: 0;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
	text-align: right;
}

#fp-nav ul li:last-child a em {
	left: -50px;
}

#fp-nav ul li a.active em,
#fp-nav ul li a:hover em {
	opacity: 1;
}

.downBtn {
	position: absolute;
	bottom: -3px;
	left: 9.375%;
	cursor: pointer;
	z-index: 3;
	width: 125px;
	height: 34px;
	background: url(../images/shubiaoBg.png)no-repeat center / cover;
}

.downBtn::before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: url(../images/shubiao.png) no-repeat center left 53px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.textCenter {
	text-align: center;
}

.indexTitle.wc .cnTitle {
	color: #fff;
}

.indexTitle.wc .enTitle {
	color: rgba(255, 255, 255, 0.2);
}

.indexTitle .cnTitle {
	height: 50px;
	line-height: 50px;
	color: #333;
	font-size: 35px;
}

.indexTitle .cnTitle span {
	color: #e60012;
}

.indexTitle.wc .cnTitle span {
	color: #fff;
}

.indexTitle .enTitle {
	line-height: 34px;
	color: #e5e5e5;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: bold;
}

.indexMore.textCenter {
	text-align: center;
}

.indexMore a {
	width: 148px;
	height: 48px;
	border-radius: 25px;
	border: 1px solid #999;
	text-align: center;
	font-size: 14px;
	color: #999;
	line-height: 48px;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.indexMore a::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	inset: 0 0 0 0;
	transition: transform .3s ease-out;
	z-index: 1;
	transform: scaleX(0);
	transform-origin: bottom right;
	background: #e60012;
	border-radius: 25px;
}

.indexMore a:hover::before {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.indexMore a span {
	z-index: 2;
	position: relative;
	display: inline-block;
	vertical-align: top;
	color: #999;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
}

.indexMore a em {
	width: 14px;
	height: 50px;
	background: url(../images/indexMore1.png) no-repeat center;
	display: inline-block;
	vertical-align: top;
	margin-left: 20px;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
	margin-top: -1px;
	z-index: 2;
	position: relative;
}

.indexMore a:hover {
	border-color: transparent;
	color: #e60012;
}

.indexMore a:hover span {
	color: #fff;
}

.indexMore a:hover em {
	background-image: url(../images/indexMoreH.png);
}

.indexMore.wc a {
	background: #fff;
	border-color: transparent;
	color: #e60012;
}

.indexMore.wc a::before {
	display: none;
}

.indexMore.wc a span {
	color: #e60012;
}

.indexMore.wc a em {
	background-image: url(../images/indexMore.png);
	transition: all 200ms ease-out;
	-webkit-transition: all 200ms ease-out;
}

.indexMore.wc a:hover em {
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
}

.indexMore a.hover {
	border-color: transparent;
	color: #fff;
	background: #e60012;
}

.indexMore a.hover span {
	color: #fff;
}

.indexMore a.hover em {
	background-image: url(../images/indexMoreH.png);
	transition: all 200ms ease-out;
	-webkit-transition: all 200ms ease-out;
}

.indexMore a.hover:hover em {
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
}

/* ————— 公共部分 end ————— */
/* ————— 第1通栏 start ————— */
.column1 {
	position: relative;
}

.column1 .wrap {
	position: relative;
}

.column1C {}

.column1 .text {
	padding-top: 100px;
	width: 35.8974%;
}

.column1 .text .titleBox {
	margin-bottom: 26px;
}

.column1 .text .title {
	line-height: 60px;
	color: #333;
	font-size: 25px;
	position: relative;
	display: inline-block;
}

.column1 .text .title::before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #e60012;
}

.column1 .text .info {
	line-height: 24px;
	color: #666;
	font-size: 14px;
	margin-bottom: 44px;
	overflow: hidden;
}

.c1List {
	overflow: hidden;
	padding-top: 65px;
}

.c1List dd {
	display: inline;
	float: left;
	margin-right: 60px;
}

.c1List dd .number {
	margin-bottom: 11px;
	font-size: 0;
}

.c1List dd .number span {
	font-size: 40px;
	color: #e60012;
	height: 42px;
	line-height: 42px;
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.c1List dd .number em {
	font-size: 18px;
	color: #e60012;
	height: 35px;
	width: 35px;
	line-height: 35px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.05);
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
	font-style: normal;
}

.c1List dd .info {
	height: 20px;
	line-height: 20px;
	color: #888;
	font-size: 14px;
}

.column1 .leftImg {
	position: absolute;
	width: 30vw;
	height: 30vw;
	left: -15vw;
	bottom: -22vw;
	clip-path: circle(0 at 15vw 15vw);
	transition: clip-path 1.3s ease-in-out;
}

.column1 .leftImg .imgBox {
	width: 30vw;
	height: 30vw;
	position: absolute;
	top: 0;
	left: 0;
	background-position: top right -50px;
	background-repeat: no-repeat;
	background-size: contain;
}

.column1 .leftImg.hover {
	clip-path: circle(15vw at 15vw 15vw);
}

.column1 .rightImg {
	position: absolute;
	left: 48vw;
	bottom: calc(100vh - 48vw);
	width: 78vw;
	height: 78vw;
	clip-path: circle(0vw at 60vw 20vw);
	overflow: hidden;
	transition: clip-path 1.3s ease-in-out;
	backface-visibility: hidden;
}

.column1 .rightImg .imgBox {
	height: 52vw;
	position: absolute;
	left: 0;
	bottom: -20px;
	width: 55vw;
	background-repeat: no-repeat;
	background-position: center bottom;
	;
	backface-visibility: hidden;
	background-size: cover;
}

.column1 .rightImg.hover {
	clip-path: circle(39vw at 39vw 39vw);
}

.column1 .rightImg.hover1 {
	transition: clip-path 1s ease-out;
}

.kjrkList {
	position: absolute;
	top: 11.6875%;
	right: 0;
	overflow: hidden;
	z-index: 2;
}

.kjrkList dd {
	display: inline;
	float: left;
	width: 162px;
	height: 165px;
	margin-right: 20px;
}

.kjrkList dd:last-child {
	margin-right: 0;
}

.kjrkList dd a {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(42, 137, 208, 0.3);
	border-radius: 10px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 500ms linear;
	-webkit-transition: all 500ms linear;
}

.kjrkList dd a::before {
	display: block;
	content: '';
	width: 200%;
	height: 200%;
	border-radius: 50%;
	background-color: #40d466;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	-webkit-transform: translate(-50%, -50%) scale(0);
	transition: all 500ms linear;
	-webkit-transition: all 500ms linear;
	z-index: -1;
}

.kjrkList dd:hover a::before {
	transform: translate(-50%, -50%) scale(1);
	-webkit-transform: translate(-50%, -50%) scale(1);
}

.kjrkList dd a .icn {
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	z-index: 2;
	position: relative;
}

.kjrkList dd:nth-child(1) a .icn {
	background-image: url(../images/c1Icn1.png);
}

.kjrkList dd:nth-child(2) a .icn {
	background-image: url(../images/c1Icn2.png);
}

.kjrkList dd:nth-child(3) a .icn {
	background-image: url(../images/c1Icn3.png);
}

.kjrkList dd a .title {
	height: 30px;
	line-height: 30px;
	font-size: 22px;
	color: #f9fefb;
	font-weight: bold;
}

.kjrkList dd:hover:nth-child(1) a .icn {
	background-image: url(../images/c1Icn1H.png);
}

.kjrkList dd:hover:nth-child(2) a .icn {
	background-image: url(../images/c1Icn2H.png);
}

.kjrkList dd:hover:nth-child(3) a .icn {
	background-image: url(../images/c1Icn3H.png);
}

.kjrkList dd:hover a {
	background: none;
}

/* ————— 第1通栏 end ————— */
/* ————— 第2通栏 start ————— */
.section3 .indexTitle {
	position: absolute;
	top: 70px;
	left: 9.375%;
	z-index: 3;
}
.section3Con{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
}
.bTab {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.bTab .swiper-wrapper{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 3;
}
.bTab .swiper-slide {
	width: 25%;
	height: 100%;
	text-align: center;
	position: relative;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	display: inline;
	float: left;
}
.bTab .swiper-slide::before{
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255,255,255,0.08);
}
.bTab .swiper-slide .text {
	position: absolute;
	left: 0;
	width: 100%;
	top: 55%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%)transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	padding-top: 94px;
}

.bTab .swiper-slide .icn {
	height: 40px;
	margin: 0 auto;
	margin-bottom: 20px;
	position: relative;
}

.bTab .swiper-slide .icn img {
	height: 40px;
}

.bTab .swiper-slide .title {
	font-size: 22px;
	height: 38px;
	line-height: 38px;
	color: #fff;
}

.bTab .swiper-slide .titlec {
	font-size: 14px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.2);
	overflow: hidden;
	margin-bottom: 50px;
	font-weight: bold;
	text-transform: uppercase;
}

.bTab .swiper-slide .indexMore {
	transform: translateY(20px);
	opacity: 0;
	-webkit-transform: translateY(20px);
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	visibility: hidden;
}

.bTab .swiper-slide:hover {
	background: rgb(0, 0, 0, 0.3);
}

.bTab .swiper-slide:hover .text {
	transform: translateY(-80%);
	-webkit-transform: translateY(-80%)
}

.bTab .swiper-slide:hover .indexMore {
	transform: translateY(0);
	opacity: 1;
	-webkit-transform: translateY(0);
	visibility: visible;
}
.bTab .swiper-button-next,
.bTab .swiper-button-prev{
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: 50px;
	border-radius: 50px;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	z-index: 5;
	cursor: pointer;
}
.bTab .swiper-button-next{
	right: 50%;
	margin-right: -64px;
	background: rgba(0,0,0,0.4) url(../images/bannerNext.png) center center no-repeat;
}
.bTab .swiper-button-prev{
	left: 50%;
	margin-left: -64px;
	background: rgba(0,0,0,0.4) url(../images/bannerPrev.png) center center no-repeat;
}
.bTab .swiper-button-next:hover{
	background: rgba(255,255,255) url(../images/bannerNext_h.png) center center no-repeat;
	box-shadow: 0 3px 7px rgba(0,0,0,0.08);
}
.bTab .swiper-button-prev:hover{
	background: rgba(255,255,255) url(../images/bannerPrev_h.png) center center no-repeat;
	box-shadow: 0 3px 7px rgba(0,0,0,0.08);
}
.bg1Swiper,
.bg1Swiper .swiper-wrapper,
.bg1Swiper .swiper-slide {
	height: 100% !important;
	width: 100% !important;
}

.bg1Swiper {
	position: absolute !important;
	top: 0;
	left: 0;
}

.bg1Swiper .swiper-wrapper {
	transform: translate(1px) !important;
	/*解决swiper第一个不改变*/
	margin-left: -1px;
	left: 0 !important;
}

.bg1Swiper .swiper-slide {
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	transform: scale(1.3);
	transition: 1.5s ease-in-out;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg1Swiper .swiper-slide-active {
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 2;
	transform: scale(1);
}

/* ————— 第2通栏 end ————— */
/* ————— 第3通栏 start ————— */
.indexNewsSlick {
	position: relative;
	height: 430px;
	overflow: hidden;
	margin-bottom: 50px;
}

.section4 .titleBox {
	overflow: hidden;
	margin-bottom: 50px;
	padding-top: 60px;
}

.section4 .titleBox .subTitle {
	height: 40px;
	line-height: 40px;
	color: #333;
	font-size: 25px;
}

.indexNewsSlick .bd {
	height: 100%;
}

.indexNewsSlick .slick-list {
	height: 100%;
	margin-right: -40px;
}

.indexNewsSlick .slick-track {
	height: 100%;
	width: 100%;
}

.indexNewsSlick .slickCon {
	height: 100%;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-right: 40px;
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
}

.c3Btn {
	font-size: 0;
	margin-top: 50px;
}

.c3Btn .prev {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #e60012 url(../images/bannerPrev.png) no-repeat center center;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
	z-index: 2;
	cursor: pointer;
	display: inline-block;
	border-radius: 0 0 0 10px;
}

.c3Btn .next {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #e60012 url(../images/bannerNext.png) no-repeat center center;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
	z-index: 2;
	cursor: pointer;
	display: inline-block;
	border-radius: 0 10px 0 0;
}

.c3Btn .prev:hover {
	background-color: #d20414;
}

.c3Btn .next:hover {
	background-color: #d20414;
}

.indexNewsSlick .title {
	line-height: 30px;
	height: 30px;
	overflow: hidden;
	margin-bottom: 8px;
	font-size: 18px;
	color: #333;
	font-weight: bold;
}

.indexNewsSlick .title a {}

.indexNewsSlick .info {
	font-size: 14px;
	color: #808080;
	line-height: 25px;
	height: 50px;
	overflow: hidden;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
}

.indexNewsSlick .time {
	font-size: 14px;
	color: #cccccc;
	margin-bottom: 10px;
	height: 20px;
	line-height: 20px;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
	font-weight: bold;
	font-weight: bold;
}

.indexNewsSlick .pic {
	margin-bottom: 30px;
	transition: 500ms ease;
	-webkit-transition: 500ms ease;
	overflow: hidden;
}

.indexNewsSlick .pic::before {
	padding-top: 66.6667%;
}

.indexNewsSlick .text {
	padding: 0 20px;
}

.indexNewsSlick .slickConH {
	width: 100%;
	height: 100%;
	background: url(../test/c3ddbg.jpg) no-repeat center / cover;
	border-radius: 10px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: 500ms ease-out;
	-webkit-transition: 500ms ease-out;
}

.indexNewsSlick .slickConH .time {
	font-size: 14px;
	color: #fff;
	margin-bottom: 44px;
	line-height: 20px;
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	font-weight: bold;
	font-weight: bold;
	padding: 37px 20px 24px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition-delay: 0.5s;
}

.indexNewsSlick .textBox {
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all 400ms linear;
	-webkit-transition: all 400ms linear;
	transition-delay: 0.3s;
	padding: 0 20px;
}

.indexNewsSlick .slickConH .title {
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 12px;
}

.indexNewsSlick .slickConH .title a {
	color: #fff;
}

.indexNewsSlick .slickConH .info {
	font-size: 14px;
	color: #fff;
	line-height: 25px;
	height: 50px;
	overflow: hidden;
	margin-bottom: 60px;
}

.indexNewsSlick .slickCon:hover .slickConH {
	opacity: 1;
	visibility: visible;
}

.indexNewsSlick .slickCon:hover .slickConH .textBox {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

/* ————— 第3通栏 end ————— */
/* column3 start */


/* column3 end */
/* ————— 第4通栏 start ————— */
.section3 .indexTitle {
	position: absolute;
	top: 120px;
	left: 9.375%;
	z-index: 3;
}

.bTab {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}

.bTab dd {
	width: 25%;
	height: 100%;
	text-align: center;
	position: relative;
	transition: all .4s linear;
	-webkit-transition: all .4s linear;
	display: inline;
	float: left;
}

.bTab dd .text {
	position: absolute;
	left: 0;
	width: 100%;
	top: 55%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%)transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
}

.bTab dd .icn {
	height: 40px;
	margin: 0 auto;
	margin-bottom: 20px;
	position: relative;
}

.bTab dd .icn img {
	height: 40px;
}

.bTab dd .title {
	font-size: 22px;
	height: 38px;
	line-height: 38px;
	color: #fff;
}

.bTab dd .titlec {
	font-size: 14px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.2);
	overflow: hidden;
	margin-bottom: 50px;
	font-weight: bold;
	text-transform: uppercase;
}

.bTab dd .indexMore {
	transform: translateY(20px);
	opacity: 0;
	-webkit-transform: translateY(20px);
	transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	visibility: hidden;
}

.bTab dd:hover {
	background: rgb(0, 0, 0, 0.3);
}

.bTab dd:hover .text {
	transform: translateY(-80%);
	-webkit-transform: translateY(-80%)
}

.bTab dd:hover .indexMore {
	transform: translateY(0);
	opacity: 1;
	-webkit-transform: translateY(0);
	visibility: visible;
}

.bg1Swiper,
.bg1Swiper .swiper-wrapper,
.bg1Swiper .swiper-slide {
	height: 100% !important;
	width: 100% !important;
}

.bg1Swiper {
	position: absolute !important;
	top: 0;
	left: 0;
}

.bg1Swiper .swiper-wrapper {
	transform: translate(1px) !important;
	/*解决swiper第一个不改变*/
	margin-left: -1px;
	left: 0 !important;
}

.bg1Swiper .swiper-slide {
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	transform: scale(1.3);
	transition: 1.5s ease-in-out;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg1Swiper .swiper-slide-active {
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 2;
	transform: scale(1);
}

/* ————— 第4通栏 end ————— */
/* ========== 首页 end ========== */
