:root {
	--glow-primary: 0 0 10px rgba(42, 123, 252, 0.5);
	--glow-secondary: 0 0 10px rgba(74, 194, 227, 0.5);
	--glow-accent: 0 0 10px rgba(45, 226, 230, 0.5);

	/* 背景效果 */
	--glass-blur: blur(16px); /* 玻璃模糊效果 */
	--grid-color: rgba(42, 123, 252, 0.1); /* 网格线颜色 */

	/* 过渡效果 */
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 添加浅色模式 */
@media (prefers-color-scheme: light) {
	:root {
		/* 现代未来主义颜色变量 */
		--primary-color: #2a7bfc; /* 深海蓝主色调 */
		--secondary-color: #4ac2e3; /* 浅海蓝辅助色 */
		--accent-color: #2de2e6; /* 青色强调色 */
		--dark-text: #333333;
		--light-text: #666666;
		--bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
		--glass-bg: rgba(255, 255, 255, 0.7); /* 玻璃背景色 */
		--glass-border: 1px solid rgba(0, 0, 0, 0.2); /* 蓝色彩色边框 */
		--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), 0 0 10px rgba(42, 123, 252, 0.1); /* 带光晕的玻璃阴影 */
	}

	.banner {
		background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 50%, #f0f8ff 100%);
		color: #333;
	}

	.banner h1 {
		text-shadow: 0 0 5px rgba(0, 102, 204, 0.3), 0 0 10px rgba(0, 102, 204, 0.2);
		color: #0066cc;
		-webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
	}

	.banner::before {
		background: radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 102, 153, 0.1) 0%, transparent 50%);
	}

	.cta-button {
		box-shadow: 0 0 15px rgba(0, 102, 204, 0.3), 0 0 30px rgba(255, 102, 153, 0.2);
	}
}

/* 添加深色模式 */
@media (prefers-color-scheme: dark) {
	:root {
		--primary-color: #1890ff;
		--secondary-color: #4ac2e3; /* 浅海蓝辅助色 */
		--accent-color: #669df6;
		--dark-text: #e8eaed;
		--light-text: #9aa0a6;
		--bg-gradient: linear-gradient(135deg, #0a0b1a 0%, #111436 50%, #1a1f45 100%); /* 深蓝色渐变背景 */

		--glass-bg: rgba(20, 20, 60, 0.3); /* 玻璃背景色 */
		--glass-border: 1px solid rgba(42, 123, 252, 0.2); /* 蓝色彩色边框 */
		--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), 0 0 10px rgba(42, 123, 252, 0.1); /* 带光晕的玻璃阴影 */
	}

	.banner {
		background: linear-gradient(135deg, #0a0a1a 0%, #121236 50%, #0a0a1a 100%);
		color: white;
	}
}

/* 按钮交互效果 */
.cta-button:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: var(--glow-primary);
	animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
	0%,
	100% {
		box-shadow: var(--glow-primary);
	}
	50% {
		box-shadow: 0 0 15px rgba(42, 123, 252, 0.6);
	}
}

.cta-button:hover::before {
	left: 100%;
}

/* 动画效果定义 */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* 新增：鼠标跟随光晕效果 */
.cursor-glow {
	position: fixed;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(42, 123, 252, 0.3) 0%, transparent 70%);
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-glow.hover {
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(42, 123, 252, 0.4) 0%, rgba(74, 194, 227, 0.2) 70%, transparent 100%);
}

/* 新增：视差滚动效果 */
.parallax-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	transform: translateZ(-1px) scale(2);
}

/* 新增：数据流动效果 */
.data-stream {
	position: relative;
	overflow: hidden;
}

.data-stream::after {
	content: "01010101010101010101010101010101010101010101010101010101";
	position: absolute;
	top: 0;
	left: -100%;
	right: 0;
	bottom: 0;
	font-family: monospace;
	font-size: 12px;
	color: rgba(42, 123, 252, 0.2);
	animation: dataFlow 10s linear infinite;
	display: flex;
	align-items: center;
}

/* 新增：悬停时的3D旋转效果 */
.hover-3d {
	transition: transform 0.5s ease;
	transform-style: preserve-3d;
}

.hover-3d:hover {
	transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
}

