/* ========== 移动端导航栏样式 ========== */
.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 54px;
	background: #fff;
	z-index: 1001;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	box-sizing: border-box;
	text-decoration: none !important;
}
.logo {
	display: flex;
}
.mobile-logo {
	height: 35px;
}

.hamburger-menu {
	width: 30px;
	height: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.hamburger-line {
	width: 100%;
	height: 2px;
	background-color: #002fa5;

	transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* 移动端侧边栏 */
.sidebar {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background: white;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	z-index: 1002;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.sidebar.active {
	right: 0;
}

.sidebar-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #002fa5;
}

.sidebar-close {
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sidebar-close::before,
.sidebar-close::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 2px;
	background-color: #333;
}

.sidebar-close::before {
	transform: rotate(45deg);
}

.sidebar-close::after {
	transform: rotate(-45deg);
}

.sidebar-menu {
	padding: 0;
}

.sidebar-menu-item {
	padding: 15px 20px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	font-size: 16px;
	color: #002fa5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none !important;
}

.sidebar-menu-item:hover {
	background-color: #f5f5f5;
}

.sidebar-submenu {
	padding-left: 0;
	display: none;
	/* background-color: #f9f9f9; */
}

.sidebar-submenu.active {
	display: block;
}

.sidebar-submenu-item {
	padding: 12px 20px 12px 40px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	font-size: 14px;
	color: #002fa590;
	display: block;
	text-decoration: none;
	box-sizing: border-box;
}

.sidebar-submenu-item:last-child {
	border-bottom: none;
}

.sidebar-submenu-item:hover {
	background-color: #f0f0f0;
}

.sidebar-language {
	padding: 20px;
	border-top: 1px solid #eee;
	margin-top: auto;
}

.sidebar-language-title {
	font-size: 16px;
	margin-bottom: 10px;
	color: #002fa5;
}

.sidebar-language-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #002fa5;
}

.sidebar-language-option {
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
}

.sidebar-language-option.active {
	background-color: #002fa5;
	color: white;
	border-color: #002fa5;
}




