/* ========== 头部电话号码样式 ========== */
.header-phones {
	display: flex;
	flex-direction: column;
	gap: 8px;
	line-height: 1;
}

.header-phones .phone-link {
	display: block;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header-phones .phone-number {
	font-size: 26px;
	font-weight: 500;
	color: #e70010;
	/* line-height: 1.2; */
	font-family: Arial, "微软雅黑", sans-serif;
	display: block;
}



/* ========== PC端子菜单箭头样式 ========== */
.pc-submenu-arrow {
	margin-left: 5px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item:hover .pc-submenu-arrow {
	transform: rotate(180deg);
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item .pc-submenu-arrow {
	margin-left: auto;
	margin-right: 5px;
}

/* ========== 移动端独立导航菜单样式 ========== */
.mobile-nav {
	display: none;
}

@media screen and (max-width: 768px) {
	/* 隐藏PC端导航 */
	.pc-nav {
		display: none !important;
	}

	/* 隐藏PC端箭头 */
	.pc-submenu-arrow {
		display: none !important;
	}

	/* 显示移动端导航 */
	.mobile-nav {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	/* 移动端菜单按钮 */
	.mobile-nav-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 45px;
		height: 45px;
		background: var(--color, rgba(29, 47, 229, 1));
		border-radius: 4px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.mobile-nav-btn:hover {
		opacity: 0.8;
	}

	.mobile-nav-btn i {
		font-size: 24px;
		color: #fff;
	}

	/* 移动端遮罩层 */
	.mobile-nav-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 998;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.mobile-nav-overlay.show {
		display: block;
		opacity: 1;
	}

	/* 移动端菜单内容区 */
	.mobile-nav-content {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 320px;
		height: 100%;
		background: #fff;
		z-index: 999;
		overflow-y: auto;
		transition: right 0.3s ease;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	}

	.mobile-nav-content.show {
		right: 0;
	}

	/* 移动端菜单头部 */
	.mobile-nav-header {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		padding: 15px 20px;
		border-bottom: 1px solid #eee;
		background: #f8f9fa;
	}

	.mobile-nav-close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background: var(--color, rgba(29, 47, 229, 1));
		border-radius: 4px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.mobile-nav-close:hover {
		opacity: 0.8;
	}

	.mobile-nav-close i {
		font-size: 24px;
		color: #fff;
	}

	/* 移动端菜单列表 */
	.mobile-nav-list {
		list-style: none;
		padding: 0;
		margin: 0;
	}

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

	.mobile-nav-item > a {
		display: block;
		padding: 15px 20px;
		color: #333;
		font-size: 15px;
		line-height: 1.5;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.mobile-nav-item > a:hover,
	.mobile-nav-item > a.active {
		color: var(--color, rgba(29, 47, 229, 1));
		background: rgba(29, 47, 229, 0.05);
	}

	/* 有子菜单的菜单项 */
	.mobile-nav-item.has-submenu > .mobile-nav-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0;
	}

	.mobile-nav-link a {
		flex: 1;
		display: block;
		padding: 15px 20px;
		color: #333;
		font-size: 15px;
		line-height: 1.5;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.mobile-nav-link a:hover,
	.mobile-nav-link a.active {
		color: var(--color, rgba(29, 47, 229, 1));
	}

	/* 子菜单展开按钮 */
	.mobile-submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
		height: 50px;
		flex-shrink: 0;
		cursor: pointer;
		color: #666;
		transition: all 0.3s ease;
	}

	.mobile-submenu-toggle:hover {
		color: var(--color, rgba(29, 47, 229, 1));
	}

	.mobile-submenu-toggle i {
		font-size: 18px;
		transition: transform 0.3s ease;
	}

	.mobile-submenu-toggle.active i {
		transform: rotate(180deg);
	}

	/* 子菜单 */
	.mobile-submenu {
		display: none;
		list-style: none;
		padding: 0;
		margin: 0;
		background: rgba(0, 0, 0, 0.02);
	}

	.mobile-submenu.show {
		display: block;
	}

	/* 二级菜单项 */
	.mobile-submenu > .mobile-nav-item > a,
	.mobile-submenu > .mobile-nav-item > .mobile-nav-link a {
		padding-left: 40px;
		font-size: 14px;
	}

	/* 三级菜单 */
	.mobile-submenu .mobile-submenu {
		background: rgba(0, 0, 0, 0.04);
	}

	.mobile-submenu .mobile-submenu > .mobile-nav-item > a {
		padding-left: 60px;
		font-size: 13px;
	}
}

/* 弹出搜索 begin */
.searchBar-m {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    z-index: 9999;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.searchBar-m.show {
    opacity: 1;
}

.searchBar-m .mask {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

.searchBar-m .mask-ico i {
    font-size: 20px;
}

.searchBar-m a {
    display: block;
    position: absolute;
    right: 5%;
    top: 5%;
    width: 60px;
    height: 60px;
    line-height: 56px;
    font-size: 48px;
    z-index: 9999;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.searchBar-m a:hover {
    color: #ff9600;
}

.searchBar-m .form-group {
    width: 70%;
    max-width: 720px;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -200%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.searchBar-m.show .form-group {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.searchBar-m .input {
    width: 88%;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #f2f2f2;
    color: #6E6E6E;
    height: 60px;
    line-height: 60px;
    float: left;
    padding: 0;
    font-size: 18px;
    transition: border-color 0.3s ease-in-out;
}

.searchBar-m .input:focus {
    border-bottom-color: #ff9600;
    outline: none;
}

.searchBar-m .button {
    border: none;
    width: 8%;
    height: 60px;
    line-height: 60px;
    border-bottom: 2px solid #f2f2f2;
    display: block;
    float: left;
    background: url(../images/ico-search-button.png) no-repeat center 50%;
    text-indent: -2000px;
    transition: border-color 0.3s ease-in-out;
}

.searchBar-m .button:hover {
    background: url(../images/ico-search-button.png) no-repeat center 50%;
    border-bottom-color: #ff9600;
}
/* 弹出搜索 end */

/* Header 样式 begin */
/* pre css */
#c_grid-116273709439191 .p_gridbox::after {
	content: '';
	clear: left;
	display: block
}

#c_grid-116273709439191>div>.p_gridbox {
	width: 100%;
	overflow: hidden;
	position: static
}

#c_grid-116273709439191>div>.p_gridCell {
	float: left;
	position: static
}

#c_grid-116273709439191>.p_gridbox.signal {
	min-height: inherit
}

#c_grid-116273709439191>.p_gridbox.signal>.p_gridCell {
	min-height: inherit !important
}

#c_grid-116273709439191 {
	margin-left: auto;
	margin-right: auto;
	width: 100%
}

@media screen and (max-width:768px) {
	#c_grid-116273709439191>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 0rem;
		margin-bottom: 0rem;
		clear: left
	}
}

@media screen and (min-width: 769px) {
	#c_grid-116273709439191>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 0rem;
		margin-bottom: 0rem;
		clear: left
	}
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
	#c_grid-116273709439191>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 0rem;
		margin-bottom: 0rem;
		clear: left
	}
}

