/* 基本样式 */
* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: manipulation;
}

.lang-ja {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.lang-zh {
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN",
    "メイリオ",
    Meiryo,
    sans-serif;
}

.lang-en {
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.lang-zh,
.lang-zh body,
.lang-zh input,
.lang-zh textarea,
.lang-zh button,
.lang-zh select,
.lang-zh option {
  font-family:     
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN",
    "メイリオ",
    Meiryo,
    sans-serif;
}

.hotel-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.hotel-loading-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(2px);
}

.hotel-loader-shell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-loader-card {
  width: min(92vw, 470px);
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.hotel-loading-popup-overlay .hotel-loader-card {
  width: min(92vw, 420px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.hotel-loader-card--compact {
  width: min(100%, 360px);
  padding: 22px 18px 18px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hotel-loader-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.hotel-loader-icon {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
}

.hotel-loader-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: hotelLoaderFloat 1.8s ease-in-out infinite;
}

.hotel-loader-text {
  margin-top: 12px;
  font-size: 15px;
  color: #1e293b;
  line-height: 1.7;
}

.hotel-loader-progress {
  width: 100%;
  height: 4px;
  margin-top: 18px;
  background: #e9edf5;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.hotel-loader-progress-bar {
  width: 36%;
  height: 100%;
  background: #3467ff;
  border-radius: 999px;
  animation: hotelLoaderBarMove 1.2s ease-in-out infinite;
}

.loading-message {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
}

@keyframes hotelLoaderFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes hotelLoaderBarMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@media screen and (max-width: 767px) {
  .hotel-loader-card {
    width: calc(100vw - 32px);
    padding: 24px 18px 20px;
  }

  .hotel-loading-popup-overlay .hotel-loader-card {
    width: min(calc(100vw - 32px), 360px);
  }

  .hotel-loader-card--compact {
    width: min(100%, 320px);
    padding: 18px 16px 16px;
  }

  .hotel-loader-title {
    font-size: 17px;
  }

  .hotel-loader-text {
    font-size: 14px;
  }
}
/* header */

.header {
  background-color: #011F49;
  width: 100%;
  height: 60px;
  -webkit-user-select: none;
  /* Safari */
  user-select: none;
  transition: all 0.3s ease;
}

/* 🌟 Transparent Header Variant */
#header-placeholder.is-transparent .header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-box {
  width: 100%;
  max-width: 1200px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 12px;
  padding: 0 20px;
}

.header-logo-smart {
  display:block;
  margin-right: auto;
  height: 32px;
  cursor: pointer;
}

.header-logo {
  display: none;
}


@media screen and (max-width: 767px) {
  .header-box {
    padding: 0 20px;
  }

  .header-logo-smart {
    display:block;
    margin-right: auto;
    height: 26px;
    cursor: pointer;
  }
}


.header-btn {
  min-width: 105px;
  padding: 0 15px;
  height: 30px;
  line-height: 2.5em;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: block;
  text-align: center;
  font-size: 12px;
  border-radius: 15px;
}

.header-btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari */
  user-select: none;
}

.header-btn-login img {
  height: 26px;
}

.header-lang {
  position: relative;
}

.header-lang-btn {
  cursor: pointer;
  align-items: center;
}

/* 下拉菜单 */
.header-lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-lang-divider {
  color: #9aa4b2;
}

.header-lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  color: #333;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 6px;
  display: none;
  min-width: 180px;
  z-index: 1000;
  padding: 8px 0;
}

.header-lang-item {
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.header-lang-item:hover {
  background: #f5f5f5;
}

.header-lang-menu-section + .header-lang-menu-section {
  border-top: 1px solid #eef2f7;
  margin-top: 6px;
  padding-top: 6px;
}

.header-lang-menu-title {
  padding: 0 12px 6px;
  color: #8592a6;
  font-size: 12px;
  font-weight: 600;
}

.header-lang-item.is-active,
.header-h5-menu-login-card-lang-list-node.is-active {
  color: #095f70;
  font-weight: 700;
}

.header-lang-item.is-active {
  background: #eef7f9;
}

.header-lang-item.is-active::after,
.header-h5-menu-login-card-lang-list-node.is-active::after {
  content: '✓';
  margin-left: auto;
  color: #095f70;
}

.header-currency-code {
  font-weight: 700;
}

.header-currency-separator {
  color: #a3afbf;
}

.footer-lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #3d3d3d;
  color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 6px;
  display: none;
  min-width: 100px;
  z-index: 1000;
  width: 100%;
}

.footer-lang-item {
  padding: 20px 12px;
  cursor: pointer;
  white-space: nowrap;
}



/* 箭头 */
.lang-arrow {
  font-size: 10px;
}


/* footer */
.footer {
  width: 100%;
  -webkit-user-select: none;
  /* Safari */
  user-select: none;
}

.footer-box {
  width: 100%;
  color: white;
  font-size: 14px;
  text-align: center;
  background-color: black;
  padding-bottom: 30px;
}

.footer-box-policy {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  background-color: black;
  padding: 20px 0;
}

.footer-box-policy-links {
  display: flex;
  align-items: center;
}

.footer-box-policy-sns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-sns-title {
  margin-right: 8px;
  font-weight: bold;
  color: #fff;
  font-size: 13px;
}

.footer-sns-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #333;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-sns-icon:hover {
  background-color: #007bff;
  transform: translateY(-2px);
}

