html {
	font-size: 10px
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	background-color: rgb(210, 210, 210);
	font-family: "Microsoft YaHei"
}

img {
    display: block;
    width: 100%;
    height: 100%;
}

.telegram a{
	position: fixed;
	top: 20%;
	right: 2%;
	width: 3rem;
	height: 1rem;
	background-size: 100% 100%;
	z-index: 999;
}
.bg img {
	margin-bottom: -1.2rem;
}
.downBtn{
	position: absolute;
	top: 44%;
	left: 35%;
	width: 30%;
	height: 1rem;
	background-size: 100% 100%;
	background-repeat: no-repeat;

}

.JOIN-TELEGRAM{
	position: absolute;
	top:48%;
	left: 25%;
	width: 50%;
	height: 1.5rem;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-image: url("/img/join-telegram.webp");
}

.other{
	margin-top: .5rem;
	text-align: center;
	font-size: 1rem;
	background-color: var(--primaryColor);
	border: 1px solid #000;
	padding: 8px 0;
	font-weight: 700;
	color: #fff;
	border-radius: .1rem;
	margin-bottom: .9rem ;
	margin-left: .5rem;
	margin-right: .5rem;
}

@media only screen and (max-width: 600px) {
	.downBtn{
		position: absolute;
		top: 44%;
		left: 15%;
		width: 70%;
		height: 1rem;
		background-size: 100% 100%;
		background-repeat: no-repeat;
	}
	.JOIN-TELEGRAM{
		top: 48%;
		left: 10%;
		width: 80%;
		height: 1.2rem;
	}
    }

	@keyframes rotate {
		0% {
			transform: scale(1)
		}
		50% {
			transform: scale(0.85)
		}
		100% {
			transform: scale(1)
		}
	}