        /* 基础样式重置 */
        * {
        	margin: 0;
        	padding: 0;
        	box-sizing: border-box;
        	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
        	--primary: #2563eb;
        	--primary-dark: #1d4ed8;
        	--secondary: #8b5cf6;
        	--accent: #0ea5e9;
        	--text: #1e293b;
        	--light: #f8fafc;
        	--gray: #94a3b8;
        	--glass: rgba(255, 255, 255, 0.15);
        	--border: rgba(255, 255, 255, 0.2);
        	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body {
        	color: var(--text);
        	background: linear-gradient(-45deg, #2563eb, #8b5cf6, #0ea5e9, #6366f1);
        	background-size: 400% 400%;
        	animation: gradientBG 15s ease infinite;
        	min-height: 100vh;
        	overflow-x: hidden;
        	line-height: 1.6;
        }

        /* 动态背景动画 */
        @keyframes gradientBG {
        	0% {
        		background-position: 0% 50%;
        	}

        	50% {
        		background-position: 100% 50%;
        	}

        	100% {
        		background-position: 0% 50%;
        	}
        }

        /* 毛玻璃效果容器 */
        .glass {
        	background: var(--glass);
        	backdrop-filter: blur(12px);
        	-webkit-backdrop-filter: blur(12px);
        	border: 1px solid var(--border);
        	border-radius: 0px 0px 20px 20px;
        }

        /* 滚动后的导航栏背景 */
        nav.scrolled {
        	background: linear-gradient(90deg, #2563eb, #8b5cf6, #0ea5e9, #6366f1);
        	background-size: 300% 300%;
        	animation: gradientBG 15s ease infinite;
        	backdrop-filter: blur(12px);
        	-webkit-backdrop-filter: blur(12px);
        	border: 1px solid var(--border);
        	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        	border-radius: 0 0 15px 15px;
        }

        /* 通用容器样式 */
        .container {
        	width: 90%;
        	max-width: 1200px;
        	margin: 0 auto;
        	padding: 20px;
        }

        a {
        	text-decoration: none;
        }

        section {
        	padding: 80px 0;
        }

        h1,
        h2,
        h3,
        h4 {
        	font-weight: 700;
        	line-height: 1.2;
        }

        h1 {
        	font-size: 3.5rem;
        	margin-bottom: 20px;
        }

        h2 {
        	font-size: 2.5rem;
        	text-align: center;
        	margin-bottom: 50px;
        	position: relative;
        }

        h2::after {
        	content: '';
        	position: absolute;
        	bottom: -15px;
        	left: 50%;
        	transform: translateX(-50%);
        	width: 80px;
        	height: 4px;
        	background: var(--accent);
        	border-radius: 2px;
        }

        p {
        	margin-bottom: 20px;
        	font-size: 1.1rem;
        }

        /* 导航栏样式 */
        nav {
        	position: fixed;
        	top: 0;
        	left: 0;
        	width: 100%;
        	z-index: 1000;
        	padding: 0px 0;
        	transition: all 0.5s ease;
        }

        .container-nav {
        	width: 90%;
        	max-width: 1200px;
        	margin: 0 auto;
        	padding: 0px;
        }

        .nav-container {
        	display: flex;
        	justify-content: space-between;
        	align-items: center;
        }

        .logo {
        	display: flex;
        	align-items: center;
        	font-size: 1.8rem;
        	font-weight: 700;
        	color: white;
        	text-decoration: none;
        }

        .logo img {
        	margin-right: 10px;
        	color: var(--accent);
        	width: 50px;
        }

        .nav-links {
        	display: flex;
        	list-style: none;
        }

        .nav-links li {
        	margin-left: 30px;
        }

        .nav-links a {
        	color: white;
        	text-decoration: none;
        	font-weight: 500;
        	font-size: 1.1rem;
        	transition: all 0.3s ease;
        	padding: 8px 12px;
        	border-radius: 15px 0px 15px 0px;
        }

        .nav-links a:hover {
        	background: rgba(255, 255, 255, 0.1);
        	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .hamburger {
        	display: none;
        	cursor: pointer;
        }

        .hamburger i {
        	font-size: 2rem;
        }


        /* 返回顶部按钮 */
        .back-to-top {
        	position: fixed;
        	bottom: 30px;
        	right: 30px;
        	width: 50px;
        	height: 50px;
        	background: var(--primary);
        	color: white;
        	border-radius: 50%;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	cursor: pointer;
        	opacity: 0;
        	visibility: hidden;
        	transform: translateY(20px);
        	transition: all 0.3s ease;
        	z-index: 999;
        	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .back-to-top i {
        	font-size: 1.5rem;
        }

        .back-to-top.show {
        	opacity: 1;
        	visibility: visible;
        	transform: translateY(0);
        }

        .back-to-top:hover {
        	background: var(--primary-dark);
        	transform: translateY(-3px) scale(1.05);
        }

        /* 首页横幅样式 */
        .hero {
        	min-height: 100vh;
        	display: flex;
        	align-items: center;
        	padding-top: 80px;
        	color: white;
        }

        .hero-content {
        	flex: 1;
        	padding-right: 50px;
        	max-width: 650px;
        }

        .hero p {
        	font-size: 1.3rem;
        	margin-bottom: 40px;
        	color: rgba(255, 255, 255, 0.9);
        }

        .hero-image {
        	flex: 1;
        	position: relative;
        	display: flex;
        	justify-content: center;
        }

        .hero-image img {
        	max-width: 75%;
        	border-radius: 20px;
        	/* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
        	animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
        	0% {
        		transform: translateY(0px);
        	}

        	50% {
        		transform: translateY(-20px);
        	}

        	100% {
        		transform: translateY(0px);
        	}
        }

        .btn {
        	display: inline-block;
        	padding: 15px 35px;
        	background: var(--primary-dark);
        	color: white;
        	border: none;
        	border-radius: 50px;
        	font-size: 1.1rem;
        	font-weight: 600;
        	cursor: pointer;
        	transition: all 0.3s ease;
        	text-decoration: none;
        	position: relative;
        	overflow: hidden;
        	animation: float 4s ease-in-out infinite;
        	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
        	background: var(--primary-dark);
        	transform: translateY(-3px);
        	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn:active {
        	transform: translateY(-1px);
        }

        /* 霓虹青按钮 */
        .btn-neon {
        	background-color: transparent;
        	color: #00FEDE;
        	border: 2px solid #00FEDE;
        	box-shadow: 0 0 15px rgba(0, 254, 222, 0.7);
        	text-shadow: 0 0 10px rgba(0, 254, 222, 0.8);
        }

        .btn-neon:hover {
        	background-color: rgba(0, 254, 222, 0.15);
        	box-shadow: 0 0 25px rgba(0, 254, 222, 1);
        }

        /* 3D效果按钮 */
        .btn-3d {
        	background-color: #FF9E00;
        	color: white;
        	border-radius: 12px;
        	box-shadow:
        		0 6px 0 #D46C00,
        		0 8px 10px rgba(0, 0, 0, 0.2);
        	transition: all 0.1s ease;
        }

        .btn-3d:active {
        	transform: translateY(4px);
        	box-shadow:
        		0 2px 0 #D46C00,
        		0 4px 6px rgba(0, 0, 0, 0.2);
        }

        /* APP下载区样式 */
        .apps-section {
        	background: white;
        	position: relative;
        }

        .apps-container {
        	display: flex;
        	flex-wrap: wrap;
        	justify-content: center;
        	gap: 30px;
        	margin-top: 40px;
        }

        .app-card {
        	width: 250px;
        	padding: 30px 20px;
        	text-align: center;
        	transition: transform 0.3s ease;
        	border-radius: 15px;
        	background: linear-gradient(135deg, #f8fafc, #eef2ff);
        	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .app-card:hover {
        	transform: translateY(-10px);
        	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .app-icon {
        	width: 70px;
        	height: 70px;
        	background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        	border-radius: 18px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	margin: 0 auto 20px;
        	color: white;
        	font-size: 1.8rem;
        }

        .app-card h3 {
        	margin-bottom: 15px;
        	font-size: 1.5rem;
        	color: var(--primary-dark);
        }

        .app-card .btn {
        	padding: 10px 25px;
        	font-size: 1rem;
        	margin-top: 15px;
        }

        .app-platforms {
        	text-align: center;
        	margin-top: 40px;
        	padding: 30px;
        	background: #f8fafc;
        	border-radius: 15px;
        	max-width: 800px;
        	margin-left: auto;
        	margin-right: auto;
        }

        /* 产品介绍区样式 */
        .products-section {
        	background: rgba(248, 250, 252, 0.95);
        }

        .product {
        	display: flex;
        	align-items: center;
        	margin-bottom: 100px;
        	padding: 30px;
        	border-radius: 20px;
        }

        .product:nth-child(even) {
        	flex-direction: row-reverse;
        }

        .product-image {
        	flex: 1;
        	height: 370px;
        	border-radius: 15px;
        	overflow: hidden;
        	box-shadow: var(--shadow);
        }

        .product-image img {
        	width: 100%;
        	object-fit: cover;
        	transition: transform 0.5s ease;
        }

        .product-image:hover img {
        	transform: scale(1.05);
        }

        .product-content {
        	flex: 1;
        	padding: 0 40px;
        }

        .product-content h3 {
        	font-size: 2rem;
        	margin-bottom: 20px;
        	color: var(--primary);
        }

        /* 图文卡片区样式 */
        .features-section {
        	background: white;
        }

        .features-container {
        	display: grid;
        	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        	gap: 30px;
        }

        .feature-card {
        	padding: 30px;
        	border-radius: 15px;
        	transition: all 0.3s ease;
        	background: linear-gradient(135deg, #f8fafc, #eef2ff);
        	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        	text-align: center;
        }

        .feature-card:hover {
        	transform: translateY(-10px);
        	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-image {
        	width: 100%;
        	margin: 0 auto 25px;
        	border-radius: 20px;
        	overflow: hidden;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        }

        .feature-image img {
        	width: 100%;
        	object-fit: cover;
        }

        .feature-card h3 {
        	font-size: 1.5rem;
        	margin-bottom: 15px;
        	color: var(--primary-dark);
        }

        .feature-card p {
        	color: var(--gray);
        }

        /* 用户评价区样式1 */
        .testimonials-section {
        	background: rgba(248, 250, 252, 0.95);
        	overflow: hidden;
        }

        .testimonials-container {
        	max-width: 900px;
        	margin: 0 auto;
        	position: relative;
        	height: 400px;
        }

        .testimonial {
        	position: absolute;
        	top: 0;
        	left: 0;
        	width: 100%;
        	padding: 40px;
        	transition: all 0.8s ease;
        	transform: translateX(100%);
        	opacity: 0;
        }

        .testimonial.active {
        	transform: translateX(0);
        	opacity: 1;
        }

        .testimonial.next {
        	transform: translateX(100%);
        	opacity: 0;
        }

        .testimonial.prev {
        	transform: translateX(-100%);
        	opacity: 0;
        }

        .testimonial-content {
        	padding: 40px;
        	border-radius: 20px;
        	position: relative;
        	background: white;
        	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .testimonial-content::before {
        	content: "" ";
 position: absolute;
        	top: 20px;
        	left: 20px;
        	font-size: 5rem;
        	color: var(--accent);
        	opacity: 0.2;
        	font-family: Georgia, serif;
        	line-height: 1;
        }

        .client-info {
        	display: flex;
        	align-items: center;
        	margin-top: 30px;
        }

        .client-avatar {
        	width: 60px;
        	height: 60px;
        	border-radius: 50%;
        	overflow: hidden;
        	margin-right: 15px;
        	border: 3px solid var(--accent);
        }

        .client-avatar img {
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        }

        .client-details h4 {
        	font-size: 1.2rem;
        }

        .client-details p {
        	color: var(--gray);
        	margin: 0;
        }

        .testimonials-container-text-1 {
        	margin-top: 20px;
        	margin-bottom: 45px;
        	font-size: 2.5em;
        	text-align: center;
        	/* 添加阴影增强立体感 */
        	text-shadow: 0px 5px 35px #9d9d9d;
        }

        .testimonials-container-text-auto-color-text {
        	background: linear-gradient(90deg,
        			red, orange, yellow, green, blue, purple);
        	background-size: 300% 300%;
        	-webkit-background-clip: text;
        	background-clip: text;
        	color: transparent;
        	animation: rainbow 13s infinite linear;
        }

        @keyframes rainbow {
        	0% {
        		background-position: 0% 50%;
        	}

        	100% {
        		background-position: 100% 50%;
        	}
        }


        /* 底部信息样式 */
        footer {
        	background: var(--text);
        	color: white;
        	padding: 60px 0 20px;
        }

        .footer-container {
        	display: grid;
        	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        	gap: 40px;
        	margin-bottom: 50px;
        }

        .footer-column h3 {
        	font-size: 1.5rem;
        	margin-bottom: 25px;
        	position: relative;
        	display: inline-block;
        }

        .footer-column h3::after {
        	content: '';
        	position: absolute;
        	bottom: -10px;
        	left: 0;
        	width: 50px;
        	height: 3px;
        	background: var(--accent);
        }

        .contact-info p {
        	margin-bottom: 15px;
        	display: flex;
        	align-items: center;
        }

        .contact-info i {
        	margin-right: 10px;
        	color: var(--accent);
        }

        .footer-links {
        	list-style: none;
        }

        .footer-links li {
        	margin-bottom: 15px;
        }

        .footer-links a {
        	color: var(--gray);
        	text-decoration: none;
        	transition: all 0.3s ease;
        }

        .footer-links a:hover {
        	color: var(--accent);
        	padding-left: 5px;
        }

        .qrcode {
        	width: 150px;
        	height: 150px;
        	background: white;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	border-radius: 10px;
        	margin-bottom: 15px;
        }

        .qrcode img {
        	width: 90%;
        }

        .copyright {
        	text-align: center;
        	padding-top: 20px;
        	border-top: 1px solid rgba(255, 255, 255, 0.1);
        	color: var(--gray);
        	font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
        	h1 {
        		font-size: 2.8rem;
        	}

        	.hero {
        		flex-direction: column;
        		text-align: center;
        	}

        	.hero-content {
        		padding-right: 0;
        		margin-bottom: 50px;
        	}

        	.product {
        		flex-direction: column;
        		margin-bottom: 70px;
        	}

        	.product:nth-child(even) {
        		flex-direction: column;
        	}

        	.product-content {
        		padding: 30px 0 0;
        	}
        }

        @media (max-width: 768px) {
        	.nav-links {
        		position: fixed;
        		top: 80px;
        		left: -100%;
        		width: 100%;
        		height: calc(100vh - 80px);
        		background: rgba(37, 99, 235, 0.95);
        		flex-direction: column;
        		align-items: center;
        		padding-top: 50px;
        		transition: all 0.5s ease;
        	}

        	.nav-links.active {
        		left: 0;
        	}

        	.nav-links li {
        		margin: 20px 0;
        	}

        	.hamburger {
        		display: block;
        		color: white;
        		font-size: 1.8rem;
        	}
        }

        @media (max-width: 576px) {
        	h1 {
        		font-size: 2.2rem;
        	}

        	h2 {
        		font-size: 2rem;
        	}

        	section {
        		padding: 60px 0;
        	}

        	.app-card {
        		width: 100%;
        		max-width: 300px;
        	}

        	.back-to-top {
        		bottom: 20px;
        		right: 20px;
        		width: 45px;
        		height: 45px;
        		font-size: 1.2rem;
        	}
        }

        /* 滚动动画效果 */
        .fade-in {
        	opacity: 0;
        	transform: translateY(30px);
        	transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.appear {
        	opacity: 1;
        	transform: translateY(0);
        }



        /*底部时间*/

        .container-1 {
        	text-align: center;
        	max-width: 1000px;
        	width: 100%;
        	margin: 0 auto;
        	padding-top: 35px;
        	padding-bottom: 35px;
        }

        .logo-1 {
        	font-size: 2.8rem;
        	margin-bottom: 15px;
        	background: linear-gradient(90deg, #6ee2ff, #fff, #ff6ec4);
        	-webkit-background-clip: text;
        	-webkit-text-fill-color: transparent;
        	text-shadow: 0 0 20px rgba(100, 200, 255, 0.3);
        	animation: pulse 4s infinite alternate;
        }

        .tagline-1 {
        	font-size: 1.4rem;
        	margin-bottom: 40px;
        	color: #fff;
        	text-shadow: 0 0 15px rgba(100, 180, 255, 0.2);
        	font-weight: 300;
        	letter-spacing: 0.5px;
        }

        .counter-container-1 {
        	margin-top: 30px;
        }

        .counter-title-1 {
        	font-size: 1.2rem;
        	margin-bottom: 25px;
        	color: #fff;
        	text-transform: uppercase;
        	letter-spacing: 2px;
        	font-weight: 400;
        }

        .counter-1 {
        	display: flex;
        	justify-content: center;
        	align-items: center;
        	flex-wrap: wrap;
        	gap: 18px;
        }

        .counter-item-1 {
        	perspective: 500px;
        }

        .counter-value-1 {
        	width: 130px;
        	height: 75px;
        	background: linear-gradient(145deg, rgba(20, 30, 80, 0.5), rgba(10, 15, 40, 0.8));
        	border: 1px solid rgba(100, 150, 255, 0.2);
        	border-radius: 12px;
        	display: flex;
        	justify-content: center;
        	align-items: center;
        	font-size: 2rem;
        	font-weight: 700;
        	color: #ffffff;
        	margin-bottom: 10px;
        	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5),
        		0 0 0 1px rgba(80, 140, 255, 0.1),
        		0 0 15px rgba(80, 150, 255, 0.1) inset;
        	position: relative;
        	overflow: hidden;
        	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .counter-value-1::before {
        	content: '';
        	position: absolute;
        	top: 0;
        	left: -100%;
        	width: 60%;
        	height: 100%;
        	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        	transition: all 0.6s;
        }

        .counter-value-1:hover::before {
        	left: 140%;
        }

        .divider-1 {
        	font-size: 2.5rem;
        	color: rgba(100, 160, 255, 0.6);
        	align-self: center;
        	margin: 0 5px;
        	position: relative;
        	top: -15px;
        }

        .counter-label-1 {
        	font-size: 1rem;
        	color: #fff;
        	text-transform: uppercase;
        	letter-spacing: 1px;
        	font-weight: 500;
        	text-shadow: 0 0 10px rgba(100, 180, 255, 0.2);
        }

        /* 动画效果 */
        @keyframes pulse {
        	0% {
        		text-shadow: 0 0 15px rgba(100, 200, 255, 0.3);
        	}

        	50% {
        		text-shadow: 0 0 25px rgba(100, 200, 255, 0.6);
        	}

        	100% {
        		text-shadow: 0 0 15px rgba(100, 200, 255, 0.3);
        	}
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
        	.counter-1 {
        		gap: 12px;
        	}

        	.counter-value-1 {
        		width: 70px;
        		height: 100px;
        		font-size: 2.5rem;
        	}

        	.divider-1 {
        		font-size: 2rem;
        		top: -10px;
        	}

        	.logo-1 {
        		font-size: 2.5rem;
        	}

        	.tagline-1 {
        		font-size: 1.1rem;
        	}
        }

        @media (max-width: 480px) {
        	.counter-1 {
        		gap: 8px;
        	}

        	.counter-value-1 {
        		width: 55px;
        		height: 80px;
        		font-size: 2rem;
        	}

        	.divider-1 {
        		font-size: 1.5rem;
        		top: -5px;
        	}

        	.counter-label-1 {
        		font-size: 0.8rem;
        	}
        }


        /*按钮样式*/
        /* 容器样式 */
        .btn-container-11 {
        	display: flex;
        	justify-content: space-between;
        	align-items: center;
        	padding: 1rem;
        	background: #f7f9fc;
        	border-radius: 12px;
        }

        /* 通用按钮样式 */
        .btn-base-11 {
        	padding: 12px 28px;
        	font-size: 1rem;
        	font-weight: 600;
        	border-radius: 8px;
        	transition: all 0.3s ease;
        	cursor: pointer;
        	border: none;
        	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* 左侧按钮 */
        .btn-left-11 {
        	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        	color: white;
        }

        .btn-left-11:hover {
        	transform: translateY(-2px);
        	box-shadow: 0 6px 12px rgba(106, 17, 203, 0.25);
        }

        /* 居中按钮 */
        .btn-center-11 {
        	background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
        	color: white;
        }

        .btn-center-11:hover {
        	transform: scale(1.05);
        	box-shadow: 0 8px 15px rgba(46, 204, 113, 0.3);
        }

        /* 右侧按钮 */
        .btn-right-11 {
        	background: linear-gradient(135deg, #ff6b6b 0%, #ffa502 100%);
        	color: white;
        }

        .btn-right-11:hover {
        	transform: translateY(-2px) rotate(2deg);
        	box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3);
        }