.footer-top img {
  max-width: 100%;
  height: auto; /* 图片自适应，避免变形 */
  display: block; /* 消除图片底部默认间隙 */
}

/* 底部外层容器：控制整体宽度与背景，提升视觉层次感 */
.footer {
  width: 100%;
  background-color: #a00404; /* 红灰色背景，与内容区分隔 */
  padding: 0.1rem 0; /* 上下内边距，避免紧贴页面边缘 */
  margin-top: 0.2rem; /* 与上方内容区保持间距，视觉更舒展 */
}

/* 底部核心容器：居中对齐，控制最大宽度，避免内容过宽 */
.footer-container {
  width: 70%; /* 与网站主体宽度保持一致，视觉统一 */
  margin: 0 auto; /* 水平居中 */
  display: flex;
  flex-direction: column;
  gap: 0.2rem; /* 上部与下部的间距，美观不拥挤 */
}

/* 底部上部：LOGO+联系我们，横向排列+居中对齐 */
.footer-top {
  display: flex;
  justify-content: center; /* 整体水平居中 */
  align-items: center; /* 垂直居中，保证LOGO与文字对齐 */
  gap: 0; /* 取消原有gap，改为通过竖线和子元素间距控制，避免多余留白 */
  }

/* LOGO区域：控制LOGO大小，保证垂直居中，右侧预留竖线间距 */
.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem; /* LOGO与竖线的间距 */
  position: relative; /* 为竖线伪元素提供定位参照物 */
}

/* 关键修改：在LOGO区域右侧添加竖线（位于LOGO与联系我们之间） */
.logo-section::after {
  content: "";
  width: 0.083rem; /* 细竖线，自适应 */
  height: 4rem; /* 竖线高度，与LOGO/联系信息匹配 */
  background-color: #ddd; /* 浅灰色，与整体风格协调 */
  position: absolute; /* 精准定位，不干扰flex布局 */
  right: -1.5rem; /* 竖线与LOGO的间距（与logo-section的margin-right对应） */
  top: 50%;
  transform: translateY(-50%); /* 垂直居中，与LOGO/联系信息对齐 */
}

.logo {
  width: 10rem; 
  height: auto;
}

/* 联系我们区域：控制文字样式，保证垂直居中，左侧预留竖线间距 */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem; /* 联系我们与竖线的间距 */
}


.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* 联系项之间的间距，清晰不拥挤 */
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 图标与文字的间距，视觉舒适 */
  font-size: 0.7rem; /* 文字大小适中，无PX自适应 */
  color: #ddd; /* 文字颜色，保证可读性 */
  line-height: 1.1; /* 行高，避免文字拥挤 */
}

.contact-list li img {
  width: 0.7rem; /* 图标大小统一，与文字匹配 */
  height: auto;
}

/* 底部下部：版权信息，居中对齐，样式简洁 */
.footer-bottom {
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;
  padding: 0.3rem 0 0 0;
  border-top: 0.083rem solid #ddd; /* 顶部细灰线，与上部分隔，提升层次感 */
  margin-top: 0.1rem;
}

.footer-bottom p {
  font-size: 0.7rem; /* 版权文字稍小，突出主体内容 */
  color: #666; /* 浅灰色文字，不抢镜 */
  line-height: 1.3;
  text-align: center;
}