/* 基本样式 */
* {
  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;
}

/* header */

.header {
  background-color: #03205a; /* 替换为新版 Footer/酒店同款深蓝 */
  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;
}

.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;
}

.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 {
  width: auto;
  padding: 0 20px;
  height: 32px;
  line-height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* 弹窗遮罩出现后 hover 状态会消失，登录按钮不再因 1px 位移产生跳动 */
#header-btn:hover {
  transform: none;
}

.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-member-entry {
  display: inline-flex;
  min-width: 0;
  height: 34px;
  box-sizing: border-box;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-member-entry:hover {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.header-member-entry-rank {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
}

.header-member-entry-rank img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.header-member-entry-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.header-member-entry-name {
  max-width: 82px;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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 {

}

.point-equivalent-note {
  color: #667085;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 4px;
}

.point-equivalent-note.is-inline {
  display: inline-block;
  margin-left: 6px;
  margin-top: 0;
}

.header-order-check {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  height: 32px;
  padding: 0 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  user-select: none;
}

.header-order-check span {
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}
.lang-ja .header-order-check span,.lang-en .header-order-check span {
  transform: translateY(0);
}

.header-order-check i {
  line-height: 1;
  font-size: 14px;
}

.header-order-check:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.header-action-divider {
  display: none;
}

/* 下拉菜单 */
.header-lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  color: #1F2937;
  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-menu-section + .header-lang-menu-section {
  border-top: 1px solid #E5E7EB;
  margin-top: 6px;
  padding-top: 6px;
}

.header-lang-menu-title {
  padding: 0 12px 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 600;
}

.header-lang-item {
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.header-lang-item:hover {
  background: #F7F8FA;
}

.header-lang-item.is-active,
.header-h5-menu-login-card-lang-list-node.is-active {
  color: #03205a; /* 替换为新版 Footer/酒店同款深蓝 */
  font-weight: 700;
}

.header-lang-item.is-active {
  background: #EEF3FF; /* 替换为品牌淡蓝色 */
}

.header-lang-item.is-active::after,
.header-h5-menu-login-card-lang-list-node.is-active::after {
  content: '✓';
  margin-left: auto;
  color: #03205a; /* 替换为新版 Footer/酒店同款深蓝 */
}

.header-currency-code {
  font-weight: 700;
}

.header-currency-separator {
  color: #667085;
}


.footer-lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1F2937;
  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-kmm {
  width: 100%;
  font-size: 12px;
  width: 100%;
  color: white;
  padding-top: 30px;
}


.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;
  border-radius: 50%;
  justify-content: center;
  background-color: #1F2937;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-sns-icon:hover {
  background-color: #2C61FE;
  transform: translateY(-2px);
}

.footer-sns-icon i {
  font-size: 16px;
}

.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: #1F2937;
  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;
}

.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%;
  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: 9999999;
}

/* 弹窗主体 */
#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: #03205a; /* 替换为新版 Footer/酒店同款深蓝 */
  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: #F06703;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #fff;
  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: #2C61FE !important;
  color: white !important;
  margin-bottom: 30px !important;
}

#customAlertBox button:hover {
  background-color: #F06703;
}

.input-arrow {
  display: none;
}

/* Pikaday-master日期选择框定制css */

.pika-lendar {
  float: left;
  width: 400px !important;
  margin: 8px;
}

.pika-table th {
  color: #667085;
  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: #667085;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  background: #F7F8FA;
  height: 35px !important;
}

.lang-en .hanzi {
  display: none;
}

.lang-en .kana {
  display: none;
}

.lang-zh .kana {
  display: none;
}

.tcp-h5-header-switch {
  display: none;
}

.header-user-btn{
  display: none;
}

.header-user-member-icon {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.header-content-result-tab-smart-pulldown{
  display: none;
}

@media screen and (max-width: 767px) {

  .header-box {
    gap: 8px;
  }

  .header-desktop-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
  }

  .header-member-entry {
    height: 30px;
    gap: 5px;
    padding: 2px 8px 2px 4px;
    border-radius: 16px;
  }

  .header-member-entry-rank,
  .header-member-entry-rank img {
    width: 23px;
    height: 23px;
  }

  .header-member-entry-rank {
    flex-basis: 23px;
  }

  .header-member-entry-name {
    max-width: 62px;
    font-size: 11px;
    line-height: 13px;
  }

  .header-lang {
    display: none;
  }

  .header-order-check,
  .header-action-divider {
    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: #1F2937;
    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: #1F2937;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-bottom-color: #E5E7EB;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
  }

  .pika-lendar {
    float: left;
    width: calc(100% - 16px) !important;
    margin: 8px;
  }


  /* 手机版登菜单按钮 */
  .tcp-h5-header-switch {
    -webkit-tap-highlight-color: transparent;
    color: var(--smtcColorTextPrimary, #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: var(--smtcColorTextPrimary, #fff);
    border-radius: 2px;

    /* 关键：用 transition，不用 animation 更简单稳 */
    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;
  }

  /* 点击后变成 X */
  .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 #E5E7EB;
    padding: 12px 0;
  }

  .header-h5-menu-login-card-lang-title{
    color: #667085;
    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;
    gap: 10px;
  }

  .header-h5-menu-login-card-lang-list-node img{
    height: 14px;
    margin-right: 10px;
  }  

  .header-h5-menu-login-card-lang-list-node i{
    height: 14px;
    margin-right: 10px;
    color: #03205a; /* 新版 Footer/酒店同款深蓝 */
  }  

  .header-h5-menu-login-card-btn .booking{
    width: 48%;
    height: 52px;
    box-sizing: border-box;
    padding: 0 13px;
    background-color: #2C61FE;
    color: white;
    border: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 1px 1px 12px #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-h5-menu-login-card-btn .signin{
    width: 48%;
    height: 52px;
    box-sizing: border-box;
    padding: 0 13px;
    background-color: #fff;
    color: black;
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 1px 1px 12px #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-h5-menu-login-card-btn img{
    width: 30px;
    margin-right: 10px;
  }

  .header-h5-menu-login-card-btn .booking i,
  .header-h5-menu-login-card-btn .signin i {
    flex: 0 0 30px;
    width: 30px;
    margin-right: 10px;
    color: currentColor;
    font-size: 18px;
    line-height: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .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: #667085;
  }

  .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: #2C61FE;
    font-weight: bold;
  }

  .header-notice-member-point-num span {
    color: #2C61FE;
    font-weight: bold;
  }

  #header-member-info{
    display: none;
  }
}