#c_static_001-1658194067023 {
	min-height: 0px;
	
	background-color: rgba(255, 255, 255, 1);
	z-index: 99;
	width: 100%
}

#c_static_001-1658194067023 .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	height: 100px;
	width: 90%;
	
	margin-left: auto;
	margin-right: auto
}

#c_static_001-1658194067023 .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

#c_static_001-1658194067023 .e_image-2 {
	overflow: hidden;
	
	max-width: 350px
}

#c_static_001-1658194067023 .e_image-2 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Box {
	display: flex;
	justify-content: flex-end
}

#c_static_001-1658194067023 .e_navigationA-4 .p_iconBox {
	height: 45px;
	width: 45px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center
}

#c_static_001-1658194067023 .e_navigationA-4 .p_openIcon {
	width: 100%;
	height: 36px
}

#c_static_001-1658194067023 .e_navigationA-4 .p_closeIcon {
	width: 100%;
	height: 30px
}

#c_static_001-1658194067023 .e_navigationA-4 .p_navButton {
	display: none
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Box {
	display: none;
	height: auto;
	padding: 15px 0;
	background: #fff;
	width: 220px;
	min-width: 200px;
	position: absolute;
	left: 50%;
	top: 100%;
	z-index: 99;
	transform: translateX(-50%);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item:hover .p_level2Box {
	display: block
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level3Box {
	display: none;
	height: auto;
	padding: 15px 0;
	background: #fff;
	background: #f5f5f5;
	width: 180px;
	min-width: 180px;
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 9;
	border-radius: 5px;
	border-top-left-radius: 0px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item:hover .p_level3Box {
	display: block
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item {
	position: relative;
	border: none
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item {
	position: relative;
	width: 100%
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level3Item {
	width: 100%
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level3Item a {
	font-size: 14px;
	padding: 0 20px;
	line-height: 35px;
	display: block;
	text-align: left;
	color: #555 !important;
	transition: all ease .3s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level3Item a:hover {
	color: #1d2fe5 !important;
	padding-left: 25px
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a {
	font-size: 16px;
	padding: 0 5px;
	line-height: 80px;
	display: block;
	text-align: center;
	transition: all 0.5s;
	position: relative
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a .arrow-down {
	display: inline-block;
	margin-left: 5px;
	margin-bottom: 2px;
	font-size: 14px;
	color: #666;
	transition: all 0.3s ease;
	vertical-align: middle
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a .arrow-down i {
	transition: transform 0.3s ease;
	display: inline-block
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item:hover a .arrow-down {
	color: #1d2fe5
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item:hover a .arrow-down i {
	transform: rotate(180deg)
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item a:hover {
	color: #1d2fe5 !important
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item a {
	font-size: 15px;
	padding: 0 30px 0 20px;
	line-height: 35px;
	display: block;
	text-align: left;
	opacity: 1;
	color: #333 !important;
	transition: all ease .3s;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item a .arrow-right {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #999;
	transition: all 0.3s ease
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item:hover a .arrow-right {
	color: #1d2fe5;
	right: 5px
}

#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item a:hover {
	opacity: 1
}

#c_static_001-1658194067023 .e_container-5 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: auto;
	
}

#c_static_001-1658194067023 .e_container-5>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

#c_static_001-1658194067023 .e_image-6 {
	overflow: hidden;
	
	max-width: 29px
}

#c_static_001-1658194067023 .e_image-6 img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

#c_static_001-1658194067023 .e_richText-7 span {
	font-family: impact !important
}

#c_static_001-1658194067023 .e_container-5 .cbox-5-1 {
	flex: 0 0 auto;
	align-self: center
}

#c_static_001-1658194067023 .e_container-5 .cbox-5-0 {
	flex: 0 0 auto;
	padding-right: 15px;
	align-self: center
}

#c_static_001-1658194067023 .e_container-1 .cbox-1-2 {
	flex: 0 0 auto;
	align-self: center
}

#c_static_001-1658194067023 .e_container-1 .cbox-1-0 {
	flex: 0 0 29%;
	align-self: center
}

#c_static_001-1658194067023 .e_container-1 .cbox-1-1 {
	align-self: center;
	padding-right: 30px;
	padding-left: 30px
}

@media screen and (max-width:768px) {
	#c_static_001-1658194067023 .e_container-1 {
		height: 60px;
		
	}

	#c_static_001-1658194067023 .e_container-1 .cbox-1-1 {
		padding-right: 0;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Box {
		display: block
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_iconBox {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 45px;
		width: 45px;
		cursor: pointer;
		background: var(--color, rgba(29, 47, 229, 1));
		border-radius: 4px;
		transition: all 0.3s ease;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_iconBox:hover {
		opacity: 0.8;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_iconBox i {
		font-size: 24px;
		color: #fff;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_navContent {
		display: none;
		padding: 20px;
		height: 100%;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		background: #fbfbfb;
		z-index: 999;
		overflow-y: auto;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_navContent.show {
		display: block;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_navButton {
		display: flex;
		justify-content: flex-end
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Box {
		width: 100%
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level2Box,
	#c_static_001-1658194067023 .e_navigationA-4 .p_level3Box {
		padding: 0 0 0 30px;
		background: none
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_jtIcon {
		float: right;
		transition: 0.5s;
		height: 30px;
		margin-top: 10px
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_jtHover {
		transition: 0.5s;
		transform: rotate(90deg)
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level2Box,
	#c_static_001-1658194067023 .e_navigationA-4 .p_level3Box {
		width: 100%;
		left: 0;
		transform: translateX(0);
		position: inherit;
		border-radius: 0
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item {
		border-bottom: 1px solid rgb(0 0 0 / 5%);
		line-height: 50px;
		font-size: 14px
	}

	/* 移动端箭头样式 */
	#c_static_001-1658194067023 .e_navigationA-4 .arrow-down,
	#c_static_001-1658194067023 .e_navigationA-4 .arrow-right {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		cursor: pointer;
		transition: transform 0.3s ease;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .arrow-down i,
	#c_static_001-1658194067023 .e_navigationA-4 .arrow-right i {
		font-size: 16px;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .arrow-down.active,
	#c_static_001-1658194067023 .e_navigationA-4 .arrow-right.active {
		transform: rotate(180deg);
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level2Box,
	#c_static_001-1658194067023 .e_navigationA-4 .p_level3Box {
		transition: all 0.3s ease;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a,
	#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item a {
		line-height: 50px;
		font-size: 14px;
		padding: 0;
		display: inline;
		text-align: left;
		opacity: 1
	}

	#c_static_001-1658194067023 .e_container-5 {
		
		display: none
	}

	#c_static_001-1658194067023 .e_image-2 {
		
		max-width: 240px
	}

	#c_static_001-1658194067023 {
		
	}

	#c_static_001-1658194067023 .e_container-1 .cbox-1-0 {
		flex: 0 0 60%
	}
}

@media screen and (min-width: 769px) {
	#c_static_001-1658194067023 .e_navigationA-4 .p_jtIcon {
		transform: rotate(90deg);
		display: none
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level2Item .p_jtIcon {
		display: none
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_iconBox {
		display: none
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item {
		position: relative;
		border: none;
		width: calc(100% / 8);
		max-width: 120px
	}
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
	/* 平板端适配 */
	#c_static_001-1658194067023 .e_container-1 {
		width: 95%;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a {
		padding: 0 8px;
		font-size: 14px;
	}

	.header-phones .phone-number {
		font-size: 22px;
	}

	.header-phones {
		gap: 6px;
	}
}

/* 1440分辨率适配 */
@media screen and (max-width: 1440px) and (min-width: 1025px) {
	#c_static_001-1658194067023 .e_container-1 {
		width: 92%;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a {
		padding: 0 12px;
		font-size: 14px;
	}

	.header-phones .phone-number {
		font-size: 26px;
	}

	.header-phones {
		gap: 7px;
	}

	#c_static_001-1658194067023 .e_image-2 {
		max-width: 280px;
	}
}

/* 1366分辨率适配 */
@media screen and (max-width: 1366px) and (min-width: 1025px) {
	#c_static_001-1658194067023 .e_container-1 {
		width: 90%;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a {
		padding: 0 10px;
		font-size: 13px;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item {
		width: auto;
	}

	.header-phones .phone-number {
		font-size: 24px;
	}

	.header-phones {
		gap: 6px;
	}

	#c_static_001-1658194067023 .e_image-2 {
		max-width: 260px;
	}

	#c_static_001-1658194067023 .e_container-1 .cbox-1-1 {
		padding-right: 15px;
		padding-left: 15px;
	}
}

/* 小笔记本（1280px）适配 */
@media screen and (max-width: 1280px) and (min-width: 1025px) {
	#c_static_001-1658194067023 .e_container-1 {
		width: 95%;
	}

	#c_static_001-1658194067023 .e_navigationA-4 .p_level1Item a {
		padding: 0 8px;
		font-size: 13px;
	}

	.header-phones {
		gap: 5px;
	}

	.header-phones .phone-number {
		font-size: 22px;
	}

	#c_static_001-1658194067023 .e_image-2 {
		max-width: 240px;
	}

	#c_static_001-1658194067023 .e_image-6 {
		max-width: 35px;
	}

	#c_static_001-1658194067023 .e_container-1 .cbox-1-1 {
		padding-right: 10px;
		padding-left: 10px;
	}
}
/* Header 样式 end */

/* Footer 样式 begin */
.site-footer {
	background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
	color: #fff;
	position: relative;
	overflow: hidden
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color, rgba(29, 47, 229, 1)) 0%, #1a4d7a 100%)
}

.footer-main {
	padding: 50px 0 35px
}

.footer-container {
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between
}

.footer-column {
	flex: 1;
	min-width: 280px
}

.footer-contact {
	flex: 1.8;
	min-width: 360px
}

.footer-about {
	flex: 0.9;
	min-width: 440px
}

.footer-form {
	flex: 1.1;
	min-width: 280px
}

.footer-title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	gap: 10px
}

.footer-title i {
	font-size: 20px;
	color: var(--color, rgba(29, 47, 229, 1))
}

/* Contact Section - Grid Layout */
.footer-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 25px;
	margin-bottom: 10px
}

.contact-item-compact {
	display: flex;
	align-items: flex-start;
	gap: 10px
}

.contact-item-full {
	grid-column: 1 / -1
}

.contact-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	transition: all 0.3s ease
}

.contact-item-compact:hover .contact-icon {
	background: rgba(29, 47, 229, 0.15);
	transform: scale(1.05)
}

.contact-icon i {
	font-size: 16px;
	color: var(--color, rgba(29, 47, 229, 1))
}

.contact-content {
	flex: 1;
	min-width: 0
}

.contact-links {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.contact-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 13px;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 0;
	line-height: 1.4
}

.contact-links a:hover {
	color: var(--color, rgba(29, 47, 229, 1));
	padding-left: 8px
}

.contact-links a::before {
	content: '›';
	position: absolute;
	left: -10px;
	opacity: 0;
	color: var(--color, rgba(29, 47, 229, 1));
	transition: all 0.3s ease
}

.contact-links a:hover::before {
	opacity: 1;
	left: 0
}

.contact-address-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	line-height: 1.5;
	display: block
}

/* Contact Label */
.contact-label {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	margin-bottom: 6px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.5px
}

/* Social Media */
.footer-social {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.social-title {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px
}

/* Quick Links */
.footer-links {
	flex: 1.5
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px
}

.footer-nav-item .nav-heading {
	margin-bottom: 12px
}

.footer-nav-item .nav-heading a {
	color: rgba(255, 255, 255, 0.95);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block
}

.footer-nav-item .nav-heading a:hover {
	color: var(--color, rgba(29, 47, 229, 1));
	transform: translateX(3px)
}

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

.nav-sub-list li {
	margin-bottom: 8px
}

.nav-sub-list a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 15px
}

.nav-sub-list a::before {
	content: '›';
	position: absolute;
	left: 0;
	color: var(--color, rgba(29, 47, 229, 1));
	transition: transform 0.3s ease
}

.nav-sub-list a:hover {
	color: #fff;
	padding-left: 18px
}

.nav-sub-list a:hover::before {
	transform: translateX(3px)
}

/* About Section */
.footer-description {
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
	margin-bottom: 25px;
	font-size: 14px
}

.footer-features {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px
}

.feature-item i {
	color: var(--color, rgba(29, 47, 229, 1));
	font-size: 16px
}

/* Footer Form Section */
.footer-form {
	flex: 1;
	min-width: 270px
}

.footer-inquiry-form {
	margin-top: 0
}

.footer-inquiry-form .inquiry-form {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.footer-inquiry-form .footer-input,
.footer-inquiry-form .footer-textarea {
	width: 100%;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease;
	outline: none;
	font-family: inherit
}

.footer-inquiry-form .footer-input::placeholder,
.footer-inquiry-form .footer-textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
	font-size: 12px;
	line-height: 1.4
}

.footer-inquiry-form .footer-input:focus,
.footer-inquiry-form .footer-textarea:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color, rgba(29, 47, 229, 1));
	box-shadow: 0 0 0 3px rgba(29, 47, 229, 0.1)
}

