@-webkit-keyframes scale-bg {
	from {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scale-bg {
	from {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.index_main {
	background: #f7f7f7;
}
.index_main .section{
	background-size: cover;
}
.index_main .section1 {
	position: relative;
}

.index_main .section1 .index_banner .item {
	position: relative;
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
}

.index_main .section1 .index_banner .item.slick-current .scaleBg {
	visibility: visible;
	-webkit-animation: scale-bg 6s linear forwards;
	animation: scale-bg 6s linear forwards;
}

.index_main .section1 .index_banner .items {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.index_main .section1 .index_banner .items:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
	content: "";
}

.index_main .section1 .index_banner .item .inner .block_txt {
	position: absolute;
	top: 44%;
	right: 10px;
	left: 10px;
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
}

.index_main .section1 .index_banner .item.active .inner .block_txt {
	opacity: 1;
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.index_main .section1 .index_banner .item .inner .block_txt h4 {
	color: #fff;
	text-align: center;
	font-size: 30px;
	font-family: coco;
}

.index_main .section1 .index_banner .item .inner .block_txt h2 {
	color: #fff;
	text-align: center;
	letter-spacing: 5px;
	font-weight: 700;
	font-size: 70px;
}

.index_main .section1 .index_banner .item .inner .block_txt h2 span {
	display: inline-block;
	color: #0cc055;
	letter-spacing: 5px;
}

.index_main .section1 .index_banner .item .inner .block_txt h3 {
	margin-top: 10px;
	color: #fff;
	text-align: center;
	letter-spacing: 3px;
	font-size: 22px;
}

.index_main .section1 .slick_txt {
	position: absolute;
	top: 0;
	width: 30%;
	height: 100%;
	outline: none;
	border: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	font-size: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.index_main .section1 .left {
	left: 0;
}

.index_main .section1 .right {
	right: 0;
}

.index_main .section1 .slick_txt:hover .slick_arrow {
	visibility: visible;
	opacity: 1;
}

.index_main .section1 .slick_txt .slick_arrow {
	position: absolute;
	top: 50%;
	visibility: hidden;
	margin-top: -18px;
	width: 20px;
	height: 36px;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.index_main .section1 .slick_txt .prev {
	left: 60px;
	background-image: url(../image/ban_prev.png);
}

.index_main .section1 .slick_txt .next {
	right: 60px;
	background-image: url(../image/ban_next.png);
}

.index_main .section1 .slick_txt .prev:hover {
	background-image: url(../image/ban_prev_hover.png);
}

.index_main .section1 .slick_txt .next:hover {
	background-image: url(../image/ban_next_hover.png);
}

.index_main .section1 .number {
	position: absolute;
	bottom: 8%;
	left: 50%;
	display: table;
	padding: 0 20px;
	padding-bottom: 5px;
	width: auto;
	border-bottom: 1px solid rgba(255,255,255,.2);
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_main .section1 .number span {
	position: relative;
	display: inline-block;
	margin-right: 100px;
	color: #fff;
	font-size: 14px;
	font-family: myriad pro,microsoft yahei;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.index_main .section1 .number span:last-child {
	margin-right: 0;
}

.index_main .section1 .number span:after {
	position: absolute;
	bottom: -20px;
	left: 50%;
	display: inline-block;
	visibility: hidden;
	width: 0;
	height: 2px;
	background: #fff;
	content: "";
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_main .section1 .number span.active:after {
	visibility: visible;
	width: 100%;
	opacity: 1;
}


.index_main .section2 h3 {
	text-align: center;
}

.index_main .section3 {
	width: 100%;
	height: 100%;
}

.index_main .section3 h3 {
	text-align: center;
}

.index_main .section4 h3 {
	text-align: center;
}

@media only screen and (max-width:1600px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 28px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 60px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		font-size: 20px;
	}
}

@media only screen and (max-width:1440px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 24px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 40px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		margin-top: 5px;
		font-size: 18px;
	}
}

@media only screen and (max-width:1366px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 20px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 26px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		font-size: 16px;
	}

	.index_main .section1 .index_banner .slick-arrow {
		background-size: auto 30px;
	}
}

@media only screen and (max-width:1300px) {
}

@media only screen and (max-width:1199px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 18px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 22px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		font-size: 14px;
	}
}

@media only screen and (max-width:992px) {
	.index_main .section1 .index_banner .item {
		height: 100vh;
	}

	.index_main .section1 .index_banner .item .inner .block_txt {
		top: 42%;
		right: 0;
		left: 0;
		margin: 0 auto;
		padding: 0 20px;
	}

	.index_main .section1 .index_banner .slick-arrow {
		display: none!important;
	}

	.index_main .section1 .index_banner .slick-dots {
		position: absolute;
		bottom: 12px;
	}

	.index_main .section1 .index_banner .slick-dots li {
		width: 12px;
		height: 12px;
		border: 2px solid #fff;
		border-radius: 50%;
	}

	.index_main .section1 .index_banner .slick-dots li button {
		display: none;
	}

	.index_main .section1 .index_banner .slick-dots li.slick-active {
		background: #fff;
	}

	.index_main .section1 .number {
		bottom: 12%;
		display: none;
	}

	.index_main .section1 .number span {
		margin-right: 22px;
	}

	.index_main .section1 .number span:after {
		bottom: -14px;
	}
}

@media only screen and (max-width:767px) {
}

@media only screen and (max-width:340px) {
}

@media only screen and (max-width:320px) {
}