/* 新增：扫描线效果 */
.scan-line::before {
	content: "";
	position: absolute;
	top: -10%;
	left: 0;
	right: 0;
	height: 10%;
	background: linear-gradient(to bottom, transparent, rgba(42, 123, 252, 0.1), transparent);
	animation: scanLineMove 3s linear infinite;
}

@keyframes scanLineMove {
	0% {
		top: -10%;
	}
	100% {
		top: 100%;
	}
}

@keyframes pulse {
	0% {
		opacity: 0.6;
		transform: scale(0.95);
	}
	100% {
		opacity: 1;
		transform: scale(1.05);
	}
}

@keyframes gradientShift {
	0%,
	100% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 100%;
	}
}

@keyframes textGlow {
	from {
		text-shadow: 0 0 10px rgba(42, 123, 252, 0.5);
	}
	to {
		text-shadow: 0 0 20px rgba(42, 123, 252, 0.7), 0 0 30px rgba(74, 194, 227, 0.5);
	}
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes buttonShine {
	0% {
		transform: translateX(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) rotate(45deg);
	}
}

.ai-particle {
	position: absolute;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite, pulse 3s ease-in-out infinite alternate;
	filter: blur(2px);
	box-shadow: 0 0 15px rgba(42, 123, 252, 0.5);
	z-index: -1;
}

/* AI数据流效果 */
@keyframes dataFlow {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 100% 0;
	}
}

.ai-dataflow {
	position: relative;
	overflow: hidden;
}

.ai-dataflow::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.9), transparent);
	animation: dataFlow 3s linear infinite;
	box-shadow: 0 0 10px rgba(66, 133, 244, 0.5);
}

/* AI芯片电路板效果 */
@keyframes circuitPulse {
	0% {
		opacity: 0.3;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0.3;
	}
}

.ai-circuit {
	position: relative;
}

.ai-circuit::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent 48%, rgba(59, 130, 246, 0.1) 49%, rgba(59, 130, 246, 0.1) 51%, transparent 52%), linear-gradient(0deg, transparent 48%, rgba(59, 130, 246, 0.1) 49%, rgba(59, 130, 246, 0.1) 51%, transparent 52%);
	background-size: 20px 20px;
	opacity: 0.3;
	animation: circuitPulse 4s ease-in-out infinite;
	pointer-events: none;
}

.careers-banner {
	position: relative;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.company-culture {
	padding: 5rem 0;
}

.culture-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.culture-item {
	background: var(--glass-bg);
	border: var(--glass-border);
	border-radius: 10px;
	padding: 2rem;
	transition: var(--transition);
	text-align: center;
}

.culture-item:hover {
	transform: translateY(-10px);
	box-shadow: var(--glass-shadow);
}

.culture-item i {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.job-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.job-card {
	height: fit-content;
	background: var(--glass-bg);
	border: var(--glass-border);
	border-radius: 10px;
	overflow: hidden;
	transition: var(--transition);
}

.job-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--glass-shadow);
}

.job-header {
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 230, 0.1));
	border-bottom: var(--glass-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.job-type {
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: bold;
}

.full-time {
	background-color: rgba(0, 255, 128, 0.2);
	color: #00ff80;
}

.part-time {
	background-color: rgba(255, 165, 0, 0.2);
	color: #ffa500;
}

.internship {
	background-color: rgba(0, 191, 255, 0.2);
	color: #00bfff;
}

.job-meta {
	padding: 1rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	font-size: 0.9rem;
	color: var(--light-text);
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.job-details {
	padding: 0 1.5rem 1.5rem;
}

.job-section {
	margin-bottom: 1rem;
}

.job-section h4 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.job-section ul {
	padding-left: 1.5rem;
	color: var(--light-text);
}

.job-section li {
	margin-bottom: 0.3rem;
}

.apply-button {
	width: 100%;
	padding: 1rem;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	color: white;
	border: none;
	border-radius: 0 0 10px 10px;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition);
}

.apply-button:hover {
	opacity: 0.9;
	transform: translateY(2px);
}

.form-container {
	max-width: 800px;
	margin: 3rem auto 0;
	background: var(--glass-bg);
	border: var(--glass-border);
	border-radius: 10px;
	padding: 2rem;
}

.form-group {
	position: relative;
	margin-bottom: 2rem;
}

.form-group:focus-within .ai-wave {
	display: flex;
}

.form-group .ai-wave {
	position: absolute;
	bottom: -25px;
	left: 0;
	display: none;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--glass-bg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--dark-text);
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(42, 123, 252, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--light-text);
}

