body {
  background-color: #f3f9ff;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  height: 70px;
  font-size: 18px;
  color: #222;
}
.breadcrumbs a {
  color: #222;
}
.main {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 60px;
}
.main .list {
  display: flex;
  flex-wrap: wrap;
}
.main .list li {
  width: 313px;
  margin-right: 17px;
  margin-bottom: 30px;
}
.main .list li:nth-child(4n) {
  margin-right: 0;
}
.main .list li a {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.main .list li a .img {
  width: 100%;
  height: 176px;
  overflow: hidden;
}
.main .list li a .img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.main .list li a p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  font-size: 18px;
  color: #000;
}
.main .list li:hover .img img {
  transform: scale(1.1);
}
.main .list li:hover p {
  color: #185abe;
}
