@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, 1vw, 18px);
}

p {
  line-height: 1.8;
  margin: 1rem 0;
  text-align: left;
  color: var(--color2);
}

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: 70%;
  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: #008dd3;
  --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;
  height: var(--height);
}

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

header.active {
  background: #fff;
  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: absolute;
  height: 35%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

header .logo img {
  display: block;
  height: 100%;
  filter: invert(1) brightness(1000);
}

header.active .logo img,
header.header2 .logo img {
  filter: none;
}

header .nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0 clamp(15px, 4vw, 60px);
}

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

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.active .nav li h2,
header.header2 .nav li h2 {
  color: var(--color2);
}

header.active .nav li:hover h2 {
  opacity: 1;
}

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

header .lls {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

header .lls img {
  transition: all 0.5s ease;
  width: clamp(14px, 1.1vw, 18px);
  filter: invert(1) brightness(1000);
}

header.active .lls img,
header.header2 .lls img {
  filter: none;
}

header.active .lls:hover img {
  opacity: 1;
}

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

.navBtn span {
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  margin: 4px auto;
  border-radius: 5px;
}

header.active .navBtn span,
header.header2 .navBtn span {
  background: var(--color2);
}

.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: -56%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.ph_nav{
    display: none;
}

.s_menu {
  min-width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.38, 0, 0, 1);
  padding: 10px 2rem;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: max-content;
  max-width: 20rem;
  background-color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  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 {
  text-align: center;
  font-size: clamp(12px, 0.7vw, 16px);
  margin: 10px 0;
  transition:
    color 0.3s cubic-bezier(0.38, 0, 0, 1);
  color: var(--color2);
}

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

.banner {
  position: relative;
  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.3), rgba(0, 0, 0, 0));
  z-index: 1;
}

.banner .swiper-slide::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

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

.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: 17%;
  transform: translate(-50%, -0%);
  z-index: 2;
  color: #fff;
}

.banner .txt h3 {
  text-align: center;
  font-size: clamp(26px, 4vw, 54px);
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.banner .swiper-slide-active .txt h3 {
  transform: translateY(0);
  opacity: 1;
}

.btns {
  width: 3rem !important;
  height: 3rem !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 0.2rem;
  margin: 0 2rem;
  transition: all 0.5s ease;
}

.btns::after {
  color: #fff;
  font-size: 1.2rem !important;
  transition: all 0.5s ease;
}

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

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

.banner .swiper-pagination span {
  background: none !important;
  margin: 0 2rem !important;
  width: 120px !important;
  min-width: max-content;
  height: auto !important;
  border-radius: 0;
  opacity: 1 !important;
  transition: all 0.5s ease;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.7rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.banner .swiper-pagination span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
  color: #fff;
}

.banner .swiper-pagination .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: width var(--bullet-duration, 4.5s) linear;
}

.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(24px, 3vw, 40px);
  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: 3rem;
  position: relative;
}

.title2 h3 {
  font-size: clamp(18px, 2vw, 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(12px, 1vw, 14px);
  border-radius: 5rem;
  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;
}

.more2 {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  color: #999;
  transition: all 0.5s ease;
  width: max-content;
  padding: 1rem 0;
  border-radius: 5rem;
  font-size: clamp(10px, 0.86vw, 14px);
}

.more2 i {
  font-size: 1.2rem;
  margin-left: 5px;
  color: #999;
  transition: all 0.5s ease;
}

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

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

.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: 60vh;
  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;
  background: url(../images/index_proa.jpg) no-repeat center/cover;
}

.index_pro ul li .bbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff, #D8E0E8);
  border-radius: 0.25rem;
  z-index: 1;
  opacity: 0.7;
  transition: all 0.8s;
}

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

.index_pro ul li .bbs b img {
  width: auto;
  height: 40%;
  position: absolute;
  left: 50%;
  top: 64%;
  transform: translate(-50%, -50%);
  z-index: 6;
  transition: all 0.8s;
}

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

.index_pro ul li .tt h6 {
  font-size: clamp(14px, 1.2vw, 26px);
  text-align: center;
  transition: all 0.5s ease;
  font-weight: 400;
}

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

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

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