.form-group textarea {
	min-height: 100px;
	resize: vertical;
}

.faq-container {
	max-width: 800px;
	margin: 3rem auto 0;
}

.faq-item {
	margin-bottom: 1rem;
	border: var(--glass-border);
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 1rem 1.5rem;
	text-align: left;
	background: var(--glass-bg);
	border: none;
	color: var(--dark-text);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question:after {
	content: "+";
	font-size: 1.5rem;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer p {
	padding: 1rem 0;
	color: var(--light-text);
}

/* AI语音波形效果 */
@keyframes wave {
	0% {
		transform: scaleY(1);
	}
	50% {
		transform: scaleY(1.5);
	}
	100% {
		transform: scaleY(1);
	}
}

.ai-wave {
	display: flex;
	align-items: flex-end;
	height: 30px;
	gap: 3px;
}

.ai-wave span {
	display: inline-block;
	width: 3px;
	background: var(--accent-color);
	border-radius: 3px;
	animation: wave 1.2s ease-in-out infinite;
}

.ai-wave span:nth-child(2) {
	animation-delay: 0.2s;
	height: 60%;
}
.ai-wave span:nth-child(3) {
	animation-delay: 0.4s;
	height: 80%;
}
.ai-wave span:nth-child(4) {
	animation-delay: 0.6s;
	height: 100%;
}
.ai-wave span:nth-child(5) {
	animation-delay: 0.8s;
	height: 70%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "HarmonyOS Sans", "Segoe UI", Arial, sans-serif;
	transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	line-height: 1.6;
	scroll-behavior: smooth;
	background: var(--bg-gradient);
	color: var(--dark-text);
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 0, 230, 0.1) 0%, transparent 50%);
	z-index: -1;
	animation: gradientShift 15s ease infinite alternate;
}

/* 网格背景效果 */
body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, var(--grid-color) 1px, transparent 1px), linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: -1;
	animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 40px 40px;
	}
}

/* 滚动条样式 */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-gradient);
}

/* 头部样式 */
ul {
	list-style: none;
}

a {
	color: var(--primary-color);
	text-decoration: none;
}

button {
	cursor: pointer;
	border: none;
	outline: none;
}

/* 未来科技导航栏 */
#main-nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--transition);
	backdrop-filter: var(--glass-blur);
	background: var(--glass-bg);
	border-bottom: 1px solid rgba(0, 240, 255, 0.2);
	box-shadow: var(--glass-shadow);
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 600;
	font-size: 1.2rem;
}

.logo img {
	height: 35px;
	transition: transform 0.3s;
}

.logo:hover img {
	transform: rotate(15deg);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.nav-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 2rem;
	right: 2rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(42, 123, 252, 0.3), transparent);
}

.nav-links a {
	position: relative;
	padding: 0.5rem 1rem;
}

.nav-links a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	box-shadow: var(--glow-primary);
	transition: var(--transition);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links {
	display: flex;
	gap: 1rem;
}

.nav-links .submenu {
	display: none;
	position: absolute;
	background-color: var(--bg-gradient);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	min-width: 150px;
	z-index: 1000;
}

.nav-links .has-submenu:hover .submenu,
.nav-links .submenu.active,
.tab-content.active {
	display: block;
}

.nav-links .submenu li {
	padding: 5px 15px;
}

.nav-links .submenu li a {
	display: block;
	color: var(--dark-text);
	text-decoration: none;
}

.nav-links .submenu li a:hover,
.breadcrumb a {
	color: var(--primary-color);
}

/* 移动端样式 */
@media (max-width: 768px) {
	.nav-links .submenu {
		position: static;
		display: none;
		box-shadow: none;
		padding: 0;
		margin-left: 20px;
	}

	.nav-links .has-submenu > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.nav-links .has-submenu > a::after {
		content: "▾";
		margin-left: 5px;
	}
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark-text);
	cursor: pointer;
}

/* 未来科技Banner */
.banner {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
	perspective: 1000px;
}

.banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 0, 230, 0.15) 0%, transparent 50%);
	animation: gradientShift 15s ease infinite alternate;
	z-index: 0; /* 降低z-index确保按钮可点击 */
}

