@charset "UTF-8";
.check {
  float: left;
  margin-right: 8px;
}

.check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.check input[type="checkbox"] + label:before {
  content: '';
  background: #ccc;
  border-radius: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 1px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  box-sizing: border-box;
}

.check input[type="checkbox"]:checked + label:before {
  background: url(../images/icon_checked.svg) 0 0/cover no-repeat;
}

.radio {
  float: left;
  margin-right: 28px;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"] + label:before {
  content: '';
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #9b9b9b;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  top: 2px;
  margin-right: 5px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  box-sizing: border-box;
}

.radio input[type="radio"]:checked + label:before {
  background-color: var(--accent);
  border: 3px solid var(--accent);
  box-shadow: inset 0 0 0 3px #f4f4f4;
}

/* 滚动条样�?*/
::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

@media screen and (max-width: 1024px) {
  ::-webkit-scrollbar-track {
    background-color: transparent;
  }
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.flex-pack-justify {
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-pack-center {
  align-items: center;
  justify-content: center;
}

.btn-defualt {
  display: inline-flex;
  padding: 6px 6px 6px 18px;
  border-radius: 5px;
  background: #FFFFFF;
  font-size: 16px;
  color: var(--primary);
  align-items: center;
}

.btn-defualt .icon-arrow-big {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all .3s;
}

.btn-defualt .icon-arrow-big::after {
  content: '';
  display: block;
  width: 12px;
  height: 8px;
  background: url(../images/icon_arrow_white_12.svg) 0 0/cover no-repeat;
}

.btn-defualt.btn-defualt-sm {
  padding: 8px 8px 8px 12px;
  background: var(--bg-primary-soft);
  font-size: 14px;
}

.btn-defualt.btn-defualt-sm .icon-arrow-big {
  width: 18px;
  height: 18px;
  margin-left: 5px;
}

.btn-defualt.btn-defualt-sm .icon-arrow-big::after {
  width: 9px;
  height: 6px;
}

.btn-defualt.btn-defualt-reserve {
  background: var(--primary);
  color: #fff;
}

.btn-defualt.btn-defualt-reserve .icon-arrow-big {
  background: #fff;
}

.btn-defualt.btn-defualt-reserve .icon-arrow-big::after {
  background-image: url(../images/icon_arrow_red_12.svg);
}

.btn-defualt.btn-defualt-reserve:hover {
  box-shadow: 0 0 10px var(--primary);
}

.btn-defualt:hover {
  background: var(--primary);
  color: #fff;
}

.btn-defualt:hover .icon-arrow-big {
  background: #fff;
}

.btn-defualt:hover .icon-arrow-big::after {
  background-image: url(../images/icon_arrow_red_12.svg);
}

body {
  overflow-x: hidden;
}

/* header */
header {
  height: 88px;
  transition: all 1s;
  padding: 0 30px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  color: #fff;
  transform: translateY(0);
}

header.scroll-up {
  transform: translateY(0);
}

header.scroll-down {
  transform: translateY(-100%);
}

header a {
  color: #fff;
}

header .headHd {
  height: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  height: 40px;
  width: 200px;
}

header .logo a {
  display: block;
  height: 100%;
}

header .logo img {
  height: 100%;
}

header .logo .logo-normal {
  display: none;
}

header .navBar {
  font-size: 16px;
  height: 100%;
}

header .navBar > ul {
  width: 100%;
  height: 100%;
}

header .navBar > ul > li {
  margin: 0 0.78125vw;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .navBar > ul > li > a {
  position: relative;
  padding: 0 20px;
  height: 100%;
}

header .navBar > ul > li > a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  left: 50%;
  background-color: var(--primary);
  transition: all .3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  background: var(--primary);
}

header .navBar > ul > li > a span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

header .navBar > ul > li > a:hover::after {
  left: 0;
  width: 100%;
  opacity: 1;
}

header .navBar > ul > li:nth-child(2) > a span::after, header .navBar > ul > li:nth-child(3) > a span::after, header .navBar > ul > li:nth-child(4) > a span::after, header .navBar > ul > li:nth-child(7) > a span::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: url(../images/icon_xiala.svg) 0 0/cover no-repeat;
  margin-left: 4px;
  transition: all .3s;
  flex-shrink: 0;
}

header .navBar > ul .on-second > a span::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: url(../images/icon_xiala.svg) 0 0/cover no-repeat;
  margin-left: 4px;
  transition: all .3s;
  flex-shrink: 0;
}

header .navBar .headBd-item {
  display: none;
}

header .hd-rt {
  align-items: center;
}

header .hd-tel {
  display: flex;
  align-items: center;
  margin-right: 7.55208vw;
}

header .hd-tel img {
  width: 20px;
  margin-right: 10px;
}

header .hd-tel .state-1 {
  display: block;
}

header .hd-tel .state-2 {
  display: none;
}

header .hd-language {
  position: relative;
  z-index: 100;
}

header .hd-language img {
  width: 22px;
  margin-right: 3px;
}

header .hd-language .cur {
  display: flex;
  align-items: center;
  cursor: pointer;
}

header .hd-language .cur::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: url(../images/icon_xiala.svg) 0 0/cover no-repeat;
  margin-left: 4px;
  transition: all .3s;
  flex-shrink: 0;
}

header .hd-language .drop-menu {
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

header .hd-language .drop-menu .inbox {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(var(--primary-rgb), 0.2);
  position: relative;
}

header .hd-language .drop-menu .inbox::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
}

header .hd-language .drop-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 10px 20px;
  white-space: nowrap;
}

header .hd-language:hover .drop-menu {
  opacity: 1;
  visibility: visible;
}

header .hd-language:hover .cur::after {
  transform: rotate(180deg);
}

header .mb-menu {
  display: none;
}

header .mb-menu {
  --color: #fff;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  outline: none;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
}

header .mb-menu svg {
  width: 36px;
  height: 36px;
  stroke: var(--color);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
}

header .mb-menu svg path {
  transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
  stroke-dashoffset: var(--offset, 126px);
  transform: translateZ(0);
}

header .mb-menu svg path:nth-child(2) {
  --duration: .7s;
  --easing: ease-in;
  --offset: 100px;
  --array-2: 74px;
}

header .mb-menu svg path:nth-child(3) {
  --offset: 133px;
  --array-2: 107px;
}

header .mb-menu.active svg path {
  --offset: 57px;
}

header .mb-menu.active svg path:nth-child(1), header .mb-menu.active svg path:nth-child(3) {
  --delay: .15s;
  --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}

header .mb-menu.active svg path:nth-child(2) {
  --duration: .4s;
  --offset: 2px;
  --array-1: 1px;
}

header .mb-menu.active svg path:nth-child(3) {
  --offset: 58px;
}

header:hover, header.scroll-nav, header .header-white, header.onHover {
  background: white;
  color: #000;
}

header:hover a, header.scroll-nav a, header .header-white a, header.onHover a {
  color: #000;
}

header:hover .logo .logo-normal, header.scroll-nav .logo .logo-normal, header .header-white .logo .logo-normal, header.onHover .logo .logo-normal {
  display: block;
}

header:hover .logo .logo-white, header.scroll-nav .logo .logo-white, header .header-white .logo .logo-white, header.onHover .logo .logo-white {
  display: none;
}

header:hover .navBar > ul > li.active > a, header.scroll-nav .navBar > ul > li.active > a, header .header-white .navBar > ul > li.active > a, header.onHover .navBar > ul > li.active > a {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0) 0%, rgba(var(--primary-rgb), 0.1) 100%);
  color: var(--primary);
}

header:hover .navBar > ul > li.active > a::after, header.scroll-nav .navBar > ul > li.active > a::after, header .header-white .navBar > ul > li.active > a::after, header.onHover .navBar > ul > li.active > a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  left: 50%;
  background-color: var(--primary);
  transition: all .3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  background: var(--primary);
}

header:hover .navBar > ul > li.active > a::after, header.scroll-nav .navBar > ul > li.active > a::after, header .header-white .navBar > ul > li.active > a::after, header.onHover .navBar > ul > li.active > a::after {
  left: 0;
  width: 100%;
  opacity: 1;
}

header:hover .navBar > ul > li:nth-child(2) > a span::after, header:hover .navBar > ul > li:nth-child(3) > a span::after, header:hover .navBar > ul > li:nth-child(4) > a span::after, header:hover .navBar > ul > li:nth-child(7) > a span::after, header.scroll-nav .navBar > ul > li:nth-child(2) > a span::after, header.scroll-nav .navBar > ul > li:nth-child(3) > a span::after, header.scroll-nav .navBar > ul > li:nth-child(4) > a span::after, header.scroll-nav .navBar > ul > li:nth-child(7) > a span::after, header .header-white .navBar > ul > li:nth-child(2) > a span::after, header .header-white .navBar > ul > li:nth-child(3) > a span::after, header .header-white .navBar > ul > li:nth-child(4) > a span::after, header .header-white .navBar > ul > li:nth-child(7) > a span::after, header.onHover .navBar > ul > li:nth-child(2) > a span::after, header.onHover .navBar > ul > li:nth-child(3) > a span::after, header.onHover .navBar > ul > li:nth-child(4) > a span::after, header.onHover .navBar > ul > li:nth-child(7) > a span::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: url(../images/icon_xiala_balck.svg) 0 0/cover no-repeat;
  margin-left: 4px;
  transition: all .3s;
  flex-shrink: 0;
}

header:hover .navBar > ul .on-second > a span::after, header.scroll-nav .navBar > ul .on-second > a span::after, header .header-white .navBar > ul .on-second > a span::after, header.onHover .navBar > ul .on-second > a span::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: url(../images/icon_xiala_balck.svg) 0 0/cover no-repeat;
  margin-left: 4px;
  transition: all .3s;
  flex-shrink: 0;
}

header:hover .hd-tel, header.scroll-nav .hd-tel, header .header-white .hd-tel, header.onHover .hd-tel {
  color: var(--primary);
}

header:hover .hd-tel .state-1, header.scroll-nav .hd-tel .state-1, header .header-white .hd-tel .state-1, header.onHover .hd-tel .state-1 {
  display: none;
}

header:hover .hd-tel .state-2, header.scroll-nav .hd-tel .state-2, header .header-white .hd-tel .state-2, header.onHover .hd-tel .state-2 {
  display: block;
}

header:hover .hd-language .cur::after, header.scroll-nav .hd-language .cur::after, header .header-white .hd-language .cur::after, header.onHover .hd-language .cur::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: url(../images/icon_xiala_balck.svg) 0 0/cover no-repeat;
  margin-left: 4px;
  transition: all .3s;
  flex-shrink: 0;
}

header:hover .mb-menu, header.scroll-nav .mb-menu, header .header-white .mb-menu, header.onHover .mb-menu {
  --color: #000;
}

.headBd-item {
  position: fixed;
  left: 0;
  top: 100%;
  width: 100vw;
  z-index: 2;
  box-shadow: inset 0px 0px 20px 0px #FDF1F3, 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--bg-primary-ultra-light);
  background: white;
  color: #000;
}

.nav-zizhu {
  max-height: calc(100vh - 70px);
}

.nav-zizhu .lt {
  width: 290px;
  padding: 20px 20px 20px 0;
}

.nav-zizhu .subNav ul {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.nav-zizhu .subNav li a {
  display: flex;
  align-items: center;
  line-height: 24px;
  height: 44px;
  padding: 10px 15px;
  position: relative;
  text-align: left;
  color: #000;
  width: 100%;
  border-radius: 5px;
}

.nav-zizhu .subNav li a span {
  font-size: 14px;
  margin-right: 4px;
  display: inline-block;
  transition: all .3s;
}

.nav-zizhu .subNav li a::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_next_arrow.svg) center center no-repeat;
  position: absolute;
  right: 15px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.nav-zizhu .subNav li a:hover {
  background: var(--primary-light);
}

.nav-zizhu .subNav li a:hover span {
  color: var(--primary);
  font-weight: normal;
}

.nav-zizhu .subNav li a:hover::after {
  background-image: url(../images/icon_next_arrow_red.svg);
}

.nav-zizhu .subNav li.active a {
  background: var(--primary-light);
}

.nav-zizhu .subNav li.active a span {
  color: var(--primary);
  font-weight: normal;
}

.nav-zizhu .md {
  flex: 1;
  border-left: 1px solid var(--bg-primary-light);
  border-right: 1px solid var(--bg-primary-light);
  min-width: 0;
}

.nav-zizhu .nav-detail {
  padding: 20px 30px;
}

.nav-zizhu .nav-detail .item {
  display: none;
}

.nav-zizhu .nav-detail .item:first-child {
  display: block;
}

.nav-zizhu .nav-detail .sub-nav-icon {
  background: url(../images/index_01_bg_01.svg) 0 0/100% auto repeat #FFFFFF;
  padding: 20px 0 30px;
}

.nav-zizhu .nav-detail .sub-nav-icon .bigIcon {
  height: 110px;
  margin: 0 auto;
  text-align: center;
}

.nav-zizhu .nav-detail .sub-nav-icon .bigIcon img {
  height: 100%;
}

.nav-zizhu .nav-detail .sub-nav-sm {
  border-bottom: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  padding: 15px 20px 20px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  margin-bottom: 15px;
}

.nav-zizhu .nav-detail .sub-nav-sm a {
  width: 100%;
  display: block;
}

