.home {
  width: 100%;
  position: relative;
}
.home .header {
  position: fixed;
  height: 80px;
  background: white;
  box-shadow: 0px 0px 23px 6px rgba(66, 40, 6, 0.1);
  border-radius: 0px 40px 0px 40px;
  width: 70%;
  margin: 0 auto;
  left: 10%;
  transform: translateY(20px);
  padding: 0 5%;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 600ms;
}
.home .header .links {
  width: 65%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .header .links a {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  position: relative;
  transition: all 600ms;
}
.home .header .links a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 0;
  height: 2px;
  background: #F67F00;
  transition: all 600ms;
}
.home .header .links a:hover {
  color: #F78001;
}
.home .header .links a:hover::after {
  width: 100%;
}
.home .header .links .active {
  color: #F78001;
}
.home .header .links .active::after {
  width: 100%;
}
.home .header .chose {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .header .chose .lan {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 30px;
  cursor: pointer;
}
.home .header .chose .lan p {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin-right: 15px;
}
.home .header .chose .search {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.home .header .chose .search::before {
  width: 1px;
  height: 15px;
  background: #727272;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
}
.home .activeHeader {
  width: 90%;
  padding: 0 5%;
  border-radius: 0;
  left: 0;
  transform: translateY(0);
}
.home .container {
  width: 100%;
}
.home .container .banner {
  width: 100%;
  position: relative;
}
.home .container .banner .pic {
  overflow: hidden;
  width: 100%;
}
.home .container .banner .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: big2 32s forwards linear;
}
@keyframes big2 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.home .container .banner .btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.home .container .banner .btn .cta-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}
.home .container .banner .btn .cta-btn svg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.home .container .banner .btn .cta-btn .border {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  stroke-width: 2px;
}
.home .container .banner .btn .cta-btn .border path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-miterlimit: 10;
}
.home .container .banner .btn .cta-btn .outline {
  z-index: 1;
}
.home .container .banner .btn .cta-btn .outline path {
  fill: none;
  stroke-miterlimit: 10;
  stroke: #fff;
  stroke-dasharray: 300;
  stroke-width: 2px;
  -webkit-animation: run 5s linear infinite;
  animation: run 5s linear infinite;
}
@keyframes run {
  0% {
    stroke-dashoffset: -300;
  }
  50% {
    stroke-dashoffset: -150;
  }
  100% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 150;
  }
  0% {
    stroke-dashoffset: 300;
  }
}
.home .container .banner .btn img {
  position: absolute;
  left: 46%;
  top: 25%;
  z-index: 10;
  animation: show 2s linear infinite;
  height: 19px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 5px;
}
@keyframes show {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.8;
  }
}
.home .container .main {
  width: 60%;
  margin: 60px auto;
}
.home .container .main .title {
  text-align: center;
}
.home .container .main .title p:nth-child(1) {
  color: #333333;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .container .main .title p:nth-child(2) {
  color: #999999;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  text-transform: uppercase;
}
.home .container .main .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 80px auto;
}
.home .container .main .content .left {
  width: 65%;
}
.home .container .main .content .left .form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .container .main .content .left .form .item {
  width: 48%;
  margin-bottom: 30px;
}
.home .container .main .content .left .form .item input {
  width: 100%;
  display: block;
  height: 57px;
  border: 1px solid #D5D5D5;
  outline: none;
  color: #B7BABF;
  font-family: "SOURCEHANSANSCN-LIGHT";
  text-indent: 20px;
}
.home .container .main .content .left .form .item2 {
  width: 100%;
  margin-bottom: 30px;
}
.home .container .main .content .left .form .item2 textarea {
  width: 100%;
  display: block;
  height: 201px;
  border: 1px solid #D5D5D5;
  outline: none;
  color: #B7BABF;
  font-family: "SOURCEHANSANSCN-LIGHT";
  text-indent: 20px;
  padding-top: 20px;
  resize: none;
}
.home .container .main .content .left .form .btn {
  width: 140px;
  height: 44px;
  background: #A3A3A3;
  border-radius: 22px;
  color: white;
  text-align: center;
  font-family: "SOURCEHANSANSCN-NORMAL";
  line-height: 44px;
  cursor: pointer;
  transition: all 600ms;
}
.home .container .main .content .left .form .btn:hover {
  background-color: #F67F00;
}
.home .container .main .content .address {
  width: 25%;
}
.home .container .main .content .address .item {
  padding: 15px 0;
  border-bottom: 1px solid #E2E2E2;
  margin-bottom: 20px;
}
.home .container .main .content .address .item p {
  color: #666666;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  margin-bottom: 20px;
}
.home .container .main .content .address .item .sp {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .container .main .content .address .item .sp span {
  color: #999999;
  display: inline-block;
  margin-left: 10px;
}
.home .container .foot {
  width: 100%;
  background: url("../images/fbg.png") no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.home .container .foot .dom0 {
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(243, 243, 243, 0.1);
  padding-bottom: 30px;
}
.home .container .foot .dom0 .icons {
  display: none;
  flex-direction: row;
  align-items: center;
}
.home .container .foot .dom0 .icons a {
  color: #c5c5c5;
  display: block;
  margin-left: 20px;
  cursor: pointer;
  transition: all 600ms;
}
.home .container .foot .dom0 .icons a i {
  font-size: 25px;
}
.home .container .foot .dom0 .icons a:hover {
  color: white;
}
.home .container .foot .dom1 {
  width: 73%;
  margin: 0 auto;
  padding: 60px 1% 80px 1%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid rgba(243, 243, 243, 0.1);
}
.home .container .foot .dom1 .links {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .container .foot .dom1 .links .item {
  text-align: left;
}
.home .container .foot .dom1 .links .item a {
  color: white;
  font-family: "SOURCEHANSANSCN-NORMAL";
}
.home .container .foot .dom1 .links .item .aList {
  display: block;
  margin-top: 20px;
}
.home .container .foot .dom1 .links .item .aList a {
  display: block;
  color: rgba(218, 218, 218, 0.8);
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-bottom: 10px;
  transition: all 600ms;
}
.home .container .foot .dom1 .links .item .aList a:hover {
  color: white;
}
.home .container .foot .dom2 {
  width: 75%;
  margin: 0 auto;
  border-top: 1px solid rgba(243, 243, 243, 0.1);
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .container .foot .dom2 .code .pic {
  text-align: center;
}
.home .container .foot .dom2 .code .pic p {
  font-size: 14px;
  color: #DADADA;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 10px;
}
.home .container .foot .dom2 .r, .home .container .foot .dom2 a {
  color: rgba(255, 255, 255, 0.27);
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-NORMAL";
  transition: all 600ms;
}
.home .container .foot .dom2 .r:hover, .home .container .foot .dom2 a:hover {
  color: white;
}
.home .container .foot .dom2 a {
  margin: 0 2px;
}
@media screen and (max-width: 2000px) {
  .home .container .main {
    width: 70%;
  }
}
@media screen and (max-width: 1440px) {
  .home .container .main {
    width: 80%;
  }
  .home .container .foot .dom0 {
    width: 80%;
  }
  .home .container .foot .dom1 {
    width: 80%;
  }
  .home .container .foot .dom2 {
    width: 80%;
  }
}
@media screen and (max-width: 1000px) {
  .home .header {
    display: none;
  }
  .home .container .banner .pic img {
    height: 300px;
  }
  .home .container .main {
    width: 80%;
  }
  .home .container .main .content {
    flex-direction: column-reverse;
    margin: 40px auto;
  }
  .home .container .main .content .left {
    width: 100%;
  }
  .home .container .main .content .address {
    width: 100%;
  }
  .home .container .foot .dom1 {
    display: none;
  }
  .home .container .foot .dom2 {
    flex-direction: column;
    text-align: center;
  }
  .home .container .foot .dom2 .r {
    margin-top: 30px;
    line-height: 28px;
    display: flex;
    flex-wrap: wrap;
  }
  .home .container .foot .dom2 a {
    width: 100%;
  }
}

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