/* 修复菜单按钮显示问题 */

/* 强制显示菜单按钮 */
.menu-button-3.w-nav-button {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 确保在所有屏幕尺寸下都显示 */
@media screen and (max-width: 991px) {
  .menu-button-3.w-nav-button {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .menu-button-3.w-nav-button {
    display: block !important;
  }
}

@media screen and (max-width: 479px) {
  .menu-button-3.w-nav-button {
    display: block !important;
  }
}

/* 修复Lottie动画显示 */
.lottie-animation {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* 确保按钮在所有状态下都可见 */
.menu-button-3.w-nav-button.w--open {
  display: block !important;
}

.menu-button-3.w-nav-button:hover {
  display: block !important;
}

/* 修复下载按钮背景色 - 保持白色 */
.btn__large {
  background-color: white !important;
  color: #4b4b4b !important;
}

/* 确保在所有媒体查询中都保持白色背景 */
@media screen and (min-width: 1280px) {
  .btn__large {
    background-color: white !important;
  }
}

@media screen and (max-width: 1279px) {
  .btn__large {
    background-color: white !important;
  }
}

@media screen and (max-width: 991px) {
  .btn__large {
    background-color: white !important;
  }
}

@media screen and (max-width: 767px) {
  .btn__large {
    background-color: white !important;
  }
}

@media screen and (max-width: 479px) {
  .btn__large {
    background-color: white !important;
  }
}
