﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0 auto;
	font-size: 14px;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	background: #fff;
	text-align: justify;
	color: #010000;
	position: relative;
	line-height: 1.5;
}

h1,
h2,
h3 {
	font-weight: 500;
}

img {
	border: none;
}

a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none;
}

a:hover {
	color: #006bb7;
}

ul {
	list-style-type: none;
}

em {
	font-style: normal;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

input.sub,
label {
	border: none;
	cursor: pointer;
}

input,
textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}

table {
	border-collapse: collapse;
}

table td,
table th {
	padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #ccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #ccc;
}

div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 增强版清除浮动 */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

/* 兼容IE */
.clearfix {
	zoom: 1;
}

/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 70px;
	vertical-align: middle;
}

/* PC端导航样式 */
.nav-pc {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.nav-item {
	position: relative;
	margin: 0 25px;
	display: flex;
	align-items: center;
}

.nav-link {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
	position: relative;
	transition: color 0.3s ease;
	display: inline-block;
	line-height: 1.5;
}

.nav-link:hover {
	color: #2e4e9e;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #2e4e9e;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.3s ease;
}

.sub-menu-link:hover {
	background-color: #f5f5f5;
	color: #2e4e9e;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
	margin-left: 15px;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
	top: 10px;
}

.menu-toggle span:nth-child(4) {
	top: 20px;
}

/* 移动端导航样式 */
.nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

.nav-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

/* 移动端菜单行布局 */
.mobile-menu-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

/* 移动端展开按钮样式 */
.mobile-expand-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #333;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
}

.nav-mobile-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	width: calc(100% - 50px);
}

.nav-mobile-link.has-children::after {
	content: "";
}

.nav-mobile-link.active.has-children::after {
	content: "";
}

.nav-mobile-sublist {
	display: none;
	list-style: none;
	background-color: #f9f9f9;
}

.nav-mobile-sublist.active {
	display: block;
}

.nav-mobile-subitem {
	border-top: 1px solid #eee;
}

.nav-mobile-sublink {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/* 搜索按钮样式 */
.sousuo {
	position: relative;
	margin-left: 20px;
	display: flex;
	align-items: center;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	margin-right: 15px;
	display: flex;
	align-items: center;
}

.search-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/search.svg') no-repeat center;
	background-size: contain;
	filter: brightness(0) saturate(100%);
}

.search-form {
	position: absolute;
	top: 100%;
	right: 0;
	width: 300px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 15px;
	display: none;
	z-index: 1001;
}

.search-form.active {
	display: flex;
}

.search-form input {
	flex: 1;
	height: 36px;
	border: 1px solid #e0e0e0;
	border-radius: 4px 0 0 4px;
	padding: 0 10px;
}

.search-form button {
	height: 36px;
	background: #2e4e9e;
	color: #fff;
	border: none;
	border-radius: 0 4px 4px 0;
	padding: 0 15px;
	cursor: pointer;
}

.search-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 16px;
	color: #999;
	cursor: pointer;
}

/* 语言切换样式 */
.yuyan_tab {
	position: relative;
	margin-left: 20px;
	z-index: 1001;
	display: flex;
	align-items: center;
}

.language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
	height: 100%;
}

.language-current:hover {
	background: #f5f5f5;
}

.language-current img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

.language-list {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 120px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 5px 0;
	display: none;
}

.yuyan_tab:hover .language-list {
	display: block;
}

.language-list li {
	list-style: none;
}

.language-list li a {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.language-list li a:hover {
	background: #f5f5f5;
}

.language-list li a img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}

/* 移动端搜索和语言切换 */
.mobile-functions {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 20px;
}

.mobile-search {
	position: relative;
	flex: 1;
}

.mobile-search-icon {
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.mobile-search-icon:hover {
	background: #e0e0e0;
}

.mobile-search-btn {
	display: block;
	width: 20px;
	height: 20px;
	background: url('../images/search.svg') no-repeat center;
	background-size: contain;
	filter: brightness(0) saturate(100%);
}

.mobile-search-form {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 400px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	padding: 20px;
	display: none;
	z-index: 10001;
	flex-direction: column;
	gap: 10px;
}

.mobile-search-form.active {
	display: flex;
}

.mobile-search-form input {
	width: 100%;
	height: 44px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 0 15px;
	font-size: 16px;
}

.mobile-search-form button {
	width: 100%;
	height: 44px;
	background: #2e4e9e;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0 20px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.mobile-search-form button:active {
	background: #1e3e8e;
}

.mobile-search-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #999;
	cursor: pointer;
	background: #f5f5f5;
	border-radius: 50%;
}

.mobile-language {
	position: relative;
	flex: 1;
}

.mobile-language-current {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 8px 15px;
	border-radius: 20px;
	transition: all 0.3s ease;
	background: #f5f5f5;
	min-height: 40px;
}

.mobile-language-current:active {
	background: #e0e0e0;
}

.mobile-language-current img {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

.mobile-language-current span {
	font-size: 14px;
	font-weight: 500;
}

.mobile-language-list {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 10px;
	min-width: 140px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	padding: 8px 0;
	display: none;
	z-index: 1001;
}

.mobile-language-list.active {
	display: block;
}

.mobile-language-list li {
	list-style: none;
}

.mobile-language-list li a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
}

.mobile-language-list li a:active {
	background: #f5f5f5;
}

.mobile-language-list li a img {
	width: 18px;
	height: 18px;
	margin-right: 10px;
}

/* 移动端搜索遮罩层 */
.mobile-search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: none;
}

.mobile-search-overlay.active {
	display: block;
}

.banner .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #fff;
	opacity: 1;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}

