body {
  background: #F0F2F5;
}

.banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 2.0833333333vw;
}

.banner img {
  width: 100%;
  height: 26.0416666667vw;
  display: block;
  object-fit: cover;
}

.banner .t {
  position: absolute;
  left: 3.6458333333vw;
  bottom: 2.34375vw;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}

.container {
  padding: 3.125vw 5.7291666667vw 4.6875vw 5.7291666667vw;
}

.container .tabs {
  border-radius: 10px;
  background: #FFF;
  padding: 0.9895833333vw 1.0416666667vw;
  display: flex;
  gap: 2.6041666667vw;
}

.container .tabs span {
  border-radius: 10px;
  border: 1px solid #999;
  height: 2.7083333333vw;
  padding: 0 1.0416666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 600ms;
}

.container .tabs span.on {
  background: #27265F;
  color: #fff;
  border-color: #27265F;
}

.container .list {
  margin-top: 3.125vw;
}

.container .list a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #DDD;
  padding: 2.0833333333vw 1.5625vw;
  gap: 5.5208333333vw;
  align-items: center;
}

.container .list a:last-child {
  border-bottom: 1px solid #DDD;
}

.container .list a .pic {
  width: 34.375vw;
  overflow: hidden;
  border-radius: 10px;
}

.container .list a .pic img {
  width: 100%;
  display: block;
  height: 20.3125vw;
  object-fit: cover;
  transition: all 600ms;
}

.container .list a .text {
  width: 100%;
  flex: 1;
}

.container .list a .text .pt {
  color: #333;
  font-weight: 500;
  line-height: 1.27;
}

.container .list a .text .des {
  margin: 1.0416666667vw 0 6.0416666667vw 0;
  color: #666;
  line-height: 1.3;
  text-align: justify;
}

.container .list a:hover .pic img {
  transform: scale(1.05);
}

.container .pager {
  display: flex;
  justify-content: center;
  gap: 1.5625vw;
  align-items: center;
  margin-top: 3.125vw;
}

.container .pager .prev svg,
.container .pager .next svg {
  display: block;
  width: 1.25vw;
}

.container .pager .prev svg path,
.container .pager .next svg path {
  transition: all 600ms;
}

.container .pager .prev:hover svg path,
.container .pager .next:hover svg path {
  fill: #27265F;
}

.container .pager .nums {
  display: flex;
  gap: 1.0416666667vw;
}

.container .pager .nums a {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333;
  line-height: 1;
  transition: all 600ms;
}

.container .pager .nums a.on {
  background: #27265F;
  color: white;
}

@media screen and (max-width: 768px) {
  .banner {
    margin: 0 5%;
  }

  .banner img {
    height: 200px;
  }

  .banner .t {
    left: 20px;
    bottom: 20px;
    font-size: 24px;
  }

  .container {
    padding: 40px 5% 60px;
  }

  .container .tabs {
    border-radius: 8px;
    padding: 12px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .container .tabs span {
    height: auto;
    padding: 12px 5px;
    font-size: 14px;
    border-radius: 8px;
    flex: 1;
    min-width: 120px;
    text-align: center;
  }

  .container .list {
    margin-top: 30px;
  }

  .container .list a {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    padding-bottom: 40px;
    border-top: none;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .container .list a:not(:last-child) {
    margin-bottom: 20px;
  }

  .container .list a:last-child {
    border-bottom: none;
  }

  .container .list a .pic {
    width: 100%;
    border-radius: 8px;
  }

  .container .list a .pic img {
    height: 200px;
  }

  .container .list a .text {
    width: 100%;
  }

  .container .list a .text .pt {
    font-size: 18px;
  }

  .container .list a .text .des {
    margin: 15px 0 30px 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .container .pager {
    gap: 20px;
    margin-top: 30px;
  }

  .container .pager .prev svg,
  .container .pager .next svg {
    width: 14px;
  }

  .container .pager .nums {
    gap: 15px;
  }

  .container .pager .nums a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=solution.css.map */