.list-wrap {
  padding-bottom: 30px;
}
.list-wrap .swiper {
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
}
.list-wrap .swiper .cover {
  height: 520px;
  overflow: hidden;
  border-radius: 15px;
}
.list-wrap .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-wrap .swiper .desc {
  padding-top: 30px;
}
.list-wrap .swiper .desc h3 {
  font-size: 24px;
  color: #333;
  margin: unset;
  line-height: 1.6;
}
.list-wrap .swiper .desc p {
  line-height: 1.6;
  font-size: 16px;
  color: #666;
  margin: 15px 0;
}
.list-wrap .swiper .desc span {
  color: #999;
}
.list-wrap .swiper .swiper-control {
  position: absolute;
  bottom: 10px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 1;
  width: 160px;
}
.list-wrap .swiper .swiper-control .btn {
  transform: rotate(45deg);
  background: #Fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  transition: background .3s ease;
  cursor: pointer;
}
.list-wrap .swiper .swiper-control .btn:hover {
  background: var(--main-color);
}
.list-wrap .swiper .swiper-control .btn svg {
  transform: rotate(-45deg);
  width: 50%;
  height: 50%;
}
.list-wrap .swiper .swiper-control .btn svg path {
  fill: var(--main-color);
  transition: fill .3s ease;
}
.list-wrap .swiper .swiper-control .btn:hover svg path {
  fill: #fff;
}
.list-wrap .col {
  display: block;
}
.list-wrap .wrap {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
  border-bottom: 4px solid transparent;
  transition: border-bottom-color .3s ease;
}
.list-wrap .wrap:hover {
  border-bottom-color: var(--main-color);
}
.list-wrap .wrap .cover {
  height: 300px;
  overflow: hidden;
}
.list-wrap .wrap .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.list-wrap .wrap:hover .cover img {
  transform: scale(1.1);
}
.list-wrap .wrap .desc {
  padding: 30px;
}
.list-wrap .wrap .desc h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 10px;
  height: 76px;
  transition:  color .3s ease;
}
.list-wrap .wrap:hover .desc h3 {
  color: var(--main-color);
}
.list-wrap .wrap .desc small {
  font-size: 16px;
  color: #666;
}
@media screen and (max-width: 640px) {
  .list-wrap .swiper .cover {
    height: 180px;
  }
  .list-wrap .swiper .desc {
    padding-top: 15px;
  }
  .list-wrap .swiper .desc p {
    margin: 10px 0;
    font-size: 14px;
  }
  .list-wrap .swiper .desc h3 {
    font-size: 18px;
  }
  .list-wrap .swiper .desc span {
    font-size: 14px;
  }
  .list-wrap .swiper {
    padding: 15px 15px 40px;
  }
  .list-wrap .swiper .swiper-control {
    width: 100px;
    bottom: 0;
  }
  .list-wrap .swiper .swiper-control .btn {
    width: 40px;
    height: 40px;
  }
  .list-wrap .wrap .cover {
    height: 180px;
  }
  .list-wrap .wrap .desc {
    padding: 15px;
  }
  .list-wrap .wrap .desc h3 {
    font-size: 18px;
    height: unset;
  }
  .list-wrap .wrap {
    margin-top: 15px;
  }
}
