@charset "utf-8";

/* CSS Document */
@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Thin.woff2');
  font-weight: 200;
}

@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Light.woff2');
  font-weight: 300;
}

@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC.woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Bold.woff2');
  font-weight: 600;
}

@font-face {
  font-family: 'HarmonyOSSansSC';
  src: url('../fonts/HarmonyOS_Sans_SC_Black.woff2');
  font-weight: 700;
}

@font-face {
  font-family: 'DIN';
  src: url('../fonts/D-DIN-PRO-500-Medium.otf');
}

@font-face {
  font-family: 'iconfont';
  src: url(../icons/iconfont.eot);
  src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
    url(../icons/iconfont.woff) format('woff'),
    url(../icons/iconfont.ttf) format('truetype'),
    url(../icons/iconfont.svg#iconfont) format('svg');
}

.iconfont {
  font-family: 'iconfont' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  color: var(--color2);
  font-family: 'HarmonyOSSansSC';
  font-weight: 300;
  font-size: clamp(12px, 0.9vw, 18px);
}

p {
  font-size: clamp(12px, 0.9vw, 18px);
  line-height: 1.8;
  margin: 1rem 0;
  text-align: left;
  color: #666;
}

img {
  display: block;
}

.clear {
  clear: both;
}

a {
  text-decoration: none;
}

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

::selection {
  background: var(--color);
  color: #fff;
}

.w_all {
  width: 90%;
  margin: auto;
}

.w_all2 {
  width: 50%;
  margin: auto;
}

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

.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}



html,
body {
  font-size: 62.5%;
  width: 100%;
  position: relative;
  --color: #0247ae;
  --color2: #000000;
  --height: 70px;
  --height2: 56px;
}

header {
  width: 100%;
  z-index: 9999;
  transition: all 0.6s cubic-bezier(0.38, 0, 0, 1);
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  height: var(--height);
}

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

header.active {
  box-shadow: 0 0 2px rgba(0, 0, 0, .2);
}

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

header .logo {
  transition: all 0.5s ease;
  z-index: 9999;
  position: relative;
  height: 56%;
}

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

header .nav {
  display: flex;
  align-items: center;
  height: 100%;
}

header ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 clamp(15px, 2vw, 40px);
}

header ul li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
}

header .nav li h2 {
  color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

header .nav li .char {
  color: var(--color2);
  font-size: clamp(14px, 1vw, 18px);
  text-shadow: var(--color) 0px 3rem 0px;
}

header .others {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
  gap: 0 clamp(10px, 1.2vw, 30px);
}

header .lls {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 1vw, 16px);
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

header .lls img {
  width: clamp(14px, 1.1vw, 18px);
  margin: -1px 0.5rem 0 0;
}

header .lls:hover img {
  opacity: 0.8;
}


header .ser img {
  width: clamp(18px, 1.3vw, 26px);
}

.search {
  position: fixed;
  left: 0;
  top: var(--height);
  display: none;
  width: 100%;
  z-index: 99999;
}

.search .ss {
  background: #fff;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.search .sl {
  display: flex;
  width: 100%;
  align-items: center;
}

.search input {
  width: 100%;
  border: none;
  line-height: 3;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

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

.search button {
  width: 2.4rem;
  background: none;
  padding: 0;
  margin: 0;
  opacity: 1;
  box-shadow: none;
  cursor: pointer;
}

.search button img {
  width: 100%;
}

.navBtn {
  z-index: 99999;
  cursor: pointer;
  display: none;
}

.navBtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color2);
  margin: 3px auto;
  border-radius: 5px;
}

.nav_btn_active {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}

.nav_btn_active span:nth-of-type(3) {
  margin-top: -58%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.s_menu {
  min-width: 200%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.38, 0, 0, 1);
  padding: 0.8rem 1rem;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: max-content;
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
}

header ul li.on .s_menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0%);
}

.s_menu p {
  font-size: clamp(12px, 0.7vw, 16px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0.8rem 0 0.6rem;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  line-height: 2;
  transition: opacity 0.8s cubic-bezier(0.38, 0, 0, 1),
    transform 0.8s cubic-bezier(0.38, 0, 0, 1),
    color 0.3s cubic-bezier(0.38, 0, 0, 1);
}

.s_menu a:last-of-type p {
  border: none;
}

.s_menu p img {
  width: clamp(14px, 1.1vw, 26px);
  margin: -2px 6px 0 0;
}

.s_menu p:hover {
  color: var(--color);
}

.banner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;

}

.banner .swiper-container {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.banner .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  z-index: 1;
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

.banner .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}

.banner .txt h3 {
  font-size: 6rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

.banner .txt h3 span {
  font-size: 6rem;
  color: #fff;
  font-weight: 600;
  display: block;
}

.banner .swiper-pagination span {
  background: #fff;
  margin: 0 7px !important;
  width: 8px;
  height: 8px;
  border-radius: 2rem;
  opacity: 1 !important;
  transition: all 0.5s ease;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
}

.typewriter i {
  font-style: normal;
  font-size: 6rem;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 30px, 0) rotateX(80deg);
  transform-origin: bottom;
  transition:
    all 1.2s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--i) * 0.035s);
}

.typewriter.start i {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0);
}

.banner .more {
  margin-top: 4rem;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  will-change: opacity, transform;
}

.banner .swiper-slide-active .more {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.6s ease-out 0.6s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}


.title {
  margin-bottom: 4rem;
  position: relative;
}

.title h3 {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.3;
  font-weight: 500;
}

.title h6 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  font-size: 9rem;
  color: var(--color);
  opacity: 0.12;
  font-weight: 400;
}

.title p {
  margin: 1rem auto 0;
  text-align: center;
}

.aos-text span {
  display: inline-block;
  opacity: 0;
  font-size: clamp(24px, 2.8vw, 46px);
  font-weight: 500;
  transform: translateY(30px);
  animation: letterUp 0.5s ease forwards;
}

@keyframes letterUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title2 {
  margin-bottom: 2rem;
  position: relative;
}

.title2 h3 {
  font-size: clamp(18px, 1.4vw, 30px);
  line-height: 1.3;
  font-weight: 400;
}

.titleCenter {
  text-align: center;
}

.more {
  width: max-content;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  margin: 4rem 0 0;
  transition: all 0.5s ease;
  position: relative;
  font-size: clamp(14px, 1vw, 16px);
  border-radius: 8px;
  padding: 1.5rem 5rem;
  display: flex;
  align-items: center;
  color: #fff;
  background: #fff;
  overflow: hidden;
  border: 1px solid transparent;
}

.more:hover {
  background: var(--color);
}

.more span {
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  font-size: clamp(13px, 1vw, 16px)
}

.more:hover span {
  color: #fff;
}

.more:hover .char {
  color: #fff !important;
  text-shadow: rgba(255, 255, 255, 1) 0px 3rem 0px;
}

.more2 {
  background: none;
  border-color: var(--color);
  padding: 1.1rem 2.5rem;
  border-radius: 5px;
}

.more span {
  color: var(--color);
}

.more3 {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--color);
}

.more3 img {
  margin-left: 0.5rem;
  width: clamp(14px, 1.6vw, 18px);
}

.index_bars {
  padding: 10rem 0;
  position: relative;
  z-index: 2;
}

.index_about {
  position: relative;
  z-index: 6;
  height: 100vh;
}

.index_about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  z-index: 2;
  opacity: 0.6;
}

.index_about .txt {
  position: absolute;
  z-index: 3;
  left: 5%;
  top: 0;
  width: 38%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index_about .txt .title span {
  color: #fff;
}

.index_about .txt p {
  color: #fff;
}

.index_about .txt a {
  display: block;
}

.index_about ul {
  width: 34%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 6;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.index_about ul li {
  height: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10%;
  box-sizing: border-box;
  cursor: default;
}

.index_about ul li:last-of-type {
  border-bottom: none;
}

.index_about ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--color);
  transition: all 0.5s ease;
}

.index_about ul li:hover::before {
  width: 100%;
}

.index_about b {
  height: 40%;
  position: relative;
  z-index: 6;
  display: block;
}

.index_about b img {
  height: 100%;
  transition: all 0.5s ease;
  filter: invert(1) brightness(1000);
  margin-left: 2rem;
}

.index_about ul li .tt {
  position: relative;
  z-index: 6;
}

.index_about ul li h6 {
  color: #fff;
  font-size: clamp(14px, 1.4vw, 30px);
  margin-top: 1rem;
}

.index_about ul li h5 {
  color: #fff;
  font-weight: 500;
  width: max-content;
  font-size: clamp(16px, 3vw, 50px);
}

