/* 重置与基础 */
* {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
	box-sizing: border-box;
}

ul,
li {
	list-style: none;
}

a {
	cursor: pointer;
	text-decoration: none;
}

/* ========== 顶部黑色导航栏 响应式 ========== */
.login-nav {
	display: flex;
	width: 100%;
	background: #000;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 16px;
}

.login-nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	font-size: 12px;
	color: #fff;
	flex-wrap: wrap;
	gap: 8px;
}

.login-nav-content a,
.login-nav-content em {
	font-size: 12px;
	color: #fff;
	display: flex;
	align-items: center;
}

.login-nav-content-left,
.login-nav-content-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

/* 语言选择区域 */
.login-nav-content-lang {
	display: flex;
	position: relative;
}

.lang-show {
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 32px;
}

.lang-show img {
	width: 16px;
	height: 16px;
}

.lang-show span {
	font-size: 12px;
	margin-left: 6px;
}

.lang-select {
	position: absolute;
	left: 0;
	top: 28px;
	background-color: #000;
	padding: 5px;
	display: none;
	z-index: 9999;
	min-width: 80px;
}

.lang-select li {
	height: 28px;
}

.lang-select li a {
	display: flex;
	align-items: center;
	height: 28px;
	font-size: 12px;
	color: #ffffff;
	gap: 6px;
}

.lang-select li a:hover {
	color: #2dd2b0;
}

.lang-select img {
	width: 16px;
	height: 16px;
}

.login-nav-content-user {
	display: flex;
	align-items: center;
	gap: 8px;
}

.login-nav-content-user a,
.login-nav-content-user em {
	font-size: 12px;
	color: #fff;
	display: flex;
	align-items: center;
}

.login-nav-content-user em {
	padding: 0;
}

.login-nav-content a img {
	vertical-align: middle;
	margin-right: 4px;
}

/* ========== 主头部导航栏 (PC优先 + 移动端汉堡菜单) ========== */
.header-nav {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background: #fff;
	position: relative;
	padding: 0 16px;
	min-height: 70px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-nav-content {
	display: flex;
	width: 100%;
	max-width: 1200px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #fff;
}

.header-logo {
	display: flex;
	align-items: center;
	z-index: 10;
}

.header-logo a {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #2DD2B0;
	font-weight: bold;
	gap: 8px;
}

.header-logo img {
	max-height: 48px;
	width: auto;
}

/* 桌面导航样式 (默认) */
.desktop-nav {
	display: flex;
	align-items: center;
}

.nav-item {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	position: relative;
	margin: 0 1px;
}

.nav-item>a {
	font-size: 16px;
	color: #666666;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	transition: all 0.2s;
}

nav .active>a,
nav .nav-item>a:hover {
	background-color: #2dd2b0;
	color: #fff;
}

/* 二级菜单 */
.sub_nav {
	position: absolute;
	left: 0;
	top: 70px;
	display: none;
	z-index: 9999;
}

.sub_nav ul {
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: #fff;
	padding: 8px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-width: 140px;
}

.sub_nav li {
	width: 100%;
}

.sub_nav li a {
	height: 36px;
	font-size: 14px;
	color: #666666;
	display: flex;
	align-items: center;
	padding: 0 20px;
	white-space: nowrap;
	transition: all 0.2s;
}

.sub_nav li a:hover,
.sub_nav li .active {
	background-color: #2dd2b0;
	color: #fff;
}

/* 移动端菜单按钮 (汉堡) */
.mobile-menu-toggle {
	display: none;
	font-size: 28px;
	background: none;
	border: none;
	cursor: pointer;
	color: #2dd2b0;
	z-index: 20;
	padding: 8px;
}

/* 移动端导航面板 */
.mobile-nav {
	position: fixed;
	top: 0;
	left: -100%;
	width: 80%;
	max-width: 320px;
	height: 100vh;
	background-color: #fff;
	z-index: 10000;
	transition: left 0.3s ease;
	box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
	padding: 80px 20px 30px;
}

.mobile-nav.open {
	left: 0;
}

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

.mobile-nav .mobile-nav-item>a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.mobile-subnav {
	display: none;
	padding-left: 16px;
	background-color: #fafafa;
}

.mobile-subnav li a {
	display: block;
	padding: 10px 0;
	font-size: 14px;
	color: #666;
}

.mobile-subnav li a.active,
.mobile-subnav li a:hover {
	color: #2dd2b0;
}

/* 遮罩层 */
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: none;
}

.nav-overlay.show {
	display: block;
}

/* 轮播图自适应 */
#owl-banner {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

#owl-banner .item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	/* max-height: 550px; */
}

/* 响应式断点：小于 992px 隐藏桌面导航，显示汉堡菜单 */
@media (max-width: 992px) {
	.desktop-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.header-nav {
		min-height: 60px;
	}

	.nav-item {
		height: auto;
	}

	.header-logo a {
		font-size: 18px;
	}

	.login-nav-content {
		flex-direction: column;
		align-items: flex-start;
		padding: 6px 0;
	}

	.login-nav-content-left,
	.login-nav-content-right {
		width: 100%;
		justify-content: space-between;
	}

	.lang-select {
		top: 26px;
		left: 0;
	}
}

