.runfeng_pic_text {
  padding-bottom: var(--content-gap);
}

.runfeng_pic_text_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.runfeng_pic_text_title {
  color: var(--title-text-color);
  font-size: var(--title-size-h1);
  font-weight: 700;
  line-height: 1.52;
  
  max-width: 60%;
}

.runfeng_pic_text_content {
  display: flex;
  align-items: center;
  gap: calc(var(--text-gap-md)*2);
  margin-top: calc(var(--text-gap-md)*2);
}

.runfeng_pic_text_content_left {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap-md);
  padding: calc(var(--text-gap-lg)*2) 0;
}

.runfeng_pic_text_content_left_item_num {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.27;
  
}

.runfeng_pic_text_content_left_item_desc {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--text-flag-size);
  font-weight: 700;
  line-height: 1.5;
  
  margin-top: 12px;
}


.runfeng_pic_text_content_center {
  width: 32% !important;
  aspect-ratio: 46 / 73;
  object-fit: cover;
  filter: brightness(0.8);
}

.runfeng_pic_text_content_right {
  display: flex;
  flex-direction: column;
}

.runfeng_pic_text_content_right_title {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--title-size-h6);
  font-weight: 700;
  line-height: 1.5;
  
}

.runfeng_pic_text_content_right_list {
  display: flex;
  flex-direction: column;
  margin-top: calc(var(--text-gap-md)/2);
}

.runfeng_pic_text_content_right_item {
  display: flex;
  align-items: center;
  gap: var(--text-gap-md);
  padding: 32px 0;
  border-bottom: 2px solid rgba(129, 151, 171, 0.10);
}

.runfeng_pic_text_content_right_item:last-child {
  border-bottom: none;
}

.runfeng_pic_text_content_right_item img {
  width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.runfeng_pic_text_content_right_item_title {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--text-title-size);
  font-weight: 700;
  line-height: 1.5;
  
}

.runfeng_pic_text_content_right_item_desc {
  color: rgba(40, 40, 40, 0.70);
  font-size: var(--text-size);
  font-weight: 400;
  line-height: 1.375;
  
}

.runfeng_pic_text_content_right_pic {
  width: 100%;
  aspect-ratio: 641/117;
  object-fit: cover;
  margin-top: var(--text-gap-md);
}

@media screen and (max-width: 1200px) {
  .runfeng_pic_text_content_right_item {
    padding: 24px 0;
  }

}

@media screen and (max-width: 992px) {
  .runfeng_pic_text_content_right_item {
    padding: 20px 0;
  }

  .runfeng_pic_text_content {
    flex-direction: column;
  }

  .runfeng_pic_text_content_left {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .runfeng_pic_text_content_center {
    width: 100% !important;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .runfeng_pic_text_title {
    max-width: 100%;
    flex: 1;
    padding-right: 20px;
  }

}