.nav-zizhu .nav-detail .sub-nav-sm h2 {
  color: var(--primary);
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.nav-zizhu .nav-detail .sub-nav-sm .txt {
  width: 100%;
  padding-bottom: 12px;
}

.nav-zizhu .nav-detail .sub-nav-sm p {
  opacity: 0.7;
  line-height: 28px;
  color: #1B3A5A;
  font-size: 14px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 112px;
}

.nav-zizhu .nav-detail .sub-nav-bd h2 {
  padding: 0 20px 0 0;
  color: var(--primary);
  line-height: 30px;
}

.nav-zizhu .nav-detail .sub-nav-bd .s-bd {
  margin-left: -10px;
  margin-right: -10px;
}

.nav-zizhu .nav-detail .sub-nav-bd .item-box {
  width: 50%;
  padding: 5px;
}

.nav-zizhu .nav-detail .sub-nav-bd .item-box a {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 10px 0px 10px 20px;
  height: 56px;
  border: 1px solid var(--bg-primary-light);
  backdrop-filter: blur(40px);
  color: #000;
  width: 100%;
  font-size: 14px;
  position: relative;
  text-align: left;
}

.nav-zizhu .nav-detail .sub-nav-bd .item-box a::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -1px;
  background: #000;
}

.nav-zizhu .nav-detail .sub-nav-bd .item-box a:hover {
  background: var(--primary-light);
}

.nav-zizhu .rt {
  padding: 20px;
  width: 33.08824%;
  cursor: pointer;
}

.nav-zizhu .rt .img {
  border-radius: 8px;
  margin-bottom: 20px;
  height: 220px;
  overflow: hidden;
}

.nav-zizhu .rt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.nav-zizhu .rt .info h2 {
  font-weight: normal;
  line-height: 1;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 14px;
  font-weight: bold;
}

.nav-zizhu .rt .info p {
  color: #404040;
  font-size: 14px;
  height: 48px;
  line-height: 24px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

.nav-daili {
  height: 450px;
  padding-top: 20px;
  position: relative;
}

.nav-daili ul {
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-daili a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  padding: 20px;
  border-radius: 100%;
  transition: all .7s ease 0s;
}

.nav-daili a img {
  width: 100%;
}

.nav-daili li {
  animation: myfirstb linear infinite 2s;
  position: absolute;
  border-radius: 100%;
  transition: all .3s;
  z-index: 1;
}

.nav-daili li a:hover {
  transform: scale(1.5) !important;
}

.nav-daili li:hover {
  z-index: 10;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes myfirstb {
  0% {
    transform: translateY(-5%);
  }
  25% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(5%);
  }
  75% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-5%);
  }
}

/* 二级菜单 代理增�?*/
.second-nav-v2 .s-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.second-nav-v2 .s-hd h2 {
  opacity: 0.5;
  line-height: 1;
  font-weight: normal;
  font-size: 14px;
}

.second-nav-v2 .s-hd a {
  font-size: 14px;
  opacity: 0.5;
  position: relative;
  padding-right: 20px;
}

.second-nav-v2 .s-hd a::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_next_arrow.svg) center center no-repeat;
  position: absolute;
  right: 0;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s;
}

.second-nav-v2 .s-hd a:hover {
  opacity: 1;
}

.second-nav-v2 .s-hd a:hover::after {
  transform: translate(5px, -50%);
}

.second-nav-v2 .wrap {
  padding: 30px 0 25px;
  position: relative;
  align-items: flex-start;
}

.second-nav-v2 .wrap::before {
  content: '';
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  border-left: 1px dashed var(--bg-primary-ultra-light);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}

.second-nav-v2 .lt-pinpai {
  width: 47.79412%;
}

.second-nav-v2 .lt-pinpai .s-bd ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.second-nav-v2 .lt-pinpai .s-bd ul li {
  width: 25%;
  padding: 5px;
}

.second-nav-v2 .lt-pinpai .s-bd ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary-ultra-light);
  padding: 15px 0;
  height: 70px;
  border-radius: 5px;
}

.second-nav-v2 .lt-pinpai .s-bd ul li img {
  width: 100px;
  transition: all .3s;
}

.second-nav-v2 .lt-pinpai .s-bd ul li a:hover {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.second-nav-v2 .lt-pinpai .s-bd ul li a:hover img {
  transform: scale(1.05);
}

.second-nav-v2 .rt-fangxiang {
  width: 47.79412%;
}

.second-nav-v2 .rt-fangxiang .s-bd ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.second-nav-v2 .rt-fangxiang .s-bd ul li {
  width: 25%;
  padding: 5px;
}

.second-nav-v2 .rt-fangxiang .s-bd ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8FF;
  padding: 15px 0;
  height: 70px;
  border-radius: 5px;
}

.second-nav-v2 .rt-fangxiang .s-bd ul li a:hover {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
}

/* 二级菜单 缔赛洞见 */
.headBd-item2 {
  display: none;
  position: absolute;
  width: auto;
  box-shadow: none;
  left: 50%;
  top: calc(100% - 5px);
  transform: translate(-50%);
}

.second-nav-v3 {
  padding-top: 10px;
}

.second-nav-v3 .inbox {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(var(--primary-rgb), 0.2);
  position: relative;
}

.second-nav-v3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 14px;
}

.second-nav-v3 a:hover {
  color: var(--primary);
}

header .navBar > ul > li:hover .headBd-item2 {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1680px) {
  header .navBar > ul > li > a {
    padding: 0 10px;
  }
  header .hd-tel {
    margin-right: 3vw;
  }
}

@media screen and (max-width: 1440px) {
  header .logo {
    height: 30px;
    width: 150px;
  }
  .nav-zizhu .nav-detail .sub-nav-bd .item-box {
    width: 50%;
  }
}

@media screen and (max-width: 1280px) {
  header .navBar > ul > li > a {
    padding: 0 0;
  }
  header .navBar > ul > li {
    margin: 0 10px;
  }
}

@media screen and (max-width: 1024px) {
  header {
    padding: 0 20px;
    height: 70px;
  }
  header .navBar > ul > li > a span {
    font-size: 14px;
  }
  header .navBar > ul > li > a {
    padding: 0 5px;
  }
}

@media screen and (max-width: 992px) {
  header .navBar > ul > li > a::after {
    display: none;
  }
  header .navBar > ul > li .headBd-item2 {
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
  }
  header .navBar > ul > li:nth-child(2) > a span::after, header .navBar > ul > li:nth-child(3) > a span::after, header .navBar > ul > li:nth-child(4) > a span::after, header .navBar > ul > li:nth-child(7) > a span::after {
    background: url(../images/icon_xiala_balck.svg) no-repeat center center;
    z-index: -1;
  }
  .second-nav-v3 .inbox {
    box-shadow: 0px 0px 20px 0px rgba(var(--primary-rgb), 0.2);
  }
  header .navBar .second-nav-v3, header .navBar .nav-v3-item {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  header .navBar .second-nav-v3 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 24px;
    height: 44px;
    padding: 10px 15px;
    position: relative;
    text-align: left;
    color: #000;
    width: 100%;
    border-radius: 5px;
  }
  header .navBar .second-nav-v3 a:hover, header .navBar .second-nav-v3 a.active {
    color: var(--primary);
    background: var(--primary-light);
  }
  header .navBar .second-nav-v3 a::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/icon_next_arrow.svg) center center no-repeat;
    position: absolute;
    right: 15px;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
  }
  header .headHd .hd-lt {
    margin-top: 15px;
    width: 150px;
  }
  header .headHd .hd-rt {
    margin-top: 12px;
  }
  header .navBar.open {
    margin-left: 0;
  }
  header .mb-menu svg {
    stroke: #fff;
  }
  header:hover .mb-menu svg, header.scroll-nav .mb-menu svg {
    stroke: #000;
  }
  header a {
    color: #000;
  }
  header {
    height: 60px;
  }
  header .hd-tel {
    display: none;
  }
  header .mb-menu {
    display: block;
    margin-left: 10px;
  }
  header .navBar {
    position: absolute;
    top: 60px;
    height: calc(100vh - 60px);
    width: 100vw;
    background: #fff;
    left: 0;
    overflow-y: auto;
    z-index: 100;
    transform: translateX(100vw);
    transition: all .3s;
  }
  header .navBar.open {
    transform: translateX(0);
  }
  header .navBar > ul {
    display: block;
  }
  header .navBar > ul > li {
    width: calc(100% - 40px);
    height: auto;
    margin: 0 20px;
    position: relative;
    display: block;
  }
  header .navBar > ul > li > a {
    width: calc(100% - 30px);
    height: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }
  header .navBar > ul > li > a span {
    text-align: left;
    justify-content: space-between;
    width: 100%;
  }
  header .navBar > ul > li.active > a span::after {
    transform: rotate(180deg);
  }
  header .navBar .second-nav-v2 .wrap {
    flex-wrap: wrap;
  }
  header .navBar .headBd-item {
    position: inherit;
    width: 100%;
    box-shadow: none;
  }
  header .navBar .headBd-item .wrap {
    margin: 0;
    width: 100%;
  }
  header .navBar .second-nav-v3 {
    height: 0;
    padding: 0;
  }
  header .navBar .nav-zizhu .rt {
    display: none;
  }
  header .navBar .nav-zizhu .lt {
    width: 100%;
    padding-right: 0;
  }
  header .navBar header .navBar > ul > li > a {
    padding: 0;
  }
  header .navBar header:hover .navBar > ul > li.active > a, header .navBar header.scroll-nav .navBar > ul > li.active > a {
    padding: 0;
  }
  header .navBar .nav-zizhu .md {
    display: none;
  }
  header .navBar .second-nav-v3 .inbox::before {
    width: 100%;
  }
  header .navBar .second-nav-v3 a {
    width: 100%;
  }
  header .navBar .second-nav-v3 .inbox::before {
    display: none;
  }
  header .navBar header .navBar > ul > li:hover .headBd-item2 {
    top: 100%;
  }
  .second-nav-v2 .lt-pinpai {
    width: 100%;
    margin-bottom: 20px;
  }
  .second-nav-v2 .rt-fangxiang {
    width: 100%;
  }
  .headBd-item2 {
    width: 100%;
    top: 100%;
    position: relative;
  }
  .second-nav-v3 .inbox {
    box-shadow: none;
  }
  .second-nav-v3 .inbox a {
    display: flex;
    align-items: center;
    line-height: 24px;
    height: 44px;
    padding: 10px 15px;
    position: relative;
    text-align: left;
    color: #000;
    width: 100%;
    border-radius: 5px;
  }
  header .navBar .nav-zizhu .lt {
    padding: 0;
  }
  header .navBar .second-nav-v2 .wrap {
    padding: 5px 10px 0;
  }
  header:hover .navBar > ul > li.active > a, header.scroll-nav .navBar > ul > li.active > a, header .header-white .navBar > ul > li.active > a, header.onHover .navBar > ul > li.active > a {
    background: none;
  }
  header:hover .navBar > ul > li.active > a::after, header.scroll-nav .navBar > ul > li.active > a::after, header .header-white .navBar > ul > li.active > a::after, header.onHover .navBar > ul > li.active > a::after {
    display: none;
  }
  .second-nav-v2 .s-hd {
    margin-bottom: 10px;
  }
  .nav-zizhu .subNav ul, .second-nav-v3 .inbox {
    gap: 4px;
  }
  header .navBar .second-nav-v3, header .navBar .nav-v3-item, header .navBar .second-nav-v3, header .navBar .nav-v3-item {
    padding: 4px;
    padding: 0;
    gap: 4px;
  }
  header .navBar .second-nav-v3 a, .nav-zizhu .subNav li a {
    height: 38px;
    padding: 5px 0 5px 15px;
  }
  .second-nav-v2 .lt-pinpai .s-bd ul li a, .second-nav-v2 .rt-fangxiang .s-bd ul li a {
    padding: 10px 0;
  }
  .second-nav-v2 .lt-pinpai .s-bd ul, .second-nav-v2 .rt-fangxiang .s-bd ul {
    margin-left: -3px;
    margin-right: -3px;
  }
  .second-nav-v2 .lt-pinpai .s-bd ul li, .second-nav-v2 .rt-fangxiang .s-bd ul li {
    padding: 3px;
  }
  header .navBar > ul > li > a span {
    font-weight: bold;
  }
  header .navBar > ul > li.active .second-nav-v3 {
    height: auto;
  }
}

@media screen and (max-width: 520px) {
  .second-nav-v2 .lt-pinpai .s-bd ul li, .second-nav-v2 .rt-fangxiang .s-bd ul li {
    width: 50%;
  }
}

@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* banner */
.banner-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  /* 上层标签 */
}

.banner-swiper .swiper-slide {
  height: 100vh;
  background: center center /cover no-repeat;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.banner-swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
}

.banner-swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-swiper .swiper-slide .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.banner-swiper .swiper-slide .text {
  position: relative;
}

.banner-swiper .swiper-slide .text .ani {
  transition: all 1.5s;
  opacity: 0;
  transform: translateY(250%);
  visibility: hidden;
}

.banner-swiper .swiper-slide .text .zs {
  position: absolute;
  z-index: 0;
  top: -35%;
  left: -20px;
  width: 97px;
}

.banner-swiper .swiper-slide .text .zs img {
  width: 100%;
}

.banner-swiper .swiper-slide .text .txt-1 {
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-bottom: 20px;
  transition-delay: 0.4s;
  font-size: 50px;
}

.banner-swiper .swiper-slide .text .txt-2 {
  line-height: 1;
  font-weight: normal;
  transition-delay: 0.8s;
  font-size: 22px;
}

.banner-swiper .swiper-slide .text .btn-banner {
  margin-top: 50px;
  transition-delay: 1.2s;
}

.banner-swiper .swiper-slide-active .text .ani {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.banner-swiper .swiper-pagination {
  bottom: 30px !important;
}

.banner-swiper .swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  border-radius: 100px;
  opacity: 0.2;
  transition: all .5s;
  background: #FFFFFF;
}

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

.banner-swiper .banner-top-labels {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 100%;
  z-index: 5;
}

.banner-swiper .banner-top-labels ul {
  display: flex;
}

