.home {
  width: 100%;
}
.home .banner {
  width: 100%;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main {
  width: 100%;
  background: url("../images/cbg.png") no-repeat;
  background-size: cover;
}
.home .main .nav {
  width: 85%;
  margin: 0 auto;
  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 .brand {
  width: 85%;
  margin: 60px auto;
}
.home .main .brand .title {
  color: #141414;
  font-size: 36px;
}
.home .main .brand .title::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #0B9F27;
  margin-top: 20px;
}
.home .main .brand .nr {
  width: 100%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .main .brand .nr .l {
  width: calc(90% - 410px);
  margin-left: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .main .brand .nr .l .pic {
  width: 123px;
}
.home .main .brand .nr .l .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main .brand .nr .l .text {
  width: calc(90% - 123px);
}
.home .main .brand .nr .l .text .item {
  margin-bottom: 30px;
  position: relative;
}
.home .main .brand .nr .l .text .item::before {
  content: attr(data-num);
  display: block;
  width: 18px;
  height: 18px;
  background: #0B9F27;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 5px;
  font-size: 14px;
  text-align: center;
  line-height: 18px;
  color: white;
}
.home .main .brand .nr .l .text .item .p1 {
  color: #141414;
  font-size: 18px;
  font-weight: bolder;
}
.home .main .brand .nr .l .text .item .des {
  color: #141414;
  font-weight: lighter;
  line-height: 2;
  margin-top: 10px;
}
.home .main .brand .nr .r {
  width: 410px;
}
.home .main .brand .nr .r img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main .culture {
  width: 85%;
  margin: 60px auto;
}
.home .main .culture .title {
  color: #141414;
  font-size: 36px;
}
.home .main .culture .title::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #0B9F27;
  margin-top: 20px;
}
.home .main .culture .t2 {
  color: #141414;
  font-size: 22px;
  margin-top: 20px;
}
.home .main .culture .content {
  width: 100%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .main .culture .content .item {
  width: 28.5%;
  background: #F0F5F7;
  padding: 60px 2%;
  margin-bottom: 20px;
  transition: all 600ms;
}
.home .main .culture .content .item .pic {
  display: inline-block;
  position: relative;
}
.home .main .culture .content .item .pic img {
  transition: all 600ms;
}
.home .main .culture .content .item .pic img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.home .main .culture .content .item p, .home .main .culture .content .item .des {
  transition: all 600ms;
}
.home .main .culture .content .item p {
  color: #141414;
  font-size: 22px;
  margin: 10px 0;
}
.home .main .culture .content .item .des {
  color: #666666;
  line-height: 1.8;
}
.home .main .culture .content .item:hover {
  background: #0B9F27;
}
.home .main .culture .content .item:hover .pic img:nth-child(1) {
  opacity: 0;
}
.home .main .culture .content .item:hover .pic img:nth-child(2) {
  opacity: 1;
}
.home .main .culture .content .item:hover p, .home .main .culture .content .item:hover .des {
  color: white;
}
@media screen and (max-width: 1300px) {
  .home .banner img {
    height: 300px;
  }
  .home .main .nav {
    width: 90%;
    transform: translateY(-30px);
    flex-wrap: wrap;
  }
  .home .main .nav a {
    padding: 20px 0;
    width: 50%;
    border-right: none;
  }
  .home .main .brand {
    width: 90%;
    margin: 30px auto;
  }
  .home .main .brand .title {
    font-size: 24px;
  }
  .home .main .brand .nr {
    margin: 30px auto;
    flex-direction: column;
  }
  .home .main .brand .nr .l {
    flex-direction: column;
    margin-left: 0;
    align-items: flex-start;
  }
  .home .main .brand .nr .l .text {
    width: 90%;
    margin: 20px auto;
  }
  .home .main .brand .nr .l, .home .main .brand .nr .r {
    width: 100%;
  }
  .home .main .culture {
    width: 90%;
    margin: 30px auto;
  }
  .home .main .culture .title {
    font-size: 24px;
  }
  .home .main .culture .t2 {
    font-size: 20px;
  }
  .home .main .culture .content {
    margin: 30px auto;
  }
  .home .main .culture .content .item {
    width: 90%;
    padding: 30px 5%;
    margin-bottom: 15px;
  }
}

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