@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: BaiJamjuree-Bold;
  src: url('../fonts/BaiJamjuree-Bold.woff2');
}

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

p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 1rem 0;
  text-align: justify;
}

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: 80%;
  margin: auto;
}

.w_all3 {
  width: 70vw;
  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: #016164;
  --color2: #252525;

}

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

header.active {
  background-color: #fff;
  padding: 0;
}

header .nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}

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

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

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

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


header nav {
  display: flex;
}

header ul {
  display: flex;
}

header ul li {
  margin: 0 4rem 0 0;
  position: relative;
}

header ul li:last-of-type {
  margin: 0;
}

header .nav li h2 {
  color: #fff;
  line-height: 64px;
  font-size: 1.45rem;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

header.on .nav li h2,
header.active .nav li h2 {
  color: var(--color2);
}

header .nav li:hover h2 {
  color: var(--color) !important;
}


header .others {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
  margin-left: 5rem;
}

header .lls {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  margin-left: 1.5rem;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

header.active .lls,
header.on .lls {
  color: var(--color2);
}

header .lls img {
  width: 2rem;
  filter: invert(1) brightness(1000);
  margin-right: 0.5rem;
}

header.active .lls img,
header.on .lls img {
  filter: grayscale(1000);
}

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

header .like:hover img {
  filter: none;
  opacity: 1;
}

header .like.on img {
  filter: none;
}

header .like .dot {
  position: absolute;
  right: -3px;
  top: -5px;
  background: var(--color);
  color: #fff;
  width: 1.4rem;
  border-radius: 50%;
  font-size: 1rem;
  text-align: center;
  line-height: 1.4rem;
  transform: scale(0.85);
  font-weight: 400;
  opacity: 0;
}

.dotbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 18rem;
  height: 3.8rem;
  background: var(--color);
  border-radius: 2rem;
  z-index: 9999999;
  animation: move 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes move {
  0% {
    opacity: 1;
    width: 18rem;
    height: 3.8rem;
    border-radius: 2rem;
    transform: scale(1);
    top: 0;
    left: 0;
  }

  15% {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    transform: scale(1);
    top: -3rem;
    left: 50%;
    opacity: 1;
  }

  100% {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    top: -60vh;
    left: 92%;
    transform: scale(0);
    opacity: 0;
  }
}


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

.search .ss {
  background: #fff;
  display: flex;
  align-items: center;
  height: 64px;
}

.search .s2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search .s2 a img {
  height: 4rem;

}

.search .ins {
  display: flex;
  align-items: center;
  width: 60%;
}

.search .ins img {
  height: 2.4rem;
  margin-right: 1.5rem;
  cursor: pointer;
}

.search input {
  width: 100%;
  background: #fff;
  border: none;
  margin-top: 3px;
  line-height: 2;
  font-size: 1.4rem;
  box-sizing: border-box;
}

.search button {
  position: absolute;
  right: 0;
  top: 0;
}

.navBtn {
  z-index: 99999;
  cursor: pointer;
  display: none;
  margin-left: 2rem;
}

.navBtn span {
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  margin: 5px auto;
}

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

.nav_btn_active span {
  background: #fff !important;
}

header.active .navBtn span {
  background: var(--color2) !important
}

header.on .navBtn span {
  background: var(--color2) !important
}

.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: -65%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

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

.s_menu p {
  font-size: 1.35rem;
  box-sizing: border-box;
  padding: 0.4rem 1rem;
  margin: 0;
  opacity: 0;
  text-align: center;
  transform-origin: 0;
  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);
  transform: translateY(-30%);
}

header ul li.on .s_menu p {
  opacity: 1;
  transform: translateY(0);
}

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

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.banner a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
}

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

.banner .txt h3 {
  font-size: 4.6rem;
  color: #fff;
  opacity: 0;
  transform: translate3d(0, -30px, 0);
  letter-spacing: 6px;
  font-weight: 500;
  will-change: opacity, transform;
}

.banner .txt p {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translate3d(0, -20px, 0);
  will-change: opacity, transform;
}

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

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

.banner .bottom {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  justify-content: space-between;
}

.banner .swiper-pagination {
  display: flex;
  position: static;
  box-sizing: border-box;
  align-items: center;
  margin-bottom: -1.5rem;
}

.banner .swiper-pagination span {
  background: none !important;
  width: 3rem !important;
  height: 3rem !important;
  margin: 0 0.3rem !important;
  opacity: 1 !important;
  color: #fff;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.banner .swiper-pagination span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 2.6rem;
  width: 1px;
  height: 0;
  background: var(--color);

}

