.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 .content .t1 {
  color: #333333;
  font-size: 18px;
  line-height: 2;
}
.home .main .content .form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px auto 20px auto;
}
.home .main .content .form .item {
  width: 48%;
  margin-bottom: 30px;
}
.home .main .content .form .item input {
  width: 90%;
  display: block;
  background: #F6F6F6;
  padding: 20px 5%;
  border: none;
  outline: none;
}
.home .main .content .form .item textarea {
  width: 96%;
  display: block;
  background: #F6F6F6;
  padding: 20px 2%;
  border: none;
  outline: none;
  height: 150px;
  resize: none;
}
.home .main .content .btn {
  width: 215px;
  text-align: center;
  line-height: 63px;
  color: white;
  background: #0B9F27;
  margin-bottom: 60px;
  cursor: pointer;
  font-size: 18px;
}
@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 .content .form {
    margin-top: 20px;
  }
  .home .main .content .form .item {
    width: 100%;
    margin-bottom: 15px;
  }
  .home .main .content .btn {
    margin: 40px auto;
    line-height: 50px;
  }
}

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