.index_pro ul li.on .bbs::before {
  opacity: 0;
}

.index_pro ul li.on .bbs b img {
  top: 85%;
  height: 50%;
}

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

.index_about {
  position: relative;
  z-index: 6;
  padding: 12rem 0 0;
  overflow: hidden;
}

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

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

.index_about .imgs img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.index_about .imgs img:first-of-type {
  display: block;
}

.index_about .title h3 {
  color: #fff;
  position: relative;
  z-index: 3;
}

.index_about ul {
  margin-top: 25vh;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.index_about ul li {
  width: 33.3%;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.2);
}

.index_about ul li a {
  display: block;
  padding: 10vh 3% 12vh;
  box-sizing: border-box;
  transition: all 0.5s ease;
}

.index_about ul li a:hover {
  transform: scale(1.08);
}

.index_about ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 2px;
  background: var(--color);
  z-index: 6;
}

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

.index_about b {
  width: 5rem;
  display: block;
  margin: auto;
}

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

.index_about ul li h6 {
  color: #fff;
  margin: 3rem 0 0;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  transition: all 0.5s ease;
}

.index_about ul li p {
  color: #fff;
  text-align: center;
  transition: all 0.5s ease;
}

.index_about ul li.active {
  background: rgba(255, 255, 255, 0.6);
}

.index_about ul li.active b img {
  filter: none;
}

.index_about ul li.active h6,
.index_about ul li.active p {
  color: var(--color);
}

.index_partner {
  width: 100%;
  position: relative;
  height: 250vh;
  background: #f8fafc;
}

.index_partner .contain {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.index_partner .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin: 0;
}

.index_partner h3 {
  pointer-events: none;
  color: var(--color);

}

.index_partner .bbs {
  width: 100%;
  height: 100%;
  position: relative;
}

.index_partner .circles {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15%;
  box-sizing: border-box;
}

.index_partner .circles img {
  width: 100%;
}

.index_partner .circles span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 1;
}

.index_partner .circles span:nth-child(1) {
  width: 35vw;
  height: 35vw;
  border: 1px solid rgba(106, 22, 133, 0.05);
  border-radius: 50%;
  transition: all 0.4s 0s;
}

.index_partner .circles span:nth-child(2) {
  width: 50vw;
  height: 50vw;
  border: 1px dashed rgba(106, 22, 133, 0.1);
  transition: all 0.4s 0s;
}

.index_partner .circles span:nth-child(3) {
  width: 70vw;
  height: 70vw;
  border: 1px dashed rgba(106, 22, 133, 0.1);
  transition: all 0.4s 0s;
}

.index_partner ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.index_partner ul li {
  position: absolute;
}

.index_partner ul li b {
  width: 6vw;
  height: 6vw;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f1f1;
  transition: all 0.5s ease;
}

.index_partner ul li:hover b {
  transform: scale(1.15);
}

.index_partner ul li img {
  width: 90%;
}

.index_partner ul .li1 {
  left: 20%;
  top: 6%;
  transform: scale(0.92);
}

.index_partner ul .li2 {
  right: 19%;
  top: 8%;
}

.index_partner ul .li3 {
  left: 31%;
  top: 13%;
  transform: scale(0.7);
}

.index_partner ul .li4 {
  left: 55%;
  top: 21%;
  transform: scale(0.8);
}

.index_partner ul .li5 {
  left: 67.5%;
  top: 22%;
  transform: scale(1.2);
}

.index_partner ul .li6 {
  left: 13.5%;
  top: 28%;
  transform: scale(0.7);
}

.index_partner ul .li7 {
  left: 23.5%;
  top: 35%;
  transform: scale(1.2);
}

.index_partner ul .li8 {
  left: 33.8%;
  top: 29.5%;
}

.index_partner ul .li9 {
  left: 62.5%;
  top: 39%;
  transform: scale(1.5);
}

.index_partner ul .li10 {
  left: 71%;
  top: 38%;
  transform: scale(0.7);
}

