.text_overflow {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.over-2 {
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.over-3 {
  line-height: 24px;
  height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/*animate补充动画*/
@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, -10px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownSmall {
  animation-name: fadeInDownSmall;
}

@keyframes fadeOutDownSmall {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }
}

.fadeOutDownSmall {
  animation-name: fadeOutDownSmall;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.scaleIn {
  animation-name: scaleIn;
}

/*页面结构*/
.iconfont::selection {
  background: transparent;
}

/*消文字的选中状态*/
#bloc {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#home {
  position: fixed;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
  -moz-transition: transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  -ms-transition: transform 0.5s ease-out;
}

#home #main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#home #main #roll {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}

#home #main #roll .row {
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.3, 0, 0.24, 1);
  z-index: 5;
}

#home #main #roll .row .alan {
  opacity: 0;
}

#home #main #roll .row .alanLeft,
#home #main #roll .row .alanIn {
  opacity: 0;
}

#home #main #roll .row.del {
  opacity: 1;
  pointer-events: auto;
}

#home #main #roll .row.on {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

#home #main #roll .row.on .alan {
  animation-name: fadeInUpSmall;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.3, 0, 0.24, 1);
}

#home #main #roll .row.on .alanLeft {
  animation-name: fadeInLeftSmall;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.3, 0, 0.24, 1);
}

#home #main #roll .row.on .alanIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.3, 0, 0.24, 1);
}

#home #main #roll .row .delay1 {
  animation-delay: 0.1s;
}

#home #main #roll .row .delay2 {
  animation-delay: 0.2s;
}

#home #main #roll .row .delay3 {
  animation-delay: 0.3s;
}

#home #main #roll .row .delay4 {
  animation-delay: 0.4s;
}

#home #main #roll .row .delay5 {
  animation-delay: 0.5s;
}

#home #main #roll .row .delay6 {
  animation-delay: 0.6s;
}


#home #main #roll #r1.over {
  z-index: 16;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_in_1;
  transform-origin: 50% 50%;
}


#home #main #roll #r2.in {
  z-index: 15;
  opacity: 1;
  border-radius: 20px;
  animation-name: fn1;
  transform-origin: 50% 50%;
}

#home #main #roll #r2.out {
  z-index: 10;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_out;
  transform-origin: 50% 50%;
}


#home #main #roll #r3.over {
  z-index: 16;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_in_1;
  transform-origin: 50% 50%;
}

#home #main #roll #r3.in {
  z-index: 15;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_in;
  transform-origin: 50% 50%;
}

#home #main #roll #r3.out {
  z-index: 10;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_out;
  transform-origin: 50% 50%;
}

#home #main #roll #r4.in {
  z-index: 15;
  opacity: 1;
  border-radius: 20px;
  animation-name: fadeIn;
  transform-origin: 50% 50%;
}

#home #main #roll #r4.out {
  z-index: 10;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_out;
  transform-origin: 50% 50%;
}

#home #main #roll #r5.in {
  z-index: 15;
  opacity: 1;
  border-radius: 20px;
  animation-name: bannerIn;
  transform-origin: 50% 50%;
}

#home #main #roll #r5.out {
  z-index: 10;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_out;
  transform-origin: 50% 50%;
}

#home #main #roll #r6.in {
  z-index: 15;
  opacity: 1;
  border-radius: 20px;
  animation-name: bannerIn;
  transform-origin: 50% 50%;
}

#home #main #roll #r6.out {
  z-index: 10;
  opacity: 1;
  border-radius: 20px;
  animation-name: banner_out;
  transform-origin: 50% 50%;
}

#home .roll-items {
  position: fixed;
  left: 0.7rem;
  height: 100%;
  width: 60px;
  top: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

#home .roll-items>ol {
  width: 23px;
}

#home .roll-items>ol>li {
  width: 22px;
  height: 22px;
  margin: 0.3rem 0;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  cursor: pointer;
}

