html {
	font-size: 100px;
}

body {
	margin: 0;
	padding: 0;
	background-color:#a03e00;
	font-family: "Microsoft YaHei"
}

#top{
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 1.3rem;
	border-bottom: 2px solid #a23c00;
	z-index: 999;
}

.topIcon{
	margin-left: 10px;
	width: 1rem;
	height: 1rem;
}

.topTitle{
	margin-left: 10px;
	font-size: 0.4rem;
	font-weight: 600;
	color: #e9967f;
}

.container {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	background-color:0;
}

.support a{
	position: fixed;
	top: 10%;
	right: 2%;
	width: 1rem;
	height: 1rem;
	background-image: url("../image/support.webp");
	background-size: 100% 100%;
	z-index: 999;
}

.container .downBtn{
	position: absolute;
	top: 73%;
	left: 20%;
	width: 60%;
	height: 0.95rem;
	background-image: url("../image/download.webp");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.downBtn .online{
	position: absolute;
	top: -0.5rem;
	right: -0.8rem;
	width: 1.8rem;
	height: 1rem;
	background-image: url("../image/online.webp");
	background-size: 80% 80%;
	background-repeat: no-repeat;
}

.container .downNum{
	position: absolute;
	top: 45.7%;
	right: 14%;
	width: 40%;
	height: 1rem;
	font-size: 0.44rem;
	text-align: center;
	align-items: 1rem;
	color: #fff;
}

.container .footer{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3rem;
	color: #ffffff;
}

.footer p{
	padding: 0;
	margin: 0;
}
@keyframes rotate {
  0% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}