.index_partner ul .li11 {
  left: 80.5%;
  top: 27%;
  transform: scale(0.7);
}

.index_partner ul .li12 {
  left: 12%;
  top: 50%;
  transform: scale(0.7);
}

.index_partner ul .li13 {
  left: 23.5%;
  top: 58%;
  transform: scale(1.2);
}

.index_partner ul .li14 {
  left: 34.3%;
  top: 61%;
  transform: scale(1.5);
}

.index_partner ul .li15 {
  left: 59%;
  top: 62%;
  transform: scale(0.8);
}

.index_partner ul .li16 {
  left: 70%;
  top: 54%;
  transform: scale(1.2);
}

.index_partner ul .li17 {
  left: 82%;
  top: 46%;
  transform: scale(0.7);
}

.index_partner ul .li18 {
  left: 15%;
  top: 69%;
  transform: scale(0.7);
}

.index_partner ul .li19 {
  left: 30%;
  top: 75%;
  transform: scale(0.8);
}

.index_partner ul .li20 {
  left: 66.5%;
  top: 70%;
  transform: scale(0.9);
}

.index_partner ul .li21 {
  left: 80%;
  top: 65%;
  transform: scale(0.7);
}

.index_partner ul .li22 {
  left: 43%;
  top: 86%;
  transform: scale(0.7);
}

.index_partner ul .li23 {
  left: 57%;
  top: 83%;
  transform: scale(0.7);
}

.index_partner ul .li24 {
  left: 21.5%;
  top: 86%;
  transform: scale(0.8);
}

.index_partner ul .li25 {
  left: 75%;
  top: 81%;
  transform: scale(0.8);
}

.message {
  overflow: hidden;
}

.message .contain {
  justify-content: space-between
}

.message .title {
  width: 50%;
}

.message .title p {
  text-align: left;
}

.message .rr {
  width: 50%;
}

.message .online {
  justify-content: space-between;
}

.message .online .pps {
  width: 48%;
  margin: 0;
}

.message .online .pp1 {
  width: 100%;
}

.message .online .inputs {
  width: 100%;
  padding: 2.5rem 0;
  background: none;
  border-bottom: 1px solid rgba(0, 141, 211, 0.2);

}

.message .online .inputs::placeholder {
  color: #999;
}

.message .online select {
  color: #999;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 6.8rem;
}

.message .online option {
  margin: 0;
  padding: 0;
  border: 0;
}

.message .online select.selected {
  color: var(--color2);
}

.message .online textarea {
  height: 6rem;
}

.message .submit button {
  margin-top: 4rem;
  background: #008dd3;
  border-radius: 5rem;
  padding: 1.5rem 3rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.message .submit button i {
  font-size: 1rem;
  color: #fff;
  margin-left: 1rem;
  transition: all 0.5s ease;
}

.message .submit button:hover i {
  margin-left: 1.5rem;
}

.footer {
  background: #1d1f1e;
  position: relative;
  z-index: 9;

}

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

.footer .bar .top .ll {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 42%;
}

.footer .logo2 {
  height: 3rem;
}

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

.footer .bar ul li {
  display: flex;
  margin: 1.5rem 0 0 0;
}

.footer .bar ul li img {
  width: 2rem;
  height: 2rem;
  margin: 5px 1rem 0 0;
}

.footer .bar ul li p {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1;
}

.footer .bar ul li p a {
  color: #fff;
  font-size: clamp(12px, 1vw, 18px);
  display: block;
  font-weight: 400;
  margin-top: 1rem;
  line-height: 1.3;
}

.footer .bar dl dt {
  font-size: clamp(12px, 1.1vw, 18px);
  margin: 0 0 2.5rem 0;
  font-weight: 400;
  color: #fff;
}

.footer .bar dl dd {
  color: #fff;
  font-size: clamp(12px, 0.9vw, 18px);
  margin: 1.6rem 0 0;
  opacity: 0.7;
  transition: all 0.5s ease;
}

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

.follow {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
}

.follow b {
  display: block;
  position: relative;
  overflow: hidden;
  margin-right: 1rem;
  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 .copy {
  border-top: 1px solid rgba(255, 255, 255, .2);
  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: rgba(255, 255, 255, 0.6);
}

.footer .copy p a {
  font-size: clamp(12px, 0.8vw, 16px);
  color: rgba(255, 255, 255, 0.6);
  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: 40%;
}

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

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

.bans {
  position: relative;
  width: 100%;
  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, 50px);
  color: #fff;
  font-weight: 400;
  text-align: center;
}

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

.basHeight {
  height: 60vh;
}

.sNav {
  background: #f4f9ff;
  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(10px, 1vw, 20px);
}

.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%;
  padding: 0 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s;
  border-bottom: 2px solid transparent;
  font-weight: 400;
}