.banner .swiper-pagination .swiper-pagination-bullet-active {
  color: var(--color);
  font-size: 2rem;
  transform: translateY(-6rem);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner .swiper-pagination .swiper-pagination-bullet-active::after {
  height: 4.6rem;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner .scroll {
  display: flex;
  align-items: center;
  z-index: 6;
  cursor: pointer;

  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.banner .scroll img {
  width: 2.6rem;
  filter: invert(1) brightness(1000);
  margin-left: 1rem;
  animation: scroll 2s infinite linear;
}

@keyframes scroll {
  0% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(-4px);
  }
}

.btn .bl {
  cursor: pointer;
  z-index: 9;
  transition: all 0.3s linear;
}

.btn .bl.swiper-button-disabled {
  opacity: 0.4;
}


.btn .bl img {
  width: 3rem;
  filter: invert(1) brightness(1000);
  transition: all 0.5s ease;
}

.btn .lll img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn .bl i {
  color: #fff;
  font-size: 2.4rem;
  display: block;
  font-weight: 600;
  position: relative;
}

.btn .lll i {
  transform: rotate(180deg);
  margin-bottom: 2rem;

}

.btn .lll i::after {
  content: '';
  position: absolute;
  left: 0.2rem;
  bottom: 3.5rem;
  width: 2rem;
  height: 1px;
  background: #fff;
}

.btn .bl:hover i {
  opacity: 1;
  color: var(--color);
}

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

.btns .bl {
  background: rgba(255, 255, 255, 0.2);
  margin-right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.btns .bl i {
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
}

.btns .bl.llr i {
  transform: rotate(180deg);
}

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

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

.title h3 {
  font-size: 5rem;
  line-height: 1.3;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  letter-spacing: 2px;
}

.title h3::after {
  content: '';
  width: 32px;
  height: 6px;
  background: var(--color);
  margin: auto;
  border-radius: 5rem;
}

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

.titleCenter {
  text-align: center;
}

.more {
  width: max-content;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  margin: 3rem 0 0;
  transition: all 0.5s ease;
  position: relative;
  font-size: 1.3rem;
  border-radius: 2rem;
  letter-spacing: 1px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #fff;
  background: var(--color);
  border: 1px solid transparent;
}

.more:hover {
  opacity: 0.8 !important;
  background: var(--color) !important;
  color: #fff !important;
}

.more img {
  width: 0.8rem;
  margin-top: -0.1rem;
  margin-left: 0.5rem;
  filter: invert(1) brightness(1000);
}

.more:hover img {
  filter: invert(1) brightness(1000) !important;
}

.more2 {
  width: max-content;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  margin: 3rem 0 0;
  transition: all 0.5s ease;
  position: relative;
  font-size: 1.4rem;
  display: flex;
  align-items: center;

}

.more2:hover {
  color: var(--color);
}

.more2 span {
  width: 2.1rem;
  margin-left: 1rem;
  display: flex;

}

.more2 span img {
  width: 100%;
}

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

.index_about {
  position: relative;
  overflow: hidden;
}

.index_about .bg img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
}

.index_about .title {
  margin: 0 auto;
}

.index_about .contain {
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-top: 0 !important;
}

.index_about .ll {
  width: 48%;
}

.index_about .ll .swiper-container {
  border-radius: 0 0 15rem 0;
  overflow: hidden;
}

.index_about .ll img {
  width: 100%;

}

.index_about .ll .swiper-pagination {
  text-align: center;
  position: static;
  margin-top: 1.5rem;
}

.index_about .ll .swiper-pagination span {
  margin: 0 0.4rem;
  background: var(--color);
}

.index_about .contain .rr {
  width: 42%;
}

.index_about h1 {
  font-size: 3.4rem;
  line-height: 1.3;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  letter-spacing: 2px;
}

.index_about h1::after {
  content: '';
  width: 18rem;
  height: 6px;
  background: var(--color);
  margin: 3rem 0;
  border-radius: 5rem;
}

.index_about .rr a {
  display: block;
}

.index_p {
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
}

.index_p .bar1 {
  position: relative;
}

.index_p .swiper-slide {
  width: 100%;
  height: calc(100vh - 64px);
}

.index_p .contain {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  justify-content: space-between;
  align-items: flex-end;
}

.index_p .contain .ll {
  width: 40%;
}

.index_p .swiper-pagination {
  display: block;
  position: static;
  text-align: left;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5rem;
  width: 4px;
}

.index_p .swiper-pagination span {
  display: block;
  position: relative;
  width: 100%;
  height: 66px;
  background: transparent;
  opacity: 1;
  border-radius: 5rem;
}

.index_p .swiper-pagination span i {
  position: absolute;
  width: max-content;
  font-style: normal;
  line-height: 66px;
  left: 2.5rem;
  color: #fff;
  font-size: 1.5rem;
}

.index_p .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}

.index_p .swiper-pagination span.swiper-pagination-bullet-active i {
  font-weight: 500;
  font-size: 1.8rem;
}

.index_p .btns {
  margin: 42vh 0 0;
}

.index_p .contain .rr {
  width: 43%;
  position: relative;
  height: 100%;
}

.index_p .tt {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem 5rem 4rem 4rem;
  box-sizing: border-box;
  border-radius: 1rem 1rem 10rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  opacity: 0;
}


.index_p .tt:first-of-type {
  opacity: 1;
  left: 0;
}

.index_p h6 {
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
}

.index_p h6::before {
  content: '';
  position: absolute;
  left: -7rem;
  top: 50%;
  width: 6rem;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 5rem;
  background: var(--color);
  display: none;
}

.index_p p {
  margin: 2rem 0 5rem;
  color: #666666;
  line-height: 1.8;
}

.pList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(0, 0, 0, .1);
  border-top: 1px solid rgba(0, 0, 0, .1);
  box-sizing: border-box;
  margin-top: 4rem;
}

.pList li {
  border-right: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 3rem;
  position: relative;
}

.pList li::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  background: #f8f8f8;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.pList li b {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.pList li b img {
  display: none;
  width: 100%;
  transition: all 0.5s ease;
}

.pList li b img:first-of-type {
  display: block;
}

.pList li h5 {
  text-align: center;
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.colors {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;

}

.colors span {
  margin: 0 0.5rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease;
}

.colors span:hover,
.colors span.active {
  transform: scale(1.25);
}

.pList li:hover h5 {
  color: var(--color);
}


.pList li:hover::before {
  opacity: 1;
  width: 108%;
  height: 108%;
}

.pList li:hover b img {
  transform: scale(1.1);
}

.index_partner {
  width: 100%;
  background: #fff;
  position: relative;
}

.index_partner .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: -1;
}

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

.index_partner ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 10rem;
}

.index_partner ul li {
  margin-top: -2rem;
}

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

.index_case {
  position: relative;
}

.index_case .swiper-slide {
  height: 70vh;

}

.index_case h6 {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  margin: 6% 0 0;
  transform: translateY(-30px);
  opacity: 0;
  color: #fff;
}

.index_case .swiper-slide-active h6 {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease 0.3s;
}

.index_case .more {
  margin: 3rem auto 0;
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0.5s ease 0.6s;

}

.index_case .swiper-slide-active .more {
  transform: translateY(0);
  opacity: 1;
}

.index_case .btns {
  margin: 0;
}

.index_case .btns .bl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  z-index: 5;
  margin: 0;
}

.index_case .btns .llr {
  left: inherit;
  right: 5%;
}

.footer {
  background: #1d1f1f;
  color: #fff;
  position: relative;
  z-index: 9;
}

.footer .top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7rem 0;
  margin-bottom: 6rem;
}

.footer .logo2 {
  height: 5rem;
}

.footer .logo2 img {
  height: 100%;
  filter: invert(1) brightness(1000);
}

.footer .top .tr {
  width: 46rem;
  border-radius: 5rem;
  overflow: hidden;
}
.footer .top .tr form{
    width: 100%;
    display: flex;
}
.footer .top .tr input {
  background: #fff;
  padding: 1.3rem 2rem;
  width: 100%;
  font-size: 1.4rem;
}

.footer .top .tr input::placeholder {
  color: #ccc;
}

.footer .top .tr button {
  padding: 0 2rem;
  width: 15rem !important;
  background: var(--color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  width: max-content;
  cursor: pointer;
}

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

.footer .bar .ll {
  margin-right: 5%;
  margin-top: -1.1rem;
}

.footer .bar .ll p {
  color: #fff;
  margin: 0 0;
  display: flex;
  align-items: center;
}

.footer .bar .ll p img {
  width: 2.8rem;
  margin-right: 1.3rem;
  filter: invert(1) brightness(1000);
}

.footer .bar .ll p a {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  font-family: BaiJamjuree-Bold;
}


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

.footer .links b {
  display: block;
  position: relative;
  overflow: hidden;
  margin-right: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  transition: all 0.5s ease;
  cursor: pointer;
}

.footer .links img:first-of-type {
  height: 3rem;
  transition: all 0.5s ease;
  filter: invert(1) brightness(1000);
}

.footer .links b:hover {
  background: var(--color);
  border-color: transparent;
}

.footer .links .rs {
  transition: all 0.5s ease;
  position: absolute;
  height: 8rem;
  border-radius: 0.5rem;
  padding: 0.1rem;
  background: #fff;
  box-sizing: border-box;
  margin-top: 0;
}

.footer .links b:hover {
  overflow: inherit;
}

.footer .links b:hover .rs {
  margin-top: 0.8rem;
}

.footer h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  position: relative;
  font-weight: 500;
  color: #fff;
}



