.sec1{
	/*padding: 139 0 108;*/
	padding: 7.24% 0 5.625%;
}
.sec2{
	background-color: #f9f9f9;
	/*padding: 90 0 108;*/
	padding: 4.6875% 0 5.625%;
}
.sec3{
	/*padding: 90 0 139;*/
	padding: 4.6875% 0 7.24%;
}
.section{
	overflow: hidden;
}
.section .inner{
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	-webkit-flex-wrap: wrap;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 3.7%;
}
.section:nth-child(odd) .inner{
	-webkit-flex-direction: row;
	flex-direction: row;
}
.section:nth-child(even) .inner{
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.section .text-box{
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
}
.section:nth-child(odd) .text-box{
	-webkit-transform: translateX(-10vw);
	transform: translateX(-10vw);
}
.section:nth-child(even) .text-box{
	-webkit-transform: translateX(10vw);
	transform: translateX(10vw);
}
.section.actived .text-box{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.section h5{
	font-size: 14px;
	color: #ffd200;
	font-weight: normal;
	text-transform: uppercase;
}
.section h4{
	font-size: 24px;
	color: #333;
	font-weight: bold;
	line-height: 1.5;
	margin: 1.333em 0 1em;
}
.section p{
	font-size: 14px;
	color: #555;
	line-height: 2;
	width: 22em;
}
.section .img-box{
	position: relative;
	border-radius: 5px;
	width: 53.97%;
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
}
.section:nth-child(odd) .img-box{
	-webkit-transform: translateX(10vw);
	transform: translateX(10vw);
}
.section:nth-child(even) .img-box{
	-webkit-transform: translateX(-10vw);
	transform: translateX(-10vw);
}
.section.actived .img-box{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.section .img-box img{
	width: 100%;
	position: relative;
	border-radius: inherit;
}
.section .img-box::before{
	content: "";
	width: 100%;
	height: 100%;
	border-radius: inherit;
	position: absolute;
	left: 3.85%;
	top: 4.11%;
	background-color: #ffd200;
}
@media only screen and (max-width:1024px) {
	.sec1{
		padding: 3rem 0 2.5rem;
	}
	.sec2{
		padding: 2.5rem 0 2.5rem;
	}
	.sec3{
		padding: 2.5rem 0 3rem;
	}
	.section .inner{
		-webkit-display: block;
		display: block;
	}
	.section .text-box{
		margin-bottom: 1.5rem;
	}
	.section h5{
		font-size: 0.625rem;
	}
	.section h4{
		font-size: 1rem;
	}
	.section p{
		font-size: 0.625rem;
		width: 100%;
	}
	.section .img-box{
		border-radius: 2px;
		margin: 0 auto;
	}
}