.banner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 70%), radial-gradient(circle at 80% 70%, rgba(255, 0, 230, 0.08) 0%, transparent 70%);
	animation: rotate 60s linear infinite;
	z-index: 0;
}

.banner-content {
	max-width: 1200px;
	padding: 2rem;
	text-align: center;
}

.banner h1 {
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: 1px;
	text-shadow: 0 0 10px rgba(42, 123, 252, 0.3);
	background: linear-gradient(to right, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: gradientShift 5s ease infinite alternate;
}

.banner p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
	opacity: 0.95;
}

.cta-button {
	background: var(--primary-color);
	padding: 1rem 2.5rem;
	color: white;
	font-weight: bold;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	z-index: 2; /* 提高z-index确保按钮可点击 */
	box-shadow: var(--glow-primary);
	letter-spacing: 2px;
	font-size: 1.1rem;
}

.cta-button::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(45deg);
	animation: buttonShine 3s infinite;
}

.cta-button:hover {
	background: var(--secondary-color);
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
}

.chevron {
	width: 20px;
	height: 20px;
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -5px;
	animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(0, 0);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}

/* 新闻动态 */
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 2rem;
}

.news-item {
	background: var(--glass-bg);
	border: var(--glass-border);
	border-radius: 16px;
	padding: 2rem;
	transition: var(--transition);
	cursor: pointer;
	overflow: hidden;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-item:hover {
	transform: translateY(-10px);
	box-shadow: var(--glass-shadow), 0 0 20px rgba(42, 123, 252, 0.2);
}

.news-item::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(42, 123, 252, 0.1), transparent);
	transform: rotate(45deg);
	transition: var(--transition);
	z-index: 0;
}

.news-item:hover::before {
	top: -20%;
	left: -20%;
}

.news-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 1.5rem;
	z-index: 1;
	position: relative;
	transition: transform 0.5s;
}

.news-item:hover img {
	transform: scale(1.05);
}

.news-item h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--dark-text);
	z-index: 1;
	position: relative;
}

.news-item p {
	color: var(--dark-text);
	z-index: 1;
	position: relative;
	flex-grow: 1;
}

.news-date {
	font-size: 0.9rem;
	color: var(--primary-color);
	margin-top: 1rem;
	z-index: 1;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* 产品服务 */
.section {
	padding: 6rem 2rem;
	min-height: 100vh;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--dark-text);
}

.filter-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.filter-btn {
	padding: 0.8rem 1.5rem;
	border: 2px solid var(--primary-color);
	background: transparent;
	color: var(--primary-color);
	border-radius: 30px;
	cursor: pointer;
	transition: var(--transition);
}

.filter-btn.active {
	background: var(--primary-color);
	color: white;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.product-card {
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: 1px solid rgba(0, 240, 255, 0.2);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	perspective: 1000px;
	box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.product-card:hover {
	transform: translateY(-10px) rotateX(3deg) scale(1.02);
	box-shadow: 0 15px 30px rgba(42, 123, 252, 0.3), inset 0 0 20px rgba(42, 123, 252, 0.1);
}

.product-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 50%, rgba(42, 123, 252, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.product-card:hover::before {
	opacity: 1;
}

@keyframes borderPulse {
	0% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.8;
	}
	100% {
		opacity: 0.3;
	}
}

.product-card:hover::after {
	opacity: 1;
}

.product-card-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 2rem;
	cursor: pointer;
}

.product-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(42, 92, 170, 0.1));
	transform: rotate(45deg);
	transition: var(--transition);
}

.product-card:hover::before {
	top: 0;
	left: 0;
}

.product-card img {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	transition: transform 0.5s;
}

.product-card:hover img {
	transform: rotateY(360deg);
}

@media (max-width: 768px) {
	.product-card-content {
		padding: 1.5rem;
	}

	.product-card img {
		width: 60px;
		height: 60px;
	}
}

.more-button {
	max-width: 1200px;
	margin: 0 auto;
	margin-top: 20px;
	text-align: right;
}

.more-button button {
	background-color: rgba(0, 0, 0, 0);
}

/* 新增解决方案样式 */
.solution-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.solution-card {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: var(--glass-border);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(42, 123, 252, 0.1);
}

.solution-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 30px rgba(42, 123, 252, 0.3);
}

