body {
	overflow: hidden;
	transform: translate(0,0);
	transition: transform 1s ease;
}

#page {
	position: relative;
	top: 0;
	transform: translate(0,0);
	transition: transform .75s ease, top .5s ease;
}

.m-floor {
	z-index: 1;
	position: fixed;
	right: 20px;
	top: 50vh;
	width: 3px;
	height: 337px;
	transform: translate(0,-50%);
	background: rgba(255,255,255,.6);
}
.m-floor div {
	position: relative;
	top: 0;
	width: 100%;
	height: 75px;
	background: #F0E547;
	transform: translate(0,0);
	transition: transform .75s ease, top .5s ease;
}

.u-title h1 {
	margin-right: .2rem;
	font-size: .45rem;
	font-weight: normal;
	color: #fff;
}
.u-title p {
	font-size: .2rem;
	color: #fff;
	opacity: .5;
}

/* banner */
.m-banner {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.m-banner ul {
	position: relative;
	height: 100%;
	overflow: hidden;
}
.m-banner li {
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000;
	opacity: 0;
	transition: opacity 1s ease;
}
.m-banner a.z-crt li {
	z-index: 1;
	opacity: 1;
}
.m-banner li video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .8;
	object-fit: cover;
}
.m-banner li .m-content {
	position: relative;
	top: 50%;
	transform: translate(0,-50%);
}
.m-banner .nav {
	z-index: 2;
	position: absolute;
	right: 50%;
	bottom: 50px;
	margin-right: 30px;
	font-size: 16px;
	color: #fff;
	transform: translate(7rem,0);
}
.m-banner .nav div {
	margin: 0 30px;
}
.m-banner .nav p {
	margin-right: 5px;
	font-size: 30px;
}
.m-banner .nav .angle {
	font-size: 22px;
}
.m-banner .guide {
	z-index: 9;
	position: absolute;
	left: 50%;
	bottom: -40px;
	width: 170px;
	height: 170px;
	border: 1px solid #fff;
	border-radius: 100%;
	margin-left: -85px;
	font-size: 20px;
	color: #fff;
}
.m-banner .guide .tf {
	animation: banner-guide 2s infinite linear;
}
@keyframes banner-guide {
	0% {
		transform: translate(0,0);
	}
	25% {
		transform: translate(0,-8px);
	}
	75% {
		transform: translate(0,8px);
	}
	100% {
		transform: translate(0,0);
	}
}
/* end banner */

/* about */
.m-about {
	background: url('../img/index/about_bg.jpg');
}
.m-about .m-content {
	height: 100vh;
}
.m-about .about {
	width: 9.6rem;
	margin: .8rem 0 1.6rem;
	line-height: .36rem;
	font-size: .18rem;
	color: #fff;
}
.m-about .more {
	position: absolute;
	right: 38px;
	bottom: 120px;
	padding: 0 20px;
	line-height: 46px;
	font-size: 13px;
	color: #fff;
}
.m-about .more:hover {
	color: #000;
}
.m-about .more span {
	position: relative;
}
.m-about .more:before {
	content: '';
	position: absolute;
	left: 22px;
	top: 23px;
	width: 46px;
	height: 46px;
	border-radius: 23px;
	background: rgba(255,255,255,.5);
	transform: translate(-22px,-23px);
	transition: all .3s ease;
}
.m-about .more:hover:before {
	width: 100%;
	background: #F0E547;
}
.m-about .total {
	margin-right: 2rem;
}
.m-about .total div {
	height: .8rem;
	line-height: .8rem;
}
.m-about .total strong {
	margin-right: 12px;
	font-size: .9rem;
	color: #F0E547;
}
.m-about .total span {
	font-size: .24rem;
	color: #F0E547;
}
.m-about .total p {
	margin-top: .2rem;
	font-size: .16rem;
	color: #fff;
}
/* end about */

/* service */
.m-service {
	background: url('../img/index/service_bg.jpg');
}
.m-service .m-content {
	box-sizing: border-box;
	height: 100vh;
	padding-top: 120px;
}
.m-service .content {
	width: 9.6rem;
	margin: .4rem 0 1rem;
	line-height: .36rem;
	font-size: .18rem;
	color: #fff;
	opacity: .6;
}
.m-service li {
	box-sizing: border-box;
	width: 3.2rem;
	border-radius: 6px;
	padding: 15px;
	color: #fff;
	background: #0A2B91;
	transition: all .3s ease;
}
.m-service a {
	opacity: 0;
	transform: translate(0,1rem);
	transition: transform .8s ease, opacity .8s ease;
}
.m-service a:nth-child(2) {
	transition-delay: .3s;
}
.m-service a:nth-child(3) {
	transition-delay: .6s;
}
.m-service a:nth-child(4) {
	transition-delay: .9s;
}
.m-service.z-active a {
	opacity: 1;
	transform: translate(0,0);
}
.m-service li:hover {
	color: #000;
	background: #F0E547;
}
.m-service a:nth-child(n+2) li {
	margin-left: .4rem;
}
.m-service li .image {
	margin-bottom: 8px;
	overflow: hidden;
}
.m-service li .image div {
	height: 2rem;
}
.m-service li h1 {
	line-height: 60px;
	font-size: 20px;
	font-weight: normal;
}
.m-service li p {
	line-height: 26px;
	font-size: 13px;
	opacity: .6;
}
.m-service li .more {
	margin-top: 30px;
	font-size: 20px;
	text-align: right;
	color: #F0E547;
	transition: all .3s ease;
}
.m-service li:hover .more {
	color: #000;
}
/* end service */

/* news */
.m-news {
	background: url('../img/index/news_bg.jpg');
}
.m-news .m-content {
	box-sizing: border-box;
	height: 100vh;
	padding-top: 90px;
}
.m-news .top {
	margin-top: .68rem;
}
.m-news .top .image {
	box-sizing: border-box;
	width: 4.7rem;
	height: 3.2rem;
	padding: .1rem;
	margin-right: .9rem;
	background-color: #fff;
}
.m-news .top h1 {
	font-size: .3rem;
	font-weight: normal;
	color: #fff;
}
.m-news .top p {
	height: .9rem;
	margin: .4rem 0;
	line-height: .3rem;
	font-size: .16rem;
	color: #fff;
}
.m-news .top .more {
	position: relative;
	width: 1.1rem;
	height: .52rem;
	font-size: .16rem;
	color: #fff;
	transition: all .3s ease;
}
.m-news .top .more:hover {
	color: #F0E547;
}
.m-news .top .more .tf {
	font-size: .2rem;
}
.m-news .top .more:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #F0E547;
	transition: all .3s ease;
}
.m-news .top .more:hover:after {
	width: 100%;
}
.m-news ul {
	border-top: 1px solid rgba(221,221,221,.5);
	padding-top: .5rem;
	margin-top: .96rem;
}
.m-news li {
	width: 2.9rem;
}
.m-news a:nth-child(n+2) li {
	margin-left: .8rem;
}
.m-news li p {
	height: .6rem;
	margin-bottom: .3rem;
	line-height: .3rem;
	font-size: .2rem;
	color: #fff;
}
.m-news li:hover p {
	color: #F0E547;
}
.m-news li span {
	font-size: .15rem;
	color: #fff;
	opacity: .5;
}
/* end news */