.sec1{
	background-color: #fff;
	position: relative;
}
.sec1 .inner{
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: flex-start;
	-webkit-flex-direction: row;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	min-height: 120vh;
}
.sec1 .left-part{
	width: 26.3%;
	margin-right: 7.9%;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec1 .left-part.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}
.sec1 .left-part h1{
	font-size: 2.5em;
	color: #333;
	font-weight: bold;
	margin-bottom: 11%;
}
.sec1 .left-part p{
	font-size: 1.125em;
	color: #333;
	line-height: 2.125;
	margin-bottom: 26.54%;
}
.sec1 .btn{
	width: 3em;
	height: 3em;
	border: 1px solid #b7b7b7;
	border-radius: 50%;
	cursor: pointer;
	-webkit-display: inline-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.sec1 .btn:hover{
	background-color: #b7b7b7;	
}
.sec1 .btn.prev{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	margin-right: 0.625em;
}
.sec1 .btn img{
	width: 31.25%;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-image: url(../images/index_sec5_arrow_bg.png);
	background-size: auto 200%;
	background-position: center top;
}
.sec1 .btn:hover img{
	background-position: center bottom;
}
.sec1 .right-part{
	width: calc((100vw - 100%)/2 + 65.8%);
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	opacity: 0;
	-webkit-transform: translate(100%,0);
	transform: translate(100%,0);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec1 .right-part.actived{
 	-webkit-transform:translate(0,0);
 	transform:translate(0,0);
 	opacity:1;
}
.sec1 .swiper{
	padding: 2vw 0;
}
.sec1 .swiper-slide{
	width: 25.375em;
	border: 1px solid #ececec;
	border-radius: 2.125em;
	padding: 4.1875em 4.3em 3.625em;
	-webkit-transition: transform 1s;
	transition: transform 1s;
}
.sec1 .swiper-slide:hover{
	-webkit-transform: translateY(-2vw);
	transform: translateY(-2vw);
}
.sec1 .swiper-slide h5{
	font-size: 1.25em;
	color: #333;
	font-weight: bold;
}
.sec1 .swiper-slide h3{
	font-size: 1.75em;
	color: #333;
	font-weight: bold;
	margin: 1em 0 2em;
}
.sec1 .swiper-slide .text{
	height: 10.875em;
}
.sec1 .swiper-slide p{
	font-size: 1.125em;
	color: #333;
	line-height: 1.625;	
	margin-bottom: 0.625em;
}
.sec1 .swiper-slide p:last-child{
	margin-bottom: 0;
}
.sec1 .swiper-slide .icon{
	height: 3.125em;
}


.sec2{
	background-color: #081826;
	padding: 9.27% 0 8.54%;
	position: relative;
}
.sec2 .logo{
	position: absolute;
	right: -2.6%;
	bottom: 0.6875em;
	z-index: 0;
	width: 29%;
	-webkit-animation: logorotate 10s linear infinite;
	animation: logorotate 10s linear infinite;
}
@-webkit-keyframes logorotate{
	100%{
		-webkit-transform: rotate(360deg);
	}
}
@keyframes logorotate{
	100%{
		transform: rotate(360deg);
	}
}
.sec2 h3{
	text-align: center;
	font-size: 3em;
	color: #fff;
	font-weight: bold;
	margin-bottom: 7.1%;
}
.sec2 h3{
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec2 h3.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}
.sec2 ul{
	-webkit-display: flex;
	-webkit-align-items: stretch;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: row;
	-webkit-flex-wrap: wrap;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
}
.sec2 ul::after{
	content: "";
	width: 26.32%;
}
.sec2 li.line{
	width: 1px;
	background-color: rgba(255,255,255,0.1);
}
.sec2 li.box{
	width: 26.32%;
	border-bottom: 2px solid rgba(255,255,255,0.1);
	position: relative;
	padding: 4em 0;
}

.sec2 li.box{
	opacity: 0;
	-webkit-transform: translateY(10vh);
	transform: translateY(10vh);
 	-webkit-transition:transform 1s,opacity 1s;
 	transition:transform 1s,opacity 1s;
}
.sec2 li.box.actived{
 	-webkit-transform:translateY(0);
 	transform:translateY(0);
 	opacity:1;
}
.sec2 ul:last-child li.box{
	border-bottom: 0 none;
}

.sec2 li .icon-box{
	margin-bottom: 3em;
	display: inline-block;
	vertical-align: top;
}
.sec2 li .icon-box img{
	width: auto;
	height: 3em;
	vertical-align: middle;
}
.sec2 li > .icon-box img{
	filter: brightness(0) invert(1);
}
.sec2 li .cover .icon-box{
	background-color: #fff;
	height: 3.5em;
	border-radius: 1.75em;
	padding: 0 1.25em;
	margin-bottom: 1.875em;
	-webkit-display: inline-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.sec2 li h5{
	font-size: 1.25em;
	color: #fff;
	font-weight: normal;
	margin-bottom: 2.42em;
}
.sec2 li p{
	font-size: 1.125em;
	color: #fff;
	line-height: 2;
}
.sec2 li > p{
	height: 8.1em;
}
.sec2 li .arrow{
	margin-top: 1.25em;
}
.sec2 li .arrow::before{
	content: "\e908";
	font-family: 'fontello';
	display: inline-block;
	color: #fff;
}
.sec2 li .cover{
	position: absolute;
	left: -20%;
	right: -20%;
	top: 0;
	bottom: 0;
	border-radius: 2.1875em;
	overflow: hidden;
	padding: 15% 15% 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	opacity: 0;
}
.sec2 li:hover .cover{
	opacity: 1;
}
.sec2 li .cover::before{
	content: "";
	display: block;
	background-image: linear-gradient(to right, #0070c0, #6ee2b1);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.sec2 li:hover .cover::before{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition: transform 0.5s;
	transition: transform 0.5s;
}
.sec2 li .cover::after{
	content: "";
	display: block;
	position: absolute;
	left: 1px;
	top: 1px;
	right: 1px;
	bottom: 1px;
	background-repeat: no-repeat;
	background-image: url(../images/news_relationship_sec2_bg.jpg);
	background-size: cover;
	border-radius: 2.1875em;
	z-index: 1;
}
.sec2 li .cover > *{
	position: relative;
	z-index: 2;
}
.sec2 li .cover .scroll-box{
	height: 16em;
}
.sec2 li .cover .scroll-box p{
	height: 100%;
	overflow-y: auto;
	scrollbar-width: none;
}
.sec2 li .cover .scroll-box p::-webkit-scrollbar{
	display: none;
}
.sec2 li .cover .scroll-box p span{
	display: block;
}
.sec2 .scroll-bar{
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: column;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}
.sec2 .scroll-bar .btn{
	width: 0.5em;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.sec2 .scroll-bar .btn.next{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.sec2 .progress-box{
	background-color: rgba(56,174,227,0.05);
	top: 0.75em;
	bottom: 0.75em;
	width: 0.125em;
	position: absolute;
	left: 0.1875em;
}
.sec2 .progress{
	background-color: #194f6d;
	width: 100%;
	height: 0%;
	position: relative;
}
.sec2 .progress::before{
	content: "";
	position: absolute;
	top: 100%;
	left: -0.1875em;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background-color: #194f6d;
	margin-top: -0.25em;
}


.sec3{
	background-color: #fff;
	padding: 9.27% 0;
	position: relative;
}
.sec3 .inner{
	max-width: 1520px;
	margin: 0 auto;
}
.sec3 .inner h1,
.sec3 .inner h2,
.sec3 .inner h3{
	color: #333;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.sec3 .inner h1{
	font-size: 3em;
}
.sec3 .inner h2{
	font-size: 2em;
}
.sec3 .inner h3{
	font-size: 1.5em;
}
.sec3 .inner p{
	font-size: 1.125em;
	color: #333;
	line-height: 2;
	margin-bottom: 0.5em;
}
.sec3 .inner img{
	max-width: 100%;
	height: auto;
}
.sec3 .inner table{
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1em;
}
.sec3 .inner table th,
.sec3 .inner table td{
	border: 1px solid #ddd;
	padding: 0.5em 1em;
	text-align: left;
}
.sec3 .inner table th{
	background-color: #f5f5f5;
	font-weight: bold;
}

@media only screen and (max-width:1024px){
	.sec3{
		padding: 15% 0;
	}
	.sec3 .inner h1{
		font-size: 2em;
	}
	.sec3 .inner h2{
		font-size: 1.5em;
	}
	.sec3 .inner p{
		font-size: 1.375em;
		line-height: 1.8;
	}
}

@media only screen and (max-width:1024px){
	.sec1{
		padding: 15% 0 25%;
	}
	.sec1 .inner{
		-webkit-display: block;
		display: block;
		min-height: 0;
		position: relative;
	}
	.sec1 .btn-box{
		position: absolute;
		top: 51em;
		left:0;
	}
	.sec1 .left-part{
		width: 100%;
		margin-right: 0;
		margin-bottom: 5%;
	}
	.sec1 .left-part h1{
		margin-bottom: 5%;
		font-size: 2em;
	}
	.sec1 .left-part p{
		margin-bottom: 0;
		line-height: 1.5;
		font-size: 1.375em;
	}
	.sec1 .right-part{
		width: 100%;
	}
	.sec1 .swiper-slide{
		font-size: 1.125em;
		padding: 4.1875em 3.5em 3.625em;
	}	
	.sec1 .swiper-slide:hover{
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}


	.sec2{
		padding: 15% 0;
	}
	.sec2 .logo{
		width: 60%;
	}
	.sec2 h3{
		margin-bottom: 10%;
		font-size: 2em;
	}
	.sec2 ul{
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}
	.sec2 ul:last-child li.box{
		border-bottom: 2px solid rgba(255,255,255,0.1);
	}
	.sec2 ul:last-child li.box:nth-last-child(2){
		border-bottom: 0 none;
	}
	.sec2 ul::after{
		width: 70%;
	}
	.sec2 li.line{
		display: none;
	}
	.sec2 li p{
		line-height: 1.5;
	}
	.sec2 li.box{
		width: 70%;
		font-size: 1.25em;
		padding: 5em 0;
	}
	.sec2 li .cover{
		padding: 25% 14% 0;
		top: -1px;
		bottom: -1px;
	}
	.sec2 ul:last-child li.box:nth-child(1) .cover{
		padding: 5% 14% 0;
	}
}