.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: 70%;
  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 .navList {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 40px auto;
}
.home .container .main .navList a {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  transition: all 600ms;
}
.home .container .main .navList a:hover {
  color: #f67f00;
}
.home .container .main .navList .active {
  color: #f67f00;
}
.home .container .main .allImgs {
  width: 60%;
  margin: 30px auto;
  position: relative;
}
.home .container .main .allImgs .prev {
  width: 38px;
  height: 38px;
  background: #eeeeee;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f67f00;
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1000;
  transition: all 600ms;
}
.home .container .main .allImgs .prev i {
  font-size: 25px;
}
.home .container .main .allImgs .prev:hover {
  background-color: #f67f00;
  color: white;
}
.home .container .main .allImgs .next {
  width: 38px;
  height: 38px;
  background: #eeeeee;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f67f00;
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  cursor: pointer;
  z-index: 1000;
  transition: all 600ms;
}
.home .container .main .allImgs .next i {
  font-size: 25px;
}
.home .container .main .allImgs .next:hover {
  background-color: #f67f00;
  color: white;
}
.home .container .main .allImgs .swiper-container {
  width: 100%;
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide {
  padding: 10px 0;
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide .t1 {
  width: 80%;
  margin: 15px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide .t1 p {
  color: #666666;
  font-family: "SOURCEHANSANSCN-REGULAR";
  transition: all 600ms;
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide .t1 span i {
  color: #676767;
  transition: all 600ms;
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide:hover .t1 p {
  color: #f67f00;
}
.home .container .main .allImgs .swiper-container .swiper-wrapper .swiper-slide:hover .t1 span i {
  color: #f67f00;
}
.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: 90%;
  }
}
@media screen and (max-width: 1440px) {
  .home .container .main .allImgs {
    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: 90%;
  }
  .home .container .main .title p:nth-child(1) {
    font-size: 18px;
  }
  .home .container .main .allImgs .prev {
    left: -40px;
  }
  .home .container .main .allImgs .next {
    right: -40px;
  }
  .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;
  }
}

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