.footer-inquiry-form .footer-textarea {
	resize: vertical;
	min-height: 90px;
	max-height: 180px;
	line-height: 1.5
}

.footer-inquiry-form .footer-send-btn {
	width: 100%;
	padding: 12px 20px;
	background: linear-gradient(135deg, var(--color, rgba(29, 47, 229, 1)) 0%, #1a4d7a 100%);
	border: none;
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 8px
}

.footer-inquiry-form .footer-send-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(29, 47, 229, 0.3)
}

.footer-inquiry-form .footer-send-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(29, 47, 229, 0.2)
}

.footer-inquiry-form .footer-send-btn i {
	font-size: 14px;
	transition: transform 0.3s ease
}

.footer-inquiry-form .footer-send-btn:hover i {
	transform: translateX(3px)
}

/* Footer Form - Error State */
.footer-inquiry-form .input-error {
	border-color: #e74c3c;
	background: rgba(231, 76, 60, 0.08);
	animation: shake 0.3s ease
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

/* Footer Bottom */
.footer-bottom {
	background: rgba(0, 0, 0, 0.3);
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px
}

.copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px
}

.copyright i {
	font-size: 12px
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
	align-items: center
}

.beian-link {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px
}

.beian-link:hover {
	color: var(--color, rgba(29, 47, 229, 1))
}

