.about-intro-layout {
  display: flex;
}
.about-intro-left {
  flex: 0 42.71vw;
}
.about-intro-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro-right {
  flex: 1;
  background: #505f2d;
  padding: 5.21vw;
  color: #fff;
}
.about-intro-title {
  font-size: 3.125vw;
  line-height: 1;
}
.about-intro-divider {
  width: 100%;
  border-bottom: 1px solid #9f9f9f;
  margin-top: 2.6vw;
  margin-bottom: 8.33vw;
}
.about-intro-desc {
  font-size: 1.25vw;
}

.core-team-section {
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.core-team-section__left {
  padding: 6.25vw 4.6875vw 5.20833vw 4.6875vw;
  background: #505f2d;
}
.core-team-section__left h2 {
  display: inline-block;
  font-size: 3.125vw;
  padding-bottom: 3.125vw;
  margin-bottom: 5.729vw;
  line-height: 1;
  border-bottom: 0.52083vw solid #fff;
}
.core-team-card {
  padding-bottom: 3.125vw;
  margin-bottom: 3.125vw;
  border-bottom: 1px solid #9fa885;
}
.core-team-card:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.core-team-card h3 {
  line-height: 1;
  font-size: 1.563vw;
  margin-bottom: 1.042vw;
}
.core-team-card p {
  font-size: 1.25vw;
  line-height: 2;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .about-intro-left {
    display: none;
  }
  .about-intro-title {
    font-size: 24px;
  }
  .about-intro-divider {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .about-intro-desc {
    font-size: 14px;
  }

  .core-team-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .core-team-section__left h2 {
    font-size: 24px;
  }
  .core-team-card h3 {
    font-size: 16px;
  }
  .core-team-card p {
    font-size: 14px;
  }
}
