:root {
	--primary: #00C853;
	--primary-light: #69F0AE;
	--primary-dark: #009624;
	--background: #F8F9FA;
	--text: #333333;
	--text-light: #666666;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: var(--text);
	background-color: var(--background);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
	/* 适配固定导航栏的高度 */
}

/* Header样式 - 统一定义 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: translateY(-1px);
}

.logo img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.logo span {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
	padding: 0.5rem 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transition: transform 0.3s;
}

.nav-link:hover::after {
	transform: scaleX(1);
}

/* Banner优化 */
.banner {
	background: linear-gradient(135deg, rgba(232, 245, 233, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
	margin-top: 20;
	/* 修改这里，移除负margin */
	padding-top: 140px;
	/* 增加顶部padding，为固定header留出空间 */
	padding-bottom: 4rem;
	overflow: hidden;
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 火热标签样式 */
.hot-tag {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #ff4d4d 0%, #ff9966 100%);
	color: white;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-weight: 600;
	margin-left: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
	animation: pulse 1.5s infinite;
	vertical-align: middle;
}

.hot-icon {
	margin-right: 0.5rem;
	font-size: 1.2rem;
}

.hot-text {
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

/* 在媒体查询中添加响应式样式 */
@media (max-width: 768px) {
	.hot-tag {
		margin-left: 0;
		margin-top: 0.5rem;
		padding: 0.3rem 0.8rem;
	}

	.banner-badge,
	.hot-tag {
		display: inline-flex;
		margin-bottom: 0.5rem;
	}
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: translateY(-1px);
}

.logo img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.logo span {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transition: transform 0.3s;
}

.nav-link:hover::after {
	transform: scaleX(1);
}

.download-button {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.download-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.download-button:hover::before {
	left: 100%;
}

.download-button:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 200, 83, 0.3);
}

.download-button::after {
	content: '⬇';
	margin-left: 0.8rem;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.download-button:hover::after {
	transform: translateY(3px);
}

.secondary-btn {
	display: inline-flex;
	align-items: center;
	padding: 1.2rem 2rem;
	background: white;
	color: var(--text);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	color: var(--primary);
}

.nav-download {
	padding: 0.8rem 1.5rem;
	font-size: 1rem;
}

.download-icon {
	margin-right: 0.5rem;
}

.banner {
	padding: 6rem 2rem 4rem;
	background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
	overflow: hidden;
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.banner-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	width: 100%;
}

.banner-text {
	flex: 0 1 55%;
	max-width: 600px;
}

.banner-text h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text);
	animation: slideUp 0.8s ease;
}

.banner-text p {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 2.5rem;
	animation: slideUp 0.8s ease 0.2s backwards;
	max-width: 90%;
	line-height: 1.8;
}

.banner-image {
	flex: 0 1 45%;
	max-width: 500px;
	animation: float 6s ease-in-out infinite;
}

.banner-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.banner-image:hover img {
	transform: scale(1.02);
}

.banner-cta {
	animation: slideUp 0.8s ease 0.4s backwards;
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.download-button {
	display: inline-flex;
	align-items: center;
	padding: 1.2rem 2.5rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.download-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.download-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.download-button:hover::before {
	left: 100%;
}

.download-button::after {
	content: '⬇';
	margin-left: 0.8rem;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.download-button:hover::after {
	transform: translateY(3px);
}

.banner-badge {
	display: inline-block;
	background: rgba(0, 200, 83, 0.1);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 600;
	margin-bottom: 1rem;
	animation: slideUp 0.8s ease;
}

.feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0;
}

.feature-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature-tag:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-tag svg {
	color: var(--primary);
}

.download-group {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 2rem 0;
}

.primary-download {
	font-size: 1.2rem;
	padding: 1.2rem 2.5rem;
	border-radius: 16px;
	position: relative;
}

.download-size {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-left: 0.5rem;
}

.download-counter {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.counter-number {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary);
}

.counter-label {
	font-size: 0.9rem;
	color: var(--text-light);
}

.version-info {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
	color: var(--text-light);
}

.version-info span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.version-info svg {
	color: var(--primary);
	opacity: 0.8;
}

@media (max-width: 768px) {
	.banner {
		min-height: auto;
		padding: 6rem 1.5rem 3rem;
	}

	.banner-content {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.banner-text,
	.banner-image {
		flex: 0 1 100%;
		max-width: 100%;
	}

	.banner-text h1 {
		font-size: 2.5rem;
	}

	.banner-text p {
		margin-left: auto;
		margin-right: auto;
	}

	.banner-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.download-button,
	.secondary-btn {
		justify-content: center;
	}

	.download-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.version-info {
		flex-direction: column;
		gap: 1rem;
	}

	.feature-tags {
		gap: 0.8rem;
	}

	.feature-tag {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 4rem auto;
	padding: 0 2rem;
}

.feature-box {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.feature-icon-wrapper {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(105, 240, 174, 0.1) 100%);
	transition: all 0.3s ease;
	position: relative;
}

.download-indicator {
	position: absolute;
	right: -5px;
	top: -5px;
	color: var(--primary);
	font-size: 1.2rem;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.feature-box:hover .download-indicator {
	opacity: 1;
	transform: translateY(0);
}

.feature-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box:active {
	transform: scale(0.98);
}

.feature-box:active .feature-icon-wrapper {
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.3) 0%, rgba(105, 240, 174, 0.3) 100%);
}

.feature-box:active .download-indicator {
	color: var(--primary-dark);
}

.feature-icon-large {
	width: 48px;
	height: 48px;
	object-fit: contain;
	transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-wrapper {
	transform: scale(1.1);
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(105, 240, 174, 0.2) 100%);
}

.feature-title {
	font-size: 1.5rem;
	color: var(--text);
	margin-bottom: 1rem;
	font-weight: 600;
}

.feature-desc {
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.feature-download {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 1.5rem;
	background: white;
	color: var(--primary);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 500;
	margin-top: auto;
	border: 2px solid var(--primary);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-download::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.feature-download:hover {
	color: white;
}

.feature-download:hover::before {
	opacity: 1;
}

.feature-download-text {
	position: relative;
	z-index: 2;
	font-size: 0.9rem;
	margin-left: 0.5rem;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
}

.feature-download:hover .feature-download-text {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 768px) {
	.feature-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 0 1rem;
	}

	.feature-box {
		padding: 1.5rem;
	}

	.feature-icon-wrapper {
		width: 60px;
		height: 60px;
	}

	.feature-icon-large {
		width: 36px;
		height: 36px;
	}

	.feature-title {
		font-size: 1.3rem;
	}

	.feature-desc {
		font-size: 0.95rem;
	}

	.download-indicator {
		font-size: 1rem;
		right: -3px;
		top: -3px;
	}
}

.preview-section {
	padding: 6rem 0;
	position: relative;
}

.preview-section:nth-child(even) {
	background: white;
}

.preview-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.preview-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	align-items: center;
}

.preview-content {
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.8s ease;
}

.preview-content.visible {
	opacity: 1;
	transform: translateX(0);
}

.preview-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--text);
	animation: slideUp 0.8s ease;
}

.preview-content p {
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.preview-image {
	opacity: 0;
	transform: translateX(20px);
	transition: all 0.8s ease;
}

.preview-image.visible {
	opacity: 1;
	transform: translateX(0);
}

.preview-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.preview-image:hover img {
	transform: scale(1.02);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

@media (max-width: 768px) {
	.banner-text h1 {
		font-size: 2.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.key-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.banner-cta {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
		padding: 1.2rem;
		width: 100%;
		max-width: 100%;
	}

	.download-info {
		padding-left: 0;
		padding-top: 1.2rem;
		align-items: center;
	}

	.download-info::before {
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: 70%;
		height: 1px;
	}

	.download-button {
		width: 100%;
		justify-content: center;
	}

	.banner-content,
	.preview-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.banner-text h1 {
		font-size: 2.5rem;
	}

	.preview-content,
	.preview-image {
		transform: translateX(0);
	}
}

.footer {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	color: white;
	padding: 6rem 0 2rem;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 4rem;
}

.footer-section {
	opacity: 0;
	transform: translateY(20px);
	animation: slideUp 0.8s ease forwards;
}

.footer-section:nth-child(2) {
	animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
	animation-delay: 0.4s;
}

.footer-section h3 {
	color: var(--primary);
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s;
}

.footer-section:hover h3::after {
	width: 60px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 1rem;
	transition: transform 0.3s;
}

.footer-links li:hover {
	transform: translateX(5px);
}

.footer-links a {
	color: #999;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-links a::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
	opacity: 0;
	transform: scale(0);
	transition: all 0.3s;
}

.footer-links a:hover {
	color: white;
	padding-left: 0.5rem;
}

.footer-links a:hover::before {
	opacity: 1;
	transform: scale(1);
}

.copyright {
	text-align: center;
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #666;
	font-size: 0.9rem;
	animation: fadeIn 1s ease forwards;
}

.copyright p {
	opacity: 0.8;
	transition: opacity 0.3s;
}

.copyright p:hover {
	opacity: 1;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.footer-section h3::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-links li:hover {
		transform: translateX(0);
	}

	.footer-links a:hover {
		padding-left: 0;
	}
}

.copyright-info {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 0.9rem;
	color: var(--text-light);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.copyright-info a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.copyright-info a:hover {
	color: var(--primary);
}

.beian-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

@media (max-width: 768px) {
	.copyright-info {
		text-align: center;
	}
}

.help-guide {
	padding: 5rem 2rem;
	background: #fff;
}

.help-guide h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--text);
}

.guide-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.guide-item {
	background: var(--background);
	padding: 2rem;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.guide-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guide-item h3 {
	color: var(--primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.guide-item h3::before {
	content: '?';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	font-size: 1.2rem;
}

.guide-item p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.guide-steps {
	margin-top: 1.5rem;
}

.guide-step {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: white;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.guide-step:hover {
	background: rgba(0, 200, 83, 0.05);
}

.step-number {
	color: var(--primary);
	font-weight: bold;
	font-size: 1.1rem;
}

.step-content {
	color: var(--text);
	line-height: 1.6;
}

@media (max-width: 768px) {
	.guide-grid {
		grid-template-columns: 1fr;
	}

	.help-guide {
		padding: 4rem 1.5rem;
	}

	.help-guide h2 {
		font-size: 2rem;
	}
}

.feedback-section {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--text);
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary);
	border-radius: 2px;
}

.feedback-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.feedback-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feedback-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
	border-color: var(--primary);
}

.user-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1rem;
}

.user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.user-rating {
	color: #FFD700;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.feedback-text {
	color: var(--text);
	font-size: 1rem;
	line-height: 1.6;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.user-name {
	font-weight: 600;
	color: var(--text);
}

.user-title {
	color: var(--text-light);
	font-size: 0.9rem;
}

.comments-section {
	padding: 6rem 2rem;
	background: #ffffff;
}

.comments-container {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.comment-form {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.comment-form h3 {
	font-size: 1.5rem;
	color: var(--text);
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-group textarea {
	height: 120px;
	resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.rating-select {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.star-rating {
	display: flex;
	flex-direction: row-reverse;
	gap: 0.5rem;
}

.star-rating input {
	display: none;
}

.star-rating label {
	color: #ddd;
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.3s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
	color: #FFD700;
}

.submit-btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.comments-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.comment-item {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.comment-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.comment-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.comment-author {
	font-weight: 600;
	color: var(--text);
}

.comment-rating {
	color: #FFD700;
	font-size: 1rem;
}

.comment-text {
	color: var(--text);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.comment-date {
	color: var(--text-light);
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.feedback-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2rem;
	}

	.feedback-card {
		padding: 1.5rem;
	}

	.comment-form {
		padding: 1.5rem;
	}

	.rating-select {
		flex-direction: column;
		align-items: flex-start;
	}
}

.banner-badge {
	display: inline-block;
	background: rgba(0, 200, 83, 0.1);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 500;
	margin-bottom: 1rem;
	animation: fadeIn 0.8s ease;
}

.version {
	font-size: 1.2rem;
	color: var(--primary);
	background: rgba(0, 200, 83, 0.1);
	padding: 0.3rem 0.8rem;
	border-radius: 8px;
	margin-left: 1rem;
	vertical-align: middle;
}

.feature-tags {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin: 2rem 0;
	animation: slideUp 0.8s ease 0.3s backwards;
}

.feature-tag {
	background: white;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	color: var(--text);
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.feature-tag:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	background: rgba(0, 200, 83, 0.1);
	color: var(--primary);
}

.download-info {
	display: flex;
	gap: 1.5rem;
	margin-top: 1rem;
	color: var(--text-light);
	font-size: 0.95rem;
}

.download-info span {
	display: flex;
	align-items: center;
}

.download-info span::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	background: var(--primary);
	border-radius: 50%;
	margin-right: 0.5rem;
}

@media (max-width: 768px) {
	.feature-tags {
		justify-content: center;
	}

	.download-info {
		flex-direction: column;
		gap: 0.5rem;
		align-items: center;
	}
}

.float-contact {
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.float-item {
	background: white;
	padding: 1rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid rgba(0, 200, 83, 0.1);
	position: relative;
}

.float-item:hover {
	transform: translateX(-5px);
	box-shadow: 0 6px 25px rgba(0, 200, 83, 0.15);
	border-color: var(--primary);
}

.float-item .icon {
	font-size: 24px;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.float-item .label {
	font-size: 0.9rem;
	color: var(--text);
	margin-bottom: 0.3rem;
}

.float-item .value {
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 500;
}

.float-item .qr-popup {
	position: absolute;
	right: calc(100% + 15px);
	top: 50%;
	transform: translateY(-50%) scale(0.95);
	background: white;
	padding: 1rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	width: 150px;
	text-align: center;
}

.float-item .qr-popup::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: white;
	box-shadow: 3px -3px 5px rgba(0, 0, 0, 0.05);
}

.float-item:hover .qr-popup {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) scale(1);
}

.qr-popup img {
	width: 120px;
	height: 120px;
	margin-bottom: 0.5rem;
}

.qr-popup .scan-text {
	font-size: 0.8rem;
	color: var(--text-light);
}

@media (max-width: 768px) {
	.float-contact {
		right: 15px;
	}

	.float-item {
		padding: 0.8rem;
	}

	.float-item .qr-popup {
		width: 130px;
		right: calc(100% + 10px);
	}

	.qr-popup img {
		width: 100px;
		height: 100px;
	}
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
}

.contact-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 200, 83, 0.1);
	color: var(--primary);
	font-size: 1.2rem;
}

.qq-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary);
	color: white;
	padding: 0.8rem 1.2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.qq-button:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 200, 83, 0.2);
}

.qq-button i {
	font-size: 1.2rem;
}

.wechat-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-light);
	font-size: 0.95rem;
}

.wechat-info i {
	color: var(--primary);
	font-size: 1.2rem;
}

.feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feature-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: rgba(0, 200, 83, 0.1);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 500;
}

.version-info {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1rem;
	color: var(--text-light);
	font-size: 0.9rem;
}

/* 帮助指南样式 */
.help-guide {
	padding: 60px 0;
	background: #f8f9fa;
}

.guide-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.tab-button {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	background: #fff;
	color: #666;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tab-button.active {
	background: #1890ff;
	color: #fff;
}

.guide-content {
	position: relative;
}

.tab-content {
	display: none;
	animation: fadeIn 0.5s ease;
}

.tab-content.active {
	display: block;
}

.guide-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.guide-item {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.guide-item:hover {
	transform: translateY(-5px);
}

.guide-icon {
	width: 48px;
	height: 48px;
	background: #e6f7ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.guide-icon svg {
	width: 24px;
	height: 24px;
	color: #1890ff;
}

.guide-item h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #333;
}

.guide-item p {
	color: #666;
	margin-bottom: 20px;
}

/* 步骤样式 */
.guide-steps {
	margin-top: 20px;
}

.guide-step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
	padding: 12px;
	border-radius: 8px;
	background: #f8f9fa;
	transition: background-color 0.3s ease;
}

.guide-step:hover {
	background: #e6f7ff;
}

.step-number {
	width: 24px;
	height: 24px;
	background: #1890ff;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-size: 14px;
}

.step-content {
	flex: 1;
	font-size: 15px;
	color: #444;
}

/* 系统要求样式 */
.system-requirements {
	margin-top: 20px;
}

.requirement-item {
	display: flex;
	justify-content: space-between;
	padding: 12px;
	border-bottom: 1px solid #eee;
}

.requirement-item:last-child {
	border-bottom: none;
}

.requirement-label {
	color: #666;
}

.requirement-value {
	color: #1890ff;
	font-weight: 500;
}

/* FAQ样式 */
.faq-list {
	margin-top: 20px;
}

.faq-item {
	margin-bottom: 16px;
	padding: 16px;
	border-radius: 8px;
	background: #f8f9fa;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: #e6f7ff;
}

.faq-question {
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.faq-answer {
	color: #666;
	font-size: 14px;
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
	animation: slideDown 0.3s ease;
}

/* 使用提示样式 */
.tips-list {
	margin-top: 20px;
}

.tip-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
	padding: 12px;
	border-radius: 8px;
	background: #f8f9fa;
	transition: transform 0.3s ease;
}

.tip-item:hover {
	transform: translateX(5px);
	background: #e6f7ff;
}

.tip-icon {
	margin-right: 12px;
	font-size: 20px;
}

.tip-content {
	flex: 1;
	color: #444;
}

/* 故障排除样式 */
.troubleshoot-steps,
.performance-tips {
	margin-top: 20px;
}

.trouble-item,
.performance-item {
	margin-bottom: 20px;
	padding: 16px;
	border-radius: 8px;
	background: #f8f9fa;
}

.trouble-header,
.performance-header {
	font-weight: 500;
	color: #333;
	margin-bottom: 12px;
}

.trouble-solution ol,
.performance-solution ul {
	margin: 0;
	padding-left: 20px;
	color: #666;
}

.trouble-solution li,
.performance-solution li {
	margin-bottom: 8px;
}

/* 动画 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 响应式调整 */
@media (max-width: 768px) {
	.guide-tabs {
		flex-wrap: wrap;
		gap: 10px;
	}

	.tab-button {
		width: calc(50% - 5px);
		padding: 10px;
		font-size: 14px;
	}

	.guide-grid {
		grid-template-columns: 1fr;
	}

	.guide-item {
		padding: 16px;
	}
}

/* 安装步骤样式 */
.install-steps {
	padding: 20px 0;
}

.step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: transform 0.2s ease;
}

.step:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
	width: 32px;
	height: 32px;
	background: #4CAF50;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-right: 15px;
	flex-shrink: 0;
}