.beian-link i {
	font-size: 14px
}

/* Responsive Design */
@media (max-width: 1200px) {
	.footer-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}
}

@media (max-width: 992px) {
	.footer-container {
		gap: 30px
	}
	
	.footer-column {
		min-width: 45%
	}
	
	.footer-contact {
		flex: 1;
		min-width: 100%
	}
	
	.footer-about {
		flex: 1;
		min-width: 45%
	}
	
	.footer-form {
		flex: 1;
		min-width: 45%
	}
}

@media (max-width: 768px) {
	.footer-main {
		padding: 40px 0 30px
	}
	
	.footer-container {
		flex-direction: column;
		width: 90%
	}
	
	.footer-column {
		min-width: 100%
	}
	
	.footer-contact,
	.footer-about,
	.footer-form {
		flex: 1;
		min-width: 100%
	}
	
	.footer-contact-grid {
		grid-template-columns: 1fr;
		gap: 15px
	}
	
	.contact-item-full {
		grid-column: 1
	}
	
	.footer-nav {
		grid-template-columns: 1fr;
		gap: 20px
	}
	
	.footer-title {
		font-size: 16px
	}
	
	.footer-bottom-content {
		flex-direction: column;
		text-align: center
	}
	
	.copyright,
	.beian-link {
		justify-content: center
	}
	
	/* Footer Form Mobile */
	.footer-inquiry-form .footer-input,
	.footer-inquiry-form .footer-textarea {
		padding: 10px 12px;
		font-size: 13px
	}
	
	.footer-inquiry-form .footer-send-btn {
		padding: 10px 18px;
		font-size: 13px
	}
}

