/* 全局重置：修复移动端右侧空隙 + 基础样式 */
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden; /* 禁止横向滚动，修复右侧空隙 */
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft Yahei", "PingFang SC", Arial, sans-serif;
}

:root {
	/* 核心色值：黑紫色主色 + 差异化板块背景色 */
	--primary: #5D54D1; /* 黑紫色主色 */
	--primary-dark: #4A42B8; /* 主色加深 */
	--btn-primary: #10B981; /* 按钮主色 */
	--btn-primary-hover: #0ea370; /* 按钮hover色 */
	--primary-gradient: linear-gradient(135deg, #4A3F9B 0%, #2D2659 100%); /* 黑紫渐变 */
	/* 差异化板块背景色 */
	--bg-global: #F5F7FA; /* 全局浅灰 */
	--bg-feature: #F0F2FF; /* 产品特色板块背景（浅紫） */
	--bg-enterprise: #EFF8FB; /* 企业优势板块背景（浅青） */
	--bg-review: #FFFFFF; /* 用户评价板块背景（纯白） */
	--bg-free: #1A122E; /* 永久免费板块背景（深紫） */
	--bg-white: #FFFFFF; /* 基础白色 */
	--text-main: #333333; /* 主文字 */
	--text-secondary: #666666; /* 次要文字 */
	--text-light: #999999; /* 浅色文字 */
	--text-white: #FFFFFF; /* 白色文字 */
	--border: #E5E7EB; /* 边框色 */
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.05); /* 轻微阴影 */
	--shadow-md: 0 4px 12px rgba(0,0,0,0.08); /* 中等阴影 */
	--enterprise-border: #D8D5F2; /* 企业优势模块装饰线色 */
	--star-color: #FFC107; /* 评分星级颜色 */
}

body {
	background-color: var(--bg-global);
	color: var(--text-main);
	line-height: 1.6;
	font-size: 14px;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
}

ul {
	list-style: none;
}

/* 全局容器：统一PC端最大宽度为1400px */
.container {
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	max-width: 1400px !important; /* 强制统一最大宽度为1400px */
}

/* 通用按钮样式 */
.btn {
	display: inline-block;
	padding: 8px 18px;
	background-color: var(--btn-primary);
	color: var(--text-white);
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	margin-top: 15px;
}

.btn:hover {
	background-color: var(--btn-primary-hover);
	transform: translateY(-2px);
}

/* 导航栏：修复移动端占满屏 + 菜单交互 */
.header {
	background-color: var(--bg-white);
	box-shadow: var(--shadow-sm);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw; /* 用vw确保占满屏幕宽度 */
	z-index: 9999; /* 提高层级，避免被遮挡 */
	height: 80px;
	line-height: 60px;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	width: 100%; /* 确保导航容器占满 */
	max-width: 1400px; /* 导航容器同步1400px */
	margin: 0 auto;
	padding: 0 20px;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo-icon {
	width: 70px;
	height: 70px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-white);
	font-size: 16px;
	font-weight: bold;
}

.logo-text {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary);
}

.logo-icon {
  display: inline-block; 
  text-decoration: none; 
  outline: none; 
  cursor: pointer; 
}

.logo-img {
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  display: block; 
}

.logo-icon:hover .logo-img {
  opacity: 0.9; 
  transition: opacity 0.3s ease; 
}

.logo-icon:focus-visible {
  outline: 2px solid #007bff; 
  outline-offset: 2px;
}

.nav-menu {
	display: flex;
	gap: 35px;
}

.nav-menu li a {
	font-size: 15px;
	color: var(--text-secondary);
	font-weight: 500;
}

.nav-menu li a:hover,
.nav-menu li a.active {
	color: var(--primary);
}

.menu-toggle {
	display: none;
	font-size: 24px; /* 放大按钮，更容易点击 */
	color: var(--primary);
	cursor: pointer;
	line-height: 60px;
	z-index: 99999; /* 确保按钮可点击 */
}

/* Banner区：容器居中+内容靠左+优化按钮样式 */
.banner {
	margin-top: 60px;
	background: var(--primary-gradient);
	padding: 100px 0;
	color: var(--text-white);
	width: 100vw; /* 确保占满屏幕宽度 */
}

.banner-inner {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	max-width: 1400px; /* Banner容器同步1400px */
	padding: 0 20px;
	margin: 0 auto;
}

.banner-text {
	width: 100%;
	max-width: 100%;
}

.banner-text h1 {
	font-size: 42px;
	margin-bottom: 25px;
	font-weight: 700;
	line-height: 1.3;
}

.banner-text p {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.9;
	line-height: 1.6;
	max-width: 700px;
}
.banner-features {
	margin: 0 0 30px 0;
	padding-left: 20px;
}

