/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', Arial, sans-serif;
}

a {
	text-decoration: none;
}


.font-bold-middle {
	font-weight: 500;
}

.font-bold {
	font-weight: 700;
}


:root {
	--primary: #1a3a47;
	--accent: #2196F3;
	--light: #f8f9fa;
	--dark: #212529;
	--text: #333;
	--gray: #6c757d;
	--border: #e0e0e0;
	--overlay: rgba(0, 0, 0, 0.7);
}




/* 头部导航样式 */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgb(255 255 255);
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	z-index: 1000;
	padding: 0 8%;
	display: flex;
	align-items: center;
	height: 100px;
	transition: all 0.3s ease;
}

/* 新增：滚动时头部收缩与阴影（与 head.html 中的脚本联动） */
.site-header {
	height: 100px;
}


.site-header nav {
	transition: height .25s ease;
}

.site-header .logo img {
	transition: width .25s ease, height .25s ease;
}

.site-header.is-sticky {
	box-shadow: 0 0 10px rgba(0, 0, 0, .6);
}

/* 阴影横线效果 */
.site-header.is-sticky {
	height: 80px;
}

/* .site-header.is-sticky .logo img{width:150px;} */

.logo img {
	width: 180px;
	vertical-align: middle;
}

.logo span {
	color: var(--accent);
}

nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 0;
}

.nav-links {
	display: flex;
	list-style: none;
	margin-left: 40px;
	margin-right: 0;
}

.nav-links>li {
	position: relative;
	/* margin: 0 20px; */
	margin: 0 0px 0 40px;
}

.nav-links a {
	text-decoration: none;
	color: var(--text);
	font-weight: 400;
	font-size: 16px;
	padding: 8px 0;
	position: relative;
	display: inline-block;
	transition: color 0.3s;
}


.nav-links li.cur a {
	color: #333f80;
}


/* .nav-links a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s ease;
} */

/* .nav-links a:hover {
	color: var(--accent);
} */

.nav-links a:hover:after {
	width: 100%;
}

/* 语言切换默认颜色 */
.lang-switch a,
.lang-switch-mobile a {
	color: #666;
	text-decoration: none;
}

.lang-switch a:visited,
.lang-switch a:hover,
.lang-switch-mobile a:visited,
.lang-switch-mobile a:hover {
	color: #666;
}



/* 下拉菜单样式 */
.dropdown {
	position: relative;
}

.dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	width: 240px;
	background-color: white;
	border-radius: 4px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	padding: 15px 0;
}

.dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-content a {
	font-size: 14px;
	font-weight: 400;
	display: block;
	padding: 10px 20px;
	color: var(--gray);
	transition: all 0.2s;
}

.dropdown-content a:hover {
	background-color: #f5f7fa;
	color: #009144;
	padding-left: 25px;
}


.nav-links li.cur .dropdown-content a {
	font-size: 14px;
	font-weight: 400;
	display: block;
	padding: 10px 20px;
	color: var(--gray);
	transition: all 0.2s;
}

.nav-links li.cur .dropdown-contentt a:hover {
	background-color: #f5f7fa;
	color: var(--accent);
	padding-left: 25px;
}


.contact-btn {
	background-color: #0db65c;
	;
	color: white;
	padding: 5px 25px;
	border-radius: 4px;
	font-weight: 500;
	transition: background-color 0.3s, transform 0.2s;
	display: inline-block;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.contact-btn:hover {
	background-color: #009144;

}

.menu-toggle {
	display: none;
	font-size: 1.5rem;
	background: none;
	border: none;
	color: var(--text);
	cursor: pointer;
}

.search-toggle {
	font-size: 1.2rem;
	background: none;
	border: none;
	color: var(--text);
	cursor: pointer;
	margin-left: 15px;
	padding: 8px;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.search-toggle:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

/* Swiper轮播样式 */
.swiper-container {
	width: 100%;
	margin: 0 auto;
	height: calc(60vh);
	margin-top: 100px;
	position: relative;
	overflow: hidden;
}

/* 产品 Mega Menu */
.mega-menu {
	position: fixed;
	left: calc((100% - 84.5%)/2);
	right: calc((100% - 84.5%)/2);
	top: 100px;
	background: #000;
	color: #fff;
	display: none;
	z-index: 999;
}

.site-header.is-sticky~.mega-menu {
	top: 80px;
}

.mega-inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	padding: 30px 30px;
}

.mega-col {
	flex: 1;
	min-width: 220px;
}

.mega-title {
	display: inline-block;
	color: #fff;
	padding: 10px 24px;
	border-radius: 4px;
	margin-bottom: 16px;
	font-weight: 600;
}

.mega-col a {
	display: block;
	color: #ddd;
	padding: 4px 0;
}

.mega-col a:hover {
	color: #fff;
}

/* 简洁三项布局 */
.mega-simple {
	justify-content: space-between;
	align-items: center;
}

.mega-simple-item {
	flex: 1;
	text-align: center;
	color: #ddd;
	font-size: 20px;
	line-height: 120px;
}

.mega-simple-item:hover {
	color: #fff;
}

/* 搜索下拉菜单样式 */
.mega-search {
	justify-content: center;
	align-items: center;
	padding: 40px 30px;
}

.search-container {
	width: 100%;
	max-width: 600px;
}

.search-content {
	text-align: center;
}

.search-content h2 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 500;
}

.search-form {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	align-items: center;
}

.search-input {
	flex: 1;
	padding: 15px 20px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	outline: none;
	background: #fff;
}

.search-input::placeholder {
	color: #999;
}

.search-button {
	background: #009144;
	color: #fff;
	border: none;
	padding: 15px 25px;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background 0.3s;
}

.search-button:hover {
	background: #007a3a;
}

.search-suggestions h3 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 400;
}

.suggestion-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.tag {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s;
}

.tag:hover {
	background: rgba(255, 255, 255, 0.3);
}


@media (max-width:768px) {}







@media(max-width:768px) {

	/* 移动端轮播宽度为100%，下拉层也铺满 */
	.mega-menu {
		left: 0;
		right: 0;
	}

	.swiper-container {
		width: 100%;
		height: 60vh;
		margin-top: 80px;
		padding: 0 15px;
		box-sizing: border-box;
	}

	/* 移动端swiper-slide优化 */
	.swiper-slide {
		width: 100% !important;
		height: 100%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}

	/* 移动端slide-content优化 */
	.slide-content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		width: 90%;
		max-width: 400px;
		margin: 0;
		padding: 20px;
		background: rgba(0, 0, 0, 0.3);
		border-radius: 10px;
		backdrop-filter: blur(5px);
	}

	.slide-content h1 {
		font-size: 1.5rem;
		margin-bottom: 10px;
		line-height: 1.3;
	}

	.slide-content p {
		font-size: 1rem;
		margin-bottom: 15px;
		line-height: 1.4;
	}

	.slide-content .contact-btn {
		padding: 8px 20px;
		font-size: 0.9rem;
	}

	/* 移动端分页器优化 */
	.swiper-pagination {
		bottom: 20px !important;
	}

	.swiper-pagination-bullet {
		width: 8px !important;
		height: 8px !important;
		margin: 0 4px !important;
		background: rgba(255, 255, 255, 0.5) !important;
		opacity: 1 !important;
	}

	.swiper-pagination-bullet-active {
		background: #009144 !important;
		transform: scale(1.2) !important;
	}

	/* 移动端搜索下拉菜单样式 */
	.mega-search {
		padding: 30px 20px;
	}

	.search-content h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.search-form {
		flex-direction: column;
		gap: 10px;
	}

	.search-input {
		padding: 12px 15px;
		font-size: 14px;
	}

	.search-button {
		padding: 12px 20px;
		font-size: 14px;
		width: 100%;
		justify-content: center;
	}

	.suggestion-tags {
		gap: 8px;
	}

	.tag {
		padding: 6px 12px;
		font-size: 12px;
	}

	.nav-right {
		gap: 5px;
	}

	.search-toggle {
		display: block;
		margin-left: 0;
	}

	.menu-toggle {
		display: block;
		margin-left: 0;
	}

	.search-overlay {
		padding-top: 100px;
	}

	.search-container {
		width: 95%;
		margin: 0 10px;
	}

	.search-content {
		padding: 30px 20px;
	}

	.search-content h2 {
		font-size: 1.5rem;
	}

}

