.home {
  width: 100%;
  position: relative;
}
.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: 25%;
  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 .pic1 {
  padding: 60px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .main .pic1 .l {
  width: 40%;
}
.home .main .pic1 .l img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.home .main .pic1 .r {
  width: 55%;
}
.home .main .pic1 .r .p1 {
  color: #141414;
  font-size: 36px;
}
.home .main .pic1 .r .p1::after {
  width: 35px;
  height: 3px;
  content: "";
  display: block;
  background: #0B9F27;
  margin-top: 20px;
}
.home .main .pic1 .r .more {
  width: 157px;
  height: 40px;
  background: #0B9F27;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-top: 100px;
  cursor: pointer;
}
.home .main .pic1 .r .more p {
  color: white;
  margin-right: 20px;
}
.home .main .allItems {
  width: 100%;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
}
.home .main .allItems .item {
  width: 19%;
  margin: 0.5%;
  background: white;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0;
  transition: all 600ms;
  cursor: pointer;
  box-sizing: border-box;
}
.home .main .allItems .item .pic {
  width: 100%;
}
.home .main .allItems .item .pic img {
  max-width: 100%;
  object-fit: contain;
}
.home .main .allItems .item p {
  color: #141414;
  transition: all 600ms;
  margin-top: 20px;
}
.home .main .allItems .item:hover {
  background: #0B9F27;
}
.home .main .allItems .item:hover p {
  color: white;
}
.home .bigPic {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.home .bigPic .close {
  position: absolute;
  right: 20%;
  top: 10%;
  cursor: pointer;
  z-index: 100;
}
.home .bigPic .swiper-container {
  width: 80%;
  height: 80vh;
}
.home .bigPic .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .bigPic .swiper-container .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@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 .pic1 {
    flex-direction: column;
    padding: 15px 5% 30px 5%;
  }
  .home .main .pic1 .l, .home .main .pic1 .r {
    width: 100%;
  }
  .home .main .pic1 .r {
    margin-top: 20px;
  }
  .home .main .pic1 .r .p1 {
    font-size: 24px;
  }
  .home .main .pic1 .r .more {
    margin-top: 20px;
  }
  .home .main .allItems {
    margin-top: 20px;
  }
  .home .main .allItems .item {
    width: 90%;
    padding: 30px 5%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .home .bigPic .close {
    right: 10%;
  }
  .home .bigPic .close img {
    width: 40px;
  }
}

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