.index_about ul li h5 strong {
  color: #fff;
  font-family: 'DIN';
  font-size: clamp(16px, 4vw, 50px);
}

.index_about ul li h5 sup {
  color: #fff;
  font-weight: 500;
  font-size: clamp(10px, 1.6vw, 40px);
}

.index_news {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f0f0f0;
}

.index_news .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5vh;
}

.index_news .top .title,
.index_news .top .more {
  margin: 0;
}

.index_news .bar {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.index_news .ll {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.index_news .ll .tt {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5%;
  box-sizing: border-box;
  z-index: 10;
}

.index_news b {
  width: 100%;
  display: block;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.index_news b::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg.png) no-repeat center/cover;
  z-index: 9;
}

.index_news b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.index_news ul li:hover b img,
.index_news .ll:hover b img {
  transform: scale(1.06);
}

.index_news h5 {
  color: #fff;
  font-size: clamp(10px, 1vw, 16px);
}

.index_news h6 {
  color: #fff;
  font-size: clamp(10px, 0.7vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  width: max-content;
  padding: 0.4rem 0.8rem;
  margin: 1rem 0;
}

.index_news h4 {
  font-size: clamp(14px, 1.2vw, 26px);
  font-weight: 400;
  margin: 2rem 0 0;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
}

.index_news p {
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.index_news ul {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}

.index_news ul li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.index_news ul li b {
  width: 40%;
}

.index_news ul li b::before {
  background: url(../images/bg2.png) no-repeat center/cover;
}

.index_news ul li .tt {
  position: relative;
  z-index: 6;
  width: 60%;
  padding: 3.6rem 2.5rem 3rem;
  box-sizing: border-box;
}

.index_news ul li h5,
.index_news ul li h6,
.index_news ul li h4,
.index_news ul li p {
  color: var(--color2);
  margin: 0;
}

.index_news .t2 {
  display: flex;
  align-items: center;
}

.index_news ul li:hover h4 {
  color: var(--color);
}

.index_news ul li p {
  margin: 0.5rem 0 1rem;
  opacity: 0.4;
}

.index_news .t2 h6 {
  border-color: var(--color);
  margin-right: 0.6vw;
  color: var(--color);
}

.index_news .t2 h5 {
  transform: scale(0.85);
  opacity: 0.4;
}

.index_solution {
  height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color2);
}

.index_solution .bgSwiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.index_solution .bgSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: cubic-bezier(0.77, 0, 0.175, 1) transform 2s;
  transform: scale(1.1)
}

.index_solution .bgSwiper .swiper-slide.swiper-slide-active img {
  transform: scale(1)
}

.index_solution .wrap {
  position: relative;
  z-index: 2
}

.index_solution .title {
  margin: 26vh auto;

}

.index_solution .title h3 span {
  color: #fff;
}

.index_solution ul {
  display: flex
}

.index_solution .item {
  flex: 1;
  transition: 1s ease;
  position: relative;
  height: 22vh;
}

.index_solution ul li {
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  height: 100%;
}

.index_solution .item:not(:last-child) {
  margin: 0px 0.5729166667vw 0px 0px;
}

.index_solution .item.on {
  flex: 2.37
}

.index_solution .item.on .text2 {
  opacity: 0;
  pointer-events: none;
}

.index_solution .item.on .img {
  transform: translate(1.8vw, 0)
}

.index_solution .item.on .text {
  opacity: 1;
  transition: 1s;
  transition-delay: .6s
}

.index_solution .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(43px, -30px);
  transition: 1s;
  width: 9.8958333333vw;
  height: 7.8125vw;
  margin: 0px 3.28125vw 0px 0px;
  transform: translate(2.2395833333vw, -1.5625vw);
}

.index_solution .item .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.index_solution .item .text2 {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 5%;
  box-sizing:border-box;
  font-weight: 400;
  font-size: clamp(12px, 1vw, 18px);
  transition: .3s ease
}

.index_solution .item .text {
  opacity: 0;
  position: absolute;
  right: 2.6041666667vw;
  transition: .3s
}

.index_solution .p1 {
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 18px);
}

.index_solution .p2 p {
  width: 15.8854166667vw;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: clamp(10px, 0.8vw, 16px);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index_solution .contentSwiper {
  display: none;
  width: 100vw;
  overflow: hidden;
}

.index_solution .contentSwiper .swiper-slide {
  background: #fff;
  border-radius: 10px;
  padding: 3rem;
  box-sizing: border-box;
}

.index_solution .contentSwiper .swiper-slide .img {
  width: 100%;
  height: 25vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

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

.index_solution .contentSwiper .swiper-slide .p2 p {
  width: 100%;
}

.index_solution .contentSwiper .more3 {
  width: max-content;
}

.index_pro {
  background: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.index_pro .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index_pro .top .title,
.index_pro .top .more {
  margin: 0;
}

.index_pro ul {
  display: flex;
  margin-top: 5rem;
}

.index_pro ul li {
  width: 20%;
  position: relative;
  flex: 1 1 20%;
  margin: 0 0.6rem;
  height: 64vh;
  overflow: hidden;
  transition: all 0.8s;
}

.index_pro ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.index_pro ul li .bbs {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.index_pro ul li .bbs b {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.index_pro ul li .bbs b img {
  display: block;
  height: 100%;
  margin: auto;
  border-radius: 8px;
}

.index_pro ul li .bbs b .img2 {
  opacity: 0;
  height: 104%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.index_pro ul li .tt {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: 2rem 1rem;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s;
}

.index_pro ul li .tt h6 {
  font-size: clamp(14px, 1.1vw, 26px);
  color: #fff;
  text-align: center;
  transition: all 0.3s;
}

.index_pro ul li .more {
  padding: 0.8rem 1rem;
  background: var(--color);
  opacity: 0;
  margin-top: -3rem;
  transition: all 0.3s;
}

.index_pro ul li .more span {
  color: #fff;
}

.index_pro ul li .more i {
  color: #fff;
  margin-left: 5px;
  margin-top: -1px;
  font-size: 1.2rem;
}

.index_pro ul li.on {
  width: 49%;
  flex: 1 1 49%;
}

.index_pro ul li.on b .img2 {
  opacity: 1;
}

.index_pro ul li.on .tt {
  padding: 4rem 3rem;
}

.index_pro ul li.on h6 {
  color: var(--color2);
  text-align: left;
}

.index_pro ul li.on .more {
  opacity: 1;
  margin-top: 3rem;
}

.index_markets {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f8fbff;
}

.index_markets .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index_markets .contain .ll {
  width: 30%;
}

.index_markets a {
  display: block;
  width: max-content;
}

.index_markets .more {
  margin-top: 10vh;
  background: var(--color);
}

.index_markets .more span {
  color: #fff;
}

.index_markets .contain .map {
  width: 60%;
}

.website .map {
  position: relative;
}

.website .map img {
  width: 100%;
}

.website .map ul li {
  position: absolute;
}

.website .map ul li span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color);
  border-radius: 50%;
  position: relative;
}

.website .map ul li p {
  position: absolute;
  left: calc(100% + 0.8rem);
  top: 50%;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 400;
  margin: 0;
  line-height: 1;
  color: #666;
  transform: translateY(-50%);
  width: max-content;
}

.website .map ul li span::before,
.website .map ul li span::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  animation: ripple 4s ease-in-out infinite;
}

.website .map ul li span::after {
  animation-delay: 1.4s;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1
  }

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

.website .map ul .li1 {
  right: 27%;
  top: 16%;
}

.website .map ul .li2 {
  right: 24%;
  top: 20%;
}

.website .map ul .li3 {
  left: 22%;
  top: 23%;
}

.website .map ul .li4 {
  left: 53%;
  top: 36.3%;
}

.website .map ul .li5 {
  left: 58.5%;
  top: 39%;
}

.website .map ul .li6 {
  left: 64%;
  top: 40.5%;
}

.website .map ul .li7 {
  left: 47.5%;
  top: 43%;
}

.website .map ul .li8 {
  left: 44%;
  top: 48.5%;
}

.website .map ul .li9 {
  left: 58%;
  top: 52.5%;
}

.website .map ul .li10 {
  left: 49%;
  top: 53.5%;
}


.website .map ul .li11 {
  left: 52%;
  top: 54%;
}

.website .map ul .li12 {
  left: 21.5%;
  top: 63%;
}

.website .map ul .li13 {
  left: 43%;
  top: 64%;
}

.website .map ul .li14 {
  left: 60%;
  top: 64.5%;
}

.website .map ul .li15 {
  right: 31%;
  top: 59.5%;
}

.website .map ul .li16 {
  right: 28%;
  top: 58.5%;
}

.website .map ul .li17 {
  right: 29%;
  top: 61%;
}

.website .map ul .li18 {
  right: 27%;
  top: 61.2%;
}

.website .map ul .li19 {
  right: 30%;
  top: 64%;
}

.website .map ul .li20 {
  right: 28.1%;
  top: 63%;
}

.website .map ul .li21 {
  right: 37%;
  top: 69%;
}

.website .map ul .li22 {
  right: 42%;
  top: 71%;
}

.website .map ul .li23 {
  left: 48%;
  top: 73%;
}

.website .map ul .li24 {
  left: 47.8%;
  top: 76%;
}

.website .map ul .li25 {
  left: 42%;
  top: 77%;
}

.website .map ul .li26 {
  right: 29.5%;
  top: 75%;
}

.website .map ul .li27 {
  left: 40.3%;
  top: 79%;
}

.website .map ul .li28 {
  right: 31%;
  top: 78.9%;
}

.website .map ul .li29 {
  right: 40.5%;
  top: 84%;
}

.website .map ul .li30 {
  right: 49.5%;
  top: 85%;
}

.website .map ul .li31 {
  right: 38%;
  top: 86%;
}

.website .map ul .li32 {
  right: 47%;
  bottom: 2%;
}

.website .map ul .li10 p,
.website .map ul .li14 p,
.website .map ul .li15 p,
.website .map ul .li17 p,
.website .map ul .li19 p,
.website .map ul .li27 p,
.website .map ul .li29 p,
.website .map ul .li30 p {
  left: initial;
  right: calc(100% + 1rem);
}

.index_support {
  background: #fff;
  position: relative;
  z-index: 3;
}

.index_support ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.index_support ul li {
  display: block;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.index_support ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--color);
  transition: all 0.5s ease;
}

.index_support ul li a {
  display: block;
  position: relative;
  z-index: 3;
}

.index_support ul li h6 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.index_support ul li h6 img {
  width: clamp(18px, 2vw, 40px);
  border: 1px solid var(--color2);
  border-radius: 50%;
  padding: 0.4rem;
  box-sizing: border-box;
}

.index_support ul li p {
  display: flex;
  align-items: flex-end;
  line-height: 1.2;
  margin: 4rem 0 0;
  color: #666;
  font-weight: 400;
  transition: all 0.5s ease;
}

.index_support ul li p img {
  width: clamp(19px, 2.1vw, 40px);
  margin-right: 1rem;
}

.index_support ul li:hover::before {
  width: 100%;
}

.index_support ul li:hover p {
  color: #fff;
}

.index_support ul li:hover h6 img,
.index_support ul li:hover p img {
  filter: invert(1) brightness(1000);
}

.footer {
  background: #f1f1f1;
  position: relative;
  z-index: 9;
}

.footer .bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0;
}

.footer .bar .ll {
  width: 50%;
}

.footer .logo2 {
  width: 65%;
}

.footer .logo2 img {
  width: 100%;
}

.footer .bar .ll .bbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 4rem 0 1.8rem;
}

