.home {
  width: 100%;
}
.home .banner {
  position: relative;
}
.home .banner p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bolder;
  text-transform: uppercase;
}
.home .banner img {
  width: 100%;
  display: block;
}
.home .main .section1 {
  width: 60%;
  margin: 60px auto;
}
.home .main .section1 .pt {
  font-size: 24px;
  font-weight: bolder;
  text-align: center;
}
.home .main .section1 .line {
  width: 3px;
  height: 35px;
  background: #3B7925;
  margin: 20px auto;
}
.home .main .section1 .des {
  color: #666666;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.home .main .section1 .allIcons {
  width: 90%;
  justify-content: space-between;
  display: flex;
  margin: 40px auto;
}
.home .main .section1 .allIcons .item {
  width: 30%;
  text-align: center;
  cursor: pointer;
}
.home .main .section1 .allIcons .item .icon {
  width: 76px;
  height: 76px;
  border: 1px solid #3B7925;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 20px auto;
  transition: all 600ms;
  position: relative;
}
.home .main .section1 .allIcons .item .icon img {
  display: block;
  transition: all 600ms;
}
.home .main .section1 .allIcons .item .icon img:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.home .main .section1 .allIcons .item .icon:hover img:nth-child(1) {
  opacity: 0;
}
.home .main .section1 .allIcons .item .icon:hover img:nth-child(2) {
  opacity: 1;
}
.home .main .section1 .allIcons .item .p1 {
  color: #3B7925;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .main .section1 .allIcons .item .p1::after {
  content: "";
  display: flex;
  width: 29px;
  height: 1px;
  background: #3B7925;
  margin-top: 10px;
}
.home .main .section1 .allIcons .item .p2 {
  color: #666666;
  font-size: 14px;
  margin-top: 10px;
}
.home .main .section1 .allIcons .item:hover .icon {
  background: #3B7925;
}
.home .main .section1 .bpic {
  width: 100%;
}
.home .main .section1 .bpic img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  margin: 40px auto;
}
.home .main .honor {
  padding: 60px 5%;
  background: url("../images/hbg.png") no-repeat;
  background-size: cover;
}
.home .main .honor .title {
  text-align: center;
  font-size: 30px;
  font-weight: bolder;
  text-transform: uppercase;
}
.home .main .honor .title .line img {
  display: block;
  margin: 20px auto;
}
.home .main .honor .allPics {
  width: 100%;
  margin-top: 40px;
}
.home .main .honor .allPics .swiper-container .swiper-wrapper .swiper-slide .piv {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.home .main .honor .allPics .swiper-container .swiper-wrapper .swiper-slide .piv img {
  width: 100%;
  display: block;
  margin: 0 auto;
  transition: all 600ms;
}
.home .main .honor .allPics .swiper-container .swiper-wrapper .swiper-slide .piv:hover img {
  transform: scale(1.05);
}
.home .main .honor .allPics .swiper-container .swiper-wrapper .swiper-slide p {
  color: #333333;
  font-size: 18px;
  text-align: center;
  margin: 20px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
}
.home .dialog .content {
  width: 80%;
  position: relative;
}
.home .dialog .content .close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 100;
  cursor: pointer;
}
.home .dialog .content .close i {
  color: white;
  font-size: 30px;
}
.home .dialog .content .prev {
  color: white;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
}
.home .dialog .content .prev i {
  font-size: 60px;
  transition: all 600ms;
}
.home .dialog .content .prev i:hover {
  color: #E71F19;
}
.home .dialog .content .next {
  color: white;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
}
.home .dialog .content .next i {
  font-size: 60px;
  transition: all 600ms;
  display: inline-block;
  transform: rotateY(180deg);
}
.home .dialog .content .next i:hover {
  color: #E71F19;
}
.home .dialog .content .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
}
.home .dialog .content .swiper-container .swiper-wrapper .swiper-slide img {
  height: 500px;
  max-width: 500px;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .home .banner p {
    font-size: 24px;
  }
  .home .main .section1 {
    width: 90%;
    margin: 30px auto;
  }
  .home .main .section1 .pt {
    font-size: 20px;
  }
  .home .main .section1 .allIcons {
    flex-direction: column;
    margin: 20px auto;
  }
  .home .main .section1 .allIcons .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
  }
  .home .main .section1 .allIcons .item .icon {
    margin: 0;
  }
  .home .main .section1 .allIcons .item .text {
    width: calc(92% - 76px);
    text-align: left;
  }
  .home .main .section1 .allIcons .item .text .p1 {
    align-items: start;
  }
  .home .main .honor {
    padding: 30px 5%;
  }
  .home .dialog .content .close {
    right: 0;
    top: -20px;
  }
  .home .dialog .content .prev, .home .dialog .content .next {
    transform: translateY(0);
    top: 75%;
  }
  .home .dialog .content .swiper-container .swiper-wrapper .swiper-slide img {
    max-width: 100%;
  }
}

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