/* 小屏幕优化顶部间距 */
@media (max-width: 576px) {

	.login-nav-content-left a,
	.login-nav-content-right a {
		font-size: 11px;
	}

	.lang-show span {
		font-size: 11px;
	}

	.header-logo img {
		max-height: 40px;
	}

	.header-logo a {
		font-size: 16px;
	}

	#owl-banner .item img {
		max-height: 280px;
	}
}

/* 保证大屏幕居中并且内容不溢出 */
@media (min-width: 1200px) {

	.login-nav-content,
	.header-nav-content {
		width: 1200px;
	}
}

/* 辅助清除浮动 */
.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

/* ========== 统一页脚样式 (桌面优先 + 自适应) ========== */
/* 主容器：背景图片及布局统一 */
.site-footer {
	background: url('../image/footer_bg.jpg') no-repeat top center;
	background-size: cover;
	/* 让背景图自适应 */
	width: 100%;
}

/* 顶部链接区域（一级+二级导航） */
.footer-link {
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	justify-content: space-between;
	padding: 60px 20px 20px 20px;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-link-item {
	display: flex;
	flex: 1;
	min-width: 160px;
}

.footer-link-item-ico {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 5px;
	flex-shrink: 0;
}

.footer-link-item-content {
	margin-left: 5px;
}

.footer-link-item-content>a {
	font-weight: 400;
	font-size: 18px;
	color: #2ED2B0;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-link-item-content>a:hover {
	color: #2E8A57;
}

.footer-link-item-content ul {
	margin-top: 10px;
	list-style: none;
}

.footer-link-item-content ul li {
	padding: 5px 0;
}

.footer-link-item-content ul a {
	font-size: 14px;
	color: #555;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-link-item-content ul a:hover {
	color: #2E8A57;
}

/* 底部导航栏（水平菜单） */
.footer-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
	gap: 12px 20px;
}

.footer-nav a {
	font-size: 14px;
	color: #555;
	text-decoration: none;
	margin: 0 5px;
	transition: color 0.2s;
}

.footer-nav a:hover {
	color: #2E8A57;
}

/* 版权区域 (通用) */
.footer-copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #555;
	background-color: #fff;
	width: 100%;
	padding: 10px 20px;
	text-align: center;
	flex-wrap: wrap;
	gap: 8px;
}

/* 移动端额外区块 (二维码 + 联系方式 + 社交联系) —— 原本移动端独有，现在合并为响应式区块 */
.footer-mobile {
	display: none;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #2ED2B0;
	/* 移动端绿色背景 */
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-mobile-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	/* min-width: 800px; */
	margin: 0 auto;
	padding: 30px 20px 20px 20px;
	gap: 30px;
}

.footer-item {
	flex: 1;
	min-width: 180px;
}

.footer-item h3 {
	font-size: 1.2em;
	color: #fff;
	margin-bottom: 15px;
	font-weight: 600;
}

.lxfs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.lxfs img {
	width: 18px;
	height: 18px;
}

.lxfs a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	word-break: break-all;
}

.lxfs a:hover {
	text-decoration: underline;
}

.lxfs-qrcode {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.lxfs-qrcode a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
}

.lxfs-qrcode a span {
	padding: 4px 10px;
	border-radius: 20px;
}

.lxfs-qrcode img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 8px;
	background: #fff;
	padding: 4px;
}

.lxfs-app {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.lxfs-app a img {
	width: 36px;
	height: 36px;
	transition: transform 0.2s;
}

.lxfs-app a:hover img {
	transform: scale(1.05);
}

/* 回到顶部按钮 */
#backTop {
	display: none;
	position: fixed;
	right: 15px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	background: rgba(46, 210, 176, 1) url('../image/back_top.png') no-repeat center;
	background-size: 25px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 9999;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: opacity 0.2s;
	border: none;
	text-indent: -9999px;
}

#backTop:hover {
	background-color: #2ED2B0;
}

/* 右侧漂浮面板 (桌面+移动自适应) */
#service_panel {
	position: fixed;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10000;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.service_panel_content {
	position: relative;
	right: 0;
	width: 50px;
	margin-bottom: 10px;
}

.service_panel_content ul {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	border: 1px solid #e0e0e0;
	box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.05);
	list-style: none;
}

.service_panel_content ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 48px;
	text-align: center;
	margin: 4px 0;
}

.service_panel_state {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
}