/* login流光代码 */

/* 让文字在最上层，避免被SVG/伪元素影响 */
#header-btn {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

#header-btn {
  z-index: 1;
}

#header-btn * {
  position: relative;
  z-index: 2;
}

/* 关键：SVG 放底层（否则会挡住伪元素的视觉） */
#header-btn .trace-svg {
  z-index: 1 !important;
  opacity: 0;
  /* ✅ 直接隐藏你原来的SVG流光（可删） */
}

/* 白色扫光条 */
#header-btn::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 45%;
  height: 220%;
  pointer-events: none;
  z-index: 3;

  /* 白色渐变：中间亮，两边透明 */
  background: linear-gradient(120deg,
      rgba(120, 220, 255, 0) 0%,
      rgba(120, 220, 255, 0.18) 35%,
      rgba(200, 250, 255, 0.9) 50%,
      rgba(120, 220, 255, 0.18) 65%,
      rgba(120, 220, 255, 0) 100%);

  transform: translateX(0) skewX(-20deg);
  opacity: 0;

  /* 3.2秒一个周期：前2.2秒不动，后1秒刷过去 */
  animation: loginShineOnce 4.2s ease-in-out infinite;
}

/* 动画：等待 -> 刷过去 -> 消失 */
@keyframes loginShineOnce {

  0%,
  68% {
    opacity: 0;
    transform: translateX(0) skewX(-20deg);
  }

  69% {
    opacity: 1;
  }

  92% {
    opacity: 1;
    transform: translateX(360%) skewX(-20deg);
  }

  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-20deg);
  }
}

/* hover 更频繁一点（可选） */
#header-btn:hover::before {
  animation-duration: 2.2s;
}

@media screen and (max-width: 767px) {
  #header-btn{
    display: none;
  }
}

/* 新版 Footer 样式 */
.new-footer {
  background-color: #03205a;
  color: #ffffff;
  padding: 40px 0 20px 0;
  width: 100%;
}

.new-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.new-footer-left {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-footer-logo {
  height: 36px;
  width: auto;
  margin: 0 0 10px 0;
}

.new-footer-slogan {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.new-footer-sns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.new-footer-sns a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}

.new-footer-sns a:hover {
  opacity: 0.8;
}

.new-footer-sns img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: block;
}

.new-footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.new-footer-col {
  display: flex;
  flex-direction: column;
}

.new-footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.footer-acc-check {
  display: none;
}

.footer-acc-icon {
  display: none;
}

.footer-acc-label {
  cursor: default;
}

.new-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.new-footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.new-footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.new-footer-right {
  flex: 0 0 350px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new-footer-payments-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.new-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.new-footer-payments-row {
  display: contents;
}

.new-footer-payments img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  display: block;
}

.new-footer-certs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.new-footer-certs img {
  height: 48px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.new-footer-certs img:hover {
  opacity: 1;
}

.new-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
}

.new-footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  .new-footer {
    padding: 30px 15px 20px;
  }
  .new-footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .new-footer-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .new-footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-acc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
  }
  .new-footer-col h4 {
    margin: 0;
  }
  .footer-acc-icon {
    display: block;
    position: relative;
    width: 14px;
    height: 14px;
  }
  .footer-acc-icon::before,
  .footer-acc-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
  }
  .footer-acc-icon::before {
    width: 14px;
    height: 2px;
  }
  .footer-acc-icon::after {
    width: 2px;
    height: 14px;
  }
  .footer-acc-check:checked ~ .footer-acc-label .footer-acc-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .footer-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    margin: 0;
  }
  .footer-acc-check:checked ~ .footer-acc-content {
    max-height: 300px;
    padding-bottom: 16px;
  }
  .new-footer-right {
    flex: 1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .new-footer-left {
    width: 100%;
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
  }
  .new-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .new-footer-sns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
    margin-top: 10px;
  }
  .new-footer-payments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .new-footer-payments-row {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .new-footer-payments img {
    height: 34px;
  }
  .new-footer-certs {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0 auto;
  }
  .new-footer-certs img {
    height: 56px;
  }
}

.required-asterisk {
  color: #DC2626 !important;
  margin-left: 2px;
  font-weight: bold;
}
