/* 懒加载背景图片规则 */
.lazyload {
	opacity: 0;
	transition: opacity 0.5s;
}

.lazyloaded {
	opacity: 1;
}

/* 处理lazysizes的背景图片 */
.lazyload[data-bg] {
	background-image: none;
}

/* 处理CSS背景图懒加载 */
[data-bg-src] {
	background-image: none;
}

.xbg1{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* ========== 首屏样式 ========== */

/* 首屏容器 */
.hero_section {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: #FAFDFF;
}

/* 首屏Swiper */
.hero_swiper {
	width: 100%;
	height: 100%;
}

.hero_swiper .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* 首屏分页器 */
.hero_pagination {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.hero_pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(9, 46, 102, 0.3);
	opacity: 1;
	border-radius: 50%;
	transition: all 0.3s;
	cursor: pointer;
}

.hero_pagination .swiper-pagination-bullet-active {
	background: #092E66;
	width: 30px;
	border-radius: 6px;
}

/* 背景层 */
.bg_layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bg_main {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bg_overlay_1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(249, 251, 255, 0) 82%, rgba(250, 253, 255, 1) 100%);
}

.bg_overlay_2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 889px;
	height: 100%;
	background: linear-gradient(90deg, rgba(249, 251, 255, 0) 0%, rgba(249, 251, 255, 0.5) 100%);
}

/* 导航栏 */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 20px 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.navbar .xwidth {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav_left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo_icon {
	width: 30px;
	height: 30px;
	background: rgba(9, 46, 102, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.logo_icon img {
	width: 30px;
	height: 30px;
}

.logo_text {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.437;
	color: #092E66;
}

.nav_menu {
	display: flex;
	align-items: center;
	gap: 60px;
	height: 20px;
}

.nav_menu > .nav_item,
.nav_item_wrapper {
	display: flex;
	align-items: center;
}

.nav_item {
	font-size: 14px;
	line-height: 1.437;
	text-align: center;
	text-decoration: none;
	color: #1B2938;
	transition: opacity 0.3s;
	position: relative;
	padding-bottom: 8px;
}

.nav_item.active {
	font-weight: 600;
	opacity: 1;
}

.nav_item.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 2px;
	background: #092E66;
}

.nav_item:not(.active) {
	font-weight: 400;
	opacity: 0.7;
}

.nav_item:hover {
	opacity: 1;
}

/* 导航下拉菜单 */
.nav_item_wrapper {
	position: relative;
}

.nav_dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 160px;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(9, 46, 102, 0.12);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 200;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.nav_item_wrapper:hover .nav_dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.nav_dropdown_item {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	line-height: 1.5;
	color: #1B2938;
	text-decoration: none;
	text-align: center;
	transition: all 0.2s;
	white-space: nowrap;
}

.nav_dropdown_item:hover {
	background: rgba(9, 46, 102, 0.06);
	color: #092E66;
}

/* 主内容区 */
.hero_content {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 60px;
	/*filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));*/
	padding-top: 80px;
	box-sizing: border-box;
}

.content_wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}

.main_title {
	font-weight: 600;
	font-size: 64px;
	line-height: 1.437;
	margin: 0;
	background: linear-gradient(90deg, rgba(9, 46, 102, 1) 0%, rgba(47, 113, 189, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.subtitle {
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	color: #092E66;
	opacity: 0.7;
	margin: 0;
	width: 100%;
	margin-top: 30px;
}

.divider {
	width: 605px;
	height: 0;
	margin-top: 30px;
}

.divider img {
	width: 100%;
	height: auto;
	display: block;
}

/* 按钮组 */
.button_group {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin-top: 60px;
}

.btn_primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 16px 30px;
	background: linear-gradient(90deg, rgba(131, 184, 255, 1) 0%, rgba(170, 213, 255, 1) 100%);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
}

.btn_primary span {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.437;
	color: #092E66;
}

.btn_icon {
	width: 8px;
	height: 8px;
}

.btn_primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(131, 184, 255, 0.4);
}

.btn_secondary {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 30px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #AAD5FF;
	border-radius: 10px;
	height: 58px;
	cursor: pointer;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.3s;
}

.btn_secondary span {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.437;
	color: #092E66;
}

.btn_secondary:hover {
	background: rgba(255, 255, 255, 0.7);
	transform: translateY(-2px);
}

/* ========== 文化广场模块 ========== */

/* 文化广场容器 */
.culture_section {
	padding: 0 0px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

/* 标题区域 */
.culture_header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
	width: 100%;
}

.culture_title {
	
	font-weight: 500;
	font-size: 42px;
	line-height: 1.437;
	text-align: center;
	color: #1B2938;
	margin: 0;
}

.culture_subtitle {
	
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	text-align: center;
	color: #666666;
	margin: 0;
}

/* 金三角图形区域 */
.culture_diagram {
	height: 700px;
	position: relative;
}

.triangle_container {
	width: 1008px;
	height: 524px;
	margin: 0 auto;
	/* box-shadow: 0px 0px 20px 0px rgba(22, 80, 147, 0.1); */
	z-index: 1;
	position: relative;
}

.triangle_lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* 连接线图片 */
.triangle_line {
	position: absolute;
	z-index: 1;
}

.triangle_line_left {
	left: 222px;
	top: 108px;
	width: 210px;
	height: 24px;
}

.triangle_line_right {
	left: 576px;
	top: 108px;
	width: 210px;
	height: 24px;
}

.triangle_line_diagonal {
	left: 198px;
	top: 216px;
	width: 201px;
	height: 119px;
	transform: scaleX(-1);
}

.triangle_line_diagonal_right {
	left: 607px;
	top: 216px;
	width: 201px;
	height: 119px;
}

.triangle_line_middle {
	left: 491px;
	top: 200px;
	width: 24px;
	height: 93px;
}

/* 节点样式 */
.node {
	position: absolute;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.node_inner {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: none;
}

/* 财产权节点 */
.node_property {
	left: 0;
	top: 0;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle at 50% 100%, rgba(169, 204, 248, 1) 0%, rgba(126, 168, 221, 1) 38%, rgba(9, 46, 102, 1) 100%);
}

.node_property .node_inner {
	border: 0.5px solid #FFFFFF;
}

/* 消费权节点 */
.node_consume {
	right: 0;
	top: 0;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle at 50% 100%, rgba(169, 204, 248, 1) 0%, rgba(126, 168, 221, 1) 38%, rgba(9, 46, 102, 1) 100%);
}

.node_consume .node_inner {
	border: 0.5px solid #FFFFFF;
}

/* 经营权节点 */
.node_manage {
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle at 50% 100%, rgba(169, 204, 248, 1) 0%, rgba(126, 168, 221, 1) 38%, rgba(9, 46, 102, 1) 100%);
}

