.banner {
  position: relative;
}
.banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 28.6458333333vw;
}
.banner .text {
  position: absolute;
  left: 0;
  top: 13.0208333333vw;
  width: 100%;
  text-align: center;
  color: white;
}
.banner .text .t {
  font-weight: 700;
}
.banner .text .tip {
  font-weight: 500;
  margin-top: 1.0416666667vw;
}

.container {
  padding: 0 12.5vw 4.1666666667vw 12.5vw;
  margin-top: -1.8229166667vw;
}
.container .search_b {
  width: 52.0833333333vw;
  border-radius: 4.1666666667vw;
  border: 2px solid #B62D23;
  background: #fff;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.container .search_b input {
  height: 3.6458333333vw;
  width: 100%;
  background: transparent;
  outline: none;
  padding: 0 1.3541666667vw;
  border: none;
  color: #000;
}
.container .search_b input::placeholder {
  color: #DDD;
}
.container .search_b .btn {
  display: inline-flex;
  position: absolute;
  justify-content: center;
  right: 0.4166666667vw;
  top: 0.4166666667vw;
  padding: 0.7291666667vw 1.1979166667vw;
  gap: 0.4166666667vw;
  width: 7.3958333333vw;
  background: #B62D23;
  border-radius: 1.5625vw;
  color: #fff;
  cursor: pointer;
}
.container .search_b .btn img {
  width: 1.0416666667vw;
  display: block;
}
.container .list {
  margin: 3.6458333333vw 0 2.0833333333vw 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25vw 0.9895833333vw;
}
.container .list a {
  display: block;
  width: 100%;
  padding: 0.625vw;
  padding-bottom: 1.1979166667vw;
  border-radius: 1.5625vw;
  background: #FAFAFA;
  transition: all 600ms;
}
.container .list a .pic {
  border-radius: 1.0416666667vw;
  overflow: hidden;
  position: relative;
}
.container .list a .pic .mp {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 11.9791666667vw;
  transition: all 600ms;
}
.container .list a .pic .icon {
  width: 3.125vw;
  display: block;
  position: absolute;
  right: 0.625vw;
  bottom: 0.625vw;
  opacity: 0;
  transition: all 600ms;
}
.container .list a .pt {
  margin: 0.8333333333vw 0 0.5208333333vw 0;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 500;
  line-height: 1.2;
  transition: all 600ms;
}
.container .list a .des {
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.2;
  height: 3.4375vw;
  transition: all 600ms;
}
.container .list a:hover {
  background: #B62D23;
}
.container .list a:hover .pic .icon {
  opacity: 1;
}
.container .list a:hover .pt,
.container .list a:hover .des {
  color: #fff;
}
.container .pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5625vw;
}
.container .pager .prev,
.container .pager .next {
  display: block;
}
.container .pager .prev svg,
.container .pager .next svg {
  display: block;
  width: 1.0416666667vw;
  height: auto;
}
.container .pager .prev svg:hover path,
.container .pager .next svg:hover path {
  fill: #B62D23;
}
.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, .container .pager .nums a:hover {
  background: #B62D23;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .banner {
    margin-top: 60px;
  }
  .banner img {
    height: 200px;
  }
  .banner .text {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5%;
  }
  .banner .text .t {
    font-size: 20px;
    line-height: 1.5;
  }
  .banner .text .tip {
    font-size: 14px;
    margin-top: 15px;
  }
  .container {
    padding: 0 5% 40px 5%;
    margin-top: -20px;
  }
  .container .search_b {
    width: 100%;
    border-radius: 40px;
  }
  .container .search_b input {
    height: 50px;
    padding: 0 20px;
  }
  .container .search_b .btn {
    right: 5px;
    top: 5px;
    padding: 10px 18px;
    gap: 6px;
    height: 40px;
    width: auto;
    border-radius: 25px;
    line-height: 1.2;
  }
  .container .search_b .btn img {
    width: 15px;
  }
  .container .list {
    margin: 30px 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .container .list a {
    padding: 20px;
    padding-bottom: 16px;
    border-radius: 20px;
  }
  .container .list a .pic {
    border-radius: 15px;
  }
  .container .list a .pic .mp {
    height: 230px;
  }
  .container .list a .pic .icon {
    width: 40px;
    right: 8px;
    bottom: 8px;
  }
  .container .list a .pt {
    margin: 12px 0 8px 0;
    font-size: 18px;
  }
  .container .list a .des {
    line-height: 1.5;
    font-size: 16px;
    height: auto;
  }
  .container .pager {
    gap: 15px;
  }
  .container .pager .prev svg,
  .container .pager .next svg {
    width: 16px;
  }
  .container .pager .nums {
    gap: 10px;
  }
  .container .pager .nums a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

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