.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);
  background: #d1e5ee;
}

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

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

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

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

.pro .box ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 0.8rem rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.pro .box ul li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--color);
  transition: all 0.8s ease;
  border-radius: 8px;
}

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

.pro .box ul li b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
 height:clamp(200px,24vw,300px);
  overflow: hidden;
  padding: 10% 20%;
  overflow: hidden;
  box-sizing: border-box;
  background: url(../images/pBg0.png) no-repeat center/cover;
}

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

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

.pro .box ul li .tt {
  padding: 3rem 2rem 1.5rem;
  box-sizing: border-box;
}

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

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

.pro .box ul li p {
  color: var(--color2);
}

.pro .box ul li:hover .more2 {
  background: var(--color);
  padding: 1rem 2rem;
  color: #fff;
}

.pro .box ul li:hover .more2 i {
  color: #fff;
}

.bans_pd {
  height: 10rem;
}

.pro_d .back {
  display: flex;
}

.pro_d .back a {
  display: inline-block;
}

.pro_d .back p {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  color: #aeaeae;
  margin: 0;
  padding: 1rem 0 2rem;
  justify-content: flex-end;
}

.pro_d .back img {
  width: clamp(15px, 1vw, 20px);
  margin: -2px 0.8rem 0 0;
}

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

.pro_d .boxs {
  width: 100%;
  overflow: hidden;
}

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

.pro_d .bar1 .left {
  width: 58%;
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 5% 0 5% 5%;
  box-sizing: border-box;
  position: relative;
}

.pro_d .bar1 .left::before {
  content: '';
  position: absolute;
  right: -20%;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  height: 100%;
  border-radius: 1rem;
}

.pro_d .bar1 .gallery-thumbs {
  width: 6rem;
}

.pro_d .bar1 .gallery-thumbs .swiper-slide {
  width: 100%;
  box-sizing: border-box;
  height: 6vh;
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0.6;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
}

.pro_d .bar1 .gallery-thumbs .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  padding: 15%;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}

.pro_d .bar1 .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color);
}

.pro_d .bar1 .gallery-top {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  width: calc(100% - 8rem);
  background: url(../images/pBg.png) no-repeat center/cover;
  height: 50vh;
}

.pro_d .bar1 .gallery-top .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pro_d .bar1 .left img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.pro_d .bar1 .swiper-button-next {
  right: 8px;
}

.pro_d .bar1 .swiper-button-prev {
  left: 8px;
}

.pro_d .bar1 .swiper-button-next,
.pro_d .bar1 .swiper-button-prev {
  background: #fff;
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 50%;
  padding: 0.2rem;
  box-shadow: 0 3rem 3rem 0 rgba(23, 33, 30, 0.031);
}

.pro_d .bar1 .swiper-button-next::after,
.pro_d .bar1 .swiper-button-prev::after {
  font-weight: 800;
  font-size: 1rem;
}

.pro_d .bar1 .right {
  width: 40%; 
  box-sizing: border-box;
}

.pro_d .bar1 .right p {
  margin: 0 0 0.5rem;
}
.pro_d .bar1 .right .tt2{
    width: max-content;
}
.more3 {
  display: flex;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  background: var(--color);
  color: #fff;
  border-radius: 5rem;
  margin-top: 4rem;
  align-items: center;
  width: max-content;
  font-size: 1.4rem;
  transition: all 0.5s ease;
}

