.home {
  width: 100%;
}
.home .banner {
  width: 100%;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main {
  width: 85%;
  margin: 0 auto;
}
.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: 50%;
  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 .allItems {
  margin: 40px auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home .main .allItems .item {
  width: calc(48.5% - 80px);
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  transition: all 600ms;
}
.home .main .allItems .item .l {
  width: calc(98% - 150px);
}
.home .main .allItems .item .l .p1 {
  color: #141414;
  font-size: 30px;
  transition: all 600ms;
}
.home .main .allItems .item .l .p1::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #141414;
  margin-top: 15px;
  transition: all 600ms;
}
.home .main .allItems .item .l .des {
  color: #666666;
  line-height: 1.8;
  margin-top: 30px;
}
.home .main .allItems .item .pic {
  width: 150px;
  text-align: center;
}
.home .main .allItems .item .pic img {
  max-width: 150px;
  object-fit: contain;
}
.home .main .allItems .item:hover {
  transform: translateY(-10px);
}
.home .main .allItems .item:hover .l .p1 {
  color: #0B9F27;
}
.home .main .allItems .item:hover .l .p1::after {
  background: #0B9F27;
}
@media screen and (max-width: 1300px) {
  .home .banner img {
    height: 300px;
  }
  .home .main {
    width: 90%;
  }
  .home .main .nav {
    transform: translateY(-30px);
  }
  .home .main .nav a {
    padding: 20px 0;
  }
  .home .main .allItems {
    margin: 20px auto;
  }
  .home .main .allItems .item {
    width: 90%;
    padding: 30px 5%;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .home .main .allItems .item .l, .home .main .allItems .item .pic {
    width: 100%;
  }
  .home .main .allItems .item .l .p1 {
    font-size: 20px;
  }
  .home .main .allItems .item .pic {
    margin-top: 20px;
  }
}

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