/* 公司简介 */
.about {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.about .content h4 {
  color: #474747;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

.about .content p {
  color: #777777;
  font-size: 16px;
  line-height: 2;
}

.about img {
  width: 100%;
  /* height: 500px; */
  margin-top: 60px;
  /* object-fit: cover; */
}


/* 资质荣誉 */
.honor {
  width: 100%;
  padding-bottom: 80px;
  box-sizing: border-box;
}

.honor .content {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  width: 100%;
}

.honor .content .info {
  width: 65%;
  color: #777777 !important;
  font-size: 16px !important;
  line-height: 2 !important;
}

.honor .content img {
  width: 28%;
}

/* 团队 */
.team {
  width: 100%;
  padding-bottom: 80px;
  box-sizing: border-box;
}

.team .content {
  width: 100%;
  color: #777777 !important;
  font-size: 16px !important;
  line-height: 2 !important;
}

.team .imgs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 25px;
}

.team .imgs img {
  width: 32%;
}

@media screen and (max-width: 992px) {
  .banner .title {
    font-size: 30px;
  }
  .about video {
    height: auto;
  }
  .honor .content {
    display: block;
  }
  .honor .content .info,
  .honor .content img {
    width: 100%;
  }

  .honor .content img {
    margin-top: 20px;
  }
}