.banner{
	text-align: center;
	position: relative;
}
.banner .bg{
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-transition: transform 5s linear;
	transition: transform 5s linear;
}
.banner.actived .bg{
	-webkit-transform: scale(1);
	transform: scale(1);
}
.banner .inner{
	position: absolute;
	top: 48.3%;
	left: 0;
	right: 0;
}
.banner h1{
	font-size: 2.625em;
	color: #fff;
	font-weight: bold;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
	opacity: 0;
	-webkit-transition: transform 1s, opacity 1s;
	transition: transform 1s, opacity 1s;
}
.banner .inner.actived h1{
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.banner .mouse{
	-webkit-animation: 	appearTitleRT 1s infinite ease-in-out;
	-moz-animation: 	appearTitleRT 1s infinite ease-in-out;
	-ms-animation: 		appearTitleRT 1s infinite ease-in-out;
	-o-animation: 		appearTitleRT 1s infinite ease-in-out;
	animation: 			appearTitleRT 1s infinite ease-in-out;
	position: absolute;
	left: 50%;
	bottom: 10%;
	width: 1.5625em;
	margin-left: -0.78125em;
}
@-webkit-keyframes appearTitleRT {
	0%	{ opacity: 0; -webkit-transform: translateY(-20%);}
	100%{ opacity: 1; -webkit-transform: translateY(20%);}
}
@keyframes appearTitleRT {
	0%	{ opacity: 0; transform: translateY(-20%);}
	100%{ opacity: 1; transform: translateY(20%);}
}





.section{
	position: relative;
	background-color: #fff;
}
.section h3{
	font-size: 2.5em;
	color: #333;
	font-weight: bold;
	margin-bottom: 5.4%;
	text-align: center;
}
.section h3{
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.section h3.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}


.sec1{
	text-align: center;
	padding: 7.5% 0 5.2%;
}
.sec1 p{
	font-size: 1.125em;
	color: #333;
	line-height: 2;
}
.sec1 p{
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec1 p.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}

.sec2{
	margin-bottom: 7.8125%;
}
.sec2 li{
	border-top: 1px solid #e6e6e6;
	position: relative;
	padding: 4.6% 2.6%;
}
.sec2 li:last-child{
	border-bottom: 1px solid #e6e6e6;
}
.sec2 li{
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec2 li.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}

.sec2 li:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0%;
	height: 1px;
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
	-webkit-transition: width 1s;
	transition: width 1s;
}
.sec2 li:hover:after{
	width: 100%;
}
.sec2 .text{
	margin-bottom: 2.5em;
}
.sec2 .text h4{
	font-size: 1.5em;
	color: #0070c0;
	font-weight: bold;
	margin-bottom: 0.875em;
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.sec2 .text p{
	font-size: 1.125em;
	color: #333;
	line-height: 1.625;
}
.sec2 .link h5{
	font-size: 1.125em;
	color: #333;
	font-weight: bold;
	margin-bottom: 1.89em;
}
.sec2 .link p{
	font-size: 1.125em;
	color: #333;
	line-height: 1.625;
	margin-bottom: 1.25em;
	padding-left: 0.625em;
}
.sec2 .link p:last-child{
	margin-bottom: 0;
}
.sec2 .link p span{
	display: inline-block;
	width: 0.625em;
	font-weight: bold;
	margin-left: -0.625em;
}
.sec2 .link p a{
	display: inline-block;
	margin-left: 1.5em;
	padding-bottom: 0.1875em;
	border-bottom: 1px solid #333333;
	color: inherit;
	line-height: 1;
}
.sec2 .link p a:hover{
	border-color: #39b9f3;
	color: #39b9f3;
}
.sec2 .link p a::after{
	content: "\e908";
	font-family: 'fontello';
	margin-left: 0.875em;
}
.sec2 .link p a i{
	font-style: normal;
}



.sec3{
	margin-bottom: 7.8125%;
}
.sec3 li{
	border-top: 1px solid #e6e6e6;
	position: relative;
	padding: 4.6% 2.6%;
	-webkit-display: flex;
	-webkit-align-items: flex-start;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: row;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
}
.sec3 li:last-child{
	border-bottom: 1px solid #e6e6e6;
}
.sec3 li{
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec3 li.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}

.sec3 li:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0%;
	height: 1px;
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
	-webkit-transition: width 1s;
	transition: width 1s;
}
.sec3 li:hover:after{
	width: 100%;
}
.sec3 .text{
	width: 73%;
}
.sec3 .text h5{
	font-size: 1.5em;
	color: #000;
	font-weight: bold;
	margin-bottom: 1.25em;
}
.sec3 .text h5 span{
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-right: 0.5em;
}
.sec3 .text p{
	font-size: 1.125em;
	color: #333;
	line-height: 1.625;
}
.sec3 .link p{
	font-size: 1.125em;
	color: #333;
	line-height: 1.625;
	margin-bottom: 0.625em;
	min-width: 21em;
}
.sec3 .link p:last-child{
	margin-bottom: 0;
}
.sec3 .link p b{
	font-weight: bold;
}
.sec3 .link p a{
	display: inline-block;
	color: inherit;
	padding-left: 0.5em;
}
.sec3 .link p a span{
	display: inline-block;
	vertical-align: baseline;
	width: 0.5em;
	margin-left: -0.5em;
}
.sec3 .link p a:hover{
	border-color: #39b9f3;
	color: #39b9f3;
}
.sec3 .link p a::after{
	display: inline-block;
	content: "\e908";
	font-family: 'fontello';
	margin-left: 0.875em;
	opacity: 0;
	-webkit-transition: opacity 0.5s,transform 0.5s;
	transition: opacity 0.5s,transform 0.5s;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.sec3 .link p a:hover::after{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}



.sec4{
	padding-bottom: 20%;
}
.sec4 li{
	position: relative;
	margin-bottom: 1em;
	border-radius: 1.875em;
	overflow: hidden;
	padding: 2.7% 2.6%;
	cursor: pointer;
	z-index: 1;
}
.sec4 li{
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec4 li.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}
.sec4 li::before{
	display: ;
	content: "";
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
	position: absolute;
	z-index: -1;
	left: 50%;
	top: 50%;
	width: 100vw;
	height: 100vw;
	margin-left: -50vw;
	margin-top: -50vw;
	-webkit-transition: transform 2s;
	transition: transform 2s;
}
.sec4 li:hover::before{
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.sec4 li::after{
	display: ;
	content: "";
	position: absolute;
	left: 1px;
	right: 1px;
	top: 1px;
	bottom: 1px;
	background-color: #f8fafb;
	border-radius: 1.8125em;
}
.sec4 li h5{
	font-size: 1.25em;
	color: #000;
	font-weight: bold;
	position: relative;
	z-index: 1;
}
.sec4 li h5 .plus-box{
	font-size: 0.5em;
	position: absolute;
	right: 0;
	top: 0.5em;
	width: 1em;
	height: 1em;
}
.sec4 li h5 .plus-box div{
	background-color: #333;
	position: absolute;
}
.sec4 li h5 .plus-box div:first-child{
	width: 1em;
	height: 2px;
	left: 0;
	top: 50%;
	margin-top: -1px;
}
.sec4 li h5 .plus-box div:last-child{
	width: 2px;
	height: 1em;
	left: 50%;
	top: 0;
	margin-left: -1px;
}
.sec4 li.slide h5 .plus-box div:last-child{
	opacity: 0;
}
.sec4 li p{
	font-size: 1.125em;
	color: #333;
	line-height: 1.625;
	position: relative;
	z-index: 1;
}
.sec4 li .slide-box{
	margin-top: 1em;
	display: none;
}
.sec4 li p.dot{
	padding-left: 1em;
}
.sec4 li p.dot span{
	font-weight: bold;
	display: inline-block;
	vertical-align: baseline;
	width: 1em;
	margin-left: -1em;
}



.seclast{
	text-align: center;
	padding: 10.75em 0;
	position: relative;
	background-color: #081827;
}
.seclast h3{
	font-size: 2.5em;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 3.95%;
	opacity: 0;
	transform: translateY(10vh);
 	transition:opacity .8s cubic-bezier(.22,1,.36,1),transform 1.6s cubic-bezier(.22,1,.36,1);
}
.seclast.actived h3{
 	transform:translateY(0);
 	opacity:1;
}
.seclast a{
	display: inline-block;
	font-size: 1.875em;
	color: #fff;
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	opacity: 0;
 	transition:opacity .8s cubic-bezier(.22,1,.36,1),top 1.6s cubic-bezier(.22,1,.36,1),transform 0.5s;
 	transition-delay: 0.4s,0.4s,0s;
 	position: relative;
 	top: 10vh;
}
.seclast.actived a{
 	opacity:1;
 	top: 0;
}
.seclast.actived a:hover{
	transform: scale(1.1);
}
.seclast a::after{
	display: block;
	width:100%;
	height: 0.05em;
	margin-top: 0.05em;
	content: "";
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
}



@media only screen and (max-width:1024px){
	.banner .inner{
		top: 51.4%;
	}
	.banner h1{
		font-size: 2em;
	}
	.banner .mouse{
		bottom: 5%;
		width: 1.25em;
	}




	.section h3{
		font-size: 2em;
		margin-bottom: 10%;
	}


	.sec1{
		padding: 15% 0 10%;
	}
	.sec1 p{
		font-size: 1.375em;
		line-height: 1.5;
	}

	.sec2{
		margin-bottom: 15%;
	}
	.sec2 li{
		padding: 5%;
		font-size: 1.25em;
	}
	.sec2 .text{
		margin-bottom: 10%;
	}
	.sec2 .link h5{
		margin-bottom: 1em;
	}
	.sec2 .link p a.mobilenoleft{
		margin-left: 0;
	}



	.sec3{
		margin-bottom: 15%;
	}
	.sec3 li{
		padding: 5%;
		-webkit-display: block;
		display: block;
		font-size: 1.25em;
	}
	.sec3 .text h5{
		font-size: 1.25em;
		line-height: 1.5;
	}
	.sec3 .text{
		width: 100%;
		margin-bottom: 5%;
	}
	.sec3 .link p a{
		padding-left: 1em;
		display: block;
		line-height: inherit;
	}
	.sec3 .link p a span{
		width: 1em;
		margin-left: -1em;
		display: inline-block;
		vertical-align: baseline;
	}



	.sec4{
		padding-bottom: 15%;
	}
	.sec4 li{
		margin-bottom: 5%;
		padding: 5%;
		font-size: 1.25em;
	}
	.sec4 li:hover::before{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.sec4 li p{
		line-height: 1.5;
	}


	.seclast{
		padding: 15% 0;
	}
	.seclast h3{
		font-size: 2em;
		margin-bottom: 5%;
	}
	.seclast a{
		font-size: 1.5em;
	}
}