.banner-features li {
	font-size: 18px;
	color: var(--text-white);
	margin-bottom: 10px;
	line-height: 1.6;
	position: relative;
	padding-left: 24px;
}

.banner-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--btn-primary);
	font-weight: bold;
}

/* 移动端适配调整 */
@media (max-width: 768px) {
	.banner-features li {
		font-size: 16px;
		padding-left: 20px;
	}
}

/* 下载按钮优化：商务绿背景 + 全兼容基础图标 + 样式兜底 */
.download-btns-group {
	display: flex;
	gap: 12px; /* 缩小间距 */
	flex-wrap: nowrap;
	align-items: center;
}

.download-platform-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px; /* 图标和文字间距 */
	padding: 10px 20px; /* 按钮内边距 */
	background-color: var(--btn-primary); /* 按钮主色#10B981 */
	color: var(--text-white); /* 白色文字 */
	font-size: 16px; /* 字号 */
	font-weight: 500; /* 中等字重，更商务 */
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); /* 适配按钮色的阴影 */
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
	border: none; /* 去掉边框 */
	cursor: pointer; /* 鼠标指针 */
}

.download-platform-btn:hover {
	background-color: var(--btn-primary-hover); /* hover加深色 */
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* 全兼容图标样式：兜底设计，确保100%显示 */
.platform-icon {
	font-size: 22px; /* 进一步放大，确保清晰 */
	font-weight: 600; /* 加粗，避免模糊 */
	line-height: 1;
	display: inline-block;
	width: 24px; /* 固定宽度，对齐更稳 */
	text-align: center;
}

/* 核心产品特色板块：浅紫色背景 + 每行3列布局 */
.feature-section {
	padding: 80px 0;
	width: 100%;
	margin: 30px auto; 
	max-width: 1400px;
	background-color: var(--bg-feature); /* 浅紫色背景 */
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
}

.feature-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
}

.feature-card {
	width: calc(33.333% - 17px); /* 每行3个，计算间距 */
	min-width: 280px;
	padding: 30px 25px;
	background-color: var(--bg-white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feature-img {
	width: 246px;
	height: 168px;
	object-fit: contain;
	margin-bottom: 20px;
	border-radius: 8px;
}

.feature-icon {
	display: none; /* 隐藏原来的文字图标 */
}

.feature-card h3 {
	font-size: 28px;
	margin-bottom: 15px;
	color: var(--text-main);
	font-weight: 400;
}

.feature-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 15px;
}

/* 企业级服务优势板块：浅青色背景 + 每行1个 左右图文交替布局 */
.enterprise-section {
	padding: 80px 0;
	background-color: var(--bg-enterprise); /* 浅青色背景 */
	margin: 30px auto;
	border-radius: 8px;
	max-width: 1400px;
	width: 100%;
	box-shadow: var(--shadow-sm);
}

.enterprise-section .section-title::after {
	background: var(--btn-primary); /* 绿色装饰线 */
}

/* 3个子模块布局 - 每行1个 */
.enterprise-cards {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.enterprise-card {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 30px;
	background-color: var(--bg-white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
}

/* 交替布局：偶数项反转 */
.enterprise-card:nth-child(even) {
	flex-direction: row-reverse;
}

.enterprise-img {
	width: 40%;
	min-width: 280px;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
}

.enterprise-content {
	width: 60%;
}

.enterprise-icon {
	display: none; /* 隐藏原来的文字图标 */
}

.enterprise-card h3 {
	font-size: 28px;
	margin-bottom: 15px;
	color: var(--text-main);
	font-weight: 400;
	position: relative;
	padding-bottom: 10px;
}

.enterprise-card h3::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: var(--enterprise-border);
	position: absolute;
	bottom: 0;
	left: 0;
}

.enterprise-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 10px;
}

/* 用户评价模块：纯白背景 + 增强阴影 + 评分和真实头像 */
.review-section {
	padding: 80px 0;
	background-color: var(--bg-review);
	margin: 30px auto;
	border-radius: 8px;
	box-shadow: var(--shadow-md); /* 增强阴影区分 */
	max-width: 1400px;
	width: 100%;
}

.review-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	max-width: 1400px;
	margin: 0 auto;
}

.review-card {
	width: 100%;
	max-width: 350px;
	padding: 30px 25px;
	background-color: var(--bg-global);
	border-radius: 8px;
	position: relative;
}

.review-quote {
	font-size: 32px;
	color: var(--primary);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	left: 25px;
}

/* 评分星级样式 */
.review-rating {
	color: var(--star-color);
	font-size: 16px;
	margin-bottom: 10px;
}

