.sec1{
	position: relative;
	height: 600px;
	background-color: #f9fafb;
}
.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: 7.03125% 0 6.823%;
}
.sec2 h3{
	font-size: 42px;
	color: #f00040;
	font-weight: bold;
	margin-bottom: 2.93%;
}
.sec2 ul 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(51,51,51,0.25);
	cursor: pointer;
	position: relative;
	padding: 17px 0;
}
.sec2 ul 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;
}
.sec2 ul li:hover::after{
	width: 100%;
}
.sec2 ul li h5{
	font-size: 30px;
	color: #333;
	font-weight: bold;
	width: 24.85%;
}
.sec2 ul li h5 span{
	vertical-align: top;
	display: inline-block;
}
.sec2 ul li h5 .num{
	font-size: 0.6em;
	font-family: "DIN-Medium";
	margin-right: 1.3em;
}
.sec2 ul li:hover h5 .num{
	color: #f00040;
}
.sec2 ul li p{
	font-size: 16px;
	color: #929394;
	width: 68.95%;
	line-height: 1.4;
}
.sec2 ul li .img-box{
	position: relative;
	width: 6.2%;
	opacity: 0;
}
.sec2 ul li:hover .img-box{
	opacity: 1;
}
.sec2 ul li .img-box .word{
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: sec1imgrotate 5s linear infinite;
	animation: sec1imgrotate 5s linear infinite;
}


.sec3{
	padding: 6.09375% 0 2.92%;
	background-color: #f9fafb;
}
.sec3 .left{
	float: left;
	width: 36%;
}
.sec3 h3{
	font-size: 44px;
	color: #ed023f;
	font-weight: bold;
}
.sec3 h4{
	font-size: 30px;
	color: #333;
	font-weight: normal;
	margin-top: 0.6em;
}
.sec3 .img-box{
	width: 80%;
}
.sec3 .img-box img{
	-webkit-animation: rollscr 5s linear infinite;
	animation: rollscr 5s linear infinite;
}
@-webkit-keyframes rollscr{
    0%{-webkit-transform: rotate(0deg) scale(1);}
    50%{-webkit-transform: rotate(180deg) scale(1.2);}
    80%{-webkit-transform: rotate(288deg) scale(.8);}
    100%{-webkit-transform: rotate(360deg) scale(1);}
}
@keyframes rollscr{
    0%{transform: rotate(0deg) scale(1);}
    50%{transform: rotate(180deg) scale(1.2);}
    80%{transform: rotate(288deg) scale(.8);}
    100%{transform: rotate(360deg) scale(1);}
}
.sec3 .text-box{
	float: right;
	width: 63.12%;
	-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;
}
.sec3 .box{
	width: 43%;
	margin-bottom: 13.786%;
}
.sec3 .box h5{
	font-size: 26px;
	color: #333;
	font-weight: bold;
	margin-bottom: 10.25%;
}
.sec3 .box h5 span,.sec3 .box h5 img{
	vertical-align: middle;
}
.sec3 .box h5 img{
	width: 1.269em;
	margin-right: 0.88em;
}
.sec3 .box p{
	font-size: 14px;
	color: #929394;
	line-height: 1.75;
}


