.yichen_about_pic_text {
  padding: 120px 0;
}

.list_wrapper {
  display: flex;
  justify-content: space-between;
}

.item_wrapper {
  width: 28%;
  text-align: center;
}

.item_wrapper .pic_wrapper {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.item_wrapper .pic_wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.item_wrapper .pic_wrapper .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 156, 0.48);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: var(--text-flag-size);
  font-weight: 500;
  line-height: normal;
}

.item_wrapper .desc {
  color: #3E3A39;
  font-size: var(--text-size);
  font-weight: 300;
  line-height: 1.5;
  margin-top: 50px;
}

.pic_wrapper {
  width: 100%;
  margin: var(--component-gap) 0;
}

.pic_wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.list_wrapper2 {
  display: flex;
  justify-content: space-between;
}

.item_wrapper2 {
  width: 32%;
}

.item_wrapper2 img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.yichen_about_pic_text .content {
  margin-top: var(--component-gap);
}

@media screen and (max-width: 1200px) {
  .yichen_about_pic_text {
    padding: var(--component-gap) 0;
  }
}

@media screen and (max-width: 768px) {
  .list_wrapper {
    flex-direction: column;
  }

  .item_wrapper .desc {
    margin-top: 20px;
  }

  .item_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .item_wrapper .pic_wrapper {
    width: 50%;
  }
}