.footer dl p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
  font-size: 1.3rem;
  transition: all 0.5s ease;
}

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

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

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

.footer .copy p {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer .copy p a {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

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

.footer .copy p a:hover {
  color: rgba(255, 255, 255, 1);
}



.all_back {
  position: fixed;
  right: 1%;
  bottom: 3rem;
  z-index: 99999999;
  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 {
  height: 50vh;
  position: relative;
  top: 0;
  width: 100%;
}

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

.bans .txt h3 {
  font-size: 4rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
}

.bans .txt h6 {
  font-size: 1.8rem;
  margin-top: 1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 10px;
  text-align: center;
  text-transform: uppercase;
  font-family: BaiJamjuree-Bold;
}

.title2 {
  margin-bottom: 4rem;
}

.title2 h3 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.title2 p {
  text-align: center;
  margin: 2rem auto 0;
  line-height: 1.8;
}

.title3 {
  margin-bottom: 4rem;
}

.title3 h3 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

.title3 p {
  text-align: center;
}

.topNav ul {
  background: #fff;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.topNav.fixed {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  animation: pnavTop 0.3s;
}

@keyframes pnavTop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

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

.topNav ul {
  display: flex;
  justify-content: center;
}

.topNav li {
  margin: 0;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 1.7rem 0;
  margin: 0 3.5rem;
  font-size: 1.42rem;
}

.topNav li.active,
.topNav li:hover {
  font-weight: 400;
  color: var(--color);
}

.topNav li.active {
  border-bottom: 2px solid var(--color);
}

.allNavs {
  color: rgba(255, 255, 255, 0.6);
  align-items: center;
}

.allNavs p {
  color: rgba(255, 255, 255, 1);
  margin: 0 1rem;
  font-weight: 400;
  font-size: 1.4rem;
}

.allNavs a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s ease;
  font-weight: 400;
  font-size: 1.4rem;
}

.allNavs a:first-of-type {
  margin-left: 0;
}

.allNavs a:hover {
  color: #fff;
}

.about {
  background: #f1f1f1;
}

.about .contain {
  justify-content: space-between;
  align-items: center;
}

.about .ll {
  width: 47%;
}

.about .tt p {
  margin: 2rem 0;
  color: #666;
  font-size: 1.5rem;
}

.about .rr {
  width: 44%;
}

.about .rr .swiper-container {
  border-radius: 0 0 15rem 0;
  overflow: hidden;
}

.about .rr img {
  width: 100%;

}

.about .rr .swiper-pagination {
  text-align: center;
  position: static;
  margin-top: 1.5rem;
}

.about .rr .swiper-pagination span {
  margin: 0 0.4rem;
  background: var(--color);
}

.about2 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(0, 0, 0, .1);
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.about2 ul li {
  border-right: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  text-align: center;
  padding: 8rem 16%;
  box-sizing: border-box;
  position: relative;
}

.about2 ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color);
  opacity: 0;
  transition: all 0.5s ease;
}

.about2 ul li img {
  margin: auto;
  height: 5rem;
}

.about2 ul li h6 {
  font-size: 2rem;
  font-weight: 500;
  margin: 6rem 0 3rem;
  transition: all 0.5s ease;
}

.about2 ul li p {
  text-align: center;
  transition: all 0.5s ease;
  font-size: 1.5rem;
  line-height: 1.8;
}

.about2 ul li:hover::before {
  opacity: 1;
}

.about2 ul li:hover h6 {
  color: var(--color);
}

.about2 ul li:hover p {
  opacity: 1;
  color: var(--color);
}

.history .swiper-container {
  margin: 10vh 0;
}

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

.history .swiper-slide b {
  width: 43%;
  height: 100%;
  display: block;
}

.history .swiper-slide b img {
  width: 100%;
}

.history .swiper-slide .txt {
  width: 45%;
  max-height: 100%;
}

.history .swiper-slide h5 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}


.history .swiper-slide .tt::-webkit-scrollbar {
  width: 2px !important;
}

.history .swiper-slide .tt::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .4);
}

.history .swiper-slide p {
  font-size: 1.5rem;
  margin: 0;
}

.history .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.history .bottom::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, .1);
}

.history .swiper-pagination {

  width: 86%;
  position: static;
  display: flex;
  justify-content: space-between;
}

.history .swiper-pagination-bullet {
  opacity: 1 !important;
  margin: 0 0 !important;
  position: relative;
  width: 7px !important;
  height: 7px !important;
  background: var(--color);
  border-radius: 50%;
}

.history .swiper-pagination-bullet i {
  font-weight: 400;
  font-style: normal;
  transition: all 0.5s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4rem;
  font-size: 1.6rem;
}

.history .swiper-pagination-bullet::after {
  content: '';
  width: 300%;
  height: 300%;
  background: var(--color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.8s;
  opacity: 0;
}

.history .swiper-pagination-bullet-active i {
  color: var(--color);
  font-weight: 500;
  transform: translateX(-50%) scale(1.6);
}

.history .swiper-pagination-bullet-active::after {
  opacity: 0.35;
}

.history .bottom .bl {
  width: 3rem;
  height: 3rem;
  padding: 0.3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #D5D5D5;
  position: relative;
  z-index: 2;
  transition: all 0.5s linear;
}

.history .bottom .bl i {
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.5s linear;
  color: #fff;
}

.history .bottom .llr i {
  display: block;
  transform: rotate(180deg);
}

.history .bottom .bl:hover {
  background: var(--color);
}

.honor .txt {
  text-align: left;

  display: flex;

  justify-content: space-between;

  align-items: center;
  margin: 8vh auto;
}

.honor .txt .tl {
  display: flex;

  align-items: center;
}

.honor .txt .tl h6 {
  font-size: 1.8rem;
  margin-right: 3rem;
  margin-top: 1rem;
  color: #999999;
  cursor: pointer;
  transition: all 0.5s ease;
}

.honor .txt .tl h6.active {
  color: var(--color);
  font-weight: 400;
}

.honor .txt .tl h6:hover {
  color: var(--color);
}

.honor .txt .tr {
  display: flex;

  align-items: center;
}

.honor .txt .tr p {
  display: flex;
  margin: 0;
  align-items: center;

  margin-left: 4rem;
}

.honor .txt .tr p strong {
  color: var(--color);
  font-family: BaiJamjuree-Bold;
  font-weight: 600;
  line-height: 1;
  font-size: 5rem;
  width: 7rem;
  text-align: right;
  margin-right: 1.5rem;
}

.honor .txt .tr p i {
  color: var(--color);

  font-style: initial;
  text-align: left;
  display: block;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 400;
}

.honor .txt .tr p span {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: -0.7rem;
}

.honor .contain {
  overflow: hidden;
  display: none;
}

.honor .swiper {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.honor .swiper-wrapper {
  display: flex;
}

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

.honor .bottom {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  margin-top: 5rem;

  box-sizing: border-box;
}

.honor .bottom .swiper-scrollbar {
  width: 100%;

  height: 2px;

  background: #ddd;

  opacity: 1 !important;
}

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

.honor .bl {
  width: 3rem;
  height: 3rem;
  padding: 0.3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #D5D5D5;
  position: absolute;
  left: 0;
  top: 44%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.5s linear;
}

.honor .bl i {
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.5s linear;
  color: #fff;
}

.honor .llr {
  left: inherit;
  right: 0
}

.honor .llr i {
  display: block;
  transform: rotate(180deg);
}

.history .bottom .bl:hover {
  background: var(--color);
}

.grobal {
  background-color: #f7f7f7;
  overflow: hidden;
}

.grobal .contain {
  position: relative;
}

.grobal .contain>img {
  width: 100%;
}

.grobal dl dd {
  position: absolute;
  cursor: pointer;
}


.grobal dl dd::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color);
  transform-origin: center;
  animation: bigs 3.5s linear infinite;
}

