/* ===== 全局重置 ===== */

/* ===== Banner 图 ===== */
.page-banner {
  width: 100%;
  height: 320px;
  background: url("/images/contactbanner.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


@media (max-width: 768px) {
  .page-banner {
    height: 220px;
  }
  .page-banner .banner-text h1 {
    font-size: 2.2rem;
  }
}

/* ===== 当前页面导航（面包屑） ===== */
.page-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  border-bottom: 1px solid #e8ecf2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #6a7f9b;
}
.page-nav a {
  color: #1a2639;
  text-decoration: none;
  transition: 0.2s;
}
.page-nav a:hover {
  color: #ae1623;
}
.page-nav .sep {
  color: #c0c8d6;
}
.page-nav .current {
  color: #ae1623;
  font-weight: 600;
}

/* ===== 内容主体 ===== */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

/* ===== 联系我们区块 ===== */
.contact-section {
  margin-bottom: 50px;
}
.contact-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b1a33;
  letter-spacing: 1px;
  text-align: center;
}
.contact-section .title-line {
  width: 48px;
  height: 3px;
  background: #ae1623;
  margin: 10px auto 30px;
  border-radius: 2px;
}

/* 三列信息 */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 50px;
}
.contact-info-row .info-item {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8ecf2;
}
.contact-info-row .info-item .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b1a33;
  margin-bottom: 6px;
}
.contact-info-row .info-item .value {
  font-size: 0.95rem;
  color: #4a5a72;
  line-height: 1.6;
}
.contact-info-row .info-item .value a {
  color: #ae1623;
  text-decoration: none;
}
.contact-info-row .info-item .value a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-section .section-title {
    font-size: 1.5rem;
  }
}

/* ===== 社交媒体关注 ===== */
.social-section {
  margin-bottom: 50px;
}
.social-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b1a33;
  letter-spacing: 1px;
  text-align: center;
}
.social-section .title-line {
  width: 48px;
  height: 3px;
  background: #ae1623;
  margin: 10px auto 30px;
  border-radius: 2px;
}
.social-qr-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.social-qr-row .qr-item {
  width: 120px;
  text-align: center;
}
.social-qr-row .qr-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e8ecf2;
  background: #fff;
  padding: 4px;
}
.social-qr-row .qr-item .qr-label {
  font-size: 0.7rem;
  color: #4a5a72;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .social-qr-row {
    gap: 16px;
  }
  .social-qr-row .qr-item {
    width: 60px;
  }
  .social-qr-row .qr-item img {
    width: 60px;
    height: 60px;
  }
}

/* ===== 找到我们（地图） ===== */
.map-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b1a33;
  letter-spacing: 1px;
  text-align: center;
}
.map-section .title-line {
  width: 48px;
  height: 3px;
  background: #ae1623;
  margin: 10px auto 30px;
  border-radius: 2px;
}
.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #d9e2f0;
}
.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
    /* ===== 内容主体 ===== */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 20px;
}

  .map-container {
    height: 220px;
  }
}

/* ===== 底部 ===== */
.footer {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #2d4059;
  line-height: 1.7;
  background: #f8faff;
}
.footer .footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 20px;
}
.footer .footer-row .sep {
  color: #b0b8c5;
  margin: 0 4px;
}
.footer .footer-row a {
  color: #3b6cb7;
  text-decoration: none;
}
.footer .footer-row a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 16px 16px;
    font-size: 0.7rem;
  }
}
