.pd-cap-list {
  all: unset;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border: none;
  overflow: hidden;
}

.pd-cap-item {
  grid: template columns 1fr;
  background: #FFFFFF;
  border-radius: 8px;
}

.pd-cap-item:hover {
  background: #FFFFFF;
}

.pd-cap-hd {
  all: unset;
}

.pd-cap-num {
  all: unset;
  font-size: 36px;
  color: #C7000B;
  /* display: none; */
}

.pd-cap-service {
  margin: 6px 0;
  font-size: 12px;
  color: #999999;
}

.pd-cap-hd h3 {
  font-size: 18px;
  color: #333333;
}

.pd-cap-tagline {
  font-size: 16px;
  color: #666666;
  margin: 20px 0;
}

.pd-cap-body {
  all: unset;
  font-size: 14px;
  color: #999999;
}

/* ── p-yunying 页面专属补丁 ── */
.pd-pain-list-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
}

.pd-pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.pd-pain-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.pd-cap-tagline {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  margin: 4px 0 0;
  letter-spacing: .3px;
}

.pd-values {
  padding: var(--sp-22) var(--sp-6);
  background: var(--gray-light);
}

.pd-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pd-value-item {
  text-align: center;
  border-radius: var(--radius);
  background: #FFFFFF;
  padding: 40px 32px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}



.pd-value-icon {
  margin: 0 auto;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(192, 32, 42, .5);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  color: var(--red);
}

.pd-value-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.pd-value-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0;
}



/* yw- 痛点新布局 */
.yw-pain-bg {
  background: linear-gradient(0deg, #001C39 0%, #000D16 49.04%, #000D16 100%);
  padding: 80px 0;
}

.yw-pain-bg .pd-section-label {
  color: rgba(255, 255, 255, .5);
}

.yw-pain-bg .pd-section-title {
  text-align: center;
  color: #fff;
}

.yw-pain-cards {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* background: rgba(255, 255, 255, .08); */
  /* border-radius: var(--radius); */
  overflow: hidden;
  margin-top: 70px;
}

.yw-pain-card {
  padding: 20px;
  background: linear-gradient(0deg, #151827 0%, #171926 100%);
  border-radius: 8px ;
  border: 2px solid;
  /* border-image: linear-gradient(360deg, rgba(43, 54, 79, 1), rgba(32, 35, 44, 1)) 2 2; */
}



.yw-pain-icon {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.yw-pain-icon img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.yw-pain-label {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.yw-pain-desc {
  font-size: 16px;
  color: #7C7D83;
  line-height: 1.8;
}

/* yw- 核心价值 */
.yw-val-kw {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 6px;
}

.yw-val-pct {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}

.pd-caps {
  padding-top: 67px;
  /* margin-top: 67px; */
  background: #F5F5F5;
}


@media(max-width:768px) {
  .yw-pain-cards {
    padding: 0 20px;

  }

  .pd-pain-list-3 {
    grid-template-columns: 1fr;
  }

  .pd-value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pd-cap-list {
    grid-template-columns: 1fr;
  }
}

@media(max-width:1024px) and (min-width:769px) {
  .pd-pain-list-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .yw-pain-cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}