.solution-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(42, 123, 252, 0.05) 0%, rgba(74, 194, 227, 0.05) 100%);
	z-index: -1;
}

.solution-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 45%, rgba(59, 130, 246, 0.05) 46%, rgba(59, 130, 246, 0.05) 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, rgba(245, 158, 11, 0.05) 46%, rgba(245, 158, 11, 0.05) 54%, transparent 55%);
	background-size: 20px 20px;
	opacity: 0;
	transition: var(--transition);
}

.solution-card:hover::before {
	opacity: 1;
}

.solution-card:hover {
	transform: translateY(-5px);
}

/* 新增设计服务样式 */
.design-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.design-card {
	background: var(--glass-bg);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s;
}

.design-card:hover {
	transform: translateY(-5px);
}

.design-card img {
	width: 100%;
	margin-bottom: 1.5rem;
	transition: transform 0.5s;
}

.partner-tag {
	background: linear-gradient(45deg, transparent 45%, rgba(59, 130, 246, 0.05) 46%, rgba(59, 130, 246, 0.05) 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, rgba(245, 158, 11, 0.05) 46%, rgba(245, 158, 11, 0.05) 54%, transparent 55%);
	background-size: 20px 20px;
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	margin-top: 1rem;
	display: inline-block;
}

.subtitle {
	color: var(--light-text);
	font-size: 1.1rem;
	margin-top: 1rem;
}

/* 新增产品详情页样式 */
.product-detail-container {
	max-width: 1400px;
	margin: 100px auto 0;
	padding: 2rem;
}

.breadcrumb {
	color: var(--light-text);
	margin-bottom: 2rem;
	font-size: 0.9rem;
}

.product-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.product-gallery {
	position: sticky;
	top: 100px;
	height: fit-content;
}

.main-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-info h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--dark-text);
}

.product-summary {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--light-text);
	margin-bottom: 2rem;
}

.product-specs {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 16px;
	margin-bottom: 2rem;
}

.spec-item h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.category-tag,
.update-time,
.timeline p {
	color: var(--light-text);
}

.spec-item ul {
	padding-left: 1.5rem;
}

.spec-item li {
	margin-bottom: 0.8rem;
	color: var(--light-text);
}

.related-products {
	margin-top: 4rem;
	padding-top: 4rem;
	border-top: 1px solid #eee;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.related-card {
	color: var(--light-text);
	background: white;
	padding: 2rem;
	border-radius: 16px;
	transition: var(--transition);
	text-align: center;
}

.related-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.more-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	display: inline-block;
	margin-top: 1rem;
}

/* 新增标签式导航 */
.spec-tabs {
	margin: 2rem 0;
	border-bottom: 2px solid #eee;
}

.tab-btn {
	padding: 1rem 2rem;
	background: none;
	border: none;
	color: var(--light-text);
	cursor: pointer;
	transition: var(--transition);
}

.tab-btn.active {
	color: var(--primary-color);
	border-bottom: 3px solid var(--primary-color);
}

.tab-content {
	display: none;
}

/* 优化产品操作区 */
.product-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.demo-btn {
	background: var(--secondary-color);
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	color: white;
	cursor: pointer;
}

/* 新增文档链接样式 */
.doc-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-color);
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.not-found-container {
	text-align: center;
	padding: 50px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #f9f9f9;
	margin: 50px auto;
	max-width: 600px;
}

.not-found-container h1 {
	font-size: 2.5em;
	color: #ff6347; /* 番茄色，更醒目 */
	margin-bottom: 20px;
}

.not-found-container p {
	font-size: 1.2em;
	color: #333;
	margin-bottom: 30px;
}

.not-found-container .buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.not-found-container .cta-button {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-color: #007bff; /* 蓝色按钮 */
	color: white;
	font-size: 1em;
	cursor: pointer;
	transition: background-color 0.3s;
}

.not-found-container .cta-button:hover {
	background-color: #0056b3; /* 鼠标悬停时颜色变深 */
}

.not-found-container .cta-button i {
	margin-right: 10px;
}

/* 案例展示 */
.case-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.case-card {
	background: var(--glass-bg);
	border-radius: 16px;
	padding: 2rem;
	transition: var(--transition);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* 稍微增加阴影效果 */
	position: relative;
	overflow: hidden;
}

.case-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(42, 123, 252, 0.1));
	transform: rotate(45deg);
	transition: var(--transition);
}