.step-content {
	flex: 1;
}

.step-content h4 {
	margin: 0 0 5px 0;
	color: #333;
	font-size: 1.1em;
}

.step-content p {
	margin: 0;
	color: #666;
	font-size: 0.95em;
}

/* 版本对比表格样式 */
.version-compare {
	margin-top: 30px;
}

.version-table {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.version-col {
	flex: 1;
	background: #f8f9fa;
	border-radius: 12px;
	padding: 20px;
	transition: transform 0.2s ease;
}

.version-col.premium {
	background: #f0f7ff;
	border: 1px solid #e1effe;
}

.version-col:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.version-col h4 {
	color: #333;
	margin: 0 0 15px 0;
	font-size: 1.2em;
	text-align: center;
}

.version-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.version-col li {
	padding: 8px 0;
	color: #666;
	display: flex;
	align-items: center;
	gap: 8px;
}

.version-col.premium li {
	color: #2c5282;
}

.upgrade-btn {
	display: block;
	text-align: center;
	background: #4CAF50;
	color: white;
	padding: 12px 24px;
	border-radius: 6px;
	margin-top: 20px;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.2s;
}

.upgrade-btn:hover {
	background: #43a047;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.version-table {
		flex-direction: column;
	}

	.version-col {
		margin-bottom: 20px;
	}
}

