:root {
	--primary-color: #0088cc;
	--primary-gradient: linear-gradient(135deg, #0088cc 0%, #00a2ff 100%);
	--secondary-color: #2ea6cc;
	--accent-color: #f8f9fa;
	--text-color: #333344;
	--text-secondary: #666677;
	--light-text: #888899;
	--white: #ffffff;
	--card-bg: rgba(255, 255, 255, 0.9);
	--border-radius: 16px;
	--border-radius-sm: 8px;
	--border-radius-lg: 24px;
	--box-shadow: 0 10px 30px rgba(0, 136, 204, 0.15);
	--box-shadow-hover: 0 15px 40px rgba(0, 136, 204, 0.2);
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
	color: var(--text-color);
	line-height: 1.6;
	background-color: #f9fbfd;
	background-image: 
		radial-gradient(at 10% 20%, rgba(0, 136, 204, 0.05) 0px, transparent 50%),
		radial-gradient(at 90% 80%, rgba(46, 166, 204, 0.05) 0px, transparent 50%);
}

code {
	font-family: "Courier New", monospace;
    background-color: #E5EDFF;
    /* color: #d63384; */
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

a:hover {
	color: var(--secondary-color);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 页面容器 */
.page {
	/*display: none;*/
	padding: 30px 0 80px;
	min-height: calc(100vh - 80px);
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.page.active {
	display: block;
}

/* 头部导航 */
header {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
}

.logo {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.logo img {
	height: 42px;
	margin-right: 12px;
}

.logo-text {
	font-size: 24px;
	font-weight: 700;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 28px;
}

.nav-menu a {
	color: var(--text-color);
	font-weight: 500;
	font-size: 16px;
	position: relative;
	padding: 8px 0;
}

.nav-menu a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--primary-gradient);
	border-radius: 3px;
	transition: var(--transition);
}

.nav-menu a:hover:after, .nav-menu a.active:after {
	width: 100%;
}

.dropdown {
	position: relative;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: var(--card-bg);
	backdrop-filter: blur(10px);
	min-width: 180px;
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius-sm);
	z-index: 1;
	padding: 12px 0;
	top: 100%;
	left: 0;
	/*margin-top: 10px;*/
	padding-bottom: 10px;
}

.dropdown-content a {
	display: block;
	padding: 10px 24px;
	color: var(--text-color);
}

.dropdown-content a:hover {
	background-color: rgba(0, 136, 204, 0.05);
}

.dropdown:hover .dropdown-content {
	display: block;
	animation: fadeIn 0.3s ease;
}

.hamburger {
	display: none;
	cursor: pointer;
	font-size: 24px;
	color: var(--primary-color);
}

/* 首屏区域 - 重新设计 */
.hero {
	/*background: linear-gradient(120deg, #8A2BE2 0%, #0088cc 50%, #00BFFF 100%);
	color: var(--white);*/
	padding: 100px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
	background-size: 100% 100%;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1000px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.2rem;
	margin-bottom: 20px;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
	font-size: 1.3rem;
	max-width: 700px;
	margin: 0 auto 40px;
	opacity: 0.9;
}

.device-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 50px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	/*background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);*/
	color: var(--primary-color);
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	border: none;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn i {
	margin-right: 8px;
}

.btn-primary {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	/*color: var(--white);*/
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
	background: rgba(255, 255, 255, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--white);
	/*color: var(--white);*/
}

.btn-outline:hover {
	background: var(--white);
	color: var(--primary-color);
}

.hero-image {
	max-width: 80%;
	margin: 0 auto;
	display: block;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	transform: perspective(800px) rotateY(-5deg);
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image:hover {
	transform: perspective(800px) rotateY(0);
}

.hero-features {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 50px;
}

.hero-feature {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 15px 25px;
	border-radius: 50px;
	backdrop-filter: blur(10px);
}

.hero-feature i {
	margin-right: 10px;
	font-size: 20px;
}

/* 内容区块通用样式 */
.section {
	padding: 100px 0;
}

.section-alt {
	background-color: var(--accent-color);
	position: relative;
}

.section-alt:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.5)"/></svg>');
	background-size: 100% 100%;
	opacity: 0.5;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 16px;
	color: var(--text-color);
	font-weight: 700;
}

.section-title:after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--primary-gradient);
	border-radius: 2px;
	margin: 16px auto 0;
}

.section-desc {
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1rem;
}

.view-all {
	text-align: right;
	margin-bottom: 30px;
}

.view-all a {
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
	font-weight: 500;
}

.view-all a i {
	margin-left: 6px;
	transition: var(--transition);
}

.view-all a:hover i {
	transform: translateX(4px);
}

/* 卡片布局 */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: var(--box-shadow-hover);
}

.card-body {
	padding: 30px;
}

.card-title {
	font-size: 1.35rem;
	margin-bottom: 16px;
	color: var(--text-color);
	font-weight: 600;
}

