/* 关于我们模块样式 */
.about-section {
  background: #fff;
  padding: 46px 0 70px 0;
}
.about-container {
  width: 1200px;
  margin: 0 auto;
}
.about-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.about-title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-title {
  font-size: 32px;
  font-weight: 600;
  color: #7c1419;
  letter-spacing: 2px;
}
.about-underline {
  width: 66px;
  height: 6px;
  background: #7c1419;
  border-radius: 3px;
  margin-left: 16px;
}
.about-content {
  display: flex;
  gap: 24px;
  /* justify-content: space-between; */
  flex-direction: column;
}
.about-card {
  background: #fff;
  border-radius: 16px;
  /* box-shadow: 0 4px 24px rgba(124, 20, 25, 0.08);
  padding: 40px 32px 32px 32px; */
  flex: 1;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  min-height: 389px;
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.23, 1.01, 0.32, 1);
  gap: 36px;
}
.about-card:last-child {
  flex-direction: row-reverse;
}
.about-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-img-wrap {
  width: 584px;
  height: 389px;
  border-radius: 6.845px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.about-card:hover .about-img {
  transform: scale(1.05);
}
.about-card:hover .about-card-title {
  bottom: -4px;
}
.about-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #7c1419;
  text-align: center;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #fff;
  width: 290px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease;
}
.about-card-desc {
  width: 580px;
  height: 389px;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  text-align: left;
  display: flex;
  align-items: center;
    flex-direction: column;
    justify-content: center;
}