.review-content {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 105px;
	padding-top: 10px;
	max-height: 90px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.review-user {
	position: absolute;
	bottom: 30px; /* 保持底部距离，但基于容器更大的内边距，避免溢出 */
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 50px); /* 与容器内边距匹配 */
}

/* 真实头像替换文字头像 */
.user-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--bg-white);
	box-shadow: var(--shadow-sm);
}

.user-info h4 {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-main);
	margin-bottom: 3px;
}

.user-info p {
	display: none; /* 隐藏用户身份信息 */
}

/* 永久免费模块：深紫色背景 + 微调 */
.free-section {
	padding: 80px 0;
	background: var(--bg-free);
	color: var(--text-white);
	text-align: center;
	border-radius: 8px;
	margin: 30px auto;
	max-width: 1400px;
	width: 100%;
	box-shadow: var(--shadow-md);
}

.free-content h2 {
	font-size: 33px;
	margin-bottom: 20px;
	font-weight: 400;
}

.free-content p {
	font-size: 16px;
	color: #E2E8F0;
	max-width: 700px;
	margin: 0 auto 30px;
	line-height: 1.7;
}

.contact-btn {
	display: inline-block;
	padding: 14px 35px;
	background: var(--primary-gradient);
	color: white;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(93, 84, 209, 0.3);
	border: none;
	cursor: pointer;
}

.contact-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(93, 84, 209, 0.4);
}

/* 页脚样式 */
.footer {
	padding: 60px 0 30px;
	background-color: var(--bg-white);
	margin-top: 50px;
	border-top: 1px solid var(--border);
	width: 100vw;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border);
	max-width: 1400px;
	margin: 0 auto 40px;
	padding: 0 20px 30px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}

.footer-logo .logo-icon {
	width: 28px;
	height: 28px;
	font-size: 14px;
}

.footer-logo .logo-text {
	font-size: 16px;
}

.footer-desc {
	font-size: 14px;
	color: var(--text-light);
	max-width: 300px;
	line-height: 1.6;
}

.footer-links h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--text-main);
}

.footer-links ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	color: var(--text-secondary);
	font-size: 14px;
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-contact h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--text-main);
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--text-secondary);
}

.footer-bottom {
	text-align: center;
	font-size: 13px;
	color: var(--text-light);
	padding-top: 20px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 20px 0;
}

/* 通用标题样式 */
.section-title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 40px;
	color: var(--text-main);
	font-weight: 400;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background: var(--primary-gradient);
	margin: 15px auto 0;
	border-radius: 2px;
}

/* 移动端适配 */
@media (max-width: 768px) {
	/* 移动端菜单 */
	.nav-menu {
		position: fixed;
		top: 0;
		left: 0;
		flex-direction: column;
		background-color: var(--bg-white);
		width: 100vw;
		height: 100vh;
		padding: 80px 30px 30px;
		transition: transform 0.3s ease;
		transform: translateX(-100%);
		z-index: 9998;
		box-shadow: 2px 0 8px rgba(0,0,0,0.1);
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.menu-toggle {
		display: block;
	}

	/* Banner适配 */
	.banner {
		padding: 80px 0;
	}

	.banner-text h1 {
		font-size: 32px;
	}

	.banner-text p {
		font-size: 18px;
	}

	/* 移动端按钮换行 */
	.download-btns-group {
		flex-wrap: wrap;
	}

	.download-platform-btn {
		padding: 10px 18px;
		font-size: 15px;
		width: 100%;
	}

	/* 核心产品特色移动端适配 - 每行1个 */
	.feature-card {
		width: 100%;
		min-width: unset;
	}

	/* 企业优势模块移动端适配 - 取消交替，单列显示 */
	.enterprise-card {
		flex-direction: column;
		gap: 20px;
	}

	.enterprise-card:nth-child(even) {
		flex-direction: column;
	}

	.enterprise-img, .enterprise-content {
		width: 100%;
		min-width: unset;
	}

	.enterprise-img {
		height: 180px;
	}

	/* 用户评价模块适配 */
	.review-card {
		position: relative;
		padding: 30px 25px 100px; /* 底部内边距从默认增加到100px，预留更多空间 */
	}

	/* 永久免费模块适配 */
	.free-content h2 {
		font-size: 24px;
	}

	.contact-btn {
		padding: 12px 25px;
	}

	/* 页脚适配 */
	.footer-top {
		flex-direction: column;
		gap: 40px;
	}
}

/* 统一宽度限制 */
@media (min-width: 768px), (min-width: 992px), (min-width: 1200px), (min-width: 1400px) {
	.container {
		max-width: 1400px;
	}
}