.footer .bar dl dd {
  font-size: clamp(12px, 1.1vw, 18px);
  margin: 0 0 2.8rem 0;
  font-weight: 400;
  transition: all 0.5s ease;
}

.footer .bar dl dd:hover {
  color: var(--color);
}

.footer .bar .ll p {
  margin: 0 0 2.8rem 0;
  line-height: 1;
}

.footer .bar .ll p a {
  font-size: clamp(12px, 1vw, 18px);
  display: block;
  font-weight: 400;
  margin-top: 1rem;
}

.footer .bar .ll p:first-of-type a {
  font-family: "DIN";
}

.follow {
  display: flex;
  align-items: center;
}

.follow b {
  display: block;
  position: relative;
  overflow: hidden;
  margin-right: 1.2rem;
  border-radius: 50%;
  transition: all 0.5s ease;
  cursor: pointer;
}

.follow b img:first-of-type {
  height: clamp(26px, 2.2vw, 40px);
  transition: all 0.5s ease;
}

.follow b:hover img:first-of-type {
  opacity: 0.7;
}

.follow b .rs {
  transition: all 0.5s ease;
  position: absolute;
  height: 10rem;
  border-radius: 0.5rem;
  padding: 0.1rem;
  background: #fff;
  box-sizing: border-box;
  margin-top: 2rem;
  opacity: 0;
}

.follow b:hover {
  overflow: inherit;
}

.follow b:hover .rs {
  margin-top: 0.8rem;
  opacity: 1;
}

.footer .bar .rr {
  width: 50%;
  padding-left: 5%;
  border-left: 1px solid rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding-bottom: 6rem;
}

.footer .title {
  margin-bottom: 2.5rem;
}

.footer .title h3 {
  line-height: 1;
}

.footer .title h3 span {
  font-size: clamp(22px, 2.4vw, 46px);
  line-height: 1;
}

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

.footer .online p {
  width: 49%;
}

.footer .online p .inputs {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  display: block;
  line-height: 1.4;
  width: 100%;
}

.footer .online ::placeholder {
  color: #999;
}

.footer .online .pp1 {
  width: 100% !important;
}

.footer .online textarea {
  min-height: 8rem;
  padding: 1rem 0;
}

.footer .agree {
  display: flex;
  align-items: center;
  margin-top: 3rem;
}

.footer .agree input[type="checkbox"] {
  accent-color: var(--color);
  margin-right: 0.6rem;
  width: clamp(16px, 1vw, 40px);
  height: clamp(16px, 1vw, 40px);
  background: none !important;
  margin-top: -0.3rem;
  background: none !important;
}

.footer .agree a {
  margin: 0 2px;
  color: var(--color);
}

.footer .online .bottom {
  margin: 0;
}

.footer .submit {
  width: 14rem;
  min-width: max-content;
  margin: 3rem 0 1rem;
  position: relative;
}

.footer .submit button {
  border: none;
  box-shadow: none;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  background: var(--color);
  width: 100%;
  margin: auto;
  height: 4rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.5s ease;
}

.footer .submit button:hover {
  opacity: 0.8;
}

.footer .copy {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding: 1.5rem 0;
}

.footer .copy .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .copy p {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.8vw, 16px);
  margin: 0;
  color: #666;
}

.footer .copy p a {
  font-size: clamp(12px, 0.8vw, 16px);
  color: #666;
  display: flex;
  align-items: center;
  margin-left: 20px;
  transition: all 0.5s linear;
}

.footer .copy p a img {
  width: 1.2rem;
  margin-top: -2px;
  margin-right: 5px;
}

.footer .copy p a:hover {
  color: var(--color);
}

.all_back {
  position: fixed;
  right: 1%;
  bottom: 3rem;
  z-index: 99999999999;
  display: none;
}

.all_back .aa {
  background: #fff;
  border-radius: 50%;
  margin: 1rem 0;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, .02);
  transition: all 0.4s ease;
  box-shadow: 0 3rem 5rem 0 rgba(23, 33, 30, 0.05);
}

.all_back img {
  width: 50%;
}

.all_back .aa:hover {
  background: var(--color);
  transform: scale(1.06);
}

.all_back .aa:hover img {
  filter: invert(1) brightness(1000);
}

.allBar0 {
  height: 50vh;
}

.bans {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 60vh;
  background: var(--color2);
}

.bans img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.bans .txt {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
}

.bans .txt h3 {
  font-size: clamp(24px, 3vw, 60px);
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.bans .txt h3 span {
  color: #fff;
}

.basHeight {
  height: 60vh;
}

.sNav {
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.sNav .bb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(20px, 3.5vw, 50px);
}

.sNav .ll {
  width: max-content;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
  max-width: 100%;
}

.sNav .ll img {
  width: clamp(12px, 1.3vw, 20px);
  margin: -3px 0.3rem 0 0;
}

.sNav .ll p,
.sNav .ll i {
  opacity: 0.8;
  margin: 0 0.3rem 0 0;
  font-size: clamp(10px, 0.9vw, 14px);
  transition: all 0.5s ease;
}

.sNav .ll i {
  margin-top: -2px;
}

.sNav .ll a:hover p {
  color: var(--color);
}

.sNav .rr {
  height: 100%;
  display: flex;
  gap: 0 clamp(20px, 3vw, 50px);
}

.sNav .rr a {
  height: 100%;
}

.sNav .rr li {
  font-size: clamp(11px, 1vw, 18px);
  position: relative;
  z-index: 3;
  color: rgb(51, 51, 51);
  line-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s;
  border-bottom: 2px solid transparent;
}

.sNav .rr li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color);
  opacity: 0;
}

