#mycanvas {
	position: fixed;
	z-index: 999;
	width: 100vw;
	height: 100vh;
}

#video {
	top: 0;
	left: 0;
	position: absolute;
	display: none;
	z-index: 99;
}

.moonBox {
	position: absolute;
	z-index: -1;
	width: 100vw;
	height: 100vh;
	background-size: 100% 100%;
}

.moon {
	width: 60vw;
	aspect-ratio: 1/1;
	position: absolute;
	left: 50%;
	top: 5%;
	transform: translateX(-50%) translateY(0%);
	opacity: 0;
	animation: 1s moonAnime ease-out forwards;
}

@keyframes moonAnime {
	from {
		transform: translateX(-50%) translateY(50%);
		opacity: 0;
	}

	to {
		transform: translateX(-50%) translateY(0%);
		opacity: 1;
	}
}

.moon>img {
	width: 100%;
	height: 100%;
}

.moonShadow {
	width: 60vw;
	height: auto;
	/* aspect-ratio: 1/1; */
	position: absolute;
	left: 50%;
	top: 45%;
	opacity: 0;
	transform: translateX(-50%) translateY(0%);
	animation: 1s moonShadowAnime ease-out forwards;
}

@keyframes moonShadowAnime {
	from {
		transform: translateX(-50%) translateY(-50%);
		opacity: 0;
	}

	to {
		transform: translateX(-50%) translateY(0%);
		opacity: 1;
	}
}

.moonShadow>img {
	width: 100%;
	height: 100%;
}

.createKmd {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: white;
	position: fixed;
	z-index: 9999999;
	right: 5%;
	top: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.selectTexture {
	width: 13vw;
	height: 16vw;
	/* border-radius: 50%; */
	background-image: url('../images/openBtn.png');
	background-size: 100% 100%;
	position: fixed;
	z-index: 9999999;
	right: 5%;
	top: 10%;
	display: flex;
	opacity: 0;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	transition: 0.5s;
}

.saveImg {
	width: 13vw;
	height: 16vw;
	/* border-radius: 50%; */
	background-image: url('../images/saveImg.png');
	background-size: 100% 100%;
	position: fixed;
	z-index: 9999999;
	right: 5%;
	top: 20%;
	display: flex;
	opacity: 0;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	transition: 0.5s;
}

.tipsPlaneBox {
	position: fixed;
	z-index: 99999999;
	display: none;
	opacity: 0;
	animation: 1s tipsPlaneBoxAnime linear forwards;
}

@keyframes tipsPlaneBoxAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.tipsPlane {
	width: 40vw;
	position: fixed;
	z-index: 9999999;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.tipsPlane>img {
	width: 100%;
	height: 100%;
}

.confirmBtn {
	width: 35vw;
	position: fixed;
	z-index: 9999999;
	left: 50%;
	top: 80%;
	transform: translate(-50%, -50%);
}

.confirmBtn>img {
	width: 100%;
	height: 100%;
}

.btnListContainer {
	position: fixed;
	z-index: 999999;
	bottom: 40px;
	width: 100vw;
	height: auto;
	display: none;
	justify-content: center;
	align-items: center;
}

.btnListClose {
	position: absolute;
	right: 1.5vw;
	top: 4vw;
	width: 8vw;
	aspect-ratio: 1/1;
}

.btnListClose>img {
	width: 100%;
	height: 100%;
}

.btnListBg {
	width: 90vw;
}

.btnListBg>img {
	width: 100%;
	height: 100%;
}

.btnContent {
	width: auto;
	height: 20vh;
	position: absolute;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3.5vh;
	margin-right: 1.5vh;
}

.btnContent .btnItem {
	width: 8vw;
	margin: 0px 10px 0px 22px;
	background: url('../images/textBg.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.btnContent .btnItem:nth-of-type(6) {
	display: none;
}

.btnContent .btnItem>img {
	width: 100%;
}

.controlBtn {
	position: absolute;
	width: 79%;
	top: 0;
	height: 14%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.controlBtnItem {
	flex: 1;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #f3c379;
	font-size: 13px;
	transform: 1s all;
}

.controlBtnItemT{
	font-weight: 500;
	font-size: 17px;
	color: white;
}

.controlPlaneText {
	display: flex;
	justify-content: center;
	align-items: center;
}

.controlPlaneText>img {
	width: 60%;
	height: 60%;
}

.showSaveImg {
	position: fixed;
	z-index: 9999999;
	width: 90vw;
	height: auto;
	display: none;
	opacity: 0;
	top: 50%;
	left: 50%;
	animation: showSaveImgAnime 1s linear forwards;
}

@keyframes showSaveImgAnime {
	from {
		opacity: 0;
		transform: translate(0%, -50%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
		;
	}
}

.showSaveImg>img {
	width: 100%;
	height: 100%;
}

.showSaveImg .longPress {
	width: 25vw;
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: .8s longPressAnime alternate infinite;
}

.showSaveImg .longPress>img {
	width: 100%;
	height: 100%;
}

@keyframes longPressAnime {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

.showSaveImg .closeBtn {
	position: absolute;
	right: 10px;
	top: 20px;
	width: 40px;
	height: 40px;
}

.showSaveImg .closeBtn>img {
	width: 100%;
	height: 100%;
}

.personTips {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	z-index: 999;
}

.personBox {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	z-index: 999;
	opacity: 1;
	display: none;

}

.personBoxAnimeStart {
	animation: 1s opacityAnimeStart linear forwards;
}

.personBoxAnimeEnd {
	animation: 2s personAnimeEnd linear forwards;
}

.personBox>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.personText {
	position: absolute;
	top: 55vh;
	left: 14vw;
	width: 5vw;
	opacity: 0;
	display: none;
	transition: 1s;
}

.personTextAnimeStart {
	animation: 1s opacityAnimeStart 1s linear forwards;
}

.personTipsAnimeEnd {
	animation: 1s opacityAnimeEnd linear forwards;
}

.personText>img {
	width: 100%;
	height: 100%;
}

@keyframes opacityAnimeStart {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes opacityAnimeEnd {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes personAnimeEnd {
	25% {
		transform: scale(0.97);
		opacity: 1;
	}

	50% {
		transform: scale(1);
		opacity: 1;
	}

	75% {
		transform: scale(0.97);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.borderBox {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	z-index: 99999;
	opacity: 0;
}

.borderBox .title {
	width: 8.5vw;
	height: auto;
	position: absolute;
	top: 4.2vh;
	z-index: 99999;
	left: 4.5vw;
}

.borderBox .title>img {
	width: 100%;
	height: 100%;
}

.borderBox #borderCanvas1 {
	position: absolute;
	bottom: 0;
	z-index: 1;
}

.borderBox #borderCanvas2 {
	position: absolute;
	bottom: 0;
	z-index: 1;
	left: 50%;
	transform: translateX(-50%);
}

.borderBox #borderCanvas3 {
	position: absolute;
	bottom: 0;
	z-index: 1;
	right: 0;
}

.borderBox .borderTop {
	position: absolute;
	top: 0;
	left: 0;
	width: 76vw;
	height: auto;
}

.borderBox .borderBg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

.borderBox .borderBg>img {
	width: 100%;
	height: 100%;
}

.borderBox .borderTop>img {
	width: 100%;
	height: 100%;
}

.borderBox .borderBootom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: auto;
}

.borderBox .borderBootom>img {
	width: 100%;
	height: 100%;
	display: block;
}
