/* 基础样式重置 */
.container {
	width: 100%;
	max-width: 1450px;
	margin: 0 auto;
	padding: 0px 20px;
}

.section {
	padding: 60px 0;
}

.section-title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #8a97b6;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.divider {
	width: 60px;
	height: 3px;
	background-color: #00f0d0;
	margin: 20px auto 40px;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-primary {
	background-color: rgba(0, 240, 208, 0.1);
	border: 1px solid #00f0d0;
	color: #00f0d0;
}

.btn-primary:hover {
	color: #ffffff;
	background-color: rgba(0, 240, 208, 0.2);
	box-shadow: 0 0 15px rgba(0, 240, 208, 0.3);
}


.btn-primaryw {
	background-color: rgba(230, 57, 70, 0.1);
	border: 1px solid #e63946;
	color: #e63946;
}

.btn-primaryw:hover {
	color: #ffffff;
	background-color: rgba(230, 57, 70, 0.2);
	box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
}

.btn-xyx {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 0.9rem;
}

.btn-secondary {
	background-color: rgba(30, 50, 90, 0.5);
	border: 1px solid #1e325a;
	color: #e0e8ff;
}

.btn-secondary:hover {
	background-color: rgba(30, 50, 90, 0.8);
}

/* 导航栏样式 */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar-scrolled {
	background-color: rgba(5, 13, 31, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 30px rgba(0, 240, 208, 0.2);
	padding: 15px 0;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
}

.logo-icon {
	width: 40px;
	height: 40px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.logo-icon img {
	width: 88%;
}

.logo:hover .logo-icon {
	transform: rotate(12deg);
}

.logo-text span:first-child {
	color: #e0e8ff;
}

.logo-text span:last-child {
	color: #00f0d0;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

.an {

	-webkit-transform: rotate(360deg);
	animation: rotation 3s linear infinite;
	-moz-animation: rotation 3s linear infinite;
	-webkit-animation: rotation 3s linear infinite;
	-o-animation: rotation 3s linear infinite;
}


.nav-links {
	display: flex;
	gap: 40px;
}

.nav-link {
	color: #e0e8ff;
	font-size: 0.9rem;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #00f0d0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #00f0d0;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: #e0e8ff;
	font-size: 1.5rem;
	cursor: pointer;
}

.mobile-menu {
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background-color: rgba(17, 34, 64, 0.95);
	backdrop-filter: blur(10px);
	padding: 20px;
	display: none;
	animation: fadeIn 0.5s ease forwards;
}

.mobile-menu.active {
	display: block;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mobile-nav-link {
	padding: 10px 0;
	border-bottom: 1px solid rgba(30, 50, 90, 0.3);
	color: #e0e8ff;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mobile-nav-link:hover {
	color: #00f0d0;
}

/* 英雄区样式 */
.hero {
	height: 100vh;
	padding-top: 18%;
	position: relative;
	background: radial-gradient(circle at 20% 20%, rgba(17, 34, 64, 0.9) 0%, rgba(5, 13, 31, 1) 100%);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(0, 240, 208, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 240, 208, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	z-index: 0;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(0, 240, 208, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.3;
	pointer-events: none;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.hero-tagline {
	color: #00f0d0;
	margin-bottom: 20px;
	animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
	font-size: 4.5rem;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 30px;
	animation: fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.hero-title span {
	background: linear-gradient(90deg, #00f0d0, #00c8ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-titlew {
	font-size: 4.5rem;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 30px;
	animation: fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.hero-titlew span {
	background: linear-gradient(90deg, #f77f00, #e63946);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}


.hero-desc {
	color: #8a97b6;
	font-size: 1.1rem;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 0.8s ease 0.4s forwards;
	opacity: 0;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	animation: fadeInUp 0.8s ease 0.6s forwards;
	opacity: 0;
}

.scroll-indicator {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(0, 240, 208, 0.7);
	font-size: 1.5rem;
	animation: float 3s ease-in-out infinite;
}

/* 轮播图区 */
.swiper {
	width: 100%;
	min-height: 45vh;
}

.swiper-slide {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}


.swiper-slide img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.autoplay-progress {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--swiper-theme-color);
}

.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 4px;
	stroke: var(--swiper-theme-color);
	fill: none;
	stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}

.swiper-button-next {
	transform: translateY(-50%);
	/* 垂直居中 */
}

.swiper-button-prev {
	transform: translateY(-50%);
	/* 垂直居中 */
}

/* 关于我们样式 */
.about {
	background-color: #0d1b36;
	position: relative;
}

.about::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: linear-gradient(to top, #050d1f, transparent);
}

.about-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.about-card {
	background-color: rgba(30, 50, 90, 0.3);
	border: 1px solid rgba(30, 50, 90, 0.5);
	border-radius: 10px;
	padding: 30px;
	transition: all 0.5s ease;
}

.about-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 240, 208, 0.1);
}

.card-icon {
	width: 60px;
	height: 60px;
	border-radius: 10px;
	background-color: rgba(0, 240, 208, 0.1);
	border: 1px solid rgba(0, 240, 208, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: #00f0d0;
}

.card-icon img {
	width: 30px;
}


.card-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.card-desc {
	color: #8a97b6;
	line-height: 1.7;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	text-align: center;
	margin-bottom: 30px;
}

.stat-value {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(90deg, #00f0d0, #00c8ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 10px;
}

.stat-label {
	color: #8a97b6;
}

/* 服务样式 */
.services {
	background-color: #050d1f;
	position: relative;
}

.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(0, 240, 208, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.3;
	pointer-events: none;
	z-index: 0;
}

.service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	position: relative;
	z-index: 1;
}

.service-card {
	background-color: rgba(17, 34, 64, 0.5);
	border: 1px solid rgba(30, 50, 90, 0.3);
	border-radius: 10px;
	padding: 30px;
	display: flex;
	gap: 20px;
	transition: all 0.5s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 240, 208, 0.1);
}

.service-icon {
	width: 70px;
	height: 70px;
	border-radius: 10px;
	background-color: rgba(0, 240, 208, 0.1);
	border: 1px solid rgba(0, 240, 208, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.8rem;
	color: #00f0d0;
}

.service-icon img {
	width: 60%;
}

.service-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.service-content p {
	color: #8a97b6;
	margin-bottom: 20px;
	line-height: 1.7;
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.service-tag {
	padding: 5px 12px;
	border-radius: 20px;
	background-color: rgba(30, 50, 90, 0.3);
	color: #00f0d0;
	font-size: 0.8rem;
}

/* 案例样式 */
.cases {
	background-color: #0d1b36;
	position: relative;
}

.cases::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: linear-gradient(to top, #050d1f, transparent);
}

.case-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.case-card {
	background-color: rgba(30, 50, 90, 0.2);
	border: 1px solid rgba(30, 50, 90, 0.4);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.5s ease;
}

.case-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 240, 208, 0.1);
}

.case-img {
	height: 200px;
	overflow: hidden;
}

.case-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.case-card:hover .case-img img {
	transform: scale(1.1);
}

.case-info {
	padding: 25px;
}

.case-title {
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.case-desc {
	color: #8a97b6;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.case-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.case-category {
	padding: 3px 10px;
	border-radius: 20px;
	background-color: rgba(0, 240, 208, 0.1);
	color: #00f0d0;
	font-size: 0.7rem;
}

.case-link {
	color: #00f0d0;
	font-size: 0.9rem;
	position: relative;
}

.case-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #00f0d0;
	transition: width 0.3s ease;
}

.case-link:hover::after {
	width: 100%;
}

.cases-more {
	text-align: center;
}

/* 联系样式 */
.contact {
	background-color: #050d1f;
	position: relative;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(0, 240, 208, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.3;
	pointer-events: none;
	z-index: 0;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.contact-form {
	background-color: rgba(17, 34, 64, 0.5);
	border: 1px solid rgba(30, 50, 90, 0.3);
	border-radius: 10px;
	padding: 30px;
}

.form-title {
	font-size: 1.8rem;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	color: #8a97b6;
	font-size: 0.9rem;
	font-weight: 500;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 12px 15px;
	border-radius: 6px;
	background-color: rgba(30, 50, 90, 0.2);
	border: 1px solid rgba(30, 50, 90, 0.4);
	color: #e0e8ff;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #00f0d0;
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 78px;
}

.info-card {
	background-color: rgba(17, 34, 64, 0.5);
	border: 1px solid rgba(30, 50, 90, 0.3);
	border-radius: 10px;
	padding: 30px;
	transition: all 0.5s ease;
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 240, 208, 0.1);
}

.info-icon {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background-color: rgba(0, 240, 208, 0.1);
	border: 1px solid rgba(0, 240, 208, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 1.2rem;
	color: #00f0d0;
}

.info-icon img {
	width: 60%;
}

.info-title {
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.info-text {
	color: #8a97b6;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(0, 240, 208, 0.1);
	border: 1px solid rgba(0, 240, 208, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00f0d0;
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: rgba(0, 240, 208, 0.2);
}


/* 详情页 */
/* 新闻头部 */
.news-header {
	margin-bottom: 40px;
	text-align: center;
}


.news-title {
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.news-meta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	color: var(--color-gray);
	font-size: 0.9rem;
	margin-bottom: 30px;
}

.author {
	display: flex;
	align-items: center;
	gap: 10px;
}


/* 新闻图片 */
.news-image {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
}

.news-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 8s ease;
}

.news-image:hover img {
	transform: scale(1.05);
}



/* 新闻内容 */
.news-contentw {
	margin: 0 auto;
	font-size: 1.1rem;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 40px;
/* 	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
	position: relative;
}

.news-contentw img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 8s ease;
}

.news-contentw:hover img {
	transform: scale(1.05);
}


.news-contentw p {
	margin-bottom: 25px;
	color: #8892B0;
	text-indent: 2em;
}


/* 标签 */
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 40px 0;
	font-size: 0.9rem;
	color: #686d7b;
}

.tag {
	padding: 6px 15px;
	background-color: rgba(35, 53, 84, 0.5);
	border-radius: 30px;
	font-size: 0.9rem;
	color: #8892B0;
	transition: all 0.5s ease;
}

.tag:hover {
	background-color: rgba(100, 255, 218, 0.1);
	color: #64FFDA;
}

/* 上下篇导航 */
.news-navigation {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(136, 146, 176, 0.1);
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.prev-news,
.next-news {
	flex: 1;
	position: relative;
	padding: 20px;
	border-radius: 10px;
	transition: all 0.5s ease;
}

.prev-news span {
	padding-left: 20px;
}

.next-news span {
	padding-right: 20px;
}

.prev-news a {
	color: #8892B0;
	padding-left: 20px;
}

.next-news a {
	color: #8892B0;
	padding-right: 20px;
}

.prev-news:hover,
.next-news:hover {
	background-color: rgba(35, 53, 84, 0.3);
	transform: translateY(-5px);
}

.prev-news {
	padding-left: 0;
}

.next-news {
	padding-right: 0;
	text-align: right;
}

.nav-label {
	color: #64FFDA;
	font-size: 0.9rem;
	margin-bottom: 10px;
	display: block;
}

.nav-title {
	color: #E6F1FF;
	font-weight: 600;
	transition: all 0.5s ease;
}

.prev-news:hover,
.next-news:hover .a {
	color: #64FFDA;
}

/* 动画效果 */
@keyframes fadeInw {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInw 0.8s ease forwards;
	opacity: 0;
}

.delay-100 {
	animation-delay: 0.1s;
}

.delay-200 {
	animation-delay: 0.2s;
}

.delay-300 {
	animation-delay: 0.3s;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.news-title {
		font-size: 2rem;
	}

	.news-meta {
		flex-direction: column;
		gap: 10px;
	}

	.news-navigation {
		flex-direction: column;
	}

	.prev-news,
	.next-news {
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.news-title {
		font-size: 1.6rem;
	}

	.news-content {
		font-size: 1rem;
	}

	.highlight-box {
		padding: 15px;
	}
}




/* 页脚样式 */
footer {
	background-color: #0d1b36;
	border-top: 4px solid #64FFDA;
	padding: 30px 0 30px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.footer-logo-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo-icon img {
	width: 80%;
}

.footer-logo-text span:first-child {
	color: #e0e8ff;
}

.footer-logo-text span:last-child {
	color: #00f0d0;
}

.footer-desc {
	color: #8a97b6;
	font-size: 0.9rem;
}

.copyright {
	text-align: right;
}

.copyright-text {
	color: #8a97b6;
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.copyright-info {
	color: rgba(138, 151, 182, 0.7);
	font-size: 0.8rem;
}

.copyright-info a {
	color: #8a97b6;
}

.copyright-info a:hover {
	color: #ffffff;
}


/* 回到顶部按钮 */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(0, 240, 208, 0.1);
	border: 1px solid rgba(0, 240, 208, 0.3);
	color: #00f0d0;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 1000;
}

.back-to-top:hover {
	background-color: rgba(0, 240, 208, 0.2);
}

.back-to-top.active {
	display: flex;
}

/* 动画定义 */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(-50%);
	}

	50% {
		transform: translateY(-15px) translateX(-50%);
	}
}

@keyframes glowPulse {
	0% {
		box-shadow: 0 0 15px rgba(0, 240, 208, 0.5);
	}

	100% {
		box-shadow: 0 0 25px rgba(0, 240, 208, 0.8), 0 0 35px rgba(0, 240, 208, 0.3);
	}
}

.animate-glow {
	animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulsew {
	0% {
		box-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
	}

	100% {
		box-shadow: 0 0 25px rgba(230, 57, 70, 0.8), 0 0 35px rgba(230, 57, 70, 0.3);
	}
}

.animate-gloww {
	animation: glowPulsew 2s ease-in-out infinite alternate;
}


/* 响应式设计 */
@media(max-width:1920px) {
	.hero {
		padding-top: 15%;
	}
}

@media (max-width: 992px) {
	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.hero-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {

	.nav-links,
	.desktop-btn {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.copyright {
		text-align: center;
	}
}

@media (max-width: 576px) {
	.navbar-scrolled{
		padding: 5px 0;
	}
	.logo-icon img {
	    width: 80%;
	}
	
	.logo-text{
		font-size: 1.2rem;
	}
	.mobile-menu {
		top: 50px;
	}
	
	.hero-content{
		padding-top: 30%;
		padding-bottom: 5%;
	}
	.hero-title {
		font-size: 1.8rem;
	}
	.hero-desc{
		font-size: 1rem;
	}
	
	.hero-titlew {
		font-size: 1.8rem;
	}

	.hero-buttons {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 70%;
		margin: 0px auto;
	}
	.swiper {
		height: 100%;
	}
	
	.swiper-button-next::after,
	.swiper-button-prev::after{
		display: none;
	}

	.btn {
		width: 100%;
	}
	
	.btn-primary,.btn-secondary{
		width: 40%;
		padding: 5px 10px;
	}
	
	
	.section {
		padding: 60px 0;
	}
}

/* 合作单位模块样式 */
.partners {
	padding: 80px 0;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

@media (min-width: 768px) {
	.partners-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 992px) {
	.partners-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.partner-item {
	background-color: rgba(17, 34, 64, 0.5);
	border: 1px solid rgba(30, 50, 90, 0.3);
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.partner-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 240, 208, 0.15);
}

.partner-item a {
	font-size: 0.9rem;
	color: #8a97b6;
}

.partner-logo {
	max-width: 160px;
	max-height: 60px;
	object-fit: contain;
	margin-bottom: 15px;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
	filter: grayscale(0);
}

.partner-name {
	font-size: 14px;
	color: #333;
	margin: 0;
	transition: color 0.3s ease;
}

.partner-item:hover .partner-name {
	color: #00c8ff;
}


.text-gradient {
	background: linear-gradient(90deg, #00f0d0, #00c8ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}


/* 关于我们 */
/* 页面标题区 */
.page-header {
	padding: 150px 0 80px;
	background-image: radial-gradient(circle at 20% 20%, rgba(17, 34, 64, 0.9) 0%, rgba(10, 25, 47, 1) 100%);
	position: relative;
}

.page-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(100, 255, 218, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
}

.page-title {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
}

.text-gradient {
	background: linear-gradient(90deg, ##64FFDA, #4CC9F0);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.page-description {
	color: #8892B0;
	font-size: 18px;
	max-width: 520px;
}

/* 基础样式与颜色定义 */
:root {
	--color-dark: #0A192F;
	--color-mid: #112240;
	--color-light: #233554;
	--color-accent: #64FFDA;
	--color-gray: #8892B0;
	--color-white: #E6F1FF;
}

/* 公司简介 */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-text {
	color: var(--color-gray);
	font-size: 16px;
	line-height: 1.8;
}

.about-text p {
	margin-bottom: 20px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.stat-item {
	background-color: var(--color-light);
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid rgba(35, 53, 84, 0.5);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(100, 255, 218, 0.1);
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	background: linear-gradient(90deg, var(--color-accent), #4CC9F0);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 5px;
}

.stat-label {
	color: var(--color-gray);
	font-size: 14px;
}

.about-image {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

/* 愿景和使命 */
.vision-mission {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.vision-card,
.mission-card {
	background-color: var(--color-light);
	padding: 40px;
	border-radius: 12px;
	border: 1px solid rgba(35, 53, 84, 0.5);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vision-card:hover,
.mission-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(100, 255, 218, 0.1);
}

.card-icon {
	width: 60px;
	height: 60px;
	border-radius: 10px;
	background-color: rgba(100, 255, 218, 0.1);
	border: 1px solid rgba(100, 255, 218, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.card-title {
	font-size: 24px;
	margin-bottom: 20px;
}

.card-text {
	color: var(--color-gray);
	line-height: 1.8;
}

/* 发展历程 */
.timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 2px;
	background-color: rgba(100, 255, 218, 0.3);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
}

.timeline-item {
	padding: 10px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
}

.timeline-item::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background-color: var(--color-accent);
	border: 4px solid var(--color-mid);
	border-radius: 50%;
	top: 20px;
	z-index: 1;
}

.timeline-left {
	left: 0;
}

.timeline-right {
	left: 50%;
}

.timeline-left::after {
	right: -10px;
}

.timeline-right::after {
	left: -10px;
}

.timeline-content {
	padding: 25px;
	background-color: var(--color-light);
	border-radius: 8px;
	border: 1px solid rgba(35, 53, 84, 0.5);
	transition: transform 0.3s ease;
}

.timeline-content:hover {
	transform: translateY(-5px);
}

.timeline-year {
	color: var(--color-accent);
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

.timeline-title {
	font-size: 20px;
	margin-bottom: 10px;
}

.timeline-text {
	color: var(--color-gray);
	font-size: 14px;
}

.timeline-text:hover {
	cursor: pointer;
	color: #ffffff;
}


/* 响应式设计 */
@media (max-width: 992px) {
	.about-content {
		grid-template-columns: 1fr;
	}

	.vision-mission {
		grid-template-columns: 1fr;
	}

	.timeline::after {
		left: 31px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	.timeline-right {
		left: 0;
	}

	.timeline-left::after,
	.timeline-right::after {
		left: 21px;
	}
}

@media (max-width: 768px) {
	.org-children {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.page-header {
		padding: 120px 0 60px;
	}

	.page-title {
		font-size: 28px;
	}

	.page-description {
		font-size: 16px;
	}

	.section {
		padding: 40px 0;
	}

	.section-title {
		font-size: 24px;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.timeline-content {
		padding: 20px;
	}
	.footer-logo {
		display: none;
	}
}


/* 公司动态 */
/* 动态列表样式 */
.news-section {
	padding: 20px 0 80px;
}

.news-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.news-list a h2{
	color: #ffffff;
}

.wsnr{
	background-color: #0E1E39;
	padding:30px 30px;
}

@media (min-width: 768px) {
	.news-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.news-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.news-card {
	background-color: #233554;
	border-radius: 12px;
	overflow: hidden;
 	transition: all 0.3s ease; 
	border: 1px solid rgba(35, 53, 84, 0.5);
	position: relative;
}

.news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 30px rgba(100, 255, 218, 0.1);
}

.news-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.news-card:hover .news-image img {
	transform: scale(1.08);
}

.news-content {
	padding: 25px;
}

.news-date {
	display: inline-block;
	color: #64FFDA;
	font-size: 0.9rem;
	margin-bottom: 10px;
	font-weight: 500;
}

.news-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.news-card:hover .news-title {
	color: #64FFDA;
}

.news-description {
	color: #8892B0;
	font-size: 1rem;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.read-more {
	display: inline-flex;
	align-items: center;
	color: #64FFDA;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	padding-bottom: 3px;
}

.read-more::after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #64FFDA;
	transition: width 0.3s ease;
}

.read-more:hover::after {
	width: 100%;
}

.read-more i {
	margin-left: 6px;
	transition: transform 0.3s ease;
}

.read-more:hover i {
	transform: translateX(3px);
}

/* 分页样式 */
.pagination {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 100%;
	clear: both;
}

.page-btn {
	font-size: 0.9rem;
	width: 60px;
	height: 40px;
	border-radius: 6px;
	border: 1px solid rgba(100, 255, 218, 0.3);
	background-color: transparent;
	color: #E6F1FF;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-btn:hover {
	background-color: rgba(100, 255, 218, 0.1);
}

.page-btn.active {
	background-color: #64FFDA;
	color: #0A192F;
	border-color: #64FFDA;
}

.page-btn.arrow {
	width: auto;
	padding: 0 15px;
}

/* 粒子背景效果 */
.particle-bg {
	position: relative;
}

.particle-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(#64FFDA 0.5px, transparent 0.5px);
	background-size: 30px 30px;
	opacity: 0.05;
	pointer-events: none;
	z-index: -1;
}

.news-card {
	animation: fadeIn 0.6s ease forwards;
	opacity: 0;
}

.news-card:nth-child(1) {
	animation-delay: 0.1s;
}

.news-card:nth-child(2) {
	animation-delay: 0.2s;
}

.news-card:nth-child(3) {
	animation-delay: 0.3s;
}

.news-card:nth-child(4) {
	animation-delay: 0.4s;
}

.news-card:nth-child(5) {
	animation-delay: 0.5s;
}

.news-card:nth-child(6) {
	animation-delay: 0.6s;
}