.guideBox {
	position: relative;
	width: 100vw;
	height: 100vh;
	min-width: 1200px;
	min-height: 700px;
	/* overflow: hidden;
	overflow-y: hidden; */
}
.guideBgbox{
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}
.guideCon {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(0,0,0,0.3);
}
.water{
	position: absolute;
	top: 100px;
	right: 0;
	left: 0;
	bottom: 0;
}
.drop {
	position: relative;
	width: 30px;
	height: 30px;
	top: 13vh;
	margin: 0 auto;
	background: #fff;
	border-radius: 50px;
	animation:drip cubic-bezier(1, 0, .91, .19) 1.5s infinite;
}

.drop:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 30px solid rgba(255,255,255,1);
	top: -19px;
}

.wave {
	position: relative;
	opacity: 0;
	top:50vh;
	width: 2px;
	height: 1px;
	border: rgba(255,255,255,1) 4px solid;
	border-radius: 800px / 400px;
	animation:ripple 1.5s 1.5s infinite linear;
	margin: 0 auto;
	background: rgba(255,255,255,1);
}
/* .wave::before {
	content: "";
	position: absolute;
	opacity: 0;
	top: -5px;
	left: -5px;
	width: 2px;
	height: 1px;
	border: rgb(255,255,255,1) 5px solid;
	border-radius: 650px / 350px;
	animation:ripple-3 1.5s infinite;
	background: rgba(255,255,255,1);
}
.wave:after {
	content: "";
	position: absolute;
	opacity: 0;
	top: -5px;
	left: -5px;
	width: 2px;
	height: 1px;
	border: rgba(255,255,255,1) 5px solid;
	border-radius: 400px / 200px;
	animation:ripple-2 2s infinite;
	background: rgba(255,255,255,1);
} */

@keyframes ripple {
	0 {
		opacity: 1;
	}

	50% {
		width: 400px;
		height: 200px;
		border-width: 1px;
		top: 32.5vh;
		opacity: 0.8;
	}
	100%{
		width: 800px;
		height: 400px;
		border-width: 2px;
		top: 25vh;
		opacity: 0;
	}
}

@keyframes ripple-2 {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		width: 400px;
		height: 200px;
		border-width: 2px;
		top: 10vh;
		left: 200px;
	}
}
@keyframes ripple-3 {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		width: 650px;
		height: 325px;
		border-width: 2px;
		top: 2.5vh;
		left: 75px;
	}
}
@keyframes drip {
	to {
		top: 30vh;
	}
}
.guideText{
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
.guideLogo{
	width: 100%;
	height: 32px;
	opacity: 0;
	animation:loganit 1s 2.8s forwards linear;
	transform: translateY(40px);
}
.guideLogo img{
	display: block;
	height: 32px;
}
.guideMore{
	text-align: center;
	opacity: 0;
	animation:loganit1 1s 3.5s forwards linear;
}
.guideMore a{
	display: block;
	margin: 0 auto;
	width: 50px;
	width: 110px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #0f5e37;
	text-align: center;
	line-height: 40px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.guideMore a::before{
	display: block;
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	left: 0;
	top: 0;
	margin-left: -5px;
	margin-top: -39px;
	border-radius: 120px;
	background: #0f5e37;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transform: scale(0);
	-webkit-transform: scale(0);
	transform-origin: center center;
}
.guideMore a span{
	position:relative;
	line-height: 40px;
	font-size: 16px;
	color: #0f5e37;
}
.guideMore a:hover::before{
	transform: scale(1);
	-webkit-transform: scale(1);
}
.guideMore a:hover span{
	color: #fff;
}
@keyframes loganit {
	0{
		opacity:0;
		transform: translateY(40px);
	}
	50%{
		opacity:0.5;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes loganit1 {
	0{
		opacity:0;
		transform: translateY(40px);
	}
	50%{
		opacity:0.5;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}