#home .roll-items>ol>li svg {
  width: 24px;
  height: 24px;
  transform: translate(-2px, -4px) rotate(-90deg);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

#home .roll-items>ol>li svg circle {
  stroke-dashoffset: 189px;
  stroke-dasharray: 63px;
  stroke: #175789;
  stroke-width: 2px;
}

#home .roll-items>ol>li:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  line-height: 6px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
}

#home .roll-items>ol>li:before {
  content: attr(data-node);
  position: absolute;
  white-space: nowrap;
  font-size: 0.16rem;
  left: calc(100% + 15px);
  height: 20px;
  line-height: 20px;
  top: 0;
  color: #666666;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

#home .roll-items>ol>li.on {
  border-color: rgba(0, 0, 0, 0.1);
}

#home .roll-items>ol>li.on:after {
  opacity: 0;
}

#home .roll-items>ol>li.on:before {
  opacity: 1;
}

#home .roll-items>ol>li.on svg circle {
  stroke-dashoffset: 126px;
  transition: all 2s ease-out;
  -webkit-transition: all 2s ease-out;
  -moz-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
}

#home .roll-items.on {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
}

#home .roll-items.wc .dot_num>em {
  color: rgba(255, 255, 255, 0.2);
}

#home .roll-items.wc .dot_num>em.num_ {
  color: #fff;
}

#home .roll-items.wc>ol>li svg circle {
  stroke: #fff;
}

#home .roll-items.wc>ol>li.on {
  border-color: rgba(255, 255, 255, 0.2);
}

#home .roll-items.wc>ol>li:after {
  background-color: rgba(255, 255, 255, 0.4);
}

#home .roll-items.wc>ol>li:before {
  color: #fff;
}

@keyframes bannerIn {
  0% {
    transform: translate3d(100%, 0%, 0) scale3d(0.7, 0.7, 0.7);
  }

  50% {
    transform: translate3d(0, 0%, 0) scale3d(0.7, 0.7, 0.7);
  }

  100% {
    transform: translate3d(0%, 0, 0) scale3d(1, 1, 1);
  }
}

@keyframes banner_in {
  0% {
    transform: translate3d(100%, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }

  50% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }

  100% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(0 0 0 0 round 10px);
  }
}

@keyframes banner_out {
  0% {
    transform: translate3d(0, 0%, 0) scale3d(1, 1, 1);
  }

  50% {
    transform: translate3d(0, 0%, 0) scale3d(0.7, 0.7, 0.7);
  }

  100% {
    transform: translate3d(-100%, 0, 0) scale3d(0.7, 0.7, 0.7);
  }
}



@keyframes banner_in_1 {
  0% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(0 0 0 0 round 10px);
  }

  50% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }

  100% {
    transform: translate3d(-100%, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
}

@keyframes banner_out_1 {
  0% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(0 0 0 0 round 10px);
  }

  50% {
    transform: translate3d(0, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }

  100% {
    transform: translate3d(-100%, 0%, 0);
    clip-path: inset(10vw 10vw 10vw 10vw round 10px);
  }
}

@keyframes loopCir {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}

@keyframes ani1 {
  0% {
    opacity: 0;
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -o-transform: translateY(8px);
    -ms-transform: translateY(8px);
  }

  30% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
  }

  100% {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
  }

  /* 100% {
    opacity: 0;
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
  } */
  /* 100% {
    opacity: 1;
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -o-transform: translateY(8px);
    -ms-transform: translateY(8px);
  } */
}

@keyframes Tmouse {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes fn1 {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translate3d(0%, 20px, 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}

.fn1 {
  animation-name: fn1;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.49, 0.54, 0.16, 1);
}



#bloc footer {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 100%;
  left: 0;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
  -moz-transition: transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  -ms-transition: transform 0.5s ease-out;
}