.node_manage .node_inner {
	border: 0.5px solid #FFFFFF;
}

/* 财源无疆节点(顶部) */
.node_top {
	left: 50%;
	transform: translateX(-50%);
	top: 30px;
	width: 180px;
	height: 180px;
	box-sizing: border-box;
	background: linear-gradient(180deg, rgba(255, 254, 254, 1) 50%, rgba(254, 237, 220, 1) 100%);
	border: 0.73px solid #FF9C31;
}

.node_top .node_inner {
	border: 0.36px solid #FF9C31;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
}

.node_top .node_title {
	color: #E5851D;
}

.node_top .node_desc {
	color: #E5851D;
}

/* 节点图标 */
.node_icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.node_icon img {
	width: 100%;
	height: 100%;
}

/* 节点内容 */
.node_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 155px;
}

.node_title {
	
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	text-align: center;
	color: #FFFFFF;
}

.node_desc {
	
	font-weight: 500;
	font-size: 16px;
	line-height: 1.437;
	text-align: center;
	color: #FFFFFF;
	opacity: 0.7;
}

/* 标签卡片 */
.tag_cards {
	position: absolute;
	top: 247px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 290px;
	z-index: 3;
}

.tag_card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: #E3F1FF;
	border: 1px solid #9DC3EF;
	border-radius: 8px;
}

.tag_card span {
	
	font-weight: 500;
	font-size: 16px;
	line-height: 1.437;
	text-align: center;
	color: #092E66;
}

/* 底部卡片区域 */
.culture_card_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	gap: 24px;
	z-index: 10;
	background: transparent;
	margin-top: 60px;
}

/* 卡片样式 */
.culture_card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-sizing: border-box;
	height: 116px;
}

.culture_card:hover {
	background: linear-gradient(89deg, rgba(22, 80, 147, 1) 0%, rgba(118, 186, 255, 1) 100%);
}

.culture_card.card_link {
	background: rgba(255, 255, 255, 0.8);
	justify-content: space-between;

}

