/* 站点底栏（UI：白底、顶部分割线、1200 内容区） */
.te-contact-banner {
  width: 100%;
  margin: 0 auto;
  margin-top: 45px;
  background: #ffffff;
  border-top: 1px solid #06c3f5;
  box-sizing: border-box;
}

.te-footer__logo-wrap {
  width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
}
.te-footer__main {
  display: flex;
  justify-content: center;
  padding: 40px 16px 32px;
}

.te-contact-inner.te-footer__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 32px;
  padding-top: 0;
  box-sizing: border-box;
}

.te-footer__brand {
  flex: 0 0 275px;
  max-width: 100%;
}



.te-footer__logo {
  display: block;
  height: auto;
  max-width: 220px;
}

.te-footer__slogan {
  margin: 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  line-height: 2;
}

.te-footer__intro {
  margin: 20px 0 20px;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 1.65;
}



.te-footer__nav {
  flex: 1 1 0;
  min-width: 0;
  max-width: 835px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 32px;
}

.te-footer__col {

}

.te-footer__col--contact {
  flex: 1 1 200px;
  max-width: 280px;
}

.te-footer__col-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #06c3f5;
}

.te-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.te-footer__links li {
  margin-bottom: 10px;
}

.te-footer__links a {
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
}

.te-footer__links a:hover {
  /* color: #06c3f5; */
  text-decoration: none;
  color: #333333;
}

.te-footer__contact-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 30px;
}

.te-footer__contact-list a {
  color: #333333;
  text-decoration: none;
}

.te-footer__contact-list a:hover {
  color: #06c3f5;
}

.te-footer__qrcodes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
}

.te-footer__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 70px;
}

.te-footer__qr img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
  cursor: pointer;
}

.te-footer__qr-label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #333333;
}

/* 二维码放大预览（右侧弹出） */
.te-qr-preview {
  position: absolute;
  width: 113px;
  height: 113px;
  background: #04c4f5;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #04c4f5;
  z-index: 10001;
}

.te-qr-preview__img {
  width: 103px;
  height: 103px;
  display: block;
  background: #ffffff;
}

.te-footer__copyright-wrap {
  /* border-top: 1px solid #e5e5e5; */
  padding: 20px 16px 28px;
  display: flex;
  justify-content: center;
}

.te-footer__copyright {
  margin: 0;
  max-width: 1200px;
  text-align: center;
  font-size: 12px;
  color: #83b8d5;
  line-height: 1.6;
}

/* 免责声明弹框 */
.te-disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.te-disclaimer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.te-disclaimer-modal__dialog {
  position: relative;
  width: min(920px, calc(100vw - 40px));
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 16px;
  background: transparent;
}

.te-disclaimer-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 26px;
  line-height: 36px;
  cursor: pointer;
}

.te-disclaimer-modal__content {
  background: #0b2f6b;
  border: 1px solid rgba(131, 184, 213, 0.8);
  padding: 30px 28px;
  border-radius: 16px;
}

.te-disclaimer-modal__title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.te-disclaimer-modal__text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 768px) {
  .te-disclaimer-modal__content {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .te-disclaimer-modal__close {
    right: 10px;
    top: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 32px;
  }
}

/* 已使用新底栏的页面：隐藏同容器内位于其后的旧深蓝 footer（~ 避免中间空白文本节点导致 + 失效） */
.te-contact-banner ~ .footer {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  .te-contact-banner {
    margin-top: 24px;
  }

  .te-footer__main {
    padding: 28px 15px 24px;
  }

  .te-contact-inner.te-footer__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .te-footer__brand {
    flex-basis: auto;
    text-align: center;
    align-items: center;
  }




  .te-footer__nav {
    max-width: none;
    flex-direction: column;
    gap: 28px;
  }

  .te-footer__col--contact {
    max-width: none;
  }

  .te-footer__qrcodes {
    justify-content: center;
  }

  .te-footer__copyright-wrap {
    padding: 16px 15px 24px;
  }

  .te-footer__copyright {
    font-size: 11px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .te-contact-inner.te-footer__inner {
    max-width: 900px;
  }

  .te-footer__nav {
    max-width: none;
  }
}