/* 数据统计模块 */
.stats-section {
	padding: 4rem 0;
	background: #fff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-light);
	font-size: 1.1rem;
}

/* 对比模块 */
.comparison-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	max-width: 1000px;
	margin: 3rem auto 0;
	padding: 0 2rem;
}

.comparison-item {
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-item.highlight {
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
	border: 2px solid var(--primary);
}

.comparison-header {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text);
}

.comparison-list {
	list-style: none;
	padding: 0;
}

.comparison-list li {
	padding: 1rem 0;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.comparison-list li::before {
	content: '✕';
	color: #ff4d4d;
}

.comparison-list li.positive::before {
	content: '✓';
	color: var(--primary);
}

/* 响应式适配 */
@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.comparison-grid {
		grid-template-columns: 1fr;
	}
}


/* 火热标签样式 */
.hot-badge {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #ff4d4d 0%, #ff9966 100%);
	color: white;
	padding: 0.4rem 1.2rem;
	border-radius: 20px;
	font-weight: 600;
	margin-left: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
	animation: pulse 2s infinite;
	vertical-align: middle;
}

.hot-icon {
	margin-right: 0.5rem;
	font-size: 1.2rem;
	animation: bounce 1s infinite;
}

.hot-text {
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-2px);
	}
}

/* 数据统计模块 */
.stats-section {
	padding: 4rem 0;
	background: #fff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-light);
	font-size: 1.1rem;
}

