.rentaly-we-offer-customers-block .section {
  padding: 90px 0 90px 0;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
}
.rentaly-we-offer-customers-block .row.text-view {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  align-items: center;
}

@media (max-width: 767px) {
  .rentaly-we-offer-customers-block .section {
    padding: 30px 0;
  }
}
.rentaly-we-offer-customers-block .section h2 {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  font-weight: 700;
}
.rentaly-we-offer-customers-block .section h2 span {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .rentaly-we-offer-customers-block .section h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .rentaly-we-offer-customers-block .section h2 span {
    font-size: 30px;
    line-height: 1.2;
  }
}
.rentaly-we-offer-customers-block .section .text-line {
  margin-top: -4px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .rentaly-we-offer-customers-block .section .text-line {
    line-height: 1.4;
  }
}
.rentaly-we-offer-customers-block .section .spacer-double {
  width: 100%;
  height: 60px;
  display: block;
  clear: both;
}
@media (max-width: 768px) {
  .rentaly-we-offer-customers-block .section .spacer-double {
    height: 20px;
  }
}
.rentaly-we-offer-customers-block .section .text-box {
  text-align: center !important;
}
.rentaly-we-offer-customers-block .section .text-box .item-box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%; /* 桌面端一行4个 */
  padding: 0 12px;
}
.rentaly-we-offer-customers-block .section .text-box .item-box p {
  word-break: break-all;
  white-space: normal;
}

/* ========== 核心修改：新增iPad端断点（768px~1024px） ========== */
@media (min-width: 768px) and (max-width: 1024px) {
  .rentaly-we-offer-customers-block .section .text-box .item-box {
    width: 50% !important; /* 强制一行显示2个 */
    max-width: 50% !important; /* 清除默认宽度限制 */
    flex: 0 0 50% !important; /* flex布局适配 */
    margin-bottom: 30px !important; /* 保留底部间距，避免拥挤 */
  }
}

/* 原有断点调整：区分iPad和手机端 */
@media (max-width: 992px) and (max-width: 767px) { /* 仅992px~768px（非iPad）保留原有逻辑 */
  .rentaly-we-offer-customers-block .section .text-box .item-box {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) { /* 手机端（<768px）一行1个 */
  .rentaly-we-offer-customers-block .section .text-box .item-box {
    width: 50%;
  }
}
@media (max-width: 576px) { /* 小屏手机一行1个 */
  .rentaly-we-offer-customers-block .section .text-box .item-box {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
  }
}

.rentaly-we-offer-customers-block .section .text-box .item-box .de_count {
  font-size: 16px;
  padding: 30px 20px 24px 30px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 19, 87, 0.06);
  border-radius: 10px !important;
  background: #121212;
}
@media (max-width: 767px) {
  .rentaly-we-offer-customers-block .section .text-box .item-box .de_count {
    padding: 20px 12px;
  }
}
.rentaly-we-offer-customers-block .section .text-box .item-box .de_count p {
  display: -webkit-box;
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.rentaly-we-offer-customers-block .section .text-box .item-box h3 {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 40px;
  letter-spacing: 0.1px;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  line-height: 40px;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .rentaly-we-offer-customers-block .section .text-box .item-box h3 {
    font-size: 30px;
  }
}
.rentaly-we-offer-customers-block .section .text-box .item-box.transparent {
  background: rgba(255, 255, 255, 0.15);
}