/* ========== 右侧浮动联系工具栏 ========== */
.fixed-contact-bar {
	position: fixed;
	right: 25px;
	top: 55%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: all 0.3s ease
}

.contact-bar-item {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	position: relative;
	overflow: visible;
	text-decoration: none
}

.contact-bar-item::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: inherit;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.4s ease
}

.contact-bar-item:hover::before {
	opacity: 0.3;
	transform: scale(1.3);
	animation: pulse 1.5s infinite
}

@keyframes pulse {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1.3);
	}
	50% {
		opacity: 0.1;
		transform: scale(1.5);
	}
}

.contact-bar-item i {
	font-size: 26px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2
}

.contact-bar-item:hover i {
	transform: scale(1.15) rotate(-5deg)
}

.contact-bar-label {
	position: absolute;
	right: 68px;
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transform: translateX(15px) scale(0.9);
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	pointer-events: none;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

.contact-bar-label::after {
	content: '';
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid rgba(0, 0, 0, 0.9);
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent
}

.contact-bar-item:hover .contact-bar-label {
	opacity: 1;
	visibility: visible;
	transform: translateX(0) scale(1)
}

/* WhatsApp样式 */
.contact-whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #1ebd57 50%, #128C7E 100%);
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25), 0 1px 3px rgba(0, 0, 0, 0.08)
}

