:root {
  --head: 4.166vw;
  --color: #D7000F;
}

.co-h2 {
  color: #222;
}

.co-h3 {
  color: #333;
}

.co-h6 {
  color: #666;
}

.co-h8 {
  color: #888;
}

.co-h9 {
  color: #999;
}

.co-w {
  color: #fff;
}

.co-m {
  color: var(--color);
}

.radio20 {
  border-radius: 20px;
  overflow: hidden;
}

#svgbox {
  display: none;
}

.svgTransiton * {
  transition: all ease .3s;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.C-more {
  position: relative;
  padding: 0.52vw 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: max-content;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}

.C-more:hover {
  border-radius: 10px;
}

.C-more .tx {
  position: relative;
  z-index: 3;
  line-height: 1;
  height: 1em;
  overflow: hidden;
  transform: translateX(-2.968vw);
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-timing-function: ease;
  transition-duration: 0.5s;
}

.C-more:hover .tx {
  transform: translateX(0);
}

.C-more .tx span {
  display: block;
  transition: all ease .3s;
  min-width: 4em;
}

.C-more:hover .tx span {
  transform: translateY(-100%);
}

.C-more .jt::after {
  content: '';
  display: block;
  height: 0.052vw;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-timing-function: ease;
  transition-duration: 0.5s;
  z-index: 0;
}

.C-more:hover .jt::after {
  height: 100%;
}

.C-more::before {
  content: '';
  display: block;
  width: 1.041vw;
  margin-left: 1.406vw;
  margin-right: 0.52vw;
  height: 1em;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-timing-function: ease;
  transition-duration: 0.5s;
  transform: translateX(-2.968vw);
  position: relative;
  z-index: 3;
}

.C-more::after {
  content: '';
  display: block;
  width: 1.041vw;
  margin-left: 0.312vw;
  height: 1em;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-timing-function: ease;
  transition-duration: 0.5s;
  position: relative;
  z-index: 3;
}

.C-more:hover::before {
  transform: translateX(0);
}

.C-more:hover::after {
  transform: translateX(100%);
}






/* theme1 */

.C-more.theme1 .tx span:nth-child(1) {
  color: #fff;
}

.C-more.theme1 .tx span:nth-child(2) {
  color: #fff;
}

.C-more.theme1 .jt::after {
  background: #fff;
}

.C-more.theme1:hover .jt::after {
  background: var(--color);
}

.C-more.theme1::before {
  background: url('/img/icon-more1.svg') no-repeat center/contain;
}

.C-more.theme1::after {
  background: url('/img/icon-more1.svg') no-repeat center/contain;
}

/* theme2 */
.C-more.theme2 .tx span:nth-child(1) {
  color: var(--color);
}

.C-more.theme2 .tx span:nth-child(2) {
  color: #fff;
}

.C-more.theme2 .jt::after {
  background: var(--color);
}

.C-more.theme2::before {
  background: url('/img/icon-more1.svg') no-repeat center/contain;
}

.C-more.theme2::after {
  background: url('/img/icon-more2.svg') no-repeat center/contain;
}

/* -----------------------------------------head,foot-------------------------------------- */

.head1 {
  height: var(--head);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  /* color: #fff; */
  color: #222;
  transition: opacity ease .3s, background ease .3s;
}

.isback .head1 {
  opacity: 0;
  pointer-events: none;
}

.blackHead .head1 {
  color: #222;
  box-shadow: 0vw 0.052vw 0.052vw 0vw rgba(0, 0, 0, 0.05);
}

.head1:hover {
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0vw 0.052vw 0.052vw 0vw rgba(0, 0, 0, 0.05);
  color: #222;
}

.scroll .head1 {
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0vw 0.052vw 0.052vw 0vw rgba(0, 0, 0, 0.05);
  color: #222;
}

.head1 .C-wrap {
  height: 100%;
}

.head1 .logo {
  width: 8.958vw;
}

.head1 .menu {
  gap: 3.333vw;
  height: 100%;
  overflow: visible;
}

.head1 .link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}

.head1 .link:hover>a,
.head1 .link.on>a {
  color: var(--color);
}

.head1 a {
  transition: none;
}

.head1 .link>a {
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.head1 .link>a span {
  display: block;
  transition: all 0.6s;
}

.head1 .link>a span:nth-child(2) {
  position: absolute;
  /* left: 0; */
  bottom: 0;
  color: var(--color);
  opacity: 0;
  transform: translateY(50px);
}

.head1 .link:hover>a span:nth-child(1) {
  transform: translateY(-50px);
  opacity: 0;
}

.head1 .link:hover>a span:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
}


.head1 .link .down-jt {
  width: 0.729vw;
  height: 0.729vw;
  margin-left: 0.416vw;
  background: url('/img/head-i1.svg') no-repeat center/contain;
}

.head1 .link .down-jt,
.scroll .head1 .link .down-jt,
.head1:hover .link .down-jt,
.blackHead .head1 .link .down-jt {
  background: url('/img/head-i1-h.svg') no-repeat center/contain;
}

.head1 .link:hover .down-jt,
.head1 .link.on .down-jt {
  background: url('/img/head-i1-h2.svg') no-repeat center/contain;
}

.head1 .down {
  width: 62.5vw;
  padding: 2.083vw 9.635vw;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0vw 0.052vw 1.041vw 0vw rgba(0, 0, 0, 0.10);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
}

.head1 .link:hover .down {
  opacity: 1;
  pointer-events: visible;
}

.isback .link:hover .down {
  pointer-events: none;
}

.head1 .down a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.down .down-ev {
  display: flex;
  flex-wrap: wrap;
  gap: var(--between);
}

.down .lv2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.down .you {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--between);
}

.down1 {
  --between: 0.52vw;
  gap: var(--between);
}

.down1 .lv2 {
  border-radius: 2px;
  background: #F5F5F5;
  color: #222;
  padding: 0.468vw 0;
  width: 10.416vw;
}

.down .lv2.size2 {
  width: 100%;
}

.down1 .lv3 {
  padding: 0.468vw 0;
  width: 10.416vw;
  color: #272727;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
  background: #FFF;
  box-shadow: 0.104vw 0.104vw 0.52vw 0vw rgba(0, 0, 0, 0.05), -0.104vw -0.104vw 0.208vw 0vw rgba(0, 0, 0, 0.05) inset, 0.208vw 0.104vw 0.52vw 0vw rgba(255, 255, 255, 0.30) inset;
  transition: all ease .3s;
  position: relative;
}

.down .lv3.size1 {
  width: 32.291vw;
}

.down .lv3::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(93deg, #EF5660 5.28%, #D7000F 91.2%);
  opacity: 0;
}

.down .lv3:hover {
  color: #FFF;
  background: transparent;
}

.down .lv3:hover::before {
  opacity: 1;
}


.down2 {
  --between: 0.52vw;
  gap: var(--between);
}