/* 限时优惠模块 */
.promotion-section {
	padding: 3rem 0;
	background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.promotion-banner {
	max-width: 1000px;
	margin: 0 auto;
	background: linear-gradient(135deg, #00C853 0%, #69F0AE 100%);
	border-radius: 20px;
	padding: 3rem;
	color: white;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 200, 83, 0.2);
}

.promotion-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.promotion-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.countdown-item {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 1rem;
	min-width: 80px;
}

.countdown-number {
	display: block;
	font-size: 2rem;
	font-weight: bold;
}

.countdown-label {
	font-size: 0.9rem;
	opacity: 0.8;
}

.promotion-btn {
	background: white;
	color: var(--primary);
	font-size: 1.2rem;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promotion-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 对比模块 */
.comparison-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	max-width: 1000px;
	margin: 3rem auto 0;
	padding: 0 2rem;
}

.comparison-item {
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-item.highlight {
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
	border: 2px solid var(--primary);
}

.comparison-header {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--text);
}

.comparison-list {
	list-style: none;
	padding: 0;
}

.comparison-list li {
	padding: 1rem 0;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.comparison-list li::before {
	content: '✕';
	color: #ff4d4d;
}

.comparison-list li.positive::before {
	content: '✓';
	color: var(--primary);
}

.comparison-cta {
	text-align: center;
	margin-top: 3rem;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.comparison-grid {
		grid-template-columns: 1fr;
	}

	.hot-badge {
		margin-left: 0;
		margin-top: 0.5rem;
		padding: 0.3rem 0.8rem;
	}

	.banner-badge,
	.hot-badge {
		display: inline-flex;
		margin-bottom: 0.5rem;
	}

	.countdown-item {
		min-width: 60px;
		padding: 0.8rem;
	}

	.countdown-number {
		font-size: 1.5rem;
	}
}