/* 页脚核心样式 */
.ft_footer {
  background-color: #2d3748;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

.ft_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ft_content {
  min-height: 300px;
  padding: 40px 0;
  box-sizing: border-box;
}

.ft_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 30px 0;
  padding: 0;
}

.ft_item {
  flex: 1;
  min-width: 250px;
  margin: 0 10px 20px;
  padding: 0;
}

/* 地址样式 - 关键对齐修复 */
.ft_address {
  display: flex;
  /* 确保图标与文字垂直居中对齐 */
  align-items: flex-start;
  gap: 10px; /* 图标与文字间距 */
}

.ft_address-text {
  flex: 1; /* 文字区域占剩余空间 */
}

.ft_address p {
  color: #cbd5e0;
  margin: 5px 0 0 0; /* 移除左侧偏移，解决错位 */
  line-height: 1.6; /* 优化多行文本可读性 */
}

/* 联系方式样式 */
.ft_contact {
  display: flex;
  flex-direction: column;
  gap: 15px; /* 电话与邮箱间距 */
}

.ft_phone, .ft_email {
  display: flex;
  align-items: center; /* 垂直居中对齐 */
  gap: 10px;
}

/* 图标统一样式 */
.ft_icon {
  color: #cbd5e0;
  font-size: 18px;
  /* 固定图标宽度，确保文字对齐 */
  width: 24px;
  text-align: center;
  margin-top: 2px; /* 微调图标垂直位置 */
}

/* 标签样式 */
.ft_label {
  font-weight: 600;
}

/* 公众号样式 */
.ft_wechat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft_wechat-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 0 10px 0;
  padding: 0;
  border: none;
}

.ft_wechat-text {
  color: #cbd5e0;
  text-align: center;
}

/* 分隔线 */
.ft_divider {
  height: 1px;
  background-color: #4a5568;
  border: none;
  margin: 20px 0;
}

/* 版权信息 */
.ft_copyright {
  text-align: center;
  color: #a0aec0;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.ft_copyright a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s;
}

.ft_copyright a:hover {
  color: #fff;
}

/* 响应式调整 */
@media (max-width: 767px) {
  .ft_address, .ft_contact {
    justify-content: center;
    text-align: center;
  }
  
  .ft_address {
    flex-direction: column;
    align-items: center;
  }
  
  .ft_address-text {
    margin-top: 8px;
  }
}