html,
body {
	font-size: 10px;
	padding: 0%;
	margin: 0 auto;
	max-width: 500px;
	min-height: 100vh;
	background-color:#1c0729;
	background-image: url(../static/bg.png);
	background-position: 0% 0%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	overflow: hidden;
}


.mainBj {
	width: 100%;
}

#container {
	margin: 0 auto;
	max-width: 500px;
	min-height: 100vh;
	position: relative;
	background: url(../static/bg.png) no-repeat top center;
    background-size: cover;
	text-align:center;
}
.logo{width:200px;padding-top:5px;}
.mainBj {

}
.chinese {
	position: absolute;
	top: 20px;
	left: 15px;
	width: 30px;
}

.server {
	position: absolute;
	top: 20px;
	right: 15px;
	width: 30px;
}


.footer {
    margin-top:10px;
	color: #a6a7c5;
	text-align: center;
	width: 100%;
	text-align: center;
}


.icons img {
	width: 100%;
}

.icon-wrapper {
	margin: 0 auto;
	position: relative;
	width: 80%;
}

.weight {
	font-weight: bold;
}

.yellow {
	color: #c8a12c;
}

.lines {
	width: 100%;
}

.line {
	margin-top: 10px;
	width: 100%;
	height: 35px;
	line-height: 35px;
	background-color: #1e1029;
	color: #fff;
	border-radius: 10px;
	display: flex;
}

.line .name {
	border-radius: 5px;
	background-color: #5e19d4;
	width: 17%;
	height: 26px;
	line-height: 26px;
	margin-left: 4px;
	margin-top: 4px;
}

.line .content {
	width: 70%;
	text-align: center;
}

.line .content .icon {
	height: 20px;
	width: 20px;
}

.line .content .text {
	vertical-align: 5px;
	font-size: 14px;
	font-weight: bold;
}

.line .btn {
	width: 30%;
	height: 35px;
	font-size: 12px;
	text-align: center;
	line-height: 34px;
	background-color: transparent;
	background-image: url(../static/iconbtn.png);
	background-position: 0% 0%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.btnGif {
	background-color: transparent;
	background-image: url(../static/btnbj.gif);
	background-position: 0% 0%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

/* 定义缩放动画 */
@keyframes scaleAnimation {
	from {
		transform: scale(1);
		/* 初始状态，原始大小 */
	}

	to {
		transform: scale(1.2);
		/* 结束状态，放大到1.5倍 */
	}
}

/* 应用动画的元素 */
.scale-me {
	/* 动画名称、持续时间、时间函数、延迟时间（如果有）、循环次数、是否反向播放等 */
	animation: scaleAnimation 0.5s ease-in-out infinite alternate;
}

.downBtn {
	position: relative;
	overflow: hidden;
	/* 关键：确保超出部分被裁剪 */
	display: inline-block;
	/* 确保按钮有明确的尺寸 */
	width: 80%;
	/* 根据你的实际按钮宽度调整 */
	height: auto;
	/* 根据你的实际按钮高度调整 */
}

.downBtn::before {
	content: "";
	position: absolute;
	top: 20%;
	left: 0%;
	width: 30%;
	height: 50%;
 background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%);
	transform: skewX(-15deg) translateX(-100%);
	filter: blur(10px);
	animation: lightsaberSweep 1.8s infinite;
}

@keyframes lightsaberSweep {
	0% {
		left: -100%;
		opacity: 0;
	}

	30% {
		opacity: 0.8;
	}

	80% {
		opacity: 0.8;
	}

	100% {
		left: 100%;
		opacity: 0;
	}
}

/* 移除闪光点避免可能的溢出 */
.downBtn::after {
	display: none;
}




.icons {
	width: 100%;
	text-align: center;
	margin-top: -10px;
}