.card_icon {
	width: 56px;
	height: 56px;
	border-radius: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.card_icon img {
	width: 56px;
	height: 56px;
}


.card_title {
	
	font-weight: 500;
	font-size: 18px;
	line-height: 1.437;
	color: #1B2938;
	margin: 0;
}

.card_desc {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #666666;
	margin: 0;
}

/* 文化广场模块卡片特定样式 */


.culture_card:hover .card_title {
	color: #FFFFFF;
}

.culture_card:hover .card_desc {
	color: rgba(255, 255, 255, 0.7);
	height: 40px;
}

/* 链接卡片 */
.card_link_text {
	
	font-weight: 500;
	font-size: 18px;
	line-height: 1.437;
	color: #666666;
}

.card_link_btn {
	width: 48px;
	height: 48px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}

.card_link_btn:hover {
	transform: scale(1.1);
}

.card_link_btn img {
	width: 48px;
	height: 48px;
}

/* ========== 文化广场动画效果 ========== */

/* 动画初始状态 */
[data-culture-animate] .node,
[data-culture-animate] .triangle_line,
[data-culture-animate] .tag_cards,
[data-culture-animate] .culture_card_list {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-culture-animate] .node_top {
	transform: translateX(-50%) scale(0.5);
}

[data-culture-animate] .node_property {
	transform: translate(-50px, -50px) scale(0.5);
}

[data-culture-animate] .node_consume {
	transform: translate(50px, -50px) scale(0.5);
}

[data-culture-animate] .node_manage {
	transform: translate(-50%, 50px) scale(0.5);
}

[data-culture-animate] .triangle_line_left {
	transform: translateX(-30px);
}

[data-culture-animate] .triangle_line_right {
	transform: translateX(30px);
}

[data-culture-animate] .triangle_line_diagonal {
	transform: scaleX(-1) translateX(-30px);
}

[data-culture-animate] .triangle_line_diagonal_right {
	transform: translateX(30px);
}

[data-culture-animate] .triangle_line_middle {
	transform: scaleY(0);
	transform-origin: top;
}

[data-culture-animate] .tag_cards {
	transform: translateX(-50%) translateY(20px);
}

[data-culture-animate] .culture_card_list {
	transform: translateY(40px);
}

[data-culture-animate] .culture_card {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 财源无疆光晕效果 */
.node_glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 156, 49, 0.4) 0%, rgba(255, 156, 49, 0) 70%);
	opacity: 0;
	pointer-events: none;
}

/* 动画激活状态 */
[data-culture-animate].culture-animated .node_top {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}

[data-culture-animate].culture-animated .node_top .node_glow {
	animation: nodeGlowPulse 2s ease-in-out infinite;
}

[data-culture-animate].culture-animated .triangle_line {
	opacity: 1;
	transform: translate(0) scaleX(1) scaleY(1);
}

[data-culture-animate].culture-animated .triangle_line_diagonal {
	transform: scaleX(-1);
}

[data-culture-animate].culture-animated .triangle_line_diagonal_right {
	transform: translateX(0);
}