/* 更小屏幕的导航优化 */
@media(max-width: 480px) {
	.nav-right {
		gap: 5px;
	}

	.search-toggle {
		margin-left: 0;
	}

	.menu-toggle {
		margin-left: 0;
	}
}

.swiper-slide {
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/* width: 100% !important; */
	height: 100%;
}

.slide-content {
	position: relative;
	z-index: 2;
	text-align: left;
	color: white;
	max-width: 900px;
	padding: 0 20px;
	margin-left: 130px;
	margin-top: 10px;
	width: 100%;
	box-sizing: border-box;
}

.slide-content h1 {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 10px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-content p {
	font-size: 1.2rem;
	margin-bottom: 20px;
	max-width: 500px;
	/* margin-left: auto;
            margin-right: auto; */
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* 覆盖层增强文字可读性 */
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 0000001c;
	z-index: 1;
}

/* 移动端菜单样式 */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: white;
	z-index: 1001;
	padding: 30px 20px;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.close-menu {
	background: none;
	border: none;
	font-size: 1.8rem;
	color: var(--text);
	cursor: pointer;
}

.mobile-links {
	list-style: none;
	padding: 20px 0;
	flex-grow: 1;
}

.mobile-links li {
	margin: 15px 0;
	border-bottom: 1px solid var(--border);
	padding-bottom: 15px;
}

.mobile-links a {
	text-decoration: none;
	color: var(--text);
	font-size: 16px;
	display: block;
	transition: color 0.3s;
}

.mobile-links a:hover {
	color: #333f80;
}

.mobile-submenu {
	list-style: none;
	padding-left: 20px;
	padding-top: 10px;
	display: none;
}

.mobile-submenu.active {
	display: block;
}

.mobile-submenu li {
	margin: 10px 0;
	border-bottom: none;
	padding-bottom: 0;
}

.mobile-chat {
	background-color: #1a3a47;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 1.1rem;
	text-decoration: none;
	margin-top: auto;
}

.mobile-chat i {
	margin-right: 10px;
	font-size: 1.2rem;
}

/* 响应式调整 */
@media (min-width: 1200px) {
	.swiper-slide .slide-content {
		transform: translateY(-15%);
	}
}

@media (max-width: 1100px) {
	.slide-content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		width: 95%;
		max-width: 350px;
		margin: 0;
		padding: 15px;
		background: rgba(0, 0, 0, 0.4);
		border-radius: 8px;
		backdrop-filter: blur(5px);
	}

	.slide-content h1 {
		font-size: 3rem;
	}

	.slide-content p {
		font-size: 1.2rem;
	}
}

@media (max-width: 992px) {
	header {
		padding: 0 5%;
	}

	.nav-links {
		display: none;
	}

	.contact-btn {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	/* 手机端隐藏顶部导航右侧语言切换（保留侧滑菜单里的语言切换） */
	.lang-switch {
		display: none !important;
	}

	.slide-content h1 {
		font-size: 2.5rem;
	}

	.slide-content p {
		font-size: 1.1rem;
	}
}

@media (max-width: 576px) {
	.swiper-container {
		height: 50vh;
		margin-top: 70px;
		padding: 0 10px;
	}

	.slide-content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		width: 95%;
		max-width: 350px;
		margin: 0;
		padding: 15px;
		background: rgba(0, 0, 0, 0.4);
		border-radius: 8px;
		backdrop-filter: blur(5px);
	}

	.slide-content h1 {
		font-size: 1.3rem;
		margin-bottom: 8px;
		line-height: 1.2;
	}

	.slide-content p {
		font-size: 0.9rem;
		margin-bottom: 12px;
		line-height: 1.3;
	}

	.slide-content .contact-btn {
		padding: 6px 16px;
		font-size: 0.8rem;
	}

	.logo {
		font-size: 1.5rem;
	}
}

/* banner宽度 */
.bannerrq {
	padding: 0px 7.8%;
}

@media (max-width:768px) {
	.bannerrq {
		padding: 0px 0%;
	}
}

/* 产品介绍区域样式 */
.product-intro-section {
	background-color: #fff;
	padding: 150px 7.8% 10px;
}

.product-intro-container {

	margin: 0 auto;
	padding: 0 0%;
}

.product-intro-content {
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

.intro-title {
	flex: 0 0 40%;
}

.intro-title h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a3a47;
	line-height: 1.2;
	margin: 0;
}

.intro-description {
	flex: 1;
}

.intro-description p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
	margin: 0;
	text-align: left;
}

/* 移动端样式 */
@media (max-width: 768px) {
	.product-intro-section {

		padding: 120px 0% 0px;
	}


	.product-intro-container {
		padding: 0 5%;
	}

	.product-intro-content {
		flex-direction: column;
		gap: 30px;
	}

	.intro-title {
		flex: none;
		width: 100%;
	}

	.intro-title h1 {
		font-size: 2rem;
		line-height: 1.3;
	}

	.intro-description {
		flex: none;
		width: 100%;
	}

	.intro-description p {
		font-size: 1rem;
		line-height: 1.6;
	}
}

/* 正文内容样式 */
.content-section {
	padding: 40px 7.8%;
	background-color: #fff;
}


.fline-height {
	padding: 20px 7.8%;
	background-color: #fff;
}

/* 公司介绍区块样式 */
.company-intro {
	padding: 50px 0 80px;
	background-color: #fff;
}

.company-intro .container {
	/* padding: 40px 7.8%; */
	margin: 0 auto;
	padding: 0 7.8%;
}

.intro-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.intro-text {
	flex: 1;
}



.intro-paragraphs p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text);
	margin-bottom: 20px;
	text-align: justify;
}

.intro-image {
	flex: 1;
}

.image-container {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.image-container:hover {
	transform: translateY(-5px);
}

.image-container img {
	width: 100%;
	height: auto;
	display: block;
}

/* 产品与服务区块样式 */
.products-services {
	padding: 80px 0;
	background-color: #def1ff;
}

/* 服务部分白色背景 */
.products-services.services-white-bg {
	background-color: #fff;
}

.products-services .container {
	padding: 40px 7.8%;
	margin: 0 auto;
	padding: 0 7.8%;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 20px;
}

.section-line {
	width: 100px;
	height: 3px;
	background-color: #2196F3;
	margin: 0 auto;
}

.products-grid {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: stretch;
	/* 确保所有卡片等高 */
	min-height: 400px;
	/* 设置最小高度确保卡片有足够空间 */
}

.indexproduct-card {
	flex: 1;
	background-color: white;
	padding: 40px 30px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	/* 确保卡片占满容器高度 */
	min-height: 350px;
	/* 设置卡片最小高度 */
	justify-content: space-between;
	/* 确保内容在卡片内合理分布 */
}

/* .indexproduct-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.indexproduct-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 20px;
	line-height: 1.3;
}

.indexproduct-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 0;
	/* 移除底部边距，让按钮紧贴 */
	flex-grow: 1;
	/* 让段落占据剩余空间，推动按钮到底部 */
	text-align: justify;
	/* 两端对齐，对标截图样式 */
}