.grobal dl dd span {
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: var(--color);
}

.grobal dl dd span::before,
.grobal dl dd span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color);
  transform-origin: center;
}

.grobal dl dd span::before {
  animation: bigs 5s linear infinite;
}

.grobal dl dd span::after {
  animation: bigs 5s 1.75s linear infinite;
}

@keyframes bigs {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(10);
    opacity: 0;
  }
}

.grobal dl dd p {
  position: absolute;
  top: 55%;
  left: calc(100% + 1.6rem);
  transform: translateY(-50%);
  color: var(--color);
  width: max-content;
  margin: 0;
  font-weight: 400;
  font-size: 1.3rem;
}

.grobal dl dd .tt {
  position: absolute;
  top: -6.5rem;
  left: calc(100% + 2.3rem);
  transform: translateY(-50%);
  width: max-content;
  margin: 0;
  padding: 1rem;
  background: #fff;
  pointer-events: none;
  opacity: 0;
  margin: 10px;
}

.grobal dl dd.active .tt {
  opacity: 1;
  top: -6.5rem;
  pointer-events: auto;
  transition: all 0.5s ease;
  margin: 0;
}

.grobal dl dd .tt img {
  position: absolute;
  left: -26px;
  top: 50%;
  width: 26px;
}

.grobal dl dd .tt b {
  display: block;
  font-size: 1.2rem;
  margin: 0.6rem 0;
  line-height: 1.4;
}

.grobal dl .dd1 {
  top: 33%;
  left: 70%;
}
.grobal dl .dd1 span{
    width: 1rem;
    height: 1rem;
}

.grobal dl .dd2 {
  top: 59%;
  left: 71.5%;
}
.grobal dl .dd3 {
  top: 26%;
  left: 19%;
}
.grobal dl .dd4 {
  top: 36%;
  left: 18%;
}
.grobal dl .dd5 {
  top: 46%;
  left: 19.5%;
}
.grobal dl .dd6 {
    top: 29%;
    left: 45.6%;
}
.grobal dl .dd7 {
  top: 77%;
  left: 79%;
}.grobal dl .dd8 {
  top: 26%;
  left: 47%;
}.grobal dl .dd9 {
  top: 89%;
  left: 89%;
}.grobal dl .dd10 {
  top: 54%;
  left: 57.5%;
}

.grobal dl .dd11 {
  top: 36%;
  left: 78%;
} 
.grobal dl .dd12 {
  top: 39%;
  left: 79%;
}
.grobal dl .dd13 {
  top: 62.5%;
  left: 71.8%;
}

.grobal dl .dd14 {
  top: 44%;
  left: 74.5%;
}.grobal dl .dd15 {
  top: 38%;
  left: 55%;
}
.grobal dl .dd16 {
  top: 52%;
  left: 72%;
}
.grobal dl .dd17 {
  top: 23%;
  left: 44.5%;
}

.grobal dl .dd18 {
  top: 20%;
  left: 47.5%;
}
.grobal dl .dd19 {
  top: 34%;
  left: 44.5%;
}
.grobal dl .dd20 {
  top: 25%;
  left: 43%;
}
.grobal dl .dd21 {
  top: 29%;
  left: 51%;
}
.grobal dl .dd11 p,.grobal dl .dd17 p{
    margin-top: -1.6rem;
    left: -1.3rem;
}
.grobal dl .dd13 p,.grobal dl .dd19 p,.grobal dl .dd20 p{
    margin-top: 1.6rem;
    left: -1.8rem;
}
.advantage ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: -1px;
}

.advantage ul li {
  width: 105%;
  position: relative;
  overflow: hidden;
  margin-left: -1px;
}

.advantage ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 2;
  background: #032627;
}

.advantage ul li b {
  display: block;
  width: 100%;
  overflow: hidden; 
}

.advantage ul li b img {
  width: 100%;
  transition: all 0.5s ease;
}

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

.advantage ul li .tt {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 3;
}

.advantage ul li .tt img {
  margin: auto;
  filter: invert(1) brightness(1000);
  height: 5rem;
}

.advantage ul li .tt h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin: 3rem 0 0.5rem;
}

.advantage ul li .tt p {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  opacity: 0.8;
  margin: 0;
}

.news .bar1 {
  justify-content: space-between;
}

.news .bar1 .ll {
  width: 28%;
}

.news .bar1 .ll h6 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}

.news .bar1 .ll .ser2 {
  display: flex;
  margin: 5rem 0;
  width: 100%;
  justify-content: space-between;
}

.news .bar1 .ll .ser2 input {
  background: #eeeeed;
  padding: 1rem;
  font-size: 1.4rem;
  width: 66%;
  line-height: 20px;
  cursor: pointer;
}

.news .bar1 .ll .ser2 input::placeholder {
  color: #999;
}

.news .follws {
  margin-top: 3rem;
  margin-left: -0.7rem;
}

.follws {
  width: max-content;
}

.follws .bs {
  position: relative;
  margin-top: 0.3rem;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;

}

.follws .bs span {
  overflow: hidden;
  display: block;
  position: relative;
}

.follws .bs p {
  margin: 0 0 0 0.5rem;
  font-size: 1.3rem;
}

.follws .bs img:first-of-type {
  height: 3.2rem;
  transition: all 0.5s ease;
}

.follws .bs:hover p {
  color: var(--color);
  text-decoration: underline;
}

.follws .bs .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: 0;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, .05);
}

.follws .bs:hover span {
  overflow: inherit;
}

.follws .bs:hover .rs {
  margin-top: 0.5rem;
  opacity: 1;
}

.news .bar1 .ll .ser2 button {
  background: var(--color);
  color: #fff;
  font-size: 1.4rem;
  padding: 0 !important;
  width: 24%;
  cursor: pointer;
}

.news .bar1 .rr {
  width: 66%;
}