.down2 .lv2 {
  border-radius: 10px;
  background: linear-gradient(90deg, #E8E8E8 0%, #E8E8E8 100%);
  box-shadow: 0vw 0.208vw 0.52vw 0vw rgba(255, 255, 255, 0.20) inset, -0.208vw 0.208vw 0.52vw 0vw rgba(0, 0, 0, 0.10) inset;
  color: #222;
  padding: 0.468vw 0;
  width: 10.416vw;
}

.down2 .lv3 {
  padding: 0.468vw 0;
  width: 10.416vw;
  color: #272727;
  border-radius: 30px;
  overflow: hidden;
  background: #F5F5F5;
  box-shadow: 0vw 0.208vw 0.52vw 0vw rgba(255, 255, 255, 0.20) inset, -0.208vw 0.208vw 0.52vw 0vw rgba(0, 0, 0, 0.10) inset;
  transition: all ease .3s;
  position: relative;
}

.head1 .down3 {
  border-radius: 10px;
  background: #F7F7F7;
  padding: 1.041vw 1.666vw;
  color: #111;
  width: max-content;
  min-width: 6.25vw;
  gap: 0.833vw;
}

.down3 a:hover {
  color: var(--color);
}


.head1 .search {
  width: 1.041vw;
  margin-left: 1.354vw;
}

.hoverImgSwitch img:nth-child(2) {
  display: none;
}

/* .blackHead .hoverImgSwitch img:nth-child(1) {
  display: none;
}

.blackHead .hoverImgSwitch img:nth-child(2) {
  display: block;
}

.head1:hover .hoverImgSwitch img:nth-child(1) {
  display: none;
}

.head1:hover .hoverImgSwitch img:nth-child(2) {
  display: block;
} */
.head1 .hoverImgSwitch img:nth-child(1) {
  display: none;
}

.head1 .hoverImgSwitch img:nth-child(2) {
  display: block;
}

/* .scroll .head1 .hoverImgSwitch img:nth-child(1) {
  display: none;
}

.scroll .head1 .hoverImgSwitch img:nth-child(2) {
  display: block;
} */

.blackHead .head-zhanwei {
  display: block;
  height: var(--head);
}

.foot1 {
  padding: 5.364vw 0 0;
}

.foot1 .zuo {
  width: 12.656vw;
}

.foot1 .zuo .logo {
  width: 100%;
}

.foot1 .zuo .share {
  margin-top: 1.354vw;
  gap: 1.25vw;
}

.foot1 .zuo .share a {
  display: block;
  width: 1.041vw;
  position: relative;
}

.foot1 .zuo .share .qr {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 20px;
  width: 120px;
  border-radius: 5px;
  box-shadow: 0 0 5px #aaa;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
}

.foot1 .zuo .share a:hover .qr {
  opacity: 1;
  pointer-events: visible;
}

.foot1 .zuo .share .qr img {
  width: 100%;
}

.foot1 .foot-link {
  gap: 3vw;
}

.foot1 .foot-link ul {
  max-width: 6.77vw;
}

.foot1 .foot-link a {
  display: block;
}

.foot1 .foot-link a:hover {
  color: var(--color);
}

.foot1 .foot-link .a1 {
  font-weight: bold;
  margin-bottom: 1.666vw;
}

.foot1 .foot-link .a2 {
  color: #888;
  margin-bottom: 1.041vw;
}

.foot2 {
  padding: 3.75vw 0 2.083vw;
}

.foot2 .ev .t1 {
  margin-bottom: 0.312vw;
}

.foot2 .ev .t2 {
  font-weight: bold;
}

.foot3 {
  border-top: 1px solid #E7E7E7;
  padding: 0.677vw 0 1.041vw;
  color: #888;
}

.foot3 a:hover {
  color: var(--color);
}

.foot4 {
  position: fixed;
  right: 2.812vw;
  bottom: 10.416vw;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
  gap: 1.041vw;
}

.foot4 .ev {
  position: relative;
}

.foot4 .ev .icon {
  width: 2.916vw;
  height: 2.916vw;
  cursor: pointer;
  border-radius: 100%;
  transition: all ease .3s;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.foot4 .ev .text {
  padding: 0.26vw 0.52vw;
  border-radius: 30px;
  background: #D7000F;
  color: #FFF;
  position: absolute;
  right: 100%;
  margin-right: 0.364vw;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
}

.foot4 .ev:hover .text {
  opacity: 1;
  pointer-events: visible;
}

.foot4 .ev:hover .icon {
  box-shadow: 0vw 0.208vw 0.52vw rgba(0, 0, 0, 0.33);
}

.scroll .foot4 {
  opacity: 1;
  pointer-events: visible;
  transition: all ease .3s 2s;
}
















/* -----------------------------------------é¦–é¡µ-------------------------------------- */
.loading-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: #fff;
  transition: all 600ms;
}

.loading-wrap.hideVideo {
  opacity: 0;
  pointer-events: none;
}

.loading-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home1 {
  opacity: 0;
}

.home1.showBanner {
  opacity: 1;
}

.home2 {
  opacity: 0;
}

.home2.showBanner {
  opacity: 1;
}

.home2 {
  padding-left: 8.333vw;
}

.home-title1 .icon {
  width: 1.875vw;
  margin-bottom: 0.52vw;
}

.home2 .zuo {
  width: 100%;
  flex: 1;
}

.home2 .zuo .list {
  gap: 1.302vw;
  padding: 4.531vw 0;
  position: relative;
}

.home2 .zuo .list::after,
.home2 .zuo .list::before {
  content: '';
  display: block;
  position: absolute;
  left: 3.177vw;
  top: 0;
  height: 100%;
}

.home2 .zuo .list::after {
  border-right: 1px dashed #EAEAEA;
  z-index: 2;
}

.home2 .zuo .list::before {
  width: 0.052vw;
  background: linear-gradient(to bottom, #fff, transparent 10%, transparent 90%, #fff);
  z-index: 5;
}

.home2 .zuo .ev {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.home2 .zuo .ev .y1 {
  width: 6.406vw;
  height: 6.406vw;
  margin-right: 3.645vw;
  border-radius: 100%;
  position: relative;
  transition: all linear .3s;
}

.home2 .zuo .ev.on .y1 {
  box-shadow: 0vw 0.208vw 0.52vw 0vw rgba(0, 0, 0, 0.08) inset, 0vw -0.52vw 1.562vw 0vw rgba(255, 255, 255, 0.08) inset;
  filter: drop-shadow(0vw 0vw 0vw rgba(0, 0, 0, 0.10));
}

.home2 .zuo .ev .y1 svg {
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}

.home2 .zuo .ev .y2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home2 .zuo .ev .y3 {
  width: 5.156vw;
  height: 5.104vw;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0vw 0.52vw 1.041vw 0vw rgba(0, 0, 0, 0.02) inset, 0vw -1.041vw 2.604vw 0vw rgba(255, 255, 255, 0.40) inset;
}

.path-loop-bg {
  stroke: transparent;
  stroke-miterlimit: 10;
  stroke-width: 10px;
  fill: #fff;
  opacity: .1;
}

.path-loop {
  stroke-dashoffset: 157px;
  fill: none;
  stroke-miterlimit: 10;
  stroke-width: 10px;
  transition: 0.6s;
}

.home2 .zuo .ev.on .path-loop {
  animation: index_circle 6s linear forwards;
}

@keyframes index_circle {
  0% {
    stroke-dashoffset: 157px;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.home2 .zuo .ev .y1 .icon {
  position: relative;
  width: 2.708vw;
}

.home2 .zuo .ev .y1 .icon img {
  transition: all ease .3s;
}

.home2 .zuo .ev .y1 .icon img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.home2 .zuo .ev.on .y1 .icon img:nth-child(1) {
  opacity: 0;
}

.home2 .zuo .ev.on .y1 .icon img:nth-child(2) {
  opacity: 1;
}

.home2 .zuo .t1 {
  color: #666;
}

.home2 .zuo .ev.on .t1 {
  color: var(--color);
}

.home2 .you {
  width:51.989vw;
}

.home3 {
  position: static;
  height: 200vh;
  height: 150vh;
}

.home3 .bg {
  overflow: hidden;
}

.home3 .main {
  position: sticky;
  left: 0;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.home3 .main .bg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


.home3 .intr {
  padding: 0 15.625vw;
}

.home3 .intr .t2 {
  margin: 1.041vw 0 2.5vw;
}



.home4 {
  position: static;
  height: 250vh;
}

.home4 .main {
  position: sticky;
  left: 0;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.home4 .sec1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  transition: all ease .3s;
}

.home4 .sec1.out {
  opacity: 0;
  transition: all ease .4s;
}

.home4 .sec1 .t1 {
  padding: 0 1.354vw;
  line-height: 1.5;
  position: relative;
}

.home4 .sec1 .t1 {
  background-image: linear-gradient(45deg, #4E76C1, #D9E2FB, #4E76C1, #97B0E8);
  background-size: 300% 100%;
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
  background-position: 150% 0;
  animation: text-bg 5s ease infinite;
}

@keyframes text-bg {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

.home4 .sec1 .t1::before {
  content: '';
  display: block;
  width: 1.875vw;
  height: 0.833vw;
  position: absolute;
  right: 100%;
  top: 0;
  background: url('/img/home2-1.svg') no-repeat center/contain;
  transform: rotate(180deg);
}

.home4 .sec1 .t1::after {
  content: '';
  display: block;
  width: 1.875vw;
  height: 0.833vw;
  position: absolute;
  left: 100%;
  bottom: 0;
  background: url('/img/home2-1.svg') no-repeat center/contain;
}

.home4 .sec2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 6;
  background: #fff;
  opacity: 0;
  transition: all ease .3s;
}

.home4 .sec2.on {
  opacity: 1;
}

.home4 .sec2 .icon {
  width: 26.979vw;
}

.home4 .sec2 .icon.prev {
  margin-left: 8.333vw;
}

.home4 .sec2 .icon.next {
  margin-left: auto;
  margin-right: 5.208vw;
}

.home4 .sec2 .text {
  margin: -2.343vw 0 1.145vw;
}

.home4 .sec2 .t2 {
  margin-top: 0.52vw;
}

.home4 .sec2 .list {
  gap: 6.25vw;
  margin: 5vw 0 0;
}

.home4 .sec2.on .list {
  transition-delay: 0.4s;
}

.home4 .sec2 .list .ev {
  max-width: 20.833vw;
  font-weight: bold;
}

.home4 .sec2 .list .t4 {
  margin-top: 1.25vw;
  color: #666;
}

.ani-left {
  transition: 0.6s ease;
  opacity: 0;
  transform: translateX(-2.604vw);
}

.home4 .on .ani-left {
  opacity: 1;
  transform: translateX(0);
}

.ani-right {
  transition: 0.6s ease;
  opacity: 0;
  transform: translateX(2.604vw);
}

.home4 .on .ani-right {
  opacity: 1;
  transform: translateX(0);
}


.ani-fadeIn {
  transition: 0.6s ease;

  opacity: 0;
  transform: translateY(2.604vw);
}

.home4 .on .ani-fadeIn {
  opacity: 1;
  transform: translateY(0);
}

.home-title2 span {
  position: relative;
  padding: 0 1.666vw;
  font-weight: bold;
}

.home-title2 span::before {
  content: '';
  display: block;
  width: 1.875vw;
  height: 0.833vw;
  position: absolute;
  right: 100%;
  top: 0;
  background: url('/img/home2-1.svg') no-repeat center/contain;
  transform: rotate(180deg);
}

.home-title2 span::after {
  content: '';
  display: block;
  width: 1.875vw;
  height: 0.833vw;
  position: absolute;
  left: 100%;
  bottom: 0;
  background: url('/img/home2-1.svg') no-repeat center/contain;
}

.home-title3 span {
  position: relative;
  font-weight: bold;
}

.home-title3 span::after {
  content: '';
  display: inline-block;
  width: 1.875vw;
  height: 0.833vw;
  margin: auto 0 0 1.666vw;
  background: url('/img/home2-1.svg') no-repeat center/contain;
}

.home5 {
  padding: 2.916vw 0;
}

.home5 .sec1 {
  padding: 4.166vw;
}

.home5 .sec1 .swiper-slide {
  /* width: auto; */
  cursor: pointer;
  width: 110px;
  text-align: center;
}

.home5 .sec1 .hpic {

  height: 3.437vw;
  transition: all ease .3s;
}

.home5 .sec1 .on .hpic {
  transform: scale(1.18);
  display: inline-block;
}

.home5 .sec1 p {
  color: #CCC;
  margin-top: 0.625vw;
  text-align: center;
}


.home5 .sec2 .swiper-slide {
  width: calc(50% - 1.302vw);
  border-radius: 20px;
  overflow: hidden;
}


.home5 .sec2 .swiper-slide .bg img {
  transition: all ease 1s;
}

.home5 .sec2 .swiper-slide:hover .bg img {
  transform: scale(1.1);
}

.home5 .sec2 .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 2.5vw 3.02vw 3.02vw 2.812vw;
  background: rgba(0, 0, 0, 0.40);
  color: #fff;
}

.home5 .sec2 .intr .icon {
  width: 3.333vw;
  margin-right: 2.083vw;
}

.home5 .sec2 .intr .t2 {
  margin-top: 1.145vw;
}

.home5 .sec2 .intr .C-more {
  margin: auto 0 0 auto;
}

.home6 .sec1 {
  margin: 2.083vw 0;
  border-radius: 20px;
  background: #F7F7F7;
  overflow: hidden;
}

.home6 .sec1 .intr {
  padding: 2.083vw 1.77vw;
  width: 100%;
  flex: 1;
}

.home6 .sec1 .intr .t2 {
  margin: 2.083vw 0 0.625vw;
  margin-right: 2.447vw;
}

.home6 .sec1 .intr .t3 {
  margin-right: 2.447vw;
}


.home6 .sec1 .intr .kb {
  margin-top: auto;
}

.home6 .sec1 .pic {
  width: 54.687vw;
  height: 31.25vw;
  overflow: hidden;
}

.home6 .sec1 .pic img {
  object-fit: cover;
  height: 100%;
}

.home6 .sec2 {
  gap: 2.5vw;
}

.home6 .sec2 .ev {
  width: 26.041vw;
  border-radius: 20px;
  background: #F7F7F7;
  overflow: hidden;
  transition: all ease .3s;
}

.home6 .sec2 .pic {
  height: 16.666vw;
  overflow: hidden;
}

.home6 .sec2 .pic img {
  object-fit: cover;
  height: 100%;
}

.home6 .sec2 .ev:hover {
  background: #fff;
  box-shadow: 0vw 0vw 1.562vw rgba(0, 0, 0, 0.10);
}

.home6 .sec2 .ev .intr {
  padding: 2.083vw 1.77vw;
}

.home6 .sec2 .ev .intr .t2 {
  margin: 1.041vw 0 3.541vw;
  height: calc(1.4 * 2em);
}

.home7 {
  padding: 0 0 6.25vw;
}

.home7 .list {
  padding-top: 4.166vw;
  gap: 3.125vw;
  width: 100%;
}

.home7 .swiper {
  width: 100%;
  padding: 0.052vw;
}

.home7 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.home7 .swiper-slide {
  width: 11.77vw;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.home8 {
  padding: 0 0 6.25vw;
}

.home8 .zuo {
  padding: 2.604vw 0 0 8.333vw;
}

.home8 .you {
  width: 71.354vw;
  border-radius: 20px;
  background: #F7F7F7;
  position: relative;
}

.home8 .you .bg {
  width: 39.531vw;
  position: absolute;
  top: 6.614vw;
  right: 4.843vw;
  opacity: 0.96;
  mix-blend-mode: difference;
  z-index: 1;
}

.home8 .you form {
  padding: 4.895vw 8.333vw 0 4.635vw;
  position: relative;
  z-index: 3;
}

.home8 .you .form-le {
  width: 28.125vw;
  gap: 1.041vw;
}

.home8 .you .form-ri {
  width: 28.125vw;
  gap: 1.041vw;
}

.home8 .you input {
  width: 100%;
  height: 4.166vw;
  padding: 0 1.25vw;
  background: transparent;
  outline: none;
  border-radius: 10px;
  border: 1px solid #B8B8B8;
  color: #222;
  font-size: inherit;
}

.home8 .you input::placeholder {
  color: #666;
}

.home8 .you textarea {
  resize: none;
  width: 100%;
  height: 14.583vw;
  padding: 1.406vw 1.25vw;
  background: transparent;
  outline: none;
  border-radius: 10px;
  border: 1px solid #B8B8B8;
  color: #222;
  font-size: inherit;
}

.home8 .you textarea::placeholder {
  color: #666;
}


.home8 .yinsi {
  color: #666;
}

.home8 .yinsi input {
  display: none;
}

.home8 .yinsi .checkMode {
  width: 0.937vw;
  height: 0.937vw;
  background: url('/img/icon-check1.svg') no-repeat center/contain;
  margin-right: 0.312vw;
  cursor: pointer;
}

.home8 .yinsi input:checked+.checkMode {
  background: url('/img/icon-check2.svg') no-repeat center/contain;
}

.home8 .yinsi a:hover {
  color: var(--color);
}

.home8 .bigtext {
  transform: translateX(-25.937vw);
  color: var(--color);
  padding: 1.875vw 0 0.364vw;
}

.home8 .bigtext span {
  display: inline-block;
  font-size: 6.25vw;
  line-height: 1;
  position: relative;
}

.home8 .bigtext span::after {
  content: '';
  display: inline-block;
  width: 8.02vw;
  height: 2.864vw;
  margin-left: 1.822vw;
  background: url('/img/home8-1.svg') no-repeat center/contain;
}

/* -----------------------------------------注释-------------------------------------- */
.C-banner {
  position: relative;
}

.C-banner .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.40); */
}

.C-banner .intr .t1 {
  color: #fff;
  line-height: 1;
}

.C-banner .intr .icon {
  margin-left: 1.041vw;
  width: 2.812vw;
  margin-top: auto;
}

.contact2 .zuo {
  width: 41.666vw;
}

.contact2 .zuo .pic {
  display: none;
}

.contact2 .zuo .pic.on {
  display: block;
}

.contact2 .you {
  flex: 1;
  padding: 0 0 0 6.406vw;
}

.contact2 .you .t2 {
  margin: 2.864vw 0 1.406vw;
}

.contact2 .you .ul li {
  margin-bottom: 1.406vw;
  padding-left: 2.343vw;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.contact2 .you .ul li::before {
  content: '';
  width: 1.25vw;
  height: 0.104vw;
  display: block;
  background: var(--color);
  position: absolute;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all ease .3s;
}

.contact2 .you .ul li.on::before {
  transform: scaleX(1);
}





.contact3 {
  padding: 0 0 7.968vw;
}

.contact3 .ev {
  width: 19.375vw;
  color: #2D2926;
}

.contact3 .ev .t1 {
  padding: 0 1.041vw 0.937vw 1.041vw;
  border-bottom: 1px solid #999;
  margin-bottom: 1.875vw;
}

.contact3 .ev .bottom {
  padding: 0 0 0 1.041vw;
}

.contact3 .ev .t3 {
  color: #999;
  margin: 0.781vw 0;
}

.contact3 .ev .you {
  width: 6.354vw;
}

/* -----------------------------------------注释-------------------------------------- */
.news2 {
  padding: 5.208vw 0 3.906vw;
}

.news2 .swiper-slide {
  background: #FBFBFB;
  border-radius: 20px;
  overflow: hidden;
}

.news2 .zuo {
  width: 41.666vw;
  height: 31.145vw;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.news2 .you {
  flex: 1;
  padding: 0 5.625vw 0 6.25vw;
  gap: 1.875vw;
}

.news2 .swiper-pagination {
  left: 47.916vw;
  bottom: 5.208vw;
  z-index: 10;
  text-align: left;
}

.news2 .swiper-pagination-bullet {
  width: 4.27vw;
  height: 0.26vw;
  border-radius: 18px;
  overflow: hidden;
  background: #DBDBDB;
  opacity: 1;
  position: relative;
}

.news2 .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(93deg, #EF5660 5.28%, #D7000F 91.2%);
  transform: scaleX(0);
  transition: all ease 0.3s;
  transform-origin: left;
}

.news2 .swiper-pagination-bullet-active {
  opacity: 1;
}

.news2 .swiper-pagination-bullet-active::after {
  transform: scaleX(1);
  transition: all ease 3s;
}

.news3 .list {
  border-bottom: 1px solid #F0F0F0;
  gap: 0 6.562vw;
}

.news3 .list a {
  padding: 0 0.625vw 1.51vw 0.625vw;
  position: relative;
}

.news3 .list a.on::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 0.208vw;
  margin-top: -0.104vw;
  background: var(--color);
}

.news3 .list a.on,
.news3 .list a:hover {
  color: var(--color);
}

.newsList {
  gap: 3.125vw 2.604vw;
}

.newsList .ev {
  border-radius: 20px;
  overflow: hidden;
  background: #F7F7F7;
}

.newsList .ev .bg2 {
  height: 16.666vw;
}

.newsList .ev .intr {
  padding: 1.979vw 1.666vw 3.333vw;
}

.newsList .ev .intr .t2 {
  margin: 0.885vw 0 1.458vw;
  transition: all ease .3s;
}

.newsList .ev:hover {
  background: #fff;
  box-shadow: 0vw 0vw 1.562vw rgba(0, 0, 0, 0.10);
}

.news4 .C-paging {
  margin-top: 5.416vw;
}

.C-paging {
  gap: 1.666vw;
}

.C-paging a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 1.562vw;
  height: 1.562vw;
  border-radius: 2px;
  overflow: hidden;
  background-image: linear-gradient(93deg, transparent 0%, transparent 50%, #EF5660 55.28%, #D7000F 91.2%);
  background-size: 300%;
  background-position: left;
}

.C-paging a.on,
.C-paging a:hover {
  background-position: right;
  color: #fff;
}

.C-paging a.icon svg {
  width: 1.354vw;
}

.C-paging a.icon path {
  fill: #999
}

.C-paging a.icon.on path,
.C-paging a.icon:hover path {
  fill: #fff
}

.C-paging .pages {
  gap: 0.729vw;
}

.news5 {
  padding-top: 2.083vw;
}

.news5 a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.news5 a:not(:last-child)::after {
  content: '';
  display: block;
  width: 0.468vw;
  height: 1em;
  margin: 0 0.781vw 0 0.572vw;
  background: url('/img/news5-1.svg') no-repeat center/contain;
}

.news5 .C-wrap,
.news6 .C-wrap {
  width: 62.5vw;
}

.news6 .title .info {
  gap: 2.083vw;
  padding: 2.083vw 0 0.52vw;
  border-bottom: 1px solid #EFEFEF;
}

.news6 .title .info .list {
  padding-left: 0.52vw;
  gap: 0.625vw;
}

.news6 .title .info .list .ev {
  position: relative;
}

.news6 .title .info .list .icon {
  width: 1.041vw;
  transition: all ease .3s;
}

.news6 .title .info .list .icon:hover {
  transform: scale(1.2);
}

.news6 .title .info .list .ev .down {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: none;
}

.news6 .title .info .list .ev.on .down {
  display: flex;
}

.news6 .title .info .list .ev .down .tt {
  margin-bottom: 10px;
  color: #333;
}

.news6 .title .info .list .ev .qr {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.news6 .title .info .list .ev .qr img {
  width: 300px;
}

#qrcodeCanvas {
  width: 300px;
  height: 300px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.news6 .empty img {
  margin: 3.125vw auto;
  width: auto;
  max-width: 100%;
  border-radius: 20px;
  transition: all ease .3s;
}

.news6 .empty img:hover {
  border-radius: 0;
}

.news6 .empty * {
  white-space: normal !important;
}


.news6 .fenye {
  padding: 5.312vw 0 6.406vw;
}

.news6 .fenye .zuo {
  gap: 1.041vw;
  width: 26.041vw;
}

.news6 .fenye .zuo a:hover {
  color: var(--color);
}

.C-btn {
  display: inline-block;
  color: #fff;
  border-radius: 74px;
  background-image: linear-gradient(93deg, #fff 0%, #fff 50%, #EF5660 55.28%, #D7000F 91.2%);
  background-size: 300%;
  background-position: right;
  transition: all ease .3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.C-btn:hover {
  background-position: left;
  color: var(--color);
  border: 1px solid var(--color);
}

.C-btn.theme1 {
  padding: 0.937vw 3.645vw;
}

.C-btn.theme2 {
  padding: 0.625vw 2.083vw;
}

.news7 .newsList {
  padding: 3.125vw 0 6.25vw;
}

/* -----------------------------------------注释-------------------------------------- */
.job2 form {
  background: #FBFBFB;
  border-radius: 60px;
}

.job2 input {
  padding: 0 2.187vw;
  height: 3.489vw;
  flex: 1;
  border: none;
  font-size: inherit;
  background: transparent;
}

.job2 input::placeholder {
  color: #666;
}

.job2 .C-btn {
  padding: 0 3.125vw;
  line-height: 3.489vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.job2 .C-btn .icon {
  width: 1.406vw;
  margin-left: 1.145vw;
}

.job3 {
  padding: 0 0 6.25vw;
}

.job3 .t1 {
  margin-bottom: 1.041vw;
}

.job3 .zuo {
  border-top: 1px solid #999;
  width: 18.645vw;
}

.job3 .zuo .item {
  padding: 1.25vw 0 2.083vw;
  border-top: 1px solid rgba(153, 153, 153, 0.50);
}

.job3 .zuo .item .name .icon {
  width: 1.041vw;
  cursor: pointer;
  transform: rotate(180deg);
}

.job3 .zuo .item.on .name .icon {
  transform: rotate(0);
}

.job3 .zuo .item .down {
  gap: 0.729vw;
  padding-top: 1.145vw;
}

.job3 .zuo .item label {
  gap: 0.52vw;
  cursor: pointer;
}

.job3 .zuo .item label input {
  display: none;
}

.job3 .zuo .item label .mode {
  width: 0.833vw;
  height: 0.833vw;
  background: url('/img/job3-2.svg') no-repeat center/contain;
}

.job3 .zuo .item label input:checked+.mode {
  background: url('/img/job3-2-h.svg') no-repeat center/contain;
}

.job3 .zuo .item label span {
  flex: 1;
}

.job3 .you {
  width: 54.375vw;
  gap: 3.125vw;
}

.job3 .you .item {
  width: 100%;
  padding: 1.822vw 3.125vw 2.395vw;
  border-radius: 20px;
  background: #FBFBFB;
  position: relative;
}

.job3 .you .item::before {
  content: '';
  display: block;
  width: 0.468vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scaleY(0);
  background: var(--color);
  transition: all ease .8s;
  transform-origin: top;
}

.job3 .you .item.on::before {
  transform: scaleY(1);
}

.job3 .you .item .top {
  cursor: pointer;
}

.job3 .you .item .t2 {
  margin-top: 0.416vw;
}

.job3 .you .item .top2 {
  margin-top: 2.76vw;
}

.job3 .you .item .t4 {
  margin-top: 0.625vw;
  flex: 1;
}

.job3 .you .item .C-more {
  margin-top: auto;
}

.job3 .you .item.on .C-more {
  opacity: 0;
}

.job3 .you .item .down {
  padding-top: 1.822vw;
  display: none;
}

.job3 .you .item .C-btn {
  margin-top: 1.458vw;
}

.job3 .you .C-paging {
  width: 100%;
  margin-top: 4.322vw;
}

/* -----------------------------------------注释-------------------------------------- */
.case2 {
  padding: 4.947vw 0 7.447vw;
}

.case2 .sec1 .t1 {
  width: 36.51vw;
}

.case2 .sec2 {
  margin-top: 7.447vw;
  gap: 4.166vw;
}

.case2 .sec2 .C-select {
  flex: 1;
}

.C-select {
  position: relative;
}

.C-select .simulate {
  width: 100%;
  position: relative;
  z-index: 20;
  padding: 0.625vw 0;
  background: #fff;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid #999;
  transition: all ease .3s;
}

.C-select:hover .simulate {
  border-bottom: 2px solid var(--color);
}

.C-select .simulate::after {
  content: '';
  display: block;
  width: 1.041vw;
  height: 1.041vw;
  margin-left: 0.625vw;
  background: url('/img/case2-1.svg') no-repeat center/contain;
  transition: all ease .3s;
}

.C-select:hover .simulate::after {
  transform: rotate(-180deg);
}

.C-select input {
  display: none;
}

.C-select .placeholder {
  display: none;
  flex: 1;
}

.C-select .name {
  flex: 1;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.C-select .name:empty {
  display: none;
}

.C-select .name:empty+.placeholder {
  display: block;
}


.C-select .options {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #5c5c5c;
  max-height: 15.625vw;
  padding: 0.52vw 0;
  z-index: 5;
  background: #fdfdfd;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
}

.C-select:hover .options {
  opacity: 1;
  pointer-events: visible;
}

.C-select .option {
  width: 100%;
  cursor: pointer;
  padding: 0.52vw 1.25vw;
  position: relative;
}

.C-select .option::before {
  content: '';
  display: block;
  width: 0.156vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scaleY(0);
  background: var(--color);
  transition: all ease .5s;
  transform-origin: top;
}

.C-select .option:hover {
  background: #f5f5f5;
  color: var(--color);
}

.C-select .option:hover::before {
  transform: scaleY(1);
}

.C-select .option.on {
  color: #000;
  font-weight: bold;
}

.case3 {
  padding: 0 0 6.25vw;
}

.caseList {
  gap: 3.125vw 2.604vw;
}

.caseList .ev {
  border-radius: 20px;
  overflow: hidden;
  background: #F7F7F7;
}

.caseList .ev:hover {
  background: #fff;
  box-shadow: 0vw 0vw 1.562vw rgba(0, 0, 0, 0.10);
}

.caseList .ev .bg2 {
  height: 16.666vw;
  overflow: hidden;
}

.caseList .ev .intr {
  padding: 1.979vw 1.666vw 3.333vw;
}

.caseList .ev .intr .t1 {
  gap: 1.041vw;
}

.caseList .ev .intr .t2 {
  margin: 0.885vw 0 1.458vw;
  color: #222;
}

.case3 .C-paging {
  margin-top: 4.166vw;
}

.case5 {
  padding-bottom: 6.25vw;
}

.case5 .list {
  gap: 2.604vw;
  margin-top: 3.125vw;
}

.case5 .ev .bg2 {
  height: 20.833vw;
  border-radius: 20px;
  overflow: hidden;
}

.case5 .ev .intr {
  padding: 1.041vw 0 0;
}

.case5 .ev .intr .t1 {
  color: #333;
  transition: all ease .3s;
}

.case5 .ev:hover .intr .t1 {
  color: var(--color);
}

.case5 .ev .intr .t2 {
  margin: 1.041vw 0 1.562vw;
}

/* -----------------------------------------注释-------------------------------------- */
.about1 {
  position: relative;
  z-index: 1;
  height: 270vh;
}

.about1 .bg-group {
  position: sticky;
  left: 0;
  top: 0;
}

.about1 .bg2 img {
  height: 100vh;
}

.about1 .lk1 {
  width: 100%;
  height: 100vh;
  margin-top: -100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 0;
  z-index: 1;
}

.about1 .lk2 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.about1 .pic {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}

.about1 .pic::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% - 4px);
  height: calc(100% - 4px);

  border-left: 60vw solid #fff;
  border-right: 60vw solid #fff;
  border-top: 60vh solid #fff;
  border-bottom: 60vh solid #fff;
  z-index: 3;

  box-sizing: content-box;
}

.about1 .pic img {
  width: 31.25vw;
  max-width: none;
  position: relative;
  z-index: 1;
}

.about1 .pic svg {
  width: 100%;
}

.about2 {
  padding: 0 0 9.27vw;
  position: relative;
  z-index: 5;
  background: #fff;
}

.lk3 {
  position: relative;
  margin-top: -55vh;
  width: 100%;
}


.about2 .t2 {
  margin: 9.218vw auto 0;
  width: 59.166vw;
}

.about3 {
  padding: 0 11.458vw 11.614vw;
  position: relative;
  z-index: 5;
  background: #fff;
}

.about3 .list {
  margin-top: 3.333vw;
  gap: 2.968vw;
}

.about3 .list .ev {
  padding: 1.562vw 1.041vw 0;
  border-top: 2px solid #E7E7E7;
}

.about3 .list .ev .t3 {
  margin-top: 0.52vw;
}

.about4 {
  padding: 4.583vw 0 3.125vw;
  background: #FBFBFB;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.about4 .swiper {
  padding: 4.895vw 0 2.239vw;
}

.about4 .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  cursor: pointer;
}

.about4 .swiper-slide .icon {
  width: 1.25vw;
  position: relative;
}

.about4 .swiper-slide .icon img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transform: scaleX(0);
  transition: all ease .3s;
}

.about4 .swiper-slide-active .icon img:nth-child(1) {
  opacity: 0;
}

.about4 .swiper-slide-active .icon img:nth-child(2) {
  opacity: 1;
  transform: scaleX(1);
}

.about4 .swiper-slide .you {
  width: 12.135vw;
  opacity: 0.4;
  margin: 0 0 0 1.145vw;
}

.about4 .swiper-slide-active .you {
  opacity: 1;
}

.about4 .swiper-slide .t1 {
  line-height: 1;
}

.about4 .swiper-slide .t2 {
  margin: 2.083vw 0;
}

.about4 .swiper-slide .t4 {
  font-size: 6.666vw;
  color: #F9E8E9;
  font-weight: bold;
  line-height: 0.7;
  position: absolute;
  left: 0.416vw;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all ease .5s;
}

.about4 .swiper-slide-active .t4 {
  transform: scaleX(1);
  transition: all ease .5s .5s;
}

.about4 .swbtn1 {
  margin: 0 2.916vw;
}

.swbtn1 {
  width: 3.333vw;
  height: 3.333vw;
  --svgBg: #D7000F;
  --svgColor: #fff;
  cursor: pointer;
  transition: all ease .3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swbtn1:hover {
  --svgBg: #D9D9D9;
}

.swbtn1.prev {
  left: 0;
}

.swbtn1.next {
  right: 0;
}

.about5 {
  padding: 6.979vw 0 4.791vw;
}

.about5 .map {
  width: 78.281vw;
  margin-top: 3.333vw;
}

.about5 .item {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.about5 .item .point::before {
  content: '';
  display: block;
  width: 1.145vw;
  height: 1.145vw;
  margin-top: -0.312vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  background: url('/img/about5-2.svg') no-repeat center/contain;
}

.about5 .item .point span {
  display: block;
  width: 0.833vw;
  height: 0.833vw;
  position: relative;
}

.about5 .item .point span::after {
  content: '';
  display: block;
  width: 3.02vw;
  height: 3.02vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: rgba(215, 0, 15, 0.5);
  border-radius: 50%;
  animation: kuo 3s 1.5s linear infinite;
}

.about5 .item .point span::before {
  content: '';
  display: block;
  width: 150%;
  height: 150%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: rgba(215, 0, 15, 0.8);
  border-radius: 50%;
  animation: kuo 3s linear infinite;
}

@keyframes kuo {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    /* opacity: 0.2; */
  }

  100% {
    transform: translate(-50%, -50%) scale(3.2);
    opacity: 0;
  }
}

.about5 .item .down {
  position: absolute;
  left: 50%;
  top: 3.385vw;
  transform: translateX(-50%);
  min-width: 17.291vw;
  border-radius: 20px;
  background: #FFF;
  padding: 0.625vw 1.562vw 1.822vw;
  overflow: hidden;
  box-shadow: 0 0 0.156vw #eee;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
}

.about5 .item:hover .down {
  opacity: 1;
  pointer-events: visible;
}

.about5 .item .down::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0.572vw;
  background: linear-gradient(93deg, #EF5660 5.28%, #D7000F 91.2%);
}

.about5 .item .down .t2 {
  margin-top: 0.26vw;
}




.about6 {
  padding-bottom: 10.937vw;
}

.about6 .swiper {
  padding: 5.416vw 0;
}

.about6 .swiper-father {
  padding: 0 14.166vw;
}

.about6 .swiper-slide {
  width: 17.812vw;
  transition: all ease .3s;
  --bg: rgba(255, 255, 255, 0.6);
}

.about6 .swiper-slide::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
}

.about6 .swiper-slide-active {
  --bg: rgba(255, 255, 255, 0);
  box-shadow: 0vw 0.208vw 1.145vw 1.25vw rgba(171, 171, 171, 0.21);
}

.about6 .swbtn1 {
  margin: 0 2.916vw;
}

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

.about6 .swiper-slide-prev,
.about6 .swiper-slide-next {
  --bg: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.208vw 0.833vw -0.156vw rgba(0, 0, 0, 0.25);
}

/* -----------------------------------------注释-------------------------------------- */
.pj2 {
  padding: 8.75vw 0 6.25vw;
}

.pj2 .t2 {
  margin: 2.083vw auto 0;
  width: 57.708vw;
}

.pj3 .zuo {
  width: 5.208vw;
}

.pj3 .zuo .circle {
  width: 5.208vw;
  height: 5.208vw;
  color: #fff;
  border-radius: 100%;
  background: var(--Linear, linear-gradient(93deg, #EF5660 5.28%, #D7000F 91.2%));
  box-shadow: -0.104vw -0.104vw 0.208vw 0vw rgba(0, 0, 0, 0.05) inset, 0.208vw 0.104vw 0.52vw 0vw rgba(255, 255, 255, 0.30) inset;
  filter: drop-shadow(0.208vw 0.208vw 0.52vw rgba(0, 0, 0, 0.05));
}

.pj3 .you {
  width: 73.072vw;
}

.pj3 .you .title {
  height: 4.166vw;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0.156vw 0.312vw 8.0.208vw 0vw rgba(0, 0, 0, 0.10);
}

.pj3 .you .title .bg2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.pj3 .you .title span {
  width: 100%;
  display: block;
  color: #fff;
  position: relative;
  z-index: 5;
}

.pj3 .you .wrap {
  padding: 1.458vw 0 0;
}

.pj3 .you .wrap span {
  color: var(--color);
}

.pj3 .you .box1 {
  gap: 2.343vw;
  margin-bottom: 1.302vw;
}

.pj3 .you .box1 li {
  flex: 1;
  padding: 0.312vw;
  display: block;
  text-align: center;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0.156vw 0.312vw 8.0.208vw 0vw rgba(0, 0, 0, 0.10);
}


.pj3 .you .box2 {
  gap: 0.833vw 2.343vw;
  margin-bottom: 2.343vw;
}

.pj3 .you .box2 li {
  width: 100%;
  padding: 0.52vw;
  display: block;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #EFEFEF;
  box-shadow: 0.156vw 0.312vw 8.0.208vw 0vw rgba(0, 0, 0, 0.10);
}

.pj3 .sec1 .box2 li {
  flex: 1;
  max-width: 10.208vw;
}

.pj3 .sec2 .wrap {
  gap: 2.343vw;
}

.pj3 .sec2 .box2 li {
  flex: none;
}

.pj3 .sec3 .box2 li {
  flex: 1;
}

.pj4 {
  padding: 2.343vw 0 10.104vw;
}

.pj4 .t2 {
  margin: 2.083vw auto 0;
  width: 57.708vw;
}

.pj4 .list {
  margin-top: 7.291vw;
}

.pj4 .list {
  gap: 2.083vw;
  margin: 7.187vw 20.833vw 0;
}

.pj4 .ev {
  width: 11.822vw;
  text-align: center;
}

.pj4 .ev .icon {
  width: 4.479vw;
  margin: 0 auto;
}

.pj4 .ev .t3 {
  margin: 2.239vw 0 0.781vw;
  font-weight: bold;
}

.pj5 {
  margin: 0 0 6.25vw;
  background: #FBFBFB;
}

.pj5 .zuo {
  width: 41.666vw;
  border-radius: 20px;
  overflow: hidden;
}

.pj5 .you {
  flex: 1;
  padding: 0 5vw 0 6.927vw;
}

.pj5 .you .t2 {
  margin-top: 2.083vw;
}

/* -----------------------------------------注释-------------------------------------- */
.yfw2 {
  padding: 6.041vw 0;
}

.yfw2 .wrap {
  padding: 0 20.833vw;
}

.yfw2 .item {
  width: 9.375vw;
  padding: 1.145vw 0 2.083vw;
  border-radius: 10px;
  border: 0px solid #000;
  background: #FBFBFB;
  box-shadow: 0.208vw 0.208vw 0.625vw 0.052vw rgba(0, 0, 0, 0.10);
  position: relative;
}

.yfw2 .item::after {
  content: '';
  display: block;
  right: 0.26vw;
  bottom: 0.625vw;
  position: absolute;
  width: 1.875vw;
  height: 0.833vw;
  background: url('/img/banner-1.svg') no-repeat center/contain;
}

.yfw2 .item:hover,
.yfw2 .item.on {
  background: var(--color);
  color: #fff;
}

.yfw2 .item .icon {
  width: 4.166vw;
  margin: 0 auto 0.26vw;
  position: relative;
}

.yfw2 .item .icon img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all ease .3s;
}

.yfw2 .item.on .icon img:nth-child(1),
.yfw2 .item:hover .icon img:nth-child(1) {
  opacity: 0;
}

.yfw2 .item.on .icon img:nth-child(2),
.yfw2 .item:hover .icon img:nth-child(2) {
  opacity: 1;
}

.yfw3 .t2 {
  margin: 2.291vw 0 1.562vw;
}

.yfw3 .list {
  gap: 3.125vw;
}

.yfw3 .list .item {
  width: 100%;
}

.yfw3 .list .item .picgroup {
  gap: 5.208vw;
  margin-bottom: 1.562vw;
}

.yfw3 .list .item .pic {
  flex: 1;
}

.yfw4 {
  padding: 5.885vw 0 8.593vw;
}

.yfw4 .sec1 .list {
  padding: 0 9vw;
  margin: 3.385vw 0 5.312vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.083vw 4.166vw;
}

.yfw4 .sec1 .list span {
  border-radius: 10px;
  background: #F5F5F5;
  line-height: 3.125vw;
  font-weight: bold;
  text-align: center;
  font-size: 0.9vw;
}

.yfw4 .sec2 {
  gap: 4.166vw 2.812vw;
}

.yfw4 .sec2 .t2 {
  margin-top: 0.885vw;
}

.yfw5 .t2 {
  margin: 2.083vw 0 5.208vw;
}

.yfw5 .list {
  gap: 4.166vw 6.25vw;
}

.yfw5 .list .t3 {
  margin-top: 1.822vw;
}

.yfw6 {
  padding: 9.739vw 0 5.937vw;
}

.yfw6 .t2 {
  margin: 2.083vw auto 3.385vw;
  width: 51.718vw;
}

.zncl3 .tabs {
  margin: 3.125vw 0;
  position: relative;
}

.zncl3 .tabs::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.052vw;
  width: 100%;
  border-bottom: 2px solid #F0F0F0;
}

.zncl3 .tabs .swiper-slide {
  width: auto;
  padding: 0 0.833vw 1.51vw;
  cursor: pointer;
}

.zncl3 .tabs .swiper-slide::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.208vw;
  background: var(--color);
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
  transform: scaleX(0);
}

.zncl3 .tabs .swiper-slide:hover::after,
.zncl3 .tabs .swiper-slide.on::after {
  transform: scaleX(1);
  opacity: 1;
  pointer-events: visible;
}

.zncl3 .tabs .swiper-slide:hover,
.zncl3 .tabs .swiper-slide.on {
  color: var(--color);
}

.zncl3 .tab-contant {
  border-radius: 20px;
  background: #FBFBFB;
}

.zncl3 .sec {
  padding: 3.541vw 6.354vw 3.541vw 4.27vw;
  position: relative;
  display: none;
}

.zncl3 .sec.on {
  display: flex;
}

.zncl3 .zuo {
  width: 100%;
  flex: 1;
}

.zncl3 .zuo .list {
  gap: 0.729vw;
  padding: 2.083vw 0;
  position: relative;
}

.zncl3 .sec::after,
.zncl3 .sec::before {
  content: '';
  display: block;
  position: absolute;
  left: 3.177vw;
  top: 0;
  height: 100%;
}

.zncl3 .sec::after {
  border-right: 1px dashed #EAEAEA;
  z-index: 2;
}

.zncl3 .sec::before {
  width: 0.052vw;
  background: linear-gradient(to bottom, #fff, transparent 20%, transparent 80%, #fff);
  z-index: 5;
}

.zncl3 .zuo .title {
  margin-left: 0.677vw;
}

.zncl3 .zuo .ev {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.zncl3 .zuo .ev .y1 {
  width: 4.166vw;
  height: 4.166vw;
  margin-right: 1.406vw;
  border-radius: 100%;
  position: relative;
  transition: all linear .3s;
}

.zncl3 .zuo .ev.on .y1 {
  box-shadow: 0vw 0.208vw 0.52vw 0vw rgba(0, 0, 0, 0.08) inset, 0vw -0.52vw 1.562vw 0vw rgba(255, 255, 255, 0.08) inset;
  filter: drop-shadow(0vw 0vw 0vw rgba(0, 0, 0, 0.10));
}

.zncl3 .zuo .ev .y1 svg {
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}

.zncl3 .zuo .ev .y2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zncl3 .zuo .ev .y3 {
  width: 3.385vw;
  height: 3.385vw;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0vw 0.52vw 1.041vw 0vw rgba(0, 0, 0, 0.02) inset, 0vw -1.041vw 2.604vw 0vw rgba(255, 255, 255, 0.40) inset;
}

.zncl3 .zuo .ev.on .path-loop {
  animation: index_circle 6s linear forwards;
}

.zncl3 .zuo .ev .y1 .icon {
  position: relative;
  width: 1.458vw;
}

.zncl3 .zuo .ev .y1 .icon img {
  transition: all ease .3s;
}

.zncl3 .zuo .ev .y1 .icon img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.zncl3 .zuo .ev.on .y1 .icon img:nth-child(1) {
  opacity: 0;
}

.zncl3 .zuo .ev.on .y1 .icon img:nth-child(2) {
  opacity: 1;
}

.zncl3 .zuo .t1 {
  color: #333;
}

.zncl3 .zuo .ev.on .t1 {
  color: var(--color);
}

.zncl3 .you {
  width: 40.625vw;
}

.zncl3 .you .swiper-slide {
  height: 20.833vw;
}


.zncl3 .you img {
  width: auto;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.svgmask {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.zncl4 {
  padding: 6.25vw 0 7.812vw;
}

.zncl4 .C-wrap {
  gap: 2.083vw;
}

.zncl4 .ev {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.zncl4 .ev:nth-child(2n) .intr {
  justify-content: flex-end;
  text-align: right;
}

.zncl4 .ev .intr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 5.208vw;
}

.zncl4 .ev .intr .zuo {
  width: 34.375vw;
}

.zncl4 .ev .intr .t2 {
  margin-top: 1.562vw;
  opacity: 0.8;
  font-weight: 500;
}

.zncl5 .zuo .list {
  margin-top: 5.52vw;
  gap: 1.979vw;
}

.zncl5 .zuo .ev {
  width: max-content;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.zncl5 .zuo .ev.on,
.zncl5 .zuo .ev:hover {
  color: var(--color);
}

.zncl5 .zuo .ev.on,
.zncl5 .zuo .ev:hover {
  border-bottom: 2px solid var(--color);
}

.zncl5 .zuo .ev .num {
  color: #C5C5C5;
  margin-right: 0.5em;
  position: relative;
}

.zncl5 .zuo .ev.on .num,
.zncl5 .zuo .ev:hover .num {
  color: #fff;
}

.zncl5 .zuo .ev .num::after {
  content: '';
  display: block;
  border-radius: 50%;
  background: var(--color);
  width: 2.239vw;
  height: 2.239vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
}

.zncl5 .zuo .ev.on .num::after,
.zncl5 .zuo .ev:hover .num::after {
  opacity: 1;
  pointer-events: visible;
}

.zncl5 .you {
  width: 45.916vw;
}


.zncl5 .you .ev {
  display: none;
}

.zncl5 .you .ev.on {
  display: block;
}

.zncl6 {
  padding: 3.125vw 0 6.25vw;
}

.zncl6 .list {
  gap: 3.125vw;
  margin-top: 4.166vw;
}

.zncl7 .t2 {
  margin: 1.666vw 0 2.604vw;
}

.zncl8 {
  padding: 7.031vw 0 8.333vw;
}

.zncl8 .t2 {
  margin: 2.083vw 0 6.25vw;
}

.zncl8 .list .ev {
  width: 21.354vw;
}

.zncl8 .list .ev .icon {
  width: 4.166vw;
  margin: 0 auto;
}

.zncl8 .list .ev .t1 {
  margin: 1.406vw 0;
  text-align: center;
}

/* -----------------------------------------注释-------------------------------------- */
.yj2 .you {
  width: 38.541vw;
}

.yj2 .you .t2 {
  margin: 2.604vw 0 1.562vw;
}

.yj2 .you .ul li {
  padding: 1.041vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  display: flex;
  flex-wrap: wrap;
}

.yj2 .you .ul li .name {
  width: 16.354vw;
  padding-right: 1.562vw;
}

.yj2 .you .ul li .value {
  flex: 1;
}

.yj2 .zuo {
  width: 38.541vw;
}

.playbtn {
  width: 3.75vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.playbtn img {
  width: 100%;
}

.yj3 {
  padding: 9.062vw 0 6.041vw;
}

.yj3 .list {
  gap: 9.375vw;
}

.yj3 .list .ev:nth-child(2n) {
  flex-direction: row-reverse;
}

.yj3 .list .ev .zuo {
  width: 36.458vw;
}

.yj3 .list .ev .intr {
  width: 23.75vw;
}

.yj3 .list .ev .t2 {
  margin-top: 1.666vw;
}

.yj3 .list .ev .you {
  width: 41.666vw;
}

.yj4 {
  padding: 0 0 6.25vw;
}

.yj4 .t2 {
  margin: 2.083vw auto 8.333vw;
  width: 47.447vw;
  text-align: center;
}

.yj4 .list {
  gap: 3.75vw;
}

.yj4 .list .ev {
  width: 39.791vw;
}

.yj4 .list .ev p {
  margin-top: 1.562vw;
}

.gylc2 {
  padding: 0 0 4.27vw;
}

.gylc2 .list {
  gap: 9.375vw;
}

.gylc2 .list .ev:nth-child(2n) {
  flex-direction: row-reverse;
}

.gylc2 .list .ev .zuo {
  width: 36.458vw;
}

.gylc2 .list .ev .intr {
  width: 23.75vw;
}

.gylc2 .list .ev .t2 {
  margin-top: 1.666vw;
}

.gylc2 .list .ev .you {
  width: 41.666vw;
}

/* -----------------------------------------注释-------------------------------------- */
.tzgc2 {
  padding: 8.958vw 0 8.697vw;
}

.tzgc2 .list {
  padding: 4.322vw 0 0;
  gap: 8.697vw 1.718vw;
}

.tzgc2 .list .item {
  border-radius: 20px;
  overflow: hidden;
  background: #FBFBFB;
  padding-bottom: 1.041vw;
  transition: all ease .3s;
}

.tzgc2 .list .item:hover {
  background: #FBFBFB;
  box-shadow: 0vw 0vw 1.562vw rgba(0, 0, 0, 0.10);
}

.tzgc2 .list .item .pic {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0.937vw;
}

.rjc2 {
  padding-bottom: 2.604vw;
}

.rjc2 .ev .sec1 {
  padding: 2.447vw 0 5.208vw;
}

.home-title1.border {
  padding-bottom: 0.52vw;
  border-bottom: 2px solid #F0F0F0;
}

.rjc2 .sec2 {
  background: #FBFBFB;
}

.rjc2 .sec2 .zuo {
  width: 58.854vw;
}

.rjc2 .sec2 .you {
  flex: 1;
  padding: 0 3.229vw 0 4.166vw;
  position: relative;
}

.rjc2 .sec2 .you .t2 {
  margin-top: 2.083vw;
}

.rjc2 .sec2 .you .icon {
  width: 8.02vw;
  position: absolute;
  right: 0;
  bottom: 0;
}

.rjc2 .sec3 {
  padding: 3.125vw 0 3.802vw;
}

.rjc2 .sec3 .list {
  gap: 9.375vw;
}

.rjc2 .sec3 .item {
  width: 11.979vw;
}

.rjc2 .sec3 .item .icon {
  width: 4.166vw;
  margin: 0 auto 1.562vw;
}

/* -----------------------------------------注释-------------------------------------- */
.gyc2 {
  padding: 4.166vw 0;
}

.gyc2 .t2 {
  margin: 3.125vw 0 5.468vw;
}

.gycList1 .swiper {
  padding: 2.083vw 0;
}

.gycList1 .swiper-slide {
  padding: 7.135vw 0 0;
  border-radius: 20px;
  background: #FBFBFB;
  cursor: pointer;
  transition: all ease .3s;
}

.gycList1 .swbtn1 {
  margin: 0 2.916vw;
}

.gycList1 .swiper-slide .pic {
  padding: 0 2.083vw;
}

.gycList1 .swiper-slide .intr {
  padding: 1.302vw 2.083vw;
  margin-top: 4.687vw;
  border-radius: 20px;
  background-size: 220% 100%;
  background-image: linear-gradient(91deg, #E83A46 0%, #D7000F 49%, transparent 50%, transparent 100%);
  background-position: right;
  transition: all ease .4s;
}

.gycList1 .swiper-slide:hover {
  background: #FBFBFB;
  box-shadow: 0vw 0vw 2.083vw 0vw rgba(0, 0, 0, 0.10);
}

.gycList1 .swiper-slide:hover .intr {
  background-position: left;
}

.gycList1 .swiper-slide .t1 {
  background-image: linear-gradient(99deg, #4E4E4E 24.5%, #1B1D29 74.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gycList1 .swiper-slide:hover .t1 {
  background-color: #fff;
  background-image: none;
}

.gycList1 .swiper-slide:hover .more {
  color: #fff;
}

.gycList1 .swiper-slide .more .icon {
  width: 1.041vw;
  margin-left: 0.729vw;
}

.loadingGyc {
  background: #323232 url('/img/loading.gif') no-repeat center/2.604vw;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
}

.loadingGyc.on {
  display: flex;
  animation-name: fadeIn;
  animation-duration: .8s;
}

.gycdetail {
  background: rgba(0, 0, 0, 0.60);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  display: none;
}

.gycdetail.on {
  display: flex;
  animation-name: fadeIn;
  animation-duration: .8s;
}

.gycdetail .wrap {
  width: 83.333vw;
  padding: 4.166vw 4.166vw 2.968vw;
  max-height: 90vh;
  border-radius: 20px;
  background: #FBFBFB;
  position: relative;
}

.gycdetail .close {
  width: 2.083vw;
  position: absolute;
  right: 0;
  top: 0;
  margin: 1.041vw;
  cursor: pointer;
}

.gycdetail .zuo {
  width: 35.416vw;
  position: relative;
  padding-bottom: 0.729vw;
}

.gycdetail .zuo .swiper-slide {
  height: 31.25vw;
  border-radius: 20px;
  overflow: hidden;
  background: #FFF;
}

.gycdetail .zuo .swiper-pagination {
  left: 0;
  bottom: 0;
  z-index: 10;
  height: 0.208vw;
}

.gycdetail .zuo .swiper-pagination-bullet {
  width: 3.645vw;
  height: 0.208vw;
  margin: 0 0.468vw;
  border-radius: 18px;
  overflow: hidden;
  background: #D9D9D9;
  opacity: 1;
  position: relative;
  vertical-align: text-top;
}

.gycdetail .zuo .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(93deg, #EF5660 5.28%, #D7000F 91.2%);
  transform: scaleX(0);
  transition: all ease 0.3s;
  transform-origin: left;
}

.gycdetail .zuo .swiper-pagination-bullet-active {
  opacity: 1;
}

.gycdetail .zuo .swiper-pagination-bullet-active::after {
  transform: scaleX(1);
  transition: all ease 3s;
}

.gycdetail .you {
  flex: 1;
  padding: 0 0 0 4.27vw;
}

.gycdetail .you .t1 span {
  color: var(--color);
}

.gycdetail .you .t2 {
  margin: 1.041vw 0 1.354vw;
}

.gycdetail .you .ul {
  gap: 1.041vw;
  padding-right: 1.041vw;
  max-height: 17.395vw;
  margin-bottom: 2.916vw;
}

.gycdetail .you .ul::-webkit-scrollbar {
  width: 0.26vw;
}

.gycdetail .you .ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.729vw 0;
  border-bottom: 1px solid #F0F0F0;
}

.gycdetail .you .ul li .name {
  width: 19.791vw;
}

.gycdetail .you .ul li .value {
  flex: 1;
}

.gycdetail .downDoc {
  width: max-content;
  color: white;
  padding: 0.52vw 1.041vw;
  gap: 1.041vw;
  border-radius: 20px;
  background: linear-gradient(93deg, #EF5660 5.28%, #D7000F 91.2%);
  box-shadow: 0vw 0.52vw 1.041vw 0vw rgba(0, 0, 0, 0.02) inset, 0vw -1.041vw 2.604vw 0vw rgba(255, 255, 255, 0.40) inset;
}

.gycdetail .downDoc:hover {
  text-decoration: underline;
}

.gycdetail .downDoc .icon {
  width: 2.083vw;
  transform: translateY(0.26vw);
}

.gyc3 {
  padding-bottom: 4.166vw;
}

.gyc3 .home-title1 {
  margin-bottom: 5.729vw;
}

.gycList2 .zuo {
  flex: 1;
}

.gycList2 .zuo .list {
  gap: 2.083vw;
  border-left: 2px solid rgba(0, 0, 0, 0.10);
}

.gycList2 .zuo .list .item {
  padding: 1.354vw 2.083vw;
  position: relative;
  cursor: pointer;
}

.gycList2 .zuo .list .item::before {
  content: '';
  display: block;
  width: 0.52vw;
  position: absolute;
  left: -0.312vw;
  top: 0;
  height: 100%;
  background: var(--color);
  transform: scaleY(0);
  transform-origin: top;
  transition: all ease .3s;
}

.gycList2 .zuo .list .item.on::before {
  transform: scaleY(1);
  transition: all ease .3s;
}

.gycList2 .zuo .list .item:hover,
.gycList2 .zuo .list .item.on {
  color: var(--color);
}

.gycList2 .you {
  width: 65.052vw;
}

.gyc4 .t2 {
  margin: 1.562vw 0 4.166vw;
}

.gyc5 {
  padding: 3.854vw 0 2.083vw;
}

.gycList3 {
  gap: 2.76vw 10.416vw;
}

.gycList3.theme2 {
  gap: 2.76vw 5.208vw;
}

.gycList3 .item {
  width: 11.458vw;
  text-align: center;
}

.gycList3 .item .icon {
  width: 4.166vw;
  margin: 0 auto 1.562vw;
}

.gyc6 {
  padding: 4.166vw 0 6.25vw;
}

.gyc6 .t2 {
  margin: 3.125vw 0 7.291vw;
}

.gyc6 .swiper-slide {
  width: 26.458vw;
  border-radius: 20px;
  background: #FBFBFB;
}

.gyc6 .swiper-slide .intr {
  padding: 1.354vw 2.239vw;
}

.gyc6 .swiper-slide .t1 {
  background-image: linear-gradient(99deg, #4E4E4E 24.5%, #1B1D29 74.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gyc6 .swiper-slide .more .icon {
  width: 1.041vw;
  margin-left: 0.729vw;
}

.gyc7 .home-title1 {
  margin-bottom: 5.729vw;
}

/* -----------------------------------------注释-------------------------------------- */
.search1 {
  padding: 6.458vw 29.687vw;
}

.search1 form {
  padding: 0 0.937vw;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.30);
}

.search1 input {
  height: 2.083vw;
  flex: 1;
  background: transparent;
  border: none;
  font-size: inherit;
}

.search1 input::placeholder {
  color: #666;
}

.search1 button {
  width: 1.145vw;
  background: transparent;
  border: none;
  cursor: pointer;
}

.search2 {
  padding-bottom: 6.927vw;
}

.search2 .t2 {
  color: #666;
  margin-bottom: 0.833vw;
}

.search2 .tab {
  gap: 3.645vw;
  color: #555;
}

.search2 .tab span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 3.125vw;
  position: relative;
  cursor: pointer;
}

.search2 .tab span.on {
  color: #D7000F;
}

.search2 .tab span.on::after {
  content: '';
  display: block;
  height: 0.156vw;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0.26vw;
  background: #D7000F;
}

.search2 .tab-contant .ul {
  display: none;
}

.search2 .tab-contant .ul.on {
  display: grid;
}

.search2 .ul {
  gap: 0 11.979vw;
  margin-top: 1.041vw;
}

.search2 .ul li {
  border-bottom: 1px dashed #DDD;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.833vw 0.52vw;
  color: #666;
}

.search2 .ul li::before {
  content: '•';
  margin-right: 1em;
}

.search2 .ul li a {
  flex: 1;
}

.search2 .C-btn {
  margin-top: 4.166vw;
}