.case-card:hover::before {
	top: 0;
	left: 0;
}

.case-card h3 {
	font-size: 1.5rem; /* 调整标题字体大小 */
	color: #2d3748; /* 确保文本颜色清晰可见 */
}

.case-card p {
	font-size: 1rem; /* 调整正文文本字体大小 */
	color: #718096; /* 调整正文文本颜色 */
}

.case-card img {
	width: 100px; /* 调整图片尺寸 */
	height: 100px;
	margin-bottom: 1.5rem;
	transition: transform 0.5s;
}

.case-card:hover img {
	transform: rotateY(360deg);
}

/* 全息投影表单 */
.form-container {
	max-width: 800px;
	margin: 2rem auto;
	padding: 3rem;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: var(--glass-border);
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(42, 123, 252, 0.2), inset 0 0 20px rgba(42, 123, 252, 0.1);
	position: relative;
	overflow: hidden;
}

/* 安全联系方式样式 */
.secure-contact-container {
	max-width: 700px;
	margin: 3rem auto;
}

.contact-section {
	width: 100%;
}

.contact-section.hidden {
	display: none;
}

/* 联系表单样式 */
.contact-form-wrapper {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: var(--glass-border);
	border-radius: 20px;
	padding: 3rem;
	position: relative;
	box-shadow: 0 0 30px rgba(42, 123, 252, 0.2), inset 0 0 20px rgba(42, 123, 252, 0.1);
	overflow: hidden;
}

.contact-form-wrapper h3 {
	color: var(--dark-text);
	margin-bottom: 1rem;
	text-align: center;
}

.contact-form-wrapper p {
	color: var(--light-text);
	text-align: center;
	margin-bottom: 2rem;
}

.form-check {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 2rem;
	color: var(--light-text);
	font-size: 0.9rem;
}

.form-check input {
	margin-top: 0.3rem;
}

.form-check a {
	color: var(--primary-color);
	text-decoration: none;
}

.form-check a:hover {
	text-decoration: underline;
}

.submit-intent-btn {
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	color: white;
	border: none;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.submit-intent-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 15px rgba(42, 123, 252, 0.6);
}

/* 二维码展示区域样式 */
.qrcode-wrapper {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: var(--glass-border);
	border-radius: 20px;
	padding: 3rem;
	position: relative;
	box-shadow: 0 0 30px rgba(42, 123, 252, 0.2), inset 0 0 20px rgba(42, 123, 252, 0.1);
	overflow: hidden;
	text-align: center;
}

.qrcode-header {
	margin-bottom: 2rem;
}

.qrcode-header h3 {
	color: var(--dark-text);
	margin-bottom: 1rem;
	text-shadow: 0 0 10px rgba(42, 123, 252, 0.3);
}

.qrcode-header p {
	color: var(--light-text);
}

.contact-tips {
	margin-top: 2rem;
}

.remark-highlight {
	color: var(--primary-color);
	font-weight: bold;
	padding: 0.2rem 0.5rem;
	background: rgba(42, 123, 252, 0.1);
	border-radius: 4px;
	font-family: "Courier New", monospace;
}

.security-tip {
	margin-top: 1rem;
	color: var(--accent-color);
	font-size: 0.9rem;
	text-align: center;
	padding: 1rem;
	background: rgba(45, 226, 230, 0.05);
	border-radius: 8px;
	border-left: 3px solid var(--accent-color);
}

.qrcode-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(42, 123, 252, 0.3), inset 0 0 20px rgba(42, 123, 252, 0.2);
}

.qrcode-placeholder {
	width: 280px;
	height: 280px;
	margin: 0 auto 2rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(42, 123, 252, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* 添加二维码边框效果 */
.qrcode-placeholder::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border: 2px solid transparent;
	border-radius: 17px;
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	pointer-events: none;
	animation: rotate 10s linear infinite;
}

.qrcode-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.qrcode-text {
	color: var(--dark-text);
	font-size: 1.2rem;
	line-height: 1.6;
	text-shadow: 0 0 10px rgba(42, 123, 252, 0.3);
}

.form-container::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(to bottom right, transparent, transparent, transparent, rgba(42, 123, 252, 0.1), transparent, transparent);
	transform: rotate(45deg);
	animation: formShine 8s infinite;
}

