/* 导航栏容器 */
.navbar {
	/* background-color: #fff;
		        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	border-radius: 8px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

/* 品牌标识区域 */
.brand {
	display: flex;
	align-items: center;
}

.brand-icon {
	width: 60px;
	height: 60px;
	background-color: #FF6B35;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	margin-right: 10px;
}

.brand-icon .main-text {
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}

.brand-icon .sub-text {
	font-size: 12px;
	line-height: 1;
}

.brand-name {
	font-size: 24px;
	font-weight: bold;
	margin-left: 10px;
	color: #FF6B35;
}

/* 导航菜单 */
.nav-menu {
	display: flex;
	list-style: none;
}

.nav-item {
	margin-left: 30px;
}

.nav-link {
	text-decoration: none;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 0;
	position: relative;
	transition: color 0.3s;
}

.nav-link:hover {
	color: #00b0a0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #00b0a0;
	transition: width 0.3s;
}

.nav-link:hover::after {
	width: 100%;
}

/* 移动端菜单按钮 */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

.text {
	text-align: center;
	font-size: 30px;
	padding-top: 60px;
	padding-bottom: 60px;
	font-weight: bold;
}

.image_div-8 {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 200px;
}


/* 响应式设计 */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: #fff;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 40px;
		transition: left 0.5s;
		z-index: 1000;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-item {
		margin: 15px 0;
	}

	.nav-link {
		font-size: 18px;
		padding: 10px 20px;
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}
	
	.text {
		font-size: 10px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.image_div-8 {
		margin-bottom: 20px;
	}
}