.home {
  width: 100%;
}
.home .banner {
  width: 100%;
}
.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main {
  width: 100%;
}
.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 .content {
  width: 85%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .main .content .l {
  width: 436px;
  position: relative;
}
.home .main .content .l .tag {
  position: absolute;
  right: 0;
  bottom: 80px;
  background: #0B9F27;
  display: inline-block;
  padding: 25px 60px 25px 25px;
}
.home .main .content .l .tag p {
  color: white;
}
.home .main .content .l .tag .p2 {
  font-size: 30px;
}
.home .main .content .l img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .main .content .r {
  width: calc(95% - 436px);
}
.home .main .content .r .text {
  color: #141414;
  line-height: 2;
}
.home .main .content .r .text span {
  font-weight: bolder;
}
.home .main .content .r .slogo {
  text-align: right;
  margin-top: 30px;
}
@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 .content {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }
  .home .main .content .l, .home .main .content .r {
    width: 100%;
  }
  .home .main .content .r {
    margin: 20px 0;
  }
}

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