.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
  margin-top: -70px;
}
.breadcrumbs img {
  margin-right: 10px;
}
.breadcrumbs a {
  color: #333;
}
.breadcrumbs a:hover {
  color: #24986b;
}
.main {
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
  margin-bottom: 50px;
}
.main .list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.main .list li {
  position: relative;
  width: 300px;
  height: 210px;
  overflow: hidden;
}
.main .list li:hover img {
  transform: scale(1.02);
}
.main .list li img {
  width: 100%;
  height: 210px;
  transition: all 0.4s;
}
.main .list li .mask {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0 10px;
  font-size: 16px;
  color: #fff;
}