.learn-more {
	display: inline-flex;
	align-items: center;
	color: var(--primary);
	font-weight: 500;
	text-decoration: none;
	border: 2px dashed #ccc;
	border-radius: 25px;
	padding: 10px 20px;
	transition: all 0.3s ease;
	align-self: flex-start;
	margin-top: auto;
	/* 确保按钮始终在卡片底部 */
	margin-bottom: 0;
	/* 确保按钮紧贴卡片底部 */
}

.learn-more:hover {
	background-color: var(--primary);
	color: white;
	border-color: var(--primary);
	transform: translateX(5px);
}

.data-section {
	padding: 40px 7.8%;
	background-color: #fff;
}

.content-dodo {
	padding: 0px 7.8%;
	background-color: #fff;
}

.text-container {
	display: flex;
	margin-bottom: 60px;
	gap: 40px;
}

.text-left {
	flex: 1;
}

.text-left h2 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a3a47;
	border-left: 5px solid #2196F3;
	padding-left: 20px;
}

.text-right {
	flex: 2;
}

.text-right p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 20px;
}

.image-container {
	width: 100%;
	border-radius: 0px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s;
}

.image-container:hover img {
	transform: scale(1.03);
}

/* 响应式设计 */
@media (max-width: 992px) {
	.text-container {
		flex-direction: column;
		gap: 30px;
	}

	.text-left h2 {
		font-size: 2.2rem;
		padding-left: 15px;
	}

	.text-right p {
		font-size: 1.1rem;
	}
}