/* 功能特点 */
.feature-card {
	text-align: center;
	padding: 40px 30px;
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 24px;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

/* 对比表格 */
.comparison-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin: 30px 0;
	background: var(--card-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.comparison-table th, 
.comparison-table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
	background-color: rgba(0, 136, 204, 0.05);
	font-weight: 600;
	color: var(--text-color);
}

.comparison-table tr:last-child td {
	border-bottom: none;
}

.comparison-table tr:hover {
	background-color: rgba(0, 136, 204, 0.02);
}

.checkmark {
	color: #00c851;
	font-weight: bold;
}

.cross {
	color: #ff4444;
	font-weight: bold;
}

/* FAQ样式 */
.faq-list {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 28px 30px;
	transition: var(--transition);
}

.faq-item:hover {
	background-color: rgba(0, 136, 204, 0.02);
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 12px;
	color: var(--text-color);
	display: flex;
	align-items: center;
}

.faq-question:before {
	content: '•';
	color: var(--primary-color);
	font-size: 24px;
	margin-right: 12px;
}

/* 评论样式 */
.testimonial {
	padding: 30px;
	background: var(--card-bg);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.testimonial:before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 60px;
	color: rgba(0, 136, 204, 0.1);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-text {
	margin-bottom: 24px;
	font-style: italic;
	color: var(--text-secondary);
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin-right: 16px;
	background: var(--primary-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--white);
}

.author-name {
	font-weight: 600;
}

.author-title {
	font-size: 0.9rem;
	color: var(--light-text);
}

/* 下载页面样式 */
.download-hero {
	text-align: center;
	padding: 80px 0 60px;
}

.download-hero h1 {
	font-size: 2.8rem;
	margin-bottom: 16px;
	color: var(--text-color);
}

.download-hero p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.download-platforms {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 50px 0;
}

.platform-card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.platform-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
}

.platform-icon {
	font-size: 56px;
	margin-bottom: 24px;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.platform-card h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
	color: var(--text-color);
}

.platform-card p {
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.qr-code {
	margin: 24px auto;
	width: 160px;
	height: 160px;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius-sm);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.qr-code:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="rgba(0,136,204,0.05)"/></svg>');
}

.qr-code span {
	font-size: 14px;
	color: var(--light-text);
}

/* 博客样式 */
.blog-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.blog-card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
}

.blog-image {
	height: 200px;
	background: var(--primary-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.blog-image:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 C50,100 50,0 100,100 L100,0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
	background-size: cover;
}

.blog-image i {
	font-size: 64px;
	color: rgba(255, 255, 255, 0.9);
	z-index: 1;
}

.blog-content {
	padding: 28px;
}

.blog-date {
	color: var(--primary-color);
	font-size: 0.9rem;
	margin-bottom: 12px;
	font-weight: 500;
}

.blog-card h3 {
	font-size: 1.4rem;
	margin-bottom: 16px;
	color: var(--text-color);
	line-height: 1.4;
}

.blog-card p {
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.blog-card .btn {
	padding: 10px 24px;
	font-size: 0.95rem;
}

/* 面包屑导航 */
.breadcrumb {
	padding: 20px 0;
	margin-bottom: 30px;
}

.breadcrumb ul {
	display: flex;
	list-style: none;
	align-items: center;
}

.breadcrumb li {
	margin-right: 10px;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.breadcrumb li:after {
	content: '/';
	margin-left: 10px;
	color: var(--light-text);
}

.breadcrumb li:last-child:after {
	content: '';
	margin-left: 0;
}

.breadcrumb a {
	color: var(--primary-color);
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* 博客内容页样式 */
.blog-article {
	max-width: 800px;
	margin: 0 auto;
}

.article-header {
	text-align: center;
	margin-bottom: 50px;
}

.article-meta {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	color: var(--text-secondary);
}

.article-meta span {
	margin: 0 12px;
}

.article-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--text-color);
	line-height: 1.3;
}

.article-image {
	width: 100%;
	height: 400px;
	background: var(--primary-gradient);
	border-radius: var(--border-radius);
	margin: 40px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-image i {
	font-size: 80px;
	color: rgba(255, 255, 255, 0.9);
}

.article-content {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--box-shadow);
}

.article-content h2 {
	font-size: 1.8rem;
	margin: 32px 0 16px;
	color: var(--text-color);
}

.article-content h3 {
	font-size: 1.4rem;
	margin: 28px 0 14px;
	color: var(--text-color);
}

.article-content p {
	margin-bottom: 20px;
	line-height: 1.7;
	color: var(--text-secondary);
}

.article-content blockquote {
	border-left: 4px solid var(--primary-color);
	padding-left: 24px;
	margin: 30px 0;
	font-style: italic;
	color: var(--text-secondary);
}

.article-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.article-tags {
	display: flex;
	align-items: center;
}

.article-tags span {
	margin-right: 12px;
	color: var(--text-secondary);
}

.tag {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(0, 136, 204, 0.1);
	color: var(--primary-color);
	border-radius: 50px;
	font-size: 0.85rem;
	margin-right: 8px;
}

.article-share {
	display: flex;
	align-items: center;
}

.article-share a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 12px;
	color: var(--text-secondary);
	transition: var(--transition);
}

.article-share a:hover {
	background: var(--primary-color);
	color: var(--white);
}

/* 相关文章 */
.related-posts {
	margin-top: 60px;
}

.related-posts h3 {
	font-size: 1.5rem;
	margin-bottom: 30px;
	color: var(--text-color);
	position: relative;
	padding-bottom: 15px;
}

.related-posts h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--primary-gradient);
	border-radius: 2px;
}