.sNav .rr li.active,
.sNav .rr li:hover {
  color: var(--color);
}

.sNav .rr li.active::after {
  opacity: 1;
}

.about {
  background: #fff;
  position: relative;
  z-index: 2;
}

.about .bgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 30vw;
}

.about .bgs img {
  width: 100%;
}

.about .bgs2 {
  left: inherit;
  top: inherit;
  top: 26%;
  right: 0;
}

.about .bgs2 img {
  transform: rotate(-180deg);
}

.about .bar1 {
  position: relative;
  z-index: 3;
}

.about .bar1 ul {
  margin: 6rem 0;
  display: flex;
  justify-content: space-between;
}

.about .bar1 ul li {
  cursor: default;
}

.about .bar1 ul li:last-of-type {
  border-bottom: none;
}

.about .bar1 ul li h6 {
  font-size: clamp(14px, 1.4vw, 30px);
  margin-top: 1rem;
}

.about .bar1 ul li h5 {
  font-weight: 500;
  color: var(--color);
  width: max-content;
  font-size: clamp(18px, 3vw, 50px);
}

.about .bar1 ul li h5 strong {
  font-family: 'DIN';
  color: var(--color);
  font-size: clamp(18px, 4vw, 50px);
}

.about .bar1 ul li h5 sup {
  font-weight: 500;
  color: var(--color);
  font-size: clamp(10px, 1.6vw, 40px);
}

.about .bar1 .video .bg {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about .bar1 .video .bg img {
  width: 100%;
  transition: all 0.5s ease;
}

.about .bar1 .video:hover .bg img {
  transform: scale(1.08);
}

.about .bar1 .video .bg .btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 5rem;
}

.about .bar1 .video .bg .btn img {
  width: 100%;
  filter: invert(1) brightness(1000);
}

.about .bar1 video {
  display: none;
}

.about .bar2 {
  padding-bottom: 0 !important;
}

.about .bar2 ul li {
  box-shadow: 0px 5px 25px 1px rgba(135, 165, 193, 0.15);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: var(--height);
  margin-top: 5rem;
}

.about .bar2 ul li .bgs {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  z-index: 6;
}

.about .bar2 ul li .bgs img {
  width: 100%;
}

.about .bar2 ul li .bbs {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.about .bar2 ul li:nth-of-type(2n) .bbs {
  flex-direction: row-reverse;
}

.about .bar2 ul li .ll {
  width: 50%;
  overflow: hidden;
}

.about .bar2 ul li .ll img {
  width: 100%;
  transition: all 0.8s ease;
}

.about .bar2 ul li:hover .ll img {
  transform: scale(1.08);
}

.about .bar2 ul li .rr {
  width: 50%;
  padding: 5%;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about .bar2 ul li h6 {
  font-size: clamp(16px, 1.4vw, 30px);
  font-weight: 400;
  margin-bottom: 2rem;
}

.about .bar2 ul li p {
  color: #666;
}

.about .bar2 ul li .bgs2 {
  position: absolute;
  bottom: -15%;
  left: 62%;
  width: 30%;
}

.about .bar2 ul li .bgs2 img {
  width: 100%;
  transform: rotate(-90deg);
}

.history {
  background: #fff;
  position: relative;
  z-index: 2;
}

.history .contains {
  padding: 0 8%;
  box-sizing: border-box;
}

.history .swiper-container {
  margin: 1% 0 8rem;
  overflow: hidden;
}

.history .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  height: 35vh;
  overflow: hidden;
}

.history .swiper-slide b {
  width: 46%;
  height: 100%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

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

.history .swiper-slide .txt {
  width: 46%;
  max-height: 100%;
  position: relative;
}

.history .swiper-slide .ts {
  font-size: clamp(24px, 20vw, 180px);
  font-weight: 600;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-0%, -50%);
  opacity: 0.03;
  font-family: "DIN";
}

.history .swiper-slide h5 {
  font-size: clamp(24px, 2vw, 40px);
  margin-bottom: 1.5rem;
  font-family: "DIN";
  position: relative;
  z-index: 6;
}

.history .swiper-slide .tt {
  max-height: 40vh;
  padding-right: 3%;
  overflow: auto;
  box-sizing: border-box;
  cursor: grab;
  position: relative;
  z-index: 6;
}

.history .swiper-slide .tt p {
  color: #666;
  margin: 0.5rem 0 0;
}

.history .bottom {
  position: relative;
  width: 100%;
}

.history .bottom::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 100%;
  height: 1px;
  background: var(--color2);
  opacity: 0.1;
}

.history .bottom .bs {
  position: relative;
  overflow-x: auto;
  height: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 5%;
  box-sizing: border-box;
}

.history .swiper-pagination {
  display: flex;
  cursor: grab;
  height: 100%;
  gap: 8rem;
  width: max-content !important;
  padding: 3px 0% 0px;
  box-sizing: border-box;
  position: relative;
  left: inherit !important;
  bottom: inherit !important;
}

.history .swiper-pagination span {
  display: block;
  margin: 0 !important;
  position: relative;
  width: auto !important;
  height: auto !important;
  opacity: 1;
  transition: all 0.5s linear;
}

.history .swiper-pagination span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff !important;
  border: 2px solid rgba(0, 0, 0, .1);
  transition: all 0.5s linear;
}

.history .swiper-pagination span i {
  font-style: normal;
  position: absolute;
  left: 50%;
  top: 2rem;
  font-family: "DIN";
  font-size: clamp(16px, 1.2vw, 20px);
  transform: translateX(-50%);
}

.history .swiper-pagination-bullet-active i {
  color: var(--color);
}

.history .swiper-pagination-bullet-active::before {
  border-color: var(--color) !important;
}

.btns::after {
  display: none;
}

.btns {
  border: 1px solid rgba(2, 71, 174, .8);
  border-radius: 50%;
  width: clamp(24px, 2vw, 40px) !important;
  height: clamp(24px, 2vw, 40px) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.btns::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid var(--color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: all 0.5s ease;
}

.btns.swiper-button-prev::before {
  border-left: none;
  border-right: 5px solid var(--color);
}

.honor {
  background: #fff;
  position: relative;
  z-index: 2;
}

.honor .swiper-slide {
  width: 100%;
  background: #f8f8f8;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

.honor .swiper-slide img {
  width: 100%;
  transition: all 0.8s ease;
}

.honor .swiper-slide:hover img {
  transform: scale(1.08);
}

.honor .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5rem;
}

.honor .ll {
  display: flex;
  align-items: center;
  width: 30%;
}

.honor .btnsBox {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.honor .btns {
  margin-right: 1rem;
  position: static;
}

.honor .swiper-scrollbar {
  position: static !important;
  width: 100% !important;
  height: 2px !important;
  opacity: 1 !important;
  background: rgba(0, 0, 0, .1);
}

.honor .swiper-scrollbar-drag {
  height: 100%;
  background: var(--color) !important;
}

.honor .swiper-pagination {
  position: static;
  width: auto;
}

.honor .swiper-pagination-current {
  color: var(--color);
  font-weight: 400;
}

.about2 {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-bottom: 0 !important;
}

.about2 .bar1 {
  height: 48vh;
  border-radius: 8px;
}

.about2 .bar1 .title h3 span {
  color: #fff;
}

.about2 .bar1 p {
  margin: auto;
  width: clamp(300px, 55vw, 800px);
  color: #fff;
  opacity: 0.9;
  text-align: center;
}

.about2 .bar2 .bbs {
  display: flex;
  justify-content: space-between;
  background: #f7f9fa;
  border-radius: 8px;
  overflow: hidden;
}

.about2 .bar2 dd:nth-of-type(2n) .bbs {
  flex-direction: row-reverse;
}

.about2 .bar2 .bbs .ll {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6% 5%;
  box-sizing: border-box;
}

.about2 .bar2 .bbs .ll h6 {
  font-size: clamp(18px, 1.2vw, 30px);
  font-weight: 400;
  margin-bottom: 2rem;
}

.about2 .bar2 .bbs .ll p {
  color: #666;
  margin: 0.5rem 0 0;
}

.about2 .bar2 .bbs .rr {
  width: 50%;
  overflow: hidden;
}

.about2 .bar2 .bbs .rr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.about2 .bar2 .bbs:hover .rr img {
  transform: scale(1.08);
}

.about2 .bar2 dd:nth-of-type(2n) {
  padding-top: 0 !important;
}

.about2 .bar3 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8rem 0;
  position: relative;
}

.about2 .bar3 ul .bg img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
}

.about2 .bar3 ul li {
  width: 50%;
  padding-right: 18%;
  box-sizing: border-box;
}

