.home {
  width: 100%;
}
.home .banner {
  width: 100%;
  position: relative;
}
.home .banner .bg {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .banner .text {
  width: 80%;
  left: 10%;
  top: 60%;
  transform: translateY(-50%);
  position: absolute;
}
.home .banner .text .p1 {
  font-size: 48px;
  font-family: "SOURCEHANSANSCN-BOLD";
  color: white;
}
.home .banner .text .p2 {
  font-size: 18px;
  color: white;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin: 20px 0 60px 0;
}
.home .main {
  width: 60%;
  margin: 60px auto;
}
.home .main .title {
  text-align: center;
}
.home .main .title .p1 {
  color: #272729;
  font-size: 32px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .main .title .p2 {
  color: #333333;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin: 15px 0;
}
.home .main .content {
  width: 100%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
}
.home .main .content .info {
  width: 45%;
}
.home .main .content .info .item {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.home .main .content .info .item .pic {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .main .content .info .item p {
  margin-left: 20px;
  color: #666666;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .main .content .info .icons {
  margin-top: 40px;
}
.home .main .content .info .icons a {
  margin-right: 20px;
}
.home .main .content .form {
  width: 50%;
}
.home .main .content .form input {
  width: 100%;
  height: 60px;
  background: #F6F6F6;
  outline: none;
  border: none;
  color: #666666;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  text-indent: 20px;
  margin-bottom: 20px;
}
.home .main .content .form textarea {
  width: 100%;
  height: 150px;
  background: #F6F6F6;
  outline: none;
  border: none;
  color: #666666;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  text-indent: 20px;
  margin-bottom: 10px;
  padding-top: 15px;
}
.home .main .content .form a {
  width: 180px;
  height: 45px;
  border: 1px solid #7F7F7F;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 600ms;
  color: #425CBB;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  margin-top: 30px;
}
.home .main .content .form a .pic {
  position: relative;
  display: inline-block;
  transition: all 600ms;
}
.home .main .content .form a .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 600ms;
}
.home .main .content .form a .pic img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.home .main .content .form a:hover {
  background-color: #425CBB;
  color: white;
  border-color: #425CBB;
}
.home .main .content .form a:hover .pic img:nth-child(1) {
  opacity: 0;
}
.home .main .content .form a:hover .pic img:nth-child(2) {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .home .banner .bg {
    height: 500px;
  }
  .home .banner .text .p1 {
    font-size: 24px;
  }
  .home .main {
    width: 90%;
    margin: 30px auto;
  }
  .home .main .title .p1 {
    font-size: 18px;
  }
  .home .main .content {
    margin: 30px auto;
    flex-wrap: wrap;
  }
  .home .main .content .info, .home .main .content .form {
    width: 100%;
  }
  .home .main .content .form {
    margin-top: 20px;
  }
}