/* 页脚样式 */
footer {
	background-color: #2c3e50;
	color: var(--white);
	padding: 80px 0 40px;
	position: relative;
}

footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
	background-size: 100% 100%;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.footer-column h3 {
	font-size: 1.3rem;
	margin-bottom: 24px;
	color: var(--white);
	position: relative;
	padding-bottom: 12px;
}

.footer-column h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 14px;
}

.footer-links a {
	color: #ccd6dd;
	display: inline-flex;
	align-items: center;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--white);
	transform: translateX(5px);
}

.footer-links a i {
	margin-right: 10px;
	font-size: 14px;
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #ccd6dd;
	font-size: 0.95rem;
	position: relative;
	z-index: 1;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		flex-direction: column;
		background-color: rgba(255, 255, 255, 1.0);
		backdrop-filter: blur(10px);
		width: 280px;
		height: 100vh;
		text-align: left;
		transition: 0.3s;
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
		padding: 30px;
		overflow-y: auto;
	}
	
	.nav-menu.active {
		left: 0;
	}
	
	.nav-menu li {
		margin: 18px 0;
	}
	
	.dropdown-content {
		position: static;
		box-shadow: none;
		display: block;
		margin: 10px 0 10px 20px;
		background: rgba(0, 0, 0, 0.03);
	}
	
	.hamburger {
		display: block;
	}
	
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.hero-features {
		flex-direction: column;
		gap: 20px;
	}
	
	.section-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	.section {
		padding: 80px 0;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.download-platforms {
		grid-template-columns: 1fr;
	}
	
	.blog-list {
		grid-template-columns: 1fr;
	}
	
	.article-title {
		font-size: 2rem;
	}
	
	.article-image {
		height: 250px;
	}
	
	.article-content {
		padding: 30px 20px;
	}
	
	.article-footer {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.article-share {
		margin-top: 20px;
	}
	
	.breadcrumb ul {
		flex-wrap: wrap;
	}
	
	.breadcrumb li {
		margin-bottom: 5px;
	}
}

.card-verify {
	margin-bottom: 60px;
}

.other-versions {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 2.2rem;
	margin-bottom: 16px;
	color: var(--text-color);
	font-weight: 700;
}

.section-title:after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--primary-gradient);
	border-radius: 2px;
	margin: 16px auto 0;
}

.section-desc {
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1rem;
}

.versions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.version-card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.version-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--box-shadow-hover);
}

.version-header {
	padding: 25px 25px 15px;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.version-icon {
	font-size: 48px;
	margin-bottom: 15px;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.version-name {
	font-size: 1.4rem;
	margin-bottom: 8px;
	color: var(--text-color);
	font-weight: 600;
}

.version-desc {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.version-content {
	padding: 20px 25px;
	flex-grow: 1;
}

.version-features {
	list-style: none;
	margin-bottom: 25px;
}

.version-features li {
	padding: 8px 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
}

.version-features li:last-child {
	border-bottom: none;
}

.version-features li i {
	color: var(--primary-color);
	margin-right: 10px;
	font-size: 14px;
}

.version-footer {
	padding: 0 25px 25px;
	text-align: center;
}

.btn-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: var(--primary-gradient);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	width: 100%;
}

.btn-download:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-download i {
	margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.versions-grid {
		grid-template-columns: 1fr;
	}
	
	.section-title {
		font-size: 1.8rem;
	}
}

.btn-bottom {
	margin-bottom: 15px
}

.section-faq {
	background-color: var(--accent-color);
}

.section-top {
	margin-top: 50px;
}

/* 弹窗容器 - 居中上方显示 */
.feedback-toast {
	position: fixed;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	max-width: 350px;
	padding: 16px 24px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
	display: flex;
	align-items: center;
	font-family: inherit;
}

/* 成功状态样式 */
.feedback-toast.success {
	background: #f0fdf4;
	border-left: 4px solid #10b981;
	color: #065f46;
}

/* 失败状态样式 */
.feedback-toast.error {
	background: #fef2f2;
	border-left: 4px solid #ef4444;
	color: #991b1b;
}

/* 显示状态 */
.feedback-toast.show {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* 图标样式 */
.feedback-icon {
	margin-right: 12px;
	font-size: 20px;
}

/* 关闭按钮 */
.feedback-close {
	margin-left: auto;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.feedback-close:hover {
	opacity: 1;
}

.faq-item ul,
.faq-item ol {
	    margin: 20px 0;
	padding-left: 20px;
}

.faq-item li{
	    margin-bottom: 10px;
}


