
/* 联系方式容器样式 */
.contact-bar {
  background: #f8f9fa;
  padding: 16px 25px;
  display: flex;
  justify-content: center; /* 添加居中布局 */
  gap: 35px;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}

/* 单个联系方式样式 */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #2d3748;
}

/* WhatsApp 样式 */
.whatsapp {
  color: #25D366;
  font-weight: 500;
}

/* 微信样式 */
.wechat {
  color: #1aad19;
  font-weight: 500;
}

/* 图标尺寸 */
.contact-item svg {
  width: 24px;
  height: 24px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .contact-bar {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    font-size: 16px;
  }
  
  .contact-item svg {
    width: 20px;
    height: 20px;
  }
}