.more3 img {
  width: 1.7rem;
  margin: -1px 8px 0 0;
}

.more3:hover {
  padding: 1.1rem 3rem;
}

.pro_d2 .bars:not(:first-of-type) {
  margin-top: 8rem;
}

.pro_d2 .bar2 table {
  width: 100% !important;
}

.pro_d2 .bar2 table td {
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  padding: 1.5rem;
  box-sizing: border-box;
  background: #f5f5f5;
}

.pro_d2 .bar2 table tr:nth-child(-n + 2) td {
  font-weight: 400;
  color: #fff;
  background: var(--color);
}

.pro_d2 .bar3 p img {
  max-width: 100%;
  margin: auto;
}

.pro_d3 {
  background: #f6f6f6;
  overflow: hidden;
}
.pro_d3 .swiper-container{
    overflow: hidden;
    position: relative;
}
.pro_d3 .swiper-slide{
    height: inherit !important;
}
.pro_d3 a{
    display: block;
    width: 100%;
    height: 100%;
}
.pro_d3 .lis {
    height: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 0.8rem rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.pro_d3 .lis::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--color);
  transition: all 0.8s ease;
  border-radius: 8px;
}

.pro_d3 .lis:hover:after {
  width: 100%;
}

.pro_d3 .lis  b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height:clamp(200px,24vw,300px);
  overflow: hidden;
  padding: 10% 20%;
  overflow: hidden;
  box-sizing: border-box;
  background: url(../images/pBg0.png) no-repeat center/cover;
}

.pro_d3 .lis  b img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.pro_d3 .lis:hover b img {
  transform: scale(1.1);
}

.pro_d3 .lis  .tt {
  padding: 3rem 2rem 1.5rem;
  box-sizing: border-box;
}

.pro_d3 .lis h5 {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 400;
  transition: all 0.5s ease;
}

.pro_d3 .lis:hover h5 {
  color: var(--color);
}

.pro_d3 .lis  p {
  color: var(--color2);
}

.pro_d3 .lis:hover .more2 {
  background: var(--color);
  padding: 1rem 2rem;
  color: #fff;
}

.pro_d3 .lis:hover .more2 i {
  color: #fff;
}

.bans_area .txt {
  top: 72%;
  justify-content: space-between;
}

.bans_area .txt h3 {
  text-align: left;
}

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

.bans_area .txt .ttl {
  width: 50%;
}

.bans_area ul {
  display: flex;
  gap: 1rem;
  margin-top: 10vh;
}

.bans_area ul li {
  color: #fff;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.bans_area ul a:hover li {
  color: var(--color);
  opacity: 1;
}

.bans_area ul li.on {
  opacity: 1;
}

.bans_area .txt .ttr {
  width: 40%;
}