.contact-whatsapp i {
	color: #fff
}

.contact-whatsapp:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 3px 8px rgba(0, 0, 0, 0.12)
}

.contact-whatsapp:active {
	transform: translateY(-1px) scale(1.02)
}

/* Phone样式 */
.contact-phone {
	background: linear-gradient(135deg, var(--color, rgba(29, 47, 229, 1)) 0%, #2563eb 50%, #1a4d7a 100%);
	box-shadow: 0 4px 15px rgba(29, 47, 229, 0.25), 0 1px 3px rgba(0, 0, 0, 0.08)
}

.contact-phone i {
	color: #fff
}

.contact-phone:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(29, 47, 229, 0.4), 0 3px 8px rgba(0, 0, 0, 0.12)
}

.contact-phone:active {
	transform: translateY(-1px) scale(1.02)
}

/* Email样式 */
.contact-email {
	background: linear-gradient(135deg, #FF6B6B 0%, #ee5a52 50%, #C92A2A 100%);
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.25), 0 1px 3px rgba(0, 0, 0, 0.08)
}

.contact-email i {
	color: #fff
}

.contact-email:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4), 0 3px 8px rgba(0, 0, 0, 0.12)
}

.contact-email:active {
	transform: translateY(-1px) scale(1.02)
}

/* 返回顶部样式 */
.contact-backtop {
	background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
	box-shadow: 0 4px 15px rgba(108, 117, 125, 0.25), 0 1px 3px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.contact-backtop i {
	color: #fff;
	font-size: 28px;
	font-weight: bold
}

.contact-backtop.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.contact-backtop:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4), 0 3px 8px rgba(0, 0, 0, 0.12)
}

.contact-backtop:active {
	transform: translateY(-1px) scale(1.02)
}

/* WhatsApp呼吸动画 */
@keyframes breathe {
	0%, 100% {
		box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25), 0 1px 3px rgba(0, 0, 0, 0.08);
	}
	50% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 1px 3px rgba(0, 0, 0, 0.08);
	}
}

.contact-whatsapp {
	animation: breathe 2s ease-in-out infinite
}

/* 移动端适配 */
@media (max-width: 768px) {
	.fixed-contact-bar {
		right: 15px;
		gap: 15px
	}
	
	.contact-bar-item {
		width: 50px;
		height: 50px
	}
	
	.contact-bar-item i {
		font-size: 22px
	}
	
	.contact-bar-label {
		display: none
	}
	
	.contact-backtop i {
		font-size: 24px
	}
}

@media (max-width: 480px) {
	.fixed-contact-bar {
		right: 50%;
		transform: translateX(50%);
		top: auto;
		bottom: 20px;
		flex-direction: row;
		gap: 10px;
		padding: 12px 16px;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 50px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 3px 8px rgba(0, 0, 0, 0.08);
		backdrop-filter: blur(10px)
	}
	
	.contact-bar-item {
		width: 48px;
		height: 48px;
		box-shadow: none
	}
	
	.contact-bar-item i {
		font-size: 20px
	}
	
	.contact-backtop i {
		font-size: 22px
	}
	
	.contact-bar-item:hover {
		transform: scale(1.05);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15)
	}
}

/* Old Footer Compatibility */
#c_grid-116273709439190 .p_gridbox::after {
	content: '';
	clear: left;
	display: block
}

#c_grid-116273709439190>div>.p_gridbox {
	width: 100%;
	overflow: hidden;
	position: static
}

#c_grid-116273709439190>div>.p_gridCell {
	float: left;
	position: static
}

#c_grid-116273709439190>.p_gridbox.signal {
	min-height: inherit
}

#c_grid-116273709439190>.p_gridbox.signal>.p_gridCell {
	min-height: inherit !important
}

#c_grid-116273709439190 {
	margin-left: auto;
	margin-right: auto;
	width: 100%
}

@media screen and (max-width:768px) {
	#c_grid-116273709439190>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 0rem;
		margin-bottom: 0rem;
		clear: left
	}
}

@media screen and (min-width: 769px) {
	#c_grid-116273709439190>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 0rem;
		margin-bottom: 0rem;
		clear: left
	}
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
	#c_grid-116273709439190>.p_gridbox>.p_gridCell:nth-child(1n + 1) {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 0rem;
		margin-bottom: 0rem;
		clear: left
	}
}

#c_static_001-16420726718590 .e_container-1 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1600px;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	
	margin-top: 80px;
	padding-top: 0px;
	margin-bottom: 80px
}

#c_static_001-16420726718590 .e_container-1>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

