
    
    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 50px;
    }
    
    /* 品牌Logo */
    .navbar-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    
    .brand-logo {
      width: 50px;
      height: 50px;
      background-color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
    }
    
    .brand-logo i {
      font-size: 24px;
      color: #28a745;
    }
    
    .brand-text {
      color: white;
      font-size: 24px;
      font-weight: 700;
    }
    
    /* 导航菜单 - PC端 */
    .navbar-menu {
      display: flex;
      list-style: none;
      gap: 10px;
    }
    
    .nav-item {
      position: relative;
    }
    
    .nav-link {
      display: block;
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover {
      background-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }
    
    .nav-link.active {
      background-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    /* 下拉菜单 */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      border-radius: 22px;
      min-width: 180px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1001;
	 background-color: rgba(255, 255, 255, 0.1);
		margin-top: 2px;
    }
.dropdown-item:hover, 
.dropdown-item:focus {
    background-color:#26a925; /* 悬停时显示 30% 的白色背景 */
    color:#FFFFFF; /* 如果背景图较深，建议悬停时文字变白 */
}

/* 3. 确保文字颜色可见 */
/* 如果你的网页背景是深色的，你需要把这里的颜色改成白色 (#fff) */
.dropdown-item {
    color: #FFFFFF; /* 默认文字颜色，根据你的背景图深浅调整 */
	
	background-color: rgba(255, 255, 255, 0.6); /* 悬停时显示 30% 的白色背景 */
}    




    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .dropdown-item {
      padding: 12px 20px;
      border-bottom: 0px solid #f0f0f0;
    }
    
    .dropdown-item:last-child {
      border-bottom: none;
    }
    
    .dropdown-item a {
      color: #333;
      text-decoration: none;
      display: block;
      transition: color 0.3s ease;
    }
    
    .dropdown-item a:hover {
      color: #FFFFFF;
    }
    
    .dropdown-item i {
      margin-right: 10px;
      color: #26a925;
      width: 20px;
      text-align: center;
    }
    

    .hamburger-btn:hover {
      transform: rotate(90deg);
    }
    
    
    
    /* 内容区域示例 */
    .content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    
    .section {
      background-color: white;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    

