/* ===== 首页关于我们整体布局 ===== */
.about {
  background: #f8fafc;
  padding: 60px 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* 左侧文字 */
.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* 标签 */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tags span {
  background: #e6f0ff;
  color: #2a6df4;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* 右侧视觉区 */
.about-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
}

/* 卡片 */
.about-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #2a6df4;
}

.about-card p {
  font-size: 14px;
  color: #666;
}

/* ===== 移动端优化 ===== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}