#c_static_001-16420726718590 .e_container-1 .cbox-1-0 {
	flex: 0 0 280px;
}

.havestatic>div,
.havestatic>div[class*="cbox-"] {
	position: static !important
}

.e_container0 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px
}

.e_container0>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

.e_container0 .cbox-10-0 {
	flex: 0 0 auto;
	margin-right: 0px;
	margin-left: auto
}

.e_container0 .cbox-10-1 {
	flex: 0 0 auto;
	margin-left: 20px;
	margin-right: 20px
}

.e_container0 .cbox-10-2 {
	flex: 0 0 auto;
	margin-left: 0px;
	margin-right: auto
}

#c_static_001-16420726718590 {
	min-height: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	
	background-color: rgba(46, 46, 46, 1);
	overflow: hidden
}

#c_static_001-16420726718590 .e_richText-18 {
	
	font-size: 12px;
	line-height: 2;
	
}

#c_static_001-16420726718590 .e_container-22 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	max-width: none;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 30px;
	
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(255, 255, 255, 0.1)
}

#c_static_001-16420726718590 .e_container-22>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

#c_static_001-16420726718590 .e_container-23 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1600px;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	
}

#c_static_001-16420726718590 .e_container-23>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

#c_static_001-16420726718590 .e_container-23 .cbox-23-0 {
	align-self: center;
	flex: 0 0 auto;
	margin-left: 0px;
	margin-right: auto
}

#c_static_001-16420726718590 .e_container-24 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: auto;
	
}

#c_static_001-16420726718590 .e_container-24>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

#c_static_001-16420726718590 .e_text-27 {
	
	font-size: 14px;
	font-family: Microsoft YaHei;
	line-height: 1.8;
	text-align: left;
	margin-left: 0px;
	
	color: rgba(255, 255, 255, 1)
}

#c_static_001-16420726718590 .e_container-1 .cbox-1-2 {
	margin-left: 100px
}

#c_static_001-16420726718590 .e_bottomNav-29 span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 18px;
	color: #ffffff
}

#c_static_001-16420726718590 .e_bottomNav-29 .p_level1Item {
	width: auto;
	padding: 0 15px;
	flex-grow: 1
}

#c_static_001-16420726718590 .e_bottomNav-29 .p_level3Box {
	display: none
}

#c_static_001-16420726718590 .e_bottomNav-29 .p_menu1Item {
	font-size: 14px;
	font-weight: normal;
	line-height: 1.8;
	margin-bottom: 15px
}

#c_static_001-16420726718590 .e_bottomNav-29 .p_menu2Item {
	font-size: 13px;
	font-weight: normal;
	line-height: 2
}

#c_static_001-16420726718590 .e_bottomNav-29 .p_menu2Item span {
	font-size: 14px;
	color: #ffffff;
	line-height: 30px
}

#c_static_001-16420726718590 .e_bottomNav-29 {
	
	
	max-width: none;
	min-width: 0px;
	width: auto
}

#c_static_001-16420726718590 .e_container-30 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	
}

#c_static_001-16420726718590 .e_container-30>.p_item {
	flex: 1;
	max-width: 100%;
	max-height: 100%
}

#c_static_001-16420726718590 .e_container-30 .cbox-30-0 {
	align-self: center;
	flex: 0 0 auto;
	margin-right: 0px
}

#c_static_001-16420726718590 .e_container-30 .cbox-30-1 {
	align-self: center;
	flex: 0 0 auto
}

#c_static_001-16420726718590 .e_text-31 {
	
	
	font-size: 14px;
	margin-left: 10px;
	color: rgba(255, 255, 255, 1)
}

#c_static_001-16420726718590 .e_container-23 .cbox-23-1 {
	flex: 0 0 auto;
	align-self: center;
	margin-right: 0px;
	margin-left: auto
}

#c_static_001-16420726718590 .e_container-24 .cbox-24-0 {
	flex: 0 0 auto;
	align-self: center
}

#c_static_001-16420726718590 .e_container-24 .cbox-24-1 {
	flex: 0 0 auto;
	margin-left: 15px;
	align-self: center
}

#c_static_001-16420726718590 .e_richText-37 {
	
	
	margin-top: 5px
}

#c_static_001-16420726718590 .e_provider-39 {
	text-align: center;
	
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1)
}