.footer-box-policy-node {
  all: unset;
  /* 重置所有属性（包括颜色、下划线、hover状态等） */
  cursor: pointer;
  color: white;
}

.footer-box-policy-node-lang {
  display: none;
}

.footer-box-policy-node-title {
  margin: 6px 10px;
}

.footer-license {
    border-radius: 5px;
    padding: 20px 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1f1f1f;
    width: 1000px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-license img {
  color: black;
  height: 50px;
}

.footer-box-logo {
  width: 100%;
  font-weight: bold;
  background-color: black;
  border-radius: 3px;
  color: gray;
  fill: #fff;
  padding: 24px 24px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-order-check {
  cursor: pointer;
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
}

.tcp-h5-header-switch {
  display: none;
}

.header-user-btn {
  display: none;
}

.header-content-result-tab-smart-pulldown {
  display: none;
}

@media screen and (max-width: 767px) {
  #header-btn {
    display: none !important;
  }

  .header-order-check {
    display: none;
  }

  .tcp-h5-header-switch {
    -webkit-tap-highlight-color: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    height: 48px;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 40px;
  }

  .tcp-h5-header-switch-icon {
    height: 12px;
    left: 12px;
    position: absolute;
    top: 18px;
    width: 16px;
  }

  .tcp-h5-header-switch-icon div {
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, top 0.25s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tcp-h5-header-switch-icon-top {
    top: 0;
    transform-origin: center center;
  }

  .tcp-h5-header-switch-icon-middle {
    top: 5px;
    transform-origin: center center;
  }

  .tcp-h5-header-switch-icon-bottom {
    bottom: 0;
    transform-origin: center center;
  }

  .tcp-h5-header-switch-icon.is-active .tcp-h5-header-switch-icon-top {
    top: 5px;
    transform: rotate(45deg);
  }

  .tcp-h5-header-switch-icon.is-active .tcp-h5-header-switch-icon-middle {
    opacity: 0;
    transform: scaleX(0);
  }

  .tcp-h5-header-switch-icon.is-active .tcp-h5-header-switch-icon-bottom {
    bottom: 5px;
    transform: rotate(-45deg);
  }

  .header-user-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
  }

  .header-content-result-tab-smart-pulldown {
    display: block;
    position: fixed;
    left: 0;
    top: 60px;
    z-index: 10000;
    width: 100%;
    height: calc(100dvh - 60px);
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .header-content-result-tab-smart-pulldown.show {
    opacity: 1;
    visibility: visible;
  }

  .header-content-result-tab-smart-pulldown-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    overflow-y: scroll;
    transform: translateY(100%);
    transition: transform 0.28s ease;
    height: 100%;
    padding: 20px;
  }

  .header-content-result-tab-smart-pulldown.show .header-content-result-tab-smart-pulldown-box {
    transform: translateY(0);
  }

  .header-h5-menu-login-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }

  .header-h5-menu-login-card-lang {
    border-bottom: 1px solid #d1d1d1;
    padding: 12px 0;
  }

  .header-h5-menu-login-card-lang-title {
    color: #8592a6;
    font-size: 12px;
  }

  .header-h5-menu-login-card-lang-list-node {
    font-size: 14px;
    line-height: 22px;
    color: black;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header-h5-menu-login-card-lang-list-node img,
  .header-h5-menu-login-card-lang-list-node i {
    height: 14px;
    margin-right: 10px;
  }

  .header-h5-menu-login-card-btn .booking,
  .header-h5-menu-login-card-btn .signin {
    width: 48%;
    padding: 18px 13px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 1px 1px 12px #cfd8ee;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-h5-menu-login-card-btn .booking {
    background-color: #2563eb;
    color: white;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .header-h5-menu-login-card-btn .signin {
    background-color: #fff;
    color: black;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .header-h5-menu-login-card-btn img {
    width: 30px;
    margin-right: 10px;
  }

  .login-title-sub {
    font-size: 12px;
    color: rgb(115, 115, 115);
    text-align: center;
    margin-bottom: 20px;
  }

  .header-notice-member {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(232, 241, 250);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    border-radius: 12px;
  }

  .header-notice-member-rank {
    padding: 20px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-right: 1px solid #ffffff;
  }

  .header-notice-member-rank-desc {
    margin: 0 10px;
  }

  .header-notice-member-rank-desc-name {
    font-size: 14px;
    font-weight: bold;
  }

  .header-notice-member-rank-desc-title {
    font-size: 12px;
    color: #5c5c5c;
  }

  .header-notice-member-point {
    padding: 20px;
    width: 50%;
  }

  .header-notice-member-point-title {
    font-size: 14px;
    font-weight: bold;
  }

  .header-notice-member-point-num {
    color: #2563eb;
    font-weight: bold;
  }

  .header-notice-member-point-num span {
    color: #0f74bd;
    font-weight: bold;
  }

  #header-member-info {
    display: none;
  }
}

.footer-box-logo img {
  height: 22px;
}

.footer-box-logo-card {
  padding: 0 10px;
}

.footer-box-logo-globe {
  padding: 0 10px;
}

.etiPartnerLogo {
  height: 22px;
  width: auto;
}

.footer-allrights {
  width: 100%;
  height: 34px;
  background-color: black;
  color: white;
  font-size: 12px;
  text-align: center;
  line-height: 34px;
}

/* 自定义警告弹窗 */
/* 遮罩层 */
#customAlertOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* 弹窗主体 */
#customAlertBox {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 400px;
  max-width: 90%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#customAlertBox-title {
  background-color: #095f70;
  height: 50px;
  width: 100%;
  text-align: center;
}

#customAlertBox-title-logo {
  height: 70%;
  margin-top: 8px;
  margin-left: 30px;
}