.about2 .bar3 ul li:nth-of-type(even) {
  text-align: right;
  padding: 0;
  padding-left: 18%;
}

.about2 .bar3 ul li:nth-of-type(even) p {
  text-align: right;
}

.about2 .bar3 ul li h6 {
  font-size: clamp(18px, 1.2vw, 30px);
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.about2 .bar3 ul li h6::before {
  content: '';
  width: 6vw;
  height: 2px;
  background: var(--color);
  margin-bottom: 2rem;
  opacity: 0.2;
}

.about2 .bar3 ul li:nth-of-type(even) h6 {
  align-items: flex-end;
}

.about2 .bar3 ul li p {
  color: #666;
}

.about2 .bar3>a {
  display: block;
  width: max-content;
  margin: auto;
  padding-bottom: 0;
}

.about2 .bar3 .more {
  background: var(--color);
  padding: 1rem 2rem;
  margin: 0 auto 0;
}

.about2 .bar3 .more span {
  color: #fff;
}

.about2 .bar3 .more img {
  width: 1.6rem;
  filter: invert(1) brightness(1000);
  margin-left: 1rem;
}

.about3 {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 0 !important;
}

.about3 dl dd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 10rem;
  cursor: default;
}

.about3 dl dd:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.about3 dl dd .ll {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.3;
  transition: all 0.5s ease;
}

.about3 dl dd .ll h5 {
  font-size: clamp(20px, 2.6vw, 40px);
  font-family: "DIN";
  transition: all 0.5s ease;
}

.about3 dl dd:hover .ll {
  opacity: 1;
}

.about3 dl dd:hover .ll h5 {
  color: var(--color);
}

.about3 dl dd .ll span {
  display: block;
  margin-top: 3rem;
  width: 1px;
  height: 30%;
  background-color: var(--color2);
  opacity: 0.5;
}

.about3 dl dd .txt {
  flex: 1;
  margin: 0 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about3 dl dd h6 {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
  font-size: clamp(12px, 1.1vw, 16px);
  color: #999;
}

.about3 dl dd h6 strong {
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 20px);
  margin-right: 1.5rem;
}

.about3 dl dd p {
  color: #666;
}

.about3 dl dd .rr {
  width: 18%;
  overflow: hidden;
  border-radius: 8px;
}

.about3 dl dd .rr img {
  width: 100%;
  transition: all 0.5s ease;
}

.about3 dl dd:hover .rr img {
  transform: scale(1.08);
}

.news {
  position: relative;
  z-index: 2;
  background: #fff;
}

.news .bar0 {
  overflow: hidden;
  border-radius: 8px;
  background: #f7f9fa;
  padding: 3rem;
  box-sizing: border-box;
  position: relative;
}

.news .bar0 .swiper-slide {
  display: flex;
  justify-content: space-between;
  height: 45vh;
  position: relative;
}

.news .bar0 .swiper-slide a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.news .bar0 .swiper-slide .ll {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 10% 5% 4%;
  box-sizing: border-box;
}

.news h6 {
  font-size: clamp(16px, 1.3vw, 30px);
  font-weight: 400;
  margin: -4rem 0 4rem;
  line-height: 1.5;
  transition: all 0.5s ease;
}

.news .swiper-slide:hover h6 {
  color: var(--color);
}

.data {
  display: flex;
  align-items: center;
  color: var(--color);
  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 18px);
}

.data img {
  margin: -2px 6px 0 0;
  opacity: 0.7;
  width: clamp(16px, 1.3vw, 24px);
}

.news .bar0 .swiper-slide .rr {
  width: 50%;
  overflow: hidden;
  border-radius: 8px;
}

.news .bar0 .swiper-slide .rr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.news .bar0 .swiper-slide:hover .rr img {
  transform: scale(1.08);
}

.news .bar0 .btnss {
  position: absolute;
  left: calc(1% + 3rem);
  bottom: 4rem;
  z-index: 9;
  display: flex;
  align-items: center;
}

.news .bar0 .btns {
  position: relative;
  left: inherit;
  margin: 0 0.5rem;
}

.news .bar0 .swiper-pagination {
  position: absolute;
  left: 50%;
  width: 47.5%;
  justify-content: center;
  bottom: 4rem;
  z-index: 9;
  display: flex;
  align-items: center;
}

.news .bar0 .swiper-pagination span {
  background: #fff;
  width: 6px;
  height: 6px;
  border-radius: 3rem;
  transition: all 0.5s ease;
  opacity: 1;
}

.news .bar0 .swiper-pagination-bullet-active {
  width: 22px !important;
}

.news .bar1 {
  padding-bottom: 0 !important;
}

.news .bar1 .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}

.news .bar1 .box ul li a {
  display: block;
  transition: all 0.5s ease;
}

.news .bar1 .box ul li:hover a {
  transform: translateY(-5px);
}

.news .bar1 .box ul li b {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  height: 30vh;
}

.news .bar1 .box ul li b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news .bar1 .box ul li:hover b img {
  transform: scale(1.08);
}

.news .bar1 .box ul li h6 {
  margin: 2rem 0;
  font-size: clamp(12px, 1.1vw, 20px);
}

.news .bar1 .box ul li:hover h6 {
  color: var(--color);
}

.news .bar1 .box ul li .data {
  color: #666
}

.newsd {
  background: #f7f9fa;
}

.newsd .sNav {
  background: none;
  border: none;
  padding: 3rem 0;
}

.newsd .bar0 {
  background: #fff;
  padding: 5%;
  box-sizing: border-box;
  border-radius: 8px;
}

.newsd .bar0 .title h3 {
  font-size: clamp(18px, 2.2vw, 36px);
}

.newsd .bar0 .data {
  justify-content: center;
  margin-top: 2rem;
  color: #999;
}

.newsd .tt {
  margin: 5% auto;
}

.newsd .tt p {
  margin: 1rem 0;
  color: #666;
}

.newsd .tt p img {
  width: 100%;
  border-radius: 8px;
  margin: 2rem auto;
}

.newsd .more {
  margin: auto;
  width: max-content;
}

.pro {
  position: relative;
  z-index: 2;
  background: #f7f9fa;
}

.pro_l .contain {
  display: flex;
  justify-content: space-between;
}

.pro_l .left {
  width: 23rem;
  background: #fff;
  border-radius: 8px;
  height: 100%;
  padding: 3rem;
  box-sizing: border-box;
  position: sticky;
  top: calc(var(--height) + 3rem);
}

.pro_l .contain .left h6 {
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding-bottom: 2rem;
}

.pro_l .contain .left dl {
  margin-top: 2.5rem;
  position: relative;
}

.pro_l .contain .left dl dt {
  font-size: clamp(14px, 1vw, 16px);
  margin-bottom: 1rem;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}


.pro_l .contain .left dl dt a {
  font-weight: 400;
  transition: all 0.5s ease;
  line-height: 1.3;
}

.pro_l .contain .left dl dt i {
  font-weight: 400;
  font-style: normal;
  width: 1.2rem;
  position: relative;
  height: 1.2rem;
  margin-top: -1px;
}

.pro_l .contain .left dl dt i::before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--color2);
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
}

.pro_l .contain .left dl dt i::after {
  content: '';
  height: 100%;
  width: 1px;
  background: var(--color2);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.pro_l .contain .left dl .dds {
  display: none;
}

.pro_l .contain .left dl dd {
  margin: 1.8rem 0;
  transition: all 0.5s ease;
  color: #666;
  position: relative;
  padding-left: 2rem;
}

.pro_l .contain .left dl dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: all 0.5s ease;
}

.pro_l .contain .left dl dd.on::before {
  border-color: var(--color);
  background: url(../images/duigou.png) no-repeat center/cover;
}

.pro_l .contain .left dl.active .dds {
  display: block;
}


.pro_l .contain .left dl.active dt i::before {
  background: var(--color);
}

.pro_l .contain .left dl.active dt i::after {
  opacity: 0;
}

.pro_l .contain .left dl.active dt,
.pro_l .contain .left dl:hover dt {
  color: var(--color);
}

.pro_l .contain .left dl.active dt {
  font-weight: 400 !important;
}

.pro_l .contain .left dl dd.on {
  color: var(--color);
}

.pro_l .contain .left dl dd:hover {
  color: var(--color);
}

.pro_l .right {
  width: calc(100% - 25rem);
}

.pro_l .box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pro_l .box ul a {
  display: block;
}

.pro_l .box ul li {
    height: 100%;
  background: #fff;
  padding: 5% 5% 8%;
  box-sizing: border-box;
  border-radius: 8px;
}