.news .box ul li {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.news .box ul li b {
  display: block;
  width: 50%;
  overflow: hidden;
}

.news .box ul li b img {
  width: 100%;
  transition: transform 0.5s ease;
}

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

.news .box ul li .tt {
  width: 44%;
}

.news .box ul li h5 {
  font-size: 1.3rem;
  font-family: BaiJamjuree-Bold;
  opacity: 0.3;
}

.news .box ul li h6 {
  font-size: 1.8rem;
  transition: all 0.5s ease;
  line-height: 1.5;
  font-weight: 400;
  margin: 1.5rem 0 3rem;
}

.news .box ul li p {
  color: #999;
  font-size: 1.4rem;
  line-height: 1.8;
  width: 61%;
  height: 50px;
  overflow: hidden;
}

.news .box ul li .bot {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 2.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news .box ul li h4 {
  font-size: 1.3rem;
}

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

.bans2 {
  height: 5rem !important;
  position: static;
}

.bans_pd {
  height: 8.4rem !important;
  position: static;
}

.newsd .ars {
  position: relative;
}

.bar0 {
  padding: 0 5%;
  box-sizing: border-box;
  position: relative;
}

.back {
  font-size: 1.4rem;
  align-items: center;
  transition: all 0.5s ease;
  color: #999;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
}

.back span {
  display: block;
  margin-right: 1rem;
  width: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 1.2rem;
  transition: all 0.5s ease;
}

.back span img {
  width: 100%;
}

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

.newsd .back:hover span {
  background: var(--color);
  transform: rotate(135deg);
  border-color: transparent;
}

.newsd .back:hover span img {
  filter: invert(1) brightness(1000);
}

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

.newsd .bar0 h3 {
  margin: 0 0 1rem;
  font-size: 2.8rem;
}

.newsd .bar0 h6 {
  font-size: 1.3rem;
  font-family: BaiJamjuree-Bold;
  color: var(--color);
  text-align: center;
}

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

.newsd .tt p {
  margin: 3rem 0;
}

.newsd .tt p img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.newsd .bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2rem;
}

.newsd .bottom p {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  display: block;
  width: 100%;
  margin: 1.5rem 0;
  line-height: 1.4;
}

.newsd .bottom p a {
  font-size: 1.4rem;
  transition: all 0.5s linear;
}

.newsd .bottom p:hover a {
  color: var(--color);
}

.newsd .bottom p i {
  font-size: 1.4rem;
  color: #666666;
  margin: 0.1rem 0.5rem 0;
}

.newsd .bottom p:first-of-type i {
  transform: rotate(180deg);
  margin-top: 0;
}

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

.support ul li {
  background: #f8f8f8;
  text-align: center;
  padding: 5vh;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 400;
}

.support ul li img {
  margin: 0 auto 2.5vh;
  height: 5rem;
  filter: grayscale(1);
}

.support ul li:hover {
  color: var(--color);
  transition: all 0.5s ease;
}

.support ul li:hover img {
  filter: none;
}

.download {
  background: #f7f7f7;
}

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

.download ul li {
  background: #fff;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

.download ul li img {
  width: 2rem;
  margin-right: 1rem;
}

.download ul li:hover {
  background: var(--color);
  color: #fff;
  transform: translateY(-5px);
}

.download ul li:hover img {
  filter: invert(1) brightness(100);
}

.sers2 {
  display: flex;
  justify-content: center;
  margin: -1.5rem 0 4.5rem;
}

.sers2 .ss {
  width: 12rem;
  margin: 0 1rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  transition: all 0.5s ease;
  cursor: pointer;
  border-radius: 0.3rem;
}

.sers2 select {
  font-size: 1.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  cursor: pointer;
}

.sers2 option {
  font-size: 1.4rem;
  padding: 1rem;
}

/*.sers2 .ss:hover {*/
/*  background: var(--color);*/
/*  color: #fff;*/
/*}*/

.case {
  background: #f7f7f7;
}

.case .title2 {
  margin: 0;
  position: relative;
}

.sers {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 22rem;
  display: flex;
  justify-content: space-between;
  border: 1px solid #eeeeed;
  cursor: pointer;
}

.sers select {
  font-size: 1.4rem;
  padding: 1rem;
  width: 100%;
}

.sers option {
  font-size: 1.4rem;
  padding: 1rem;
}

.case ul li {
  justify-content: space-between;
  background: #fff;
  margin: 7rem auto 5rem;
}

.case ul a:nth-of-type(2n) li {
  flex-direction: row-reverse;
}

.case ul li b {
  display: block;
  width: 68%;
}

.case ul li b img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
}

.case ul li .tt {
  width: 32%;
  padding: 10% 4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case ul li h6 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 3rem;
  transition: all 0.5s ease;
}

.case ul li p {
  font-size: 1.4rem;
}

.case ul li:hover h6 {
  color: var(--color);
}

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

.cased .video {
  height: 60vh;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

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

.cased .video .v_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5rem;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.cased .video .v_btn img {
  width: 100%;
}

.cased .bar2 {
  margin-top: 1%;
}

.cased .bar2 ul {
  display: flex;
}

.cased .bar2 ul li {
  margin: 1% 0;
  margin-right: 2%;
  overflow: hidden;
  border-radius: 1rem;
}

.cased .bar2 ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.cased .bar2 ul li:last-of-type {
  margin-right: 0;
}

.cased .bar2 ul li.ls3 {
  width: 22%;
}

.cased .bar2 ul li.ls6 {
  width: 48%;
}

.cased .bar2 ul li:hover img {
  transform: scale(1.06);
}

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

.product ul a {
  display: inline-block;
}

.product ul li {
  position: relative;
}

.product ul li b {
  display: block;
  width: 100%;
  overflow: hidden;
}

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

.product ul li:hover b img {
  transform: scale(1.06);
}

.product ul li .tt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  padding: 3rem 0;
  box-sizing: border-box;
}

.product ul li .tt h6 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.product ul li .more4 {
  position: absolute;
  right: 3rem;
  top: 2rem;
}

.product ul li:hover .more4 {
  background: var(--color);
  width: 8rem;
  border-radius: 3rem;
  transition: all 0.5s ease;
}

.product ul li:hover .more4 span {
  opacity: 1;
  padding-right: 2rem;
  transition: all 0.5s ease;
}

.product ul li:hover .more4 img {
  filter: invert(1) brightness(1000);
  transform: translateX(1.5rem);
}

.more4 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  background: #fff;
  border-radius: 5rem;

}

.more4 span {
  opacity: 0;
  position: absolute;
  color: #fff;
  font-size: 1.2rem;
}

.more4 img {
  width: 1.5rem;
}

.p_bans {
  height: auto !important;
  margin-top: 84px;
  background: #fafafa;
  position: sticky;
  top: 64px;
  z-index: 9;
  transition: all 0.5s ease;
}

.p_bans .swiper-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p_bans p {
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1.3rem;
  color: #666666;
  transition: all 0.5s ease;
}