@media (max-width: 576px) {
	.content-section {
		padding: 30px 5% 0px;
	}

	.data-section {
		padding: 0px 5% 0px;
	}

	.content-dodo {
		padding: 0px 5% 30px;
	}

	/* 公司介绍区块小屏幕样式 */
	.company-intro {
		padding: 40px 0;
	}



	.intro-paragraphs p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.intro-content {
		gap: 30px;
	}

	/* 产品与服务区块小屏幕样式 */
	.products-services {
		padding: 40px 0;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.product-card {
		padding: 25px 20px;
	}

	.product-card h3 {
		font-size: 1.2rem;
	}

	.product-card p {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

.text-left h2 {
	font-size: 1.8rem;
}

.text-right p {
	font-size: 1rem;
}


/* 首页产品展示字体居中 */
.home-title h2 {
	text-align: center;
	font-size: 18px;
	line-height: 60px;
	color: #333;
	font-weight: 500;
}


.home-title h3 {
	text-align: center;
	margin-top: 10px;
	font-size: 16px;
	line-height: 21px;
	color: #666;
	font-weight: 400;
}


@media (max-width: 768px) {
	.home-title h2 {
		font-size: 20px;
		line-height: 30px;
	}

	/* 公司介绍区块移动端样式 */
	.company-intro {
		padding: 60px 0;
	}

	.company-intro .container {
		padding: 0 5%;
	}

	.intro-content {
		flex-direction: column;
		gap: 40px;
	}



	.intro-paragraphs p {
		font-size: 1rem;
		text-align: left;
		margin-bottom: 15px;
	}

	/* 产品与服务区块移动端样式 */
	.products-services {
		padding: 60px 0;
	}

	.products-services .container {
		padding: 0 5%;
	}

	.section-header h2 {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.products-grid {
		flex-direction: column;
		gap: 25px;
	}

	.product-card {
		padding: 30px 25px;
	}

	.product-card h3 {
		font-size: 1.3rem;
		margin-bottom: 15px;
	}

	.product-card p {
		font-size: 0.95rem;
		margin-bottom: 20px;
	}

}




.index-title-left h2 {
	font-size: 35px;
	line-height: 10px;
	color: #002395;
	font-weight: 500;
}


@media (max-width:768px) {
	.index-title-left h2 {
		font-size: 25px;
		line-height: 30px;
		color: #002395;
		font-weight: 500;
	}
}



a.odw {
	text-decoration: none;
}

/* 首页产品展示列表 */
:root {
	--primary-color: #4361ee;
	--text-color: #333;
	--bg-color: #f8f9fa;
}


.section-header {
	text-align: left;
	margin-bottom: 40px;
}

.category-item a {
	text-decoration: none;
}

/* Swiper容器样式 */
.swiper {
	width: 100%;
	height: 400px;
	margin-bottom: 20px;
	overflow: hidden;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

@media (max-width:768px) {
	.swiper {
		width: 100%;
		height: auto;
		margin-bottom: 0px;
		overflow: hidden;
		/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	}
}


/* 产品卡片样式 */
.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
	border: 1px solid rgb(224, 224, 224)
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
	height: 60%;
	margin: 0 auto;
	overflow: hidden;
}

.product-image img {
	width: 289px;
	height: 193px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

@media (max-width:768px) {
	.product-image img {
		width: 100%;
		height: auto;
	}
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-info {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

@media (max-width:768px) {
	.product-info {
		padding: 10px;
	}
}

.product-title {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: var(--text-color);
	margin-bottom: 10px;
}



.product-link {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	text-align: center;
	width: fit-content;
}

.product-link:hover {
	background-color: #2f45c2;
	transform: translateY(-2px);
}

/* 导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
	color: white;
	background: rgba(0, 0, 0, 0.6);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 24px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--primary-color);
}

/* 分页器样式 */
.swiper-pagination-bullet {
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 1;
	width: 12px;
	height: 12px;
	margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
	transform: scale(1.2);
}











/* 产品分类样式 */
.categories-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 0px;
}

.category-item {
	flex: 0 0 calc(25% - 20px);
	/* 4列布局 */
	text-align: center;
	background: #f9f9f9;
	border-radius: 10px;
	padding: 20px 15px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.category-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon img {
	max-width: 60px;
	height: auto;
	margin-bottom: 15px;
}

.category-item h3 {
	font-size: 16px;
	color: #333;
	margin: 0;
}

/* 响应式布局 */
@media (max-width: 768px) {
	.category-item {
		flex: 0 0 calc(50% - 20px);
		/* 2列布局 */
	}
}

@media (max-width: 480px) {
	.category-item {
		/* 1列布局示例：flex: 0 0 100%; */
		flex: 0 0 calc(50% - 20px);
		/* 2列布局 */
	}
}



.content-index {
	padding: 0px 8%;
	background-color: #fff;
}







/* 首页关于我们公司介绍 */

/* 公司介绍区块 */
.about-section {
	padding: 80px 7.8%;
	background-color: #fff;
}

@media (max-width:768px) {
	.about-section {
		padding: 8px 4% 58px;
		background-color: #fff;
	}
}


.section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	font-size: 30px;
	line-height: 60px;
	color: #333;
	font-weight: 500;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 22px;
		line-height: 30px;
	}
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: #c2c2c2;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-text {
	flex: 1;
}

.about-text h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #333;
}

@media (max-width: 768px) {
	.about-text h3 {
		font-size: 18px;
	}
}

.about-text p {
	margin-bottom: 15px;
	line-height: 1.8;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.stat-item {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.stat-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1E9FFF;
	margin-bottom: 5px;
}

.stat-label {
	color: #666;
	font-size: 0.9rem;
}

.about-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.about-image img:hover {
	transform: scale(1.03);
}

/* 响应式设计 */
@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}

	.hero h1 {
		font-size: 2.8rem;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		display: none;
		/* 移动端转为汉堡菜单 */
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.stats {
		grid-template-columns: repeat(2, 1fr);
	}
}








/* 首页横幅 */
.img-section {
	display: flex;
	justify-content: center;
	/* 水平居中 */
	align-items: center;
	/* 垂直居中 */
	height: 500px;
	width: 100%;
	overflow: hidden;
}


.indexa {
	width: 100%;
	margin: 0 auto;
	/* height: calc(50vh); */
	margin-top: 0px;
	position: relative;
	overflow: hidden;
}

@media (max-width:768px) {

	.indexa {
		width: 100%;
		margin: 0 auto;
		height: auto;
		margin-top: 0px;
		position: relative;
		overflow: hidden;
	}
}



.indexa img {
	width: 100%;
	/* 确保宽度撑满 */
	min-height: 100%;
	/* 确保高度撑满 */
	flex-shrink: 0;
	/* 防止缩小 */
}

@media (max-width:768px) {
	.img-section {
		display: none;
	}
}







/* 关于我们banner */
.banner-section {
	display: flex;
	justify-content: center;
	/* 水平居中 */
	align-items: center;
	/* 垂直居中 */
	/* height: 500px; */
	width: 100%;
	overflow: hidden;
	margin-top: 100px;
}

@media (max-width:768px) {
	.banner-section {
		height: auto;
		margin-top: 100px;
	}
}


/* 面包屑导航 */

.breadcrumb {
	padding: 10px 7.8%;
	background-color: #f8f9fa;
	border-bottom: 1px solid #eee;
}

.breadcrumb-item a {
	text-decoration: none;
	color: inherit;
}

.breadcrumb-container {
	display: flex;
	align-items: center;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
	content: '>';
	margin: 0 10px;
	color: #6c757d;
}





/* 团队部分 */
.team-section {
	padding: 0px 7.8% 80px;
	background-color: #fff;
	margin-bottom: 80px;
}

.team-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.team-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
	height: 300px;
	overflow: hidden;
}

.team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.team-card:hover .team-img img {
	transform: scale(1.1);
}

.team-info {
	padding: 20px;
	text-align: center;
}

.team-name {
	font-size: 20px;
	margin-bottom: 5px;
}

.team-position {
	color: var(--primary);
	margin-bottom: 15px;
	font-weight: 500;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #e9ecef;
	color: var(--dark);
	transition: all 0.3s;
}

.social-link:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
}









/* 产品列表页 */

.pro4-section {
	/* margin-top: 200px; */
	padding: 50px 7.8% 10px;
	background-color: #fff;
	display: none;
}

.pro3-title h2 {
	text-align: left;
	font-size: 30px;
	line-height: 60px;
	color: #333;
	font-size: 700;
}

@media (max-width: 768px) {
	.pro3-title h2 {
		font-size: 18px;
		line-height: 30px;
	}

	.pro4-section {
		padding: 30px 5% 0px;
		background-color: #fff;
		display: block;
		s
	}
}

.pro3-title h3 {
	text-align: left;
	margin-top: 10px;
	font-size: 16px;
	line-height: 21px;
	color: #666;
	font-weight: 400;
}

.newpro-section {
	padding: 0px 7.8%;
	background-color: #fff;
}

@media (max-width: 768px) {
	.newpro-section {
		padding: 20px 2%;
		background-color: #fff;
	}
}
















/* 搜索框 */
.search-section {

	background-color: #fff;
	width: 100%;
	max-width: 100%;
	padding: 50px 7.8% 0px;
	text-align: center;
}

.search-title {
	font-size: 2.2rem;
	margin-bottom: 20px;
	color: #2c3e50;
}

.search-container {
	position: relative;
	display: flex;
	height: auto;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 30px;
	overflow: hidden;
}

.search-input {
	flex: 1;
	border: none;
	padding: 0 25px;
	font-size: 18px;
	outline: none;
	transition: all 0.3s ease;
	border: 1px solid #dee2e6;
}

.search-input::placeholder {
	color: #aaa;
}

.search-button {
	width: 120px;
	background: linear-gradient(to right, #2196f3cc, #3f51b5b8);
	border: none;
	color: white;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.3s ease;
}

.search-button:hover {
	background: linear-gradient(to right, #2196F3, #3F51B5);

}

.search-icon {
	margin-right: 8px;
}




/* 新品发布区块 */

.new-products {
	padding: 20px 7.8% 80px;
	background-color: #fff;
}


.products-flex {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}



.product-item {
	width: 25%;
	padding: 40px 15px;
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

@media (max-width:768px) {
	.new-products {

		padding: 20px 2% 60px;
		background-color: #fff;
	}

	.product-item {
		width: 100%;
		padding: 20px 15px;
		position: relative;
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
}



.product-name {
	font-weight: 600;
	font-size: 18px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.product-desc {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	flex-grow: 1;
}








/* 产品内页详情 */

/* 产品内容区域 */
.product-container {
	/* max-width: 1300px; */
	padding: 0px 7.8%;
	margin: 40px auto;
	/* padding: 0 20px; */
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

@media (max-width:768px) {
	.product-container {
		padding: 0 20px;
	}
}

/* 产品图片区域 - 使用Swiper修改 */
.pic-images {
	flex: 0.45;
	min-width: 300px;
	position: relative;
}

@media (max-width:768px) {
	.pic-images {
		width: 100%;
	}
}

.pic-images .swiper {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.pic-images .swiper-slide {
	/* background: linear-gradient(135deg, #f5f7fa, #e4e7eb); */
	display: flex;
	align-items: center;
	justify-content: center;
	height: 400px;
}

@media (max-width:768px) {
	.pic-images .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		height: auto;
	}
}

.pic-images .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s;
}

/* .pic-images .swiper-slide:hover img {
	transform: scale(1.03);
} */

.swiper-thumbs {
	margin-top: 20px;
	height: 100px;
}

.pic-images .swiper-thumbs .swiper-slide {
	height: 80px;
	width: 80px;
	border-radius: 8px;
	background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s;
	opacity: 0.6;
}

.swiper-thumbs .swiper-slide:hover {
	border-color: #1a73e8;
}

.swiper-thumbs .swiper-slide-thumb-active {
	border-color: #1a73e8;
	box-shadow: 0 0 10px rgba(26, 115, 232, 0.3);
	opacity: 1;
}

.swiper-thumbs .swiper-slide img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

/* 产品详情区域 */
.product-details {
	flex: 0.55;
	min-width: 300px;
}

.product-title2 {
	padding-bottom: 30px;
	font-size: 24px;
	color: #333;
	line-height: 37px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.product-description {
	background-color: #fff;
	padding: 5px 25px 5px 0px;
	margin-bottom: 25px;
	color: #666;
	font-size: 0.95rem;
	flex-grow: 1;
}

@media (max-width:768px) {
	.product-description {
		background-color: #fff;
		padding: 0px;
		margin-bottom: 25px;
		color: #666;
		font-size: 0.95rem;
		flex-grow: 1;
	}
}



.description-title {
	font-size: 20px;
	color: #1a325c;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #eaeaea;
	font-weight: 600;
}

.description-content {
	color: #555;
	margin-bottom: 15px;
	line-height: 1.8;
}

.material-section {
	background-color: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.material-title {
	font-size: 20px;
	color: #1a325c;
	margin-bottom: 15px;
	font-weight: 600;
}

.material-content {
	color: #555;
	line-height: 1.8;
}

.usp-badge {
	display: inline-block;
	background-color: #e8f0fe;
	color: #1a73e8;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
}

/* 按钮区域 */
.action-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn {
	padding: 14px 30px;
	font-size: 16px;
	cursor: pointer;
	/* 	transition: all 0.3s; */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

}

.btn-primary {
	width: 196px;
	height: 61px;
	border: 1px solid #999999;
	border-radius: 40px;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
	color: #333;
	font-weight: 400;
	background-color: #fff;
}

.btn-primary:hover {
	background-color: #94979c;
	color: #fff;
}

.btn-primary .fa-file-download {
	color: #1a3a47;
}

.btn-primary:hover .fa-file-download {
	color: #fff;
}


.btn-secondary {
	width: 196px;
	height: 61px;
	border: 1px solid #999999;
	border-radius: 40px;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
	color: #333;
	font-weight: 400;
	background-color: #fff;
}

.btn-secondary:hover {
	background-color: #94979c;
	color: #fff;
}

.btn-secondary .fa-comments {
	color: #1a3a47;
}

.btn-secondary:hover .fa-comments {
	color: #fff;
}


/* 响应式设计 */
@media (max-width: 768px) {
	.navbar {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.product-container {
		flex-direction: column;
	}

	.action-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.swiper-slide {
		height: auto;
	}

	.swiper-thumbs {
		height: 80px;
	}

	.swiper-thumbs .swiper-slide {
		height: 60px;
		width: 60px;
	}
}



/* Swiper导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	color: #1a73e8;
	transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px;
	font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: #1a73e8;
	color: white;
}








/* 产品内页详情描述 */

.hdm a {
	color: #333;
	text-decoration: none;
}

.hdm a:hover {
	color: #BB272E;
	text-decoration: none;
}

.hdm ul,
li {
	list-style: none;
}

.hdm {
	width: 100%;
	float: left;
	margin-top: 0px;

}


.hdm ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.hdm ul li {
	width: auto;
	margin-left: 0px;
	margin-right: 54px;
	padding-bottom: 20px;
	position: relative;
	font-size: 16px;
}

@media (max-width:768px) {
	.hdm ul li {
		display: flex;
		padding-bottom: 8px;
		margin-bottom: 8px;
		margin-left: 0px;
		margin-right: 50px;
	}
}

.hdm ul li i {
	width: 100%;
	height: 4px;
	background-color: #bb272e;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
}

.hdm ul li:hover i {
	opacity: 1;
}

.hdm ul li.cur i {
	opacity: 1;
}

.hdm ul li.cur {
	font-weight: bold;
}



.dingw2 {
	width: 100%;
	float: left;
	margin-top: -130px;
}



.hdtex {
	width: 100%;
	float: left;
	margin-top: 20px;
	background: #ffffff;
	/* border-radius: 24px; */
	/* box-shadow: 0px 30px 60px 0px rgba(57, 57, 57, 0.10); */
	padding: 40px 80px 80px 0px;
}

@media (max-width:768px) {
	.hdtex {
		padding: 0px;
	}
}




.xqtit {
	width: 100%;
	float: left;

	font-size: 20px;
	line-height: 37px;
	font-weight: bold;
}





.other-section {
	padding: 40px 0%;
	background-color: #fff;
}

@media (max-width: 576px) {
	.other-section {
		padding: 20px 5%;
	}
}

.pos2 {

	padding: 40px 7.8%;
	position: fixed;
	background: #FFF;
	top: 65px;
	margin-top: 0px;
	left: 0;
	padding-top: 20px;
	z-index: 9999
}


@media (min-width: 1000px) {
	.pos2 {
		position: fixed;
		background: #FFF;
		top: 70px;
		margin-top: 0px;
		left: 0;
		padding-top: 20px;
		z-index: 9999;
	}
}


.dz02 {
	width: 100%;
	min-height: 180px;
	background-color: #fff;
	margin-top: 100px;
	margin-bottom: 60px;
}








/* 新闻列表 */
.news-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.news-container a {
	text-decoration: none;
}

.news-item {
	display: flex;
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
	flex-direction: row;
	flex-wrap: wrap;
}

.news-img {
	width: 300px;
	height: 200px;
	object-fit: cover;
	border-radius: 4px;
	margin-right: 55px;
}

.news-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	/* 红色标题 */
	margin-bottom: 5px;
}

.news-title.secondary {
	color: #333;
	/* 黑色标题 */
}

.news-date {
	font-size: 14px;
	color: #888;
	margin: 10px 0;
}

.detail-btn {
	display: inline-block;
	width: 100px;
	padding: 8px 0;
	background: #fff;
	border: 1px solid #333;
	border-radius: 4px;
	color: #333;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
}

.detail-btn:hover {
	background: #c00;
	color: white;
}






/* 联系我们 */
.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* 页眉样式 */
.contact-header {
	text-align: center;
	margin-bottom: 50px;
}

.contact-header h1 {
	font-size: 2.8rem;
	color: #2c3e50;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.contact-header h1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: #3498db;
}

.contact-header p {
	font-size: 1.2rem;
	color: #7f8c8d;
	margin-top: 20px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* 联系信息块样式 */
.contact-information {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.info-card {
	flex: 1;
	min-width: 300px;
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
	font-size: 2.5rem;
	color: #3498db;
	margin-bottom: 20px;
}

.info-card h3 {
	color: #2c3e50;
	margin-bottom: 15px;
}

.info-text {
	color: #7f8c8d;
	margin-bottom: 15px;
}

.info-text a {
	color: #3498db;
	text-decoration: none;
	transition: color 0.3s;
}

.info-text a:hover {
	color: #2980b9;
}

/* 联系表单样式 */
.contact-section {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	margin-bottom: 40px;
}

.contact-form {
	flex: 1;
	min-width: 300px;
}

.contact-form h2 {
	color: #2c3e50;
	margin-bottom: 25px;
	font-size: 1.8rem;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #2c3e50;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-control:focus {
	border-color: #3498db;
	outline: none;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	background: #3498db;
	color: white;
	border: none;
	padding: 14px 40px;
	font-size: 1.1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
	background: #2980b9;
	transform: translateY(-2px);
}





/* 响应式调整 */
@media (max-width: 768px) {
	.contact-header h1 {
		font-size: 2.2rem;
	}

	.contact-section,
	.contact-info {
		flex-direction: column;
		gap: 20px;
	}

	.info-card {
		min-width: 100%;
	}
}








/* ========== 页脚样式 ========== */
.site-footer {
	background-color: #05214b;
	color: #fff;
	padding: 60px 0 0;
	position: relative;
	z-index: 10;
}

.footer-container {
	/* max-width: 1200px; */
	margin: 0 auto;
	padding: 0 7.8%;
	display: flex;
	align-items: flex-start;
	gap: 100px;
}

.footer-logo img {
	width: 180px;
}

.footer-links-container {
	display: flex;
	gap: 60px;
	flex: 1;
}

.footer-section {
	flex: 1;
	min-width: 200px;
}

.footer-heading {
	font-size: 18px;
	line-height: 21px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.footer-title {
	flex: 1;
}

.footer-toggle {
	font-size: 18px;
	font-weight: bold;
	width: 20px;
	text-align: center;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 16px;
	line-height: 1.4;
	display: block;
}

.footer-links a:hover {
	color: #ccc;
}

.contact-details {
	list-style: none;
}

.contact-details li {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	color: #c4d1d9;
	font-size: 0.95rem;
	line-height: 1.6;
}

.contact-details i {
	color: #2196F3;
	margin-right: 12px;
	min-width: 20px;
	font-size: 1rem;
	margin-top: 3px;
}

.footer-divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 40px 0 0;
}

.copyright-section {
	background-color: #05214b;
	padding: 20px 0;
}

.copyright-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 7.8%;
	text-align: center;
}

.copyright-section p {
	font-size: 14px;
	color: #ccc;
	margin: 0;
}



.footer-links-bottom {
	display: flex;
	gap: 20px;
}

.footer-links-bottom a {
	color: #8fa4b1;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-links-bottom a:hover {
	color: #2196F3;
}

/* ========== 响应式设计 ========== */
@media (max-width: 992px) {
	.footer-container {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.footer-links-container {
		justify-content: center;
		gap: 40px;
	}

	.footer-logo h2 {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.footer-links-container {
		width: 100%;
		flex-direction: column;
		gap: 0;
	}

	.footer-section {
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 20px 0;
	}

	.footer-section:last-child {
		border-bottom: none;
	}

	.footer-heading {
		margin-bottom: 0;
		padding: 0;
	}

	.footer-links {
		display: none;
		margin-top: 15px;
	}

	.footer-links.show {
		display: block;
	}

	.footer-container {
		padding: 0 5%;
	}

	.copyright-container {
		padding: 0 5%;
	}
}

@media (max-width: 576px) {
	.footer-logo h2 {
		font-size: 1.8rem;
	}

	.footer-heading {
		font-size: 15px;
	}

	.footer-links a {
		font-size: 13px;
	}

	.footer-section {
		padding: 15px 0;
	}

	.footer-toggle {
		font-size: 16px;
	}
}



/* 表格样式 */



.headtable table {
	table-layout: fixed !important;
	width: 100% !important;
	border-collapse: collapse;
	border: none;
	font-size: 14px;
}


.headtable table tr {
	background: #F4F4F4;
}


.headtable table td {
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
	padding: 10px;
}


.content table tr:first-child th:nth-child(1),
.content table tr:first-child td:nth-child(1) {
	width: 38%;
}


.content table th {
	background: #0090D7;
	font-weight: normal;
	line-height: 30px;
	font-size: 14px;
	color: #ddd;
}

/* .content table tr:nth-child(odd) {
	background: #F4F4F4;
} */

/* .content table tr:first-child {
	background: #F4F4F4;
} */



.content table td,
table th {
	border: 1px solid #ddd;
}

.content table {
	table-layout: fixed !important;
	width: 100% !important;
	border-collapse: collapse;
	border: none;
	font-size: 14px;
}

.content td {
	width: 1px;
	white-space: nowrap;
	/* 自适应宽度*/
	word-break: keep-all;
	/* 避免长单词截断，保持全部 */
	border: solid #cccccc 1px;

	white-space: pre-line;
	word-break: break-all !important;
	word-wrap: break-word !important;
	display: table-cell;
	vertical-align: middle !important;
	white-space: normal !important;
	height: auto;
	vertical-align: text-top;
	padding: 10px;
	display: table-cell;
}

.content th {
	width: 1px;
	white-space: nowrap;
	/* 自适应宽度*/
	word-break: keep-all;
	/* 避免长单词截断，保持全部 */
	border: solid #676767 1px;
	text-align: center;
	white-space: pre-line;
	word-break: break-all !important;
	word-wrap: break-word !important;
	display: table-cell;
	vertical-align: middle !important;
	white-space: normal !important;
	height: auto;
	vertical-align: text-top;
	padding: 10px;
	display: table-cell;
}

@media (max-width:768px) {
	.container img {
		width: 100%;
	}
}
















/* 产品列表分类 */
/* 全局样式重置 */


:root {
	--primary-blue: #1a56db;
	--dark-blue: #0e3fa9;
	--light-bg: #f7f9fc;
	--text-dark: #1e293b;
	--text-light: #64748b;
	--border-color: #e2e8f0;
	--card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {

	line-height: 1.6;
}

/* 顶部导航样式 */
.top-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	padding: 12px 7.8%;
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
	position: sticky;
	top: 0;
	z-index: 100;
}


.top-navigation::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 7.8%;
	right: 7.8%;
	height: 1px;
	background-color: #e0e0e0;
}

@media (max-width: 767px) {
	.top-navigation {
		flex-direction: column;
		gap: 15px;
		position: static;
		/* 取消 sticky */
		top: auto;
		/* 清除定位值 */
	}

	.top-navigation::after {
		display: none;
	}

}







.nav-options {
	display: flex;
	gap: 40px;
}

.nav-option {
	position: relative;
	font-weight: 400;
	color: #605f5f;
	cursor: pointer;
	padding: 6px 0;
	font-size: 16px;
	transition: color 0.3s;
}

.nav-option:hover,
.nav-option.active {
	color: #1a3a47;
}

/*        .nav-option.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #009144;
        } */

.search-cont {
	position: relative;
	width: 250px;
}

.search-box {
	width: 100%;
	padding: 12px 15px;
	padding-left: 40px;
	border-bottom: 1px solid var(--border-color);
	border-top: none;
	border-right: none;
	border-left: none;
	font-size: 14px;
	transition: all 0.3s;
}

.search-box:focus {
	outline: none;
	border-color: #00914447;

}

.search-fa {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-light);
}

/* 内容区域样式 */
.content-container {
	max-width: 1400px;
	margin: 40px auto;
	padding: 0 5%;
}

/* 内容卡片通用样式 */
.item-section {
	display: none;
	animation: fadeIn 0.5s;
}

.item-section.active {
	display: block;
	min-height: 600px;
}

@media (max-width:768px) {
	.item-section.active {
		display: block;
		min-height: auto;
	}

}

.s-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 28px;
	color: var(--text-dark);
	position: relative;
	padding-bottom: 12px;
}

.s-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--primary-blue);
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
}

.card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--card-shadow);
	transition: all 0.3s;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
	padding: 20px 20px 0;
}

.card-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 22px;
	margin-bottom: 15px;
}

.card-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.card-content {
	padding: 0 20px 20px;
	color: var(--text-light);
	line-height: 1.7;
}






/* 响应式设计 */
@media (max-width: 1024px) {
	.analytics-grid {
		grid-template-columns: 1fr;
	}

	.knowledge-grid {
		grid-template-columns: 1fr;
	}

	.company-overview {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {



	.nav-options {
		display: flex;
		gap: 0px;
		flex-direction: column;
		align-items: flex-start;
	}

	.ok-options {
		gap: 20px;
		flex-wrap: wrap;
	}

	.search-cont {
		width: 100%;
	}
}




/* resource */

.resource-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	padding: 12px 7.8%;

	position: sticky;
	top: 0;
	z-index: 100;
}

.resource-navigation::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 7.8%;
	right: 7.8%;
	height: 1px;
	background-color: #e0e0e0;
}

@media (max-width: 767px) {
	.resource-navigation {
		flex-direction: column;
		gap: 15px;
		position: static;
		/* 取消 sticky */
		top: auto;
		/* 清除定位值 */
	}

	.resource-navigation::after {
		display: none;
	}
}





.res-options {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}


@media (max-width:768px) {
	.res-options {
		display: flex;
		gap: 10px;
		flex-direction: column;
		flex-wrap: wrap;
	}
}


.ok-option a {
	position: relative;
	font-weight: 400;
	color: #605f5f;
	cursor: pointer;
	padding: 6px 0;
	font-size: 16px;
	transition: color 0.3s;
}



.ok-option a:hover,
.ok-option.active a {
	color: #1a3a47;
}



/* service */
.service-navigation {
	display: none;
}

@media (max-width: 768px) {
	.service-navigation {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		background: white;
		padding: 12px 5%;
		/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
		/* position: sticky;
		top: 0;
		z-index: 100; */
		display: block;
	}
}

/* .service-navigation::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 7.8%;
	right: 7.8%;
	height: 1px;
	background-color: #e0e0e0;
} */


@media (max-width: 767px) {
	.service-navigation {
		margin-bottom: 0px;
	}

}






/* 关于我们 */
.flex-section {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 7.8%;
	background-color: #fff;
}

@media (max-width: 576px) {
	.flex-section {
		padding: 20px 5% 20px;
	}
}

.item-section .container1 {
	flex: 1
}

.item-section .container2 {
	flex: 3
}



.item-section .container1 p {
	margin: 0px 40px 0px 0px;
}



.item-section .container2 {
	color: #666;
}

.item-section .container2 img {
	max-width: 100%;
}

/* 手机端样式 - 当屏幕宽度小于768px时应用 */
@media (max-width: 767px) {
	.flex-section {
		flex-direction: column;
		/* 改为垂直排列 */
	}

	.item-section .container1,
	.item-section .container2 {
		flex: 1 0 100%;
		/* 占据100%宽度，强制换行 */
		width: 100%;
		/* 确保占据全部宽度 */
	}


	.item-section .container1 p {
		margin: auto;
	}

}

.container1 h3 {
	font-size: 1em;
	letter-spacing: 2px;
	color: #1a3a47;
	--fontSize: 12;
	--minFontSize: 12px;
	line-height: 1.5;
	margin-bottom: 15px;
}


/* 关于我们 一行三个*/
.flex-conmm {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
	padding: 80px 7.8%;
	background-color: #f2f2f2;
}

@media (max-width: 576px) {
	.flex-conmm {
		padding: 80px 5% 50px;
	}


}

.cardcom {
	background-color: white;
	border-radius: 8px;
	/* overflow: hidden; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 30px 0px;
	min-height: 100px;
	transition: transform 0.3s ease;
	flex: 1 1 calc(33.333% - 50px);
	/* 三列布局 */
}

@media (max-width: 576px) {
	.cardcom {
		flex: 1 1 100%;
		/* 移动端一行一个 */
	}


}


.pichoa {
	position: relative;
	top: -50px;

}

.pichoa img {
	width: 80px;
	height: 80px;
}

.cardcom .title {
	padding: 0px 30px;
	font-size: 1rem;
	font-weight: 400;
	color: #34495e;
	/* 深灰色文字 */
	position: relative;
	top: -40px;
}






/* 联系我们 */

.container-contact {
	padding: 40px 7.8%;
	background-color: #fff;
}

@media (max-width: 768px) {
	.container-contact {
		padding: 20px 5% 0px;
	}

	.container-maim {
		padding: 3px;
	}
}

.container-maim {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	width: 90%;
	max-width: 1000px;
	padding: 30px;
	position: relative;
	margin: 0 auto;
}




.container-contact h1 {
	color: #333;
	margin-bottom: 10px;
	font-size: 24px;
}

.container-maim .subtitle {
	color: #666;
	margin-bottom: 25px;
	font-size: 14px;
}

.form-group-ok {
	margin-bottom: 20px;
	position: relative;
}

.form-group-ok i {
	position: absolute;
	left: 10px;
	top: 38px;
	color: #9e9e9e;
}

.container-contact input,
textarea {
	width: 100%;
	padding: 10px 10px 10px 35px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

.container-contact textarea {
	height: 120px;
	padding-left: 10px;
}

.required-ok:after {
	content: "*";
	color: #e53935;
	margin-left: 4px;
}

.mes-submit {
	background-color: #1a3a47;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	width: 100%;
	font-weight: bold;
	transition: background-color 0.3s;
}

.mes-submit:hover {
	background-color: #295161;
}

.mes-call {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: #1a3a47;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}

.mes-call:hover {
	background-color: #1a3a47;
}

.fline-height .line {
	height: 1px;
	background-color: #1a3a47;
	margin: 20px 0 0px;
}




/* 首页多标签 */


.index-container {
	padding: 40px 7.8% 80px;
	background-color: #fff;
	margin: 0 auto;
}


@media (max-width:768px) {
	.index-container {
		padding: 0px 7.8% 80px;

	}
}


.tabs {
	display: flex;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	/* margin-bottom: 30px; */
	position: relative;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
	display: none;
}

.tab {
	padding: 15px 25px;
	cursor: pointer;
	font-size: 16px;
	/* white-space: nowrap; */
	color: #333;
	transition: all 0.3s ease;
	border-bottom: 1px solid #fff;
	width: 33.33333%;
	text-align: center;
}

.tab.active {
	color: #009144;
	border-bottom: 1px solid #00914491;
	background: #4caf5021;

}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	border: 1px solid #a7c5af87;
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.13);
	padding: 40px;
}

.main-con {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.main-image {
	flex: 1;

	padding-right: 30px;
}

.main-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.main-text {
	flex: 1;
	min-width: 300px;
}

.main-text h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #009144;
	font-weight: 400;
	line-height: 34px;
}

.main-text p {
	font-size: 16px;
	margin-bottom: 20px;
}

.explore-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #34a853;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
	font-weight: 400;
}

.explore-btn:hover {
	background-color: #009144;
}

.modules {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
	justify-content: center;
}

.module {
	flex: 1;
	min-width: 300px;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	transition: box-shadow 0.3s;
}

.module:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.module h3 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #009144;
	font-weight: 400;
}

.module h3 a {
	font-size: 18px;
	margin-bottom: 15px;
	color: #009144;
	font-weight: 400;
}

.module p {
	font-size: 14px;
	color: #666;
}

/* 移动端样式 */
@media (max-width: 768px) {
	.tabs {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		/* padding-bottom: 10px; */
		border-bottom: 1px solid #ddd;
	}

	.tab {
		scroll-snap-align: start;
		padding: 12px 20px;
		width: 50%;
	}

	.tab-content.active {
		display: block;
		border: none;
		box-shadow: none;
		padding: 0px;
	}


	.main-con {
		flex-direction: column;
		margin-top: 20px;
	}

	.main-image {
		padding-right: 0;
		margin-bottom: 20px;
		width: 100%;
	}

	.tab-content {
		width: 100%;
		overflow: hidden;
	}

	.tab-content-container {
		display: flex;
		transition: transform 0.3s ease;
	}

	.tab-pane {
		min-width: 100%;
	}
}







/* resources */
.news-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.conhao {
	border-bottom: 1px solid #eee;
}

.koko-item {
	background: white;
	/* border-radius: 8px; */
	overflow: hidden;
	/* border-bottom: 1px solid #eee; */
	display: flex;
	transition: transform 0.3s ease;
}


.meta-info {
	width: 15%;
	padding: 20px 20px 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 8px;
	/* border-right: 1px solid #eee; */
}

.meta-item {
	font-size: 14px;
	line-height: 1.4;
	color: #333;
}

.mobile-meta {
	font-size: 14px;
	line-height: 1.4;
	color: #333;
}


.article {
	color: #000;
	font-weight: bold;
}

.news-list .content {
	width: 60%;
	padding: 20px;
}

.news-list .title {
	font-size: 18px;
	margin-bottom: 12px;
	line-height: 1.4;
	color: #333;
	font-weight: 500;
}


@media (max-width:768px) {
	.news-list .title {
		font-size: 16px;
		margin-bottom: 0px;
		line-height: 1.4;
		color: #333;
		font-weight: 500;
	}
}

.abstract {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.ipic-container {
	width: 25%;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-image {
	width: 100%;
	height: 100%;

}

.news-image img {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 14px;
	text-align: center;
	padding: 10px;
}

/* 手机端样式 */
@media (max-width: 768px) {
	.meta-info {
		display: none;
	}

	.news-list .content {
		width: 70%;
		padding: 15px;
	}

	.abstract {
		display: none;
	}

	.mobile-meta {
		display: flex;
		padding: 5px 5px 15px 10px;
		font-size: 12px;
	}

	.mobile-article {
		color: #000;
		/* font-weight: bold; */
	}

	.ipic-container {
		width: 30%;
		padding: 15px;
	}

	.news-image {
		height: 120px;
		font-size: 12px;
	}

	.title {
		font-size: 16px;
	}
}

/* 非常小的手机 */
@media (max-width: 480px) {
	.news-list .content {
		width: 65%;
		padding: 15px 5px 15px 10px;
	}

	.ipic-container {
		width: 35%;
	}

	.news-image {
		height: 100px;
	}
}

/* 电脑端显示，默认样式 */
.pc {
	display: block;
}

.mobile {
	display: none;
}

/* 手机端样式：屏幕宽度小于等于768px时 */
@media (max-width: 768px) {
	.pc {
		display: none;
	}

	.mobile {
		display: block;
	}
}









.container-advantage {
	padding: 0px 7.8%;
	margin: 0 auto;
}

.container-advantage p {
	color: #666;
}

/* 协航优势部分 - 扁平化设计 */
.overview-sector {
	background: #fff;
	padding: 20px 0;
}



.overview-sector h2 {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin: 0 0 35px 0;
	position: relative;
	display: inline-block;
}

/* .overview-sector h2::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #333f80;
} */

.overview-sector>.content-hao>p {
	color: #666;
	font-size: 16px;
	margin: 0 0 40px 0;
	line-height: 1.6;
}

/* 三个主要板块 - 优化后的Flexbox布局 */
.sectors {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.sector-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: #f8f9fa;
	border-radius: 12px;
	padding: 30px 25px;
	transition: all 0.3s ease;
}

.sector-item:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 图标和标题的头部区域 */
.sector-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sector-icon {
	width: 60px;
	height: 60px;
	border: 1px solid #333f80;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
	background: #fff;
}

.sector-icon .icon {
	width: 28px;
	height: 28px;
}

.sector-title {
	font-size: 15px;
	font-weight: 400;
	color: #3d3c3c;
	margin: 0;
	line-height: 1.3;
	flex: 1;
}

/* 描述文字部分 */
.sector-desc {
	flex: 1;
}

.sector-desc p {
	font-size: 14px;
	line-height: 2;
	color: #555;
	margin: 0;
	text-align: left;
}

.sector-desc u {
	text-decoration: underline;
	color: #3498db;
	font-weight: 500;
}

/* 响应式设计 - 移动端优化 */
@media (max-width: 768px) {
	.container-advantage {
		padding: 0 15px;
	}

	.overview-sector {
		padding: 20px 0;
	}

	.overview-sector h2 {
		font-size: 28px;
	}

	.sectors {
		flex-direction: column;
		gap: 20px;
	}

	.sector-item {
		padding: 25px 20px;
	}

	.sector-header {
		margin-bottom: 15px;
	}

	.sector-icon {
		width: 50px;
		height: 50px;
		margin-right: 12px;
	}

	.sector-icon .icon {
		width: 24px;
		height: 24px;
	}

	.sector-title {
		font-size: 15px;
	}

	.sector-desc p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.overview-sector h2 {
		font-size: 18px;
	}

	.overview-sector>.content-hao>p {
		font-size: 16px;
	}

	.sector-item {
		padding: 20px 15px;
	}

	.sector-icon {
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.sector-icon .icon {
		width: 20px;
		height: 20px;
	}

	.sector-title {
		font-size: 16px;
	}

	.sector-desc p {
		font-size: 14px;
	}
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
	.sectors {
		gap: 20px;
	}

	.sector-item {
		padding: 25px 20px;
	}

	.sector-icon {
		width: 55px;
		height: 55px;
	}

	.sector-icon .icon {
		width: 26px;
		height: 26px;
	}

	.sector-title {
		font-size: 15px;
	}

	.sector-desc p {
		font-size: 13px;
	}
}

/* 大屏幕优化 */
@media (min-width: 1200px) {
	.container-advantage {
		padding: 40px 7.8%;
	}

	.overview-sector {
		padding: 0px 0;
	}

	.overview-sector h2 {
		font-size: 16px;
		font-weight: 700;
	}

	.overview-sector img {
		max-width: 100%;
	}

	.sectors {
		gap: 40px;
	}

	.sector-item {
		padding: 40px 30px;
	}

	.sector-icon {
		width: 70px;
		height: 70px;
		margin-right: 20px;
	}

	.sector-icon .icon {
		width: 32px;
		height: 32px;
	}

	.sector-title {
		font-size: 15px;
	}

	.sector-desc p {
		font-size: 15px;
		line-height: 2;
	}
}

/* 页脚样式 - 对标截图设计 */
.foot {
	background: #2c3e50;
	padding: 40px 0;
	margin-top: 60px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	text-align: center;
}

/* 联系信息部分 */
.contact-info {
	margin-bottom: 20px;
}

.contact-info p {
	color: #bdc3c7;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.contact-info a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-info a:hover {
	color: #3498db;
	text-decoration: underline;
}

/* 版权信息部分 */
.copyright {
	margin-bottom: 30px;
}

.copyright p {
	color: #bdc3c7;
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

/* 政策链接和标语部分 */
.footer-link-ok {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.policy-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.policy-link {
	color: #bdc3c7;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.policy-link:hover {
	color: #3498db;
	text-decoration: underline;
}

.separator {
	color: #333f80;
	font-size: 14px;
}

.tagline p {
	color: #bdc3c7;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	/* font-style: italic; */
}

/* 响应式设计 */
@media (max-width: 768px) {
	.foot {
		padding: 30px 0;
	}

	.footer-content {
		padding: 0 20px;
	}

	.contact-info p {
		font-size: 13px;
		line-height: 1.8;
	}

	.copyright p {
		font-size: 12px;
	}

	.policy-link {
		font-size: 13px;
	}

	.tagline p {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.foot {
		padding: 25px 0;
	}

	.footer-content {
		padding: 0 15px;
	}

	.contact-info p {
		font-size: 14px;
	}

	.copyright p {
		font-size: 11px;
	}

	.policy-link {
		font-size: 14px;
	}

	.tagline p {
		font-size: 14px;
	}
}




.dhy_cg {
	padding-right: 55px;
}

.dhy_cg ul li {
	padding: 10px 0px;
	line-height: 35px;
	font-size: 16px;
	color: #464646;
	background: #f5f5f5;
	margin-bottom: 1px;
	text-align: center
}

.dhy_cg ul li a {
	font-size: 16px;
	color: #464646;
	/* display: inline-block; */
}

.dhy_cg ul li.hover {
	background: #3F51B5
}

.dhy_cg ul li.hover span {
	background: #8590d0
}

.dhy_cg ul li.hover a {
	color: #FFF;
	text-decoration: none
}

.dhy_cg ul li:hover {
	background: #3F51B5
}

.dhy_cg ul li:hover span {
	background: #8590d0
}

.dhy_cg ul li:hover a {
	color: #FFF;
	text-decoration: none
}

.dhy_cg ul li span {
	display: inline-block;
	width: 4%;
	float: left
}


@media screen and (min-width: 321px) and (max-width: 767px) {
	.dhy_cg {
		display: none
	}
}


.gu_right_t {
	border-bottom: 1px solid #666;
	overflow: hidden;
	width: 100%;
	margin-bottom: 30px;
}

.gu_current {
	padding: 6px 0px;
	font-size: 14px;
	color: #333;
	line-height: 28px;
}

.gu_right_t a {
	font-size: 14px;
	color: #333;
}



.service-content {
	max-width: 1000px;
	margin: 20px auto;
}

.service-content p {
	color: #666;
	font-size: 16px;
	text-align: justify;
}

@media (max-width: 768px) {
	.service-content {
		max-width: 100%;
		margin: 0 auto;
	}
}




.banner-with-text {
	position: relative;
}

.banner-with-text img {
	display: block;
	width: 100%;
	height: auto;
}

.banner-text {
	position: absolute;
	left: 0;
	right: 50;
	bottom: 52%;
	text-align: center;
	color: #fff;
	font-weight: 500;
	padding: 0 10vw;
	font-size: clamp(18px, 4vw, 30px);
	line-height: 1.3;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.banner-text-sub {
	position: absolute;
	left: 0;
	right: 50;
	bottom: calc(52% - 1.5em);
	text-align: center;
	color: #fff;
	font-weight: 500;
	padding: 0 10vw;
	font-size: clamp(14px, 3vw, 24px);
	line-height: 1.3;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}








.overview-deidmr h2 {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin: 0 0 15px 0;
	position: relative;
	display: inline-block;
}

/* .overview-deidmr h2::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 50px;
	height: 0.8px !important;
	background: #ff5722;
} */



.overview-sector .line {
	display: block;
	width: 50px;
	height: 0;
	border-bottom: 2px solid #333f80;
	margin-top: 6px;
}


.overview-deidmr .line {
	display: block;
	width: 50px;
	height: 0;
	border-bottom: 1px solid #ff5722;
	margin-top: 6px;
}