.sec1{
	position: relative;
	height: 600px;
}
.sec1 .inner{
	position: absolute;
	left: 0;
	right: 0;
}
.sec1 .img-box{
	bottom: 8.875%;
}
.sec1 .img-box .img{
	width: 4.833%;
	position: relative;
}
.sec1 .img-box .img .word{
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: sec1imgrotate 5s linear infinite;
	animation: sec1imgrotate 5s linear infinite;
}
@-webkit-keyframes sec1imgrotate{
    0%{-webkit-transform: rotate(0deg); opacity: .5;}
    50%{-webkit-transform: rotate(180deg); opacity: 1;}
    100%{-webkit-transform: rotate(360deg); opacity: 0.5;}
}
@keyframes sec1imgrotate{
    0%{transform: rotate(0deg); opacity: .5;}
    50%{transform: rotate(180deg); opacity: 1;}
    100%{transform: rotate(360deg); opacity: 0.5;}
}
.sec1 .text-box{
	top: 39%;
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
	-webkit-transform: translateY(20%);
	transform: translateY(20%);
}
.sec1 .text-box.actived{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.sec1 h3{
	font-size: 56px;
	color: #f00040;
	font-weight: bold;
	margin-bottom: 0.5em;
	margin-left: 1.37%;
	line-height: 1.25;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: masked 8s linear infinite;
	animation: masked 8s linear infinite;
	display: inline-block;
	vertical-align: top;
	background-image: url(../image/wordcolorchange.png);
}
.sec1 h5{
	font-size: 24px;
	color: #333;
	font-weight: normal;
	margin-left: 1.37%;
	line-height: 1.6;
}




.sec2{
	padding: 5.2% 0;
	background-color: #f9fafb;
}
.sec2 h3{
	font-size: 42px;
	color: #ff2242;
	font-weight: bold;
	margin-bottom: 5%;
}
.sec2 ul{
	-webkit-display: flex;
	-webkit-align-items: stretch;
	-webkit-justify-content: flex-start;
	-webkit-flex-direction: row;
	-webkit-flex-wrap: wrap;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
.sec2 li{
	border: 1px solid rgb(236,236,236);
	width: 25%;
	position: relative;
	-webkit-transition: background-color 0.5s;
	transition: background-color 0.5s;
	border-right: 0 none;
}
.sec2 li:last-child{
	border-right: 1px solid rgb(236,236,236);
}
.sec2 li:hover{
	background-color: rgb(236,236,236);
}
.sec2 .icon{
	position: absolute;
	left: 7.5%;
	top: 0;
	width: 24%;
}
.sec2 .text-box{
	margin: 56.25% 12.5% 16.25%;
}
.sec2 h5{
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 5%;
}
.sec2 p{
	font-size: 14px;
	color: #666;
	line-height: 1.4;
}






.sec3{
	padding: 5.2% 0;
}
.sec3 h3{
	font-size: 42px;
	color: #f00040;
	font-weight: bold;
	margin-bottom: 5.2%;
}
.sec3 li{
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0,0,0,0.25);
	cursor: pointer;
	position: relative;
	padding: 21px 0;
}
.sec3 li::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	background-color: #f00040;
	height: 1px;
	width: 0%;
	-webkit-transition: width 1.5s;
	transition: width 1.5s;
}
.sec3 li:hover::after{
	width: 100%;
}
.sec3 li h5{
	font-size: 30px;
	color: #333;
	font-weight: bold;
	width: 23%;
}
.sec3 li h5 span{
	display: inline-block;
	vertical-align: top;
}
.sec3 li .num{
	font-size: 0.6em;
	font-family: "DIN-Medium";
	margin-right: 1.3em;
}
.sec3 li:hover .num{
	color: #f00040;
}
.sec3 li p{
	font-size: 16px;
	color: #929394;
	width: 70%;
	line-height: 1.5;
	margin-right: 10%;
}
.sec3 li .img-box{
	position: relative;
	width: 6.2%;
	opacity: 0;
}
.sec3 li:hover .img-box{
	opacity: 1;
}
.sec3 li .img-box .word{
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: sec1imgrotate 5s linear infinite;
	animation: sec1imgrotate 5s linear infinite;
}




@media only screen and (max-width:1200px){
	.sec2 h5{
		font-size: 20px;
	}
	.sec2 p{
		font-size: 12px;
	}
}


@media only screen and (max-width:1024px) {

	.sec1{
		height: 80vw;
	}
	.sec1 .img-box{
		bottom: 5%;
	}
	.sec1 .img-box .img{
		width: 15%;
	}
	.sec1 .text-box{
		top: 40%;
	}
	.sec1 h3{
		font-size: 1.5rem;
	}
	.sec1 h5{
		font-size: 0.75rem;
	}



	.sec2{
		padding: 2rem 0;
	}
	.sec2 h3{
		font-size: 1.3125rem;
		margin-bottom: 1.5rem;
	}
	.sec2 li{
		width: 50%;
	}
	.sec2 li:nth-child(even){
		border-right: 1px solid rgb(236,236,236);
	}
	.sec2 .icon{
		top: 2.5%;
	}
	.sec2 .text-box{
		margin: 40% 10% 10%;
	}
	.sec2 h5{
		font-size: 0.75rem;
	}
	.sec2 p{
		font-size: 0.625rem;
	}


	.sec3{
		padding: 2rem 0;
	}
	.sec3 h3{
		font-size: 1.3125rem;
		margin-bottom: 1.5rem;
	}
	.sec3 li{
		-webkit-display: block;
		display: block;
		padding: 0.75rem 0;
	}
	.sec3 li h5{
		font-size: 0.9375rem;
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.sec3 li p{
		font-size: 0.6875rem;
		width: 100%;
		margin-right: 0;
	}
	.sec3 li .img-box{
		display: none;
	}


}