.container {
  max-width: 1760px;
  padding: 0;
}
body {
  background: #000;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
/*@font-face {*/
/*  font-family: SourceHanSerifSC-Bold;*/
/*  src: url('../font/SourceHanSerifSC-Bold.otf');*/
/*}*/
/*@font-face {*/
/*  font-family: SourceHanSerifSC-Medium;*/
/*  src: url('../font/SourceHanSerifSC-Medium.otf');*/
/*}*/
/*@font-face {*/
/*  font-family: SourceHanSerifSC-Light;*/
/*  src: url('../font/SourceHanSerifSC-Light.otf');*/
/*}*/
/*@font-face {*/
/*  font-family: SourceHanSerifSC-Heavy;*/
/*  src: url('../font/SourceHanSerifSC-Heavy.otf');*/
/*}*/
/*@font-face {*/
/*  font-family: SourceHanSerifSC-Regular;*/
/*  src: url('../font/SourceHanSerifSC-Regular.otf');*/
/*}*/
.cross-bar-glitch{
    display: none;
}
.active .cross-bar-glitch {
  position: relative;
  display: block;
}
.active .cross-bar-glitch .bars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.active .cross-bar-glitch .bars .bar {
  width: 100%;
  flex: 1;
  background: currentColor;
  border-radius: 50px;
  animation: 0.6s cubic-bezier(0.4, 0.2, 0.175, 1) forwards;
}
.active .cross-bar-glitch .bars .bar:nth-child(odd) {
  transform: translateX(100%);
  animation-name: slide-left;
}
.active .cross-bar-glitch .bars .bar:nth-child(even) {
  transform: translateX(-100%);
  animation-name: slide-right;
}
.active .cross-bar-glitch .bars .bar:nth-child(1) {
  animation-delay: 0.3s;
}
.active .cross-bar-glitch .bars .bar:nth-child(2) {
  animation-delay: 0.2s;
}
.active .cross-bar-glitch .bars .bar:nth-child(3) {
  animation-delay: 0.5s;
}
.active .cross-bar-glitch .bars .bar:nth-child(4) {
  animation-delay: 0.3s;
}
.active .cross-bar-glitch .bars .bar:nth-child(5) {
  animation-delay: 0.4s;
}
.active .cross-bar-glitch .glitch {
  opacity: 0;
  animation: reveal forwards .5s;
  animation-delay: 0.6s;
}
.active .cross-bar-glitch .glitch span:not(:last-child) {
  --ratio: calc(100% / var(--slice-count));
  --top: calc(var(--ratio) * (var(--i) - 1));
  --bottom: calc(var(--ratio) * (var(--slice-count) - var(--i)));
  position: absolute;
  white-space: nowrap;
  clip-path: inset(var(--top) 0 var(--bottom) 0);
  animation-duration: 0.5s;
}
.active .cross-bar-glitch .glitch span:nth-child(odd) {
  animation-name: slide-from-left;
}
.active .cross-bar-glitch .glitch span:nth-child(even) {
  animation-name: slide-from-right;
}
.active .cross-bar-glitch .glitch span:last-child {
  opacity: 0;
  animation: reveal steps(1) forwards;
  animation-delay: 1.2s;
}

@keyframes slide-from-left {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-from-right {
  from {
    transform: translateX(20%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes reveal {
  to {
    opacity: 1;
  }
}
@keyframes slide-left {
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-right {
  to {
    transform: translateX(100%);
  }
}
h1 {
  font-size: 3rem;
  color: white;
}


.swiper {
  overflow: hidden;
}
.head {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}
.head .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
}
.head-logo{
    cursor: pointer;
}
.head-rt {
  display: flex;
  transition: all 0.5s;
  align-items: center;
  opacity: 1;
}
.head-rt .head-nav {
  display: flex;
  margin-right: 57px;
}
.head-rt .head-nav li {
  margin-left: 55px;
}
.head-rt .head-nav li a {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
  position: relative;
}
.head-rt .head-nav li a::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  content: '';
  width: 0%;
  transition: all 0.5s;
  height: 1px;
  opacity: 0;
  background: #fff;
}
.head-rt .head-nav li a:hover::after {
  width: 100%;
  opacity: 1;
}
.head-rt .head-nav li:nth-child(1) {
  margin-left: 0;
}
.head-rt .head-zd {
  cursor: pointer;
}
.xs {
  opacity: 0;
  visibility: visible;
}
.nav-right-con {
  position: fixed;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  top: 0;
  display: flex;
  justify-content: flex-end;
  transition: all 0.5s;
}
.nav-right {
  height: 100%;
  width: 670px;
  background: url(../images/cb-bg.png) no-repeat;
  background-size: cover;
  padding: 34px 54px;
  transform: scale(0.4, 0.4);
  transition: all 0.5s;
  right: -100%;
}
.nav-right .nav-right-tp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 42px;
}
.nav-right .nav-right-tp p:nth-child(2) {
  cursor: pointer;
  transform: translateX(60px);
  opacity: 0;
  transition: all 1s;
}
.nav-right .nav-right-tp p:nth-child(1) {
  transform: translateX(-60px);
  opacity: 0;
  transition: all 1s;
  cursor: pointer;
}
.nav-right .nav-right-bt div {
  border-bottom: 1px solid rgba(170, 170, 170, 0.4);
  padding-bottom: 25px;
  padding-top: 31px;
  opacity: 0;
  transform: translateY(20%);
  transition: all 1s;
}
.nav-right-bt div:nth-child(1),.nav-right-bt div:nth-child(2){
    display: none;
}
.nav-right .nav-right-bt div p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;
}
.nav-right .nav-right-bt div ul {
  display: flex;
  margin-top: 7px;
}
.nav-right .nav-right-bt div ul li {
  margin-right: 38px;
}
.nav-right .nav-right-bt div ul li a {
  font-size: 16px;
  transition: all 0.5s;
  letter-spacing: 1px;
  color: #ffffff;
}
.nav-right .nav-right-bt div ul li a:hover {
  color: #cca072;
}
.nav-right .nav-right-bt div ul li:last-child {
  margin-right: 0;
}
.on {
  opacity: 1;
  visibility: visible;
}
.on .nav-right {
  transform: scale(1, 1);
  right: 0;
}
.on .nav-right-tp p {
  transform: translateX(0) !important;
  opacity: 1 !important;
  transition-delay: 0.2s !important;
}
.on .nav-right-bt div {
  transform: translateY(0);
  transition-delay: 0.4s !important;
  opacity: 1 !important;
}
.home .home-con {
  height: 100%;
  position: relative;
  /*Animation*/
}
.home .home-con .home-tp{
    height: 100%;
}
.home .home-con .home-tp .home-bg {
  /*background: #07013d;*/
  height: 100%;
  position: relative;
    width: 100%;
   
}
.home .home-con .home-tp .home-bg video{
        width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    object-fit: cover;
}
.active .home-con .home-tp .home-bg{
     /*animation: bjfd 6s linear infinite;*/
     /*animation-delay: .5s;*/
}
@keyframes bjfd {
    0%{
        transform: scale(1);
    }
    25%{
        transform: scale(1.025);
    }
    50%{
        transform: scale(1.05);
    }
        75%{
        transform: scale(1.025);
    }
    100%{
        transform: scale(1);
    }
}
.home .home-con .home-tp h1{
    /*font-family: SourceHanSerifSC-Heavy;*/
	font-size: 140px;
	letter-spacing: 6px;
	color: #ffffff;
	font-weight: bold;
	position: absolute;
	left: 50%;
	transform: translate(-50%,-50%);
	top:43%;
	z-index: 8;
}

.home .home-con .home-tp img {
  width: 100%;
}
.home .home-con .loading {
  width: 100%;
  margin: 0 auto;
  top: 0;
  padding: 0;
  position: absolute;
}
.home .home-con .loading svg {
  width: 100%;
  height: 100%;
}
.home .home-con .loading #pulsar {
  stroke-dasharray: 281;
  -webkit-animation: dash 2.5s infinite linear forwards;
  animation: dash 2.5s infinite linear forwards;
}
@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 814;
  }
  to {
    stroke-dashoffset: -814;
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 814;
  }
  to {
    stroke-dashoffset: -814;
  }
}
.about {
  position: relative;
}
.about .about-con {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
.about .about-con .about-con-lf {
  height: 100%;
  width: 50%;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-10%);
  transition: all 0.5s;
}
.about .about-con .about-con-lf div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 87px;
  padding-left: 80px;
  justify-content: flex-end;
}
.about .about-con .about-con-lf div h2 {
  display: flex;
  margin-bottom: 30px;
}
.about .about-con .about-con-lf div h2 p span {
  position: relative;
  font-family: SourceHanSerifSC-Bold;
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 0;
  top: -20px;
  opacity: 0;
}
.about .about-con .about-con-lf div h2 p:nth-child(2) {
  margin-left: 13px;
}
.about .about-con .about-con-lf div h2 p:nth-child(2) span {
  color: #cca072;
  letter-spacing: -5px;
}
.about .about-con .about-con-lf div h5 {
  display: flex;
  align-items: center;
}
.about .about-con .about-con-lf div h5 p {
  font-family: SourceHanSerifSC-Medium;
  font-size: 14px;
  letter-spacing: 0px;
  color: #ffffff;
}
.about .about-con .about-con-lf div h5 p:nth-child(1) {
  width: 78px;
  height: 1px;
  background-color: #ffffff;
  margin-right: 14px;
}
.about .about-con .about-con-rt {
  width: 44.2%;
  padding-right: 100px;
  padding-top: 193px;
}
.about .about-con .about-con-rt .about-con-rt-con h3 {
  font-family: SourceHanSerifSC-Bold;
  font-size: 30px;
  color: #ffffff;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s;
}
.about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont {
  display: flex;
  justify-content: space-between;
  margin-top: 73px;
}
.about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  text-align: justify;
  font-family: SourceHanSerifSC-Light;
  width: 48%;
  transition: all 0.5s;
}
.about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div em {
  font-size: 26px;
  letter-spacing: 1px;
  color: #c4996e;
  font-family: SourceHanSerifSC-Medium;
}
.about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div:nth-child(1) {
  transform: translateX(-30%);
  opacity: 0;
}
.about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div:nth-child(2) {
  position: relative;
  top: 5px;
  transform: translateX(30%);
  opacity: 0;
}
.about .about-con .about-con-rt .about-con-rt-con a {
  width: 120px;
  height: 40px;
  background-color: #cca072;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: SourceHanSerifSC-Bold;
  font-size: 14px;
  color: #ffffff;
  position: relative;
  margin-top: 110px;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
}
.about .about-con .about-con-rt .about-con-rt-con a p {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  text-align: center;
  transition: all 0.5s;
  top: 50%;
}
.about .about-con .about-con-rt .about-con-rt-con a p:nth-child(1) {
  top: -100%;
}
.about .about-con .about-con-rt .about-con-rt-con a:hover {
  box-shadow: 1px 1px 10px #cca072;
  transition-delay: 0s;
}
.about .about-con .about-con-rt .about-con-rt-con a:hover p:nth-child(1) {
  top: 50%;
}
.about .about-con .about-con-rt .about-con-rt-con a:hover p:nth-child(2) {
  top: 150%;
}
.gundong {
  width: fit-content;
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
  z-index: 4;
}
.gundong p:nth-child(1) {
  font-family: SourceHanSerifSC-SemiBold;
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
  transform: translateY(100%);
  transition: all 0.3s;
  opacity: 0;
}
.gundong p:nth-child(2) {
  width: 1px;
  height: 46px;
  background-color: #ffffff;
  transform: translateY(-100%);
  transition: all 0.3s;
  opacity: 0;
}
.active .about-con .about-con-lf div h2 p span {
  animation: landIn 0.4s ease-out both;
}
@keyframes landIn {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.active .slide-bar {
  position: relative;
  color: transparent;
  animation: fill-text-white 1s 1.6s forwards;
}
.active .slide-bar::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #35b9f1;
  transform: scaleX(0);
  transform-origin: left;
  animation: slide-in-out 1.7s cubic-bezier(0.75, 0, 0, 1) forwards;
}
@keyframes slide-in-out {
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes fill-text-white {
  to {
    color: white;
  }
}
.active .subtitle {
  width: fit-content;
}
.active .subtitle {
  font-family: Lato, sans-serif;
  text-transform: uppercase;
  animation-delay: 1s;
}
.active .subtitle::before {
  background: #cca072;
  animation-delay: 1s;
}
.active .about-con .about-con-rt .about-con-rt-con h3 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.active .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div {
  transform: translateX(0) !important;
  opacity: 1 !important;
  transition-delay: 1s;
}
.active .gundong {
  animation: float 2s infinite;
}
@keyframes float {
  0% {
    bottom: 52px;
  }
  25% {
    bottom: 55px;
  }
  50% {
    bottom: 58px;
  }
  75% {
    bottom: 55px;
  }
  100% {
    bottom: 52px;
  }
}
.active .gundong p:nth-child(1),
.active .gundong p:nth-child(2),
.active .about-con .about-con-rt .about-con-rt-con a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.5s;
}
.active .about-con .about-con-lf {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.team {
  background: url(../images/team-bg.jpg) no-repeat;
  background-position: -54px 59%;
  animation: fd 6s linear infinite;
}
.team .team-con {
  max-width: 1254px;
  margin: 0 auto;
  position: relative;
}
.team .team-con h2 {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 113px;
  letter-spacing: -1px;
  color: #ffffff;
  position: absolute;
  top: 47%;
  left: 48%;
  transform: translate(-50%, -50%);
}
.team .team-con .team-more {
  width: fit-content;
  position: absolute;
  top: 80%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 4;
  transition: all 0.5s;
  opacity: 0;
}
.team .team-con .team-more p {
  font-family: SourceHanSerifSC-Bold;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
  transition: all 0.5s;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 9px;
}
.team .team-con .team-more a {
  display: flex;
  align-items: center;
  font-family: SourceHanSerifSC-Bold;
  font-size: 14px;
  transition: all 0.5s;
  margin-top: 6px;
  color: #ffffff;
}
.team .team-con .team-more a img {
  margin-left: 97px;
}
.team .team-con .team-con-tp {
  display: flex;
  justify-content: space-between;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  left: 5%;
}
.team .team-con .team-con-tp p:nth-child(1) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 266px;
  height: 262px;
  transform: translateY(-30%);
  opacity: 0;
  transition: all 0.5s;
}
.team .team-con .team-con-tp p:nth-child(2) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 214px;
  height: 213px;
  position: relative;
  top: 128px;
  transform: translateY(30%);
  opacity: 0;
  transition: all 0.5s;
}
.team .team-con .team-con-bt {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 107px;
  position: relative;
  z-index: 3;
}
.team .team-con .team-con-bt p:nth-child(1) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 360px;
  height: 355px;
  transform: translateY(30%);
  opacity: 0;
  transition: all 0.5s;
}
.team .team-con .team-con-bt p:nth-child(2) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 179px;
  height: 166px;
  position: relative;
  top: 136px;
  transform: translateY(-30%);
  opacity: 0;
  transition: all 0.5s;
}
@keyframes fd {
  0% {
    background-size: 100% 100%;
  }
  50% {
    background-size: 103% 103%;
  }
  100% {
    background-size: 100% 100%;
  }
}
.active .team-con .team-con-tp p:nth-child(1),
.active .team-con .team-con-tp p:nth-child(2),
.active .team-con .team-con-bt p:nth-child(1),
.active .team-con .team-con-bt p:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
}
.active .team-con .team-con-tp p:nth-child(1),
.active .team-con .team-con-bt p:nth-child(2) {
  transition-delay: 0.5s;
}
.active .team-con .team-con-tp p:nth-child(2),
.active .team-con .team-con-bt p:nth-child(1) {
  transition-delay: 1s;
}
.active .team-con .team-con-bt p:hover,
.active .team-con .team-con-tp p:hover {
  transition-delay: 0s;
}
.active .team-con .team-more {
  top: 71%;
  opacity: 1;
  transition-delay: 0.8s;
}
.news {
  background: url(../images/news-bg.jpg) no-repeat;
  background-position: 13px -8%;
  animation: fd 6s linear infinite;
}
.news .fp-tableCell {
  vertical-align: bottom;
}
.news .news-con {
  max-width: 1683px;
  margin: 0 auto;
  padding-bottom: 123px;
  padding-top: 85px;
}
.news .news-con .news-tp {
  display: flex;
  justify-content: space-between;
}
.news .news-con .news-tp .news-tp-lf h2 {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 65px;
  letter-spacing: -8px;
  color: #ffffff;
}
.news .news-con .news-tp .news-tp-lf p {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.5;
  margin-top: 43px;
}
.news .news-con .news-tp .news-tp-rt {
  position: relative;
  padding-right: 97px;
  padding-top: 47px;
  top: 19px;
}
.news .news-con .news-tp .news-tp-rt h4 {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 29px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}
.news .news-con .news-tp .news-tp-rt p {
  font-family: SourceHanSerifSC-Regular;
  font-size: 13px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 3px;
  z-index: 2;
  position: relative;
}
.news .news-con .news-tp .news-tp-rt img {
  position: absolute;
  right: 30px;
  top: 0;
  transition: all 0.5s;
  animation: zq 10s linear infinite;
  width: 281px;
}
@keyframes zq {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.news .news-con .news-bt {
  display: flex;
  margin-left: -13.5px;
  margin-right: -13.5px;
  margin-top: 207px;
}
.news .news-con .news-bt .news-items {
  width: 20%;
  padding: 0 13.5px;
  transform: translateY(0px);
  transition: all 0.5s;
}
.news .news-con .news-bt .news-items .news-items-con {
  background: rgba(255, 255, 255, 0.2);
  padding: 28px 26px 22px 26px;
  transition: all 0.5s;
}
.news .news-con .news-bt .news-items .news-items-con p {
  display: flex;
  transition: all 0.5s;
  font-family: SourceHanSerifSC-Regular;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.8;
  align-items: center;
}
.news .news-con .news-bt .news-items .news-items-con p img {
  margin-right: 8px;
}
.news .news-con .news-bt .news-items .news-items-con a:nth-child(2) {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 18px;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 1;
  -moz-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
  transition: all 0.5s;
  /*margin-top: -5px;*/
}
.news .news-con .news-bt .news-items .news-items-con a:nth-child(3) {
  font-family: SourceHanSerifSC-Regular;
  font-size: 14px;
  line-height: 26px;
  color: #ffffff;
  opacity: 0.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 3;
  -moz-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
  margin-top: 29px;
}
.news .news-con .news-bt .news-items .news-items-con a:nth-child(4) {
  margin-top: 21px;
  display: flex;
}
.news .news-con .news-bt .news-items .news-items-con a:nth-child(4) img:nth-child(2) {
  display: none;
}
.news .news-con .news-bt .news-items .news-items-con:hover p,
.news .news-con .news-bt .news-items .news-items-con:hover a:nth-child(2) {
  color: #cca072 !important;
  opacity: 1 !important;
}
.news .news-con .news-bt .news-items .news-items-con:hover a:nth-child(4) img:nth-child(1) {
  display: none;
}
.news .news-con .news-bt .news-items .news-items-con:hover a:nth-child(4) img:nth-child(2) {
  display: inline;
}
.active .news-con .news-tp .news-tp-lf h2 span {
  animation: landIn 0.4s ease-out both;
  position: relative;
}
@keyframes landIn {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.active .news-con .news-bt .news-items {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.footer {
  height: 106px !important;
}
.footer .fp-tableCell {
  display: block !important;
}
.footer .foot-con {
  border-top: 1px solid rgba(137, 137, 137, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 106px !important;
}
.footer .foot-con .foot-lx {
  display: flex;
}
.footer .foot-con .foot-lx li {
  margin-right: 25px;
}
.footer .foot-con .foot-lx li:last-child {
  margin-right: 0;
}
.footer .foot-con p {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.5;
}
.f-ban {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 500px;
  margin-top: 87px;
}
.fl-con {
  max-width: 1553px;
  background-color: #ffffff;
  box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.1);
  border-radius: 19px;
  overflow: hidden;
  margin: 80px auto;
  padding: 72px 80px 80px 80px;
}
.fl-con h3 {
  font-size: 26px;
  letter-spacing: 1px;
  color: #b38745;
  font-weight: bold;
}
.fl-con .fl-cont {
  margin-top: 37px;
}
.fl-con .fl-cont strong {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  letter-spacing: 1px;
  color: #333333;
  padding-left: 24px;
}
.fl-con .fl-cont strong::before {
  position: absolute;
  left: 0;
  top: -7px;
  content: '*';
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #b38745;
}
.fl-con .fl-cont div {
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 1px;
  color: #333333;
  padding-left: 24px;
  margin-bottom: 30px;
}
.fl-con .fl-cont div:last-child {
  margin-bottom: 0;
}
.jjts {
  background: url(../images/jjts-bg.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}
.jjts .jjts-con {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.jjts .jjts-con .jjts-con-lf {
  width: 25%;
}
.jjts .jjts-con .jjts-con-cen {
  position: relative;
  width: 557px;
  height: 557px;
  display: none;
  opacity: 0;
  transition: all 0.8s;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js {
  background-color: rgba(222, 222, 222, 0.32);
  border-radius: 18px;
  overflow: hidden;
  z-index: 7;
  position: absolute;
  min-width: 446px;
  padding-top: 46px;
  padding-bottom: 58px;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js h4 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js h4 span {
  font-size: 14px;
  font-weight: inherit;
  color: rgba(255, 255, 255, 0.1);
  margin-left: 7px;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js ul {
  margin-top: 33px;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js ul li {
  position: relative;
  padding-left: 22px;
  text-align: justify;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js ul li a {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.8;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js ul li::before {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 13px;
  height: 13px;
  background: url(../images/p-y.png) no-repeat;
  background-size: 100% 100%;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq1 {
  position: absolute;
  width: 328px;
  height: 399px;
  transform: translate(-34px, 3px) rotateZ(0deg);
  z-index: 5;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq1 .jjts-con-js {
  left: -153%;
  top: 18%;
}

.jjts .jjts-con .jjts-con-cen .jjts-con-yq .jjts-con-js div{
    width: 320px !important;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq1 p {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  top: 41%;
  transform: translate(40%, -50%) rotateZ(-63deg);
  cursor: pointer;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq1 img {
  cursor: pointer;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq1 img:nth-child(2) {
  display: none;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq1::before {
  position: absolute;
  left: 2%;
  top: 34%;
  transform: translateY(-50%);
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/jx1.png);
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq2 {
  position: absolute;
  width: 258px;
  height: 451px;
  z-index: 5;
  transform: translate(264px, 7px) rotateZ(0deg);
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq2 p {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  left: 58%;
  /* z-index: 29; */
  top: 41%;
  transform: rotateZ(67deg);
  cursor: pointer;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq2 img {
  cursor: pointer;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq2 img:nth-child(2) {
  display: none;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq2 .jjts-con-js {
  right: -94%;
  top: -27%;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq2::before {
  position: absolute;
  right: -7%;
  top: 41%;
  transform: translateY(-50%);
  content: '';
  width: 16px;
  height: 16px;
  background: url(../images/jx2.png);
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq3 {
  position: absolute;
  width: 494px;
  height: 203px;
  z-index: 5;
  transform: translate(-7px, 2px);
  bottom: 0;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq3 img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq3 img:nth-child(2) {
  display: none;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq3 p {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  bottom: 17%;
  left: 33%;
  transform: rotateZ(11deg);
  cursor: pointer;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq3 .jjts-con-js {
  left: -105%;
  bottom: -45%;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq3::before {
  position: absolute;
  left: 37%;
  bottom: -18%;
  transform: translateY(-50%);
  content: '';
  width: 21px;
  height: 21px;
  background: url(../images/jx3.png);
}
.jjts .jjts-con .jjts-con-cen .bcolor img:nth-child(2) {
  display: inline;
}
.jjts .jjts-con .jjts-con-cen .bcolor img:nth-child(1) {
  display: none;
}
.jjts .jjts-con .jjts-con-cen .bcolor .jjts-con-js {
  opacity: 1;
  visibility: visible;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq1.bcolor::before {
  background: url(../images/jx11.png);
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq2.bcolor::before {
  background: url(../images/jx22.png);
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq3.bcolor::before {
  background: url(../images/jx33.png);
}
.jjts .jjts-con .jjts-con-wq {
  position: absolute;
  left: 44%;
  top: 50.1%;
  transform: translate(-50%, -50%);
  width: 603px;
  height: 603px;
}
.jjts .jjts-con .jjts-con-wq img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.jjts .jjts-con .jjts-con-wq img:nth-child(2) {
  animation: szq 6s linear infinite;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.5s;
}
@keyframes szq {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.jjts .jjts-con .jjts-con-rt {
  width: 21%;
}
.jjts .jjts-con .jjts-con-rt h2 {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 52px;
  color: #ffffff;
  letter-spacing: -6px;
  white-space: nowrap;
  position: relative;
  padding-bottom: 42px;
  text-align: right;
}
.jjts .jjts-con .jjts-con-rt h2::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  width: 66px;
  height: 2px;
  border: solid 1px #ffffff;
}
.jjts .jjts-con .jjts-con-rt div {
  font-family: SourceHanSerifSC-Regular;
  font-size: 14px;
  line-height: 34px;
  color: #b2b2b2;
  text-align: right;
  width: 92%;
  margin: 0 auto;
  margin-top: 45px;
  margin-right: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
}
.active .jjts-con .jjts-con-cen {
  animation: xuanzhuan 0.8s ease-out both;
  animation-delay: 0.7s;
  display: block;
}
@keyframes xuanzhuan {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateZ(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateZ(0);
  }
}
.active .jjts-con .jjts-con-cen .jjts-con-yq {
  opacity: 1;
  transition-delay: 0.5s;
}
.active .jjts-con .jjts-con-wq img:nth-child(2) {
  opacity: 1;
  transform: scale(1);
}
.active .jjts-con .jjts-con-rt h2 span {
  animation: landIn 0.4s ease-out both;
  position: relative;
}
@keyframes landIn {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.active .jjts-con .jjts-con-rt div {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.sectors {
  position: relative;
  overflow: hidden;
}
.sectors .sectors-con {
  max-width: 1678px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}
.sectors .sectors-con .sectors-wz {
  position: absolute;
  left: 0;
  top: 7px;
  width: 29%;
}
.sectors .sectors-con .sectors-wz h2 {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 52px;
  color: #ffffff;
  position: relative;
  letter-spacing: -6px;
  white-space: nowrap;
  padding-bottom: 42px;
}
.sectors .sectors-con .sectors-wz h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 66px;
  height: 2px;
  border: solid 1px #ffffff;
}
.sectors .sectors-con .sectors-wz div {
  font-family: SourceHanSerifSC-Regular;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  opacity: 0.5;
  text-align: justify;
  width: 55%;
  margin-top: 45px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}
.sectors .sectors-con .sectors-yq {
  position: relative;
  width: 568px;
  height: 579px;
}
.sectors .sectors-con .sectors-yq .sectors-yq2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.sectors .sectors-con .sectors-yq .sectors-yq2 img {
  animation: szq 6s linear infinite;
}
.sectors .sectors-con .sectors-yq .sectors-yq2:nth-child(2n) img {
  animation: szq1 6s linear infinite;
}
.sectors .sectors-con .sectors-yq .sectors-yq2:nth-child(5) img {
  animation: inherit;
}
@keyframes szq {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes szq1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.sectors .sectors-con .sectors-yq .sectors-cont {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 6;
  opacity: 0;
  transform: scale(0) rotateZ(-90deg);
  transition: all 1s;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf {
  width: 44%;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items {
  position: relative;
  margin-bottom: 118px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items img:nth-child(1) {
  cursor: pointer;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items img:nth-child(2) {
  display: none;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items div {
  position: absolute;
  font-size: 18px;
  letter-spacing: 1px;
  color: #ffffff;
  background: #1a1a1a;
  top: 50%;
  transform: translateY(-50%);
  width: 231px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 100%;
  transition: all 0.5s;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items div::after {
  position: absolute;
  left: 100%;
  top: 26%;
  content: '';
  width: 20px;
  height: 21px;
  background: url(../images/sjx.png) no-repeat;
  background-size: 100% 100%;
  transform: rotateZ(180deg) translateY(-50%);
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items:last-child {
  margin-bottom: 0;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(1) {
  text-align: right;
  top: -6px;
  left: -71px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(1) div {
  left: -47%;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(2) {
  top: -15px;
  left: -46px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(2) div {
  left: -108%;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(3) {
  top: 35px;
  left: 81px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(3) div {
  left: -108%;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items div {
  opacity: 0;
  transform: translateY(-50%) translateX(-30px);
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:hover div {
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items:hover img:nth-child(1) {
  display: none;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items{
    cursor: pointer;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items:hover img:nth-child(2) {
  display: inline;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items div::after {
  top: 50%;
  transform: rotateZ(0deg) translateY(-50%);
  left: -20px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items div {
  opacity: 0;
  transform: translateY(-50%) translateX(30px);
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:hover div {
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(1) {
  text-align: right;
  top: 2px;
  left: -71px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(1) div {
  left: 116%;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) {
  top: 0px;
  left: 194px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) div {
  left: 56%;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) {
  top: 24px;
  left: 84px;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) div {
  left: 56%;
}
.sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items div {
  left: 100%;
  right: inherit;
}
.sectors::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: url(../images/s-bg.png) no-repeat center center;
  background-size: 2600px auto;
  animation: hmp5Bg 20s linear infinite;
  width: 2600px;
  height: 1000px;
  left: 45%;
  top: 38%;
  margin-left: -1300px;
  margin-top: -500px;
}
@keyframes hmp5Bg {
  0% {
    opacity: 0.8;
    transform: scale(0.72) rotate(0deg) skew(0deg, 0deg);
  }
  50% {
    opacity: 1;
    transform: scale(0.85) rotate(45deg) skew(22deg, -36deg);
  }
  100% {
    opacity: 0.8;
    transform: scale(0.72) rotate(0deg) skew(0deg, 0deg);
  }
}
.active .sectors-con .sectors-wz h2 span {
  animation: landIn 0.4s ease-out both;
  position: relative;
}
@keyframes landIn {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.active .sectors-con .sectors-wz div {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.active .sectors-con .sectors-yq .sectors-cont {
  opacity: 1;
  transform: scale(1) rotateZ(0);
  transition-delay: 1s;
}
.about-team {
  position: relative;
  overflow: hidden;
}
.about-team .about-team-con {
  max-width: 1678px;
  margin: 0 auto;
}
.about-team .about-team-con .about-team-tp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.about-team .about-team-con .about-team-tp .about-team-tp-lf {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 30px;
  line-height: 48px;
  color: #ffffff;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s;
}
.about-team .about-team-con .about-team-tp .about-team-tp-cen {
  font-family: SourceHanSerifSC-Regular;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  opacity: 0.5;
  width: 49%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}
.about-team .about-team-con .about-team-tp .about-team-tp-rt {
  display: flex;
  justify-content: space-between;
  width: 13%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s;
}
.about-team .about-team-con .about-team-tp .about-team-tp-rt .team-prev {
  position: relative;
  top: 0;
  left: 0;
  width: 48%;
  height: 36px;
  background: url(../images/tlf.png) no-repeat;
  background-size: 100% 100%;
}
.about-team .about-team-con .about-team-tp .about-team-tp-rt .team-next {
  position: relative;
  top: 0;
  right: 0;
  width: 48%;
  height: 36px;
  background: url(../images/trt.png) no-repeat;
  background-size: 100% 100%;
}
.about-team .about-team-con .about-team-tp .about-team-tp-rt .team-prev:after,
.about-team .about-team-con .about-team-tp .about-team-tp-rt .team-next:after {
  display: none;
}
.about-team .about-team-con .about-team-bt {
  margin-top: 133px;
}
.about-team .about-team-con .about-team-bt .team-swiper {
  padding-top: 7px;
}
.about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide {
  transition: all 0.5s;
}
.about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con {
  background: rgba(255, 255, 255, 0.2);
}
.about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(1) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 270px;
  display: block;
}
.about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(2) {
  display: block;
  padding: 12px 30px 16px 30px;
}
.about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(2) p:nth-child(1) {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 18px;
  color: #cca072;
}
.about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(2) p:nth-child(2) {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 14px;
  letter-spacing: 1px;
  color: #c7c7c7;
}
.about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide:hover {
  transform: translateY(-7px);
}
.about-team::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: url(../images/team-bg.png) no-repeat center center;
  background-size: 1920px auto;
  animation: hmp5Bg 20s linear infinite;
  width: 1920px;
  height: 1000px;
  left: 0%;
  top: 0%;
}
@keyframes hmp5Bg {
  0% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg) skew(0deg, 0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(33deg) skew(22deg, -20deg);
  }
  100% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg) skew(0deg, 0deg);
  }
}
.active .about-team-con .about-team-tp .about-team-tp-lf,
.active .about-team-con .about-team-tp .about-team-tp-rt {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
.active .about-team-con .about-team-tp .about-team-tp-cen {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}
.active .footer-tp .footer-tp-con .footer-tp-lf,
.active .footer-tp .footer-tp-con .footer-tp-rt {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.5s;
}
.footer-tp {
  height: 676px;
  background: url(../images/foot-tp-bg.jpg) no-repeat;
  background-size: cover;
}
.footer-tp .footer-tp-con {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 167px;
}
.footer-tp .footer-tp-con .footer-tp-lf {
  opacity: 0;
  transform: translateX(-70px);
  transition: all 0.5s;
}
.footer-tp .footer-tp-con .footer-tp-lf h3 {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 42px;
  color: #ffffff;
}
.footer-tp .footer-tp-con .footer-tp-lf h3 span {
  position: relative;
}
.footer-tp .footer-tp-con .footer-tp-lf ul {
  margin-top: 86px;
}
.footer-tp .footer-tp-con .footer-tp-lf ul li{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.footer-tp .footer-tp-con .footer-tp-lf ul li:last-child{
    margin-bottom: 0;
}
.footer-tp .footer-tp-con .footer-tp-lf ul li:nth-child(1){
    align-items: flex-start;
}
.footer-tp .footer-tp-con .footer-tp-lf ul li p{
  font-family: SourceHanSerifSC-Regular;
  font-size: 18px;
  /*line-height: 51px;*/
  color: #ffffff;
  opacity: 1;
}
.footer-tp .footer-tp-con .footer-tp-lf ul li p{
    line-height: 34px;
}
.footer-tp .footer-tp-con .footer-tp-lf ul li p:nth-child(1){
    position: relative;
    top: -1px;
}
.footer-tp .footer-tp-con .footer-tp-rt {
  width: 38.3%;
  opacity: 0;
  transform: translateX(70px);
  transition: all 0.5s;
}
.footer-tp .footer-tp-con .footer-tp-rt h3 {
  font-family: SourceHanSerifSC-Regular;
  font-size: 28px;
  color: #ffffff;
}
.footer-tp .footer-tp-con .footer-tp-rt form {
  margin-top: 54px;
}
.footer-tp .footer-tp-con .footer-tp-rt form div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  margin-bottom: 37px;
  padding-bottom: 7px;
}
.footer-tp .footer-tp-con .footer-tp-rt form div p {
  font-family: SourceHanSerifSC-Regular;
  font-size: 16px;
  color: #cca072;
  padding-right: 10px;
}
.footer-tp .footer-tp-con .footer-tp-rt form div input {
  flex: 1;
  background: none;
  outline: none;
  color: #fff;
  background: none;
}
.footer-tp .footer-tp-con .footer-tp-rt form button {
  width: 116px;
  height: 36px;
  background-color: #cca072;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  font-family: SourceHanSerifSC-Regular;
  font-size: 14px;
  color: #ffffff;
  margin-top: 67px;
}
.footer-tp .footer-tp-con .footer-tp-rt form button:hover {
  box-shadow: 1px 1px 10px #cca072;
}
.x-con {
  margin: 0 auto;
  margin-top: 160px;
  max-width: 1678px;
  margin-bottom: 84px;
}
.x-con .x-bt h3 {
  text-align: center;
  letter-spacing: -6px;
  font-family: SourceHanSerifSC-Heavy;
  font-size: 52px;
  color: #ffffff;
}
.x-con .x-bt h3 span {
  position: relative;
  animation: landIn 0.4s ease-out both;
}
@keyframes landIn {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.x-con .x-bt p {
  font-family: SourceHanSerifSC-Regular;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  opacity: 0.5;
  margin-top: 5px;
}
.x-con .x-cont {
  margin-top: 58px;
}
.x-con .x-cont .x-cont-bt {
  display: none;
}
.x-con .x-cont .x-cont-zk {
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.x-con .x-cont .xuanz {
  transform: rotate(180deg);
}
.x-con .x-cont .x-cont-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(31, 31, 31, 0.7);
  border: solid 2px rgba(56, 56, 56, 0.7);
  margin-bottom: 53px;
  padding: 22px 50px 25px 54px;
  position: relative;
}
.x-con .x-cont .x-cont-items .x-cont-lf {
  width: 70%;
  z-index: 5;
}
.x-con .x-cont .x-cont-items .x-cont-rt{
    z-index: 5;
}
.x-con .x-cont .x-cont-items .x-cont-lf p:nth-child(1) {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 16px;
  color: #ffffff;
}
.x-con .x-cont .x-cont-items .x-cont-lf div {
  margin-top: 15px;
  margin-bottom: 48px;
}
.x-con .x-cont .x-cont-items .x-cont-lf div a:nth-child(1) {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 22px;
  color: #cca072;
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 1;
  -moz-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}
.x-con .x-cont .x-cont-items .x-cont-lf div a:nth-child(2) {
  font-family: SourceHanSerifSC-Regular;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.7;
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  -moz-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
  margin-top: 5px;
}
.x-con .x-cont .x-cont-items .x-cont-lf p:last-child a {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 16px;
  color: #cca072;
  transition: all 0.5s;
}
.x-con .x-cont .x-cont-items .x-cont-rt {
  width: 24%;
  overflow: hidden;
}
.x-con .x-cont .x-cont-items .x-cont-rt p {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 194px;
  transition: all 0.5s;
}
.x-con .x-cont .x-cont-items::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  height: 0%;
  width: 0%;
  border-left: 2px solid #cca072;
  border-bottom: 2px solid #cca072;
  transition: all 0.5s;
  opacity: 0;
  left: -2px;
  bottom: -2px;
}
.x-con .x-cont .x-cont-items::after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  height: 0%;
  width: 0%;
  border-right: 2px solid #cca072;
  border-top: 2px solid #cca072;
  transition: all 0.5s;
  opacity: 0;
  right: -2px;
  top: -2px;
}
.x-con .x-cont .x-cont-items:hover::before {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  opacity: 1;
}
.x-con .x-cont .x-cont-items:hover::after {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  opacity: 1;
}
.x-con .x-cont .x-cont-items:hover .x-cont-rt p {
  transform: scale(1.08);
}
.xshow-con {
  max-width: 1680px;
  margin: 0 auto;
  margin-top: 178px;
  margin-bottom: 83px;
}
.xshow-con .xshow-bt h3 {
  font-family: SourceHanSerifSC-Heavy;
  font-size: 32px;
  text-align: center;
  color: #ffffff;
}
.xshow-con .xshow-bt div {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.xshow-con .xshow-bt div p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.8;
  margin: 0 25px;
}
.xshow-con .xshow-content {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  margin-top: 34px;
  padding-top: 30px;
  padding-bottom: 27px;
  line-height: 32px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(170, 170, 170, 0.3);
  border-bottom: 1px solid rgba(170, 170, 170, 0.3);
}
.xshow-con .xshow-dh {
  display: flex;
  margin-top: 18px;
  justify-content: space-between;
}
.xshow-con .xshow-dh p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
}
.xshow-con .xshow-dh p a {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
  transition: all 0.5s;
}
.xshow-con .xshow-dh p a:hover {
  color: #cca072 !important;
}
.xshow-con .xshow-dh p:nth-child(1) {
  color: rgba(255, 255, 255, 0.5);
}
.xshow-con .xshow-dh p:nth-child(1) a {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1800px) {
  .container {
    max-width: 93%;
  }
}
@media (max-width: 1730px) {
  .news .news-con,
  .sectors .sectors-con,
  .about-team .about-team-con,
  .x-con,
  .xshow-con {
    max-width: 93%;
  }
  .jjts .jjts-con .jjts-con-rt h2,
  .sectors .sectors-con .sectors-wz h2 {
    font-size: 46px;
  }
  .active .jjts-con .jjts-con-rt div {
    width: 100%;
  }
}
@media (max-width: 1599px) {
  .jjts .jjts-con .jjts-con-cen .jjts-con-js {
    min-width: 347px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 .jjts-con-js {
    left: -122%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 .jjts-con-js {
    left: -83%;
  }
  .fl-con {
    max-width: 93%;
  }
    .about .about-con .about-con-rt {
    width: 46.2%;
    padding-right: 80px;
    padding-top: 147px;
  }
  .team .team-con h2 {
    font-size: 94px;
    top: 47%;
    left: 48%;
  }
  .team .team-con .team-con-bt {
    margin: 0 auto;
    margin-top: 63px;
    max-width: 84%;
  }
  .team .team-con .team-con-bt p:nth-child(1) {
    width: 298px;
    height: 289px;
  }
  .team .team-con .team-con-tp p:nth-child(1) {
    width: 211px;
    height: 207px;
  }
  .team .team-con .team-con-tp p:nth-child(2) {
    width: 214px;
    height: 213px;
    top: 51px;
  }
  .team .team-con .team-con-bt p:nth-child(2) {
    top: 70px;
  }
  .news .news-con .news-bt .news-items .news-items-con a:nth-child(3) {
    -webkit-line-clamp: 2;
    margin-top: 10px;
    -moz-line-clamp: 2;
  }
  .news .news-con .news-bt .news-items .news-items-con {
    padding: 22px 21px 22px 21px;
  }
  .news .news-con .news-bt {
    margin-left: -8.5px;
    margin-right: -8.5px;
    margin-top: 190px;
  }
  .news .news-con .news-bt .news-items {
    padding: 0 8.5px;
  }
  .news .news-con .news-tp .news-tp-rt img {
    width: 225px;
  }
  .news .news-con .news-tp .news-tp-lf p {
    margin-top: 28px;
  }
  .news .news-con .news-tp .news-tp-lf h2 {
    font-size: 54px;
  }
  .news .news-con {
    padding-bottom: 85px;
  }
  .jjts .jjts-con .jjts-con-lf {
    width: 21%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js {
    min-width: 308px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 .jjts-con-js {
    left: -102%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 .jjts-con-js {
    left: -73%;
    bottom: -20%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2 .jjts-con-js {
    right: 48%;
    top: 13%;
  }
  .jjts .jjts-con .jjts-con-rt h2,
  .sectors .sectors-con .sectors-wz h2 {
    font-size: 40px;
  }
  .jjts .jjts-con .jjts-con-rt {
    width: 25%;
    padding-top: 38px;
  }
  .about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(1) {
    height: 194px;
  }
  .about-team .about-team-con .about-team-bt {
    margin-top: 64px;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-lf {
    font-size: 26px;
  }
  .footer-tp .footer-tp-con {
    max-width: 93%;
  }
  .home .home-con .home-tp h1{
      font-size: 100px;
  }
      .jjts .jjts-con .jjts-con-cen .jjts-con-yq .jjts-con-js div {
    width: 271px !important;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js ul li a{
    font-size: 15px;
}
}
@media (max-width: 1477px) {

  .about .about-con .about-con-rt {
    width: 46.2%;
    padding-right: 80px;
    padding-top: 147px;
  }
  .team .team-con h2 {
    font-size: 94px;
    top: 47%;
    left: 48%;
  }
  .team .team-con .team-con-bt {
    margin: 0 auto;
    margin-top: 63px;
    max-width: 84%;
  }
  .team .team-con .team-con-bt p:nth-child(1) {
    width: 298px;
    height: 289px;
  }
  .team .team-con .team-con-tp p:nth-child(1) {
    width: 211px;
    height: 207px;
  }
  .team .team-con .team-con-tp p:nth-child(2) {
    width: 214px;
    height: 213px;
    top: 51px;
  }
  .team .team-con .team-con-bt p:nth-child(2) {
    top: 70px;
  }
  .news .news-con .news-bt .news-items .news-items-con a:nth-child(3) {
    -webkit-line-clamp: 2;
    margin-top: 10px;
    -moz-line-clamp: 2;
  }
  .news .news-con .news-bt .news-items .news-items-con {
    padding: 22px 21px 22px 21px;
  }
  .news .news-con .news-bt {
    margin-left: -8.5px;
    margin-right: -8.5px;
    margin-top: 190px;
  }
  .news .news-con .news-bt .news-items {
    padding: 0 8.5px;
  }
  .news .news-con .news-tp .news-tp-rt img {
    width: 225px;
  }
  .news .news-con .news-tp .news-tp-lf p {
    margin-top: 28px;
  }
  .news .news-con .news-tp .news-tp-lf h2 {
    font-size: 54px;
  }
  .news .news-con {
    padding-bottom: 85px;
  }
  .jjts .jjts-con .jjts-con-lf {
    width: 21%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js {
    min-width: 308px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 .jjts-con-js {
    left: -102%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 .jjts-con-js {
    left: -73%;
    bottom: -20%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2 .jjts-con-js {
    right: 48%;
    top: 13%;
  }
  .jjts .jjts-con .jjts-con-rt h2,
  .sectors .sectors-con .sectors-wz h2 {
    font-size: 40px;
  }
  .jjts .jjts-con .jjts-con-rt {
    width: 25%;
    padding-top: 38px;
  }
  .about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(1) {
    height: 194px;
  }
  .about-team .about-team-con .about-team-bt {
    margin-top: 64px;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-lf {
    font-size: 26px;
  }
  .footer-tp .footer-tp-con {
    max-width: 93%;
  }
}

@media (max-height: 740px) {
    .sectors .sectors-con .sectors-wz{
        top: 60px;
    }
    .footer-tp .footer-tp-con{
        padding-top: 203px;
    }
}
@media (max-height: 650px) {
    .news .news-con .news-bt{
        margin-top: 101px;
    }
    .news .news-con .news-tp .news-tp-rt img{
        width: 177px;
    }
    .jjts .jjts-con .jjts-con-rt{
        padding-top: 70px;
    }
        .footer-tp .footer-tp-con{
        padding-top: 257px;
    }
}
@media (max-width: 1365px) {
  .about .about-con .about-con-lf {
    width: 44%;
  }
  .about .about-con .about-con-rt {
    width: 50.2%;
    padding-right: 48px;
    padding-top: 147px;
  }
  .about .about-con .about-con-rt .about-con-rt-con a {
    margin-top: 70px;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-lf {
    font-size: 22px;
    line-height: 39px;
  }
  .footer-tp .footer-tp-con .footer-tp-lf h3,
  .sectors .sectors-con .sectors-wz h2 {
    font-size: 32px;
  }
  .footer-tp .footer-tp-con .footer-tp-lf ul {
    margin-top: 62px;
  }
  .footer-tp .footer-tp-con {
    padding-top: 18%;
  }
  .sectors .sectors-con .sectors-wz h2 {
    letter-spacing: -4px;
  }
  .sectors .sectors-con .sectors-yq {
    width: 506px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items img,
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items img {
    width: 77px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(1) {
    left: -71px;
    top: 35px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(2) {
    left: -36px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(3) {
    top: 76px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(1) {
    top: 35px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) {
    left: 181px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) {
    top: 61px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(1) div {
    left: -54%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(2) div {
    left: -118%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(3) div {
    left: -121%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) div {
    left: 51%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) div {
    left: 50%;
  }
  .sectors .sectors-con .sectors-yq {
    left: 3%;
  }
  .sectors .sectors-con .sectors-wz div {
    width: 75%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq img {
    transform: scale(0.8);
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 {
    transform: translate(-12px, 30px) rotateZ(1deg);
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2 {
    transform: translate(230px, 29px) rotateZ(0deg);
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 {
    transform: translate(-9px, -22px) rotateZ(0deg);
  }
  .jjts .jjts-con .jjts-con-wq {
    left: 43.2%;
    top: 53.1%;
    transform: translate(-50%, -50%);
    width: 504px;
    height: 503px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2::before {
    right: -0.2%;
    top: 43%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 p {
    top: 46%;
    transform: translate(54%, -50%) rotateZ(-63deg);
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2 p {
    left: 52%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 p {
    bottom: 23%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1::before {
    left: 7%;
    top: 37%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3::before {
    bottom: -12%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js ul li a {
    font-size: 14px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 .jjts-con-js {
    left: -78%;
    top: 0%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 .jjts-con-js {
    left: -49%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2 .jjts-con-js {
    right: -90%;
    top: -8%;
  }
  .f-ban {
    height: 391px;
  }
}
@media (max-width: 1199px) {
  .about .about-con .about-con-lf div h2 p span {
    font-size: 36px;
  }
  .about .about-con .about-con-lf div {
    padding-bottom: 87px;
    padding-left: 52px;
  }
  .about .about-con .about-con-lf {
    width: 40%;
  }
  .about .about-con .about-con-rt {
    width: 54.2%;
  }
  .about .about-con .about-con-rt .about-con-rt-con h3 {
    font-size: 27px;
  }
  .about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont {
    margin-top: 51px;
  }
  .about .about-con .about-con-rt .about-con-rt-con a {
    margin-top: 56px;
  }
  .team .team-con h2 {
    font-size: 75px;
  }
  .team .team-con .team-con-bt {
    margin-top: 63px;
    max-width: 92%;
  }
  .team .team-con .team-con-bt p:nth-child(1) {
    width: 264px;
    height: 260px;
  }
  .team .team-con .team-con-bt {
    margin-top: 45px;
    max-width: 92%;
  }
  .news .news-con .news-tp .news-tp-lf h2 {
    font-size: 44px;
    letter-spacing: -6px;
  }
  .news .news-con .news-tp .news-tp-rt img {
    width: 194px;
  }
  .news .news-con .news-bt .news-items .news-items-con a:nth-child(3) {
    display: none;
  }
  .news .news-con .news-bt {
    margin-top: 175px;
  }
  .jjts .jjts-con .jjts-con-lf {
    width: 0;
  }
  .jjts .jjts-con .jjts-con-wq {
    left: 43%;
    top: 53.1%;
    width: 490px;
    height: 490px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2::before {
    right: 3%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3::before {
    bottom: -10%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1::before {
    left: 9%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq p {
    font-size: 20px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 .jjts-con-js {
    left: 32%;
    top: 29%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq .jjts-con-js {
    background: rgba(0, 0, 0, 0.8);
    z-index: 5;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2,
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 {
    z-index: 1;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 .jjts-con-js {
    left: 59%;
  }
  .jjts .jjts-con .jjts-con-rt h2,
  .sectors .sectors-con .sectors-wz h2 {
    font-size: 31px;
  }
  .jjts .jjts-con .jjts-con-rt h2 {
    padding-bottom: 30px;
  }
  .jjts .jjts-con .jjts-con-rt {
    width: 33%;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-cen {
    width: 44%;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-rt {
    width: 14%;
  }
  .f-ban {
    height: 351px;
  }
  .home .home-con .home-tp h1{
      font-size: 100px;
  }
.home .home-con .home-tp .home-bg {
    background-position: 26% 34%;
}
}
@media (max-width: 990px) {
  .about .about-con .about-con-lf div h2 p span {
    font-size: 22px;
  }
  .about .about-con .about-con-lf div h5 p:nth-child(1) {
    width: 58px;
  }
  .about .about-con .about-con-rt .about-con-rt-con h3 {
    font-size: 20px;
  }
  .about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont {
    display: block;
  }
  .about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div {
    width: 100%;
  }
  .about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont {
    margin-top: 28px;
  }
  .about .about-con .about-con-rt .about-con-rt-con a {
    margin-top: 41px;
  }
  .team .team-con h2 {
    font-size: 58px;
  }
  .team .team-con .team-con-bt p:nth-child(1) {
    width: 214px;
    height: 217px;
  }
  .team .team-con .team-con-tp p:nth-child(2) {
    width: 189px;
    height: 190px;
    top: 36px;
  }
  .team .team-con .team-con-tp {
    max-width: 69%;
  }
  .team .team-con .team-con-bt {
    margin-top: 47px;
  }
  .team .team-con h2 {
    font-size: 53px;
    top: 49%;
  }
  .team .team-con .team-con-tp p:nth-child(1) {
    top: -11px;
    position: relative;
  }
  .team .team-con .team-con-bt p:nth-child(2) {
    top: 30px;
  }
  .team .team-con .team-con-bt p:nth-child(1) {
    position: relative;
    top: -14px;
  }
  .team .team-con .team-more {
    left: 56%;
  }
  .news .news-con .news-bt .news-items {
    width: calc(100%/3);
  }
  .news .news-con .news-bt .news-items:nth-child(4),
  .news .news-con .news-bt .news-items:nth-child(5) {
    display: none;
  }
  .news .news-con .news-tp .news-tp-lf h2 {
    font-size: 31px;
    letter-spacing: -4px;
  }
  .news .news-con .news-tp .news-tp-lf {
    width: 49%;
  }
  .news .news-con .news-bt {
    margin-top: 165px;
  }
  .footer .head-rt {
    display: none;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-cen {
    display: none;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-rt {
    width: 21%;
  }
  .footer-tp .footer-tp-con {
    display: block;
  }
  .footer-tp .footer-tp-con .footer-tp-rt {
    width: 100%;
    margin-top: 14px;
  }
  .footer-tp .footer-tp-con .footer-tp-lf ul {
    margin-top: 9px;
  }
  .footer-tp .footer-tp-con .footer-tp-lf ul li p{
    font-size: 17px;
    line-height: 34px;
  }
  .footer-tp .footer-tp-con .footer-tp-lf h3 {
    font-size: 26px;
  }
  .footer-tp .footer-tp-con .footer-tp-rt form {
    margin-top: 15px;
  }
  .footer-tp .footer-tp-con .footer-tp-lf ul li{
      margin-bottom: 2px;
  }
  .footer-tp .footer-tp-con .footer-tp-rt form button {
    margin-top: 30px;
  }
  .footer-tp .footer-tp-con {
    padding-top: 17%;
  }
  .sectors .sectors-con .sectors-yq {
    width: 423px;
  }
  .sectors .sectors-con .sectors-yq .sectors-yq2:nth-child(2) {
    display: none;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items img,
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items img {
    width: 65px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(1) {
    left: -61px;
    top: 75px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(2) {
    left: -26px;
    top: 30px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(1) {
    top: 70px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) {
    left: 143px;
    top: 26px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) {
    top: 51px;
  }
  .sectors .sectors-con .sectors-yq {
    left: 19%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items div {
    width: 186px;
    height: 64px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items div::after {
    top: 21%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) div,
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) div {
    left: -117%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items div::after {
    top: 21%;
    transform: rotateZ(180deg) translateY(-50%);
    left: 100%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(1) div {
    left: -55%;
  }
  .sectors .sectors-con .sectors-wz div {
    width: 100%;
  }
  .jjts .jjts-con .jjts-con-wq {
    left: 48%;
    top: 52.5%;
  }
  .f-ban {
    height: 289px;
  }
  .x-con .x-bt h3 {
    font-size: 45px;
  }
  .x-con .x-cont .x-cont-items {
    padding: 22px 29px 25px 29px;
  }
  .x-con .x-cont .x-cont-items .x-cont-lf {
    width: 66%;
  }
  .x-con .x-cont .x-cont-items .x-cont-rt {
    width: 29%;
  }
  .xshow-con {
    margin-top: 145px;
  }
    .home .home-con .home-tp h1{
      font-size: 77px;
  }
.home .home-con .home-tp .home-bg {
    background-position: 26% 34%;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-yq .jjts-con-js div {
    width: 257px !important;
}
}
@media (max-width: 767px) {
    .jjts .jjts-con .jjts-con-cen .jjts-con-yq .jjts-con-js div {
    width: 217px !important;
}
.jjts .jjts-con .jjts-con-cen .jjts-con-js h4 span{
    display: none;
}
  .head-rt .head-nav {
    display: none;
  }
  .news .news-con{
      padding-top: 0;
  }
  .about .fp-tableCell {
    vertical-align: top;
  }
  .about .about-con {
    display: block;
    height: auto;
  }
  .about .about-con .about-con-lf {
    width: 100%;
  }
  .about .about-con .about-con-lf div {
    height: auto;
  }
  .about .about-con .about-con-rt {
    width: 93%;
    margin: 0 auto;
  }
  .about .about-con .about-con-rt .about-con-rt-con h3 {
    font-size: 17px;
  }
  .about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div {
    width: 100%;
  }
  .about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont div {
    font-size: 13px;
  }
  .about .about-con .about-con-rt {
    padding-right: 0;
    padding-top: 21px;
  }
  .about .about-con .about-con-rt .about-con-rt-con .about-con-rt-cont {
    margin-top: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 7;
    -moz-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
  }
  .gundong p:nth-child(2) {
    height: 32px;
  }
  @keyframes float {
    0% {
      bottom: 22px;
    }
    25% {
      bottom: 25px;
    }
    50% {
      bottom: 28px;
    }
    75% {
      bottom: 25px;
    }
    100% {
      bottom: 22px;
    }
  }
  .about .about-con .about-con-rt .about-con-rt-con a {
    margin-top: 32px;
    width: 110px;
    height: 37px;
  }
  .about .about-con .about-con-lf div h2,
  .about .about-con .about-con-lf div h5 {
    display: none;
  }
  .about .about-con .about-con-lf div {
    height: 190px;
    background-position: 0% 29%;
  }
  .team .team-con h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .team .team-con .team-con-tp {
    max-width: 75%;
    left: 0;
  }
  .team .team-con .team-con-tp p:nth-child(1) {
    width: 137px;
    height: 137px;
  }
  .team .team-con .team-con-tp p:nth-child(2) {
    width: 120px;
    height: 119px;
    top: 31px;
  }
  .team .team-con .team-con-bt p:nth-child(2) {
    width: 109px;
    height: 100px;
  }
  .team .team-con .team-con-bt p:nth-child(1) {
    width: 141px;
    height: 136px;
  }
  .team .team-con .team-con-bt {
    margin-top: 39px;
  }
  .team .team-con .team-con-bt p:nth-child(2) {
    top: 8px;
  }
  .active .team-con .team-more {
    top: 87%;
    left: inherit;
    opacity: 1;
    right: 3%;
    transform: inherit;
  }
  .team .team-con {
    padding-bottom: 39px;
  }
  .team .team-con h2 {
    top: 44%;
  }
  .news .news-con .news-tp {
    display: block;
  }
  .news .news-con .news-tp .news-tp-lf {
    width: 100%;
  }
  .news .news-con .news-tp .news-tp-lf p {
    margin-top: 10px;
  }
  .news .news-con .news-tp .news-tp-lf h2 {
    font-size: 23px;
    letter-spacing: -3px;
  }
  .news .news-con .news-tp .news-tp-rt img {
    width: 130px;
  }
  .news .news-con .news-tp .news-tp-rt h4 {
    font-size: 18px;
  }
  .news .news-con .news-tp .news-tp-rt {
    width: fit-content;
    padding-right: 27px;
    margin: 0 auto;
    margin-right: 0;
    top: 0;
    display: none;
  }
  .news .news-con .news-bt {
    margin-top: 34px;
  }
  .news .news-con .news-bt {
    flex-wrap: wrap;
  }
  .news .news-con .news-bt .news-items {
    width: 50%;
    margin-bottom: 15px;
  }
  .news .news-con .news-bt .news-items:nth-child(4) {
    display: block;
  }
  .news .news-con .news-bt .news-items .news-items-con a:nth-child(2) {
    margin-top: 0;
    font-size: 15px;
  }
  .news .news-con .news-bt .news-items .news-items-con {
    padding: 17px 16px 19px 16px;
  }
  .news .news-con .news-bt .news-items .news-items-con a:nth-child(4) {
    margin-top: 13px;
  }
  .footer .foot-con {
    display: block;
    text-align: center;
  }
  .footer .foot-con p {
    margin-top: 8px;
  }
  .footer .foot-con .foot-lx {
    margin-top: 20px;
    justify-content: center;
  }
  .news .news-con {
    padding-bottom: 0;
  }
  .news .fp-tableCell {
    vertical-align: middle;
  }
  .sectors .sectors-con {
    display: flex;
    flex-direction: column-reverse;
  }
  .sectors .sectors-con .sectors-wz {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
  .sectors .sectors-con .sectors-wz div {
    margin-top: 14px;
  }
  .sectors .sectors-con .sectors-wz h2 {
    font-size: 22px;
    letter-spacing: -2px;
    padding-bottom: 17px;
  }
  .sectors .sectors-con .sectors-yq {
    width: 286px;
    margin: 0 auto;
    margin-top: -31px;
    height: auto;
    left: 0;
  }
  .sectors .sectors-con .sectors-yq .sectors-yq2:nth-child(3) {
    display: none;
  }
  .sectors .sectors-con .sectors-yq .sectors-yq2:nth-child(3) {
    display: none;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items img,
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items img {
    width: 50px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(1) {
    left: -68px;
  }
  .sectors .sectors-con .sectors-yq .sectors-yq2:nth-child(4) {
    width: 80%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(1) {
    top: 71px;
    left: -9px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) {
    left: 98px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) {
    top: -53px;
    left: 42px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(3) {
    top: -36px;
    left: 64px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items div {
    width: 153px;
    height: 51px;
    font-size: 15px;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(1) div {
    left: 123%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf .sectors-items div::after {
    top: 48%;
    transform: rotateZ(0deg) translateY(-50%);
    left: -12%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(1) div {
    left: -81%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items div::after {
    top: 12%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(3) div,
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(2) .sectors-items:nth-child(2) div {
    left: -149%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(3) div {
    left: 64%;
    top: 78%;
  }
  .sectors .sectors-con .sectors-yq .sectors-cont .sectors-lf:nth-child(1) .sectors-items:nth-child(2) div {
    top: 49%;
    left: 64%;
  }
  .sectors .sectors-con {
    padding-top: 49px;
  }
  .sectors::before {
    left: 47%;
    top: 10%;
  }
  .about-team .about-team-con .about-team-tp {
    display: block;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-lf {
    font-size: 18px;
    line-height: 30px;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-rt {
    margin-top: 13px;
    width: 176px;
  }
  .about-team .about-team-con .about-team-tp .about-team-tp-rt {
    height: 36px;
  }
  .team-prev,
  .team-next {
    margin: 0 !important;
  }
  .about-team .about-team-con .about-team-bt {
    margin-top: 32px;
  }
  .about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(2) {
    padding: 12px 12px 15px 12px;
  }
  .about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con a:nth-child(2) p:nth-child(2) {
    margin-top: -7px;
  }
  .about-team .about-team-con .about-team-bt .team-swiper .swiper-wrapper .swiper-slide .team-swiper-con {
    padding-top: 2px;
  }
  .about-team::before {
    left: -187%;
    top: -43%;
  }
  .footer-tp .footer-tp-con .footer-tp-lf ul li p{
    font-size: 14px;
    line-height: 23px;
    text-align: left;
  }
  .footer-tp .footer-tp-con .footer-tp-lf ul li {
    margin-bottom: -4px;
}
.footer-tp .footer-tp-con .footer-tp-rt form button {
    margin-top: 21px;
}
  .footer-tp .footer-tp-con .footer-tp-rt h3,
  .footer-tp .footer-tp-con .footer-tp-lf h3 {
    font-size: 22px;
  }
  .footer-tp .footer-tp-con .footer-tp-rt form div {
    margin-bottom: 11px;
  }
  .footer-tp {
    display: flex;
    align-items: flex-end;
    padding-bottom: 42px;
  }
  .footer-tp .footer-tp-con .footer-tp-rt form div p {
    font-size: 15px;
    margin-top: 0;
  }
  .jjts .jjts-con {
    flex-direction: column-reverse;
  }
  .jjts .jjts-con .jjts-con-rt {
    width: 100%;
  }
  .jjts .jjts-con .jjts-con-rt h2 {
    font-size: 22px;
    letter-spacing: -2px;
    text-align: left;
    padding-bottom: 16px;
  }
  .jjts .jjts-con .jjts-con-rt h2::after {
    right: auto;
    left: 0;
  }
  .active .jjts-con .jjts-con-rt div {
    display: none;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq img {
    transform: scale(1) !important;
  }
  .jjts .jjts-con .jjts-con-cen {
    width: 340px;
    height: 340px;
    margin: 0 auto;
  }
  .active .jjts-con .jjts-con-cen .jjts-con-yq1 {
    width: 167.46px;
    height: 202.33px;
    transform: translate(22px, 30px) rotateZ(1deg);
  }
  .active .jjts-con .jjts-con-cen .jjts-con-yq2 {
    width: 129px;
    transform: translate(171px, 34px) rotateZ(0deg);
    height: 225.5px;
  }
  .active .jjts-con .jjts-con-cen .jjts-con-yq3 {
    width: 247px;
    height: 101.5px;
    transform: translate(36px, -30px) rotateZ(0deg);
  }
  .jjts .jjts-con .jjts-con-wq {
    left: 47%;
    top: 50%;
    width: 330px;
    height: 330px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1::before {
    left: -8%;
    top: 30%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3::before {
    bottom: -42%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2::before {
    right: -21%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq p {
    font-size: 18px;
    white-space: nowrap;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 p {
    transform: translate(7%, -50%) rotateZ(-63deg);
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 p {
    bottom: 12%;
    left: 28%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2 p {
    left: 47%;
    transform: rotateZ(75deg);
  }
  .jjts .jjts-con .jjts-con-cen {
    margin-top: 33px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js h4 {
    font-size: 18px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js ul {
    margin-top: 13px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js {
    padding-top: 28px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 21px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js {
    min-width: 263px;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-js ul li a {
    font-size: 12px;
  }
  .jjts .jjts-con .jjts-con-rt {
    padding-top: 0;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq1 .jjts-con-js {
    left: 32%;
    top: -52%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq2 .jjts-con-js {
    right: -24px;
    top: -47%;
  }
  .jjts .jjts-con .jjts-con-cen .jjts-con-yq3 .jjts-con-js {
    left: 23%;
    bottom: 65%;
  }
  .jjts .jjts-con .jjts-con-cen .bcolor {
    transition: all 0.1s;
  }
  .jjts .jjts-con .jjts-con-cen .bcolor {
    z-index: 10;
  }
  .fl-con {
    padding: 56px 59px 56px 56px;
  }
  .f-ban {
    height: 174px;
  }
  .fl-con {
    padding: 27px 23px 29px 23px;
    margin: 22px auto;
  }
  .fl-con h3 {
    font-size: 22px;
  }
  .fl-con .fl-cont {
    margin-top: 16px;
  }
  .fl-con .fl-cont div {
    margin-bottom: 12px;
  }
  .x-con .x-bt h3 {
    letter-spacing: -3px;
    font-size: 27px;
  }
  .x-con .x-bt p {
    line-height: 24px;
    margin-top: 9px;
  }
  .x-con {
    margin-top: 95px;
    margin-bottom: 40px;
  }
  .x-con .x-cont .x-cont-items .x-cont-rt {
    display: none;
  }
  .x-con .x-cont .x-cont-items .x-cont-lf {
    width: 100%;
  }
  .x-con .x-cont .x-cont-items .x-cont-lf div a:nth-child(1) {
    font-size: 17px;
  }
  .x-con .x-cont .x-cont-items .x-cont-lf div {
    margin-top: -3px;
    margin-bottom: 10px;
  }
  .x-con .x-cont .x-cont-items .x-cont-lf div a:nth-child(2) {
    line-height: 25px;
  }
  .x-con .x-cont .x-cont-items .x-cont-lf p:last-child a {
    font-size: 15px;
  }
  .x-con .x-cont .x-cont-items {
    padding: 14px 23px 17px 22px;
    margin-bottom: 20px;
  }
  .x-con .x-cont {
    margin-top: 22px;
  }
  .xshow-con .xshow-bt h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .xshow-con {
    margin-top: 101px;
    margin-bottom: 31px;
  }
  .xshow-con .xshow-bt div p {
    margin: 0 6px;
  }
  .xshow-con .xshow-bt div {
    margin-top: 8px;
  }
  .xshow-con .xshow-content {
    font-size: 14px;
    margin-top: 18px;
    padding-top: 17px;
    padding-bottom: 19px;
    line-height: 30px;
  }
  .xshow-con .xshow-dh {
    display: block;
  }
  .xshow-con .xshow-dh p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .nav-right-bt div:nth-child(1),.nav-right-bt div:nth-child(2){
    display: block;
}
.nav-right{
    width: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,.7);
    padding: 34px 39px;
}
.nav-right .nav-right-tp {
    padding-bottom: 26px;
}
.nav-right .nav-right-bt div ul{
    flex-wrap:wrap;
        margin-top: 3px;
}
.nav-right .nav-right-bt div {
    padding-bottom: 18px;
    padding-top: 20px;
}.nav-right .nav-right-bt div ul li a {
    font-size: 15px;
}
.nav-right .nav-right-bt div ul li {
    margin-right: 19px;
}
.head .container{
    padding: 8px 0;
}
.f-ban{
    margin-top: 69px;
}
.team,.news{
    background-size: cover !important;
        background-position: center center !important;
}
@keyframes fd {
  0% {
    background-size: cover;
  }
  50% {
    background-size: cover;
  }
  100% {
    background-size: cover;
  }
}
.home .home-con .home-tp h1 {
    font-size: 34px;
    white-space: nowrap;
}
.home .home-con .home-tp .home-bg {
    background-position: 38% 13%;
}
}
