.model1 {
  width: 100%;
  padding: 80px 0;
}
.model1 .list {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.model1 .list .item {
  width: calc((100% / 3) - 20px);
  margin-right: 30px;
  margin-bottom: 30px;
  cursor: pointer;
}
.model1 .list .item:nth-child(3n) {
  margin-right: 0;
}
.model1 .list .item .img {
  width: 100%;
  overflow: hidden;
}
.model1 .list .item .img img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.model1 .list .item .name {
  padding: 10px 0;
  width: 100%;
  font-size: 16px;
  color: #333;
  text-align: center;
}
.model1 .list .item:hover .img img {
  transform: scale(1.2);
}
.pages {
  width: 100%;
}
.pages .btn-prev,
.pages .btn-next {
  margin: 0 5px !important;
  width: 30px;
  height: 30px;
  background: #F8F8F8 !important;
  border-radius: 4px;
}
.pages .btn-prev i,
.pages .btn-next i {
  color: #333;
}
.pages .btn-prev::before,
.pages .btn-next::before {
  display: none;
}
.pages .btn-prev:hover,
.pages .btn-next:hover {
  background: #CC2229 !important;
}
.pages .btn-prev:hover i,
.pages .btn-next:hover i {
  color: #fff;
}
.pages .number:hover {
  border: none !important;
  color: #CC2229 !important;
}
.pages .number.active {
  color: #CC2229 !important;
  border: none !important;
}
@media (max-width: 1200px) {
  .model1 {
    padding: 40px 0;
  }
  .model1 .list {
    padding: 0 30px;
  }
}
@media (max-width: 800px) {
  .model1 .list {
    justify-content: space-between;
  }
  .model1 .list .item {
    width: 49%;
    margin-right: 0;
  }
}