.banner-swiper .banner-top-labels ul li {
  flex: 1;
  text-align: center;
  position: relative;
}

.banner-swiper .banner-top-labels ul li .icon {
  width: 36px;
  margin: 0 auto;
}

.banner-swiper .banner-top-labels ul li .icon img {
  width: 100%;
  transition: all .3s;
}

.banner-swiper .banner-top-labels ul li p {
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
  padding: 0 10px;
}

.banner-swiper .banner-top-labels ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: #FFFFFF;
  opacity: 0.1;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}

.banner-swiper .banner-top-labels ul li:last-child::after {
  display: none;
}

.banner-swiper .banner-top-labels ul li a:hover .icon img {
  transform: translateY(-10px);
}

/* 首页共用样式 */
.boxCont {
  padding: 50px 0 50px;
}

.boxCont .boxCont-title {
  text-align: center;
  margin-bottom: 30px;
}

.boxCont .boxCont-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--primary);
  line-height: 1;
}

.boxCont .boxCont-title h2::before {
  content: '';
  display: block;
  width: 69px;
  height: 9px;
  background: url(../images/title_line_l.svg) right 0/cover no-repeat;
  margin-right: 10px;
}

.boxCont .boxCont-title h2::after {
  content: '';
  display: block;
  width: 69px;
  height: 9px;
  background: url(../images/title_line_r.svg) 0 0/cover no-repeat;
  margin-left: 10px;
}

.boxCont .boxCont-title h5 {
  margin-top: 15px;
  opacity: 0.7;
  font-weight: normal;
  line-height: 1;
}

/* 自研产品 */
.index-ziyan {
  background: 0 0 /100% auto no-repeat #F0F3F9;
  overflow: hidden;
}

.swiper-ziyan {
  position: relative;
}

.swiper-ziyan .swiper-slide a {
  display: block;
  background: url(../images/index_01_bg_01.svg) 0 0/100% auto repeat #FFFFFF;
  overflow: hidden;
  border-top: 2px solid var(--primary);
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.swiper-ziyan .swiper-slide a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.swiper-ziyan .swiper-slide .bigIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.swiper-ziyan .swiper-slide .bigIcon img {
  max-width: 100%;
  max-height: 100%;
  height: 150px;
  transition: all .5s;
}

.swiper-ziyan .swiper-slide .text {
  background: #fff;
  padding: 0 30px 30px;
  text-align: center;
  font-size: 16px;
}

.swiper-ziyan .swiper-slide .text .en {
  font-weight: normal;
}

.swiper-ziyan .swiper-slide a:hover .bigIcon img {
  transform: scale(1.1);
}

.swiper-ziyan .swiper-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.swiper-ziyan .swiper-button .button-sw {
  position: static;
  margin-top: 0;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 100px;
  opacity: 1;
  box-shadow: 0px 0px 40px 0px rgba(64, 53, 41, 0.1);
  transition: all .3s;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-ziyan .swiper-button .button-sw::before {
  content: '';
  display: block;
  width: 14px;
  height: 10px;
  background: url(../images/icon_arrow_balck_14.svg) 0 0/cover no-repeat;
}

.swiper-ziyan .swiper-button .button-sw:hover {
  background: var(--primary);
}

.swiper-ziyan .swiper-button .button-sw:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
}

.swiper-ziyan .swiper-button .swiper-button-prev:hover::before {
  transform: rotate(180deg);
}

.swiper-ziyan .swiper-button .swiper-button-next::before {
  transform: rotate(180deg);
}

.swiper-ziyan .swiper-button .swiper-button-next:hover {
  background: var(--primary);
}

.swiper-ziyan .swiper-button .swiper-button-next:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
  transform: rotate(0);
}

@keyframes slidetounlock {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}

@keyframes slidetounlock2 {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes heart {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes toLeft {
  0% {
    transform: translateX(-10px);
  }
  25% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-10px);
  }
}

@keyframes toRight {
  0% {
    transform: translateX(10px);
  }
  25% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}

/* 安全产品 */
.index-anquan {
  background: 0 0 /cover #000 no-repeat;
}