#customAlertMessage {
  padding: 20px;
}

#customAlertBox button {
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 3px;
  background: #ffc11c;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #222;
  cursor: pointer;
  white-space: nowrap;
  line-height: 44px;
  width: 250px;
  text-align: center;
  transition: all 0.1s;
  -webkit-user-select: none;
  user-select: none;
  margin-bottom: 20px;
}

.customMessageBtn1 {
  margin-bottom: 10px !important;
}

.customMessageBtn2 {
  background: #2563eb !important;
  color: white !important;
  margin-bottom: 30px !important;
}

#customAlertBox button:hover {
  background-color: #d6a10f;
}

.input-arrow {
  display: none;
}

/* Pikaday-master日期选择框定制css */

.pika-lendar {
  float: left;
  width: 400px !important;
  margin: 8px;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
  height: 35px;
}

.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  background: #f5f5f5;
  height: 35px !important;
}

.lang-en .hanzi {
  display: none;
}

.lang-en .kana {
  display: none;
}

.lang-zh .kana {
  display: none;
}


@media screen and (max-width: 767px) {
  .header-lang {
    display: none;
  }

  .footer-box-policy-node-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: auto;
    margin-left: 5%;
    padding: 5px 10px;
    position: relative;
    border: 1px solid white;
    border-radius: 5px;
    margin-bottom: 6px;
  }

  .footer-box-policy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  .footer-box-policy-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-box-policy-sns {
    margin-top: 25px;
    padding-bottom: 10px;
  }

  .footer-license {
    border-radius: 5px;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1f1f1f;
    width: 1000px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-box-policy-node {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid white;
    padding: 10px 0;
    position: relative;
  }

  .footer-box-policy-node-title {
    text-align: left;
  }

  .footer-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    /* 45度旋转成箭头形 */
    margin: 6px 10px;
  }

  .footer-box-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
  }

  .footer-box-logo-card {
    width: 25%;
    padding: 0 10px 15px 10px;
  }

  .footer-box-logo-globe {
    width: 30%;
    padding: 0 10px;
  }

  /* Pikaday-master日期选择框定制css */

  .pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
  }

  .pika-lendar {
    float: left;
    width: calc(100% - 16px) !important;
    margin: 8px;
  }
}
