/* 默认隐藏新header */
.new_mobile-header {
  display: none;
}

/* 仅移动端显示新header，隐藏旧header */
@media (max-width: 767px) {
  .new_mobile-header {
    display: block;
    position: relative;
    z-index: 9999;
    background: white;
  }

  .new_main-header-top {
    display: none !important;
  }

  .new_mobile-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
  }

  .new_mobile-logo {
    height: 40px;
  }

  #nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    cursor: pointer;
  }

  #nav-toggle span {
    height: 2px;
    background: #333;
    margin: 3px 0;
  }

  .new_mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    z-index: 9998;
    padding: 10px 16px;
  }

  .new_mobile-menu.new_active {
    right: 0;
  }

  .new_menu-section-title {
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: bold;
    color: white;
  }

  .new_menu-section-title.new_overseas {
    background-color: #3147ab;
  }

  .new_menu-section-title.new_domestic {
    background-color: #e50150;
  }
  
  .new_menu-section-title.new_info-login {
    margin-bottom: 10px;
    background-color: #00a0e9;
    cursor: pointer;
  }

  .new_menu-section-title.new_inquiry-btn {
    margin-bottom: 10px;
    background-color: #fcb347;
    cursor: pointer;
  }

  .new_menu-section-title.new_info-login:hover {
    background-color: #0088cc;
  }

  .new_menu-section-title.new_inquiry-btn:hover {
    background-color: #e09d36;
  }

  .new_menu-section-title a {
    text-decoration: none;
    color: #ffffff;
    gap: 6px;
  }

  .new_menu-section-title img {
    transform: translateY(25%);
    width: 1em;
    height: 1em;
    align-items: center;
    text-align: center;
  }

  .new_menu-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }

  .new_menu-item img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  /* 菜单项文字链接 */
  .new_menu-item a {
    font-size: 15px;
    text-decoration: none;
    color: #000; /* 默认黑色 */
  }

  .new_tour-overseas a {
    color: #3147ab;
    font-weight: bold;
  }

  .new_tour-domestic a {
    color: #e50150;
    font-weight: bold;
  }

  /* .new_info-login {
    background-color: #00a0e9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-align: center;
    text-decoration: none;
  }
  .new_info-login img {
    width: 18px;
  } */

  /* .new_inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fcb347;
    text-align: center;
    text-decoration: none;
  }

  .new_inquiry-btn img {
    width: 1em;
    height: 1em;
  } */

  .new_text-center {
    text-align: center;
  }
}

.new_visit-japan {
  display: flex;
  align-items: flex-start;
}

.new_visit-japan-text a:first-child {
  display: block;
  color: #000;
  font-weight: normal;
}

.new_visit-japan-links {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.new_visit-japan-links a {
  color: #e50150 !important;
  font-weight: bold !important;
  text-decoration: none !important;
  display: inline-block !important;
  margin-top: 2px !important;
}


/* 遮罩层样式 */
.new_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 半透明黑色 */
  z-index: 9998;
  display: none;
}

.new_overlay .new_active {
  display: block;
}

.new_mobile-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    gap: 8px;
    margin-bottom: 10px;
  }
  .new_mobile-header-info .new_info-top {
    display: flex;
    flex-direction: column;
  }
  .new_mobile-header-info .new_info-title {
    color: #c8003d;
    font-size: 9px;
    margin: 0;
  }
  .new_mobile-header-info .new_info-phone {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
  }
  .new_mobile-header-info .new_info-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }
