.case-detail {
  padding-top: 30px;
  padding-bottom: 30px;
}

.case-detail .title {
  margin-bottom: 10px;
}

.case-detail .date {
  font-size: 14px;
  text-align: center;
  color: var(--style-color);
  margin-bottom: 20px;
}

.case-detail .info>*:not(:last-child) {
  margin-bottom: 15px;
}

.case-detail .info p {
  line-height: 1.8;
}

.case-detail .info h2, .case-detail .info h3 {
  font-size: 20px;
  text-align: left;
  color: var(--style-color);
}

.case-detail .info h3 {
  font-size: 18px;
  color: var(--style-color);
}

@media (min-width: 1200px) {
  .case-detail {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .case-detail .date {
    margin-bottom: 40px;
  }

  .case-detail .info h2 {
    font-size: 24px;
  }

  .case-detail .info h3 {
    font-size: 20px;
  }
}


/* recommend */
.recommend {
  padding-bottom: 30px;
}

.recommend .item-wrap {
  padding-top: 51px;
  border-top: 1px solid #CED4DA;
}

.recommend .title {
  text-align: left;
  margin-bottom: 20px;
}

.recommend .swiper-wrap {
  position: relative;
}

.recommend .swiper-slide {
  text-align: center;
}

.recommend .scale-img {
  margin-bottom: 17px;
}

@media (min-width: 768px) {
  .recommend .swiper-wrap {
    padding-left: 60px;
    padding-right: 60px;
  }

  .recommend .prev-btn, .recommend .next-btn {
    width: 51px;
    height: 51px;
    font-size: 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--style-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recommend .swiper-button-disabled {
    color: var(--style-color);
    background: transparent;
    border: 1px solid #CED4DA;
  }
}

@media (min-width: 1200px) {
  .recommend {
    padding-bottom: 60px;
  }

  .recommend .title {
    margin-bottom: 30px;
  }
}

@media (min-width: 1440px) {
  .recommend .swiper-wrap {
    padding: 0;
  }

  .recommend .prev-btn {
    left: -35px;
    transform: translate(-100%, -50%);
  }

  .recommend .next-btn {
    right: -35px;
    transform: translate(100%, -50%);
  }
}