.service_panel_state a {
	display: inline-block;
	width: 32px;
	height: 32px;
	cursor: pointer;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.service_panel_state a.show_panel {
	background-repeat: no-repeat;
	background-image: url('../image/show_btn.png');
	background-color: #fff;
	border-radius: 50%;
}

.service_panel_state a.hide_panel {
	background-repeat: no-repeat;
	background-image: url('../image/hide_btn.png');
	background-color: #fff;
	border-radius: 50%;
}

/* 公共悬浮内容样式 */
.tel_icon,
.edit_icon,
.mail_icon,
.whatsapp_icon,
.facebook_icon,
.messenger_icon,
.weixin_icon {
	width: 28px;
	height: 28px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.tel_icon {
	background-image: url('../image/tel_icon.png');
}

.edit_icon {
	background-image: url('../image/edit_icon.png');
}

.mail_icon {
	background-image: url('../image/mail_icon.png');
}

.whatsapp_icon {
	background-image: url('../image/whatsapp.png');
}

.facebook_icon {
	background-image: url('../image/facebook.png');
}

.messenger_icon {
	background-image: url('../image/messenger.png');
}

.weixin_icon {
	background-image: url('../image/weixin.png');
}

/* 悬浮详情卡片 */
.tel_icon_content,
.edit_icon_content,
.mail_icon_content,
.whatsapp_icon_content,
.facebook_icon_content,
.messenger_icon_content,
.weixin_icon_content {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: linear-gradient(135deg, #2dd2b0, #5ce0c5);
	padding: 12px 18px;
	border-radius: 10px;
	position: absolute;
	right: 50px;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	gap: 6px;
	z-index: 10001;
}

.tel_icon_content a,
.edit_icon_content a,
.mail_icon_content a,
.whatsapp_icon_content a,
.facebook_icon_content a,
.messenger_icon_content a,
.weixin_icon_content a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	display: block;
	text-align: center;
}

.weixin_icon_content a img {
	max-width: 120px;
	border-radius: 8px;
	margin-top: 5px;
}

/* 响应式断点 */
@media (max-width: 992px) {
	.footer-link {
		padding: 40px 20px 20px;
		gap: 24px;
	}

	.footer-link-item {
		min-width: 140px;
	}

	.footer-nav {
		gap: 12px 16px;
	}
}

@media (max-width: 768px) {
	.footer-link {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 30px 16px 10px;
	}

	.footer-link-item {
		width: calc(50% - 16px);
		flex: 0 0 auto;
		min-width: auto;
	}

	.footer-link-item-content>a {
		font-size: 16px;
	}

	.footer-nav a {
		font-size: 13px;
		margin: 0 4px;
	}

	.footer-mobile-info {
		flex-direction: column;
		gap: 24px;
		padding: 24px 20px;
	}

	.footer-item {
		width: 100%;
	}

	.lxfs-qrcode {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.lxfs-app {
		justify-content: flex-start;
	}

	#service_panel .service_panel_content ul li {
		height: 44px;
	}

	.tel_icon_content,
	.edit_icon_content,
	.mail_icon_content,
	.whatsapp_icon_content,
	.facebook_icon_content,
	.messenger_icon_content,
	.weixin_icon_content {
		right: 48px;
		padding: 8px 12px;
	}
}

@media (max-width: 480px) {
	.footer-link-item {
		width: 100%;
	}

	.footer-nav {
		flex-direction: row;
		justify-content: center;
		gap: 10px;
	}

	.footer-nav a {
		font-size: 12px;
		margin: 0 3px;
	}

	.footer-copyright {
		font-size: 11px;
		padding: 10px 12px;
	}

	.service_panel_content {
		width: 44px;
	}

	.service_panel_state {
		width: 44px;
	}

	.tel_icon,
	.edit_icon,
	.mail_icon,
	.whatsapp_icon,
	.facebook_icon,
	.messenger_icon,
	.weixin_icon {
		width: 24px;
		height: 24px;
	}

	.service_panel_content ul li {
		height: 42px;
	}
}

/* 隐藏滚动条优化体验 (不影响功能) */
img[lazy=loading] {
	opacity: 0.6;
}

/* 演示用，确保背景占位图片不存在时样式依旧完整 */
.site-footer {
	background-color: #f0f7f5;
}

/* 保证没有实际图片时图标显示占位 */
.footer-link-item-ico,
.tel_icon,
.edit_icon,
.mail_icon,
.whatsapp_icon,
.facebook_icon,
.messenger_icon,
.weixin_icon {
	border-radius: 4px;
}

.footer-link-item-ico {
	background-color: transparent;
}

@media (max-width: 992px) {
	.footer-mobile {
		display: flex;
	}

	.footer-nav {
		display: none;
	}

	.site-footer {
		background: none;
	}
}

.page {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page a,
.page span {
	width: auto;
	height: 46px;
	padding: 0 5px;
	line-height: 44px;
	background: #fff;
	color: #8E8D8D;
	font-size: 20px;
	display: inline-block;
	border: 1px solid #E2E2E2;
	margin-right: 5px;
	text-align: center;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.page span,
.page a:hover {
	background: #E7E7E7;
	color: #242424;
}