@keyframes formShine {
	0% {
		transform: translateX(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) rotate(45deg);
	}
}

.input-icon {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--light-text);
}

.submit-btn {
	position: relative;
	padding: 1rem 2.5rem;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	overflow: hidden;
	transition: var(--transition);
}

.submit-btn:hover {
	background: #1a4b8c;
	transform: translateY(-2px);
}

.loader {
	width: 20px;
	height: 20px;
	border: 3px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* 关于我们页面样式 */
.founder-section {
	margin: 0 auto;
	margin-bottom: 4rem;
	max-width: 1200px;
}

.founder-card {
	display: flex;
	gap: 2rem;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: var(--glass-border);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
	max-width: 100%;
}

.founder-image {
	flex: 0 0 300px;
}

.founder-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
}

.founder-info {
	flex: 1;
}

.founder-info h3 {
	color: var(--primary-color);
	font-size: 28px;
	margin-bottom: 10px;
}

.founder-title {
	color: var(--light-text);
	margin-bottom: 20px;
}

.founder-skills h4 {
	color: var(--secondary-color);
	margin: 20px 0 10px;
}

.founder-skills ul {
	list-style: none;
	padding-left: 0;
}

.founder-skills li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

.founder-skills li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--accent-color);
}

.about-section {
	padding: 8rem 2rem 4rem;
	background: var(--bg-gradient);
}

.about-section h1 {
	font-size: 2.5rem;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.about-section h1::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--accent-color);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 1.8rem;
	color: var(--dark-text);
	margin: 2rem 0 1rem;
}

.about-text p {
	position: relative;
	left: 30px;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.timeline {
	list-style: none;
	position: relative;
	padding-left: 2rem;
	margin: 2rem 0;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--accent-color);
	border-radius: 2px;
}

.timeline li {
	position: relative;
	margin-bottom: 2rem;
	padding-left: 4rem;
}