.pro_l .box ul li b {
  display: block;
  width: 100%;
  padding: 15% 20%;
  overflow: hidden;
  box-sizing: border-box;
}

.pro_l .box ul li b img {
  width: 100%;
  transition: all 0.8s ease;
}

.pro_l .box ul li:hover b img {
  transform: scale(1.1);
}

.pro_l .box ul li h5 {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 400;
  text-align: center;
  transition: all 0.5s ease;
}

.pro_l .box ul li:hover h5 {
  color: var(--color);
}

.pro_l .box ul li p {
  text-align: center;
  color: #666;
}

.ban_prod {
  background: #eef1f3;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

.ban_prod .swiper-container {
  height: 100%;
}

.ban_prod .swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ban_prod .swiper-slide::before {
  display: none;
}

.ban_prod .swiper-slide img {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
}

.ban_prod .swiper-pagination {
  bottom: 3rem !important;
}

.ban_prod .swiper-pagination span {
  background: rgba(2, 71, 174, 0.3) !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 3rem;
  position: relative;
  opacity: 1 !important;
  overflow: hidden;
}

.ban_prod .swiper-pagination .swiper-pagination-bullet-active {
  width: 2rem !important;
}

.ban_prod .swiper-pagination span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--color);
}

.ban_prod .swiper-pagination .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 4.5s linear;
}

.pro_d {
  position: relative;
  z-index: 2;
  background: #fff;
}

.pro_d .bar1 .box {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.pro_d .bar1 .left {
  width: 50%;
  position: relative;
  padding-bottom: 6rem;
}

.pro_d .bar1 .left p strong {
  border: 1px solid var(--color);
  color: var(--color);
  padding: 1rem 2rem;
  border-radius: 8px;
  margin-right: 2rem;
}

.pro_d .bar1 .right {
  width: 50%;
}

.pro_d .bar2 {
  position: relative;
  z-index: 2;
  background: #f7f9fa;
}

.pro_d .bar2 .box {
  background: #fff;
  border-radius: 8px;
  padding: 5%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: 0 10%;
}

.pro_d .bar2 .ll {
  border-left: 1px solid rgba(0, 0, 0, .06);
  height: 100%;
  position: sticky;
  top: calc(var(--height) + 3rem);
}

.pro_d .bar2 .ll p {
  margin: 0 0 2rem;
  padding-left: 2rem;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
}

.pro_d .bar2 .ll p::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--color);
}

.pro_d .bar2 .ll p.active::before {
  height: 100%;
  transition: all 0.5s ease;
}

.pro_d .bar2 .ll p.active,
.pro_d .bar2 .ll p:hover {
  color: var(--color);
}

.pro_d .bar2 ul {
  flex: 1;
}

.pro_d .bar2 ul li:not(:first-of-type) {
  margin-top: 5rem;
}

.pro_d .bar2 .title2 h3 {
  display: flex;
  align-items: center;
}

.pro_d .bar2 .title2 h3::before {
  content: '';
  margin: -2px 1rem 0 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.5s ease;
}

.pro_d .bar2 .txt2 {
  overflow-x: auto;
}

.pro_d .bar2 table {
  margin: 2rem 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  background: rgba(0, 0, 0, .1);
}

.pro_d .bar2 table td {
  font-size: clamp(11px, 1.1vw, 16px);
  line-height: 1.5;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  color: #666;
  text-align: center;
  background: #fff;
}

.pro_d .bar2 table tr:nth-of-type(1) td,
.pro_d .bar2 table tr:nth-of-type(2) td,
.pro_d .bar2 table .bg td {
  font-weight: 400;
  color: var(--color2);
  background: #f7f9fa;
}

.pro_d .bar2 p {
  margin: 0.5rem 0;
}

.pro_d .bar2 p img {
  width: 100%;
  margin: 2rem 0;
}

.pro_d .bar2 .li3 table {
  background: none;
}

.pro_d .bar2 .li3 table tr td {
  font-weight: 300;
  color: #666;
  background: #fff;
}

.pro_d .bar2 .li3 table:first-of-type tr:nth-of-type(2n+1) td {
  background: #f7f9fa;
}

.pro_d .bar2 .li3 table:first-of-type tr td:nth-of-type(2n+1) {
  font-weight: 400;
  color: var(--color2);
}

.pro_d .bar2 .li3 table:nth-of-type(2) tr td:nth-of-type(1),
.pro_d .bar2 .li3 table:nth-of-type(2) tr:nth-of-type(1) td {
  font-weight: 400;
  color: var(--color2);
}

.pro_d .bar2 .li3 table:nth-of-type(2) tr:nth-of-type(2n+1) td {
  background: #f7f9fa;
}

.pro_d .bar2 table tr td img {
  max-width: 100%;
  margin: auto;
}

.solution0 .bar1 p {
  text-align: left;
  text-indent: 2em;
  margin: 1rem auto 0;
  width: clamp(300px, 70vw, 930px);
}

.solution {
  position: relative;
  z-index: 2;
  background: #fff;
}

.solution dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 5vw, 50px)
}

.solution dl dd {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.solution dl dd a{
    display: block;
    height: 100%;
}
.solution dl b {
  display: block;
  height: 100%;
  overflow: hidden;
  background: var(--color);
}

.solution dl b img {
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
  opacity: 0.8;
}

.solution dl dd:hover b img {
  transform: scale(1.08);
}

.solution dl dd .tt {
  padding: 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
}

.solution dl dd h6 {
  font-size: clamp(14px, 1.3vw, 24px);
  font-weight: 400;
  transition: all 0.5s ease;
  margin-top: 1rem;
  color: #fff;
}

.solution dl dd p {
  color: #fff;
  margin: 1rem 0 0;
  opacity: 0.9;
}

.solution dl dd:hover .more3 {
  background: var(--color);
}

.solution dl dd:hover .more3 span {
  color: #fff;
  text-shadow: rgba(255, 255, 255, 1) 0px 3rem 0px;
}

.solution dl dd:hover .char {
  transform: translateY(-3rem);
}

.solutiond2 {
  background: #fff;
  margin-top: var(--height);
}

.solutiond2 .txt p {
  text-align: center;
  overflow: hidden;
}

.solutiond2 .txt p:has(img) {
  max-width: 80%;
  overflow: hidden;
  border-radius: 8px;
  margin: 5rem auto 0;
}

.solutiond2 .txt p img {
  text-align: center;
  width: 100%;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.8s ease;
}

.solutiond2 .txt p:hover img {
  transform: scale(1.08);
}

.solutiond {
  overflow: hidden;
  background: #f7f9fa;
}

.solutiond .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solutiond .contain .ll {
  width: 50%;
  overflow: hidden;
  border-radius: 8px;
}

.solutiond .contain .ll img {
  width: 100%;
  transition: all 0.8s ease;
}

.solutiond .contain:hover .ll img {
  transform: scale(1.08);
}

.solutiond .contain .rr {
  width: 46%;
}

.solutiond3 .contain {
  display: flex;
  justify-content: space-between;
  height: 35vw;
}

.solutiond3 .contain .ll {
  width: 49%;
  border-radius: 8px;
  overflow: hidden;
}

.solutiond3 .contain .ll img {
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}

.solutiond3 .contain:hover .ll img {
  transform: scale(1.08);
}

.solutiond3 .contain .rr {
  width: 49%;
  overflow-y: auto;
  padding-right: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  min-height: 0;
  --progress: 0%;
  mask-image: linear-gradient(to bottom,
      #000 calc(70% + var(--progress)),
      rgba(0, 0, 0, 0));
}

.solutiond3 .contain .rr::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
}

.solutiond3 .contain .rr::-webkit-scrollbar-track {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
}

.solutiond3 .contain .rr::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: var(--color);
}

.solutiond3 .rr .txt {
  border-radius: 8px;
  background: #fff;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
}

.solutiond3 .rr h6 {
  display: block;
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 20px);
  cursor: pointer;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
}

.solutiond3 .rr h6 span {
  font-size: clamp(14px, 1.2vw, 16px);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-weight: 400;
  font-family: "DIN";
  margin-right: 1rem;
  transition: all 0.5s ease;
  color: #999;
}

.solutiond3 .rr .tt3 {
  padding: 1rem 2rem 1rem 4rem;
  box-sizing: border-box;
  display: none;
}

.solutiond3 .rr .tt3 p {
  color: #666;
  margin: 0;
}

.solutiond3 .rr .txt h6:hover {
  color: var(--color);
}

.solutiond3 .rr .txt.active h6 {
  color: var(--color);
}

.solutiond3 .rr .txt.active h6 span {
  color: #fff;
  background: var(--color);
}

