.qicheng-trust-partners {
  background-color: var(--bg-color, #fff);
  position: relative;
  z-index: 8;
  padding-bottom: calc(max(4.6rem, 40px) + var(--border-radius-lg));
  padding-top: var(--title-font-padding-top, 80px);
}

/* 标题区域样式 */
.qicheng-trust-partners .trust-partners-header {
  text-align: left;
  margin-bottom: max(4.05rem, 60px);
}

.qicheng-trust-partners .trust-partners-header .header-title {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xl, 48px);
  font-style: normal;
  font-weight: var(--title-font-weight);
  line-height: 1.4;
  letter-spacing: -0.9px;
}

.qicheng-trust-partners .trust-partners-header .header-subtitle {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xxl, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.qicheng-trust-partners .trust-partners-header .header-content {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xl, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

/* 内容区域样式 */
.qicheng-trust-partners .trust-partners-content {
  display: flex;
  flex-direction: column;
  /* gap: 70px; */
}

/* 上部分：左右布局 */
.qicheng-trust-partners .content-top {
  display: flex;
  align-items: flex-start;
  gap: max(5rem, 60px);
  padding-bottom: 70px;
  border-bottom: 1px solid #d7d7d7;
}

.qicheng-trust-partners .content-top .top-left {
  /* flex: 1; */
  /* max-width: 400px; */
}

.qicheng-trust-partners .content-top .top-left-title {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xsm, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.qicheng-trust-partners .content-top .top-left-desc {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xl);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.qicheng-trust-partners .content-top .top-right {
  flex: 1;
  width: 100%;
}

.qicheng-trust-partners .content-top .top-right-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  row-gap: 40px;
  /* justify-content: flex-end; */
}

.qicheng-trust-partners .content-top .top-right-image-item {
  flex: 1;
  max-width: max(7.33333rem, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--border-radius-md, 8px);
  /* padding: 20px; */
  width: 100%;
  /* height: 150px; */
}

.qicheng-trust-partners .content-top .top-right-image-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 下部分：左右布局 */
.qicheng-trust-partners .content-bottom {
  display: flex;
  gap: 60px;
}

.qicheng-trust-partners .content-bottom .bottom-left {
  border-right: solid #d7d7d7 1px;
}

.qicheng-trust-partners .content-bottom .bottom-left,
.qicheng-trust-partners .content-bottom .bottom-right {
  padding-top: 73px;
  flex: 1;
}

.qicheng-trust-partners .content-bottom .bottom-item-title {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xsm, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.qicheng-trust-partners .content-bottom .bottom-item-desc {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xl, 20);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.qicheng-trust-partners .content-bottom .bottom-item-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  row-gap: 40px;
  margin-top: 39px;
}

.qicheng-trust-partners .content-bottom .bottom-item-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--border-radius-md, 8px);
  /* padding: 20px; */
  /* height: 150px; */
  width: max(8.33333rem, 150px);
}

.qicheng-trust-partners .content-bottom .bottom-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
  .qicheng-trust-partners .content-top {
    gap: 40px;
  }
  .qicheng-trust-partners .content-bottom {
    gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  .qicheng-trust-partners {
    padding-top: 60px;
  }

  .qicheng-trust-partners .trust-partners-header {
    margin-bottom: 60px;
  }

  .qicheng-trust-partners .content-bottom .bottom-left {
    border-right: none;
    border-bottom:solid #d7d7d7 1px;
    padding-bottom: 40px;
  }

  .qicheng-trust-partners .trust-partners-content {
    gap: 40px;
    padding-bottom: 40px;
  }

  .qicheng-trust-partners .content-top {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
  }

  .qicheng-trust-partners .content-top .top-left {
    max-width: 100%;
  }

  .qicheng-trust-partners .content-top .top-right-images {
    justify-content: flex-start;
  }

  .qicheng-trust-partners .content-bottom {
    flex-direction: column;
    gap: 40px;
  }

  .qicheng-trust-partners .content-bottom .bottom-left,
.qicheng-trust-partners .content-bottom .bottom-right {
  padding-top: 0px;
  flex: 1;
} 
}

@media screen and (max-width: 768px) {
  .qicheng-trust-partners {
    padding-top: 40px;
  }

  .qicheng-trust-partners .trust-partners-header .header-title {
    font-size: var(--title-font-size-lg, 36px);
  }

  .qicheng-trust-partners .trust-partners-header .header-subtitle {
    font-size: var(--title-font-size-sm, 24px);
  }

  .qicheng-trust-partners .trust-partners-header {
    margin-bottom: 40px;
  }

  .qicheng-trust-partners .trust-partners-content {
    gap: 30px;
  }

  .qicheng-trust-partners .content-top .top-right-images {
    flex-direction: column;
    gap: 15px;
  }

  .qicheng-trust-partners .content-top .top-right-image-item {
    /* max-width: 100%; */
    /* height: 120px; */
  }

  .qicheng-trust-partners .content-bottom .bottom-item-images {
    flex-direction: column;
    gap: 15px;
  }

  /* .qicheng-trust-partners .content-bottom .bottom-item-image {
    height: 120px;
  } */
}

@media screen and (max-width: 576px) {
  .qicheng-trust-partners .trust-partners-header .header-title {
    font-size: var(--title-font-size-md, 28px);
  }

  .qicheng-trust-partners .trust-partners-header .header-subtitle {
    font-size: var(--title-font-size-xs, 20px);
  }

  .qicheng-trust-partners .content-top .top-left-title,
  .qicheng-trust-partners .content-bottom .bottom-item-title {
    font-size: var(--title-font-size-sm, 24px);
  }
}
