.newweb {
	width: 200px;
	height: 50px;
	line-height: 50px;
	background: #FF6600;
	border-radius: 30px;
	position: fixed;
	right: 20px;
	top: 50%;
	z-index: 9999;
	text-align: center;
	font-size: 24px;
}

.newweb a {
	color: #FFFFFF;
}

body {
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #FFFFFF;
	color: #000;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-size: 0.14rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	font-weight: normal;
}

ul,
ul li {
	list-style: none;
}

* {
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	box-sizing: border-box;
}


/* Container for content */

a {
	text-decoration: none;
	color: #000000;
}

img {
	max-width: 100%;
}

.headerFirst {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	color: white;
	z-index: 999;
	transition: all 0.3s ease-in-out;
	padding: 0.15rem 0.2rem;
	margin-top:0.3rem;
}


/* 添加内部容器实现并排布局 */

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 86%;
	/* 可根据需要调整最大宽度 */
	margin: 0 auto;
	width: 100%;
}

.headerFirst .nav-links {
	display: flex;
	align-items: center;
	padding: 0;
	height: auto;
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
	justify-content: flex-end;
}


/* 让子菜单容器水平平铺 */

.has-submenu {
	position: relative;
	padding: 0 0.2rem;
	/* 增加内边距 */
	display: inline-block;
	font-size: 0.22rem;
	white-space: nowrap;
	/* 防止文字换行 */
}


/* 调整logo位置 */

.header-top.logo-link {
	margin: 0;
	flex-shrink: 0;
	/* 防止logo被压缩 */
}


/* 滚动时样式调整 */

.headerFirst.header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 0.1rem 0.2rem;
	margin-top: 0;
}


/* 保持其他原有样式 */

.headerFirst .nav-links a,
.headerFirst .header-buttons .button-en,
.headerFirst .searchtop-icon {
	color: white;
	transition: color 0.3s ease-in-out;
}

.header-buttons {
	margin: 0.2rem;
	line-height: 0;
}

.headerFirst:hover {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.headerFirst:hover .nav-links a,
.headerFirst:hover .header-buttons .button-en,
.headerFirst:hover .searchtop-icon {
	color: #003d79;
}

.headerFirst.header .nav-links a,
.headerFirst.header .searchtop-icon {
	color: #003D79;
}

.headerFirst.header .header-buttons .button-en {
	color: #FFFFFF;
	background: #003D79;
	border: none;
}

.has-submenu:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 0.3rem;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.5);
	transition: background-color 0.3s ease-in-out;
}

.headerFirst:hover .has-submenu:not(:last-child)::after,
.headerFirst.header .has-submenu:not(:last-child)::after {
	background-color: rgba(0, 61, 121, 0.5);
}

.header-buttons a {
	padding: 0;
}

.header-buttons a.blue span {
	color: #007BFF;
}

.headerFirst .submenu {
	background-color: white;
	transition: all 0.3s ease-in-out;
}

.headerFirst .submenu a {
	color: #003d79;
}

.headerFirst .submenu a:hover {
	color: #2196f3;
}

.logo-link {
	width: 2.19rem;
	height: 0.76rem;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	background: url(../imagesNew/logo_w.png) no-repeat;
	background-size: 100% 100%;
}

.logo-link a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.headerFirst:hover .logo-link,
.header .logo-link {
	background: url(../imagesNew/logo.png) no-repeat;
	background-size: 100% 100%;
}

.logo-img {
	width: 100%;
}

.nav-links.active {
	display: flex;
	opacity: 1;
}

.nav-links a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
	text-align: center;
	padding: 0.4rem 0.04rem;
	border-bottom: 2px solid transparent;
	height: 100%;
	display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
	border-bottom: 2px solid #003D79;
	color: #2196f3;
}

a.button-join {
	background: none;
	font-weight: normal;
	color: #4a5568;
	line-height: 0.4rem;
}

a.button-join:hover {
	text-decoration: underline;
}

.nav-links a.button-en {
	font-size: 0.16rem;
	border: 1px solid #FFFFFF;
	border-radius: 30px;
	height: 0.26rem;
	line-height: 0.22rem;
	vertical-align: middle;
	padding: 0 0.16rem;
 
}

.nav-links a.button-en:hover {
	border: 1px solid #003d79;
}

.nav-links a.blue {
	color: #007BFF;
}


/* 滚动动画效果 */

.section-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}


/* 查看更多按钮样式 */

.see-more {
	text-align: center;
	margin-top: 0.3rem;
	font-size: 0.18rem;
}