.timeline .year {
	position: absolute;
	left: -20px;
	top: 0;
	display: inline-block;
	background: var(--primary-color);
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.about-image {
	flex: 1;
	display: flex;
	align-items: center;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.5s;
}

.about-image img:hover {
	transform: scale(1.02);
}

/* 未来科技页脚 */
.footer {
	background: linear-gradient(to top, #0a0a1a 0%, #121236 100%);
	color: var(--light-text);
	padding: 4rem 2rem 2rem;
	position: relative;
	border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
	animation: dataFlow 4s linear infinite;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
}

.social-links {
	display: flex;
	gap: 1.5rem;
	font-size: 1.5rem;
}

.social-links a {
	color: white;
	transition: var(--transition);
}

.social-links a:hover {
	color: var(--accent-color);
}

.copyright {
	text-align: center;
	margin-top: 3rem;
	opacity: 0.8;
}

/* 在style.css中添加 */
.form-group.invalid input {
	border-color: #ff4444;
	animation: shake 0.5s;
}

.form-group .error-msg {
	color: #ff4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	75% {
		transform: translateX(5px);
	}
}

/* 响应式设计 - 未来科技风格 */
@media (max-width: 768px) {
	.nav-container {
		padding: 1rem;
	}

	.nav-links {
		position: fixed;
		top: 70px;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: calc(100vh - 70px);
		background: rgba(10, 10, 40, 0.9);
		backdrop-filter: blur(16px);
		flex-direction: column;
		padding: 2rem;
		transition: var(--transition);
		box-shadow: -5px 0 30px rgba(0, 240, 255, 0.2);
		overflow: auto;
		z-index: 999;
		border-left: 1px solid rgba(0, 240, 255, 0.3);
	}

	.nav-links li {
		margin-bottom: 1.5rem;
	}

	.nav-links a {
		font-size: 1.2rem;
		padding: 0.5rem 1rem;
		border-radius: 8px;
		transition: var(--transition);
	}

	.nav-links a:hover {
		background: rgba(42, 92, 170, 0.1);
	}

	.nav-links.active {
		right: 0;
	}

	.menu-toggle {
		display: block;
		z-index: 1001;
	}

	.banner h1 {
		font-size: 2.2rem;
		margin-bottom: 1rem;
	}

	.banner p {
		font-size: 1.2rem;
	}

	.section {
		padding: 4rem 1rem;
		min-height: auto;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.product-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.product-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.product-gallery {
		position: static;
	}

	.filter-buttons {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.filter-btn {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}

	.form-container {
		padding: 2rem 1rem;
	}
}

/* 文档页面样式 */
.document-container {
	max-width: 800px;
	min-height: 520px;
	margin: 150px auto;
	padding: 2rem;
	background: var(--bg-gradient);
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.document-title {
	line-height: 1.428;
	font-size: 1.6rem;
	text-align: center;
	color: #2f54eb;
	font-weight: normal;
	margin-top: 0.5rem;
	margin-bottom: 0.2rem;
}

.document-meta {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 1rem;
	margin-bottom: 2rem;
	color: var(--light-text);
	font-size: 0.9rem;
}

.document-content {
	line-height: 1.8;
	color: var(--dark-text);
}

.document-content h2 {
	color: var(--primary-color);
	margin: 2rem 0 1rem;
}

.document-content p {
	margin-bottom: 1.5rem;
}

/* 未来科技加载动画 */
#entry-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

#matrix-rain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
	animation: matrixPulse 3s ease-in-out infinite alternate;
}

@keyframes matrixPulse {
	0% {
		opacity: 0.5;
	}
	100% {
		opacity: 0.8;
	}
}

#matrix-rain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: opacity 1s;
}

.grid-container {
	position: absolute;
	width: 100%;
	height: 100%;
	perspective: 1000px;
	display: none;
}

.grid-line {
	position: absolute;
	background: rgba(0, 255, 255, 0.2);
	transform-style: preserve-3d;
	animation: gridBuild 2s forwards;
}

.grid-line:nth-child(1) {
	width: 100%;
	height: 1px;
	top: 50%;
	left: 0;
	transform: rotateX(90deg) scaleX(0);
}

.grid-line:nth-child(2) {
	width: 1px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: rotateY(90deg) scaleY(0);
}

.grid-line:nth-child(3) {
	width: 100%;
	height: 100%;
	transform: scaleZ(0);
	border: 1px solid rgba(0, 255, 255, 0.3);
}

@keyframes gridBuild {
	to {
		transform: none;
	}
}

.logo-reveal {
	position: relative;
	text-align: center;
	opacity: 0;
	transform: scale(0.8);
	animation: logoReveal 2s 3s forwards;
}

.logo-reveal img {
	width: 150px;
	margin-bottom: 2rem;
}

.logo-reveal h1 {
	color: #fff;
	font-size: 2.5rem;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

@keyframes logoReveal {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* 动画 */
[data-aos] {
	transition: transform 0.5s, opacity 0.5s;
}

[data-aos="fade-up"] {
	transform: translateY(50px);
}

[data-aos="fade-down"] {
	transform: translateY(-50px);
}

/* 隐私政策弹窗样式 */
.privacy-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.3s ease;
}

.privacy-modal-content {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: var(--glass-border);
	border-radius: 20px;
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 40px rgba(42, 123, 252, 0.3);
}

.privacy-modal-header {
	padding: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.privacy-modal-header h2 {
	color: var(--dark-text);
	margin: 0;
	font-size: 1.8rem;
}

.close-modal-btn {
	background: none;
	border: none;
	color: var(--light-text);
	font-size: 2rem;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-modal-btn:hover {
	color: var(--primary-color);
	transform: rotate(90deg);
}

.privacy-modal-body {
	padding: 2rem;
	overflow-y: auto;
	flex-grow: 1;
}

.privacy-section {
	margin-bottom: 2rem;
}

.privacy-section:last-child {
	margin-bottom: 0;
}

.privacy-section h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.privacy-section p {
	color: var(--light-text);
	line-height: 1.6;
	margin-bottom: 0;
}

.privacy-modal-footer {
	padding: 1.5rem 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: flex-end;
}

.accept-btn {
	padding: 0.8rem 2rem;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	color: white;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition);
}

.accept-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 15px rgba(42, 123, 252, 0.6);
}

/* 弹窗滚动条样式 */
.privacy-modal-body::-webkit-scrollbar {
	width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 10px;
}

.privacy-modal-body::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.privacy-modal-content {
		width: 95%;
		margin: 2rem;
	}

	.privacy-modal-header,
	.privacy-modal-body,
	.privacy-modal-footer {
		padding: 1.5rem;
	}

	.privacy-modal-header h2 {
		font-size: 1.5rem;
	}
}
