* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html,
body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	padding-bottom: env(safe-area-inset-bottom);
	font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	background: linear-gradient(180deg, #ffffff 0%, rgba(142, 151, 253, 0.2) 100%);
	min-height: 100vh;
}

.container {
	width: 100%;
	max-width: 500px;
	text-align: center;
}

.logo {
	width: 120px;
	height: 120px;
	margin: 0 auto 30px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.title {
	font-size: 32px;
	font-weight: 600;
	color: #7948ea;
	margin-bottom: 12px;
}

.subtitle {
	font-size: 16px;
	color: #666;
	margin-bottom: 50px;
	line-height: 1.6;
}

.tips {
	color: #999;
	font-size: 14px;
	text-align: center;
	margin-bottom: 30px;
	padding: 0 20px;
	line-height: 1.8;
}

.weapp-btn-wrap {
	width: 100%;
	max-width: 320px;
	height: 50px;
	margin: 0 auto 20px;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(7, 193, 96, 0.3);
}

.scheme-btn {
	display: block;
	width: 100%;
	max-width: 320px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	margin: 0 auto;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
}

.scheme-btn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.features {
	margin-top: 60px;
	padding: 0 20px;
}

.feature-item {
	text-align: left;
	margin-bottom: 20px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.feature-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.feature-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.footer {
	margin-top: 40px;
	font-size: 12px;
	color: #999;
	line-height: 1.8;
}

/* 响应式适配 */
@media screen and (max-width: 375px) {
	.logo {
		width: 100px;
		height: 100px;
		font-size: 40px;
	}

	.title {
		font-size: 28px;
	}

	.subtitle {
		font-size: 14px;
	}
}

/* 适配小屏手机 */
@media screen and (max-height: 667px) {
	body {
		justify-content: flex-start;
		padding-top: 40px;
	}

	.logo {
		margin-bottom: 20px;
	}

	.subtitle {
		margin-bottom: 30px;
	}

	.features {
		margin-top: 40px;
	}
}

/* 微信开放标签按钮样式 */
.wx-open-launch-weapp .btn {
	width: 100%;
	height: 100%;
	line-height: 50px;
	text-align: center;
	background: #07c160;
	color: #fff;
	border: none;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.wx-open-launch-weapp .btn:active {
	background: #06b058;
	transform: scale(0.98);
}