.home {
  width: 100%;
}
.home .banner {
  width: 100%;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main {
  width: 85%;
  margin: 0 auto;
  margin-bottom: 100px;
}
.home .main .nav {
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  border-radius: 10px;
  transform: translateY(-40px);
}
.home .main .nav a {
  width: 16.7%;
  text-align: center;
  padding: 30px 0;
  color: #666666;
  transition: all 600ms;
  background: white;
  border-right: 1px solid #F0F0F0;
}
.home .main .nav a:hover {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
.home .main .nav .active {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
.home .main .nav a:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.home .main .nav a:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.home .main .types {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #E7ECEE;
  flex-wrap: wrap;
}
.home .main .types .item {
  display: flex;
  align-items: center;
  position: relative;
}
.home .main .types .item::after {
  content: "/";
  display: block;
  margin: 0 30px;
  color: #DCDCDC;
}
.home .main .types .item .a1 {
  color: #999999;
  display: block;
  position: relative;
  padding: 20px 10px;
  transition: all 600ms;
}
.home .main .types .item .a1::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: all 600ms;
  height: 3px;
  background: #0B9F27;
}
.home .main .types .item .aList {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border: 1px solid #E7ECEE;
  z-index: 100;
  background: white;
  padding: 10px 0 20px 0;
  display: none;
}
.home .main .types .item .aList a {
  display: block;
  padding: 8px 20px;
  color: #646464;
  font-size: 14px;
  transition: all 600ms;
}
.home .main .types .item .aList a:hover {
  color: #0B9F27;
}
.home .main .types .item:hover .a1 {
  color: #120E0F;
}
.home .main .types .item:hover .a1::after {
  width: 100%;
}
.home .main .types .item:hover .aList {
  display: block;
}
.home .main .types .item:last-child::after {
  display: none;
}
.home .main .types .active .a1 {
  color: #120E0F;
}
.home .main .types .active .a1::after {
  width: 100%;
}
.home .main .allItems {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}
.home .main .allItems a {
  display: block;
  width: 23%;
  margin-left: 1.6%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 600ms;
}
.home .main .allItems a .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main .allItems a p {
  padding: 20px 0;
  text-align: center;
  color: #333333;
  font-size: 18px;
  transition: all 600ms;
}
.home .main .allItems a:hover {
  transform: translateY(-10px);
}
.home .main .allItems a:hover p {
  color: #0B9F27;
}
.home .main .allItems .more {
  background: #0B9F27;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.home .main .allItems .more p {
  font-size: 18px;
  color: white;
  margin-top: 5px;
}
.home .main .allItems .more:hover p {
  color: white;
}
.home .main .pager {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.home .main .pager a {
  display: block;
  margin: 0 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #666666;
  padding: 10px 20px;
  transition: all 600ms;
}
.home .main .pager a:hover {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
.home .main .pager .active {
  background: #0B9F27;
  color: white;
  border-color: #0B9F27;
}
@media screen and (max-width: 1300px) {
  .home .banner img {
    height: 300px;
  }
  .home .main {
    width: 90%;
  }
  .home .main .nav {
    transform: translateY(-30px);
    flex-wrap: wrap;
  }
  .home .main .nav a {
    padding: 20px 0;
    width: 50%;
    border-right: none;
  }
  .home .main .types .item::after {
    margin: 0;
  }
  .home .main .allItems {
    justify-content: space-between;
  }
  .home .main .allItems a {
    width: 48%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .home .main .allItems a p {
    padding: 10px 0;
  }
  .home .main .allItems .more {
    padding: 60px 0;
  }
}

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