@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: 1rem;
	}
	.sec2 ul li{
		-webkit-display: block;
		display: block;
		padding: 0.75rem 0;
	}
	.sec2 ul li h5{
		font-size: 0.9375rem;
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.sec2 ul li p{
		font-size: 0.6875rem;
		width: 100%;
	}
	.sec2 ul li .img-box{
		display: none;
	}


	.sec3{
		padding: 2.5rem 0 2rem;
	}
	.sec3 .left{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.sec3 .img-box{
		display: none;
	}
	.sec3 h3{
		font-size: 1.3125rem;
	}
	.sec3 h4{
		font-size: 1.25rem;
	}
	.sec3 .text-box{
		width: 100%;
	}
	.sec3 .box{
		width: 46%;
		margin-bottom: 1rem;
	}
	.sec3 .box h5{
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
	}
	.sec3 .box p{
		font-size: 0.625rem;
	}
}




.sec4{
	padding: 5.625% 0 2.8125%;
}
.sec4 .text-box{
	opacity: 0;
	-webkit-transition: opacity 1s,transform 1s;
	transition: opacity 1s,transform 1s;
	-webkit-transform: translateY(40%);
	transform: translateY(40%);
	margin-bottom: 4.86%;
}
.sec4 .text-box.actived{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.sec4 h3{
	font-size: 44px;
	color: #ed023f;
	font-weight: bold;
}
.sec4 h5{
	font-size: 30px;
	color: #333;
	font-weight: normal;
	margin-top: 0.6em;
}
.sec4 ul{
	display: table;
	width: 100%;
	border-collapse: collapse;
}
.sec4 li{
	display: table-cell;
	border: 1px solid #ccc;
	padding: 3.3% 4.64%;
	width: 33.333%;
}
.sec4 h4{
	font-size: 72px;
	color: #ed023f;
	font-weight: normal;
}
.sec4 h4 i{
	font-style: normal;
	font-size: 0.5em;
}
.sec4 .more{
	font-size: 14px;
	color: #000;
	overflow: hidden;
	border-radius: 0.36em;
	border: 1px solid #000;
	width: 9.14em;
	height: 2.36em;
	vertical-align: top;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	-webkit-transition: border-color 0.3s,color 0.3s;
	transition: border-color 0.3s,color 0.3s;
	margin: 42% 0 6.7%;
}
.sec4 .more:hover{
	border-color: #ed023f;
	color: #fff;
}
.sec4 .more::before{
	content: "";
	width: 0;
	height: 100%;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	-webkit-transition: width 0.3s, background 0.3s;
	transition: width 0.3s, background 0.3s;
}
.sec4 .more:hover::before{
	width: 100%;
	background-color: #ed023f;
}
.sec4 .more::after{
	font-family: "icomoon";
	content: "\ebfc";
	margin-left: 1em;
}
.sec4 p{
	font-size: 24px;
	color: #333;
	line-height: 1.5;
}




.sec5{
	padding: 2.8125% 0 5.625%;
}
.sec5 .text-box{
	opacity: 0;
	-webkit-transition: opacity 1s,transform 1s;
	transition: opacity 1s,transform 1s;
	-webkit-transform: translateY(40%);
	transform: translateY(40%);
	margin-bottom: 4.1%;
}
.sec5 .text-box.actived{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.sec5 .text-box h3{
	font-size: 44px;
	color: #ed023f;
	font-weight: bold;
}
.sec5 .text-box h5{
	font-size: 30px;
	color: #333;
	font-weight: normal;
	margin-top: 0.6em;
}
.sec5 .img-box a{
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: calc(316 / 1652 * 100%);
	margin-right: calc(18 / 1652 * 100%);
	margin-bottom: calc(18 / 1652 * 100%);
}
.sec5 .img-box a.width2{
	width: calc(650 / 1652 * 100%);
}
.sec5 .img-box .web a:nth-child(4){
	margin-right: 0;
}
.sec5 .img-box .web a:nth-child(8){
	margin-right: 0;
}
.sec5 .img-box a:last-child{
	margin-right: 0;
}
.sec5 a.text{
	background-color: #ed023f;
	cursor: default;
}
.sec5 a.text.hover{
	cursor: pointer;
}
.sec5 a.img{
	background-color: #e2e2e2;
}
.sec5 a .cover{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: background-color 0.5s;
	transition: background-color 0.5s;
	-webkit-display: flex;
	display: flex;
	font-size: 16px;
	padding: 2.5em 2.25em;
}
.sec5 .img .cover{
	opacity: 0;
	background-color: rgba(0,0,0,0.7);
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.sec5 .img:hover .cover{
	opacity: 1;
}
.sec5 a.text .cover{
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.sec5 a.img .cover{
	-webkit-align-items: flex-end;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	flex-direction: row;
}
.sec5 a h3{
	font-size: 1.25em;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	text-shadow: 0 0 0.1em #333;
}
.sec5 a h5{
	font-size: 2.5em;
	color: #fff;
	font-weight: normal;
}
.sec5 a h5 i{
	font-size: 0.5em;
	font-style: normal;
	display: block;
}
.sec5 a h5 i:first-child{
	font-weight: bold;
}
.sec5 a h5 b{
	display: inline-block;
	font-weight: normal;
	margin-right: 0.25em;
}
.sec5 a h5 span{
	display: inline-block;
}
.sec5 a p{
	font-size: 1em;
	color: #fff;
	line-height: 2.125;
	margin-top: 0.625em;
	min-width: 6em;
}
.sec5 a p.underline{
	text-decoration: underline;
}
.sec5 .text.hover p::after{
	display: inline-block;
	vertical-align: middle;
	font-family: "icomoon";
	content: "\ebfc";
	font-size: 1.5em;
	font-weight: bold;
	margin-left: 1em;
	opacity: 0;
	margin-right: -2.5em;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.sec5 .text.hover:hover p::after{
	-webkit-transition:margin-right 0.5s ,opacity 0.5s 0.125s,transform 0.5s 0.125s;
	transition:margin-right 0.5s ,opacity 0.5s 0.125s,transform 0.5s 0.125s;
	opacity: 1;
	margin-right: 0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.sec5 .arrow::before{
	display: block;
	font-family: "icomoon";
	content: "\ebfc";
	margin-left: 1em;
	color: #fff;
	font-size: 1.875em;
	opacity: 0;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: opacity 0.5s, transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
}
.sec5 a:hover .arrow::before{
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}






.sec6{
	background-color: #2e2e2e;
	padding: 9.375% 0 3.28125%;
}
.sec6 .text-box{
	opacity: 0;
	-webkit-transition: opacity 1s,transform 1s;
	transition: opacity 1s,transform 1s;
	-webkit-transform: translateY(40%);
	transform: translateY(40%);
	margin-bottom: 5%;
}
.sec6 .text-box.actived{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.sec6 .text-box h3{
	font-size: 44px;
	color: #fff;
	font-weight: bold;
}
.sec6 .text-box h5{
	font-size: 30px;
	color: #bdbdbd;
	font-weight: normal;
	margin-top: 0.6em;
}
.sec6 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;
}
.sec6 li{
	width: 15%;
	text-align: center;
	padding: 2.1875% 0;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sec6 li img{
	max-width: 80%;
}



.sec7{
	padding: 5.46875% 0 4.0625%;
}
.sec7 .text-box{
	opacity: 0;
	-webkit-transition: opacity 1s,transform 1s;
	transition: opacity 1s,transform 1s;
	-webkit-transform: translateY(40%);
	transform: translateY(40%);
	margin-bottom: 6.6%;
}
.sec7 .text-box.actived{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.sec7 .text-box h3{
	font-size: 44px;
	color: #ed023f;
	font-weight: bold;
}
.sec7 .text-box h5{
	font-size: 30px;
	color: #333;
	font-weight: normal;
	margin-top: 0.6em;
}
.sec7 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;
}
.sec7 li{
	width: 30.88%;
	margin-right: 3.68%;
	margin-bottom: 2.78%;
}
.sec7 li:nth-child(3n){
	margin-right: 0;
}
.sec7 li .img-box{
	overflow: hidden;
}
.sec7 li .img-box img{
	-webkit-transition: transform 0.5s;
	transition: transform 0.5s;
}
.sec7 li:hover .img-box img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.sec7 .tag-box{
	padding: 1.67% 3.33%;
	background-color: #eee;
}
.sec7 .tag-box div{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	color: #fff;
	padding: 0 1em;
	height: 2em;
	line-height: 2;
	border-radius: 1em;
	background-color: #333;
	margin-right: 0.6em;
}
.sec7 .tag-box div:last-child{
	margin-right: 0;
}
.sec7 li h5{
	font-size: 24px;
	color: #333;
	font-weight: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 0.875em;
}
.sec7 li p{
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 1em;
}


@media only screen and (max-width:1366px) {
	.sec4 h3{
		font-size: 38px;
	}
	.sec4 h5{
		font-size: 26px;
	}
	.sec4 h4{
		font-size: 63px;
	}
	.sec4 p{
		font-size: 21px;
	}

	.sec5 .text-box h3{
		font-size: 38px;
	}
	.sec5 .text-box h5{
		font-size: 26px;
	}
	.sec5 a .cover{
		font-size: 14px;
	}

	.sec6 .text-box h3{
		font-size: 38px;
	}
	.sec6 .text-box h5{
		font-size: 26px;
	}

	.sec7 .text-box h3{
		font-size: 38px;
	}
	.sec7 .text-box h5{
		font-size: 26px;
	}
	.sec7 .tag-box div{
		font-size: 12px;
	}
	.sec7 li h5{
		font-size: 21px;
	}
	.sec7 li p{
		font-size: 14px;
	}

}

@media only screen and (max-width:1100px) {
	.sec5 a .cover{
		font-size: 12px;
	}
}

@media only screen and (max-width:1024px) {
	.sec4{
		padding: 11.25% 0 5.625%
	}
	.sec4 .text-box{
		margin-bottom: 10%;
	}
	.sec4 h3{
		font-size: 1.3125rem;
	}
	.sec4 h5{
		font-size: 1.125rem;
	}
	.sec4 ul{
		display: block;
	}
	.sec4 li{
		display: block;
		width: 100%;
		padding: 8% 6%;
	}
	.sec4 li:nth-child(1),.sec4 li:nth-child(2){
		border-bottom: 0 none;
	}
	.sec4 h4{
		font-size: 3.375rem;
	}
	.sec4 .more{
		font-size: 0.625rem;
		margin: 12% 0 5%;
	}
	.sec4 p{
		font-size: 1rem;
	}


	.sec5{
		padding: 5.625% 0 11.25%;
	}
	.sec5 .text-box{
		margin-bottom: 8%;
	}
	.sec5 .text-box h3{
		font-size: 1.3125rem;
	}
	.sec5 .text-box h5{
		font-size: 1.25rem;
	}
	.sec5 a .cover{
		font-size: 0.75rem;
		padding: 1.25em 1.125em;
	}
	.sec5 .img-box a{
		width: calc(316 / 650 * 100%);
		margin-right: calc(18 / 650 * 100%);
		margin-bottom: calc(18 / 650 * 100%);
	}
	.sec5 .img-box a.width2{
		width: 100%;
		margin-right: 0;
	}
	.sec5 .img-box .mobile a:nth-child(3n){
		margin-right: 0;
	}



	.sec6{
		padding: 15% 0;
	}
	.sec6 .text-box{
		margin-bottom: 10%;
	}
	.sec6 .text-box h3{
		font-size: 1.3125rem;
	}
	.sec6 .text-box h5{
		font-size: 1.25rem;
	}
	.sec6 li{
		width: 33.333%;
	}
	.sec6 li img{
		max-width: 70%;
	}


	.sec7{
		padding: 10% 0;
	}
	.sec7 .text-box{
		margin-bottom: 10%;
	}
	.sec7 .text-box h3{
		font-size: 1.3125rem;
	}
	.sec7 .text-box h5{
		font-size: 1.125rem;
	}
	.sec7 li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 10%;
	}
	.sec7 .tag-box{
		padding: 2% 4%;
	}
	.sec7 .tag-box div{
		font-size: 0.6875rem;
	}
	.sec7 li h5{
		font-size: 1.125rem;
	}
	.sec7 li p{
		font-size: 0.75rem;
	}


}