.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: 100%;
  margin: 60px auto;
  margin-bottom: 0;
}
.home .container .main .company {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .container .main .company .p1 {
  color: #f67f00;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  text-align: center;
}
.home .container .main .company .p2 {
  color: #333333;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  text-align: center;
  margin: 15px 0;
}
.home .container .main .company .line {
  width: 1px;
  height: 100px;
  background: rgba(98, 98, 98, 0.3);
  position: relative;
  overflow: hidden;
}
.home .container .main .company .line::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background: #626262;
  position: absolute;
  left: 0;
  top: 0;
  animation: down 2s infinite linear;
}
@keyframes down {
  from {
    top: 0;
  }
  to {
    top: 100%;
  }
}
.home .container .main .company .des {
  color: #333333;
  font-size: 18px;
  line-height: 47px;
  font-weight: lighter;
  width: 50%;
  margin: 40px auto;
  text-align: center;
}
.home .container .main .company .allImgs {
  width: 50%;
  margin: 40px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .container .main .company .allImgs .item {
  text-align: center;
}
.home .container .main .company .allImgs .item .pic {
  width: 85px;
  height: 85px;
  border: 1px solid #f67f00;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .container .main .company .allImgs .item .pic img {
  transition: all 600ms;
}
.home .container .main .company .allImgs .item p {
  color: #333333;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin-top: 20px;
  transition: all 600ms;
}
.home .container .main .company .allImgs .item:hover .pic img {
  transform: rotateY(360deg);
}
.home .container .main .company .allImgs .item:hover p {
  transform: translateY(20px);
}
.home .container .main .hpic {
  width: 100%;
  margin: 60px auto;
}
.home .container .main .hpic img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .container .main .history {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.home .container .main .history .bpPic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.home .container .main .history .bpPic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home .container .main .history .t1 {
  text-align: center;
}
.home .container .main .history .t1 p:nth-child(1) {
  color: #333333;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .container .main .history .t1 p:nth-child(2) {
  color: #999999;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  text-transform: uppercase;
}
.home .container .main .history .allTexts {
  width: 70%;
  margin: 120px auto;
  position: relative;
}
.home .container .main .history .allTexts .prev {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1000;
  color: #666666;
  transition: all 600ms;
}
.home .container .main .history .allTexts .prev i {
  font-size: 30px;
}
.home .container .main .history .allTexts .prev:hover {
  color: #f67f00;
}
.home .container .main .history .allTexts .next {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  cursor: pointer;
  z-index: 1000;
  color: #666666;
  transition: all 600ms;
}
.home .container .main .history .allTexts .next i {
  font-size: 30px;
}
.home .container .main .history .allTexts .next:hover {
  color: #f67f00;
}
.home .container .main .history .allTexts .swiper-container {
  width: 100%;
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide {
  padding-top: 40px;
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: all 600ms;
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide .item .lpic {
  width: 16px;
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide .item .info {
  width: calc(95% - 16px);
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide .item .info .time {
  color: #666666;
  font-size: 26px;
  font-family: "Montserrat-Regular";
  font-weight: bolder;
  transition: all 600ms;
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide .item .info .t11 {
  color: #666666;
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  margin: 5px 0 10px 0;
  transition: all 600ms;
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide .item .info .des {
  color: #999999;
  font-family: "SOURCEHANSANSCN-REGULAR";
  line-height: 25px;
  width: 100%;
  font-size: 12px;
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide-active .item {
  transform: translateY(-40px);
}
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide-active .item .info .time,
.home .container .main .history .allTexts .swiper-container .swiper-wrapper .swiper-slide-active .item .info .t11 {
  color: #f67f00;
}
.home .container .main .honor {
  width: 70%;
  margin: 30px auto;
}
.home .container .main .honor .t1 {
  text-align: center;
}
.home .container .main .honor .t1 p:nth-child(1) {
  color: #333333;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .container .main .honor .t1 p:nth-child(2) {
  color: #999999;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  text-transform: uppercase;
}
.home .container .main .honor .allImgs {
  width: 100%;
  margin: 60px auto;
  position: relative;
  padding-bottom: 80px;
}
.home .container .main .honor .allImgs .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home .container .main .honor .allImgs .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 .honor .allImgs .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}
.home .container .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic {
  overflow: hidden;
}
.home .container .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .container .main .honor .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.home .container .main .group {
  width: 70%;
  padding: 80px 15%;
  background: #f6f6f6;
}
.home .container .main .group .content {
  width: 100%;
}
.home .container .main .group .content .sw1 {
  width: 100%;
  position: relative;
}
.home .container .main .group .content .sw1 .prev {
  width: 45px;
  height: 45px;
  background: #d4d4d4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: calc(50% - 45px);
  z-index: 1000;
  cursor: pointer;
  transition: all 600ms;
}
.home .container .main .group .content .sw1 .prev i {
  font-size: 20px;
  color: white;
}
.home .container .main .group .content .sw1 .prev:hover {
  background-color: #f67f00;
}
.home .container .main .group .content .sw1 .next {
  width: 45px;
  height: 45px;
  background: #d4d4d4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  position: absolute;
  left: calc(50%);
  bottom: 0;
  z-index: 1000;
  cursor: pointer;
  transition: all 600ms;
}
.home .container .main .group .content .sw1 .next i {
  font-size: 20px;
  color: white;
}
.home .container .main .group .content .sw1 .next:hover {
  background-color: #f67f00;
}
.home .container .main .group .content .sw1 .swiper-container {
  width: 100%;
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: row;
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 50%;
  overflow: hidden;
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 4s;
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .text {
  width: 40%;
  padding: 0 5%;
  background-color: white;
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .text .t1 {
  color: #333333;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  margin: 60px 0 60px 0;
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .text .t2 {
  color: #333333;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
.home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .text .des {
  color: #333333;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 30px;
  line-height: 28px;
}
.home .container .main .group .content .sw2 {
  width: 100%;
  margin: 20px auto;
}
.home .container .main .group .content .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic {
  border: 3px solid transparent;
  transition: all 600ms;
}
.home .container .main .group .content .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .container .main .group .content .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic:hover {
  border-color: #f67f00;
}
.home .container .main .group .content .sw2 .swiper-container .swiper-wrapper .swiper-slide-active .pic {
  border-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 .company .des {
    width: 70%;
  }
  .home .container .main .company .allImgs {
    width: 70%;
  }
  .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 {
    margin: 60px auto;
  }
  .home .container .main .company .p1 {
    font-size: 18px;
  }
  .home .container .main .company .p2 {
    font-size: 16px;
    width: 90%;
    margin: 15px auto;
  }
  .home .container .main .company .des {
    width: 90%;
    margin: 20px auto;
    font-size: 15px;
    line-height: 30px;
  }
  .home .container .main .company .allImgs {
    width: 90%;
    margin: 20px auto;
    flex-wrap: wrap;
  }
  .home .container .main .company .allImgs .item {
    width: 48%;
    text-align: center;
    margin-bottom: 20px;
  }
  .home .container .main .company .allImgs .item:hover p {
    transform: translateY(0);
  }
  .home .container .main .company .allImgs .item .pic {
    margin: 0 auto;
  }
  .home .container .main .hpic {
    margin: 30px auto;
  }
  .home .container .main .history .allTexts {
    width: 90%;
    margin: 50px auto;
  }
  .home .container .main .group {
    width: 90%;
    padding: 40px 5%;
  }
  .home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
  .home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic {
    width: 100%;
  }
  .home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .text {
    width: 90%;
    padding-bottom: 60px;
  }
  .home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .text .t1 {
    margin: 20px 0;
  }
  .home .container .main .group .content .sw1 .swiper-container .swiper-wrapper .swiper-slide .text .des {
    margin-top: 20px;
  }
  .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%;
  }
}
@media screen and (max-width: 768px) {
  .home .container .main .company .des iframe {
    width: 100% !important;
  }
  .home .container .main .company .des iframe #youku-playerBox {
    width: 100% !important;
  }
  .home .container .main .company .des iframe #youku-playerBox .ykplayer .x-video-poster img {
    width: unset!important;
  }
}
/*# sourceMappingURL=about.css.map */
<!--ºÄÊ±1775124480.5378Ãë-->