.solutiond3 .rr .txt.active::before {
  width: 100%;
}

.solutiond4 {
  overflow: hidden;
}

.solutiond4 .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 5rem;
}

.solutiond4 .ll {
  width: 40%;
  padding-left: 5%;
  box-sizing: border-box;
}

.solutiond4 .rr {
  width: 55%;
  overflow: hidden;
  border-radius: 8px;
  cursor: grab;
}

.solutiond4 .swiper-slide b {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.solutiond4 b img {
  width: 100%;
  transition: all 0.8s ease;
}

.solutiond4 .swiper-slide:hover b img {
  transform: scale(1.08);
}

.solutiond4 .bottom {
  position: absolute;
  width: 55%;
  right: 0;
  bottom: -0;
}

.solutiond4 .swiper-scrollbar {
  width: 100%;
  height: 2px !important;
}

.solutiond4 .swiper-scrollbar-drag {
  background: var(--color);
}


.solutiond5 {
  background: #f7f9fa;
  overflow: hidden;
}

.solutiond5 .swiper-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.solutiond5 .swiper-slide b {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.solutiond5 .swiper-slide img {
  width: 100%;
  margin: auto;
  transition: all 0.5s ease;
}

.solutiond5 .swiper-slide:hover img {
  transform: scale(1.08);
}

.solutiond5 .btns {
  margin: -1.5rem 0.5vw;
}

.service {
  position: relative;
  z-index: 2;
  background: #f7f9fa;
}

.service ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
  padding: 0 8%;
  box-sizing: border-box;
  justify-content: space-between;
}

.service ul li:not(:last-of-type) {
  width: 32%;
  background-color: #fff;
  padding: 5rem;
  box-sizing: border-box;
  height: auto;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 10px 40px 0px rgba(136, 176, 196, 0.1);
}

.service ul li:nth-child(1) {
  width: 66%;
}

.service ul li {
  cursor: pointer;
}

.service ul li b {
  display: block;
  height: 5rem;
  margin: auto;
}

.service ul li b img {
  height: 100%;
  margin: auto;
  transition: all 0.5s ease;
}

.service ul li:hover b img {
  transform: rotateY(180deg);
}

.service ul li .title2 {
  margin: 2rem 0;
}

.service ul li .title2 h3 {
  transition: all 0.5s ease;
}

.service ul li:hover .title2 h3 {
  color: var(--color);
}

.service ul li p {
  margin: 0;
  text-align: center;
}

.service ul li .tt {
  display: none;
}

.service ul li.liLast {
  width: 100%;
  display: flex;
  justify-content: center;
}

.service ul li .more {
  background: var(--color);
  padding: 1rem 2rem;
}

.service ul li .more span {
  color: #fff;
}

.service ul li .more img {
  width: 1.6rem;
  filter: invert(1) brightness(1000);
  margin-left: 1rem;
}

.website {
  position: relative;
  z-index: 2;
}

.website .bar1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.website .ll {
  width: 62%;
}

.website .ll img {
  width: 100%;
}

.website .rr {
  width: 30%;
  background: #fff;
  border-radius: 8px;
  padding: 3rem;
  box-sizing: border-box;
}

.website .rr .title2 {
  display: flex;
}

.website .rr .title2 h3 {
  margin-right: 2rem;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.5s ease;
}

.website .rr .title2 h3:hover {
  color: var(--color);
}

.website .rr .title2 .h3s.active {
  opacity: 1;
}

.select-box {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.select-now {
  background: #f7f9fa;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sels {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: .3s ease;
  z-index: 10;
}

.select-now.open .sels {
  max-height: 21rem;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
}

.sels li {
  padding: 8px 12px;
  cursor: pointer;
  transition: .2s;
}

.sels li:hover {
  background: var(--color);
  color: #fff;
}

.sels li.active {
  background: #f3f3f3 !important;
  color: var(--color2) !important;
}

.website dl dd {
  display: none;
}

.website dl dd p {
  margin: 3.5rem 0 0;
}

.website dl dd p strong {
  display: block;
  opacity: 0.4;
}

.sels::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
}

.sels::-webkit-scrollbar-track {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
}

.sels::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: var(--color);
}

.join {
  position: relative;
  z-index: 2;
  background: #fff;
}

.ol_nav dl {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ol_nav dl dd {
  margin: 0 2rem;
  display: flex;
  transition: all 0.5s ease;
  align-items: center;
  cursor: pointer;
  font-size: clamp(13px, 1vw, 18px);
}

.ol_nav dl dd span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .1);
  margin-right: 0.8rem;
  position: relative;
}

.ol_nav dl dd span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: var(--color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
}

.ol_nav dl dd.active span::before {
  opacity: 1;
}

.ol_nav dl dd.active span {
  border-color: var(--color);
}

.ol_nav dl dd.active,
.ol_nav dl dd:hover {
  color: var(--color);
}

.join .bbs {
  display: none;
}

.join ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 2.5rem;
  margin-top: 4rem;
  transform: translateY(60px);
  opacity: 0;
}

.join .bbs.active ul {
  transition: all 0.6s ease-in-out;
  opacity: 1;
  transform: translateY(0px);
}

.join ul li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.join ul li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--color);
  transition: all 0.8s ease;
}

.join ul li:hover:after {
  width: 100%;
}

.join ul li b {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  height: 35vh;
}

.join ul li b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.join ul li:hover b img {
  transform: scale(1.08);
}

.join ul li p {
  padding: 1.8rem 0;
  margin: 0;
  transition: all 0.5s ease;
}

.join ul li:hover p {
  color: var(--color);
}

.contact {
  position: relative;
  z-index: 2;
  background: #fff;
}

.contact .bar1 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
  align-items: stretch;
}

.contact .bar1 ul li {
  width: 24%;
  display: flex;
}

.contact .bar1 ul li:nth-of-type(5) {
  width: 74.5%;
}

.contact .bar1 ul li .bb {
  width: 100%;
  background: #f7f9fa;
  border-radius: 8px;
  padding: 3rem;
  transition: all 0.5s ease;
  box-sizing: border-box;
}

.contact .bar1 ul li img {
  height: 3rem;
}

.contact .bar1 ul li h3 {
  margin: 2.5rem 0 1rem;
  transition: all 0.5s ease;
  font-size: clamp(14px, 1.2vw, 20px);
  opacity: 0.5;
  font-weight: 400;
}

.contact .bar1 ul li p {
  margin: 0;
  color: var(--color2);
  transition: all 0.5s ease;
}

.contact .bar1 ul li a {
  transition: all 0.5s ease;
}

.contact .bar1 ul li:hover .bb {
  background: var(--color);
}

.contact .bar1 ul li:hover img {
  filter: invert(1) brightness(1000);
}

.contact .bar1 ul li:hover h3,
.contact .bar1 ul li:hover p,
.contact .bar1 ul li:hover a {
  color: #fff;
  opacity: 1;
}

.contact .bar1 ul li .follow {
  margin-top: 2rem;
}

.contact .bar1 ul li .follow b img:first-of-type {
  filter: grayscale(1);
}

.contact .bar1 ul li:hover .follow b img:first-of-type {
  filter: invert(1) brightness(1000);
}

.contact .bar1 ul li .follow b .rs {
  filter: none;
  height: 10rem;
  z-index: 6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  bottom: 4rem;
}

.contact .bar1 ul li .follow b:hover .rs {
  bottom: 3.5rem;
}