.p_bans p img {
  width: 4rem;
  margin: auto;
  margin-bottom: 1rem;
}

.p_bans p:hover,
.p_bans p.active {
  color: var(--color);
}

.p_bans .swiper-button-next:after,
.p_bans .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: 500;
  color: #999;
}

.p_bans .swiper-button-next:hover:after,
.p_bans .swiper-button-prev:hover:after {
  color: var(--color)
}

.p_bans .swiper-button-prev {
  right: inherit;
  left: -5px !important;
  z-index: 9;
}

.p_bans .swiper-button-next {
  right: -5px !important;
  z-index: 9;
}

.p_bans .swiper-button-disabled {
  opacity: 0 !important;
}

.prolist {
  background: #f3f3f3;
}

.pbar_imgs {
  position: relative;
}

.pbar_imgs:nth-of-type(2) {
  margin-top: 3rem;
}

.pbar_imgs>img {
  width: 100%;
}

.pbar_imgs .tt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pbar_imgs .tt h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}

.pbar_imgs .tt p {
  color: #fff;
}

.pbar_imgs .more {
  background: #fff;
  color: var(--color);
}

.pbar_imgs .img .more img {
  filter: none;
}

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

.prolist .pbar1 {
  padding-top: 8rem;
}

.prolist .pbar1 .more img {
  filter: none;
}

.prolist .pList {
  border: none;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 2rem;
  gap: 2rem 1.5rem;
}

.prolist .pList li {
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background: #fff;
}

.prolist .pList li::before {
  display: none;
}

.prolist .pList li .t0 {
  background: #f9f9f9;
  padding: 0;
  box-sizing: border-box;
}

.prolist .pList li .t0 .colors {
  margin: 2rem auto;
}

.prolist .pList li .t1 {
  padding: 2rem;
  box-sizing: border-box;
  background: #fff;
}

.prolist .pList li .t1 h5 {
  text-align: left;
  margin: 0;
  color: #999;
  font-size: 1.5rem;
}

.prolist .pList li .t1 h4 {
  text-align: left;
  margin: 0.8rem 0 0;
  font-size: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; 
  font-weight: 400;
  transition: all 0.5s ease;
}

.prolist .pList li:hover .t1 h4 {
  color: var(--color);
}

.prolist .pList li.limore .t0 {
  height: 77%;
  overflow: hidden;
}

.prolist .pList li.limore .more2 {
  margin: auto;
  width: 100%;
  justify-content: center;
  font-weight: 400;
  height: 23%;
}

.prolist .pList li.limore .more2 img {
  margin-left: 1rem;
  width: 2.2rem;
}

.pro {
  padding: 8rem 0;
}

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

.pro_l .left {
  width: 23rem;
  position: sticky;
  top: 100px;
  z-index: 99;
}

.pro_l .left h6 {
  font-size: 2rem;
}

.pro_l .left dl {
  margin: 0% 0;
  padding: 0 0 3rem 0;
}

.pro_l .left dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 1rem;
}

.pro_l .left dt strong {
  font-size: 1.7rem;
  font-weight: 500;
}

.pro_l .left dt i {
  display: block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 1.4rem;
  display: none;
  transition: all .2s ease-in-out;
}

.pro_l .left dl.active dt i {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pro_l .left dl .dds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem 0;
}

.pro_l .left dl.dl1 .dds {
  grid-template-columns: repeat(1, 1fr) !important;
}

.pro_l .left dd {
  margin-top: 6px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.3rem;

}


.pro_l .left dd input[type="checkbox"] {
  accent-color: var(--color);
}

.pro_l .left dd p {
  margin: 0 0 0 5px;
  font-size: 1.3rem;
  display: flex;
  line-height: 1.1;
  width: 100%;
  justify-content: space-between;
}

.pro_l .left dd p span {
  font-size: 1.3rem;
  color: #1a1a1a;
}

.filtered {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  display: none;
}

.filtered .pls {
  padding: 7px 14px 8px 13px;
  background: #F3F3F3;
  margin-right: 10px;
  border-radius: 4px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.filtered .pls img {
  height: 15px;
  margin-right: 6px;
  cursor: pointer;
}

.filtered .pls p {
  font-size: 1.4rem;
  color: #000;
}

.reset {
  width: 100%;
  justify-content: center;
}

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


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

.pro_l .box ul li {
  text-align: center;
}

.pro_l .box ul li .imgs {
  display: block;
  background: #f1f1f1;
  padding: 18% 10%;
  box-sizing: border-box;
  position: relative;
}

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

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

.pro_l ul li .add {
  background: #fff;
  font-size: 1.3rem;
  width: max-content;
  padding: 0.8rem 2.8rem;
  margin: auto;
  border-radius: 5rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease;
  cursor: pointer;
}

.pro_l ul li .add:hover{
  background: var(--color);
  color: #fff !important;
}

.pro_l ul li:hover .add {
  opacity: 1;
  bottom: 1.2rem;
}
.pro_l ul li .add.favorited {
  opacity: 1;
  bottom: 1.2rem;
  background: var(--color);
  color: #fff !important;
}

.pro_l .box ul li h3 {
  margin: 2rem 0 0;
  font-size: 1.6rem;
  font-weight: 400;
}

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

.pro_l .box ul li p {
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
}

.topNav2 {
  background: #fafafa;
}

.topNav2 ul {
  background: none;
  border: none;
  justify-content: flex-end;
}

.topNav2 ul li {
  margin: 0 0 0 2.6rem;
  font-size: 1.2rem;
  border: none !important;
  color: #999999
}

.pro_d .bar1 {
  position: relative;
  z-index: 3;
  background: #fafafa;
  padding: 3rem 0 6rem;
}

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

.pro_d .bar1 .left {
  width: 60%;
  height: auto;
  position: relative;
  display: flex;
}

.pro_d .bar1 .gallery-thumbs {
  width: 9rem;
  padding: 2rem 0;
  box-sizing: border-box;
  position: relative;
}

.pro_d .bar1 .gallery-thumbs .swiper-slide {
  width: 100%;
  box-sizing: border-box;
  height: auto !important;
}

.pro_d .bar1 .gallery-thumbs .swiper-slide img {
  width: 100%;
  height: auto !important;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
  background: #fff;
}

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

.pro_d .bar1 .gallery-top {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  width: calc(100% - 15rem);
  background: #fff;
}

.pro_d .bar1 .left img {
  width: 100%;
  border-radius: 1rem;
}

.pro_d .bar1 .swiper-button-next,
.pro_d .bar1 .swiper-button-prev {
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 50%;
  padding: 0.2rem;
  top: inherit;
  right: inherit;
  left: 50%;
  margin-left: -15px;
}

.pro_d .bar1 .swiper-button-next::after,
.pro_d .bar1 .swiper-button-prev::after {
  font-weight: 800;
  font-size: 1.3rem;
  color: #999;
}

.pro_d .bar1 .swiper-button-next:hover:after,
.pro_d .bar1 .swiper-button-prev:hover:after {
  color: var(--color);
}

.pro_d .bar1 .swiper-button-next {
  bottom: 0;
  transform: rotate(90deg);
}

.pro_d .bar1 .swiper-button-prev {
  top: 1rem;
  transform: rotate(90deg);
}

.pro_d .bar1 .right {
  width: 36%;
  padding: 5% 0%;
  box-sizing: border-box;
}

.pro_d .bar1 .right .title2 {
  margin-bottom: 1.5rem;
}

.pro_d .bar1 .right p {
  font-size: 1.4rem;
}

.pro_d .bar1 .right p strong {
  font-weight: 400;
  font-size: 1.6rem;
}

.pro_d .bar1 .right .colors {
  justify-content: flex-start;
  align-items: center;
}

.pro_d .bar1 .right .colors p {
  margin: 0;
}

.pro_d .bar1 .right .tt2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 6vh;
}

