.qicheng_help_service {
  padding-top: var(--title-font-padding-top);
  padding-bottom: var(--border-radius-lg);
  background: #fff;
  position: relative;
  z-index: 9;
}

.help-service_content {
  display: flex;
  align-items: center;
  gap: max(60px, 3.33333rem);
}

.help-service_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: max(4.22222rem, 40px);
  /* gap: max(20px, 1.1111rem); */
}

.help-service_title {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--title-font-size-lg);
  font-weight: var(--title-font-weight);
  line-height: 1.24;
  letter-spacing: -0.9px;
}

.help-service_subtitle {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xxl);
  font-weight: var(--font-weight);
  line-height: 1.24;
  margin-top: max(8px, 0.44444rem);
}

.help-service_desc {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-lg);
  font-weight: 400;
  line-height: 1.6;
  margin-top: max(12px, 0.66667rem);
}

.help-service_desc p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.help-service_features {
  margin-top: max(0.555rem, 15px);
  display: flex;
  flex-wrap: wrap;
  gap: max(12px, 0.66667rem);
}

.help-service_feature-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-lg);
  font-weight: 400;
  line-height: 1.4;
  padding: max(10px, 0.55556rem) max(20px, 1.11111rem);
  border-radius: 99px;
  border: 1px solid #e0e0e0;
  background: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.help-service_feature-tag:hover {
  border-color: var(--primary-color);
  background: rgba(255, 153, 28, 0.05);
}

.help-service_feature-tag .feature-highlight {
  font-weight: 600;
  color: var(--text-color-black);
}

.help-service_feature-tag .feature-text {
  font-weight: 400;
  margin-left: 4px;
}

.help-service_btn {
  align-self: flex-start;
  margin-top: max(16px, 0.88889rem);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.help-service_right {
  flex-shrink: 0;
  min-height: -webkit-fill-available;
  height: 100%;
  width: 100%;
  max-width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: relative; */
}

.help-service_right img {
  position: absolute;
  display: inline-block;
  width: 40%;
  /* height: 87%; */
  object-fit: cover;
  bottom: 0px;
}

/* 响应式设计 */
@media screen and (max-width: 1580px) {
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1280px) {
  .help-service_content {
    gap: max(40px, 2.22222rem);
  }
}

@media screen and (max-width: 1024px) {
  .help-service_content {
    gap: max(30px, 1.66667rem);
  }

  .help-service_features {
    gap: max(10px, 0.55556rem);
  }
}

@media screen and (max-width: 820px) {
  .help-service_content {
    flex-direction: column;
    gap: max(40px, 2.22222rem);
  }

  .help-service_right img {
    width: 50%;
    position: relative;
  }

  .help-service_left {
    width: 100%;
  }

  .help-service_right {
    width: 100%;
    max-width: 100%;
  }

  .help-service_btn {
    align-self: center;
  }

  .help-service_title,
  .help-service_subtitle,
  .help-service_desc {
    text-align: center;
  }

  .help-service_features {
    justify-content: center;
  }
}

@media screen and (max-width: 552px) {
  .help-service_left {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 390px) {
  .help-service_features {
    flex-direction: column;
    align-items: stretch;
  }

  .help-service_right img {
    width: 80%;
    position: relative;
  }

  .help-service_feature-tag {
    text-align: center;
  }
}