.see-more a {
	display: inline-block;
	color: #003D79;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.24rem;
}

.see-more a:hover {
	color: #388bc2;
}


/* 页脚整体样式 */

footer {
	background-color: #003D79;
	color: #fff;
	padding: 0.8rem 0;
	font-size: 0.2rem;
}


/* 容器样式，控制内容宽度和居中 */

.footer-container {
	max-width: 86%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid #FFFFFF;
	margin-bottom: 0.3rem;
}


/* 左侧导航和联系信息样式 */

.footer-left {
	flex: 1.3;
	min-width: 2.2rem;
	margin-bottom: 0.2rem;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.23rem;
	margin-bottom: 0.2rem;
	padding: 3px 0;
	background: #003D79;
	text-align: center;
	width: 92%;
	font-size: 0.14rem;
}

.footer-nav .footer-item-mum a {
	color: #ff6b35;
	font-size: 0.2rem;
	font-weight: 500;
}

.footer-nav a {
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s ease;
	border-right: 1px solid #a6d4f9;
	font-size: 0.2rem;
	font-weight: 300;
}

.footer-nav a:last-child {
	border-right: none;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.footer-item-list {
	margin-top:0.1rem;
	line-height:1.6;
}

.contact-info {
	font-size: 0.16rem;
	flex: 0.8;
}

.contact-info p {
	line-height: 1.6;
	font-size: 0.24rem;
	font-weight: 300;
}

.contact-btn-footer {
	display: inline-block;
	background-color: #fff;
	color: #003d79;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
	border-radius: 30px;
	padding: 0.1rem 0.6rem;
	font-size: 0.3rem;
	text-align: center;
	margin-top: 5px;
	font-weight: 300;
}

.icon_phone {
	display: inline-block;
	width: 0.3rem;
	height: 0.66rem;
	background: url(../imagesNew/icon_phone.png) no-repeat;
	background-size: 100% 100%;
	float: left;
	margin-right: 6px;
	vertical-align: bottom;
	margin-top: 5px;
}

.qrcode-group {
	display: flex;
	margin: 0.6rem 0;
	justify-content: space-between;
	padding-right: 1rem;
}

.qrcode-item {
	text-align: center;
}

.qrcode-item img {
	width: 1.2rem;
	height: 1.2rem;
	margin-bottom: 0.05rem;
}

.qrcode-item p {
	font-size: 0.17rem;
}


/* 右侧信息样式 */

.footer-right {
	flex: 1;
	min-width: 2.2rem;
	margin-bottom: 0.2rem;
}

.info-group {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.1rem;
}

.info-item i {
	width: 0.6rem;
	height: 0.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #4ba9e9;
	border-radius: 50%;
	vertical-align: middle;
}

.info-item i img {
	max-width: 100%;
}

.info-item p {
	line-height: 1.6;
	font-weight: 300;
}

.info-item .infotop {
	font-size: 0.2rem;
	color: #ff6b35;
	font-weight: 500;
}

.phone_txt {
	font-size: 0.3rem;
}

.footer-bottom {
	text-align: center;
	font-size: 0.24rem;
	font-weight: 300;
}


/* 二级菜单样式 */

.submenu {
	position: absolute;
	top: 100%;
	/* 紧贴父菜单底部 */
	left: 50%;
	min-width: 1.8rem;
	margin-left: -0.9rem;
	background-color: white;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
	padding: 0.1rem 0;
	border-radius: 4px;
	z-index: 9999;
	display: none;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.submenu li {
	margin: 0;
}

.submenu a {
	display: block;
	padding: 0.1rem 0.2rem;
	/* 增加内边距更易点击 */
	color: #000;
	/* 加深文字颜色提高可读性 */
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
	margin: 0;
	border-bottom: none;
}

.submenu a:hover {
	background-color: #f5f9ff;
	color: #2196f3;
	border-bottom: none;
}


/* 鼠标悬停显示二级菜单 - 所有设备通用 */

.has-submenu:hover .submenu {
	display: block;
	opacity: 1;
	/* 完全显示 */
	transform: translateY(0);
	/* 回归正常位置 */
}


/* 确保主菜单链接有足够高度，便于触发悬停 */

.has-submenu>a {
	display: inline-block;
	padding: 0.15rem 0.1rem;
}

.searchtop-icon {
	background: none;
	border: none;
	color: #666;
	font-size: 0.18rem;
	cursor: pointer;
	padding: 10px;
	transition: color 0.2s ease;
	vertical-align: middle;
}

.search-icontop:hover {
	color: #2196f3;
}

.nav-links .search-container {
	line-height: 0;
}

.nav-links .search-container a:hover {
	border-bottom: 2px solid transparent;
}


/* 桌面端默认隐藏汉堡按钮 */

.mobile-menu-btn {
	display: none;
}

.close-menu-btn {
	display: none;
}

.overlay {
	display: none;
}


/* 移动端样式 (当屏幕小于 768px 时生效) */

@media (max-width: 768px) {
	.headerFirst{margin-top: 0;}
	.header-inner {
		height: 2rem;
	 max-width: 100%;
	}
	.headerFirst.header .nav-links a,
	.headerFirst.header .searchtop-icon {
		text-align: left;
		padding-left: 2rem;
	}
	.headerFirst.header {
		padding: 0.3rem 0.2rem;
	}
	.logo-link {
		width: 4.53rem;
		height: 1.62rem;
	}
	.has-submenu:hover .submenu {
		margin-left: 1rem;
	}
	/* 显示汉堡按钮 */
	.mobile-menu-btn {
		display: block;
		font-size: 1.2rem;
		cursor: pointer;
		padding: 15px;
		position: absolute;
		/* 绝对定位，防止挤压Logo */
		right: 10px;
		top: -11px;
		/* 根据实际高度调整 */
		z-index: 102;
		
	}
	.header .mobile-menu-btn{color: #003D79;}
	/* 导航链接容器变为侧边栏 */
	#nav-links {
		position: fixed;
		top: 0;
		right: -280px;
		/* 默认隐藏在右侧 */
		width: 280px;
		height: 100vh;
		background-color: #fff;
		flex-direction: column;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 1000;
		padding-top: 0;
		display: block;
		/* 覆盖可能存在的 flex */
		overflow-y: auto;
	}
	/* 激活状态：滑出来 */
	#nav-links.active {
		right: 0;
	}
	/* 导航项样式调整 */
	.has-submenu {
		display: block;
		border-bottom: 1px solid #f5f5f5;
		width: 100%;
	}
	.has-submenu>a {
		display: inline-block;
		padding: 0.6rem;
		width: calc(100% - 50px);
		/* 留出箭头位置 */
		font-size: 0.8rem;
		color: #333;
	}
	/* 二级菜单默认隐藏 */
	.submenu {
		display: none;
		position: static;
		width: 100%;
		background-color: #f9f9f9;
		box-shadow: none;
	}
	.submenu li a {
		padding: 0.2rem 0 0.2rem 3rem;
		display: block;
		color: #666;
		font-size: 14px;
		text-align: left;
	}
	/* 动态生成的下拉箭头 */
	/*.submenu-toggle {
		width: 2rem;
		height: 2.4rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		float: right;
		cursor: pointer;
		color: #003D79;
		transition: transform 0.3s;
	}
	.submenu-toggle .fa-solid,
	.submenu-toggle .fas {
		font-size: 0.6rem;
	}
	.submenu-toggle.rotate {
		transform: rotate(180deg);
		color: #0056b3;
	}*/
	/* 关闭按钮 */
	.close-menu-btn {
		display: block;
		text-align: right;
		padding: 0.6rem;
		font-size: 0.9rem;
		color: #666;
		border-bottom: 1px solid #eee;
	}
	/* 遮罩层 */
	.overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
	}
	.overlay.active {
		opacity: 1;
		visibility: visible;
	}
	/* 调整其他元素 */
	.header-buttons,
	.search-container {
		display: none;
		/* 移动端暂时隐藏搜索和语言按钮，或自行调整样式 */
	}
	.headerFirst:hover .has-submenu:not(:last-child)::after,
	.headerFirst.header .has-submenu:not(:last-child)::after {
		background: transparent;
	}
	 .footer-container{display: block;}
	  .footer-nav .footer-item-mum a,.footer-nav a,.contact-info p,.phone_txt,.contact-btn-footer,.infotop,.info-item p,.footer-bottom,.qrcode-item p{font-size: 9px;font-weight: normal;}
	  .info-item i{width: 1rem; height: 1rem;}
	  
	  .qrcode-item img{width: 3.6rem;height: 3.6rem;}
	  .footer-nav{flex-wrap: wrap;
        justify-content:flex-start;
        gap: 0.1rem;}
        .footer-item{
        	 flex: none;
        width: calc(30% - 0.0667rem);
        box-sizing: border-box;
        
        }
}