.pro_d .bar1 .right .tt2 .tw {
  width: 100%;
  margin: 0.7rem 0;
}

.pro_d .bar1 .right .tt2 .tw2 {
  width: 49%;
}

.pro_d .bar1 .right .tt2 button {
  width: 100%;
  background: none;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5rem;
  padding: 1rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
  cursor: pointer;
}

.pro_d .bar1 .right .tt2 button:hover {
  background: var(--color);
  color: #fff;
}

.pro_d .bar1 .right .tt2 .tw.active button {
  background: var(--color);
  color: #fff;
}

.pro_d .bar2 {
  background: #fff;
}

.pro_d .bar2 img {
  width: 100%;
}

.pro_d .bar3 {
  background: #f7f7f7;
}

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

.pro_d .bar3 .tr {
  display: flex;
  align-items: center;
}

.pro_d .bar3 .more {
  letter-spacing: 0;
  margin: 0 0 0 1rem;
  padding: 0.8rem 2.5rem;
}

.pro_d .bar3 .more img {
  margin: 0 1rem 0 0;
  width: 2rem;
}

.pro_d .bar3 table {
  width: 100%;
}

.pro_d .bar3 tbody {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pro_d .bar3 table tr {
  width: 50%;
  display: flex;
}

.pro_d .bar3 table td {
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 1.5rem 0;
  width: 45%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  color: #666;
}

.pro_d .bar3 table td:nth-of-type(1) {
  color: var(--color2);
  font-weight: 400;
}

.pro_d .bar3 table td img {
  width: 2.4rem;
  margin-right: 1.5rem;
}

.pro_d .bar4 {
  user-select: none;
}

.pro_d .bar4 table {
  width: 100%;
}

.pro_d .bar4 .dbox {
  margin-top: 5%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.pro_d .bar4 .bbs {
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 17%;
  margin-bottom: 1rem;
}

.pro_d .bar4 .bbs .bb {
  font-size: 1.6rem;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.pro_d .bar4 .bbs .bb:last-of-type {
  border: none;
  line-height: 60px;
}

.pro_d .bar4 .bbs .bb:nth-of-type(2n+1) {
  background: #f6f7f8;
}

.pro_d .bar4 .tables {
  width: 83%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  cursor: grab;
  touch-action: pan-x;
}

.pro_d .bar4 ::-webkit-scrollbar {
  height: 4px;
}

.pro_d .bar4 ::-webkit-scrollbar-track {
  background: transparent;
}

.pro_d .bar4 ::-webkit-scrollbar-thumb {
  background-color: var(--color);
  border-radius: 30px;
}


.pro_d .bar4 table {
  border-collapse: collapse;
} 
.pro_d .bar4 table tr td {
  font-size: 1.5rem;
  padding: 0;
  height: 76px;
  line-height: 1.6;
  text-align: center;
}

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

.pro_d .bar4 table tr:first-of-type td {
  font-size: 1.7rem;
  font-weight: 500;
}

.pro_d .bar4 table tr td img {
  height: 80%;
  margin: auto;
}
.pro_d .bar4 .tables.on table{
    width: max-content;
}
.pro_d .bar4 .tables.on table tr {
  display: flex;
}

.pro_d .bar4 .tables.on table  tr td{
    display: flex; 
    align-items: center;
    width: 18rem;
    justify-content: center;
}
.pro_d .bar5 {
  position: relative;
  height: 100vh;
}

.pro_d .bar5 .swiper-slide {
  position: relative;
}

.pro_d .bar5 .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color2);
  opacity: 0.2;
  z-index: 1;
}

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

.pro_d .bar5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro_d .bar5 .title2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.pro_d .bar5 .title2 h3 {
  color: #fff;
  opacity: 0;
  transform: translate3d(0, -30px, 0);
  will-change: opacity, transform;
}

.pro_d .bar5 .title2 p {
  color: #fff;
  margin: 0.8rem 0 0;
  opacity: 0;
  transform: translate3d(0, -20px, 0);
  will-change: opacity, transform;
}



.pro_d .bar5 .vbtn {
  color: #fff;
  display: flex;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin: 2.5rem auto 0;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  transition: all 0.5s ease;
  border-radius: 5rem;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  will-change: opacity, transform;
}

.pro_d .bar5 .vbtn span {
  margin-left: 1rem;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
}

.pro_d .bar5 .vbtn:hover {
  background: var(--color);
  border-color: transparent;
}

.pro_d .bar5 .swiper-button-next:after,
.pro_d .bar5 .swiper-button-prev:after {
  font-size: 2rem
}

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

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

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

.liked .contain {
  position: relative;
}

.liked .pList {
  border: none;
  width: 90%;
  margin: auto;
}

.liked .pList li {
  border: none;
  padding: 0;
}

.liked .pList li::before {
  display: none;
}


.liked .pList li img {
  width: 100%;
}

.liked .pList li .colors {
  margin: 2rem 0;
}

.liked .pList li h5 {
  font-weight: 500;
  margin: 2rem 0;
}

.liked .checks {
  display: flex;
  justify-content: center;
}

.liked .checks input {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.liked .checks input[type="checkbox"] {
  accent-color: var(--color);
}

.liked h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  margin: 2rem 0;
}

.liked h6 i {
  margin-left: 0.5rem;
  color: var(--color);
  font-size: 1.2rem;
  margin-top: -1px;
}

.liked .ts2 {
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, .1);

}

.liked .ts2 h4 {
  text-align: center;
  font-weight: 400;
  font-size: 1.8rem;
  margin: 2rem 0;
}

.liked .ts2 p {
  font-size: 1.4rem;
  text-align: center;
}

.liked .swiper-button-next:after,
.liked .swiper-button-prev:after {
  font-size: 2rem !important;
  cursor: pointer;
}

.liked .swiper-button-next:hover:after,
.liked .swiper-button-prev:hover:after {
  color: var(--color);
}

.liked .swiper-button-black {
  opacity: 1 !important;
  z-index: 9;
  top: 51%;
}

.liked .swiper-button-prev {
  left: 0 !important;
}