.index-anquan .boxCont-title h2 {
  position: relative;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, var(--primary)), color-stop(0.4, var(--primary)), color-stop(0.5, white), color-stop(0.6, var(--primary)), color-stop(1, var(--primary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: slidetounlock 2.8s infinite;
  -webkit-text-size-adjust: none;
  color: linear-gradient(to right, #a2a2a2, #ffffff, #9c9c9c);
}

.index-anquan .boxCont-title h2::before {
  background-image: url(../images/title_line_l_white.svg);
}

.index-anquan .boxCont-title h2::after {
  background-image: url(../images/title_line_r_white.svg);
}

.index-anquan .boxCont-title h5 {
  color: #fff;
  opacity: 0.7;
}

.anquan-box {
  position: relative;
  justify-content: space-between;
}

.anquan-box .anquanLine {
  width: 77.94118%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 0;
}

.anquan-box .anquanLine img {
  width: 100%;
}

.anquan-box .anquan-lists {
  width: 300px;
  height: 510px;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.anquan-box .anquan-lists ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.anquan-box .anquan-lists ul li {
  box-shadow: 0px 0px 30px 0px rgba(47, 48, 133, 0.05);
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  min-height: 102px;
  transition: all .3s;
}

.anquan-box .anquan-lists ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.anquan-box .anquan-lists ul li a h2, .anquan-box .anquan-lists ul li a p {
  line-height: 24px;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.anquan-box .anquan-lists ul li a h2 {
  background-image: linear-gradient(180deg, #E8E9FF 0%, #dbdbef 100%);
  font-size: 16px;
}

.anquan-box .anquan-lists ul li a p {
  background-image: linear-gradient(180deg, #dbdbef 0%, #999AC5 100%);
}

.anquan-box .anquan-lists ul li:hover {
  box-shadow: 0px 0px 30px 0px rgba(47, 48, 133, 0.05);
  background: var(--primary);
}

.anquan-box .anquan-lists ul li:hover h2 {
  background-image: linear-gradient(180deg, #FFEDF1 3%, #e7cbd1 100%);
}

.anquan-box .anquan-lists ul li:hover p {
  background-image: linear-gradient(180deg, #e7cbd1 3%, #CA9DA6 100%);
}

.anquan-box .anquan-lists::before {
  content: "";
  width: 500%;
  height: 500%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: conic-gradient(rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.5) 100%);
  z-index: -2;
  animation: rotate 10s linear infinite;
}

.anquan-box .anquan-lists::after {
  content: "";
  background: linear-gradient(180deg, #0E113E 0%, #06061E 100%);
  box-shadow: inset 0px 0px 8px 0px #1E246D;
  position: absolute;
  inset: 2px;
  border-radius: 5px;
  z-index: 0;
}

.anquan-box .btn-shuaxin {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.anquan-box .btn-shuaxin a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anquan-box .btn-shuaxin a::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_shuaxin_white.svg) 0 0 no-repeat;
  margin-right: 5px;
  transition: all .5s;
}

.anquan-box .btn-shuaxin a:hover {
  opacity: 0.8;
}

.anquan-box .anquan-md {
  position: relative;
  z-index: 9;
}

.anquan-box .anquan-md .anquan-md-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.anquan-box .anquan-md .anquan-md-center .circle {
  width: 170px;
  height: 170px;
  position: relative;
}

.anquan-box .anquan-md .anquan-md-center .circle::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 100%;
  transform: translate(-50%, -50%, 0);
  animation: heart 15s linear infinite;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.anquan-box .anquan-md .anquan-md-center .circle .wave {
  display: block;
  width: 382.35294%;
  height: 382.35294%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -1;
}

.anquan-box .anquan-md .anquan-md-center .circle .wave::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--primary-rgb), 0.55) 0%, rgba(var(--primary-rgb), 0) 100%);
}

.anquan-box .anquan-md .arrow {
  width: 24px;
  height: 24px;
  background: url(../images/index_02_aroow.svg) 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

.anquan-box .anquan-md .arrow.arrow-l {
  left: -40%;
  animation: toLeft 2s linear infinite;
}

.anquan-box .anquan-md .arrow.arrow-r {
  transform: rotate(180deg);
  right: -40%;
  animation: toRight 2s linear infinite;
  background: url(../images/index_02_aroow_2.svg) 0 0/cover no-repeat;
}

.anquan-box .anquan-md .btn-zixun {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 0;
}

.anquan-box .anquan-md .btn-zixun a {
  min-width: 130px;
  color: #000;
}

.anquan-box .anquan-md .btn-zixun a:hover {
  color: #fff;
}

/* 咨询服务 */
.index-zixun {
  background: linear-gradient(180deg, #F6F8FB 0%, #FFFFFF 0%, #F2F5FD 100%);
  overflow: hidden;
  position: relative;
}

.index-zixun .boxCont-Body {
  position: relative;
}

.index-zixun .block-dianzhen01 {
  width: 10.72917%;
  position: absolute;
  left: 5.20833%;
  bottom: 134px;
  z-index: 0;
}

.index-zixun .block-dianzhen01 img {
  width: 100%;
}

.index-zixun .block-dianzhen02 {
  width: 6.04167%;
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 0;
}

.index-zixun .block-dianzhen02 img {
  width: 100%;
}

.index-zixun .zixun-lists {
  position: relative;
  z-index: 2;
}

.index-zixun .zixun-lists ul li {
  position: relative;
  z-index: auto;
}

.index-zixun .zixun-lists ul li::after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/index_03_iconadd.svg) 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: -22px;
  z-index: 300;
}

.index-zixun .zixun-lists ul li:last-child::after {
  display: none;
}

.index-zixun .zixun-lists ul li .inbox {
  border: 1px solid rgba(79, 101, 134, 0.2);
  flex-grow: 1;
  background: #FFFFFF center bottom /100% auto no-repeat;
  border-radius: 5px;
  text-align: center;
  transition: all .6s;
  position: relative;
  z-index: -1;
  transition: all 1s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.index-zixun .zixun-lists ul li .inbox a {
  display: block;
  padding: 30px 30px 20px;
}

.index-zixun .zixun-lists ul li .inbox .text {
  height: 263px;
  position: relative;
  z-index: 2;
}

.index-zixun .zixun-lists ul li .inbox .icon {
  width: 70px;
  margin: 0 auto;
}

.index-zixun .zixun-lists ul li .inbox .icon img {
  width: 100%;
}

.index-zixun .zixun-lists ul li .inbox h2 {
  margin: 20px auto;
  line-height: 1;
}

.index-zixun .zixun-lists ul li .inbox p {
  color: #000000;
  opacity: 0.7;
  text-align: left;
  line-height: 26px;
  text-align: justify;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index-zixun .zixun-lists ul li .inbox .btn-defualt {
  background: var(--bg-primary-soft);
  position: relative;
  z-index: 2;
}

.index-zixun .zixun-lists ul li .inbox .btn-defualt:hover {
  color: var(--primary);
}

.index-zixun .zixun-lists ul li .inbox .btn-defualt:hover .icon-arrow-big {
  background: var(--primary);
}

.index-zixun .zixun-lists ul li .inbox .btn-defualt:hover .icon-arrow-big::after {
  background: url(../images/icon_arrow_white_12.svg) 0 0/cover no-repeat;
}

.index-zixun .zixun-lists ul li .inbox:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  background: var(--primary) url(../images/index_03_line.svg) center bottom/100% auto no-repeat;
}

.index-zixun .zixun-lists ul li .inbox:hover h2 {
  color: #fff;
}

.index-zixun .zixun-lists ul li .inbox:hover p {
  color: #fff;
  opacity: 0.7;
}

.index-zixun .zixun-lists ul li[data-swiper-slide-index="0"] {
  z-index: 10;
}

.index-zixun .zixun-lists ul li[data-swiper-slide-index="1"] {
  z-index: 9;
}

.index-zixun .zixun-lists ul li[data-swiper-slide-index="2"] {
  z-index: 8;
}

.index-zixun .zixun-lists ul li[data-swiper-slide-index="3"] {
  z-index: 7;
}

.index-zixun .zixun-lists ul li[data-swiper-slide-index="4"] {
  z-index: 6;
}

.index-zixun .zixun-lists ul li[data-swiper-slide-index="5"] {
  z-index: 5;
}

.index-zixun .zixun-lists ul li[data-swiper-slide-index="6"] {
  z-index: 4;
}

.index-zixun .zixun-lists ul .swiper-slide-prev {
  z-index: 14;
}

.index-zixun .zixun-lists ul .swiper-slide-active {
  z-index: 13;
}

.index-zixun .zixun-lists ul .swiper-slide-next {
  z-index: 12;
}

.index-bg-04 {
  background: center 0 /cover no-repeat;
}

.index-corporation .boxCont {
  padding-bottom: 0;
}

.index-corporation .boxCont .boxCont-title {
  margin-bottom: 10px;
}

.hezuo-lists ul {
  padding: 0 0 20px;
}

.hezuo-lists ul li {
  display: inline-block;
  margin: 0 14px;
  padding-top: 20px;
}

.hezuo-lists ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 260px;
  padding: 68px 20px;
  text-align: center;
  border: 2px solid rgba(var(--primary-rgb), 0);
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.hezuo-lists ul li a .sm-logo {
  width: 190px;
  margin-bottom: 20px;
}

.hezuo-lists ul li a .sm-logo img {
  width: 100%;
}

.hezuo-lists ul li a h2 {
  margin-bottom: 10px;
  color: #000;
  font-size: 16px;
}

.hezuo-lists ul li a p {
  opacity: 0.7;
  color: #000;
  font-size: 14px;
  white-space: wrap;
  height: 16px;
}

.hezuo-lists ul li a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border: 2px solid var(--primary);
}

.index-hangye {
  overflow: hidden;
}

.index-hangye .boxCont {
  padding-top: 30px;
}

.index-hangye .tabs-container {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  height: 500px;
}

.index-hangye .tabs-container .swiper-slide {
  position: relative;
  cursor: pointer;
}

.index-hangye .tabs-container .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-hangye .tabs-container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.index-hangye .tabs-container .info-box {
  position: absolute;
  left: 8.08824%;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 400px;
  border-radius: 5px;
  padding: 30px;
  z-index: 2;
}

.index-hangye .tabs-container .info-box::before {
  content: '';
  display: block;
  width: 10px;
  height: 92%;
  background: var(--primary);
  border-radius: 5px 0 0 5px;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.index-hangye .tabs-container .info-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.index-hangye .tabs-container .info-box .s-hd {
  min-height: 182px;
  position: relative;
  z-index: 1;
}

.index-hangye .tabs-container .info-box .s-hd span {
  display: block;
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 20px;
}

.index-hangye .tabs-container .info-box .s-hd h2 {
  line-height: 32px;
}

.index-hangye .tabs-container .info-box .s-hd p {
  color: #000000;
  opacity: 0.7;
  text-align: left;
  line-height: 26px;
  height: 78px;
  text-align: justify;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index-hangye .tabs-container .info-box .s-ft {
  position: relative;
  z-index: 1;
}

.index-hangye .tabs-container .swiper-slide:hover .img img {
  transform: scale(1.02);
}

.index-hangye .s-tabs {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-hangye .s-tabs a {
  opacity: 0.7;
}

.index-hangye .s-tabs a::after {
  content: '';
  display: inline-block;
  width: 91px;
  height: 18px;
  background: url(../images/index_04_line.svg) 0 0/cover no-repeat;
  margin: 0 20px;
}

.index-hangye .s-tabs a.active {
  opacity: 1;
  color: var(--primary);
  font-weight: bold;
}

.index-hangye .s-tabs a:last-child::after {
  display: none;
}

.index-hangye .swiper-pagination {
  margin-top: 15px;
  position: inherit;
}

.index-hangye .swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  border-radius: 100px;
  opacity: 0.2;
  transition: all .5s;
  background: var(--primary);
  margin: 0 10px;
}

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

.index-dongjian {
  background: center center /cover no-repeat;
}

.index-dongjian .btn-bar {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-lists {
  margin-left: -15px;
  margin-right: -15px;
}

.news-lists .news-item {
  width: 33.33%;
  padding: 0 15px;
}

.news-lists .news-item a {
  border-radius: 5px;
  overflow: hidden;
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.news-lists .news-item .img {
  height: 180px;
  overflow: hidden;
}

.news-lists .news-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.news-lists .news-item .info {
  padding: 20px;
  background: center bottom  /cover no-repeat #FFFFFF;
  transition: all .5s;
}

.news-lists .news-item .info h2 {
  margin-top: 10px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 26px;
  height: 52px;
  font-weight: normal;
}

.news-lists .news-item .info .icon-go {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  display: none;
}

.news-lists .news-item .info .icon-go::after {
  content: '';
  display: block;
  width: 14px;
  height: 10px;
  background: url(../images/icon_arrow_white_14.svg) 0 0/cover no-repeat;
}

.news-lists .news-item a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.news-lists .news-item a:hover .img img {
  transform: scale(1.05);
}

.news-lists .news-item a:hover .info {
  background: url(../images/index_06_dianzhen.svg) center 0/125% auto no-repeat var(--primary);
}

.news-lists .news-item a:hover .info .datetime {
  color: #fff;
}

.news-lists .news-item a:hover .info .datetime .icon-datetime {
  background-image: url(../images/icon_datetime_white.svg);
}

.news-lists .news-item a:hover .info h2 {
  color: #fff;
}

.news-lists .news-item a:hover .info .icon-go {
  background: #fff;
}

.news-lists .news-item a:hover .info .icon-go::after {
  background-image: url(../images/icon_arrow_balck_14_right.svg);
}

.datetime {
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.4);
}

.datetime .icon-datetime {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon_datetime.svg) 0 0/cover no-repeat;
  margin-right: 5px;
}

.pageMian {
  position: relative;
  z-index: 10;
  background: #fff;
}

.index-hangye .tabs-container .img {
  border-radius: 5px;
}

@media screen and (min-width: 1441px) {
  .banner-swiper .swiper-slide .text .txt-1 {
    font-size: 50px;
  }
  .banner-swiper .swiper-slide .text .txt-2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 1440px) {
  .banner-swiper .swiper-slide .text .zs {
    width: 60px;
    left: -10px;
    top: -20px;
  }
  .news-lists {
    margin-left: -20px;
    margin-right: -20px;
  }
  .news-lists .news-item {
    padding: 0 20px;
  }
  .news-lists .news-item .img {
    height: 130px;
  }
  .boxCont .boxCont-title h2 {
    font-size: 32px;
  }
  .index-hangye .tabs-container {
    height: 420px;
  }
  .banner-swiper .swiper-slide .text .txt-1 {
    font-size: 40px;
  }
  .banner-swiper .swiper-slide .text .txt-2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1280px) {
  .nav-daili a {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
  .banner-swiper .swiper-slide .text .txt-1 {
    font-size: 36px;
  }
  .banner-swiper .swiper-slide .text .txt-2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .swiper-ziyan .swiper-slide a {
    padding-top: 20px;
    border-radius: 5px;
  }
  .swiper-ziyan .swiper-slide .bigIcon {
    height: 200px;
  }
  .banner-swiper .swiper-slide .text .txt-1 {
    font-size: 30px;
  }
  .banner-swiper .swiper-slide .text .txt-2 {
    font-size: 16px;
  }
  .boxCont {
    padding: 40px 0;
  }
  .boxCont .boxCont-title h2 {
    font-size: 24px;
  }
  .index-hangye .swiper-pagination {
    margin-top: 20px;
  }
  .news-lists {
    margin-left: -10px;
    margin-right: -10px;
  }
  .news-lists .news-item {
    padding: 0 10px;
  }
  .btn-defualt .icon-arrow-big {
    width: 28px;
    height: 28px;
  }
  .banner-swiper .banner-top-labels ul li .icon {
    width: 30px;
  }
  .banner-swiper .banner-top-labels {
    bottom: 60px;
  }
  .banner-swiper .swiper-pagination-bullet, .index-hangye .swiper-pagination-bullet {
    width: 18px;
    height: 3px;
    margin: 0 2px;
  }
  .btn-defualt {
    font-size: 14px;
  }
  .index-hangye .tabs-container .img {
    border-radius: 5px;
  }
  .news-lists .news-item a {
    border-radius: 5px;
  }
  .index-hangye .tabs-container .info-box {
    border-radius: 5px;
  }
  .boxCont .boxCont-title h2::before {
    width: 39px;
    height: 5px;
  }
  .boxCont .boxCont-title h2::after {
    width: 39px;
    height: 5px;
  }
  .boxCont .boxCont-title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 992px) {
  .banner-swiper .swiper-slide .text .txt-1 {
    font-size: 28px;
  }
  .boxCont .boxCont-title h2 {
    font-size: 20px;
  }
  .anquan-box {
    gap: 20px;
  }
  .anquan-box .anquan-md {
    display: none;
  }
  .anquan-box .anquanLine {
    display: none;
  }
  .anquan-box .anquan-lists {
    width: 100%;
  }
  .anquan-box .lt, .anquan-box .rt {
    flex: 1;
  }
  .news-lists .news-item .img {
    height: 13vw;
  }
  .index-hangye .tabs-container .info-box {
    left: 20px;
    padding: 20px;
  }
  .index-hangye .tabs-container .info-box .s-hd {
    min-height: auto;
    margin-bottom: 20px;
  }
  .banner-swiper .banner-top-labels {
    display: none;
  }
  .banner-swiper .swiper-slide {
    height: 70vw;
  }
  .banner-swiper .swiper-slide .text .btn-banner {
    margin-top: 25px;
  }
  .swiper-ziyan .swiper-slide .bigIcon {
    height: 160px;
  }
  .swiper-ziyan .swiper-button {
    display: none;
  }
  .anquan-box .rt {
    display: none;
  }
  .hezuo-lists ul li {
    margin: 0 8px;
  }
}

@media screen and (max-width: 520px) {
  .news-lists {
    gap: 10px;
  }
  .news-lists .news-item {
    width: 100%;
  }
  .index-hangye .tabs-container .info-box {
    width: 90%;
  }
  .anquan-box .lt, .anquan-box .rt {
    width: 100%;
  }
  .anquan-box {
    flex-wrap: wrap;
  }
  .banner-swiper .swiper-slide {
    height: 100vw;
  }
  .banner-swiper .swiper-slide .text .txt-1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .banner-swiper .swiper-slide .text .zs {
    width: 40px;
  }
  .news-lists .news-item .img {
    height: 38vw;
  }
}

/* 底部 */
.footer-hd {
  position: relative;
  background: #FFFFFF;
}

.footer-hd .imgs {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  gap: 40px;
}

.footer-hd .imgs .img {
  flex: 1;
  overflow: hidden;
}

.footer-hd .imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.footer-hd .imgs .img:first-child {
  border-top-right-radius: 5px;
}

.footer-hd .imgs .img:last-child {
  border-top-left-radius: 5px;
}

.footer-hd .hd-info {
  position: relative;
  z-index: 2;
}

.footer-hd .hd-info .inner {
  gap: 40px;
}

.footer-hd .hd-info .hd-item {
  padding: 35px 0 30px;
  flex: 1;
}

.footer-hd .hd-info .hd-item:last-child {
  padding-left: 50px;
}

.footer-hd .hd-info .s-hd {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: var(--primary);
  display: none;
  margin-bottom: 40px;
  overflow: hidden;
}

.footer-hd .hd-info .s-hd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.footer-hd .hd-info h2 {
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}

.footer-hd .hd-info h5 {
  font-weight: normal;
}

.footer-hd .hd-info .service-list {
  margin-top: 18px;
}

.footer-hd .hd-info .service-list ul {
  gap: 30px;
}

.footer-hd .hd-info .service-list ul li a {
  width: 100px;
  height: 80px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-hd .hd-info .service-list ul li a .icon {
  width: 40px;
  margin-bottom: 2px;
  overflow: hidden;
}

.footer-hd .hd-info .service-list ul li a .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.footer-hd .hd-info .service-list ul li a span {
  opacity: 0.7;
}

footer {
  position: relative;
  left: 0;
  width: 100%;
  bottom: 0;
}

footer .footer-bd {
  background: url(../images/footer_tuan.png) center bottom/100% auto no-repeat var(--primary);
  color: #fff;
}

footer .footer-bd .hd {
  padding: 22px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 37px;
}

footer .footer-bd .hd .logo {
  height: 40px;
}

footer .footer-bd .hd .logo img {
  width: auto;
  height: 100%;
}

footer .footer-bd .contact-info {
  gap: 30px;
}

footer .footer-bd .contact-info .contact-item {
  position: relative;
}

footer .footer-bd .contact-info .contact-item a.circle-q {
  display: flex;
  border-radius: 100%;
  border: 1px solid transparent;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
}

footer .footer-bd .contact-info .contact-item a.circle-q img {
  width: 100%;
}

footer .footer-bd .contact-info .contact-item .dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  padding-top: 20px;
  transform: translateX(-50%);
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
}

footer .footer-bd .contact-info .contact-item .dropdown .img {
  background: #fff;
  border-radius: 5px;
  padding: 2px;
  position: relative;
}

footer .footer-bd .contact-info .contact-item .dropdown .img::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -8px;
  position: absolute;
}

footer .footer-bd .contact-info .contact-item .dropdown .img img {
  width: 100px;
}

footer .footer-bd .contact-info .contact-item:hover a.circle-q {
  background: #842135;
}

footer .footer-bd .contact-info .contact-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

footer .footer-bd .bd {
  margin-bottom: 37px;
}

footer .footer-bd .bd .bd-left {
  width: 21.54412%;
  position: relative;
  margin-right: 8.60294%;
  padding-right: 20px;
}

footer .footer-bd .bd .bd-left::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
  right: 0;
  position: absolute;
}

footer .footer-bd .bd .bd-left .item {
  margin-bottom: 20px;
}

footer .footer-bd .bd .bd-left .item:last-child {
  margin-bottom: 0;
}

footer .footer-bd .bd .bd-left .item p {
  opacity: 0.6;
  line-height: 1;
  font-size: 12px;
}

footer .footer-bd .bd .bd-left .item h5 {
  margin-top: 10px;
  line-height: 1;
  font-weight: normal;
}

footer .footer-bd .bd .bd-left .hd-tel {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

footer .footer-bd .bd .bd-left .hd-tel img {
  width: 20px;
  margin-right: 10px;
}

footer .footer-bd .bd .bd-left .hd-tel span {
  line-height: 1;
}

footer .footer-bd .bd .bd-left .links-box {
  position: relative;
  display: flex;
  width: 100%;
}

footer .footer-bd .bd .bd-left .links-box .curText {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1;
  transition: all .3s;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}

footer .footer-bd .bd .bd-left .links-box .curText::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: url(../images/icon_xiala.svg) 0 0/100% auto no-repeat;
  margin-left: 8px;
  transition: all .3s;
}

footer .footer-bd .bd .bd-left .links-box .dropdown {
  position: absolute;
  left: 0;
  bottom: 100%;
  padding-bottom: 20px;
  transition: all .3s;
  opacity: 0;
  visibility: visible;
  display: none;
  min-width: 100%;
}

footer .footer-bd .bd .bd-left .links-box .dropdown .inner {
  background: #fff;
  border-radius: 5px;
  position: relative;
}

footer .footer-bd .bd .bd-left .links-box .dropdown .inner::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  bottom: -20px;
  left: 20px;
  position: absolute;
}

footer .footer-bd .bd .bd-left .links-box .dropdown ul {
  max-height: 260px;
  overflow-y: auto;
  padding: 10px;
}

footer .footer-bd .bd .bd-left .links-box .dropdown ul li {
  white-space: nowrap;
  margin-bottom: 5px;
}

footer .footer-bd .bd .bd-left .links-box .dropdown ul li:last-child {
  margin-bottom: 0;
}

footer .footer-bd .bd .bd-left .links-box .dropdown ul li a {
  font-size: 12px;
  display: block;
}

footer .footer-bd .bd .bd-left .links-box:hover .curText {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  opacity: 1;
}

footer .footer-bd .bd .bd-left .links-box:hover .curText::after {
  transform: rotate(180deg);
}

footer .footer-bd .bd .bd-left .links-box:hover .dropdown {
  opacity: 1;
  visibility: visible;
  display: block;
}

footer .footer-bd .bd .bd-left .links-box:hover ul {
  opacity: 1;
  visibility: visible;
}

footer .footer-bd .bd .bd-right {
  flex: 1;
}

footer .footer-bd .bd .ft-nav ul {
  justify-content: space-between;
}

footer .footer-bd .bd .ft-nav ul li h2 {
  margin-bottom: 8px;
}

footer .footer-bd .bd .ft-nav ul li h2 a {
  color: #fff;
  line-height: 1;
}

footer .footer-bd .bd .ft-nav ul li .s-li a {
  opacity: 0.7;
  color: #fff;
  display: inline-block;
  line-height: 24px;
}

footer .footer-bd .bd .ft-nav ul li .s-li a:hover {
  opacity: var(--array-1);
}

footer .footer-bd .ft {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 0;
}

footer .footer-bd .ft .lt {
  opacity: 0.7;
  font-size: 12px;
}

footer .footer-bd .ft .lt a {
  color: #fff;
}

footer .footer-bd .ft .rt {
  display: flex;
}

footer .footer-bd .ft .rt .ft-link {
  color: rgba(255, 255, 255, 0.1);
}

footer .footer-bd .ft .rt .ft-link a {
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
  margin: 0 3px;
}

footer .footer-bd .ft .rt .ft-link a:hover {
  opacity: 1;
}

footer .footer-bd .ft .rt .mysite {
  margin-left: 10px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  line-height: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  gap: 4px;
}

footer .footer-bd .ft .rt .mysite a {
  display: inline-block;
  width: 58px;
}

footer .footer-bd .ft .rt .mysite a img {
  width: 100%;
}

/* 右侧浮动�?*/
.right-fixed {
  position: fixed;
  right: 30px;
  bottom: 10%;
  z-index: 50;
  padding: 5px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1), inset 0px 0px 5px 0px #FFFFFF;
  backdrop-filter: blur(50px);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.95);
  width: 60px;
}

.right-fixed ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.right-fixed ul li {
  position: relative;
}

.right-fixed ul li::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -0;
  left: 50%;
  transform: translateX(-50%);
}