#bloc.on #home {
  transform: translate3d(0, -255, 0);
  -webkit-transform: translate3d(0, -255, 0);
  -moz-transform: translate3d(0, -255, 0);
}

#bloc.on footer {
  transform: translate3d(0, -255, 0);
  -webkit-transform: translate3d(0, -255, 0);
  -moz-transform: translate3d(0, -255, 0);
}

#footer {
  background: #1b2b2f;
}

.appear-animation {
  opacity: 0;
}

@-webkit-keyframes fadeInUpShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpShorter {
  -webkit-animation-name: fadeInUpShorter;
  animation-name: fadeInUpShorter;
  animation-iteration-count: 1;
}

.fadeInUpShorter2 {
  -webkit-animation-name: fadeInUpShorter2;
  animation-name: fadeInUpShorter2;
  animation-iteration-count: 1;
}

@-webkit-keyframes fadeInDownShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownShorter {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownShorter {
  -webkit-animation-name: fadeInDownShorter;
  animation-name: fadeInDownShorter;
}

/* .swiper-slide-active .appear-animation {
  animation: fadeInUpShorter 0.8s normal forwards;
} */

.active222 .appear-animation {
  animation: fadeInUpShorter 0.8s normal forwards;
}

.swiper-slide-active .scale {
  transform: scale(1);
}

.ani1 {
  animation-delay: 0.3s !important;
}

.ani2 {
  animation-delay: 0.5s !important;
}

.ani3 {
  animation-delay: 0.7s !important;
}

.g-baner-p1 {
  font-size: 26px;
  color: #fff;
  margin-top: 25px;
  max-width: 100%;
  line-height: 1.4;
  font-weight: 500;
}

.g-b-more {
  margin-top: 70px;
}

.video-ban:before {
  display: none;
}

/*  */
.full_pagination {
  position: absolute;
  color: #fff;
  right: 5%;
  bottom: 10%;
  z-index: 999;
}

.full_pagination {
  width: 170px;
}

.full_pagination span {
  display: flex;
  width: 100%;
  align-items: center;

  margin: 5px 0;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.full_pagination sup {
  transform: scale(0.8);
  display: inline-block;
}

.full_pagination i {
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.full_pagination em {
  transition: all 0.3s ease;
  /* opacity: 0; */
  font-size: 14px;
  margin-right: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  padding: 5px 0;
}

.full_pagination .bullet-active i,
.full_pagination span:hover i {
  background: rgba(255, 255, 255, 1);
  width: 20px;
}

.full_pagination .bullet-active em {
  /* opacity: 1; */
  color: rgba(255, 255, 255, 1);
}

.full_pagination:hover span {
  padding: 3px 0;
}

.full_pagination:hover em {
  opacity: 1;
}

.full_pagination span:last-child {
  display: none;
}

.full_pagination {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}

.full_pagination.active em {
  color: rgba(0, 0, 0, 0.6);
}

.full_pagination.active i {
  background: rgba(0, 0, 0, 0.6);
}

/*  */

#blocs {
  background: #fff;
}

.swiper-wz {
  z-index: 6;
}

.swiper-bg-color {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}

.swiper-bg-color {
  opacity: 0.5;
}

.swiper-bg-color {
  background: linear-gradient(180deg, rgba(2, 68, 191, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.swiper-bg-color {
  opacity: 0;
  height: 20%;
}

.box {
  height: 100vh;
  width: 100%;
}

.homebanner {
  height: 100%;
}

.disappear .publxyfcx {
  /* transform: translate(0px, 50px) scale(0.8); */
  opacity: 0.5;
  transition: all 0.8s cubic-bezier(0.445, 0.145, 0.355, 1) 0s;
}

.swiper-slide-active .publxyfcx,
.bb.swiper-slide .publxyfcx {
  transform: translate(0px, 0px) scale(1);
  opacity: 1;
  /* transition: all 0.4s cubic-bezier(0.445, 0.145, 0.355, 1) 0s; */
}

.homebanner .footslider.swiper-slide {
  height: auto !important;
}

.homebanner .footslider.swiper-slide .ibox {
  opacity: 1;
  transform: scale(1);
}

/*  */
.full_item .inner0 {
  padding: 0;
}

.full3suba {
  box-sizing: border-box;
  width: 33.33%;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid rgba(255, 255, 255, 0.2)
}

.full3suba2 {
  width: 31%;
  /* height: 100vh; */
  color: #fff;
  font-size: 14px;
  /* display: flex; */
  text-align: left;
  /* padding-top: 30%; */
  transition: all 0.3s ease;
  padding-left: 20px;
  /* border-left: 2px solid rgba(255, 255, 255, 0.1); */
}

/* .full3suba2:last-child {
  border-right: 2px solid rgba(255, 255, 255, 0.1);
} */

.full3slider {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

.full3slider .swiper-wrapper {
  z-index: 5;
}

.full3sliderm {
  transition: all 0.3s ease;
  padding: 0 50px;
  box-sizing: border-box;
  position: relative;
}

.full_btn {
  position: absolute;
  top: 82.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 89%;
  z-index: 11111;
  display: flex;
  justify-content: space-between;
}

.full_btn span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  /* background: #005995; */
  border: 1px solid rgba(255, 255, 255, 1);
  color: #fff;
  text-align: center;
}

.full_btn:hover span {
  cursor: pointer;
}

.full3p3 {
  margin-top: 30px;
}


.jrs_more {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  position: relative;
  padding: 0 45px;
  background: #fff;
}

.full3subm {
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.full3submain {
  width: 66.66%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* border-top: 2px solid rgba(255, 255, 255, 0.5) */
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.full3suba1 {
  width: 50%;
  font-size: 14px;
  padding: 15px 0;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgb(0, 86, 167, 0.5);
}

.full3suba1 {
  position: relative;
}

.full3suba1 span {
  font-size: 16px;
  font-weight: bold;
}

.full3suba_js.on::before {
  content: "";
  width: 100%;
  height: 1px;
  /* background: red; */
  position: absolute;
  top: -2px;
  left: 0;
}

.full3suba_js.on {
  color: #fff;
}

.full3suba1 img {
  height: 40px;
  margin-right: 30px;
}

.full3sub2 {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 111;

  color: #fff;
  /* width: 100%; */
  /* border: 1px solid orange; */
}

.full3subitem li:nth-child(1) p {
  display: flex;
  align-items: center;
}

.full3suba_js2 {}

.full3suba_js2.on {
  background: rgba(255, 255, 255, 0.2);
}

.full3suba2 img {
  height: 70px;
  /* margin-right: 10px; */
}

.full_li {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}



.full3suba2 .jrs_more span,
.full3suba2 .jrs_more svg {
  color: #000;
}


.full_video,
.full_vbg {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.full_vbg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.full_video video {
  width: 100%;
  height: 100%;
}



.index_p2 {
  font-size: 18px;
}

.full3suba:nth-child(3n) {
  border-right: none;
}

.full3suba {
  padding: 8px 0;
}

.full3suba {
  color: #fff;
  text-align: left;
  padding-left: 4%;
  font-size: 14px;
}

.full3suba span {
  color: #fff;
  position: relative;
  display: inline-block;
  width: 70%;
}

.full3suba i {
  position: absolute;
  display: block;
  height: 7px;
  width: 25px;
  background: url(static/demo/cjt01.png);
}

.full3slider2 {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

.full3slider2 .swiper-wrapper {
  z-index: 5;
}

.full3suba i {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.full3suba i {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.full3suba.on i,
.full3suba:hover i {
  opacity: 1;
  right: 0;
}

.full3wz {
  top: 13%;
  transform: none;
  position: relative;
}

.full3sub {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  bottom: 13%;
  /* bottom: 6%; */
  z-index: 3;
  padding: 0 50px;
  z-index: 13;
}

/*  */
.tb3ptop {
  text-align: center;
}

.tb3pp1 {
  color: #fff;
  margin-top: 20px;
  opacity: 0.8;
  font-size: 14px;
}

.tb3pp2 {
  margin-top: 45px;
}

.tb3pbg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tb3pbg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.tb3pbg {
  transition: all 6s ease;
  transform: scale(1.2);
}

.swiper-slide.swiper-slide-active .tb3pbg {
  transform: scale(1);
}

.tb3ptop {
  position: absolute;
  top: 20%;
  z-index: 3;
  left: 50%;
  width: 1000px;
  transform: translateX(-50%);
}

.tb3ptab {
  box-sizing: border-box;
  padding: 0 55px;
}

.tb3ptab {
  position: absolute;
  width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.tb3ptab {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.tb3ptab {
  display: flex;
  justify-content: space-between;
  bottom: 10%;
}

.tb3ptab ul {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
}

.tb3ptab i {
  display: block;
  width: 70px;
  height: 130px;
  position: relative;
}

.tb3ptab img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 80%;
  max-height: 50px;
}

.tb3p,
.tb3plisder {
  position: absolute;
  height: 100vh;
  left: 0;
  top: 0;
  width: 100%;
}

.tb3pbtn {
  border-top: 1px solid #022f45;
}

.tb3pbtn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: #fff;
  font-size: 14px;
}

.tb3pbtn {
  display: flex;
  justify-content: space-between;
  bottom: 10%;
  box-sizing: border-box;
  padding: 0 30px;
  max-width: 1600px;
  padding-top: 0;
}

.tb3pbtn p {
  position: relative;
  padding: 25px 0;
  padding-left: 68px;
  display: inline-block;
  text-align: left;
}

.tb3pbtn img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50px;
  max-height: 50px;
}

.tb3pqq {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  margin-top: -20px;
  box-sizing: border-box;
  cursor: pointer;
}

.tb3pqq {
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0.2;
}

.tb3pqq1 {
  left: -24px;
}

.tb3pqq2 {
  right: -24px;
}

.tb3pbtn p {
  cursor: pointer;
  position: relative;
}

.tb3pbtn p:before {
  position: absolute;
  content: '';
  width: 0;
  height: 3px;
  background: var(--yellow);
  left: 0;
  top: -2px;
  opacity: 0;
  transition: all 0.5s ease;
}

.tb3pbtn .on p:before {
  width: 100%;
  opacity: 1;
}

.tb3pbtnslider {
  width: 100%;
}

.tb3pbtnsliderm {
  text-align: center;
}

.tb3pqq {
  transition: all 0.3s ease;
}

.tb3pqq:hover {
  opacity: 0.5;
}

.tb3pqq.swiper-button-disabled {
  opacity: 0.2;
}

/*  */
.disappear.swiper-slide-active .aniStyle2 {
  animation: 1s aniStyle2 0.3s;
  animation-fill-mode: forwards;
}

.ani_style3 {
  opacity: 0;
}

.ani_style1,
.aniStyle2 {
  animation: 0.5s aniStyle1 0.3s;
  opacity: 1;
}

.tdelay1 {
  animation-delay: 0.3s !important;
}

.tdelay2 {
  animation-delay: 0.5s !important;
}

.tdelay3 {
  animation-delay: 0.7s !important;
}

@keyframes aniStyle1 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes aniStyle2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
}

@keyframes aniStyle3 {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.rowbg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* .nh25m{transition: all 0.6s ease;opacity: 0;transform:scale(0.9);opacity: 0;}
  #home #main #roll .row.on .nh25m {transform:scale(1);opacity: 1;}*/
#home #main #roll #r5.del .rowbg,
.disappear .rowbg {
  transform: scale(1);
}

#home #main #roll #r5 .rowbg,
.disappear.swiper-slide-active .rowbg {
  transform: scale(1.2);
  transition: all 5s ease;
}

/*  */
.nh2aboutp1 {
  font-size: 24px;
  margin-top: 20px;
}

.nh2aboutp2 {
  font-size: 18px;
  margin-top: 40px;
}

.nh2aboutp2 {
  font-weight: 300;
}

.nh2aboutp1-fff {
  color: #fff;
}

.lhpubh2-fff {
  color: #fff;
}

.nh2aboutp2-fff {
  color: #fff;
  opacity: 0.8;
}

.nh2aboutp3 {
  margin-top: 75px;
}

.nh2aboutp3 a {
  margin: 0;
}

.nh2aboutl .lhpubh2,
.nh2aboutl {
  text-align: left;
}

.nh2about {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.nh2aboutl {
  width: 52%;
}

.nh2aboutr {
  width: 35%;
  padding: 50PX 0;
  min-width: 500px;
}

.nh2aboutrp1 {
  line-height: 1;
}


.nh2aboutrp1 i {
  font-style: normal;
  padding-left: 5px;
  font-size: 25px;
  color: #000;
}

.nh2aboutrp2 {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
}

.nh2aboutr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nh2aboutr ul {
  width: 190px;
  margin-right: calc(100% - 380px);
}

.nh2aboutr ul:nth-child(even) {
  margin-right: 0;
}

.nh2about {
  background: url(img/nh2aboutrbg.jpg) right center no-repeat;
}

/*  */
.pubright {
  right: 20px;
  position: fixed;
  bottom: 50px;
  /* top:50%; transform: translateY(-50%); */
  width: 55px;
  z-index: 6;
}

.pubright {
  opacity: 0;
  right: -55px;
  transition: all 0.3s ease;
}

.pubrightbtn {
  color: #fff;
  margin-top: 10px;
  position: relative;
}

.pubrightbtn {
  width: 100%;
  line-height: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  background: #005845;
}

.pubright_top {
  background: var(--colors);
}

.pubright_weixin {
  background: rgba(53, 168, 219, 0.8);
}

.pubright_msg {
  background: rgba(18, 98, 161, 0.8);
}

.pubright_msg i {
  font-size: 23px;
}

.pubright_weixin i {
  font-size: 23px;
}

.pubright_top i {
  font-size: 24px;
}

.pubrightsub {
  width: 180px;
  text-align: left;
  box-sizing: content-box;
  left: -190px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  padding-right: 10px;
}

.pubrightsubm {
  padding: 25px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pubrighth5 {
  font-weight: 200;
  padding-bottom: 20px;
  color: #1262a1;
  font-size: 18px;
  line-height: 1;
}

.pubrightsub img {}

.pubrightsub {
  transition: all 0.5s ease;
  top: 42%;
  opacity: 0;
  visibility: hidden;
  left: -190px;
}

.pubrightbtn:hover .pubrightsub {
  opacity: 1;
  top: 50%;
  visibility: visible;
}

.pubrightsub1 {
  width: 230px;
  left: -240px;
}

.pubrighth5p1 {
  color: #444;
  line-height: 24px;
}

.pubrighticon1,
.pubrighticon2 {
  position: relative;
  margin-right: 10px;
  top: 2px;
}

.pubrighticon1 {
  font-size: 20px;
}

.pubrighticon2 {
  font-size: 20px;
}

.pubrighth5p2 {
  margin-top: 10px;
}

.showMan {
  opacity: 1;
  transition: all 0.5s ease;
  right: 20px;
  /* transform: scale(1) rotate(-360deg) translate(0px);
      -webkit-transform: scale(1) rotate(-360deg) translate(0px);
      -moz-transform: scale(1) rotate(-360deg) translate(0px);
      -o-transform: scale(1) rotate(-360deg) translate(0px); */
}

/*  */