.contact .message .contain {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact .message .ll {
  width: 30%;
}

.contact .message .ll p {
  text-align: left;
  margin-top: 1rem;
}

.contact .online {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .online p {
  width: 48%;
  margin: 2vh 0;
}

.contact .online p .inputs {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 1rem 0;
  box-sizing: border-box;
  display: block;
  line-height: 1.4;
  width: 100%;
  background: none;
}

.contact .online ::placeholder {
  color: #999;
}

.contact .online .pp1 {
  width: 100% !important;
}

.contact .online textarea {
  min-height: 18vh;
  padding: 1rem 0;
}

.contact .submit {
  margin: 3rem 0 1rem;
  position: relative;
  background: var(--color);
}

.contact .submit span {
  color: #fff;
}

.contact .submit button {
  border: none;
  box-shadow: none;
  background: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}

.contact .bar3 .bbs {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 10px 40px 0px rgba(136, 176, 196, 0.1);
}

.contact .bar3 .bbs .ll {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact .bar3 .bbs .ll img {
  height: 3.5rem;
  margin: auto;
}

.contact .bar3 .bbs .ll p {
  text-align: center;
  margin: 2rem 0;
}

.contact .bar3 .bbs .ll p a {
  font-weight: 400;
  transform: scale(1.2);
  display: block;
  transition: all 0.5s ease;
}

.contact .bar3 .bbs .ll p:hover a {
  color: var(--color);
}

.contact .bar3 .bbs .rr {
  width: 50%;
  overflow: hidden;
}

.contact .bar3 .bbs .rr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.contact .bar3 .bbs:hover .rr img {
  transform: scale(1.08);
}

.contact2 {
  position: relative;
  z-index: 2;
  background: #fff;
}

.contact2 .bar1 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}

.contact2 .bar1 ul li .imgs {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.contact2 .bar1 ul li .imgs::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 2rem;
  width: 25%;
  height: 30%;
  background: url(../images/logoa.png) no-repeat center top/contain;
  z-index: 3;
}

.contact2 .bar1 ul li .imgs img {
  width: 100%;
  transition: all 0.8s ease;
}

.contact2 .bar1 ul li:hover .imgs img {
  transform: scale(1.08);
}

.contact2 .bar1 ul li .imgs h3 {
  position: absolute;
  left: 0;
  top: 25%;
  padding: 0 2rem;
  box-sizing: border-box;
  z-index: 3;
  font-size: clamp(16px, 1.4vw, 26px);
  color: #666;
  line-height: 1.8;
}

.contact2 .bar1 ul li .tt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0 0;
}

.contact2 .bar1 ul li .tt p {
  margin: 0;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
}

.contact2 .bar1 ul li .tt p img {
  margin: -2px 6px 0 0;
  width: clamp(16px, 1vw, 20px);
}

.contact2 .bar1 ul li:hover .tt p:last-of-type {
  color: var(--color);
}

.contact3 {
  position: relative;
  z-index: 2;
  background: #fff;
}

.contact3 .bar1 {
  display: flex;
  justify-content: flex-end;
  position: relative;
  min-height: 70vh;
}

.contact3 .bar1 .ll {
  width: 45%;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.contact3 .bar1 .ll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.contact3 .bar1:hover .ll img {
  transform: scale(1.08);
}

.contact3 .bar1 ul {
  width: 53%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact3 .bar1 ul li {
  background: #f7f9fa;
  border-radius: 8px;
  overflow: hidden;
  padding: 2rem 3rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
}

.contact3 .bar1 ul li:hover {
  background: #FFF;
  box-shadow: 0 0 60.8px 0 rgba(0, 0, 0, 0.08);
}

.contact3 .bar1 ul li h3 {
  font-size: clamp(14px, 1.2vw, 20px);
  transition: all 0.5s ease;
}

.contact3 .bar1 ul li:hover h3 {
  color: var(--color);
}

.contact3 .bar1 ul li p {
  display: flex;
  margin: 1rem 0 0;
  align-items: center;
  opacity: 0.6;
}

.contact3 .bar1 ul li p img {
  opacity: 0.8;
  margin: -2px 6px 0 0;
  width: clamp(14px, 1vw, 18px);
}

.contact4 {
  position: relative;
  z-index: 2;
  background: #fff;
}

.contact4 .bar1 {
  display: flex;
  justify-content: space-between;
}

.contact4 .bar1 .ll {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact4 .bar1 .rr {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
}

.contact4 .bar1 .rr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.contact4 .bar1:hover .rr img {
  transform: scale(1.08);
}

.contact4 .bar2 {
  padding-bottom: 0 !important;
}

.contact4 .bar2 .bg {
  position: relative;
}

.contact4 .bar2 .bg img {
  width: 100%;
}

.contact4 .bar2 .bg .title {
  position: absolute;
  left: 50%;
  width: 100%;
  top: 24%;
  transform: translate(-50%, 0);
}

.contact4 .bar2 .bg .title span {
  color: #fff;
}

.contact4 .bar2 ul {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 10px 40px 0px rgba(136, 176, 196, 0.1);
  margin-top: -13rem;
  position: relative;
  z-index: 3;
  padding: 5rem 10%;
  box-sizing: border-box;
}

.contact4 .bar2 ul::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 65%;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color);
}

.contact4 .bar2 ul li img {
  width: 5rem;
  margin: 0 0 2rem;
}

.contact4 .bar2 ul li p {
  margin: 0.5rem 0 0;
}

.contact4 .bar2 ul li p a {
  transition: all 0.5s ease;
}

.contact4 .bar2 ul li p:hover a {
  color: var(--color);
}

.manual {
  position: relative;
  z-index: 2;
  background: #f7f9fa;
}

.search2 {
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-sizing: border-box;
  width: 35vw;
  margin: auto;
}

.search2 button input {
  flex: 1;
}

.search2 button {
  background: none;
}

.search2 button img {
  width: 2rem;
}

.manual dl {
  margin: 5rem 0;
}

.manual .bar1 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.manual .bar1 ul li a {
    height: 100%;
  display: block;
  background: #fff;
  border-radius: 8px;
  transition: all 0.5s ease;
  padding: 3rem 2rem;
  box-sizing: border-box;
}

.manual .bar1 ul li a:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 40px 0px rgba(136, 176, 196, 0.1);
}

.manual .bar1 ul li h3 {
    line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 20px);
  transition: all 0.5s ease;
}

.manual .bar1 ul li:hover h3 {
  color: var(--color);
}

.manual .bar1 ul li h3 img {
  width: 2rem;
  border-radius: 50%;
  padding: 6px;
  margin: 0 0 0 1rem;
  background: #f3f6fd;
}

.manual .bar1 ul li p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 0;
}

.manual .bar1 ul li p img {
  width: 1.6rem;
  margin: -2px 0.8rem 0 0;
}

.manual .bar2 {
  margin-top: 8rem;
}

.manual .bar2 p strong {
  font-weight: 400;
}
.psearch .pro_l .right{
    width: 100%;
}
.psearch .pro_l .box ul { 
    grid-template-columns: repeat(4, 1fr); 
}
.big_box {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999999999;
  display: none;
}

.big_imgss {
  position: absolute;
  width: 90%;
  height: 90%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.big_imgss.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.big_box .big_imgss video {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.big_box .righttop {
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 9;
  padding: 15px;
}

.big_box .righttop div {
  float: right;
}

.big_box .righttop img {
  margin: 0;
  height: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  filter: invert(1) brightness(1000);
}

.big_box .righttop img:hover {
  opacity: 0.6 !important;
}

/* 客户服务弹框 */
.big_boxTT {
  background: rgba(0, 0, 0, .5);
}

.big_boxTT .big_contain {
  height: auto;
  width: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.big_boxTT .close2 {
  position: absolute;
  right: 3rem;
  top: 3rem;
  width: 2rem;
  background: var(--color);
  border-radius: 50%;
  padding: 0.8rem;
  z-index: 3;
  cursor: pointer;
  display: none;
}

.big_boxTT .close2 img {
  width: 100%;
  filter: invert(1) brightness(1000);
}

.big_boxTT .big_imgss {
  background: #fff;
  border-radius: 8px;
  padding: 5%;
  box-sizing: border-box;
  height: auto;
  width: 100%;
  position: static;
  transform: scale(0.6) translate(0, 0);
}

.big_boxTT .big_imgss.active {
  transform: scale(1);
}

.big_boxTT .tt {
  max-height: 80vh;
  overflow-y: auto;
}

.big_boxTT .title2 {
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.pages {
  width: 100%;
}

.pages ul {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 5rem;
  justify-content: center;
}

.pages ul li {
  font-size: clamp(11px, 0.9vw, 16px);
  margin: 0 0.3rem;
  padding: 4px 12px;
  line-height: 1;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.pages ul li.active {
  border-color: var(--color);
  font-weight: 400;
  color: var(--color) !important;
}

.pages ul li:hover {
  color: var(--color);
  text-decoration: underline;
}

.word {
  display: block;
  overflow: hidden;
  color: inherit;
  line-height: 1;
}

.wave-text .char {
  display: inline-block;
  text-shadow: rgba(0, 0, 0, 0.6) 0px 3rem 0px;
  transition: 0.5s;
}

.wave-text:hover .char {
  transform: translateY(-3rem);
}

.w2 {
  display: block;
  overflow: hidden;
  color: inherit;
  line-height: 1;
}

.s_wave .ws {
  display: inline-block;
  text-shadow: rgba(0, 0, 0, 0.6) 0px 3rem 0px;
  transition: 0.5s;
}

.s_wave:hover .ws {
  transform: translateY(-3rem);
}
/* Banner头部内容（栏目描述，后台栏目管理维护） */
.bans .txt .ban-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 1.2vw, 18px);
  margin-top: 15px;
  text-align: center;
  letter-spacing: 1px;
  max-width: 900px;
}
