.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: none;
  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: 80px auto;
}
.home .container .main .title p:nth-child(1) {
  color: #333333;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  margin-top: 157px;
}
.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: 30px auto;
}
.home .container .main .content .lNav {
  width: 20%;
  border-top: 1px solid #DCDCDC;
  padding: 40px 0;
}
.home .container .main .content .lNav .item {
  width: 100%;
  margin-bottom: 30px;
}
.home .container .main .content .lNav .item .a1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.home .container .main .content .lNav .item .a1 .tb {
  display: block;
  width: 25px;
  transform: rotateY(180deg);
  color: #666666;
  transition: all 600ms;
}
.home .container .main .content .lNav .item .a1 .tb i {
  font-size: 25px;
}
.home .container .main .content .lNav .item .a1 span:nth-child(2) {
  color: #333333;
  font-family: "SOURCEHANSANSCN-NORMAL";
  display: inline-block;
  margin-left: 15px;
  transition: all 600ms;
}
.home .container .main .content .lNav .item .a1:hover .tb {
  transform: rotateY(180deg) rotate(-90deg);
}
.home .container .main .content .lNav .item .a1:hover span:nth-child(2) {
  color: #F67F00;
}
.home .container .main .content .lNav .item .aList {
  margin-left: 40px;
  margin-top: 10px;
  display: none;
}
.home .container .main .content .lNav .item .aList a {
  color: #333333;
  font-size: 14px;
  display: block;
  font-family: "SOURCEHANSANSCN-LIGHT";
  line-height: 30px;
  transition: all 600ms;
}
.home .container .main .content .lNav .item .aList a:hover {
  color: #F67F00;
}
.home .container .main .content .lNav .active .a1 .tb {
  transform: rotateY(180deg) rotate(-90deg);
}
.home .container .main .content .lNav .active .a1 span:nth-child(2) {
  color: #F67F00;
}
.home .container .main .content .lNav .active .aList {
  display: block;
}
.home .container .main .content .lNav .search {
  background-color: #F3F3F3;
  position: relative;
  margin-top: 80px;
}
.home .container .main .content .lNav .search input {
  width: 100%;
  height: 41px;
  outline: none;
  border: none;
  background-color: transparent;
  text-indent: 20px;
}
.home .container .main .content .lNav .search a {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.home .container .main .content .pright {
  width: 75%;
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #D4D4D4;
}
.home .container .main .content .pright .nr {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #D4D4D4;
  padding-bottom: 60px;
}
.home .container .main .content .pright .nr .lpic {
  width: 48%;
  text-align: center;
  position: relative;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .container .main .content .pright .nr .lpic::after {
  width: 298px;
  height: 298px;
  background: linear-gradient(121deg, #E37500 0%, #FFB759 100%);
  box-shadow: 0px 3px 33px 13px rgba(37, 39, 39, 0.15);
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.home .container .main .content .pright .nr .intro {
  width: 48%;
}
.home .container .main .content .pright .nr .intro .p1 p:nth-child(1) {
  color: #333333;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .container .main .content .pright .nr .intro .p1 p:nth-child(2) {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin-top: 5px;
}
.home .container .main .content .pright .nr .intro .item {
  margin-top: 20px;
}
.home .container .main .content .pright .nr .intro .item .p1 {
  color: #F67F00;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  position: relative;
  padding: 15px 0;
  margin-bottom: 15px;
}
.home .container .main .content .pright .nr .intro .item .p1::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 1px;
  background: #F67F00;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home .container .main .content .pright .nr .intro .item .des {
  line-height: 30px;
}
.home .container .main .content .pright .pDes {
  width: 80%;
  margin: 80px auto;
  margin-bottom: 0;
}
.home .container .main .content .pright .pDes .t1 {
  text-align: center;
  color: #F67F00;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  position: relative;
  padding: 15px 0;
}
.home .container .main .content .pright .pDes .t1::after {
  width: 45px;
  height: 1px;
  background: #F67F00;
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.home .container .main .content .pright .pDes .pNav {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 40px auto;
}
.home .container .main .content .pright .pDes .pNav .item {
  background-color: #EEEEEE;
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
  width: 33.3%;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  transition: all 600ms;
}
.home .container .main .content .pright .pDes .pNav .item:hover {
  background-color: #F67F00;
  color: white;
}
.home .container .main .content .pright .pDes .pNav .active {
  background-color: #F67F00;
  color: white;
}
.home .container .main .content .pright .pDes .pCon {
  width: 100%;
  margin: 60px auto;
}
.home .container .main .content .pright .pDes .pCon .html {
  text-align: center;
  display: none;
}
.home .container .main .content .pright .pDes .pCon .html .p1 {
  color: #333333;
  font-family: "SOURCEHANSANSCN-BOLD";
  font-size: 18px;
}
.home .container .main .content .pright .pDes .pCon .html .des2 {
  color: #666666;
  font-family: "SOURCEHANSANSCN-REGULAR";
  line-height: 40px;
  margin-top: 20px;
}
.home .container .main .content .pright .pDes .pCon .html:nth-child(1) {
  display: block;
}
.home .container .main .recommend {
  width: 100%;
  margin: 60px auto;
}
.home .container .main .recommend .t1 {
  text-align: center;
  color: #F67F00;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  position: relative;
  padding: 15px 0;
}
.home .container .main .recommend .t1::after {
  width: 45px;
  height: 1px;
  background: #F67F00;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .container .main .recommend .allPros {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
  margin-top: 60px;
}
.home .container .main .recommend .allPros .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home .container .main .recommend .allPros .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #F67F00;
  border: 1px solid #F67F00;
  border-radius: 50%;
  opacity: 1;
  margin: 0 15px;
  transition: all 600ms;
}
.home .container .main .recommend .allPros .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}
.home .container .main .recommend .allPros .swiper-container {
  width: 100%;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide {
  padding: 30px 0;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a {
  width: 95%;
  display: block;
  margin: 0 auto;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a .pic {
  background-color: white;
  box-shadow: 0px 6px 17px 1px rgba(49, 49, 49, 0.1);
  padding: 60px 0;
  text-align: center;
  position: relative;
  transition: all 600ms;
  width: 100%;
  height: 120px;
  overflow: hidden;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a .pic::before {
  background: linear-gradient(60deg, #feb454, #e47a05);
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 600ms;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a .pic img {
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 600ms;
  width: 80%;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a p {
  color: #333333;
  font-size: 18px;
  text-align: center;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin-top: 20px;
  position: relative;
  transition: all 600ms;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a:hover .pic::before {
  top: 0;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a:hover .pic img {
  transform: translate(-50%, -50%) scale(1.05);
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a:hover p {
  color: #F67F00;
}
.home .container .main .recommend .allPros .swiper-container .swiper-wrapper .swiper-slide a:hover p::before {
  opacity: 1;
}
.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: 75%;

  }
}
@media screen and (max-width: 1440px) {
  .home .container .main {
    width: 80%;
  }
  .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 .container .main .content .pright .pDes .pCon,
  .home .container .main .content .pright .nr .intro .item .des{
    text-align: justify;
  }
  .home .header {
    display: none;
  }
  .home .container .banner .pic img {
    height: 300px;
  }
  .home .container .main {
    width: 90%;
    margin: 40px auto;
  }
  .home .container .main .title p:nth-child(1) {
    font-size: 18px;
  }
  .home .container .main .content {
    flex-wrap: wrap;
  }
  .home .container .main .content .lNav {
    width: 100%;
    padding: 40px 0 10px;
  }
  .home .container .main .content .lNav .search {
    margin-top: 40px;
  }
  .home .container .main .content .pright {
    width: 100%;
    padding-bottom: 0px;
  }
  .home .container .main .content .pright .pDes {
    width: 90%;
    margin: 40px auto;
  }
  .home .container .main .content .pright .nr {
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .home .container .main .content .pright .nr .lpic {
    width: 100%;
  }
  .home .container .main .content .pright .nr .lpic .layer {
    width: 90%;
  }
  .home .container .main .content .pright .nr .lpic::after {
    width: 250px;
    height: 250px;
  }
  .home .container .main .content .pright .nr .intro {
    width: 100%;
  }
  .home .container .main .recommend {
    margin: 40px auto;
  }
  .home .container .main .recommend .allPros {
    padding-bottom: 30px;
    margin-top: 30px;
  }
  .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%;
  }
  .home .container .main .content .pright .pDes .pCon img {
    width: 100% !important;
    height: 100% !important;
  }
}

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