@media screen and (max-width:768px) {
	#c_static_001-16420726718590 {
		padding-right: 0px;
		padding-left: 0px
	}

	#c_static_001-16420726718590 .e_container-1 {
		padding-left: 10px;
		padding-right: 10px;
		flex-direction: column;
		
		margin-top: 50px;
		margin-bottom: 50px
	}

	#c_static_001-16420726718590 .e_container-22 .cbox-22-0 {
		align-items: center
	}

	#c_static_001-16420726718590 .e_container-23 {
		flex-direction: row;
		max-height: none;
		height: auto;
		
	}

	#c_static_001-16420726718590 .e_container-23 .cbox-23-0 {
		align-items: center;
		flex: 0 0 100%;
		align-self: center
	}

	#c_static_001-16420726718590 .e_container-23 .cbox-23-1 {
		align-items: center;
		align-self: center;
		flex: 0 0 100%
	}

	#c_static_001-16420726718590 .e_container-24 {
		margin-bottom: 0px;
		padding-bottom: 0px;
		max-height: 25px;
		
	}

	#c_static_001-16420726718590 .e_container-24 .cbox-24-0 {
		align-items: center;
		flex: 0 0 auto;
		margin-right: 0px;
		margin-left: auto
	}

	#c_static_001-16420726718590 .e_text-27 {
		
		text-align: center;
		
	}

	#c_static_001-16420726718590 .e_bottomNav-29 .p_menu1Item,
	#c_static_001-16420726718590 .e_bottomNav-29 .p_menu2Item {
		display: flex;
		justify-content: space-between
	}

	#c_static_001-16420726718590 .e_bottomNav-29 .p_level1Box ul {
		display: none
	}

	#c_static_001-16420726718590 .e_bottomNav-29 .p_jtIcon {
		width: auto;
		height: auto;
		max-width: 20px;
		font-size: inherit;
		transition: 0.5s;
		margin: 0
	}

	#c_static_001-16420726718590 .e_bottomNav-29 .p_jtIcon.active {
		transform: rotateZ(90deg)
	}

	#c_static_001-16420726718590 .e_bottomNav-29 a {
		display: flex;
		flex-direction: column;
		justify-content: center
	}

	#c_static_001-16420726718590 .e_bottomNav-29 .p_level1Item {
		padding: 0
	}

	#c_static_001-16420726718590 .e_bottomNav-29 .p_menu2Item svg {
		opacity: .5
	}

	#c_static_001-16420726718590 .e_bottomNav-29 {
		
		margin-top: 10px;
		
		display: none
	}

	#c_static_001-16420726718590 .e_container-30 .cbox-30-0 {
		flex: 0 0 auto;
		align-self: center;
		margin-right: auto;
		margin-left: auto
	}

	#c_static_001-16420726718590 .e_container-30 .cbox-30-1 {
		align-self: center;
		flex: 0 0 auto;
		margin-left: auto;
		margin-right: auto
	}

	#c_static_001-16420726718590 .e_text-31 {
		
		font_radio: 1
	}

	#c_static_001-16420726718590 .e_container-30 {
		
		width: 100%;
		flex-direction: row
	}

	#c_static_001-16420726718590 .e_container-24 .cbox-24-1 {
		flex: 0 0 auto;
		margin-right: auto;
		margin-left: 0px
	}

	#c_static_001-16420726718590 .e_container-22 {
		
		padding-top: 20px;
		padding-bottom: 50px
	}

	#c_static_001-16420726718590 .e_container-1 .cbox-1-2 {
		display: none
	}

	#c_static_001-16420726718590 .e_container-1 .cbox-1-0 {
		flex: 1
	}
}

@media screen and (min-width: 769px) {
	#c_static_001-16420726718590 .e_bottomNav-29 .p_level1Box {
		display: flex
	}

	#c_static_001-16420726718590 .e_bottomNav-29 .p_jtIcon {
		display: none
	}
}

/* Social Media Icons */
.social-media-links {
	display: flex;
	gap: 15px;
	align-items: center
}

.social-media-links .social-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
	overflow: hidden
}

.social-media-links .social-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.3s ease
}

.social-media-links .social-icon:hover::before {
	transform: scale(1)
}

.social-media-links .social-icon:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	border-color: transparent
}

.social-media-links .social-icon i {
	position: relative;
	z-index: 1
}

/* 针对不同社媒的品牌颜色 */
.social-media-links .social-icon:nth-child(1):hover {
	background: #1877f2;
	box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4)
}

.social-media-links .social-icon:nth-child(1):hover i {
	color: #fff
}

.social-media-links .social-icon:nth-child(2):hover {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4)
}

.social-media-links .social-icon:nth-child(2):hover i {
	color: #fff
}

.social-media-links .social-icon:nth-child(3):hover {
	background: #0077b5;
	box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4)
}

.social-media-links .social-icon:nth-child(3):hover i {
	color: #fff
}

.social-media-links .social-icon:nth-child(4):hover {
	background: #25d366;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4)
}

.social-media-links .social-icon:nth-child(4):hover i {
	color: #fff
}

.social-media-links .social-icon:nth-child(5):hover {
	background: #ff0000;
	box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4)
}

.social-media-links .social-icon:nth-child(5):hover i {
	color: #fff
}

/* 移动端适配 */
@media (max-width: 768px) {
	.social-media-links {
		gap: 12px;
		justify-content: center;
		flex-wrap: wrap
	}
	
	.social-media-links .social-icon {
		width: 40px;
		height: 40px;
		font-size: 18px
	}
}
/* Footer 样式 end */