.xili-mpt {
  padding: var(--length-120) 0 0 0;
  background-color: #F2F2F2;
}

@media screen and (min-width: 1740px) {
  .xili-mpt .xili-container {
    max-width: 1680px;
  }
}

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

.xili-mpt .swiper {
  margin-top: var(--length-80);
  padding-bottom: var(--length-100);
}

.xili-mpt-item {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.xili-mpt-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 49.8%, rgba(0, 0, 0, 0.60) 70.45%);
  content: '';
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.xili-mpt-item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.70);
  content: '';
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.xili-mpt-item:hover::before {
  opacity: 0;
  visibility: hidden;
}

.xili-mpt-item:hover::after {
  opacity: 1;
  visibility: visible;
}

.xili-mpt-item-img img {
  width: 100%;
  aspect-ratio: 320 / 560;
  object-fit: cover;
}

.xili-mpt-item-content {
  position: absolute;
  top: calc(100% - (var(--length-40) + var(--font-40) * 1.2 + 8px + var(--font-32) * 1.2 * 2 + var(--length-40)));
  left: 0;
  width: 100%;
  z-index: 10;
  padding: var(--length-40);
  transition: top 0.3s ease;
}

.xili-mpt-item:hover .xili-mpt-item-content {
  top: 0;
}

.xili-mpt-item-index {
  color: #FFF;
  font-size: var(--font-40);
  font-weight: 700;
  line-height: 1.2;
}

.xili-mpt-item-content h3 {
  color: #FFF;
  font-size: var(--font-32);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 8px;
  margin-bottom: var(--length-40);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xili-mpt-item-content p {
  color: #D9D9D9;
  text-align: justify;
  font-size: var(--font-24);
  font-weight: 400;
  line-height: 1.5;
}


.xili-mpt .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: calc(var(--length-100) / 2);
}

.xili-mpt .swiper-pagination-bullet {
  background: rgba(51, 51, 51, 0.20);
}

.xili-mpt .swiper-pagination-bullet-active {
  background: #333;
}