/* ================================================================
   FOOTER — 全站统一页脚（品牌信息 + 联系方式 + 二维码 + 红色版权条）
   ================================================================ */
.footer-wrap {
  position: relative;
  background: #EFF4F0;            /* pale green tint per design */
  overflow: hidden;
}
.footer {
  position: relative; z-index: 2;
  padding: 70px clamp(20px, 5vw, 80px) 50px;
  will-change: transform;
}
/* SVG backgrounds pinned to the BOTTOM-LEFT and BOTTOM-RIGHT edges */
.footer__deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; bottom: -1px; }
.footer__deco .left, .footer__deco .right {
  position: absolute; bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer__deco .left {
  left: 0;
  bottom: -12px;
  width: clamp(280px, 18vw, 520px);
  aspect-ratio: 376 / 128;
  background-position: left bottom;
  background-image: url('../../images/页脚背景左侧.svg');
}
.footer__deco .right {
  right: 0;
  width: clamp(340px, 32vw, 620px);
  aspect-ratio: 376 / 128;
  background-position: right bottom;
  background-image: url('../../images/页脚背景右侧.svg');
}

.footer__inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center;
  gap: 40px;
}
/* width:auto 必须显式写——原生 Bricks 图片元素默认 width:100%，会把 logo 横向拉伸变形（变成列宽×72px）。
   置 auto 后由 height:72px 按原始比例(444:286)缩放，不再变形。 */
.footer__brand img { height: 72px; width: auto; max-width: 100%; }
.footer__brand .cn {
  margin-top: 14px; font-size: 16px; color: var(--ink); font-weight: 600;
  letter-spacing: 0;
}
.footer__brand .en {
  margin-top: 4px; font-size: 11px; color: var(--ink-soft);
  letter-spacing: .12em; font-family: var(--font-en); font-weight: 500;
}
.footer__info {
  font-size: 13px; color: var(--ink); line-height: 2.1;
  /* Red vertical bar to the LEFT of the contact info, per design */
  padding-left: 22px;
  border-left: 2px solid var(--red);
}
.footer__info b { color: var(--green); margin-right: 8px; font-weight: 500; }
.footer__qr { justify-self: end; text-align: center; }
.footer__qr img {
  width: 136px; height: 136px; border-radius: 6px;
  background: #fff; padding: 4px;
  box-shadow: 0 4px 16px -6px rgba(0,0,0,.18);
}
.footer__qr p { font-size: 12px; color: var(--ink-soft); margin-top: 8px; letter-spacing: .15em; }

/* RED full-width copyright bar */
.footer__bar {
  background: var(--red);
  color: rgba(255,255,255,.92);
  padding: 14px clamp(20px, 5vw, 80px);
  font-size: 12px; letter-spacing: .05em;
}
.footer__bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: 1fr; }
  /* 移动端：品牌块(#brxe-zzbrand)完全居中——logo + 中英文名整体水平居中 */
  .footer__brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer__qr { justify-self: center; }   /* 移动端二维码居中 */
}
