.runfeng_solution_text {
  padding: 20px 0 var(--content-gap);
}

.runfeng_solution_text .container {
  display: flex;
  align-items: center;
  gap: calc(var(--content-gap-md) - 10px);
}

.runfeng_solution_text .runfeng_solution_text_pic {
  width: 51.38%;
  aspect-ratio: 740 / 500;
  object-fit: cover;
}

.runfeng_solution_text_content {
  flex: 1;
}

.runfeng_solution_text_title {
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--title-size-h1);
  font-weight: 700;
  line-height: 1.52;
  
}

.runfeng_solution_text_desc {
  line-height: 1.375;
  color: rgba(40, 40, 40, 0.70);
  font-size: var(--text-size);
  font-weight: 400;
  text-align: justify;
  margin-top: var(--text-gap-md);
}

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

.runfeng_solution_text_item {
  display: flex;
  gap: 12px;
}

.runfeng_solution_text_item_text {
  flex: 1;
  color: var(--title-text-color);
  font-size: var(--text-flag-size);
  font-weight: 700;
  line-height: 1.5;
  
}
 .runfeng_solution_text_item svg{
  margin-top: 5px;
 }
@media screen and (max-width: 992px) {
  .runfeng_solution_text{
    padding-top: 0;
  }
  .runfeng_solution_text .container {
    flex-direction: column;
    gap: var(--text-gap-md);
  }

  .runfeng_solution_text .runfeng_solution_text_pic {
    width: 100%;
  }

  .runfeng_solution_text_content {
    flex: 1;
  }

  .runfeng_solution_text_item svg {
    width: 16px;
    height: 16px;
    margin-top: 3px;
  }
}