@media screen and (max-width: 980px) {
	.z_radius_box {
		display: block !important;
		padding: 30px 15px !important;
		overflow: hidden
	}

	:root {
		--radius: 10px
	}

	.z_flex_warp {
		display: block
	}
}

.z_load_page {
	width: 100%;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	background: #fff;
	transition: clip-path 1.5s, -webkit-clip-path 1.5s;
	-webkit-clip-path: circle(150% at 100% 0px);
	clip-path: circle(150% at 100% 0px);
	z-index: 99999
}

.z_load_page.close {
	-webkit-clip-path: circle(0% at 100% 0px);
	clip-path: circle(0% at 100% 0px)
}

.z_load_page .imgwarp li {
	position: absolute
}

.z_load_page .imgwarp li .imgbg {
	overflow: hidden;
	-webkit-transition: ease 2s;
	transition: ease 2s;
	border-radius: 60% 40% 50% 50%/35% 45% 55% 65%;
	-webkit-transform-origin: center;
	transform-origin: center;
	width: 12vw;
	height: 12vw
}

@media screen and (max-width: 980px) {
	.z_load_page .imgwarp li .imgbg {
		width: 100px;
		height: 100px
	}
}

.z_load_page .imgwarp li:nth-child(1) {
	left: 40vw;
	top: 10%
}

.z_load_page .imgwarp li:nth-child(2) {
	left: 24vw;
	top: 30%
}

.z_load_page .imgwarp li:nth-child(2) .imgbg {
	-webkit-transform: scale(0.8, 0.8);
	transform: scale(0.8, 0.8)
}

.z_load_page .imgwarp li:nth-child(3) {
	left: 42vw;
	top: 40%
}

.z_load_page .imgwarp li:nth-child(3) .imgbg {
	-webkit-transform: scale(0.6, 0.6);
	transform: scale(0.6, 0.6)
}

.z_load_page .imgwarp li:nth-child(4) {
	left: 68vw;
	top: 40%
}

.z_load_page .imgwarp li:nth-child(4) .imgbg {
	-webkit-transform: scale(0.8, 0.8);
	transform: scale(0.8, 0.8)
}

.z_load_page .imgwarp li:nth-child(5) {
	left: 24vw;
	top: 10%
}

.z_load_page .imgwarp li:nth-child(5) .imgbg {
	-webkit-transform: scale(0.4, 0.4);
	transform: scale(0.4, 0.4);
	background: #d8b66e
}

.z_load_page .imgwarp li:nth-child(6) {
	left: 52vw;
	top: 32%
}

.z_load_page .imgwarp li:nth-child(6) .imgbg {
	-webkit-transform: scale(0.3, 0.3);
	transform: scale(0.3, 0.3);
	background: #006837
}

.z_load_page .dot {
	width: 4vw;
	height: 4vw;
	border-radius: 50%;
	-webkit-transform-origin: 30% 30px;
	transform-origin: 30% 30px
}

@media screen and (max-width: 980px) {
	.z_load_page .dot {
		width: 50px;
		height: 50px
	}
}

.z_load_page .dot.dot1 {
	position: absolute;
	left: 15%;
	top: 40%;
	border: 2px solid #006837;
	opacity: .6;
	-webkit-animation: spin2 8s infinite linear;
	animation: spin2 8s infinite linear
}

.z_load_page .dot.dot2 {
	position: absolute;
	right: 30%;
	top: 20%;
	border: 2px solid #d8b66e;
	opacity: .6;
	-webkit-animation: spin 8s infinite linear;
	animation: spin 8s infinite linear
}

.z_load_page .dot.dot3 {
	position: absolute;
	right: 20%;
	bottom: 20%;
	background: #006837;
	opacity: .1;
	width: 4vw;
	height: 4vw;
	-webkit-animation: spin2 8s infinite linear;
	animation: spin2 8s infinite linear
}

@media screen and (max-width: 980px) {
	.z_load_page .dot.dot3 {
		width: 30px;
		height: 30px
	}
}

.z_load_page .dot.dot4 {
	position: absolute;
	left: 20%;
	top: 20%;
	background: #d8b66e;
	opacity: .1;
	width: 3.2vw;
	height: 3.2vw;
	-webkit-animation: spin 8s infinite linear;
	animation: spin 8s infinite linear
}

@media screen and (max-width: 980px) {
	.z_load_page .dot.dot4 {
		width: 30px;
		height: 30px
	}
}

@-webkit-keyframes spin {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@keyframes spin {
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@-webkit-keyframes spin2 {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn)
	}
}

@keyframes spin2 {
	to {
		-webkit-transform: rotate(-1turn);
		transform: rotate(-1turn)
	}
}

@-webkit-keyframes float {
	0% {
		-webkit-transform: translate(0px, 0);
		transform: translate(0px, 0)
	}

	50% {
		-webkit-transform: translate(-10%, 20%);
		transform: translate(-10%, 20%)
	}

	100% {
		-webkit-transform: translate(0px, 0);
		transform: translate(0px, 0)
	}
}

@keyframes float {
	0% {
		-webkit-transform: translate(0px, 0);
		transform: translate(0px, 0)
	}

	50% {
		-webkit-transform: translate(-10%, 20%);
		transform: translate(-10%, 20%)
	}

	100% {
		-webkit-transform: translate(0px, 0);
		transform: translate(0px, 0)
	}
}

@-webkit-keyframes float2 {
	0% {
		-webkit-transform: translate(-10%, -30%);
		transform: translate(-10%, -30%)
	}

	50% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}

	100% {
		-webkit-transform: translate(-10%, -30%);
		transform: translate(-10%, -30%)
	}
}

@keyframes float2 {
	0% {
		-webkit-transform: translate(-10%, -30%);
		transform: translate(-10%, -30%)
	}

	50% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}

	100% {
		-webkit-transform: translate(-10%, -30%);
		transform: translate(-10%, -30%)
	}
}

.z_load_page .textwarp {
	width:80%;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 4vw
}

.z_load_page .textwarp .en {
	font-size: 2.4vw;
	font-weight: bold;
	color: #333;
	white-space: nowrap
}

@media screen and (max-width: 980px) {
	.z_load_page .textwarp .en {
		font-size: 40px
	}
}

@media screen and (max-width: 980px) {
	.z_load_page .textwarp .en {
		line-height: 40px
	}
}

.z_load_page .textwarp .cn {
	font-size: 2vw;
	font-weight: bold;
	color: #d8b66e;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	margin:1vh 0 0;
}

.z_load_page .textwarp .cn span {
	margin-right: 1vw
}

@media screen and (max-width: 980px) {
	.z_load_page .textwarp .cn {
		font-size: 24px
	}
}

.z_load_page .z_load_num {
	width: 80px;
	height: 80px;
	border: 2px solid #d8b66e;
	border-radius: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #d8b66e;
	font-size:20px;
	margin-top: 2vh
}

.z_load_page .z_load_num>div { 
	display: flex;
	align-items: center;
	font-weight: 500;
}

@media screen and (max-width: 980px) {
	.z_load_page .textwarp {
		bottom: 40px
	}
}
