.screen_1200 {
  max-width: 1200px;
  margin: 42px auto 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.nside .nside-right {
  color: #DDD;
}
.list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.list .item {
  width: calc((100% / 3) - 20px);
  margin-right: 30px;
  margin-bottom: 40px;
  border-radius: 0px 0px 10px 10px;
  padding-bottom: 30px;
  background: #F8F8F8;
  cursor: pointer;
  display: block;
}
.list .item:nth-child(3n) {
  margin-right: 0;
}
.list .item .img {
  width: 100%;
  overflow: hidden;
}
.list .item .img img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.list .item .name {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  line-height: 30px;
  transition: 0.5s;
  padding: 0 20px;
  padding-top: 30px;
}
.list .item .desc {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  padding: 0 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.list .item:hover .name {
  color: #CC2229;
}
.list .item:hover .img img {
  transform: scale(1.2);
}
.pages {
  width: 100%;
  margin-bottom: 80px;
}
.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) {
  .list {
    padding: 0 30px;
  }
  .list .item {
    width: calc((100% / 2) - 15px);
  }
  .list .item:nth-child(3n) {
    margin-right: 30px;
  }
  .list .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 800px) {
  .list {
    padding: 0 10px;
  }
  .list .item .name {
    font-size: 14px;
  }
  .list .item {
    width: calc((100% / 2) - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
  }
  .list .item:nth-child(3n) {
    margin-right: auto;
  }
  .list .item .name {
    padding: 10px;
    margin-bottom: 0;
  }
  .list .item .desc {
    padding: 0 10px;
  }
  .pages {
    margin-bottom: 40px;
  }
}