@media only screen and (max-width:1200px) {
	.header-container {
		max-width: 1200px;
	}

	.nav-item {
		margin: 0 15px;
	}

	.sousuo {
		margin-left: 15px;
	}

	.yuyan_tab {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.header-container {
		max-width: 720px;
	}

	.nav-item {
		margin: 0 10px;
	}

	.nav-link {
		font-size: 14px;
	}

	.sousuo {
		margin-left: 10px;
	}

	.yuyan_tab {
		margin-left: 10px;
	}

	.language-current span {
		display: none;
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}

	.menu-toggle {
		display: block;
		float: right;
	}

	.header-container {
		padding: 10px 15px;
		display: block;
	}

	.logo {
		float: left;
	}

	.logo img {
		height: 30px;
	}

	.sousuo {
		display: none;
	}

	.yuyan_tab {
		display: none;
	}

	.banner {
		margin-top: 50px;
	}
}


/* fp_box_1 样式 */
.fp_box_1 {
	padding: 30px 0 20px 0;
	background: #f8f9fa;
	border-bottom: 1px solid #ececec;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.title-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.title-content {
	flex: 1;
}

.main-title {
	font-size: 36px;
	font-weight: 600;
	color: #057eb7;
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.sub-title {
	font-size: 16px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.learn-more-btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 24px;
	background: #e8e8e8;
	color: #333;
	text-decoration: none;
	border-radius: 20px;
	font-size: 13px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.learn-more-btn:hover {
	background: #d8d8d8;
	color: #333;
}

/* fp_box_1 响应式调整 */
@media only screen and (max-width: 1400px) {
	.container {
		max-width: 1200px;
	}
}

@media only screen and (max-width: 1200px) {
	.container {
		max-width: 960px;
	}

	.main-title {
		font-size: 28px;
	}

	.sub-title {
		font-size: 14px;
	}

	.learn-more-btn {
		padding: 8px 20px;
		font-size: 12px;
	}
}

@media only screen and (max-width: 1000px) {
	.container {
		max-width: 720px;
	}

	.main-title {
		font-size: 24px;
	}

	.sub-title {
		font-size: 13px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_1 {
		padding: 40px 0;
	}

	.container {
		padding: 0 15px;
	}

	.title-section {
		flex-direction: column;
		align-items: stretch;
		gap: 15px;
		text-align: left;
	}

	.title-content {
		width: 100%;
	}

	.main-title {
		font-size: 22px;
		margin-bottom: 8px;
		line-height: 1.3;
	}

	.sub-title {
		font-size: 14px;
		line-height: 1.4;
		color: #555;
	}

	.learn-more-btn {
		align-self: flex-start;
		margin-top: 5px;
		padding: 10px 20px;
		font-size: 13px;
		border-radius: 20px;
		background: #f0f0f0;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_1 {
		padding: 20px 0;
	}

	.container {
		padding: 0 15px;
	}

	.title-section {
		gap: 12px;
	}

	.main-title {
		font-size: 20px;
		margin-bottom: 6px;
	}

	.sub-title {
		font-size: 13px;
	}

	.learn-more-btn {
		padding: 8px 18px;
		font-size: 12px;
		margin-top: 3px;
	}
}

/* fp_box_3 轮播样式 */
.fp_box_3 {
	padding: 80px 0;
	padding-bottom: 40px;
	overflow: hidden;
}

.fp_box_3_swiper {
	width: 100%;
	padding: 0 40px;
}

.fp_box_3_swiper .swiper-wrapper {
	display: flex;
}

.fp_box_3_swiper .swiper-slide {
	width: 40%;
	flex-shrink: 0;
}

.card-item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	margin: 0 20px;
	transition: all 0.3s ease;
	position: relative;
	height: 450px;
	display: flex;
}

.card-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.card-content {
	width: 50%;
	padding: 40px 35px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	background: #f6f6f6;
}

.card-image {
	width: 50%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.card-item:hover .card-image img {
	transform: scale(1.05);
}

.card-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin: 0 0 25px 0;
	line-height: 1.2;
}

.card-desc {
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin: 0 0 20px 0;
	text-align: justify;
}

.card-list {
	list-style: none;
	margin: 0 0 40px 0;
	padding: 0;
}

.card-list li {
	font-size: 14px;
	color: #333;
	margin-bottom: 10px;
	position: relative;
	padding: 8px 12px 8px 25px;
	font-weight: 500;
	line-height: 1.4;
	background: #fff;
	border-radius: 4px;
	display: inline-block;
	width: 200px;
}

.card-list li a {
	color: #333;
	text-decoration: none;
	display: block;
}

.card-list li:before {
	content: "▶";
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	color: #057eb7;
	font-size: 12px;
	font-weight: bold;
}

.card-list li:before {
	content: "▶";
	position: absolute;
	left: 5px;
	top: 18px;
	color: #057eb7;
	font-size: 14px;
	font-weight: bold;
}

.card-arrow {
	position: absolute;
	bottom: 30px;
	left: 30px;
	width: 40px;
	height: 40px;
	background: #e8e8e8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #666;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.card-arrow:hover {
	background: #057eb7;
	color: #fff;
	transform: translateX(5px);
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.fp_box_3 {
		padding: 60px 0;
	}

	.fp_box_3_swiper {
		padding: 0 30px;
	}

	.fp_box_3_swiper .swiper-slide {
		width: 45%;
	}

	.card-item {
		margin: 0 15px;
		height: 400px;
	}

	.card-content {
		padding: 30px 25px;
	}

	.card-title {
		font-size: 22px;
		margin-bottom: 18px;
		padding-left: 12px;
	}

	.card-desc {
		font-size: 14px;
		margin-bottom: 25px;
	}

	.card-list {
		margin-bottom: 30px;
	}

	.card-list li {
		font-size: 15px;
		margin-bottom: 15px;
		padding-left: 22px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_3 {
		padding: 50px 0;
	}

	.fp_box_3_swiper {
		padding: 0 20px;
	}

	.fp_box_3_swiper .swiper-slide {
		width: 85%;
	}

	.card-item {
		margin: 0 10px;
		height: auto;
		flex-direction: column;
	}

	.card-content {
		width: 100%;
		padding: 25px 20px;
		order: 2;
		background: #fff;
	}

	.card-image {
		width: 100%;
		height: 200px;
		order: 1;
	}

	.card-title {
		font-size: 20px;
		margin-bottom: 15px;
		border-left: 3px solid #333;
		padding-left: 12px;
	}

	.card-desc {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.card-list {
		margin-bottom: 20px;
	}

	.card-list li {
		font-size: 14px;
		margin-bottom: 12px;
		padding-left: 20px;
	}

	.card-arrow {
		width: 35px;
		height: 35px;
		font-size: 18px;
		bottom: 20px;
		left: 20px;
	}
}

/* fp_box_3 滚动条样式 */
.fp_box_3_swiper .swiper-scrollbar {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	position: relative;
	margin: 30px auto 0;
	height: 4px;
	max-width: 1400px;
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.fp_box_3_swiper .swiper-scrollbar-drag {
	background: #057eb7;
	border-radius: 4px;
	position: relative;
	height: 100%;
	cursor: grab;
}

.fp_box_3_swiper .swiper-scrollbar-drag:active {
	cursor: grabbing;
}

/* 响应式滚动条 */
@media only screen and (max-width: 1400px) {
	.fp_box_3_swiper .swiper-scrollbar {
		max-width: 1200px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_3_swiper .swiper-scrollbar {
		max-width: 960px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_3_swiper .swiper-scrollbar {
		margin-top: 20px;
		height: 3px;
		max-width: 100%;
	}
}

/* fp_box_4 手风琴样式 */
.fp_box_4 {
	padding: 80px 0;
	background: #f8f9fa;
}

.accordion-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

.accordion-title {
	font-size: 30px;
	font-weight: 600;
	color: #383838;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.accordion-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.accordion-container {
	display: flex;
	height: 500px;
	width: 100%;
	overflow: hidden;
	gap: 20px;
	padding: 0 20px;
}

.accordion-item {
	flex: 1;
	position: relative;
	cursor: pointer;
	transition: all 0.5s ease;
	overflow: hidden;
	border-radius: 12px;
}

.accordion-item.active,
.accordion-item:hover {
	flex: 2.5;
}

/* 背景图片 */
.accordion-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.accordion-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 默认状态：标题在上，图标在下，有淡蓝色透明背景 */
.accordion-default {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding: 30px 20px;
	color: #fff;
	background: rgba(26, 115, 232, 0.6);
	transition: all 0.5s ease;
}

.accordion-item:not(.active):not(:hover) .accordion-default {
	opacity: 1;
	visibility: visible;
}

.accordion-item.active .accordion-default,
.accordion-item:hover .accordion-default {
	opacity: 0;
	visibility: hidden;
}

.accordion-default .accordion-item-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 20px 0;
	line-height: 1.3;
	color: #fff;
	order: 1;
	text-align: left;
}

.accordion-default .accordion-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	order: 2;
	align-self: flex-start;
}

.accordion-default .accordion-icon img {
	width: 30px;
	height: auto;
	filter: brightness(0) invert(1);
}

/* 展开状态：文字在底部蓝色背景，图标在右边绝对位置 */
.accordion-expanded {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

.accordion-item.active .accordion-expanded,
.accordion-item:hover .accordion-expanded {
	opacity: 1;
	visibility: visible;
}

.accordion-expanded-content {
	background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(26, 115, 232, 0.7));
	padding: 30px;
	border-radius: 0 0 12px 12px;
	position: relative;
}

.accordion-expanded .accordion-item-title {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 15px 0;
	line-height: 1.3;
	color: #fff;
}

.accordion-expanded .accordion-item-desc {
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
	color: #fff;
	width: 80%;
}

.accordion-icon-expanded {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
}

.accordion-icon-expanded img {
	width: 30px;
	height: auto;
	filter: brightness(0) invert(1);
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.fp_box_4 {
		padding: 60px 0;
	}

	.accordion-header {
		margin-bottom: 40px;
	}

	.accordion-title {
		font-size: 28px;
	}

	.accordion-container {
		height: 400px;
		padding: 0 15px;
	}

	.accordion-default {
		padding: 25px 15px;
	}

	.accordion-default .accordion-item-title {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.accordion-default .accordion-icon {
		width: 50px;
		height: 50px;
	}

	.accordion-default .accordion-icon img {
		width: 25px;
		height: 25px;
	}

	.accordion-expanded-content {
		padding: 25px 20px;
	}

	.accordion-expanded .accordion-item-title {
		font-size: 20px;
	}

	.accordion-icon-expanded {
		width: 50px;
		height: 50px;
		bottom: 25px;
		right: 25px;
	}

	.accordion-icon-expanded img {
		width: 25px;
		height: 25px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_4 {
		padding: 50px 0;
	}

	.accordion-title {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.accordion-subtitle {
		font-size: 14px;
	}

	.accordion-container {
		flex-direction: column;
		height: auto;
		gap: 15px;
		padding: 0 15px;
	}

	.accordion-item {
		flex: none;
		height: 200px;
		border-radius: 8px;
	}

	.accordion-item.active {
		flex: none;
		height: 280px;
	}

	/* 移动端默认状态 */
	.accordion-default {
		padding: 20px 15px;
	}

	.accordion-default .accordion-item-title {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.accordion-default .accordion-icon {
		width: 40px;
		height: 40px;
	}

	.accordion-default .accordion-icon img {
		width: 20px;
		height: 20px;
	}

	/* 移动端展开状态 */
	.accordion-expanded-content {
		padding: 20px 15px;
	}

	.accordion-expanded .accordion-item-title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.accordion-expanded .accordion-item-desc {
		font-size: 13px;
	}

	.accordion-icon-expanded {
		width: 40px;
		height: 40px;
		bottom: 20px;
		right: 20px;
	}

	.accordion-icon-expanded img {
		width: 20px;
		height: 20px;
	}
}

/* fp_box_5 数据统计样式 */
.fp_box_5 {
	padding: 80px 0;
	background: #fff;
}

.stats-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.stats-item {
	flex: 1;
	text-align: center;
	position: relative;
}

.stats-item:not(:last-child)::after {
	display: none;
}

.stats-desc {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
}

.stats-number {
	font-size: 48px;
	font-weight: 700;
	color: #057eb7;
	line-height: 1;
	margin-bottom: 5px;
	display: inline-block;
}

.stats-unit {
	font-size: 24px;
	font-weight: 600;
	color: #057eb7;
	display: inline-block;
	margin-left: 5px;
	vertical-align: top;
	margin-top: 8px;
}

.stats-desc {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 0;
}

.stats-desc img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.stats-desc span {
	font-size: 18px;
	color: #666;
	font-weight: 500;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.fp_box_5 {
		padding: 60px 0;
	}

	.stats-container {
		gap: 30px;
	}

	.stats-number {
		font-size: 40px;
	}

	.stats-unit {
		font-size: 20px;
	}

	.stats-desc span {
		font-size: 13px;
	}
}

@media only screen and (max-width: 1000px) {
	.stats-container {
		gap: 20px;
	}

	.stats-number {
		font-size: 36px;
	}

	.stats-unit {
		font-size: 18px;
	}

	.stats-desc {
		gap: 6px;
	}

	.stats-desc img {
		width: 18px;
		height: 18px;
	}

	.stats-desc span {
		font-size: 12px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_5 {
		padding: 50px 0;
	}

	.stats-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		text-align: left;
	}

	.stats-item {
		padding: 25px 15px;
		background: #f8f9fa;
		border-radius: 12px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	}

	.stats-item:nth-child(5) {
		grid-column: span 2;
		justify-self: center;
		max-width: 50%;
	}

	.stats-item:not(:last-child)::after {
		display: none;
	}

	.stats-number {
		font-size: 32px;
		margin-bottom: 5px;
	}

	.stats-unit {
		font-size: 18px;
		margin-top: 6px;
	}

	.stats-desc {
		margin-top: 15px;
		gap: 6px;
		flex-direction: column;
		align-items: flex-start;
	}

	.stats-desc img {
		width: 20px;
		height: 20px;
	}

	.stats-desc span {
		font-size: 12px;
		color: #555;
		line-height: 1.3;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_5 {
		padding: 40px 0;
	}

	.stats-container {
		gap: 15px;
	}

	.stats-item {
		padding: 20px 10px;
	}

	.stats-number {
		font-size: 28px;
	}

	.stats-unit {
		font-size: 16px;
	}

	.stats-desc {
		margin-top: 12px;
		gap: 4px;
	}

	.stats-desc img {
		width: 18px;
		height: 18px;
	}

	.stats-desc span {
		font-size: 11px;
	}
}

/* fp_box_6 关于我们样式 */
.fp_box_6 {
	padding: 100px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
}


.fp_box_6 .container {
	position: relative;
	z-index: 2;
}

.about-content {
	max-width: 600px;
}

.about-title {
	font-size: 36px;
	font-weight: 600;
	margin: 0 0 20px 0;
	line-height: 1.2;
	color: #fff;
}

.about-subtitle {
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 30px 0;
	line-height: 1.3;
	color: #fff;
	opacity: 0.9;
}

.about-desc {
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 20px 0;
	color: #fff;
	opacity: 0.9;
}

.about-desc:last-of-type {
	margin-bottom: 40px;
}

.fp_box_6 .learn-more-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 30px;
	background: #015198;
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.fp_box_6 .learn-more-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
	transform: translateX(5px);
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.fp_box_6 {
		padding: 80px 0;
	}

	.about-title {
		font-size: 32px;
	}

	.about-subtitle {
		font-size: 18px;
	}

	.about-desc {
		font-size: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.fp_box_6 {
		padding: 70px 0;
	}

	.about-title {
		font-size: 28px;
	}

	.about-subtitle {
		font-size: 16px;
	}

	.about-desc {
		font-size: 14px;
	}

	.fp_box_6 .learn-more-btn {
		padding: 10px 25px;
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_6 {
		padding: 60px 0;
		text-align: center;
	}

	.about-content {
		max-width: 100%;
	}

	.about-title {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.about-subtitle {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.about-desc {
		font-size: 14px;
		margin-bottom: 15px;
		text-align: left;
	}

	.about-desc:last-of-type {
		margin-bottom: 30px;
	}

	.fp_box_6 .learn-more-btn {
		padding: 12px 25px;
		font-size: 14px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_6 {
		padding: 50px 0;
	}

	.about-title {
		font-size: 24px;
	}

	.about-subtitle {
		font-size: 15px;
	}

	.about-desc {
		font-size: 13px;
		line-height: 1.6;
	}

	.fp_box_6 .learn-more-btn {
		padding: 10px 20px;
		font-size: 13px;
	}
}

/* fp_box_7 合作伙伴样式 */
.fp_box_7 {
	padding: 80px 0;
	background: #fff;
}

.partners-header {
	text-align: left;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #f5f5f5;
}

.partners-title {
	font-size: 36px;
	font-weight: 600;
	color: #057eb7;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.partners-desc {
	font-size: 16px;
	color: #666;
	margin: 0;
	line-height: 1.6;
	max-width: 1000px;
}


.partners-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 40px 30px;
	align-items: center;
}

.partner-item {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 8px;
	transition: all 0.3s ease;
	min-height: 80px;
}

.partner-item:hover {
	transform: translateY(-3px);
}

.partner-item img {
	max-width: 100%;
	max-height: 88px;
	object-fit: contain;
	transition: all 0.3s ease;
}

.partner-item:hover img {
	transform: scale(1.05);
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.fp_box_7 {
		padding: 60px 0;
	}

	.partners-header {
		margin-bottom: 50px;
	}

	.partners-title {
		font-size: 32px;
	}

	.partners-desc {
		font-size: 15px;
	}

	.partners-grid {
		gap: 30px 25px;
	}

	.partner-item {
		padding: 15px;
		min-height: 70px;
	}

	.partner-item img {
		max-height: 50px;
	}
}

@media only screen and (max-width: 1000px) {
	.partners-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 25px 20px;
	}

	.partners-title {
		font-size: 28px;
	}

	.partners-desc {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_7 {
		padding: 50px 0;
	}

	.partners-header {
		margin-bottom: 40px;
	}

	.partners-title {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.partners-desc {
		font-size: 14px;
		padding: 0 15px;
	}

	.partners-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 15px;
	}

	.partner-item {
		padding: 12px;
		min-height: 60px;
	}

	.partner-item img {
		max-height: 40px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_7 {
		padding: 40px 0;
	}

	.partners-title {
		font-size: 24px;
	}

	.partners-desc {
		font-size: 13px;
	}

	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px 10px;
	}

	.partner-item {
		padding: 10px;
		min-height: 50px;
	}

	.partner-item img {
		max-height: 60px;
	}
}

/* fp_box_8 新闻区域样式 */
.fp_box_8 {
	padding: 80px 0;
	background: #f8f9fa;
}

/* 上部分：切换按钮 */
.news-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.tab-item {
	padding: 15px 50px;
	background: #fff;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
	font-size: 16px;
	font-weight: 500;
	border-radius: 0 20px 0 20px;
}

.tab-item.active {
	background: #057eb7;
	color: #fff;
	border-color: #057eb7;
}

.tab-item:hover:not(.active) {
	background: #f5f5f5;
}

/* 中部分：左右结构 */
.news-content {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
}

/* 左侧大图新闻 */
.news-main {
	flex: 0 0 40%;
}

.main-news-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.main-news-item {
	position: relative;
	border-radius: 0px;
	overflow: hidden;
	height: 450px;
}

.main-news-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.main-news-link:hover .main-news-item img {
	transform: scale(1.05);
}

.main-news-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 115, 232, 0.9);
	padding: 35px 40px;
	color: #fff;
}

.main-news-title {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.main-news-date {
	font-size: 17px;
	opacity: 0.9;
}

/* 右侧新闻列表 */
.news-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 25px;
	height: 450px;
	padding: 0 15px;
}

.news-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	flex: 1;
	padding: 15px;
}

.news-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.news-link {
	display: flex;
	text-decoration: none;
	color: inherit;
	height: 100%;
	background: #fff;
	overflow: hidden;
}

.news-link img {
	width: 220px;
	height: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

.news-info {
	padding: 10px 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 15px 0;
	line-height: 1.4;
	color: #333;
}

.news-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 15px 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.news-date {
	font-size: 13px;
	color: #999;
	margin-top: 0;
}

/* 下部分：新闻链接列表 */
.news-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.news-links-row {
	display: flex;
	gap: 30px;
}

.news-link-item {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	position: relative;
}

.news-link-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 2px;
	background: #057eb7;
	border-radius: 2px;
}

.news-link-item:hover {
	color: #057eb7;
}

.news-link-item:hover .link-title {
	transform: translateX(5px);
}

.link-title {
	font-size: 14px;
	color: #333;
	transition: all 0.3s ease;
	padding-left: 30px;
}

.link-date {
	font-size: 12px;
	color: #999;
	flex-shrink: 0;
	margin-left: 20px;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.fp_box_8 {
		padding: 60px 0;
	}

	.news-content {
		gap: 25px;
		margin-bottom: 40px;
	}

	.main-news-item {
		height: 360px;
	}

	.news-list {
		height: 360px;
		padding: 0 10px;
	}

	.news-item {
		padding: 12px;
	}

	.news-link img {
		width: 150px;
	}
}

@media only screen and (max-width: 1000px) {
	.news-tabs {
		margin-bottom: 30px;
	}

	.tab-item {
		padding: 12px 25px;
		font-size: 15px;
	}

	.news-content {
		flex-direction: column;
		gap: 30px;
	}

	.main-news-item {
		height: 280px;
	}

	.news-list {
		height: auto;
		padding: 0 8px;
	}

	.news-item {
		padding: 10px;
	}

	.main-news-overlay {
		padding: 25px 30px;
	}

	.main-news-title {
		font-size: 20px;
	}

	.main-news-date {
		font-size: 14px;
	}

	.news-link img {
		width: 130px;
	}

	.news-info {
		padding: 16px 20px;
	}

	.news-title {
		font-size: 16px;
	}

	.news-links-row {
		gap: 20px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_8 {
		padding: 50px 0;
	}

	.news-tabs {
		flex-direction: row;
		gap: 8px;
		align-items: stretch;
		margin-bottom: 30px;
	}

	.tab-item {
		flex: 1;
		padding: 12px 8px;
		font-size: 13px;
		font-weight: 600;
		text-align: center;
		border-radius: 20px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		border: 2px solid transparent;
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.tab-item.active {
		background: linear-gradient(135deg, #057eb7 0%, #4285f4 100%);
		color: #fff;
		border-color: rgba(255, 255, 255, 0.3);
		box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
		transform: translateY(-1px);
	}

	.tab-item:not(.active):hover {
		background: linear-gradient(135deg, #e8f0fe 0%, #f1f8ff 100%);
		border-color: rgba(26, 115, 232, 0.2);
		transform: translateY(-1px);
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	}

	.news-list {
		gap: 15px;
	}

	.news-link {
		flex-direction: column;
	}

	.news-link img {
		width: 100%;
		height: 150px;
	}

	.news-links-row {
		flex-direction: column;
		gap: 0;
	}

	.news-link-item {
		padding: 12px 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.news-link-item:last-child {
		border-bottom: none;
	}

	.news-link-item::before {
		width: 16px;
		height: 3px;
	}

	.link-title {
		font-size: 13px;
		padding-left: 25px;
		line-height: 1.4;
	}

	.link-date {
		font-size: 11px;
		margin-top: 5px;
		margin-left: 25px;
	}
}

@media only screen and (max-width: 480px) {
	.fp_box_8 {
		padding: 40px 0;
	}

	.news-tabs {
		gap: 6px;
		margin-bottom: 25px;
	}

	.tab-item {
		padding: 10px 6px;
		font-size: 12px;
		border-radius: 18px;
		min-height: 40px;
	}

	.main-news-overlay {
		padding: 20px;
	}

	.main-news-title {
		font-size: 16px;
	}

	.news-info {
		padding: 12px;
	}

	.news-title {
		font-size: 15px;
	}

	.news-desc {
		font-size: 12px;
	}

	.news-link-item {
		padding: 10px 0;
	}

	.news-link-item::before {
		width: 14px;
		height: 2px;
	}

	.link-title {
		font-size: 12px;
		padding-left: 22px;
	}

	.link-date {
		font-size: 10px;
		margin-left: 22px;
	}
}

/* Footer 底部样式 */
footer {
	background: #d7d7d7;
	color: #fff;
	padding: 60px 0 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

/* 左侧logo区域 */
.footer-left {
	flex: 0 0 280px;
}

.footer-logo {

	align-items: center;
	margin-bottom: 20px;
	margin-top: -10px;
}

.footer-logo img {
	height: 70px;
	margin-right: 12px;
}

.footer-logo-text {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.footer-desc {
	font-size: 14px;
	color: #474747;
	margin: 0 0 8px 0;
	line-height: 1.5;
}

.footer-phone {
	background: #fff;
	color: #057eb7;
	padding: 12px 50px;
	border-radius: 35px;
	font-size: 22px;
	font-weight: 600;
	display: inline-block;
	margin-top: 15px;
}

/* 中间导航区域 */
.footer-nav {
	flex: 1;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.footer-nav-col {
	flex: 1;
}

.footer-nav-title {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	margin: 0 0 20px 0;
	display: inline-block;
}

.footer-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav-list li {
	margin-bottom: 12px;
}

.footer-nav-list li a {
	color: #474747;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer-nav-list li a:hover {
	color: #057eb7;
	transform: translateX(3px);
}

/* 右侧联系和二维码区域 */
.footer-right {
	flex: 0 0 200px;
	text-align: center;
}

.footer-contact {
	margin-bottom: 10px;
}

.contact-phone {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 8px;
	text-align: left;
}

.contact-number {
	font-size: 26px;
	font-weight: 100;
	color: #057eb7;
	text-align: left;
}

.footer-qr {
	text-align: center;
}

.footer-qr img {
	width: 120px;
	height: 120px;
	margin-bottom: 10px;
	background: #fff;
	padding: 5px;
}

.qr-text {
	display: block;
	font-size: 12px;
	color: #474747;
}

/* 底部版权信息 */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 30px 0;
	gap: 40px;
}

.footer-info,
.footer-copyright {
	flex: 1;
}

.footer-info p,
.footer-copyright p {
	font-size: 15px;
	color: #474747;
	margin: 0 0 5px 0;
	line-height: 1.5;
}

.footer-copyright {
	text-align: right;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	footer {
		padding: 50px 0 0;
	}

	.footer-content {
		gap: 30px;
	}

	.footer-left {
		flex: 0 0 250px;
	}

	.footer-nav {
		gap: 20px;
	}

	.footer-right {
		flex: 0 0 180px;
	}
}

@media only screen and (max-width: 1000px) {
	.footer-content {
		flex-direction: column;
		gap: 40px;
	}

	.footer-left,
	.footer-right {
		flex: none;
		width: 100%;
	}

	.footer-nav {
		flex-wrap: wrap;
		gap: 30px 20px;
	}

	.footer-nav-col {
		flex: 0 0 calc(50% - 10px);
	}

	.footer-right {
		display: flex;
		justify-content: space-between;
		align-items: center;
		text-align: left;
	}

	.footer-qr {
		text-align: center;
	}
}

@media only screen and (max-width: 750px) {
	footer {
		padding: 40px 0 0;
	}

	.footer-content {
		gap: 30px;
	}

	.footer-left {
		text-align: center;
	}

	.footer-nav-col {
		flex: 0 0 calc(50% - 10px);
		text-align: center;
	}

	.footer-nav-title {
		display: block;
		width: 100%;
		text-align: center;
	}

	.footer-right {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer-copyright {
		text-align: center;
	}
}

@media only screen and (max-width: 480px) {
	footer {
		padding: 30px 0 0;
	}

	.footer-content {
		gap: 25px;
	}

	.footer-logo-text {
		font-size: 18px;
	}

	.footer-phone {
		padding: 10px 18px;
		font-size: 15px;
	}

	.footer-nav {
		gap: 20px;
	}

	.footer-nav-title {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.footer-nav-list li {
		margin-bottom: 10px;
	}

	.footer-nav-list li a {
		font-size: 13px;
	}

	.contact-number {
		font-size: 18px;
	}

	.footer-qr img {
		width: 70px;
		height: 70px;
	}
}

.banner_two {
	margin-top: 90px;
}

.homenav {
	margin-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
	font-size: 16px;
	height: 68px;
	line-height: 68px;
}

.homenav .container {
	overflow: hidden;
}

.homenav-left {
	float: left;
}

.homenav-link {
	float: left;
	padding: 0px 25px;
	color: #666;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	margin-right: 20px;
}

.homenav-link:hover {
	color: #1280cc;
	border-bottom-color: #1280cc;
}

.homenav-link.active {
	color: #117ecb;
	border-bottom-color: #117ecb;
}

.homenav-right {
	float: right;
	text-align: right;
}

.homenav img {
	display: inline-block;
	margin-right: 15px;
	margin-top: -5px;
}

/* ywfw_box_1 概述区域样式 */
.ywfw_box_1 {
	padding: 80px 0;
	background: #fff;
}

.overview-section {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}

.overview-title {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.overview-divider {
	width: 60px;
	height: 3px;
	background: #057eb7;
	margin: 0 auto 40px;
	border-radius: 2px;
}

.overview-content {
	text-align: justify;
}

.overview-text {
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin: 0 0 20px 0;
	text-indent: 1em;
	text-align: center;
}

.overview-text:last-child {
	margin-bottom: 0;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.ywfw_box_1 {
		padding: 60px 0;
	}

	.overview-title {
		font-size: 28px;
	}

	.overview-text {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.ywfw_box_1 {
		padding: 50px 0;
	}

	.overview-title {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.overview-divider {
		width: 50px;
		height: 2px;
		margin-bottom: 30px;
	}

	.overview-text {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 480px) {
	.ywfw_box_1 {
		padding: 40px 0;
	}

	.overview-title {
		font-size: 22px;
	}

	.overview-text {
		font-size: 13px;
		line-height: 1.7;
	}
}

/* ywfw_box_2 业务板块样式 */
.ywfw_box_2 {
	width: 100%;
	background: #fff;
}

.business-item {
	display: flex;
	align-items: stretch;
	min-height: 500px;
}

.business-item-left {
	flex-direction: row;
}

.business-item-right {
	flex-direction: row;
	background: #f8f9fa;
}

.business-image {
	flex: 0 0 50%;
	overflow: hidden;
	order: 1;
}

.business-item-right .business-image {
	order: 2;
}

.business-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.business-item:hover .business-image img {
	transform: scale(1.05);
}

.business-content {
	flex: 0 0 50%;
	padding: 80px 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
	order: 2;
}

.business-item-right .business-content {
	background: #f8f9fa;
	order: 1;
}

.business-title {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin: 0 0 30px 0;
	line-height: 1.3;
	padding-bottom: 20px;
	border-bottom: 1px solid #bebfc0;
}

.business-desc {
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin: 0 0 40px 0;
	text-align: justify;
}

.business-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 35px;
	background: #057eb7;
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.business-btn:hover {
	background: #0d5bbf;
	color: #fff;
	transform: translateX(5px);
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.business-item {
		min-height: 450px;
	}

	.business-content {
		padding: 60px 60px;
	}

	.business-title {
		font-size: 24px;
		margin-bottom: 25px;
	}

	.business-desc {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.business-btn {
		padding: 10px 30px;
		font-size: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.business-item {
		min-height: 400px;
	}

	.business-content {
		padding: 50px 40px;
	}

	.business-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.business-desc {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 25px;
	}
}

@media only screen and (max-width: 750px) {
	.business-item {
		flex-direction: column !important;
		min-height: auto;
	}

	.business-image {
		flex: none;
		width: 100%;
		height: 250px;
		order: 1 !important;
	}

	.business-content {
		flex: none;
		width: 100%;
		padding: 40px 20px;
		order: 2 !important;
	}

	.business-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.business-desc {
		font-size: 14px;
		line-height: 1.7;
		margin-bottom: 20px;
	}

	.business-btn {
		padding: 10px 25px;
		font-size: 14px;
	}

	.banner_two {
		margin-top: 50px;
	}

	.homenav img {
		height: 10px;
		margin-top: -2px;
		margin-right: 3px;
	}

	.homenav {
		padding: 8px 0;
		font-size: 11px;
		height: 35px;
		line-height: 35px;
	}

	.homenav-left {
		float: left;
	}

	.homenav-link {
		padding: 0 4px;
		font-size: 11px;
		border-bottom-width: 2px;
		line-height: 2;
		padding-bottom: 3px;
	}

	.homenav-right {
		float: right;
		font-size: 10px;
		line-height: 2;
	}

	.homenav-right a {
		font-size: 10px;
	}

	.ywfw_box_1 {
		padding: 20px 0 10px 0;
	}
}

@media only screen and (max-width: 480px) {
	.business-image {
		height: 200px;
	}

	.business-content {
		padding: 30px 15px;
	}

	.business-title {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.business-desc {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 18px;
	}

	.business-btn {
		padding: 8px 20px;
		font-size: 13px;
	}

}

/* zxls_box_1 人才理念样式 */
.zxls_box_1 {
	padding: 260px 0;
	background: #fff;
}

.talent-section {
	position: relative;
	min-height: 250px;
}

.talent-image {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 70%;
	z-index: 1;
}

.talent-image img {
	width: 100%;
	height: auto;
	display: block;
}

.talent-content {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 34%;
	background: #fff;
	padding: 50px 45px;
	z-index: 2;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.talent-title {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin: 0 0 40px 0;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.talent-icon {
	color: #057eb7;
	font-size: 20px;
	margin: 0 15px;
	position: relative;
}

.talent-icon:first-child::before {
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 128px;
	height: 1px;
	background: linear-gradient(to left, #057eb7, transparent);
	margin-right: 15px;
}

.talent-icon:last-child::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 128px;
	height: 1px;
	background: linear-gradient(to right, #057eb7, transparent);
	margin-left: 15px;
}

.talent-text {
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin: 0;
	text-align: justify;
	text-indent: 2em;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.zxls_box_1 {
		padding: 60px 0;
	}

	.talent-section {
		min-height: 600px;
	}

	.talent-image {
		width: 68%;
	}

	.talent-content {
		width: 50%;
		padding: 45px 35px;
	}

	.talent-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.talent-text {
		font-size: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.talent-section {
		min-height: 550px;
	}

	.talent-image {
		width: 65%;
	}

	.talent-content {
		width: 48%;
		padding: 40px 30px;
	}

	.talent-title {
		font-size: 26px;
		margin-bottom: 25px;
	}

	.talent-icon {
		font-size: 18px;
		margin: 0 10px;
	}

	.talent-text {
		font-size: 14px;
		line-height: 1.8;
	}
}

@media only screen and (max-width: 750px) {
	.zxls_box_1 {
		padding: 50px 0;
	}

	.talent-section {
		min-height: auto;
	}

	.talent-image {
		position: relative;
		width: 100%;
		left: 0;
		top: 0;
		transform: none;
		margin-bottom: 30px;
	}

	.talent-content {
		position: relative;
		width: 100%;
		right: auto;
		top: auto;
		transform: none;
		padding: 30px 20px;
		box-shadow: none;
	}

	.talent-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.talent-icon {
		font-size: 16px;
		margin: 0 8px;
	}

	.talent-icon:first-child::before {
		width: 60px;
		margin-right: 8px;
	}

	.talent-icon:last-child::after {
		width: 60px;
		margin-left: 8px;
	}

	.talent-text {
		font-size: 14px;
		line-height: 1.8;
	}
}

@media only screen and (max-width: 480px) {
	.zxls_box_1 {
		padding: 40px 0;
	}

	.talent-image {
		margin-bottom: 25px;
	}

	.talent-content {
		padding: 25px 15px;
	}

	.talent-title {
		font-size: 22px;
		margin-bottom: 18px;
	}

	.talent-icon {
		font-size: 14px;
		margin: 0 6px;
	}

	.talent-icon:first-child::before {
		width: 40px;
		margin-right: 6px;
	}

	.talent-icon:last-child::after {
		width: 40px;
		margin-left: 6px;
	}

	.talent-text {
		font-size: 13px;
		line-height: 1.7;
	}
}

/* zxls_box_2 招聘信息样式 */
.zxls_box_2 {
	padding: 60px 0;
	background: #f8f9fa;
}

/* 切换按钮 */
.recruit-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
}

.recruit-tab {
	padding: 12px 50px;
	font-size: 18px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #e0e0e0;
	color: #666;
}

.recruit-tab.active {
	background: #1280cc;
	color: #fff;
}

.recruit-tab:hover {
	opacity: 0.9;
}

/* 招聘列表 */
.recruit-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.recruit-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.recruit-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 30px;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.recruit-header:hover {
	background: #f8f9fa;
}

.recruit-info {
	display: flex;
	align-items: center;
	gap: 5px;
	width: 25%;
}

.recruit-label {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.recruit-position {
	font-size: 16px;
	color: #333;
	font-weight: 600;
}

.recruit-number,
.recruit-location {
	font-size: 16px;
	color: #333;
}

/* 展开状态文字变蓝色 */
.recruit-item.active .recruit-label,
.recruit-item.active .recruit-position,
.recruit-item.active .recruit-number,
.recruit-item.active .recruit-location {
	color: #1280cc;
}

.recruit-toggle {
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	padding: 0;
}

.recruit-toggle:hover {
	opacity: 0.8;
}

.toggle-icon {
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease;
	display: block;
	background: url('../images/quan.png') no-repeat center;
	background-size: contain;
}

.recruit-item.active .toggle-icon {
	transform: rotate(180deg);
}

.recruit-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 30px;
	background: #fff;
}

.recruit-item.active .recruit-content {
	max-height: 5000px;
	padding: 30px;
	transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 25px 0 15px 0;
}

.content-title:first-child {
	margin-top: 0;
}

.content-text {
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin: 0 0 12px 0;
	text-align: justify;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.zxls_box_2 {
		padding: 50px 0;
	}

	.recruit-tabs {
		margin-bottom: 40px;
	}

	.recruit-tab {
		padding: 10px 40px;
		font-size: 16px;
	}

	.recruit-header {
		padding: 20px 25px;
	}

	.recruit-label,
	.recruit-position,
	.recruit-number,
	.recruit-location {
		font-size: 15px;
	}

	.content-title {
		font-size: 17px;
	}

	.content-text {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.zxls_box_2 {
		padding: 40px 0;
	}

	.recruit-tabs {
		gap: 10px;
		margin-bottom: 30px;
	}

	.recruit-tab {
		flex: 1;
		padding: 10px 20px;
		font-size: 15px;
	}

	.recruit-header {
		flex-wrap: wrap;
		padding: 15px 20px;
		gap: 10px;
	}

	.recruit-info {
		flex: 0 0 calc(50% - 5px);
	}

	.recruit-info:nth-child(3) {
		flex: 0 0 calc(100% - 50px);
	}

	.recruit-toggle {
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 35px;
		height: 35px;
	}

	.recruit-header {
		position: relative;
	}

	.recruit-label,
	.recruit-position,
	.recruit-number,
	.recruit-location {
		font-size: 14px;
	}

	.recruit-content {
		padding: 0 20px;
	}

	.recruit-item.active .recruit-content {
		padding: 20px;
	}

	.content-title {
		font-size: 16px;
		margin: 20px 0 12px 0;
	}

	.content-text {
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 10px;
	}

	.toggle-icon {
		font-size: 18px;
	}
}

@media only screen and (max-width: 480px) {
	.zxls_box_2 {
		padding: 30px 0;
	}

	.recruit-tabs {
		margin-bottom: 25px;
	}

	.recruit-tab {
		padding: 8px 15px;
		font-size: 14px;
	}

	.recruit-header {
		padding: 12px 15px;
	}

	.recruit-toggle {
		right: 15px;
		width: 25px;
		height: 25px;
	}

	.recruit-label,
	.recruit-position,
	.recruit-number,
	.recruit-location {
		font-size: 13px;
	}

	.recruit-content {
		padding: 0 15px;
	}

	.recruit-item.active .recruit-content {
		padding: 15px;
	}

	.content-title {
		font-size: 15px;
		margin: 18px 0 10px 0;
	}

	.content-text {
		font-size: 12px;
		line-height: 1.6;
	}

	.toggle-icon {
		font-size: 16px;
	}
}

/* abuot_box_1 联系方式样式 */
.abuot_box_1 {
	padding: 80px 0;
	background: #fff;
}

.contact-main-title {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	text-align: left;
	margin: 0 0 50px 0;
	line-height: 1.2;
}

.contact-cards {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.contact-card {
	flex: 1;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: #fff;
	padding: 0;
}

.contact-icon {
	flex-shrink: 0;
	width: 90px;
	height: 130px;
	background: #057eb7;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.contact-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-label {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
}

.contact-value {
	font-size: 20px;
	color: #333;
	font-weight: 600;
	line-height: 1.4;
}

.contact-sub {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 5px;
}

.contact-sub-label {
	font-size: 14px;
	color: #666;
}

.contact-sub-value {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.abuot_box_1 {
		padding: 60px 0;
	}
	
	.contact-main-title {
		font-size: 32px;
		margin-bottom: 40px;
	}
	
	.contact-cards {
		gap: 25px;
	}
	
	.contact-icon {
		width: 80px;
		height: 80px;
	}
	
	.contact-icon img {
		width: 45px;
		height: 45px;
	}
	
	.contact-label {
		font-size: 15px;
	}
	
	.contact-value {
		font-size: 18px;
	}
	
	.contact-sub-value {
		font-size: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.contact-main-title {
		font-size: 28px;
		margin-bottom: 35px;
	}
	
	.contact-cards {
		gap: 20px;
	}
	
	.contact-icon {
		width: 70px;
		height: 70px;
	}
	
	.contact-icon img {
		width: 40px;
		height: 40px;
	}
	
	.contact-label {
		font-size: 14px;
	}
	
	.contact-value {
		font-size: 16px;
	}
	
	.contact-sub-label {
		font-size: 13px;
	}
	
	.contact-sub-value {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.abuot_box_1 {
		padding: 50px 0;
	}
	
	.contact-main-title {
		font-size: 26px;
		margin-bottom: 30px;
		text-align: center;
	}
	
	.contact-cards {
		flex-direction: column;
		gap: 25px;
	}
	
	.contact-card {
		gap: 15px;
	}
	
	.contact-icon {
		width: 80px;
		height: 80px;
	}
	
	.contact-icon img {
		width: 45px;
		height: 45px;
	}
	
	.contact-label {
		font-size: 14px;
	}
	
	.contact-value {
		font-size: 18px;
	}
	
	.contact-sub-value {
		font-size: 15px;
	}
}

@media only screen and (max-width: 480px) {
	.abuot_box_1 {
		padding: 40px 0;
	}
	
	.contact-main-title {
		font-size: 24px;
		margin-bottom: 25px;
	}
	
	.contact-cards {
		gap: 20px;
	}
	
	.contact-card {
		gap: 12px;
	}
	
	.contact-icon {
		width: 70px;
		height: 70px;
	}
	
	.contact-icon img {
		width: 40px;
		height: 40px;
	}
	
	.contact-label {
		font-size: 13px;
	}
	
	.contact-value {
		font-size: 16px;
	}
	
	.contact-sub-label {
		font-size: 12px;
	}
	
	.contact-sub-value {
		font-size: 14px;
	}
}

/* abuot_box_2 在线留言样式 */
.abuot_box_2 {
	padding: 0;
	background: #f8f9fa;
}

.message-section {
	display: flex;
	min-height: 600px;
}

.message-form-wrapper {
	flex: 0 0 50%;
	background: #fff;
	padding: 60px 80px;
}

.message-title {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin: 0 0 40px 0;
	line-height: 1.2;
}

.message-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.form-group {
	flex: 1;
}

.form-group.full-width {
	flex: none;
	width: 100%;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 15px;
	color: #333;
	background: #fff;
	transition: all 0.3s ease;
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.form-input:focus,
.form-textarea:focus {
	border-color: #057eb7;
	outline: none;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 120px;
}

.form-submit {
	width: 180px;
	padding: 15px 30px;
	background: #666;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-submit:hover {
	background: #555;
}

.message-map {
	flex: 1;
	overflow: hidden;
}

.message-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.message-form-wrapper {
		padding: 50px 60px;
	}
	
	.message-title {
		font-size: 28px;
		margin-bottom: 35px;
	}
	
	.form-input,
	.form-textarea {
		padding: 10px 12px;
		font-size: 14px;
	}
	
	.form-submit {
		padding: 12px 25px;
		font-size: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.message-section {
		min-height: 550px;
	}
	
	.message-form-wrapper {
		flex: 0 0 50%;
		padding: 40px 40px;
	}
	
	.message-title {
		font-size: 26px;
		margin-bottom: 30px;
	}
	
	.message-form {
		gap: 15px;
	}
	
	.form-row {
		gap: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.message-section {
		flex-direction: column;
		min-height: auto;
	}
	
	.message-form-wrapper {
		flex: none;
		width: 100%;
		padding: 40px 20px;
	}
	
	.message-title {
		font-size: 24px;
		margin-bottom: 25px;
		text-align: center;
	}
	
	.form-row {
		flex-direction: column;
		gap: 15px;
	}
	
	.form-group {
		width: 100%;
	}
	
	.message-map {
		width: 100%;
		height: 400px;
	}
}

@media only screen and (max-width: 480px) {
	.message-form-wrapper {
		padding: 30px 15px;
	}
	
	.message-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	
	.message-form {
		gap: 12px;
	}
	
	.form-row {
		gap: 12px;
	}
	
	.form-input,
	.form-textarea {
		padding: 10px 12px;
		font-size: 14px;
	}
	
	.form-submit {
		padding: 12px 20px;
		font-size: 14px;
	}
	
	.message-map {
		height: 300px;
	}
}

/* xiazai_box 下载页面样式 */
.xiazai_box {
	padding: 60px 0;
	background: #f8f9fa;
}

.download-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

/* 左侧分类菜单 */
.download-sidebar {
	flex: 0 0 200px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.category-item {
	border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child {
	border-bottom: none;
}

.category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
}

.category-header:hover {
	background: #f8f9fa;
}

.category-title {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.category-arrow {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
	object-fit: contain;
}

.category-item.active .category-arrow {
	transform: rotate(180deg);
}

.category-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #f8f9fa;
}

.category-item.active .category-content {
	max-height: 500px;
}

.category-link {
	display: block;
	padding: 10px 20px 10px 35px;
	font-size: 14px;
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease;
}

.category-link:hover {
	color: #057eb7;
	background: #fff;
}

/* 右侧下载内容 */
.download-content {
	flex: 1;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.download-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 30px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 240px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.download-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.download-title {
	font-size: 20px;
	color: #333;
	font-weight: 600;
	text-align: center;
	margin: 0 0 30px 0;
	line-height: 1.6;
	flex: 1;
	display: flex;
	align-items: center;
}

.download-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
}

.download-btn:hover {
	color: #057eb7;
}

.download-btn:hover .download-icon {
	transform: translateX(5px);
}

.download-text {
	font-size: 16px;
	font-weight: 500;
}

.download-icon {
	width: 50px;
    height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.page-item,
.page-next,
.page-last {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #666;
	text-decoration: none;
	border-radius: 50%;
	font-size: 14px;
	transition: all 0.3s ease;
}

.page-item:hover,
.page-next:hover,
.page-last:hover {
	background: #057eb7;
	color: #fff;
}

.page-item.active {
	background: #057eb7;
	color: #fff;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.xiazai_box {
		padding: 50px 0;
	}
	
	.download-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.download-card {
		padding: 35px 25px 25px;
		min-height: 220px;
		border-radius: 14px;
	}
	
	.download-title {
		font-size: 18px;
		margin-bottom: 25px;
	}
	
	.download-text {
		font-size: 15px;
	}
	
	.download-icon {
		width: 28px;
		height: 28px;
	}
}

@media only screen and (max-width: 1000px) {
	.download-sidebar {
		flex: 0 0 180px;
	}
	
	.category-title {
		font-size: 15px;
	}
	
	.download-grid {
		gap: 20px;
	}
	
	.download-card {
		border-radius: 12px;
	}
}

@media only screen and (max-width: 750px) {
	.xiazai_box {
		padding: 40px 0;
	}
	
	.download-layout {
		flex-direction: column;
		gap: 20px;
	}
	
	.download-sidebar {
		flex: none;
		width: 100%;
	}
	
	.download-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 30px;
	}
	
	.download-card {
		padding: 30px 20px 20px;
		min-height: 200px;
		border-radius: 12px;
	}
	
	.download-title {
		font-size: 17px;
		margin-bottom: 20px;
	}
	
	.download-text {
		font-size: 15px;
	}
	
	.download-icon {
		width: 26px;
		height: 26px;
	}
	
	.page-item,
	.page-next,
	.page-last {
		width: 35px;
		height: 35px;
		font-size: 13px;
	}
}

@media only screen and (max-width: 480px) {
	.xiazai_box {
		padding: 30px 0;
	}
	
	.download-card {
		padding: 25px 15px 18px;
		min-height: 180px;
	}
	
	.download-title {
		font-size: 16px;
		margin-bottom: 18px;
	}
	
	.download-text {
		font-size: 14px;
	}
	
	.download-icon {
		width: 40px;
        height: auto;
	}
}

/* 下载弹窗样式 */
.download-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.download-modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.modal-content {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 50px 60px;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.download-modal.active .modal-content {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border: none;
	background: #f5f5f5;
	color: #666;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	background: #057eb7;
	color: #fff;
	transform: rotate(90deg);
}

.modal-title {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin: 0 0 10px 0;
	text-align: center;
}

.modal-subtitle {
	font-size: 14px;
	color: #999;
	text-align: center;
	margin: 0 0 40px 0;
	line-height: 1.6;
}

.download-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	width: 100%;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	color: #333;
	transition: all 0.3s ease;
	font-family: inherit;
	box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #057eb7;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #999;
}

.form-textarea {
	resize: vertical;
	min-height: 100px;
}

.form-submit {
	width: 100%;
	padding: 16px 30px;
	background: linear-gradient(135deg, #057eb7 0%, #0d47a1 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.form-submit:active {
	transform: translateY(0);
}

/* 弹窗响应式 */
@media only screen and (max-width: 750px) {
	.modal-content {
		padding: 40px 30px;
		width: 95%;
	}
	
	.modal-title {
		font-size: 24px;
	}
	
	.modal-subtitle {
		font-size: 13px;
		margin-bottom: 30px;
	}
	
	.download-form {
		gap: 16px;
	}
	
	.form-input,
	.form-textarea {
		padding: 12px 16px;
		font-size: 14px;
	}
	
	.form-submit {
		padding: 14px 25px;
		font-size: 15px;
	}
}

@media only screen and (max-width: 480px) {
	.modal-content {
		padding: 30px 20px;
	}
	
	.modal-close {
		width: 35px;
		height: 35px;
		font-size: 24px;
		top: 15px;
		right: 15px;
	}
	
	.modal-title {
		font-size: 22px;
	}
	
	.modal-subtitle {
		font-size: 12px;
		margin-bottom: 25px;
	}
	
	.download-form {
		gap: 14px;
	}
	
	.form-input,
	.form-textarea {
		padding: 11px 14px;
		font-size: 14px;
	}
	
	.form-submit {
		padding: 13px 20px;
		font-size: 15px;
	}
}

/* gy_box_1 公司介绍样式 */
.gy_box_1 {
	padding: 80px 0;
	background: #fff;
}

.gy-main-title {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.2;
}

.gy-content {
	margin-bottom: 80px;
}

.gy-text {
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin-bottom: 25px;
	text-align: justify;
}

.gy-text:last-child {
	margin-bottom: 0;
}

.gy-stats {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}

.gy-stat-item {
	flex: 1;
	text-align: center;
}

.gy-stat-number {
	font-size: 48px;
	font-weight: 700;
	color: #057eb7;
	margin-bottom: 20px;
	line-height: 1;
	padding-bottom: 15px;
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
}

.gy-stat-unit {
	font-size: 16px;
	font-weight: 400;
	color: #999;
}

.gy-stat-label {
	gap: 5px;
    text-align: center;
}

.gy-stat-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	flex-shrink: 0;
}

.gy-stat-label span {
	font-size: 16px;
	color: #333;
	line-height: 1.4;
	display: inline-block;
	margin-left: 5px;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.gy_box_1 {
		padding: 70px 0;
	}
	
	.gy-main-title {
		font-size: 32px;
		margin-bottom: 50px;
	}
	
	.gy-content {
		margin-bottom: 70px;
	}
	
	.gy-text {
		font-size: 15px;
		margin-bottom: 22px;
	}
	
	.gy-stats {
		gap: 30px;
	}
	
	.gy-stat-number {
		font-size: 42px;
		margin-bottom: 18px;
		padding-bottom: 12px;
	}
	
	.gy-stat-unit {
		font-size: 22px;
	}
	
	.gy-stat-icon {
		width: 22px;
		height: 22px;
	}
	
	.gy-stat-label span {
		font-size: 13px;
		color: #333;
	}
}

@media only screen and (max-width: 1000px) {
	.gy-stats {
		flex-wrap: wrap;
		gap: 40px 20px;
	}
	
	.gy-stat-item {
		flex: 0 0 calc(50% - 10px);
	}
	
	.gy-stat-item:last-child {
		flex: 0 0 100%;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 750px) {
	.gy_box_1 {
		padding: 50px 0;
	}
	
	.gy-main-title {
		font-size: 26px;
		margin-bottom: 40px;
	}
	
	.gy-content {
		margin-bottom: 50px;
	}
	
	.gy-text {
		font-size: 14px;
		margin-bottom: 20px;
		line-height: 1.8;
	}
	
	.gy-stats {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 35px 20px;
	}
	
	.gy-stat-item:last-child {
		grid-column: 1;
		justify-self: start;
	}
	
	.gy-stat-number {
		font-size: 36px;
		margin-bottom: 15px;
		padding-bottom: 10px;
	}
	
	.gy-stat-unit {
		font-size: 20px;
	}
	
	.gy-stat-icon {
		width: 20px;
		height: 20px;
	}
	
	.gy-stat-label {
		gap: 6px;
	}
	
	.gy-stat-label span {
		font-size: 12px;
		color: #333;
	}
}

@media only screen and (max-width: 480px) {
	.gy_box_1 {
		padding: 40px 0;
	}
	
	.gy-main-title {
		font-size: 22px;
		margin-bottom: 35px;
	}
	
	.gy-content {
		margin-bottom: 40px;
	}
	
	.gy-text {
		font-size: 13px;
		margin-bottom: 18px;
		line-height: 1.7;
	}
	
	.gy-stats {
		gap: 30px;
	}
	
	.gy-stat-number {
		font-size: 32px;
		margin-bottom: 12px;
		padding-bottom: 8px;
	}
	
	.gy-stat-unit {
		font-size: 18px;
	}
	
	.gy-stat-icon {
		width: 18px;
		height: 18px;
	}
	
	.gy-stat-label {
		gap: 6px;
	}
	
	.gy-stat-label span {
		font-size: 11px;
		color: #333;
	}
}
/* gy_box_2 核心价值观样式 */
.gy_box_2 {
	position: relative;
	overflow: hidden;
	height: 1000px;
}

.gy_box_2 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gy_box_2 .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.core-title {
	font-size: 36px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.core-subtitle {
	font-size: 24px;
	color: #fff;
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.6;
	opacity: 0.9;
}

.core-values {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0px;
	margin-bottom: 80px;
}

.core-value-item {
	flex: 1;
	text-align: center;
}

.value-title {
	font-size: 36px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 30px 0;
	line-height: 1.2;
}

.value-text {
	font-size: 24px;
	color: #fff;
	margin: 0 0 8px 0;
	line-height: 1.5;
	opacity: 0.9;
}

.value-text:last-child {
	margin-bottom: 0;
}

.culture-logo {
	font-size: 96px;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
	text-align: center;
	letter-spacing: 8px;
	line-height: 1;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.gy_box_2 {
		height: 800px;
	}
	
	.core-title {
		font-size: 42px;
		margin-bottom: 18px;
	}
	
	.core-subtitle {
		font-size: 15px;
		margin-bottom: 50px;
	}
	
	.core-values {
		gap: 60px;
		margin-bottom: 70px;
	}
	
	.value-title {
		font-size: 22px;
		margin-bottom: 25px;
	}
	
	.value-text {
		font-size: 15px;
	}
	
	.culture-logo {
		font-size: 84px;
		letter-spacing: 6px;
	}
}

@media only screen and (max-width: 1000px) {
	.gy_box_2 {
		height: 700px;
	}
	
	.core-title {
		font-size: 36px;
		margin-bottom: 16px;
	}
	
	.core-subtitle {
		font-size: 14px;
		margin-bottom: 40px;
	}
	
	.core-values {
		gap: 40px;
		margin-bottom: 60px;
	}
	
	.value-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.value-text {
		font-size: 14px;
	}
	
	.culture-logo {
		font-size: 72px;
		letter-spacing: 4px;
	}
}

@media only screen and (max-width: 750px) {
	.gy_box_2 {
		height: 600px;
	}
	
	.gy_box_2 .text {
		padding: 40px 20px;
	}
	
	.core-title {
		font-size: 28px;
		margin-bottom: 15px;
	}
	
	.core-subtitle {
		font-size: 13px;
		margin-bottom: 35px;
		padding: 0 10px;
		line-height: 1.8;
	}
	
	.core-values {
		gap: 15px;
		margin-bottom: 40px;
	}
	
	.core-value-item {
		text-align: center;
		flex: 1;
	}
	
	.value-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.value-text {
		font-size: 11px;
		margin-bottom: 3px;
		line-height: 1.4;
		text-align: center;
	}
	
	.culture-logo {
		font-size: 48px;
		letter-spacing: 2px;
	}
}

@media only screen and (max-width: 480px) {
	.gy_box_2 {
		height: 350px;
	}
	
	.gy_box_2 .text {
		padding: 30px 10px;
	}
	
	.core-title {
		font-size: 22px;
		margin-bottom: 10px;
	}
	
	.core-subtitle {
		font-size: 11px;
		margin-bottom: 25px;
		padding: 0 5px;
		line-height: 1.6;
	}
	
	.core-values {
		gap: 8px;
		margin-bottom: 30px;
	}
	
	.core-value-item {
		text-align: center;
		flex: 1;
	}
	
	.value-title {
		font-size: 14px;
		margin-bottom: 8px;
	}
	
	.value-text {
		font-size: 10px;
		margin-bottom: 2px;
		line-height: 1.3;
		text-align: center;
	}
	
	.culture-logo {
		font-size: 32px;
		letter-spacing: 1px;
	}
}

/* gy_box_3 合作伙伴轮播样式 */
.gy_box_3 {
	padding: 80px 0;
	/* background: #f8f9fa; */
}

.partners-title {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.2;
}

.partners-swiper-top,
.partners-swiper-bottom {
	margin-bottom: 40px;
	overflow: hidden;
}

.partners-swiper-top {
	direction: rtl;
}

.partners-swiper-bottom {
	margin-bottom: 0;
	direction: ltr;
}

.partners-swiper-top .swiper-slide,
.partners-swiper-bottom .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
}

.partners-swiper-top .swiper-slide img,
.partners-swiper-bottom .swiper-slide img {
	max-width: 100%;
	max-height: 90px;
	object-fit: contain;
	opacity: 1;
	transition: all 0.3s ease;
}

.partners-swiper-top .swiper-slide:hover img,
.partners-swiper-bottom .swiper-slide:hover img {
	opacity: 1;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.gy_box_3 {
		padding: 70px 0;
	}
	
	.partners-title {
		font-size: 32px;
		margin-bottom: 50px;
	}
	
	.partners-swiper-top .swiper-slide,
	.partners-swiper-bottom .swiper-slide {
		height: 105px;
	}
	
	.partners-swiper-top .swiper-slide img,
	.partners-swiper-bottom .swiper-slide img {
		max-height: 75px;
	}
}

@media only screen and (max-width: 750px) {
	.gy_box_3 {
		padding: 50px 0;
	}
	
	.partners-title {
		font-size: 24px;
		margin-bottom: 40px;
	}
	
	.partners-swiper-top,
	.partners-swiper-bottom {
		margin-bottom: 30px;
	}
	
	.partners-swiper-bottom {
		margin-bottom: 0;
	}
	
	.partners-swiper-top .swiper-slide,
	.partners-swiper-bottom .swiper-slide {
		height: 90px;
	}
	
	.partners-swiper-top .swiper-slide img,
	.partners-swiper-bottom .swiper-slide img {
		max-height: 60px;
	}
}

@media only screen and (max-width: 480px) {
	.gy_box_3 {
		padding: 40px 0;
	}
	
	.partners-title {
		font-size: 20px;
		margin-bottom: 30px;
	}
	
	.partners-swiper-top,
	.partners-swiper-bottom {
		margin-bottom: 25px;
	}
	
	.partners-swiper-bottom {
		margin-bottom: 0;
	}
	
	.partners-swiper-top .swiper-slide,
	.partners-swiper-bottom .swiper-slide {
		height: 75px;
	}
	
	.partners-swiper-top .swiper-slide img,
	.partners-swiper-bottom .swiper-slide img {
		max-height: 52px;
	}
}
/* gy_box_4 资质荣誉轮播样式 */
.gy_box_4 {
	padding: 80px 0;
	background: #fff;
}

.gy_box_4-title {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.2;
}

.gy_box_4-swiper-container {
	position: relative;
	overflow: hidden;
	padding: 0 40px;
}

.gy_box_4-swiper-container .swiper-slide {
	padding: 20px;
	border-radius: 12px;
	background: #fff;
	margin-bottom: 20px;
}

.gy_box_4-certificate {
	text-align: center;
	padding: 0;
}

.gy_box_4-certificate img {
	width: 70%;
	max-width: 70%;
	height: auto;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: none;
}

.gy_box_4-certificate:hover img {
	transform: translateY(-3px);
}

.gy_box_4-cert-name {
	font-size: 16px;
	color: #333;
	margin: 20px 0 0 0;
	font-weight: 500;
	line-height: 1.4;
}

.gy_box_4-swiper-pagination {
	text-align: center;
	margin-top: 40px;
}

/* 左右箭头样式 */
.gy_box_4-swiper-container .swiper-button-next,
.gy_box_4-swiper-container .swiper-button-prev {
	width: 35px;
	height: 35px;
	background: #057eb7;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gy_box_4-swiper-container .swiper-button-next:after,
.gy_box_4-swiper-container .swiper-button-prev:after {
	display: none;
}

/* 右箭头 */
.gy_box_4-swiper-container .swiper-button-next:before {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(45deg);
	margin-left: 2px;
}

/* 左箭头 */
.gy_box_4-swiper-container .swiper-button-prev:before {
	content: '';
	width: 8px;
	height: 8px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(-45deg);
	margin-right: 2px;
}
.gy_box_4 .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}

/* 响应式调整 */
@media only screen and (max-width: 1200px) {
	.gy_box_4 {
		padding: 70px 0;
	}
	
	.gy_box_4-title {
		font-size: 32px;
		margin-bottom: 50px;
	}
	
	.gy_box_4-certificate img {
		max-width: 280px;
	}
	
	.gy_box_4-cert-name {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.gy_box_4 {
		padding: 50px 0;
	}
	
	.gy_box_4-title {
		font-size: 26px;
		margin-bottom: 40px;
	}
	
	.gy_box_4-certificate {
		padding: 15px;
	}
	
	.gy_box_4-certificate img {
		max-width: 250px;
	}
	
	.gy_box_4-cert-name {
		font-size: 14px;
		margin-top: 15px;
	}
	
	.gy_box_4-swiper-container .swiper-slide {
		padding: 15px;
		margin-bottom: 15px;
	}
	
	.gy_box_4-swiper-pagination {
		margin-top: 30px;
	}
	
	.gy_box_4-swiper-container .swiper-button-next,
	.gy_box_4-swiper-container .swiper-button-prev {
		width: 30px;
		height: 30px;
	}
	
	.gy_box_4-swiper-container .swiper-button-next:before,
	.gy_box_4-swiper-container .swiper-button-prev:before {
		width: 6px;
		height: 6px;
		border-width: 1.5px;
	}
	
	.gy_box_4-swiper-button-prev,
	.gy_box_4-swiper-button-next {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}
	
	.gy_box_4-swiper-button-prev {
		left: -50px;
	}
	
	.gy_box_4-swiper-button-next {
		right: -50px;
	}
	.gy_box_4-swiper-container .swiper-button-next {
    right: 0px;
}
    .gy_box_4-swiper-container .swiper-button-prev {
        left: 0px;
    }
}

@media only screen and (max-width: 480px) {
	.gy_box_4 {
		padding: 40px 0;
	}
	
	.gy_box_4-title {
		font-size: 22px;
		margin-bottom: 30px;
	}
	
	.gy_box_4-certificate {
		padding: 10px;
	}
	
	.gy_box_4-certificate img {
		max-width: 220px;
	}
	
	.gy_box_4-cert-name {
		font-size: 13px;
		margin-top: 12px;
	}
	
	.gy_box_4-swiper-container .swiper-slide {
		padding: 12px;
		margin-bottom: 12px;
	}
	
	.gy_box_4-swiper-pagination {
		margin-top: 25px;
	}
	
	.gy_box_4-swiper-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin: 0 4px;
	}
	
	.gy_box_4-swiper-container .swiper-button-next,
	.gy_box_4-swiper-container .swiper-button-prev {
		width: 28px;
		height: 28px;
	}
	
	.gy_box_4-swiper-container .swiper-button-next:before,
	.gy_box_4-swiper-container .swiper-button-prev:before {
		width: 5px;
		height: 5px;
		border-width: 1.5px;
	}
	
	.gy_box_4-swiper-container .swiper-button-next:before {
		margin-left: 1px;
	}
	
	.gy_box_4-swiper-container .swiper-button-prev:before {
		margin-right: 1px;
	}

	
	.gy_box_4-swiper-container .swiper-button-next,
	.gy_box_4-swiper-container .swiper-button-prev {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.gy_box_4-swiper-container .swiper-button-next:after,
	.gy_box_4-swiper-container .swiper-button-prev:after {
		font-size: 16px;
	}
	
	.gy_box_4-swiper-container .swiper-button-prev {
		left: -0px;
	}
	
	.gy_box_4-swiper-container .swiper-button-next {
		right: -0px;
	}
	.gy_box_4-swiper-button-prev,
	.gy_box_4-swiper-button-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	
	.gy_box_4-swiper-button-prev {
		left: -45px;
	}
	
	.gy_box_4-swiper-button-next {
		right: -45px;
	}
}