.liked .swiper-button-next {
  right: 0 !important;
}

.liked .swiper-button-disabled {
  opacity: 0.3 !important;
}

.liked .bottom {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.liked .bottom .more {
  margin: 0 1rem;
  width: 13rem;
  min-width: max-content;
  justify-content: center;
  border: 1px solid transparent;
}

.liked .bottom .more:first-of-type {
  background: none;
  border-color: var(--color);
  color: var(--color);
}

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

.tk .tbox {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 50%;
  background: #fff;
  padding: 4rem 5%;
  box-sizing: border-box;
  opacity: 0;
}

.tk .close img {
  width: 2.5rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
}

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

.tk .title2 h3 {
  font-size: 2.4rem;
}

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

.tk p {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.tk .p1 {
  width: 48%;
}

.tk .inputs {
  width: 100%;
  padding: 2rem 0;
}

.tk textarea {
  min-height: 10vh;
}

.tk .more {
  margin: 3rem auto 0;
}

.tk .more button {
  background: none;
  color: #fff;
  padding: 0 1rem;
}

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

.contact ul li {
  border: 1px solid #f1f1f1;
  padding: 3rem 2rem;
  box-sizing: border-box;

}

.contact ul li h6 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact ul li p {
  display: flex;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.contact ul li p a {
  font-size: 1.4rem;
}

.contact ul li p img {
  margin: -0.1rem 0.6rem 0 0;
  height: 2.3rem;
}

.contact ul li:hover h6 {
  color: var(--color);
  transition: all 0.5s ease;
}

.contact ul li span {
  border: 1px solid #dddddd;
  display: block;
  margin-right: 1rem;
  padding: 0.5rem;
  position: relative;

}

.contact ul li span .img1 {
  margin: auto;
  height: 1.5rem;
  width: 1.5rem;
}

.contact ul li span .img2 {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;

}

.contact ul li span:hover {
  width: 100px;
  background: var(--color);
  border-color: var(--color);
  transition: all 0.5s ease;
}

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

.contact ul li span:hover .img2 {
  height: 112px;
  width: 112px;
  transition: all 0.5s ease;
}

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

.message .online p {
  display: flex;
  width: 48.5%;
  margin: 0 0 2rem;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 5rem;
  padding: 0.8rem 2rem;
  box-sizing: border-box;
}

.message .online p span {
  position: relative;
  color: #999;
  font-size: 1.4rem;
  flex: 0 0 7rem;
}

.message .online span i {
  position: absolute;
  color: var(--color);
}

.message .online .inputs {
  font-size: 1.4rem;
  background: none;
  display: block;
  line-height: 1.4;
  width: 100%;
  box-shadow: none;
}

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

.message .online .pp1 {
  width: 100%;
  display: block;
  border-radius: 2rem;
}

.message .online textarea {
  min-height: 15rem;
  width: 100% !important;
  padding: 1rem 0;
}

.message .tt {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  margin: 1rem 0 2rem;
}

.message .tt a {
  color: var(--color);
}

.agree {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.agree input {
  display: none;
}

.agree i {
  width: 14px;
  height: 14px;
  margin-top: -1px;
  border: 1px solid #999;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  transition: all 0.2s;
}

.agree input:checked+i {
  background: var(--color);
  border-color: var(--color);
}

.agree input:checked+i::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 2px;
  width: 4px;
  height: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.message .submit {
  margin: 4rem auto 0;
  position: relative;
  background: var(--color);
  width: 40%;
  cursor: pointer;
  line-height: 1.4;
  display: flex;
  justify-content: center;
}

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

.message .submit:hover {
  width: 43%;
}

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

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

.store ul li {
  background: #fff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 1rem;
  box-shadow: 0px 0px 16px 0px rgba(175, 183, 192, 0.16);
}

.store ul li::before {
  content: '';
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  opacity: 0.9;
  transition: all 0.5s ease;
}

.store ul li:hover::before {
  opacity: 0;
}

.store ul li b {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
  background: var(--color2);
}

.store ul li b img {
  width: 100%;
  opacity: 0.7;
  transition: all 0.8s ease;
}

.store ul li .txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 3rem;
  box-sizing: border-box;
  z-index: 4;
  height: 100%;
}

.store ul li h6 {
  font-size: 1.8rem;
  transition: all 0.5s ease;
  line-height: 1.6;
  font-weight: 400;
}

.store ul li p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.store ul li:hover h6,
.store ul li:hover p {
  color: #fff;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.store ul li:hover b img {
  transform: scale(1.06);
}

.store .more {
  margin: 4rem auto 0;
}

.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: 85%;
  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);
}

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

.big_box .big_imgss img {
  display: block;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.big_box .big_imgss video {
  display: block;
  object-fit: cover;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

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

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

.pages ul {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  justify-content: center;
}

.pages ul li {
  font-size: 1.3rem;
  margin: 0 0.3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
  transition: all 0.5s ease;
  cursor: pointer;
  background: #f1f1f1;
}
.pages ul li a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
      justify-content: center;
      align-items: center;
}
.pages ul li.active {
  background: var(--color);
  font-weight: 400;
  color: #fff !important;
}

.pages ul li:hover {
  color: var(--color);
  text-decoration: underline;
}
.pages ul li.active span{
    color: #fff;
}
/* 显示尺寸+承重。美化滑块 */
.lines {
  margin: 3rem 0 2rem;
}

.ui-slider-horizontal {
  border: none !important;
  height: 4px !important;
  border-radius: 4px !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
}

.ui-slider-handle {
  width: 14px !important;
  height: 14px !important;
  top: -5px !important;
  border-radius: 50% !important;
  background: var(--color) !important;
  border: none !important;
  cursor: pointer
}

.ui-slider-range {
  background: var(--color) !important;
}
/*是否收藏成功弹框*/
.message-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    transition: all .3s ease;
    z-index: 10000;
    overflow: hidden; 
    display: none;
}

.message-box.show {
    display: block;
}
.mesbox{
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
/* header */
.message-header {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-title {
    font-weight: 600;
}

.message-close {
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: 500;
    color: #999;
}

.message-close:hover {
    color: #333;
}

/* body */
.message-body {
    display: flex;
    align-items: center;
    padding: 14px;
}

.message-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    flex-shrink: 0;
}

.message-content {
    line-height: 1.6;
} 
.message-box.success .message-icon::before {
    content: "✔";
    color: #52c41a;
    font-size: 26px;
}

.message-box.error .message-icon::before {
    content: "✖";
    color: #f56c6c;
    font-size: 26px;
}

.message-box.warning .message-icon::before {
    content: "⚠";
    color: #faad14;
    font-size: 26px;
}

.message-box.info .message-icon::before {
    content: "ℹ";
    color: #1890ff;
    font-size: 26px;
}
html[lang='en'] *{
    letter-spacing: 0 !important;
}
html[lang='en'] .pro_l .left dl .dds{
    grid-template-columns: repeat(2, 1fr);
}