body:not(.download-page) {
  padding-top: 100px;
}

.navbar_box {
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: white;
  z-index: 9999999;
  position: relative;
}

.footer_box {
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: white;
  z-index: 999;
  position: relative;
}

.navbar_box::before,
.footer_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(138, 51, 255, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

.navbar_box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.sticky_class {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.navbar {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999999;
  transition: all 0.3s ease;
}
.navbar .navbar-left {
  display: flex;
  align-items: center;
  flex: 1;
}
.navbar .navbar-left .logo {
  position: absolute;
  top: 14px;
  left: 0;
  width: 135px;
  height: 47px;
}
.navbar .menu {
  margin-left: 215px;
}
.navbar .menu a {
  margin: 0 15px;
  font-weight: 500;
  font-size: 20px;
  color: #aaaaaa;
  line-height: 23px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .menu a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8a33ff, #f55bba);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(138, 51, 255, 0.3);
}

.navbar .menu a:hover::after {
  width: 100%;
}

.navbar .menu a:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(138, 51, 255, 0.3);
}
.navbar .menu .active {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  line-height: 23px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  text-shadow: 0 2px 8px rgba(138, 51, 255, 0.5);
}

.navbar .menu .active::after {
  width: 100%;
  background: linear-gradient(90deg, #8a33ff, #f55bba);
  box-shadow: 0 1px 6px rgba(138, 51, 255, 0.4);
}
.navbar .nav_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 50px;
  background: linear-gradient(135deg, #8a33ff 0%, #f55bba 100%);
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(138, 51, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.navbar .nav_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.navbar .nav_btn:hover::before {
  left: 100%;
}

.navbar .nav_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(138, 51, 255, 0.5);
}

.navbar .nav_btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(138, 51, 255, 0.3);
}
.navbar .nav_btn .go_icon {
  width: 26px;
  height: 26px;
  margin-right: 3px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar .nav_btn:hover .go_icon {
  transform: scale(1.1) rotate(5deg);
}

.navbar .nav_btn .nav_text {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.navbar .nav_btn:hover .nav_text {
  transform: translateX(2px);
}
/* 下拉菜单容器 */
.menu-item-dropdown {
  position: relative;
  display: inline-block;
}

.menu-item-dropdown .dropdown-box {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  min-width: 160px;
  padding: 10px 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* 下拉内容容器，默认隐藏 */
.menu-item-dropdown .dropdown-box .dropdown-content {
  position: relative;
  background-color: #444444; /* 与导航栏背景颜色区分开 */
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
}

/* 下拉内容中的链接样式 */
.menu-item-dropdown .dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 18px;
  transition: background-color 0.3s ease;
  margin: 0;
}

/* 鼠标悬停时显示下拉内容 */
.menu-item-dropdown:hover .dropdown-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 鼠标悬停在下拉链接上时的样式 */
.menu-item-dropdown .dropdown-content a:hover {
  background-color: #555555;
}

/* 三角形指示器 */
.menu-item-dropdown .dropdown-content::after {
  content: "";
  position: absolute;
  top: -8px; /* 调整三角形的位置 */
  left: 20px; /* 根据需要调整水平位置 */
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #444444 transparent;
}
/* 汉堡菜单样式 */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(138, 51, 255, 0.2);
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: linear-gradient(90deg, #fff, #f0f0f0);
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.footer_box {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.footer {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 0;
  position: relative;
  transition: all 0.3s ease;
}
.footer_logo {
  width: 160px;
  height: 56px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(138, 51, 255, 0.2));
}

.footer_logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(138, 51, 255, 0.3));
}
.footer .footer_left {
  display: flex;
}

.footer .footer_left .footer_menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  margin-left: 40px;
  width: 100%;
  max-width: 700px;
}
.footer .footer_left .footer_menu .footer_text {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer .footer_left .footer_menu .footer_text:first-child {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}
.footer .footer_left .footer_menu .footer_text .footer_text_item {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 8px;
  border-radius: 6px;
  margin: 0 2px;
}

.footer .footer_left .footer_menu .footer_text .footer_text_item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(138, 51, 255, 0.3);
}

.footer .footer_left .footer_menu .footer_text .Facebook_logo {
  width: 20px;
  height: 20px;
  margin-right: 3px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer .footer_left .footer_menu .footer_text .footer_text_item:hover .Facebook_logo {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(138, 51, 255, 0.3));
}

.footer .footer_left .footer_menu .footer_text .footer_text_center_line {
  margin: 0 20px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer .footer_left .footer_menu .footer_text:hover .footer_text_center_line {
  opacity: 1;
  color: #8a33ff;
}
.footer .footer_right {
  width: auto;
  min-width: 120px;
  transition: all 0.3s ease;
}
.footer .footer_right .footer_line_box {
  width: auto;
  min-width: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.footer .footer_right .footer_line_box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138, 51, 255, 0.2);
}
.footer .footer_right .footer_line_box .line-logo {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer .footer_right .footer_line_box:hover .line-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(138, 51, 255, 0.3));
}

.footer .footer_right .footer_line_box .footer_line_text {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer .footer_right .footer_line_box:hover .footer_line_text {
  color: #8a33ff;
  text-shadow: 0 2px 8px rgba(138, 51, 255, 0.3);
}

.footer .footer_right .line-code {
  width: 87px;
  height: 87px;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer .footer_right .line-code:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(138, 51, 255, 0.3);
  border-color: rgba(138, 51, 255, 0.3);
}

/* 移动端菜单背景遮罩 */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(138, 51, 255, 0.1));
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
  body:not(.download-page) {
    padding-top: 90px;
  }

  .navbar {
    width: 95%;
    padding: 15px 0;
    flex-wrap: wrap;
    position: relative;
    min-height: 60px;
  }
  
  .navbar_box {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  }
  
  .navbar .navbar-left .logo {
    width: 100px;
    height: 35px;
    position: static;
  }
  
  .navbar .menu {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 30px 0;
    border-top: 1px solid rgba(138, 51, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 0 0 20px 20px;
    z-index: 99999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-25px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
  }
  
  .navbar .menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .navbar .menu a {
    margin: 8px 20px;
    text-align: left;
    font-size: 18px;
    padding: 16px 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
  }
  
  .navbar .menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .navbar .menu a:hover::before {
    left: 100%;
  }
  
  .navbar .menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(138, 51, 255, 0.3);
    box-shadow: 0 4px 15px rgba(138, 51, 255, 0.2);
  }
  
  .navbar .menu a.active {
    background: linear-gradient(135deg, #8a33ff 0%, #f55bba 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(138, 51, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    margin: 6px 20px;
    padding: 12px 20px;
  }
  
  .navbar .nav_btn {
    width: 150px;
    height: 45px;
    margin: 20px 20px 15px 20px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(138, 51, 255, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .navbar .nav_btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(138, 51, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .hamburger {
    display: flex;
  }
  
  /* 下拉菜单在移动端的调整 */
  .menu-item-dropdown {
    width: 100%;
  }
  
  .menu-item-dropdown .dropdown-box {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .menu-item-dropdown .dropdown-content {
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid #444;
    overflow: hidden;
  }
  
  .menu-item-dropdown .dropdown-content::after {
    display: none;
  }
  
  .menu-item-dropdown .dropdown-content a {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .menu-item-dropdown .dropdown-content a:last-child {
    border-bottom: none;
  }
  
  .menu-item-dropdown .dropdown-content a:hover {
    background: rgba(138, 51, 255, 0.2);
    transform: translateX(8px);
    padding-left: 28px;
  }
  
  .menu-item-dropdown .dropdown-content a::before {
    content: '▶';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #8a33ff;
  }
  
  .menu-item-dropdown .dropdown-content a:hover::before {
    opacity: 1;
  }
  
  /* 页脚响应式 */
  .footer {
    flex-direction: column;
    width: 95%;
    padding: 35px 0;
    text-align: center;
    gap: 25px;
  }
  
  .footer .footer_left {
    flex-direction: column;
    margin-bottom: 25px;
    align-items: center;
  }
  
  .footer .footer_left .footer_menu {
    margin-left: 0;
    margin-top: 25px;
    align-items: center;
  }
  
  .footer .footer_left .footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    width: 100%;
    max-width: 500px;
  }

  .footer .footer_left .footer_menu .footer_text {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
    gap: 5px;
  }

  .footer .footer_left .footer_menu .footer_text:first-child {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  
  .footer .footer_left .footer_menu .footer_text .footer_text_center_line {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer .footer_right {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer .footer_right .footer_line_box {
    width: auto;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 480px) {
  .navbar_box {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
  }
  
  body:not(.download-page) {
    padding-top: 80px;
  }

  .navbar {
    width: 100%;
    padding: 12px 15px;
    min-height: 55px;
  }
  
  .navbar .navbar-left .logo {
    width: 85px;
    height: 30px;
    transition: transform 0.3s ease;
  }
  
  .navbar .navbar-left .logo:hover {
    transform: scale(1.1);
  }
  
  .navbar .menu {
    padding: 25px 0;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 80%, #0d0d0d 100%);
  }
  
  .navbar .menu a {
    font-size: 16px;
    margin: 6px 15px;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }
  
  .navbar .nav_btn {
    width: 130px;
    height: 38px;
    font-size: 14px;
    margin: 15px 15px 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(138, 51, 255, 0.3);
  }
  
  .navbar .nav_btn .go_icon {
    width: 22px;
    height: 22px;
    margin-right: 4px;
  }
  
  .hamburger {
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .hamburger span {
    width: 22px;
    height: 2.5px;
    margin: 3px 0;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    border-radius: 2px;
  }
  
  /* 手机端下拉菜单优化 */
  .menu-item-dropdown .dropdown-box {
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
  }
  
  .menu-item-dropdown .dropdown-content a {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 8px;
    margin: 2px 5px;
    background: rgba(255, 255, 255, 0.02);
  }
  
  .menu-item-dropdown .dropdown-content a:hover {
    padding-left: 26px;
    transform: translateX(6px) scale(1.02);
    background: rgba(138, 51, 255, 0.25);
    box-shadow: 0 4px 12px rgba(138, 51, 255, 0.2);
  }
  
  /* 页脚手机响应式 */
  .footer {
    width: 100%;
    padding: 25px 15px;
    gap: 20px;
  }
  
  .footer_logo {
    width: 130px;
    height: 45px;
    margin-bottom: 10px;
  }
  
  .footer .footer_left .footer_menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .footer .footer_left .footer_menu .footer_text {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
    justify-content: center;
    text-align: center;
  }
  
  .footer .footer_left .footer_menu .footer_text .footer_text_center_line {
    margin: 0 8px;
    opacity: 0.7;
  }
  
  .footer .footer_right .footer_line_box .footer_line_text {
    font-size: 14px;
    margin-left: 8px;
  }
  
  .footer .footer_right .line-code {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(138, 51, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
}