[data-culture-animate].culture-animated .node_property {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

[data-culture-animate].culture-animated .node_consume {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

[data-culture-animate].culture-animated .node_manage {
	opacity: 1;
	transform: translate(-50%, 0) scale(1);
}

[data-culture-animate].culture-animated .tag_cards {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

[data-culture-animate].culture-animated .culture_card_list {
	opacity: 1;
	transform: translateY(0);
}

[data-culture-animate].culture-animated .culture_card {
	opacity: 1;
	transform: translateY(0);
}

/* 光晕脉冲动画 */
@keyframes nodeGlowPulse {
	0%, 100% {
		opacity: 0.4;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

/* 节点出现动画 */
@keyframes nodeAppear {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* ========== 社会课程模块 ========== */

/* 课程模块容器 */
.course_section {
	position: relative;
	width: 100%;
	height: 900px;
	margin: 0 auto;
	overflow: hidden;
}

/* 背景层 */
.course_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F6FBFF;
	z-index: 1;
}

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

.course_bg_overlay1 {
	position: absolute;
	top: 4.3%;
	right: 0;
	width: 38.4%;
	height: 95.6%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 15%, rgba(255, 255, 255, 1) 63%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.course_bg_overlay2 {
	position: absolute;
	bottom: 0;
	left: 24.7%;
	width: 21.3%;
	height: 45.3%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 1) 33%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

/* 课程卡片容器 */
.course_cards {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: stretch;
	height: 100%;
	width: 100%;
}

/* 卡片基础样式 */
.course_card {
	flex: 1;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding: 100px 40px;
	background: linear-gradient(180deg, rgba(9, 46, 102, 0.2) 0%, rgba(9, 46, 102, 1) 100%);
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	box-sizing: border-box;
	transition: all 0.3s ease;
}

.course_card:last-child {
	border-right: none;
}

/* hover状态卡片 */
.course_card_hover {
	/* background: linear-gradient(180deg, rgba(170, 213, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	/* padding: 5.6% 6.25%; */
	align-items: center;

	background: linear-gradient(180deg, rgba(170, 213, 255, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%);
}

/* 卡片内容 */
.course_card_content {
	width: 100%;
	max-width: 240px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.course_card_hover .course_card_content {
	justify-content: center;
	align-items: center;
}

/* 课程标签 */
.course_badge {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 20px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid #FFFFFF;
	border-radius: 345px;
	width: fit-content;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.course_badge_hover {
	background: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(170, 213, 255, 0.5);
}

.course_badge span {
	
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #FFFFFF;
}

.course_badge_hover span {
	color: #666666;
}

/* 课程图片区域 */
.course_image {
	width: 100%;
	height: 0;
	opacity: 0;
	overflow: hidden;
	border-radius: 10px;
	transition: all 0.3s ease;
}

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

.course_card_hover .course_image {
	height: 280px;
	opacity: 1;
}

/* 课程标题 */
.course_title {
	
	font-weight: 500;
	font-size: 20px;
	line-height: 1.437;
	color: #FFFFFF;
	margin: 0;
}

.course_card_hover .course_title {
	color: #1B2938;
}

/* 课程描述 */
.course_desc {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	/*height: 80px;*/
	overflow: hidden;
}

.course_card_hover .course_desc {
	color: #666666;
}

/* 了解更多按钮 */
.course_btn {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 14px 20px;
	background: linear-gradient(90deg, rgba(131, 184, 255, 1) 0%, rgba(170, 213, 255, 1) 100%);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
}

.course_card_hover .course_btn {
	display: flex;
}

.course_btn span {
	
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #092E66;
}

.course_btn img {
	width: 8px;
	height: 8px;
}

.course_btn:hover {
	transform: scale(1.05);
}

/* 响应式适配 */
@media screen and (max-width: 1400px) {
	.course_section {
		height: 800px;
	}

	.course_card {
		padding: 100px 40px;
	}

	.course_card_content {
		max-width: 200px;
		gap: 20px;
	}

	.course_card_hover .course_image {
		height: 220px;
	}

	.course_badge span {
		font-size: 14px;
	}

	.course_title {
		font-size: 18px;
	}

	.course_desc {
		font-size: 13px;
		height: 70px;
	}
}

@media screen and (max-width: 1200px) {
	.course_cards {
		overflow-x: auto;
		width: auto;
	}

	.course_card {
		flex: 0 0 280px;
		width: 280px;
	}
}

@media screen and (max-width: 768px) {
	.course_section {
		height: auto;
		min-height: 600px;
	}

	.course_bg_overlay1,
	.course_bg_overlay2 {
		display: none;
	}

	.course_cards {
		flex-direction: column;
		height: auto;
		overflow-x: visible;
	}

	.course_card {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		min-height: 400px;
		padding: 40px 30px;
	}

	.course_card_hover {
		padding: 30px;
	}

	.course_card_content {
		max-width: 400px;
	}

	.course_card_hover .course_image {
		height: 250px;
	}
}

/* ========== 关于我们模块 ========== */

/* 关于我们容器 */
.about_section {
	position: relative;
	padding: 100px 0;
	padding-left: 12.5vw;
	overflow: hidden;
}

/* 背景层 */
.about_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.about_bg_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0.4;
}

.about_section .xwidth {
	position: relative;
	z-index: 2;
}

/* 内容区 */
.about_content {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	width: 100%;
}

/* 左侧内容 */
.about_left {
	flex: 0 0 640px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.about_header {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.about_title {
	font-weight: 600;
	font-size: 42px;
	line-height: 1.437;
	color: #1B2938;
	margin: 0;
}

.about_subtitle {
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	color: #666666;
	margin: 0;
}

.about_text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow: hidden;
}

.about_text p {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #666666;
	margin: 0;
	text-align: justify;
}

/* 了解更多按钮 */
.about_btn {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 16px 30px;
	background: #FFFFFF;
	border: 1px solid #AAD5FF;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
	width: fit-content;
}

.about_btn span {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.437;
	color: #092E66;
}

.about_btn_icon {
	width: 8px;
	height: 8px;
}

.about_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(170, 213, 255, 0.3);
}

/* 右侧卡片轮播 */
.about_right {
	flex: 1;
	min-width: 0;
	position: relative;
}

.about_swiper {
	width: 100%;
	position: relative;
	padding-bottom: 60px;
	overflow: hidden;
}

.about_swiper .swiper-slide {
	width: 680px !important;
}

/* 分页器样式 */
.about_swiper .swiper-pagination {
	position: absolute;
	bottom: 0 !important;
	top: auto !important;
	left: 180px;
	width: 320px;
	height: 4px;
	display: flex;
	align-items: center;
	border-radius: 22px;
	background: #FFF;
}
.about_swiper .swiper-pagination .swiper-pagination-progressbar-fill{
	background: #092E66;
}
/* 卡片样式 */
.about_card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	width: 680px;
	box-sizing: border-box;
	padding: 30px ;

}

.card_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 680px;
	height: 434px;
	z-index: -1;
}

.card_bg_img {
	width: 100%;
	height: 100%;
	display: block;
}

/* 卡片图片区 */
.card_image {
	position: relative;
	z-index: 2;
	width: 620px;
	height: 250px;
	border-radius: 20px;
	overflow: hidden;
}

.card_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.card_more {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}

.card_more:hover {
	transform: scale(1.1);
}

.card_more img {
	width: 48px;
	height: 48px;
}

/* 卡片内容区 */
.card_content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.about_card .card_content{
	margin-top: 20px;
}
.card_title {
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	color: #1B2938;
	margin: 0;
}

.card_desc {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #999999;
	margin: 0;
	text-align: justify;
}




/* 介绍模块容器 */
.intro_section {
	position: relative;
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	overflow: hidden;
	background-image: url('../images/intro_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

}

/* 背景层 */
.intro_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F9FDFF;
	z-index: 1;
}

.intro_bg_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
}

.intro_bg_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(249, 251, 255, 1) 100%);
}
.intro_section_content{
	height: 100%;
	display: flex;
}
/* 左侧内容 */
.intro_left {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 508px;
	box-sizing: border-box;
	padding: 80px 0 120px 0;
}

.intro_header {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.intro_title {
	
	font-weight: 500;
	font-size: 42px;
	line-height: 1.437;
	color: #1B2938;
	margin: 0;
}

.intro_subtitle {
	
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	color: #666666;
	margin: 0;
}

.intro_content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.intro_desc {
	
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #666666;
	margin: 0;
}

.intro_btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 14px 20px;
	background: linear-gradient(90deg, rgba(131, 184, 255, 1) 0%, rgba(170, 213, 255, 1) 100%);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
	width: fit-content;
}

.intro_btn span {
	
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #092E66;
}

.intro_btn img {
	width: 8px;
	height: 8px;
}

.intro_btn:hover {
	transform: scale(1.05);
}

/* 进度条和分页器 */
.intro_progress {
	box-sizing: border-box;
	width: 4px;
	height: 100%;
	z-index: 20;
	position: relative;
	margin: 0 51px 0 61px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;


}


.progress_item {
	position: absolute;
	left: -19px;
	width: 42px;
	height: 42px;
}

.progress_item:nth-child(1) {
	top: calc(50% - 320px);
	transform: translateY(-50%);
}

.progress_item:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.progress_item:nth-child(3) {
	top: calc(50% + 362px);
	transform: translateY(-50%);
}

.progress_dot {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F6FBFF;
	transition: all 0.3s;
}

.progress_item.active .progress_dot {
	background: #092E66;
}

.progress_dot span {
	
	font-weight: 600;
	font-size: 20px;
	line-height: 1.437;
	color: #092E66;
}

.progress_item.active .progress_dot span {
	color: #FFFFFF;
}

/* 右侧Swiper */
.intro_right {
	width: 820px;
	height: 100%;
	z-index: 10;
	position: relative;
}

.intro_swiper {
	width: 100%;
	height: 100%;
}
.intro_swiper .intro_card{
	background-image: url('../images/intro_card1.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.intro_swiper .swiper-slide.swiper-slide-active .intro_card{
	background-image: url('../images/intro_card2.png');
}
.intro_swiper .swiper-slide {
	height: 320px !important;
	width: 100%;
	flex-shrink: 0;
	margin: 20px 0;
	
}

/* 卡片样式 */
.intro_card {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


.intro_card_image {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 280px;
	height: 280px;
	border-radius: 8px;
	overflow: hidden;
	background: #F6FBFF;
}

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

.intro_card .intro_card_image img {
	margin-top: -14px;
	height: 294px;
}



.intro_card_content {
	position: absolute;
	top: 59px;
	left: 370px;
	width: 380px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.intro_card_info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.intro_card_category {
	
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #666666;
	text-align: center;
}
.intro_swiper .swiper-slide.swiper-slide-active .intro_card_category {
	color: #fff;
}

.intro_card_title {
	
	font-weight: 500;
	font-size: 20px;
	line-height: 1.437;
	color: #1B2938;
	text-align: center;
	margin: 0;
}
.intro_swiper .swiper-slide.swiper-slide-active .intro_card_title {
	color: #fff;
}
.intro_card_desc {
	width: 340px;
	margin: 0 auto;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #666666;
	text-align: center;
}
.intro_swiper .swiper-slide.swiper-slide-active .intro_card_desc {
	color: #fff;
	opacity: 0.7;
}

.intro_card_btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s;
	width: fit-content;
	color: #333333;
	margin: 0 auto;
}

.intro_card_btn span {
	
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
}

.intro_card_btn img {
	width: 8px;
	height: 8px;
}

.intro_swiper .swiper-slide.swiper-slide-active .intro_card_btn {
	width: 124px;
	height: 48px;
	box-sizing: border-box;
	border-radius: 10px;
background: linear-gradient(90deg, #83B8FF 0%, #AAD5FF 100%);
overflow: hidden;
color: #092E66;
}

.intro_card_btn_active span {
	color: #092E66;
}

.intro_card_btn:hover {
	transform: translateX(5px);
}

/* 导航按钮 */
.intro_nav {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 30;
	user-select: none;
}

.intro_nav_btn {
	width: 64px;
	height: 64px;
	border-radius: 141px;
	background: rgba(255, 255, 255, 0.9);
	border: 1.33px solid #AAD5FF;
	box-shadow: 0px 0px 13.33px 0px rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}

.intro_nav_btn img {
	width: 11px;
	height: 19px;
}

.intro_nav_btn:hover {
	transform: scale(1.1);
}

/* ========== 荣誉资质模块 ========== */

/* 荣誉资质容器 */
.honor_section {
	position: relative;
	width: 100%;
	background: #F9FDFF;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	padding: 100px 0;
	overflow: hidden;
}

/* 内容区 */
.honor_content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 56px;
}

/* 标题行 */
.honor_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.honor_header_text {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.honor_title {
	font-weight: 500;
	font-size: 42px;
	line-height: 1.437;
	color: #1B2938;
	margin: 0;
}

.honor_subtitle {
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	color: #666666;
	margin: 0;
}

/* 查看全部按钮 */
.honor_btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 14px 20px;
	border: 1px solid rgba(9, 46, 102, 0.2);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
}

.honor_btn span {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #092E66;
}

.honor_btn img {
	width: 8px;
	height: 8px;
}

.honor_btn:hover {
	transform: scale(1.05);
	background: linear-gradient(90deg, rgba(131, 184, 255, 1) 0%, rgba(170, 213, 255, 1) 100%);
	
}

/* 证书卡片容器 */
.honor_cards {
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

/* 证书卡片 */
.honor_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.honor_card a{
    text-align: center;
}

.honor_card:hover {
	transform: translateY(-20px);
}

.honor_card:first-child {
	filter: drop-shadow(0px 0px 20px rgba(27, 41, 56, 0.2));
}

/* 证书图片容器 */
.honor_card_image {
	position: relative;
	width: 690px;
	height: 390px;
	background: #F9F9F9;
	border-radius: 15px;
	overflow: hidden;
	box-sizing: border-box;
	padding: 26px 155px;
}

.honor_card:first-child .honor_card_image {
	border: 1px solid #83B8FF;
}

.honor_card:last-child .honor_card_image {
	border: 1px solid #AAD5FF;
}


/* 椭圆装饰 */
.honor_card_ellipse {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 225px;
	z-index: 0;
}

/* 证书图片 */
.honor_card_image img {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0 auto;
	height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* 证书名称 */
.honor_card_name {
	width: 508px;
	text-align: center;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	color: #092E66;
}

/* ========== 资讯模块 ========== */

/* 资讯容器 */
.news_section {
	position: relative;
	width: 100%;
	background: #092E66;
	padding: 80px 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

/* 背景图 */
.news_bg_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

/* 标题装饰图 */
.news_title {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 84px;
}

.news_title img {
	height: 100%;
	width: auto;
	display: block;
}

/* 内容区 */
.news_content {
	position: relative;
	z-index: 1;
	width: 1440px;
	max-width: calc(100% - 80px);
	display: flex;
	justify-content: center;
	gap: 40px;
}

/* -------- 左侧：联系我们 -------- */
.news_contact {
	width: 740px;
	flex-shrink: 0;
}

.news_contact_card {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	height: 100%;
	box-sizing: border-box;
}

.news_company {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.news_company_name {
	font-weight: 500;
	font-size: 24px;
	line-height: 1.437;
	color: #FFFFFF;
	margin: 0;
	width: 672px;
}

.news_company_desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.437;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* 风景图 */
.news_landscape {
	width: 660px;
	height: 220px;
	border-radius: 10px;
	overflow: hidden;
}

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

/* 联系信息列表 */
.news_contact_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news_contact_item {
	width: calc(50% - 30px);
	display: flex;
	align-items: center;
	gap: 12px;
	width: 310px;
}
.news_contact_item_address{
	width: 100% !important;
	margin-top: 30px;
}

.news_contact_icon {
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.news_contact_icon img{
	width: 30px;
	height: 30px;
}
.news_contact_item:hover .news_contact_icon{
	background: #092E66;
	}

.news_contact_icon_white {
	background: #F9FDFF;
}

.news_contact_icon svg {
	width: 20px;
	height: 20px;
}

.news_contact_text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	justify-content: center;
}

.news_contact_label {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.437;
	color: rgba(255, 255, 255, 0.8);
}

.news_contact_value {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.437;
	color: #FFFFFF;
}

/* 公司地址的值需要更宽 */
.news_contact_item:last-child .news_contact_text {
	width: 448px;
}

/* -------- 右侧：加盟申请 -------- */
.news_form_wrap {
	position: relative;
	width: 660px;
	height: 548px;
	flex-shrink: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}



.news_form_card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 40px;
	box-sizing: border-box;
	width: 618px;
	height: 490px;
	border-radius: 20px;
	overflow: hidden;
	background: #FFF;
	margin: 29px 21px 29px 21px;
}

/* 表单字段区 */
.news_form_fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 538px;
}

.news_form_row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.news_form_field {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 259px;
}

.news_form_field_full {
	width: 538px;
}

.news_form_label {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #092E66;
}

.news_form_input {
	width: 100%;
	border: none;
	border-bottom: 1px dashed #CCCCCC;
	background: transparent;
	padding: 0 0 10px 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.437;
	color: #1B2938;
	outline: none;
	transition: border-color 0.3s;
}

.news_form_input::placeholder {
	color: #1B2938;
	opacity: 0.5;
}

.news_form_input:focus {
	border-bottom-color: #83B8FF;
}

/* 表单按钮区 */
.news_form_btns {
	margin: 0 auto;
	margin-top: 30px;
	display: flex;
	gap: 50px;
}

.news_form_btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
	background: transparent;
	border: 1px solid rgba(9, 46, 102, 0.2);
}

.news_form_btn span {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.437;
	letter-spacing: 0.06em;
	color: #092E66;
}

.news_form_btn img {
	width: 18px;
	height: 18px;
	transition: filter 0.3s;
}

.news_form_btn:hover {
	background: linear-gradient(90deg, rgba(131, 184, 255, 1) 0%, rgba(170, 213, 255, 1) 100%);
	border-color: transparent;
	transform: translateY(-2px);
}

.news_form_btn:hover img {
	filter: none;
}

/* ========== 底部栏 ========== */

/* 底部栏容器 */
.footer_section {
	background: #092E66;
	padding: 40px 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

/* 第一行 */
.footer_top {
	display: flex;
	justify-content: space-between;
}

/* 左侧：Logo + 简介 */
.footer_left {
	display: flex;
	flex-direction: column;
	gap: 31px;
	width: 350px;
	flex-shrink: 0;
}

.footer_logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer_logo .logo_icon {
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.footer_logo .logo_icon img {
		width: 30px;
	height: 30px;
}

.footer_logo_text {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.437;
	color: #FFFFFF;
}

.footer_desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.437;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	text-align: justify;
}

/* 导航区 */
.footer_nav {
	display: flex;
	justify-content: space-between;
	width: 1000px;
	flex-shrink: 0;
}

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

.footer_nav_col_narrow {
	width: 64px;
}

.footer_nav_col_contact {
	width: 223px;
}

.footer_nav_title {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.437;
	color: #FFFFFF;
	margin: 0;
}

.footer_nav_list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer_nav_list li a {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.437;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer_nav_list li a:hover {
	opacity: 1;
	color: #FFFFFF;
}

/* 资质中心链接稍亮 */
.footer_nav_col_narrow .footer_nav_list li a {
	color: rgba(255, 255, 255, 0.7);
}

/* 联系我们 - 联系信息 */
.footer_contact_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer_contact_item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer_contact_item span {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.372;
	color: rgba(255, 255, 255, 0.8);
}

.footer_contact_address {
	width: 193px;
}

/* 底部信息 */
.footer_bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}

.footer_divider {
	width: 100%;
	height: 0;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_bottom_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.footer_bottom_content span {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.372;
	color: rgba(255, 255, 255, 0.5);
}

.footer_bottom_content span:first-child {
	width: 265px;
}

.xxp-about .nav-sub > li:hover i{
    box-shadow: 0 5px 10px rgb(9 46 102 / 40%);
}

.xxp-about .nav-sub li i {
    border: none !important;
    background-size: 100% 100%;
    background-color: #fff;
}

.xxp-about-section{
    margin-top:70px;
}

.xxp-about-sectio-bottom{
    margin-bottom:80px;
}

.xxp-about .nav-sub li i{
    width: 150px;
    height: 150px;
}

.xxp-yuanxiao .container .sort .active{
    color: #092E66;
    font-weight: bold;
}

.xxp-yuanxiao .xxp-img-center img{
    height: 100%;
    max-width: none !important;
}

.xxp-yuanxiao .list-5 li .img-center{
    border-radius: 5px;
}
.xxp-yuanxiao .list-5 li .text{
    margin-top: 10px;
    margin-left: 95px;
}

.xxp-yuanxiao .list-5 li .text h4{
    font-weight: bold;
}

.xxp-yuanxiao .list-5 li:hover{
    background-color: #ffffff;
}


.xxp-yuanxiao .container .sort dd p a:hover, .sort dd p a.active{
    color: #092E66;
    font-weight: bold;
}

.xxp-yuanxiao .list-4 li .text .more{
    border-radius: 5px;
}


.xxp-yuanxiaoinfo .prd-gallery .text{
    background: none;
    background-color: rgb(9, 46, 102, 0.5);
}

.xxp-yuanxiaoinfo .prd-gallery .wrap{
    font-size: 15px;
}

.xxp-yuanxiao .ct2{
    position: unset;
    display: flex;
    justify-content: space-between;
}

.xxp-yuanxiao .ct2-mn{
    margin-right: 0;
}

.xxp-yuanxiao .list-5 li .text p{
    margin:0;
    color: #000;
}

.xxp-yuanxiao .ct2-sd{
    position: unset;
}

.xxp-message .message .form-submit{
    background: #092E66;
    border-radius: 5px;
}

.xxp-zizhi .nav-sub li i{
    background-size: 100%;
    width: 150px;
    height: 150px;
    border: none;
}
.xxp-zizhi .nav-sub li.active i{
    background-color: unset;
}

.xxp-zizhi .subnews .active i{
    border: none;
    box-shadow: 0 5px 10px rgb(9 46 102 / 40%);
}

.xxp-zizhi .subnews > li:hover i{
    border: none;
    box-shadow: 0 5px 10px rgb(9 46 102 / 40%);
}


.xxp-xiangmulist .xxp-info-button{
    padding-top: 20px;
    width: 25%;
    color: #fff;
}

.xxp-xiangmulist.xiangmu .text{
    padding: 40px 0;
}

.xxp-newinfo .nav-sub li i{
    background-size: 100%;
    width: 150px;
    height: 150px;
    border: none;
}

.xxp-newinfo .nav-sub li i{
    background-size: 100%;
    width: 150px;
    height: 150px;
    border: none;
}

.xxp-newinfo .news-title p{
    margin: 22px 0 0;
    font-size: 15px;
}

.xxp-newinfo .list-7 li .img-center{
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.xxp-newinfo .subnews .active i{
    border: none;
    box-shadow: 0 5px 10px rgb(9 46 102 / 40%);
}

.xxp-newinfo .subnews > li:hover i{
    border: none;
    box-shadow: 0 5px 10px rgb(9 46 102 / 40%);
}

.xxp-newinfo .news-fh{
   background-color: #092E66;
   color: #fff !important;
   border-radius: 5px;
}

.xxp-newinfo .news-exp{
    background: unset;
    border-top: 1px solid #eaeaea;
}

.xxp-newinfo .prd-content{
    margin-bottom: 30px;
}

.xxp-yuanxiaoinfo .news-fh{
   background-color: #092E66;
   color: #fff !important;
   border-radius: 5px;
}
.xxp-yuanxiaoinfo .news-exp{
    background: unset;
    border-top: 1px solid #eaeaea;
}

.xxp-yuanxiaoinfo .prd-content{
    margin-bottom: 30px;
}

.xxp-newinfo .list-7 li a:hover{
    background-color: #ffffff;
    color: #000000;
}

.xxp-newinfo .list-7 li a{
    display: flex;
    align-items: center;
}

.xxp-newinfo .list-7 li .text{
    margin: 0 0 0 30px;
}


/* ========== 回到顶部按钮 ========== */
.back_to_top {
        position: fixed;
        right: 40px;
        bottom: 40px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #FFFFFF;
        border: 1px solid #AAD5FF;
        box-shadow: 0 4px 12px rgba(9, 46, 102, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 999;
        color: #092E66;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}

.back_to_top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
}

.back_to_top:hover {
        background: linear-gradient(90deg, rgba(131, 184, 255, 1) 0%, rgba(170, 213, 255, 1) 100%);
        box-shadow: 0 6px 16px rgba(9, 46, 102, 0.25);
        transform: translateY(-2px);
}

.back_to_top.visible:hover {
        transform: translateY(-2px);
}