.right-fixed ul li:last-child::after {
  display: none;
}

.right-fixed ul li a {
  display: block;
}

.right-fixed ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: 0 0 /101% auto no-repeat;
  border-radius: 100%;
}

.right-fixed ul li .icon01 {
  background-image: url(../images/right_icon01.svg);
}

.right-fixed ul li .icon02 {
  background-image: url(../images/right_icon02.svg);
}

.right-fixed ul li .icon03 {
  background-image: url(../images/right_icon03.svg);
}

.right-fixed ul li .icon04 {
  background-image: url(../images/right_icon04.svg);
}

.right-fixed ul li .icon05 {
  background-image: url(../images/right_icon05.svg);
}

.right-fixed ul li:hover span.icon {
  box-shadow: 5px 5px 10px 0px rgba(126, 17, 39, 0.45);
  background-color: radial-gradient(85% 85% at 29% 19%, #FFD4DD 0%, var(--primary) 100%);
}

.right-fixed ul li:hover .icon01 {
  background-image: url(../images/right_icon01_hover.svg);
}

.right-fixed ul li:hover .icon02 {
  background-image: url(../images/right_icon02_hover.svg);
}

.right-fixed ul li:hover .icon03 {
  background-image: url(../images/right_icon03_hover.svg);
}

.right-fixed ul li:hover .icon04 {
  background-image: url(../images/right_icon04_hover.svg);
}

.right-fixed ul li:hover .icon05 {
  background-image: url(../images/right_icon05_hover.svg);
}

.right-fixed .dropdown {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(-20px, -50%);
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.right-fixed .dropdown > div {
  border-radius: 5px;
  padding: 5px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

.right-fixed .dropdown > div::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 8px solid #fff;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 100%;
}

.right-fixed .dropdown .tel {
  white-space: nowrap;
  padding: 20px;
}

.right-fixed .dropdown .qrcodebox {
  width: 200px;
  padding: 0;
}

.right-fixed .dropdown .qrcodebox img {
  width: 100%;
}

.right-fixed .dropdown .mapbox .map {
  width: 340px;
  height: 200px;
}

.right-fixed .dropdown .mapbox p {
  text-align: center;
  padding: 10px 0;
}

.right-fixed ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.right-fixed .dropdown.openThis {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

@media screen and (max-width: 1440px) {
  footer .footer-bd .hd .logo {
    height: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .page-wrap {
    padding: 40px 0;
  }
  .right-fixed {
    width: 30px;
    right: 20px;
    bottom: 100px;
  }
  .right-fixed ul {
    gap: 2px;
  }
  .right-fixed ul li span {
    width: 20px;
    height: 20px;
  }
  .right-fixed .dropdown .qrcodebox {
    width: 100px;
    padding: 0;
  }
  .right-fixed .dropdown .tel {
    padding: 10px;
  }
  .footer-hd .hd-info .hd-item {
    padding: 25px 0 20px;
  }
  .footer-hd .hd-info .s-hd {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    margin-bottom: 20px;
  }
  .footer-hd .hd-info .service-list {
    margin-top: 15px;
  }
  .footer-hd .hd-info .service-list ul li a {
    width: 80px;
    height: 80px;
    border-radius: 7px;
  }
  .footer-hd .hd-info .service-list ul li a .icon {
    width: 30px;
    margin-bottom: 5px;
  }
  footer .footer-bd .bd .bd-left .item {
    margin-bottom: 20px;
  }
  footer .footer-bd .bd .ft-nav ul li h2 {
    margin-bottom: 10px;
  }
  .footer-hd .imgs {
    gap: 20px;
  }
  .footer-hd .hd-info .hd-item:last-child {
    padding-left: 30px;
  }
}

@media screen and (max-width: 992px) {
  footer .footer-bd .bd {
    flex-wrap: wrap;
  }
  footer .footer-bd .bd .bd-left {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 30px;
  }
  footer {
    position: relative;
  }
  footer .footer-bd .bd .bd-left::after {
    display: none;
  }
  footer .footer-bd .bd .bd-left .hd-tel {
    justify-content: center;
  }
  footer .footer-bd .bd .ft-nav ul li .s-li {
    display: none;
  }
  footer .footer-bd .bd .ft-nav ul {
    gap: 30px;
    justify-content: center;
  }
  footer .footer-bd .bd {
    margin-bottom: 40px;
  }
  footer .footer-bd .bd .bd-left .links-box .dropdown ul li {
    text-align: left;
  }
  footer .footer-bd .contact-info .contact-item .dropdown {
    transform: translateX(0);
    left: auto;
    right: 0;
  }
  footer .footer-bd .contact-info .contact-item .dropdown .img::before {
    left: auto;
    right: 10px;
  }
  .footer-hd .hd-info .service-list ul {
    gap: 20px;
  }
  footer .footer-bd .bd .bd-left .links-box {
    width: 200px;
    margin: 0 auto;
  }
  .footer-hd .imgs .img:first-child {
    border-radius: 0;
  }
  .footer-hd .imgs .img:last-child {
    border-radius: 0;
  }
}

@media screen and (max-width: 700px) {
  footer .footer-bd .bd .ft-nav ul {
    gap: 10px;
  }
  footer .footer-bd .ft > div {
    align-items: center;
    text-align: center;
  }
  footer .footer-bd .ft .rt {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .footer-hd .imgs {
    flex-direction: column;
  }
  .footer-hd .hd-info .service-list ul {
    gap: 10px;
  }
  .footer-hd .hd-info .inner {
    gap: 20px;
    flex-direction: column;
  }
  .footer-hd .hd-info .hd-item:last-child {
    padding-left: 0;
  }
}

.page-banner {
  height: 466px;
  position: relative;
}

.page-banner .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.page-banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner .img::before {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #5A0D1D 0%, #0C0D58 100%);
  z-index: 1;
  position: absolute;
  opacity: 0.7;
}

.page-banner .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  height: 100%;
  justify-content: end;
  color: #fff;
  padding: 88px 10.2% 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.page-banner .wrap .banner-title {
  margin-bottom: 20px;
}

.page-banner .wrap .banner-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
}

.page-banner .wrap .banner-title h2::before {
  content: '';
  display: block;
  width: 69px;
  height: 9px;
  background: url(../images/title_line_l_white.svg) right 0/cover no-repeat;
  margin-right: 10px;
}

.page-banner .wrap .banner-title h2::after {
  content: '';
  display: block;
  width: 69px;
  height: 9px;
  background: url(../images/title_line_r_white.svg) 0 0/cover no-repeat;
  margin-left: 10px;
}

.page-banner .wrap p {
  line-height: 24px;
  margin-bottom: 50px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}

.page-wrap {
  padding: 50px 0;
}

.page-wrap .page-title {
  margin-bottom: 15px;
  align-items: center;
}

.page-wrap .page-title h2 {
  line-height: 1;
  color: var(--primary);
}

.page-pro-jg {
  background: linear-gradient(180deg, #F6F8FB 0%, #FFFFFF 0%, #F2F5FD 100%);
}

.page-pro-jg .inner {
  align-items: start;
}

.page-pro-jg .lt {
  width: 100%;
}

.page-pro-jg .lt .txt {
  margin-bottom: 30px;
  line-height: 24px;
  text-align: justify;
}

.page-pro-jg .lt .txt p {
  text-align: justify;
}

.page-pro-jg .lt .txt p span {
  color: #000 !important;
  font-family: "微软雅黑" !important;
}

.page-pro-jg .lt img {
  display: none;
  border: 1px solid rgba(79, 101, 134, 0.2);
  border-radius: 5px;
  background: #FFFFFF;
  margin-bottom: 40px;
  width: 100%;
  margin-top: 20px;
}

.page-pro-jg .rt {
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}

.page-pro-jg .tab-container {
  background: url(../images/zizhu/line.svg) center bottom no-repeat;
}

.page-pro-jg .tab-container .item {
  cursor: pointer;
  padding-bottom: 50px;
  position: relative;
}

.page-pro-jg .tab-container .item::before {
  content: "";
  position: absolute;
  width: 54px;
  border-radius: 30px;
  height: 10px;
  bottom: 0;
  left: 50%;
  margin-left: -27px;
  background: var(--primary);
  opacity: 0;
  transition: all .5s;
}

.page-pro-jg .tab-container .s-hd {
  align-items: center;
  margin-bottom: 10px;
}

.page-pro-jg .tab-container .s-hd h2 {
  line-height: 1;
  opacity: 0.8;
}

.page-pro-jg .tab-container .s-hd .icon {
  display: block;
  width: 23px;
  height: 16px;
  background: url(../images/zizhu/icon_go.svg) 0 0/cover no-repeat;
}

.page-pro-jg .tab-container .s-bd {
  opacity: 0.7;
  line-height: 24px;
  text-align: justify;
}

.page-pro-jg .tab-container .s-bd p {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 96px;
}

.page-pro-jg .tab-container .swiper-slide {
  opacity: 0.4;
}

.page-pro-jg .tab-container .swiper-slide-active {
  opacity: 1;
}

.page-pro-jg .tab-container .swiper-slide-active .item::before {
  opacity: 1;
}

.page-pro-ys {
  background: url(../images/zizhu/bg_2.jpg) right bottom/cover no-repeat #fff;
  overflow: hidden;
}

.page-pro-ys .page-title {
  margin-bottom: 45px;
}

.page-pro-ys .swiper-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-pro-ys .swiper-button .button-sw {
  position: static;
  margin-top: 0;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  opacity: 1;
  box-shadow: 0px 0px 40px 0px rgba(64, 53, 41, 0.1);
  transition: all .3s;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.1);
}

.page-pro-ys .swiper-button .button-sw::before {
  content: '';
  display: block;
  width: 14px;
  height: 10px;
  background: url(../images/icon_arrow_balck_14.svg) 0 0/cover no-repeat;
}

.page-pro-ys .swiper-button .button-sw:hover {
  background: var(--primary);
}

.page-pro-ys .swiper-button .button-sw:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
}

.page-pro-ys .swiper-button .swiper-button-prev:hover::before {
  transform: rotate(180deg);
}

.page-pro-ys .swiper-button .swiper-button-next::before {
  transform: rotate(180deg);
}

.page-pro-ys .swiper-button .swiper-button-next:hover {
  background: var(--primary);
}

.page-pro-ys .swiper-button .swiper-button-next:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
  transform: rotate(0);
}

.page-pro-ys .ys-container .swiper-slide {
  padding-top: 5px;
  height: auto;
  position: relative;
}

.page-pro-ys .ys-container .swiper-slide::before {
  content: '';
  display: block;
  width: 60px;
  height: 20px;
  border-radius: 6px 6px 0px 0px;
  background: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 0;
}

.page-pro-ys .ys-container .item {
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  padding: 40px 30px;
  border-radius: 5px;
  position: relative;
  transform: translateZ(0);
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  transition: all .3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.page-pro-ys .ys-container .item p {
  opacity: 0.7;
  line-height: 24px;
  text-align: justify;
}

.page-pro-ys .ys-container .item h2 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 10px;
}

.page-pro-ys .ys-container .item:hover {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.flex-wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .page-pro-jg .lt {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-pro-jg .rt {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .page-wrap {
    padding: 40px 0;
  }
}

/* 公司介绍 */
.page-intro-01 {
  background: linear-gradient(180deg, #F6F8FB 0%, #FFFFFF 0%, #F2F5FD 100%);
  position: relative;
}

.page-intro-01 .page-cont {
  position: relative;
  z-index: 2;
}

.page-intro-01 .page-cont .inner {
  align-items: flex-start;
}

.page-intro-01 .lt {
  width: 42.64706%;
  position: sticky;
  position: -webkit-sticky;
  top: 1rem;
}

.page-intro-01 .lt .txt {
  max-height: 47vw;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

.page-intro-01 .lt .txt p {
  opacity: 0.7;
  line-height: 24px;
  text-align: justify;
  margin-bottom: 20px;
}

.page-intro-01 .lt .btn {
  margin-top: 200px;
}

.page-intro-01 .rt {
  width: 50.73529%;
  margin-top: 45px;
}

.page-intro-01 .rt .img {
  border-radius: 5px;
  margin-bottom: 75px;
  overflow: hidden;
}

.page-intro-01 .rt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.page-intro-01 .rt .up-datas .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 0;
  line-height: 1;
  align-items: flex-end;
}

.page-intro-01 .rt .up-datas .item .icon {
  width: 50px;
  height: 50px;
  position: relative;
  top: -20px;
  -webkit-animation: growUp 3s infinite ease-out;
  animation: growUp 3s infinite ease-out;
}

.page-intro-01 .rt .up-datas .item .icon img {
  width: 100%;
}

.page-intro-01 .rt .up-datas .item .num {
  font-size: 100px;
  color: var(--primary);
  font-weight: bold;
  position: relative;
}

.page-intro-01 .rt .up-datas .item .num::after {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images/zoujindisai/icon_add.svg) 0 0/cover no-repeat;
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
}

.page-intro-01 .rt .up-datas .item p {
  position: relative;
  transform: translateY(-10px);
  margin-left: 10px;
}

.page-intro-01 .rt .up-datas .item:nth-child(2) .icon {
  animation-delay: 0.1s;
}

.page-intro-01 .rt .up-datas .item:nth-child(3) .icon {
  animation-delay: 0.2s;
}

.page-intro-01 .rt .up-datas .item:nth-child(4) .icon {
  animation-delay: 0.3s;
}

.page-intro-01 .quan {
  width: 26.04167%;
  position: absolute;
  top: 21.95122%;
  left: 0;
  z-index: 0;
}

.page-intro-01 .quan img {
  width: 100%;
}

@keyframes growUp {
  0% {
    -webkit-transform: translateY(20%);
    opacity: 0;
  }
  30%, 60% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: translateY(-20%);
    opacity: 0;
  }
}

@media screen and (max-width: 1680px) {
  .page-intro-01 .lt .txt {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1440px) and (min-width: 1280px) {
  .page-intro-01 .lt .txt {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1279px) {
  .page-intro-01 .lt .txt {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .page-intro-01 .lt .txt {
    max-height: 55vw;
    padding-right: 0;
  }
}

.page-intro-02 {
  position: relative;
  background: center 0/cover no-repeat;
  background-attachment: fixed;
}

.page-intro-02 .page-wrap {
  padding-bottom: 100px;
}

.page-intro-02 .bg {
  position: sticky;
  top: 0;
  z-index: 0;
}

.page-intro-02 .bg img {
  width: 100%;
}

.page-intro-02 .line {
  position: absolute;
  top: 19.88095%;
  left: 0;
  z-index: 2;
  width: 89.58333%;
}

.page-intro-02 .line img {
  width: 100%;
  position: sticky;
  top: 0;
}

.page-intro-02 .page-wrap {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
}

.page-intro-02 .page-wrap .page-title h2 {
  color: #fff;
}

.page-intro-02 .inner {
  align-items: flex-start;
}

.page-intro-02 .lt {
  width: 42.64706%;
  position: sticky;
  top: 20px;
}

.page-intro-02 .lt .txt P {
  line-height: 24px;
  text-align: justify;
  color: #fff;
}

.page-intro-02 .rt {
  width: 50.73529%;
}

.page-intro-02 .wenhua-datas {
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 20px;
}

.page-intro-02 .wenhua-datas .item {
  width: 50%;
  padding: 15px;
}

.page-intro-02 .wenhua-datas .item .inbox {
  background: #FFFFFF;
  border-radius: 5px;
  height: 350px;
  text-align: center;
  padding: 30px;
  transition: all .3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.page-intro-02 .wenhua-datas .item .inbox .icon {
  width: 70px;
  margin: 0 auto 20px;
}

.page-intro-02 .wenhua-datas .item .inbox .icon img {
  width: 100%;
}

.page-intro-02 .wenhua-datas .item .inbox h2 {
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 1;
}

.page-intro-02 .wenhua-datas .item .inbox p {
  opacity: 0.7;
  line-height: 26px;
  text-align: justify;
  padding-right: 5px;
  overflow-y: auto;
  max-height: 130px;
}

.page-intro-02 .wenhua-datas .item .inbox:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.page-intro-02 .wenhua-datas .item:nth-child(2n) {
  margin-top: 100px;
  margin-bottom: -100px;
}

.page-intro-03 {
  position: relative;
  z-index: 2;
  background: #F4F7FC;
  overflow: hidden;
}

.page-intro-03 .box-dt {
  width: 480px;
  height: 480px;
  position: relative;
  background: #fff;
  border-radius: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-intro-03 .box-dt .kedu {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  animation: byline 12s infinite linear;
}

.page-intro-03 .box-dt::after {
  content: '';
  display: block;
  width: 208.33333%;
  height: 208.33333%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 100%;
  z-index: -1;
}

.page-intro-03 .box-dt::before {
  content: '';
  display: block;
  width: 135.41667%;
  height: 135.41667%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 100%;
}

.page-intro-03 .box0 {
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 83.33333%;
  height: 83.33333%;
}

.page-intro-03 .three {
  background: none;
  display: block;
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
}

.page-intro-03 .page-cont {
  position: relative;
  padding-top: 30px;
}

.page-intro-03 .lt {
  position: absolute;
  left: 0;
  top: 0;
}

.page-intro-03 .rt {
  position: absolute;
  right: 0;
  top: 0;
}

.page-intro-03 .logo-lists {
  width: 30%;
}

.page-intro-03 .logo-lists ul {
  margin-left: -25px;
  margin-right: -25px;
  perspective: 500px;
  perspective-origin: center;
}

.page-intro-03 .logo-lists ul li {
  width: 50%;
  padding: 25px;
  opacity: 0;
  animation: logoRotate 7s ease-out infinite;
}

.page-intro-03 .logo-lists ul li .logo-pic {
  border-radius: 5px;
  background: linear-gradient(180deg, #FFFFFD 0%, #FFFDFE 100%);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.06);
}

.page-intro-03 .logo-lists ul li .logo-pic img {
  width: 100%;
}

.page-intro-03 .logo-lists ul li:nth-child(2n) {
  animation: logoRotate 7s 2.5s ease-out infinite;
}

.page-intro-03 .logo-lists ul li:nth-child(3n) {
  animation: logoRotate 8s 1.5s ease-out infinite;
}

.page-intro-03 .logo-lists ul li:nth-child(4n) {
  animation: logoRotate 5s 0.5s ease-out infinite;
}

.page-intro-03 .logo-lists ul li:nth-child(5n) {
  animation: logoRotate 6s 3.5s ease-out infinite;
}

.page-intro-03 .dxkefu-lists {
  margin-bottom: 14px;
}

.page-intro-03 .dxkefu-lists:last-child {
  margin-bottom: 0;
}

.page-intro-03 .dxkefu-lists ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-top: -8px;
}

.page-intro-03 .dxkefu-lists ul li {
  padding: 8px;
  width: 14.28571%;
}

.page-intro-03 .dxkefu-lists ul li .img {
  border-radius: 5px;
  width: 100%;
  height: 80px;
  background: #fff;
  transition: all .5s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.page-intro-03 .dxkefu-lists ul li .img img {
  max-width: 100%;
  max-height: 100%;
}

.page-intro-03 .dxkefu-lists ul li .img:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.page-intro-03 .swiper-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.page-intro-03 .swiper-button .button-sw {
  position: static;
  margin-top: 0;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 100px;
  opacity: 1;
  box-shadow: 0px 0px 40px 0px rgba(64, 53, 41, 0.1);
  transition: all .3s;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-intro-03 .swiper-button .button-sw::before {
  content: '';
  display: block;
  width: 14px;
  height: 10px;
  background: url(../images/icon_arrow_balck_14.svg) 0 0/cover no-repeat;
}

.page-intro-03 .swiper-button .button-sw:hover {
  background: var(--primary);
}

.page-intro-03 .swiper-button .button-sw:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
}

.page-intro-03 .swiper-button .swiper-button-prev:hover::before {
  transform: rotate(180deg);
}

.page-intro-03 .swiper-button .swiper-button-next::before {
  transform: rotate(180deg);
}

.page-intro-03 .swiper-button .swiper-button-next:hover {
  background: var(--primary);
}

.page-intro-03 .swiper-button .swiper-button-next:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
  transform: rotate(0);
}

@keyframes byline {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    -ms-transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes logoRotate {
  0% {
    transform: translate3D(0, 0, -100px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3D(0, 0, 100px);
  }
}

/* 第一版样�?
.page-intro-04 {
  background: #FFFFFF;
  .tabs {
    display: flex; align-items: flex-end; gap: 40px;
    a {
      color: rgba(0, 0, 0, 0.7); display: block; padding: 8px 10px ; line-height: 1; border-radius: 5px; background: rgba(var(--primary-rgb), 0.1);
      &:hover {color: #000000;}
      &.active {
        background: var(--primary); color: #fff;
      }
      
    }
  }
  .page-cont { padding-bottom: 88px;}
  .page-wrap { padding-bottom: 35px;}
  .honor-lists1 {margin-bottom: 25px;}
  .tab-item {display: none;
    &:first-child {display: block;}
  }
  .honor-lists {
    ul { 
      li {
        display: inline-block; margin: 0 10px;
        .item {
          border: 2px solid #FFFFFF; background: linear-gradient(180deg, #FFF4F6 0%, rgba(255, 255, 255, 0) 100%); border-radius: 5px; padding: 20px; width: 200px;
          .img {
            width: 130px; margin: 0 auto; margin-bottom: 20px; height: 184px; display: flex; align-items: center; justify-content: center;
              img { max-width: 100%; max-height: 100%; border: 3px solid var(--primary); }
          }
          p { white-space: wrap; text-align: center; color: #2B313F; font-size: 12px; line-height: 14px;}
        }
      }
    }
  }
}
*/
/* 第二版样�?*/
.page-intro-04 {
  background: #FFFFFF;
}

.page-intro-04 .page-wrap .page-title {
  margin-bottom: 0;
}

.page-intro-04 .swiper-tabs {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

.page-intro-04 .swiper-tabs a {
  color: rgba(0, 0, 0, 0.7);
  display: block;
  line-height: 26px;
  opacity: 0.7;
  position: relative;
  font-size: 16px;
}

.page-intro-04 .swiper-tabs a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transition: all .3s;
}

.page-intro-04 .swiper-tabs a:hover {
  color: #000000;
  font-weight: bold;
  opacity: 1;
}

.page-intro-04 .swiper-tabs a:hover::after {
  transform: scaleX(1);
}

.page-intro-04 .swiper-tabs a.active {
  font-weight: bold;
  opacity: 1;
  color: #000;
}

.page-intro-04 .swiper-tabs a.active::after {
  transform: scaleX(1);
}

.page-intro-04 .page-cont {
  padding-bottom: 30px;
}

.page-intro-04 .swiper-honor {
  overflow: hidden;
}

.page-intro-04 .honorLists {
  margin-top: -10px;
  height: 180px;
  overflow: hidden;
}

.page-intro-04 .honorLists ul li {
  display: inline-block;
  margin: 0 12px;
  padding: 10px 0 20px;
}

.page-intro-04 .honorLists ul li .item {
  background: linear-gradient(180deg, #FDF6F7 0%, #FFFFFF 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 340px;
  text-align: center;
  align-items: center;
  transition: all .5s;
}

.page-intro-04 .honorLists ul li .item .title {
  font-size: 12px;
  color: var(--primary);
  display: inline-block;
  padding: 0 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  line-height: 24px;
}

.page-intro-04 .honorLists ul li .item .ct p {
  line-height: 30px;
  font-weight: bold;
  width: 100%;
  white-space: wrap;
}

.page-intro-04 .honorLists ul li .item .stars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-intro-04 .honorLists ul li .item .stars .star {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: url(../images/icon_star.svg) 0 0/cover no-repeat;
}

.page-intro-04 .honorLists ul li .item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  background: var(--primary);
}

.page-intro-04 .honorLists ul li .item:hover .title {
  color: #fff;
}

.page-intro-04 .honorLists ul li .item:hover .ct p {
  color: #fff;
}

.page-dongjian {
  background: #FFFFFF;
}

.page-dongjian .news-inner {
  gap: 30px;
  align-items: flex-start;
}

.page-dongjian .side-rt {
  background: #F4F7FF;
  border-radius: 5px;
  position: sticky;
  top: 0;
}

.page-dongjian .side-rt .sm-qrcode {
  flex: 1;
}

.page-dongjian .side-rt .sm-qrcode .hd {
  border-bottom: 1px dashed #F4E8EB;
  padding: 20px 0%;
  text-align: center;
}

.page-dongjian .side-rt .sm-qrcode .hd h2 {
  font-weight: normal;
  line-height: 26px;
}

.page-dongjian .side-rt .sm-qrcode .bd {
  padding: 25px 50px 30px;
}

.page-dongjian .side-rt .sm-qrcode .bd .img {
  width: 200px;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.page-dongjian .side-rt .sm-qrcode .bd .img img {
  width: 100%;
}

.page-dongjian .side-rt .sm-qrcode .bd p {
  line-height: 1;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}

.page-dongjian .loading-more {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-dongjian .loading-more a {
  display: inline-flex;
  align-items: center;
}

.page-dongjian .loading-more a img {
  margin-right: 5px;
  animation: Rotate360 2s infinite linear;
}

.page-news-lists {
  border-radius: 5px;
  overflow: hidden;
  background: #F4F7FF;
  flex: 1;
}

.page-news-lists .item {
  padding: 20px 30px 20px 20px;
  border-bottom: 1px dashed #F4E8EB;
  gap: 20px;
}

.page-news-lists .item:last-child {
  border-bottom: none;
}

.page-news-lists .item .img {
  width: 280px;
  height: 130px;
  border-radius: 5px;
  flex-shrink: 0;
  overflow: hidden;
}

.page-news-lists .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.page-news-lists .item .info {
  flex: 1;
  padding-top: 10px;
}

.page-news-lists .item .info h2 {
  font-weight: normal;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
}

.page-news-lists .item .info p {
  opacity: 0.7;
  line-height: 24px;
  text-align: justify;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
}

.page-news-lists .item:hover .img img {
  transform: scale(1.05);
}

.page-news-lists .item:hover .info h2 a {
  color: #842135;
}

@keyframes Rotate360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1440px) {
  .page-banner .wrap {
    padding: 88px 5% 0;
  }
  .page-news-lists .item .img {
    width: 220px;
    height: 160px;
  }
  .page-news-lists .item .info p {
    margin-bottom: 25px;
  }
  .page-dongjian .news-inner {
    gap: 20px;
  }
  .page-dongjian .side-rt .sm-qrcode .bd {
    padding: 20px 30px 25px;
  }
  .page-dongjian .side-rt .sm-qrcode .bd .img {
    width: 160px;
    border-radius: 5px;
  }
  .page-news-lists, .page-dongjian .side-rt {
    border-radius: 5px;
  }
}

@media screen and (max-width: 992px) {
  .page-banner {
    height: 55vw;
  }
  .page-banner .wrap {
    padding: 0 0 20px;
  }
  .page-banner .wrap p {
    margin-bottom: 25px;
  }
  .page-news-lists {
    width: 100%;
  }
  .page-dongjian .side-rt {
    display: none;
  }
  .page-news-lists .item .img {
    width: 180px;
    height: 130px;
  }
  .page-news-lists .item .info p {
    margin-bottom: 10px;
  }
  .page-news-lists .item .info {
    padding-top: 5px;
  }
  .page-intro-02 .page-wrap {
    padding-bottom: 60px;
  }
  .page-intro-03 .dxkefu-lists ul li {
    width: 25%;
  }
  .page-intro-03 .page-cont {
    margin-top: 0;
  }
  .page-intro-04 .page-cont {
    padding-bottom: 40px;
  }
  .page-intro-04 .swiper-tabs {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .page-intro-04 .page-wrap .page-title {
    flex-wrap: wrap;
  }
  .page-intro-04 .page-wrap .page-title h2 {
    width: 100%;
  }
  .page-intro-04 .rt {
    margin-top: 20px;
    overflow-x: auto;
  }
  .page-intro-04 .swiper-tabs {
    gap: 20px;
    width: max-content;
  }
  .page-intro-04 .honorLists ul li {
    margin: 0 10px;
  }
  .page-intro-04 .honorLists ul li .item {
    width: 288px;
    gap: 10px;
  }
  .page-intro-04 .page-wrap {
    padding-bottom: 20px;
  }
  .page-intro-04 .page-cont {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 520px) {
  .right-fixed {
    display: none;
  }
  .page-banner {
    height: 85vw;
  }
  .page-news-lists .item {
    flex-wrap: wrap;
  }
  .page-news-lists .item .img {
    width: 100%;
    height: 50vw;
  }
  .page-intro-03 .dxkefu-lists ul li {
    width: 50%;
  }
}

.page-shengtai {
  background: #fff;
}

.page-shengtai .page-wrap ul {
  margin-left: -10px;
  margin-right: -10px;
}

.page-shengtai .page-wrap ul li {
  width: 33.33%;
  padding: 0 10px 20px;
}

.page-shengtai .page-wrap ul li .inbox {
  padding: 10px 20px 20px 20px;
  border-radius: 5px;
  background: #FFFFFF;
  border: 2px solid transparent;
  transition: all .3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.page-shengtai .page-wrap ul li .inbox .logo {
  text-align: center;
  height: 60px;
}

.page-shengtai .page-wrap ul li .inbox .logo img {
  height: 100%;
}

.page-shengtai .page-wrap ul li .inbox p {
  opacity: 0.7;
  line-height: 22px;
  text-align: justify;
  height: 110px;
  font-size: 12px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-shengtai .page-wrap ul li .inbox .linka {
  border-top: 1px dashed #F4E8EB;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-shengtai .page-wrap ul li .inbox .linka a {
  display: inline-flex;
  line-height: 1;
  margin-top: 20px;
  color: rgba(var(--primary-rgb), 0.7);
}

.page-shengtai .page-wrap ul li .inbox .linka a::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/shengtai/link.svg) 0 0 no-repeat;
  margin-right: 4px;
}

.page-shengtai .page-wrap ul li .inbox .linka a:hover {
  color: var(--primary);
}

.page-shengtai .page-wrap ul li .inbox:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border: 2px solid var(--primary);
}

@media screen and (max-width: 1440px) {
  .page-intro-01 .rt .up-datas .item .icon {
    width: 40px;
    height: 40px;
  }
  .page-intro-01 .rt .up-datas .item .num {
    font-size: 80px;
  }
  .page-intro-01 .lt .btn {
    margin-top: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .page-shengtai .page-wrap ul li .inbox .logo {
    height: 40px;
  }
  .page-banner .wrap .banner-title h2::before {
    width: 39px;
    height: 9px;
  }
  .page-banner .wrap .banner-title h2::after {
    width: 39px;
    height: 9px;
  }
  .page-intro-01 .rt .up-datas .item .icon {
    width: 30px;
    height: 30px;
  }
  .page-intro-01 .rt .up-datas .item .num {
    font-size: 60px;
  }
  .page-intro-01 .rt .up-datas .item .num::after {
    width: 18px;
    height: 18px;
  }
  .page-intro-02 .wenhua-datas .item .inbox {
    padding: 20px;
    border-radius: 5px;
  }
  .page-intro-02 .wenhua-datas .item .inbox .icon {
    width: 50px;
  }
  .page-intro-02 .wenhua-datas {
    margin-left: -10px;
    margin-right: -10px;
  }
  .page-intro-02 .wenhua-datas .item {
    padding: 10px;
  }
  .page-intro-01 .rt .img {
    border-radius: 5px;
  }
}

@media screen and (max-width: 992px) {
  .page-shengtai .page-wrap ul li {
    width: 50%;
  }
  .page-shengtai .page-wrap ul li .inbox {
    border-radius: 5px;
  }
  .page-pro-jg .tab-container {
    background: none;
  }
  .page-pro-jg .tab-container .item::before {
    display: none;
  }
  .page-pro-jg .tab-container .item {
    padding: 0 10px;
  }
  .page-pro-jg .lt .txt, .page-pro-jg .lt .img {
    margin-bottom: 20px;
  }
  .page-pro-ys .ys-container .item {
    padding: 20px;
    border-radius: 5px;
  }
  .page-pro-jg .lt .img {
    border-radius: 5px;
  }
  .page-pro-ys .page-title {
    margin-bottom: 25px;
  }
  .page-banner .wrap {
    padding-bottom: 0;
    padding-top: 60px;
  }
  .page-intro-01 .rt .up-datas .item p {
    margin-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .page-intro-01 .lt {
    width: 100%;
    position: inherit;
  }
  .page-intro-01 .lt .btn {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .page-intro-01 .rt {
    width: 100%;
  }
  .page-pro-jg .rt {
    height: auto;
    margin-top: 20px;
  }
  .page-intro-01 .rt .img {
    margin-bottom: 20px;
  }
  .page-intro-01 .rt .up-datas .item .num {
    font-size: 40px;
  }
  .page-intro-01 .rt .up-datas .item .icon {
    width: 20px;
    top: 0;
  }
  .page-intro-01 .rt .up-datas .item .num::after {
    width: 12px;
    height: 12px;
  }
  .page-intro-02 .lt {
    position: inherit;
    width: 100%;
    margin-bottom: 20px;
  }
  .page-intro-02 .rt {
    width: 100%;
    padding-bottom: 40px;
  }
  .page-intro-02 .wenhua-datas .item .inbox {
    height: 100%;
  }
  .page-intro-03 .box-dt {
    display: none;
  }
  .page-intro-03 .logo-lists {
    width: 100%;
    position: relative;
  }
  .page-intro-03 .logo-lists ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .page-intro-03 .logo-lists ul li {
    padding: 5px;
    width: 20%;
  }
  .page-intro-03 .logo-lists ul li .logo-pic {
    border-radius: 5px;
  }
  .page-intro-03 .logo-lists ul li, .page-intro-03 .logo-lists ul li:nth-child(2n), .page-intro-03 .logo-lists ul li:nth-child(3n), .page-intro-03 .logo-lists ul li:nth-child(4n), .page-intro-03 .logo-lists ul li:nth-child(5n) {
    animation: none;
    opacity: 1;
  }
  .page-intro-03 {
    padding: 0;
  }
}

@media screen and (max-width: 520px) {
  .page-shengtai .page-wrap ul li {
    width: 100%;
  }
  .page-pro-jg .tab-container .item {
    padding: 0 2px;
  }
  .page-pro-ys .ys-container .item {
    padding: 20px 10px;
  }
  .page-intro-03 .logo-lists ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .page-intro-03 .logo-lists ul li {
    padding: 10px;
    width: 50%;
  }
  .page-intro-04 .honor-lists ul li {
    margin: 0 5px;
  }
  .page-intro-04 .honor-lists ul li .item {
    padding: 20px 10px;
    width: 180px;
  }
  .page-intro-04 .honor-lists ul li .item .img {
    width: 100px;
  }
}

.zixun-nav {
  backdrop-filter: blur(30px);
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.zixun-nav .wrap {
  padding: 0;
}

.zixun-nav ul {
  justify-content: space-between;
  width: 100%;
}

.zixun-nav ul li {
  width: 12.5%;
  transition: all .3s;
  overflow: hidden;
  position: relative;
}

.zixun-nav ul li a {
  display: block;
  line-height: 50px;
  width: 100%;
  position: relative;
  transform: translateZ(0);
  color: #fff;
}

.zixun-nav ul li a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -100%;
  transition: all .3s;
  opacity: 0;
  background: var(--primary);
  z-index: -1;
}

.zixun-nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 5px;
  transition: all .3s;
  background: var(--primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
}

.zixun-nav ul li a:hover {
  color: #fff;
}

.zixun-nav ul li.active a::before, .zixun-nav ul li:hover a::before {
  opacity: 1;
  bottom: 0;
}

.zixun-nav ul li.active a::after, .zixun-nav ul li:hover a::after {
  left: 0;
  opacity: 1;
  width: 100%;
}

.page-zhixun-01 {
  background: #FFF6F8;
}

.page-zhixun-01 .swiper-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-zhixun-01 .swiper-button .button-sw {
  position: static;
  margin-top: 0;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 100px;
  opacity: 1;
  box-shadow: 0px 0px 40px 0px rgba(64, 53, 41, 0.1);
  transition: all .3s;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-zhixun-01 .swiper-button .button-sw::before {
  content: '';
  display: block;
  width: 14px;
  height: 10px;
  background: url(../images/icon_arrow_balck_14.svg) 0 0/cover no-repeat;
}

.page-zhixun-01 .swiper-button .button-sw:hover {
  background: var(--primary);
}

.page-zhixun-01 .swiper-button .button-sw:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
}

.page-zhixun-01 .swiper-button .swiper-button-prev:hover::before {
  transform: rotate(180deg);
}

.page-zhixun-01 .swiper-button .swiper-button-next::before {
  transform: rotate(180deg);
}

.page-zhixun-01 .swiper-button .swiper-button-next:hover {
  background: var(--primary);
}

.page-zhixun-01 .swiper-button .swiper-button-next:hover::before {
  background-image: url(../images/icon_arrow_white_12.svg);
  transform: rotate(0);
}

.page-zhixun-01 .zhixun-swiper {
  overflow: hidden;
  padding: 20px 0;
}

.page-zhixun-01 .zhixun-swiper .swiper-slide {
  height: auto;
}

.page-zhixun-01 .zhixun-swiper .info {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 20px;
  height: 100%;
  transition: all .3s;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #fff;
}

.page-zhixun-01 .zhixun-swiper .info h2 {
  text-align: center;
  line-height: 1;
}

.page-zhixun-01 .zhixun-swiper .info h2::after {
  content: '';
  display: block;
  background: var(--primary);
  width: 50px;
  height: 4px;
  border-radius: 10px;
  margin: 20px auto;
}

.page-zhixun-01 .zhixun-swiper .info p {
  opacity: 0.7;
  line-height: 24px;
  text-align: justify;
}

.page-zhixun-01 .zhixun-swiper .info:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border: 2px solid var(--primary);
}

.page-zhixun-02 .page-title {
  margin-bottom: 35px;
}

.page-zhixun-02 .zhixun-bm2 {
  margin-left: -20px;
  margin-right: -20px;
}

.page-zhixun-02 .zhixun-bm2-item {
  height: auto;
  width: 25%;
  padding: 0 20px 40px;
  position: relative;
  padding-top: 5px;
}

.page-zhixun-02 .zhixun-bm2-item::before {
  content: '';
  display: block;
  width: 60px;
  height: 20px;
  border-radius: 6px 6px 0px 0px;
  background: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 0;
}

.page-zhixun-02 .item {
  border: 2px solid rgba(var(--primary-rgb), 0);
  padding: 40px 30px;
  border-radius: 5px;
  position: relative;
  transform: translateZ(0);
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  transition: all .3s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.page-zhixun-02 .item p {
  opacity: 0.7;
  line-height: 24px;
  text-align: justify;
}

.page-zhixun-02 .item h2 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 10px;
}

.page-zhixun-02 .item:hover {
  background: rgba(var(--primary-rgb), 0.8);
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.page-zhixun-02 .item:hover h2, .page-zhixun-02 .item:hover p {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .page-zhixun-02 .zhixun-bm2 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .page-zhixun-02 .zhixun-bm2-item {
    padding: 5px 10px 20px;
  }
}

@media screen and (max-width: 768px) {
  .zixun-nav {
    background: rgba(0, 0, 0, 0.3);
  }
  .zixun-nav .wrap {
    overflow-x: auto;
    overflow-y: hidden;
    height: 40px;
    align-items: flex-start;
  }
  .zixun-nav .wrap ul {
    height: 40px;
  }
  .page-banner + .page-zhixun-02 {
    margin-top: 40px;
  }
  .page-zhixun-02 .zhixun-bm2-item {
    width: 50%;
    padding-bottom: 20px;
  }
  .zixun-nav .wrap {
    display: block;
    overflow-x: auto;
  }
  .zixun-nav ul {
    justify-content: start;
    white-space: nowrap;
    width: auto;
  }
  .zixun-nav ul li {
    width: auto;
    overflow: inherit;
  }
  .zixun-nav ul li a {
    padding: 0 10px;
    line-height: 40px;
  }
  .page-zhixun-02 .item {
    padding: 20px;
  }
  .page-zhixun-01 .zhixun-swiper .info {
    padding: 20px;
  }
}

@media screen and (max-width: 520px) {
  .page-zhixun-02 .zhixun-bm2-item {
    width: 100%;
  }
}

header.header-white {
  background: #fff;
}

header.header-white a {
  color: #000;
}

header.header-white .logo .logo-normal {
  display: block;
}

header.header-white .logo .logo-white {
  display: none;
}

header.header-white .hd-tel {
  color: var(--primary);
}

header.header-white .hd-tel .state-1 {
  display: none;
}

header.header-white .hd-tel .state-2 {
  display: block;
}

header.header-white .hd-language .cur {
  color: #000;
}

header.header-white .hd-language .cur::after {
  background-image: url(../images/icon_xiala_balck.svg);
}

header.header-white .navBar > ul .on-second > a span::after {
  background-image: url(../images/icon_xiala_balck.svg);
}

.page-form-01 {
  background: linear-gradient(0deg, #F6F8FB 0%, #FFFFFF 0%, #F2F5FD 100%);
  padding: 128px 0 40px;
}

.page-form-01 .Inner-box {
  background: #fff;
  padding: 30px;
  align-items: start;
}

.page-form-01 .lt {
  width: 400px;
  margin-right: 7.69231%;
}

.page-form-01 .lt h2 {
  border-bottom: 2px solid #F5EAEC;
  padding-bottom: 15px;
}

.page-form-01 .lt .map-bd {
  margin: 20px 0;
  height: 320px;
}

.page-form-01 .lt .info h3 {
  opacity: 0.6;
  font-weight: normal;
  margin-bottom: 5px;
}

.page-form-01 .lt .btn {
  margin-top: 20px;
}

.page-form-01 .rt {
  flex: 1;
}

.page-form-01 .rt .hd {
  border-bottom: 2px solid #F5EAEC;
  padding-bottom: 7px;
  align-items: center;
}

.page-form-01 .rt .tabs {
  display: flex;
  gap: 20px;
}

.page-form-01 .rt .tabs a {
  display: block;
  border-radius: 4px;
  background: rgba(var(--primary-rgb), 0.1);
  padding: 6px 8px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

.page-form-01 .rt .tabs a.active, .page-form-01 .rt .tabs a:hover {
  background: var(--primary);
  color: #fff;
}

.page-form-01 .rt .bd {
  padding: 10px 0;
}

.form-inbox {
  gap: 20px;
}

.form-inbox .flex-1 {
  width: calc(50% - 10px);
}

.form-inbox .flex-full {
  width: 100%;
}

.form-inbox .ipt-item h3 {
  font-weight: normal;
  line-height: 1;
  margin-bottom: 10px;
}

.form-inbox .ipt-item .ipt {
  position: relative;
  min-height: 44px;
}

.form-inbox .ipt-item .ipt input[type=text], .form-inbox .ipt-item .ipt textarea {
  width: 100%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  backdrop-filter: blur(40px);
  padding: 11px 13px;
  color: var(--primary);
  transition: all .3s;
}

.form-inbox .ipt-item .ipt input[type=text]:focus, .form-inbox .ipt-item .ipt textarea:focus {
  border-color: var(--primary);
}

.form-inbox .checks {
  display: flex;
  flex-wrap: wrap;
}

.form-inbox .checks .item {
  width: 20%;
  margin-right: 0;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.form-inbox .checks .item label {
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-inbox .checks .check input[type="checkbox"] + label:before {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8) center center;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  backdrop-filter: blur(40px);
  width: 17px;
  height: 17px;
  margin-right: 10px;
  top: auto;
  vertical-align: inherit;
}

.form-inbox .checks .check input[type="checkbox"]:checked + label:before {
  border-color: var(--primary);
  background: url(../images/icon_checked.svg) center center/60% no-repeat;
}

.form-inbox .checks .radio input[type="radio"] + label:before {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8) center center;
  border: 2px solid rgba(var(--primary-rgb), 0.1);
  backdrop-filter: blur(40px);
  width: 17px;
  height: 17px;
  margin-right: 10px;
  top: auto;
  vertical-align: inherit;
}

.form-inbox .checks .radio input[type="radio"]:checked + label:before {
  border-color: var(--primary);
  background: url(../images/icon_checked.svg) center center/60% no-repeat;
}

.form-inbox .btn {
  margin-top: -20px;
}

.form-inbox .btn button {
  background: var(--primary);
  width: 100%;
  height: 44px;
  border-radius: 5px;
  color: #fff;
  transition: all .3s;
  cursor: pointer;
}

.form-inbox .btn button:hover {
  box-shadow: 0 0 10px var(--primary);
}

@media screen and (max-width: 1600px) {
  .form-inbox .checks .item {
    width: 25%;
  }
}

@media screen and (max-width: 1280px) {
  .page-form-01 .lt {
    margin-right: 20px;
    width: 300px;
  }
}

@media screen and (max-width: 992px) {
  .page-form-01 .Inner-box {
    flex-direction: column-reverse;
  }
  .page-form-01 .lt {
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
  }
  header .mb-menu {
    --color: #000;
  }
}

@media screen and (max-width: 520px) {
  .page-form-01 .Inner-box {
    padding: 20px;
  }
  .page-form-01 .rt .hd {
    flex-wrap: wrap;
  }
  .page-form-01 .rt .tabs {
    width: 100%;
    justify-content: end;
    margin-top: 10px;
    gap: 10px;
  }
  .form-inbox .flex-1 {
    width: 100%;
  }
  .form-inbox .checks .item {
    width: 50%;
    margin-bottom: 10px;
  }
}

.yinsi-hd {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  text-align: center;
}

.yinsi-bd {
  padding: 30px 0;
}

.yinsi-bd h1 {
  font-size: 2em;
}

.yinsi-bd h2 {
  font-size: 1.5em;
}

.yinsi-bd h3 {
  font-size: 1.17em;
}

.yinsi-bd h4 {
  font-size: 1em;
}

.yinsi-bd h5 {
  font-size: 0.83em;
}

.yinsi-bd h6 {
  font-size: 0.67em;
}

.yinsi-bd em {
  font-style: italic;
}

.yinsi-bd ul, .yinsi-bd ol {
  list-style: initial;
}

.yinsi-bd a {
  text-decoration: underline;
  color: blue;
}

.yinsi-bd img {
  margin: auto;
  padding: auto;
}

.yinsi-box .wrap {
  background: #fff;
  padding: 30px 40px;
}

/* 飞连 */
.container-baohuAi {
  padding-bottom: 0;
}

.container-baohuAi .boxCont {
  padding-bottom: 0 !important;
  padding-top: 0;
}

.container-baohuAi .arco-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-baohuAi .arco-tabs-header-title {
  border-bottom: 3px solid transparent;
}

.container-baohuAi .arco-tabs-header-title-text {
  cursor: pointer;
}

.container-baohuAi .arco-tabs-header-title-active {
  border-bottom: 3px solid var(--primary);
  font-weight: normal;
}

.container-baohuAi .desktop-slot-NseE .arco-tabs-content {
  padding-top: 0;
}

.advantage-card-content-RRE0 .arco-btn-primary {
  color: #fff;
  text-align: center;
  justify-content: center;
}

.advantage-card-content-RRE0 .arco-btn-primary:hover {
  opacity: 0.8;
}

.desktop-slot-NseE .arco-tabs-content-item.arco-tabs-content-item-active {
  display: block;
}

.desktop-slot-NseE .arco-tabs-content-item {
  display: none;
}

@media screen and (max-width: 1023px) {
  .container-baohuAi {
    padding-top: 50px;
  }
  .advantage-card-content-RRE0 .arco-btn-primary {
    height: 32px;
  }
}

.container-SCbz .boxCont {
  padding: 0;
}

.container-SCbz .arco-tabs-header-nav {
  border-bottom: 1px solid #f1f1f1;
}

.container-SCbz .arco-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.container-SCbz .arco-tabs-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-SCbz .arco-tabs-header-title {
  border-bottom: 3px solid transparent;
}

.container-SCbz .arco-tabs-header-title-text {
  cursor: pointer;
}

.container-SCbz .arco-tabs-header-title-active {
  border-bottom: 3px solid var(--primary);
  font-weight: normal;
  color: var(--primary);
}

.container-SCbz .desktop-slot-NseE .arco-tabs-content {
  padding-top: 0;
}

.container-SCbz .pc-slot-nt08 .arco-tabs-content-item {
  display: none;
}

.container-SCbz .pc-slot-nt08 .arco-tabs-content-item.arco-tabs-content-item-active {
  display: block;
}

.container-SCbz .arco-collapse-item .arco-icon-hover {
  transition: all .3s;
}

.container-SCbz .arco-collapse-item-active .arco-icon-hover {
  transform: rotate(-180deg);
}

@media screen and (max-width: 1440px) {
  .pc-slot-nt08 .arco-tabs-header-nav-line .arco-tabs-header-title {
    margin: 0 10px;
  }
}

@media screen and (max-width: 1180px) {
  .pc-slot-nt08 .arco-tabs-header-nav-line .arco-tabs-header-title {
    margin: 0 5px;
  }
  .mobile-container-TuYt .arco-collapse-item-header-right {
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .advantage-card-active-YGNu .advantage-card-title-rTCe .icon-wrap-XPzo {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .advantage-card-title-rTCe .icon-wrap-XPzo {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
    transition: -webkit-transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
    -o-transition: -o-transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
    -moz-transition: transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1), -moz-transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
    transition: transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
    transition: transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1), -webkit-transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1), -moz-transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1), -o-transform 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
  }
  .arco-collapse-item {
    background: #f8f9fe;
    border-radius: 4px;
    margin-bottom: 8px;
  }
}

.page-shengtai {
  padding-bottom: 50px;
}

.page-shengtai .page-wrap {
  padding-bottom: 30px;
}

/* 翻页 */
.pages {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination {
  gap: 20px;
  display: flex;
}

.pagination li {
  min-width: 40px;
  height: 40px;
  background: #fff;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  background: rgba(var(--primary-rgb), 0.1);
}

.pagination li a, .pagination li span {
  display: inline-block;
  width: 100%;
}

.pagination li.active {
  color: #fff;
  background: var(--primary);
}

@media screen and (max-width: 1024px) {
  .pagination {
    gap: 8px;
  }
  .pagination li {
    width: 30px;
    height: 30px;
    line-height: 30px;
    min-width: 30px;
  }
}

@media screen and (min-width: 1440px) {
  .page-banner .wrap .banner-title h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .page-banner .wrap p {
    font-size: 14px;
  }
  header:hover .navBar > ul > li.active > a, header.scroll-nav .navBar > ul > li.active > a, header .header-white .navBar > ul > li.active > a {
    background: none;
  }
  header:hover .navBar > ul > li.active > a::after, header.scroll-nav .navBar > ul > li.active > a::after, header .header-white .navBar > ul > li.active > a::after {
    background: none;
  }
  header .navBar > ul > li > a span {
    position: relative;
  }
  header .navBar > ul > li > a span::after {
    position: absolute;
    right: -30px;
  }
  .headBd-item2 {
    z-index: 10;
    position: relative;
  }
  header .navBar > ul > li.active .second-nav-v3 {
    height: auto;
  }
}

.boxCont .boxCont-title h2 {
  display: inline-flex;
  cursor: pointer;
}
