.xili-pt {
  padding: var(--length-120) 0 var(--length-100) 0;
  background-color: #fff;
}

.xili-pt h2 {
  text-align: center;
}

.xili-pt-content {
  margin-top: var(--length-80);
}

.xili-pt-list {
  display: flex;
  gap: calc(var(--length-100) / 2);
}

.xili-pt-item {
  width: calc((100% - var(--length-100)) / 2);
  border-radius: var(--length-20);
  background: #F5F5F5;
  overflow: hidden;
}

.xili-pt-img {
  width: 100%;
  height: auto;
}

.xili-pt-img img {
  width: 100%;
  aspect-ratio: 775 / 435;
}

.xili-pt-text {
  padding: var(--length-60);
}

.xili-pt-text h3 {
  color: #333;
  font-size: var(--font-40);
  font-weight: 500;
  line-height: 1.2;
}

.xili-pt-text hr {
  background: rgba(0, 0, 0, 0.10);
  height: 1px;
  margin: var(--length-20) 0;
  border: none;
}

.xili-pt-text p {
  color: #333;
  text-align: justify;
  font-size: var(--font-24);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  .xili-pt-list {
    flex-direction: column;
  }

  .xili-pt-item {
    width: 100%;
  }

  
}