/* ==========================================================================
   Footer (Index-Style) - 与 index.html 完全一致的固定页脚
   ========================================================================== */

/* 桌面端：固定 1920 设计稿尺寸，支持流体缩放 */
.footer {
  width: 100%;
  max-width: 1920px;
  height: 419px;
  position: relative;
  left: 0;
  background: #1a1a1a;
  z-index: 100;
  margin: 100px auto 0; /* 水平居中 */
}

/* 1280px-1900px 流体适配 */
@media screen and (min-width: 1280px) and (max-width: 1899px) {
  .footer {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 419px;
  }
}

/* 与 index.html 一致的文字样式（只作用于 footer 内部） */
.footer .text-16 {
  font-size: 16px;
  font-weight: 400;
  color: #9E9E9E;
  line-height: 1.8;
}

.footer .text-14 {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
}

/* 让 footer 内的链接保持 index 风格 */
.footer a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer a:hover {
  opacity: 0.8;
}

/* 小于1200：切换为流式布局（直接沿用 index.html 的规则） */
@media (max-width: 1199px) {
  .footer {
    width: 100%;
    height: auto;
    padding: 60px 20px;
    position: relative;
    top: auto !important;
    margin-top: 40px;
  }

  .footer > * {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }
}