.areas .top {
  margin-bottom: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, .5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.areas .top .title2 {
  margin: 0;
}

.areas .top h6 {
  font-size: clamp(20px, 3vw, 30px);
  font-family: "DIN";
}

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

.areas .bar1 ul a {
  display: block;
}

.areas .bar1 ul li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.areas .bar1 ul li b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30rem;
  overflow: hidden;
  padding: 14% 20%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.areas .bar1 ul li:hover b img {
  transform: scale(1.1);
}

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

.areas .bar1 ul li .tt {
  padding: 3rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
}

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

.areas .bar1 ul li:hover .tt {
  transform: translateX(10px);
}

.areas .bar1 ul li p {
  transition: all 0.5s ease;
}

.areas .bar1 ul li:hover h5,
.areas .bar1 ul li:hover p {
  color: #fff;
}

.areas .bar2 {
  padding-top: 0 !important;
}

.areas .bar2 ul {
  display: flex;
  justify-content: space-between;
}

.areas .bar2 ul li img {
  height: 3.8rem;
  margin: 0 auto 2rem;
  filter: grayscale(1);
}

.areas .bar2 ul li h5 {
  text-align: center;
  transition: all 0.5s ease;
}

.areas .bar2 ul li:hover img {
  filter: none;
}

.areas .bar2 ul li:hover h5 {
  color: var(--color2);
}

.service .title {
  display: flex;
  justify-content: center;
  gap: 3vw;
}

.service .title h3 {
  opacity: 0.2;
  transition: all 0.5s ease;
  cursor: pointer;
}

.service .title h3.active,
.service .title h3:hover {
  opacity: 1;
}

.service .bar1 {
  display: none;
}

.service .bar1 ul a {
  display: block;
}

.service .bar1 ul li {
  margin: 2rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F4F6F8;
  padding: 4rem;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.service .bar1 ul a:first-of-type li {
  margin: 0;
}

.service .bar1 ul li .ll {
  width: 86%;
}

.service .bar1 ul li h3 {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  transition: all 0.5s ease;
}

.service .bar1 ul li .ll p {
  font-size: clamp(12px, 0.9vw, 18px);
  margin: 0.8rem 0 0;
  transition: all 0.5s ease;
}

.service .bar1 ul li .rr {
  transition: all 0.5s ease;
  cursor: pointer;
  color: var(--color2);
  font-size: clamp(12px, 0.9vw, 18px);
  transition: all 0.5s ease;
}

.service .bar1 ul li .rr img {
  width: 2.6rem;
  margin: 0 auto 0.3rem;
  filter: grayscale(1);
}

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

.service .bar1 ul li:hover h3,
.service .bar1 ul li:hover p,
.service .bar1 ul li:hover .rr {
  color: #fff;
}

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

.message_tk {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  max-height: 100vh;
  overflow-y: auto;
  display: none;
}

.message_tk .online {
  margin: 0 auto;
}

.message_tk .contain {
  width: 60%;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.message_tk .close {
  position: fixed;
  right: 2rem;
  top: 2rem;
  width: 4rem;
  cursor: pointer;
}

.message_tk .close img {
  width: 100%;
  transition: all 0.3s linear;
}

.message_tk .close img:hover {
  transform: rotate(90deg);
}

.message_tk .contain .online {
  width: 100%;
  padding: 3%;
  background: #fff;
  margin-top: 3%;
  box-sizing: border-box;
  border-radius: 1rem;
  box-shadow: 0.125rem 0.3125rem 1.875rem 0.0625rem rgba(172, 190, 204, 0.55);
}

.message_tk .contain .online .inps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.message_tk .contain .online .inps .pp2 {
  width: 49%;
}

.message_tk .contain .online .inps .pp3 {
  width: 100%;
}

.message_tk .contain .online .inps span {
  display: block;
  margin-bottom: 0.5rem;
}

.message_tk .contain .online .inps p {
  position: relative;
  margin: 0.6rem 0;
}

.message_tk .contain .online .inps p img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 55%;
  padding: 0.2rem;
  box-sizing: border-box;
}

.message_tk .contain .online .inps p i {
  font-style: normal;
  color: var(--color);
  margin-right: 2px;
}

.message_tk .contain .online .inputs {
  background: none;
  display: block;
  line-height: 1.4;
  width: 100%;
  box-shadow: none;
  border: none;
  box-sizing: border-box;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #f6f6f8;
  padding: 1rem 1.2rem;
}

.message_tk .contain ::placeholder {
  color: #bbb;
}

.message_tk .contain textarea {
  min-height: 8rem;
}

.message_tk .contain .online option {
  padding: 1rem 0;
}

.message_tk .contain .online .checkbox input {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  transform: translateY(1px);
}

.message_tk .contain .online .checkbox a {
  color: var(--color);
}

.message_tk .contain .online .submit {
  display: flex;
  justify-content: center;
  background: none;
  line-height: 32px;
  width: 200px;
  padding: 6px 0;
  margin: 0rem auto 1.5rem;
  background: var(--color);
  color: #fff;
  border: none;
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 8px;
  letter-spacing: 1px;
  position: relative;
}
.message_tk .contain .online .submit button{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: none;
    border: none;
}

.message_tk .contain .online .submit:hover {
  border-radius: 5rem;
}

.service2 {
  padding-top: 0 !important;
}

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

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

.about .bar1 ul li {
  cursor: default;
  width: 25%;
  text-align: center;
}

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

.about .bar1 ul li h5 {
  font-weight: 500;
  color: var(--color);
  display: flex;
  justify-content: center;
}

.about .bar1 ul li h5 strong {
  line-height: 1;
  color: var(--color);
  font-size: clamp(30px, 4.2vw, 56px);
  font-family: 'DIN';
}

.about .bar1 .txt {
  margin-bottom: 25vh;
}

.culture ul li {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6rem;
}

.culture ul li .bbs {
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #f8f8f8;
}

.culture ul li .ll {
  width: 50%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

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

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

.culture ul li .rr {
  width: 50%;
  padding: 2% 5%;
  box-sizing: border-box;
}

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

.culture ul li .tt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.culture ul li p {
  color: var(--color2);
  margin: 2.5rem 0;
  font-size: clamp(12px, 0.9vw, 18px);
}

.culture ul li p img {
  height: 2.8rem;
}

.culture ul li p strong {
  display: block;
  margin: 1rem 0 0;
  font-weight: 400;
}

.culture ul li:nth-of-type(2) .bbs {
  align-items: center;
  background: none;
  flex-direction: row-reverse;
  height: 327px;
}

.culture ul li:nth-of-type(2) .tt {
  display: block;
}

.culture ul li:nth-of-type(2) .bbs .ll {
  border-radius: 10px;
  right: initial;
  left: 0;

}

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

.honor .contain {
  justify-content: space-between;
}

.honor .contain .ll {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.honor .ll .swiperHonorTxt {
  height: 20rem;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  overscroll-behavior: contain;
}

.honor .ll .swiper-slide {
  margin: 0;
  color: var(--color2);
  font-size: clamp(12px, 0.9vw, 18px);
  opacity: 0.23;
  transition: all 0.4s;
}

.honor .ll .swiper-slide-active {
  opacity: 1;
}

.honor .ll .swiper-slide-next,
.honor .ll .swiper-slide-prev {
  opacity: 0.55;
}

.honor .ll .swiper-slide p {
  transition: all 0.4s;
  transform: scale(0.86) translateX(-3.1rem);
}

.honor .ll .swiper-slide-next p,
.honor .ll .swiper-slide-prev p {
  transform: scale(0.92) translateX(-1.7rem);
}

.honor .ll .swiper-slide-active p {
  color: var(--color);
  transform: scale(1) translate(0);
}

.honor .contain .rr {
  width: 68%;
  position: relative;
}

.honor .contain .btnsBox {
  position: absolute;
  right: 0;
  top: -0rem;
  z-index: 9;
  display: flex;
}

.honor .contain .btnsBox .btns {
  background: var(--color);
  margin: 0rem 0.2rem;
  transform: scale(0.8);
  position: static;
}

.honor .swiperHonor .swiper-slide {
  width: 100%;
  overflow: hidden;
  height: initial !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.honor .swiperHonor .swiper-slide b {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80%;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.8s ease;
}

.honor .swiperHonor .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;

}

.honor .swiperHonor .swiper-slide-active b {
  height: 100%;
}

.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: var(--color2);
  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: var(--color2);
}

.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: var(--color2);
}

.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;
}

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

.news .bar1 .box ul li a {
  display: block;
  transition: all 0.5s ease;
  background: #f9fbfc;
  border-radius: 8px;
  overflow: hidden;
}

.news .bar1 .box ul li b {
  display: block;
  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 .tt {
  padding: 2rem;
  box-sizing: border-box;
}

.news .bar1 .box ul li h6 {
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.5s ease;
  margin: 0 0 2rem 0;
  font-size: clamp(12px, 1.1vw, 20px);

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
}



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

.data {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding-top: 2rem;
  position: relative;
  color: rgba(0, 0, 0, .3);
  font-size: clamp(12px, 0.9vw, 18px);
}

.news .bar1 .data::after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 0%;
  height: 1px;
  z-index: 2;
  background: var(--color);
  transition: all 0.5s linear;
}

.news .bar1 .box ul li:hover .data::after {
  width: 100%;
}

.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 {
  justify-content: space-between;
}

.contact .bar1 .ll {
  width: 48%;
}

.contact .bar1 ul li {
  margin: 1rem 0;
}

.contact .bar1 ul li p {
  margin: 0;
  color: #999;
  transition: all 0.5s ease;
}

.contact .bar1 ul li a {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  transition: all 0.5s ease;
  font-family: "DIN";
}

.contact .bar1 .message {
  width: 50%;
}

.contact .bar1 .message .rr {
  width: 100%;
}

.job {
  background: #e2ebf1;
}

.job .title {
  display: flex;
  justify-content: center;
  gap: 3vw;
}

.job .title h3 {
  opacity: 0.2;
  transition: all 0.5s ease;
  cursor: pointer;
}

.job .title h3.active,
.job .title h3:hover {
  opacity: 1;
}

.job ul {
  display: none;
}

.job ul li {
  margin-bottom: 3px;
  cursor: pointer;
}

.job ul li .t1 {
  background: #fff;
  padding: 1.8vw 2.3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.job ul li .t1::before {
  content: '';
  width: 0.4vw;
  height: 0%;
  position: absolute;
  left: 0px;
  top: 50%;
  transition: 0.5s;
  background: var(--color);
}

.job ul li:hover .t1::before {
  height: 100%;
  top: 0px;
}

.job ul li .t1 h3 {
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 20px);
}

.job ul li .t1 .add {
  font-weight: 400;
  font-size: clamp(20px, 3vw, 30px);
  transform: scale(1.1);
  transition: all 0.5s;
}

.job ul li:hover .t1 .add {
  color: var(--color);
}

.tk {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
  z-index: 9999;
  display: none;
  left: 0;
  top: 0;
}

.tk .tkb {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-height: 90%;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  transition: all 0.6s ease;
}

.tk.active .tkb {
  top: 50%;
}

.tk_job {
  display: none;
}

.tk .tk_job {
  padding: 4% 5%;
  box-sizing: border-box;
  display: block;
}

.tk .top {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.tk .title2 {
  margin-bottom: 1rem;
}

.tk .top p {
  display: flex;
  gap: 1rem 2rem;
  margin: 0;
}

.tk .top p span {
  color: #999;
}

.tk .close {
  position: absolute;
  right: 3rem;
  top: 3rem;
  width: 2.2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 9;
  border-radius: 50%;
  border: 1px solid var(--color);
}

.tk .close img {
  width: 100%;
  padding: 0.2rem;
  box-sizing: border-box;
  transition: all 0.3s linear;
}

.tk .close img:hover {
  transform: rotate(90deg);
}

.tk_job .bb {
  max-height: 50vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  padding-right: 1rem;
  box-sizing: border-box;
  cursor: grab;
}

.scrolltts::-webkit-scrollbar {
  width: 3px;
}

.scrolltts::-webkit-scrollbar-track {
  background: transparent;

}

.scrolltts::-webkit-scrollbar-thumb {
  background: var(--color);
  border-radius: 10px;
  transition: .3s;
}

.scrolltts::-webkit-scrollbar-thumb:hover {
  background: var(--color3);
}

.tk_job h6 {
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: clamp(16px, 2vw, 16px);
}

.tk_job h6:not(:first-child) {
  margin-top: 2rem;
}

.tk .tk_job .bb p {
  margin: 0.5rem 0;
}

.tk .tk_job .bb2 {
  border-top: 2px solid var(--color);
  border-bottom: 2px solid var(--color);
  padding: 2rem 0;
  margin-top: 2rem;
}

.tk .tk_job .bb2 p {
  margin: -1rem 0;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color2);
  font-family: "DIN";
  font-weight: 400;
}

.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;
}

.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;
  width: 2rem;
  height: 2rem;
  padding: 0.2rem;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

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

.pages ul li:hover {
  color: var(--color);
  text-decoration: underline;
}
html[lang='en'] .footer .bar .top .ll{
    width: 30%;
}