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

html,
body {
  font-size: 62.5%;
  width: 100%;
  position: relative;
  --color: #ed7022;
  --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: 2rem 0;
}

header.active {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 0;
}

header.on {
  background: transparent;
}

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.header2 .logo img {
  filter: none;
}

header.on .logo img,
header.active .logo img {
  filter: invert(1) brightness(1000);
}

header nav {
  display: flex;
}

header ul {
  display: flex;
}

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

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

header .nav li h2 {
  color: #fff;
  line-height: 60px;
  font-size: 1.4rem;
  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: #fff !important;
}

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

header.header2 .nav li h2 {
  color: var(--color2);
}

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

header .search {
  position: relative;
  cursor: pointer;
  transition: all 0.6s linear;
  width: 4rem;
}

header .search img {
  width: 4rem;
  padding: 1rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5rem;
  transition: all 0.3s linear;
  position: relative;
  z-index: 4;
}

header.header2 .search img {
  background: rgba(217, 217, 217, 0.6);
}

header .search input {
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
  transform-origin: 100%;
  background: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0 1rem 0 5rem;
  box-sizing: border-box;
  transition: all 0.6s linear;
  position: absolute;
  top: 0;
  right: 0;
}

header.header2 .search input {
  background: rgba(217, 217, 217, 0.6);
}

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

header .search.active {
  width: 16rem;
}

header .search.active img {
  background: var(--color);
}

header .search.active input {
  opacity: 1;
}

header .lls {
  background: var(--color);
  margin: 0 0 0 1.5rem;
  border-radius: 5rem;
  padding: 0 2.5rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 4rem;
}

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

.navBtn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}

header.header2 .navBtn span {
  background: var(--color);
}

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

.mask {
  z-index: 1;
  width: 100%;
  height: 30rem;
  transform-origin: 50% 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.8s cubic-bezier(0.38, 0, 0, 1);
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleY(0);
}

header.on .mask {
  opacity: 1;
  transform: scaleY(1);
}

.s_menu {
  width: 100%;
  pointer-events: none;
  opacity: 0;
  padding-top: 0.6rem;
  transition: opacity 0.5s cubic-bezier(0.38, 0, 0, 1);
  position: absolute;
  top: 100%;
  left: 0;
}

header.on .s_menu {
  pointer-events: auto;
  opacity: 1;
}

.s_menu p {
  font-size: 1.2rem;
  box-sizing: border-box;
  margin: 0.8rem 0;
  opacity: 0;
  color: #fff;
  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.on .s_menu p {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

.banner .swiper-slide .cc {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 2s;
}

.banner .swiper-slide-active .cc {
  transform: scale(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: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}

.banner .txt h3 {
  font-size: 5rem;
  letter-spacing: 2px;
}

.banner .txt p {
  font-size: 2rem;
  letter-spacing: 4px;
}

.banner .split-text span {
  display: inline-block;
  color: #fff;
  opacity: 0;
  transform: translateX(10px);
  transition: transform 0.4s linear, opacity 0.4s linear 0.2s;
}

.banner h3 span {
  font-weight: 500;
}

.banner .swiper-pagination {
  display: flex;
  position: absolute;
  z-index: 6;
  justify-content: center;
  box-sizing: border-box;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  opacity: 0;
}

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

.banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 3.8rem !important;
  opacity: 1 !important;
}

.banner .scroll {
  position: absolute;
  left: 5%;
  bottom: 0%;
  display: flex;
  align-items: center;
  z-index: 6;
  cursor: pointer;
  opacity: 0;
}

.banner .scroll p {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

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

@keyframes scroll {
  0% {
    transform: rotate(-90deg) translateX(-2px);
  }

  50% {
    transform: rotate(-90deg) translateX(2px);
  }

  100% {
    transform: rotate(-90deg) translateX(-2px);
  }
}

main {
  margin-top: 100vh;
  background: #fff;
  position: relative;
  z-index: 3;
}

.btn .bl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0px;
  z-index: 9;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

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

.btn .lll {
  left: 1%;
}

.btn .llr {
  right: 1%;
}

.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:hover i {
  opacity: 1;
  columns: var(--color);
}

.banner .btn {
  position: absolute;
  right: 6%;
  z-index: 6;
  display: flex;
  align-items: center;
  top: 62%;
  transform: translateY(-50%);
}

.banner .btn .bl {
  position: static;
  transform: none;
  margin: 0 0.6rem;
}

.banner .btn .bl i {
  color: #fff;
}

.title {
  margin-bottom: 4rem;
}

.title h3 {
  font-size: 4.4rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 2px;
}

.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 3.5rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #fff;
  background: var(--color2);
  border: 1px solid transparent;
}

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

.more2 {
  display: flex;
  align-items: center;
  width: max-content;
  font-size: 1.3rem;
  transition: all 0.5s ease;
}

.more2 img {
  width: 1rem;
  margin-left: 0.5rem;
}

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

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

.index_bar0 {
  width: 100%;
  height: 100vh;
}

.index_bar1 {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.index_bar1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #666;
  opacity: 0.3;
  z-index: 2;
}

.index_bar1 .imgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

.index_bar1 .txt .title {
  display: none;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 20%;
  transform: translate(-50%, 0%);
}

.index_bar1 .txt .title:first-of-type {
  display: block;
}

.index_bar1 h3 {
  color: #fff;
}

.index_bar1 p {
  text-align: center;
  color: #fff;
}

.index_bar1 .title a {
  display: block;
}

.index_bar1 .more {
  margin: 4rem auto 0;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.4);
  border-color: #fff;
}

.index_bar1 .bottom {
  position: absolute;
  left: 50%;
  bottom: 10vh;
  z-index: 6;
  transform: translateX(-50%);
}

.index_bar1 dl {
  display: flex;
  justify-content: center;
}

.index_bar1 dl dd {
  margin: 0.6rem;
  width: 26%;
  position: relative;
}

.index_bar1 dl dd b {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 100%;
  border-radius: 1rem 1rem 0 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.index_bar1 dl dd b.active {
  bottom: 90%;
  opacity: 1;
}

.index_bar1 dl dd .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  background: rgba(183, 183, 183, 0.5);
  padding: 3.5rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(30px);
}

.index_bar1 dl dd b img {
  width: 100%;
}

.index_bar1 dl dd p {
  margin: 0 0;
  font-weight: 400;
}

.index_bar1 dl dd .rr {
  position: relative;
}

.index_bar1 dl dd .more2 {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.index_bar1 dl dd .rr>img {
  width: 3rem;
}

.index_bar1 dl dd.active .txt {
  background: #fff;
}

.index_bar1 dl dd.active p {
  color: var(--color2);
}

.index_bar1 dl dd.active>img {
  opacity: 0;
}

.index_bar1 dl dd.active .more2 {
  opacity: 1;
  right: 0;
}

.index_pro {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 1;
}

.index_pro ul {
  display: flex;
  padding: 0 3% 8rem 3%;
}

.index_pro ul li {
  width: 20%;
  border-radius: 2rem;
  display: flex; 
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 6rem 3rem 3rem;
  box-sizing: border-box;
  position: relative;
  transition: all 0.5s ease;
  flex: 1 1 20%;
  margin: 0 0.8rem;
  height: 50vh;
}

.index_pro ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 2rem;
  opacity: 0.9;
  height: 100%;
  transition: all 0.4s ease;
  background: linear-gradient(to top, #bfc3cc, #e6e7e9);
  display: none;
}

.index_pro ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 2rem;
  height: 100%;
  transition: all 0.4s ease;
  opacity: 0;
  background: rgba(0, 0, 0, 0.3);
}

.index_pro ul li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 4;
}

.index_pro ul li .tt {
  position: relative;
  z-index: 3;
}

.index_pro ul li .more {
  position: absolute;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 0.4rem);
  transition: all 0.6s 0.2s;
  background: var(--color);
}

.index_pro ul li .tt h6 {
  font-size: 2rem;
  font-weight: 400;
  transition: all 0.6s 0.1s;
  color: #fff;
}

.index_pro ul li .bb img {
  width: 12rem;
  margin: 3rem auto 0;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease-out 0.2s;
}

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

.index_pro ul li.on h6 {
  color: #fff;
}

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

.index_pro ul li.on::after {
  opacity: 0.8;
}

.index_pro ul li.on .bb img {
  transform: scale(1.16) translateY(8rem);
}

.index_pro ul li.on .more {
  opacity: 1;
  transform: translate(-50%, -1rem);
}

.index_case {
  background: #f6f7f7;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

.index_case .contain {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.index_case .contain .left {
  width: 58%;
  border-radius: 2rem;
  background: #fff;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.index_case .contain .left b {
  width: 60%;
  height: 56vh;
  border-radius: 2rem;
  display: block;
  overflow: hidden;
  position: relative;
}

.index_case .contain .left b img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
  will-change: transform, opacity;
}

.index_case .contain .left .txt {
  width: 40%;
  padding: 5% 7%;
  box-sizing: border-box;
}

.index_case .contain .left .txt .bb {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.index_case .contain .right {
  width: 62%;
  position: absolute;
  right: 0;
  top: 0;
}

.index_case .swiper-container {
  overflow: hidden;
}

.index_case .swiper-slide {
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  width: 19%;
  transition: all 0.4s ease;
  transform-origin: left top;
}

.index_case .swiper-slide .aa {
  border-radius: 2rem;
  overflow: hidden;
  height: 40vh;
}

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

.index_case .swiper-slide .bb {
  opacity: 0;
}

.index_case h6 {
  font-size: 2rem;
  font-weight: 400;
}

.index_case h5 {
  font-size: 1.6rem;
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.index_case p {
  font-size: 1.5rem;
  opacity: 0.7;
}

.index_case .tt {
  will-change: transform, opacity;
}

.index_case .btn {
  position: absolute;
  left: 60%;
  bottom: 0;
  display: flex;
}

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

.btns .bl {
  background: none !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  position: static;
}

.btns .bl img {
  width: 60%;
  filter: none;
}

.btns .bl.lll img {
  transform: rotate(180deg);
}

.index_service {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 1;
}

.index_service ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.index_service ul li {
  text-align: center;
  width: 49%;
  border-radius: 2rem;
  overflow: hidden;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  cursor: pointer;
  clip-path: inset(0 0 100%);
  transition: all 0.8s ease;
}

.index_service ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.8s ease;
}

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

.index_service ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.index_service ul li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 4;
}

.index_service ul .tt {
  padding: 3rem 2rem 3.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(40px);
}

.index_service ul h6 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}

.index_service ul p {
  margin: 0.5rem 0 0;
  color: #fff;
  text-align: center;
}

.index_service .more {
  border: 1px solid #fff;
  background: none;
  padding: 0.8rem 2rem;
  margin: 2rem auto 0;
}

.index_news {
  position: relative;
  background: #f6f7f7;
  z-index: 1;
}

.index_news .swiper-slide {
  border-radius: 2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: rgba(14, 33, 54, 0) 0px 0px 1.0416666667vw;
}

.index_news .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000; 
  transition: all 0.5s linear;
  z-index: 2;
  opacity: 0.2;
} 
.index_news .swiper-slide:hover:before{
    opacity: 0.4;
}
.index_news .aa {
  overflow: hidden;
  height: 40vh;
  display: flex;
  justify-content: flex-end;
  background: #fff;
}

.index_news .aa img {
  height: 100%;
  object-fit: cover;
}

.index_news .aa .img1 { 
  position: absolute;
  left: 0;
  top: 0;
  transition: 1s;
  width: 100%;
  transform: scale(1.05);
}

.index_news .swiper-slide:hover .aa .img1 { 
  transform: scale(1);
}

.index_news .bb {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 8%;
  z-index: 3;
  box-sizing: border-box;
}

.index_news .t0 {
  display: flex;
  font-size: 1.6rem;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

.index_news .t0 img {
  width: 1.2rem;
  padding: 0.8rem;
  border-radius: 50%;
  transition: 0.6s;
}

.index_news h5 {
  font-size: 1.2rem;
  font-family: BaiJamjuree-Bold;
  color: #999;
  line-height: 1.4;
  letter-spacing: 0.5px;
  transition: all 0.5s ease;
}

.index_news h6 {
  font-size: 1.8rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 1.2rem 0;
  transition: all 0.5s ease;
}

.index_news .bb p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s ease;
}

.index_news .swiper-slide  h6,
.index_news .swiper-slide  .t0,
.index_news .swiper-slide  .bb p,
.index_news .swiper-slide  h5 {
  color: #fff;
}

.index_news .swiper-slide  .t0 img {
  background: #fff;
}

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

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

.footer .bar .ll {
  margin-right: 10%;
}

.footer .bar .logo2 {
  height: 5rem;
  margin-bottom: 4rem;
}

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

.footer .bar .ll p {
  color: #fff;
  font-size: 1.4rem;
  margin: 2rem 0;
}

.footer .bar .ll p strong {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
}

.footer .bar .ll p img {
  width: 2rem;
  margin-right: 1rem;
  margin-top: -2px;
}

.footer .bar .ll p a {
  color: #fff;
  font-size: 1.4rem;
  padding-left: 3rem;
  display: block;
  margin-top: 1rem;
  line-height: 1.1;
}

.footer .bar .ll p:first-of-type a {
  font-size: 3rem;
  line-height: 1;
  font-family: BaiJamjuree-Bold;
}

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

.footer dl p:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

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

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

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

.footer .links {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

.footer .links .bbs {
  display: flex;
  align-items: center;
}

.footer .links b {
  display: block;
  position: relative;
  overflow: hidden;
}

.footer .links img {
  height: 3rem;
  margin-left: 1rem;
  transition: all 0.5s ease;
}

.footer .links b:hover img {
  opacity: 0.8;
}

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

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

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

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

.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;
  transition: all 0.4s ease;
  box-shadow: 0 3rem 3rem 0 rgba(23, 33, 30, 0.031);
}

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

.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 2vw;
  font-size: 1.5rem;
}

.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: #fff;
  position: relative;
}

.about .title2 h3 {
  text-align: center;
}

.about .tt p {
  text-align: center;
  margin: 2rem 0;
  color: #666;
}

.about dl {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 5rem 0;
}

.about dl dd strong {
  font-size: 4.6rem;
  font-family: BaiJamjuree-Bold;
  color: var(--color);
  margin-right: 0.5rem;
  line-height: 1;
  display: block;

}

.about dl dd span:first-of-type {
  color: var(--color);
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1.4;
  min-width: 13rem;
}

.about dl dd span:last-of-type {
  display: block;
  margin-top: 1.5rem;
}

.about dl dd span {
  font-size: 1.6rem;
  font-weight: 400;
}

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

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

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

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

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

.video-popup {
  display: none;
  max-width: 90%;
  height: 90%;
}

.video-popup video {
  width: 100%;
  height: 100%;
}

.close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  background: #fff url('../images/close.png') no-repeat center/50%;
  width: 28px;
  height: 28px;
  padding: 3rem;
  box-sizing: border-box;
  transition: all 0.6s ease;
}

.close-button:hover {
  transform: scale(1.04);
}

.about2 {
  background-color: #f7f7f7;
  position: 3;
}

.about2 .contain {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  border-radius: 2rem;
  overflow: hidden;
}

.about2 .rr {
  width: 50%;
  background: #fff;
}

.about2 .rr .swiper-container {
  height: 100%;
}

.about2 .rr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  box-sizing: border-box;
}

.about2 .ll {
  background: #fff;
  width: 50%;
  padding: 5%;
  display: block;
  min-height: 64rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.about2 .ll .txt {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.about2 .ll .txt::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: all 0.5s linear;
}

.about2 .ll .txt:last-of-type {
  border: none;
}

.about2 .ll h6 {
  display: block;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.9rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.about2 .ll h6 span {
  font-size: 2.8rem;
  font-weight: 200;
  transition: all 0.5s ease;
}

.about2 .ll .tt3 {
  padding: 1rem 0;
  display: none;
}

.about2 .ll .tt3 p {
  color: #666;
  font-size: 1.5rem;
  margin: 0;
}

.service2 .bar .ll p strong {
  display: block;
  font-weight: 400;
  font-size: 1.9rem;
}

.about2 .ll .txt h6:hover {
  color: var(--color);
}

.about2 .ll .txt.active h6,
.about2 .ll .txt.active h6 span {
  color: var(--color);
}

.about2 .ll .txt.active::before {
  width: 100%;
}

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

.about2b ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.about2b ul li .ll {
  width: 50%;
  clip-path: inset(0 100% 0 0);
  overflow: hidden;
  transition: all 0.8s ease;
}

.about2b ul li .ll img {
  width: 100%;
  border-radius: 1rem;
}

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

.about2b ul li .tt {
  opacity: 0;
  transform: translateY(100px);
}

.about2b ul li .tt img {
  height: 5.5rem;
}

.about2b ul li h6 {
  font-size: 2.2rem;
  font-weight: 400;
  padding-bottom: 1.5rem;
  margin: 3rem 0 2rem;
  position: relative;
  width: max-content;
}

.about2b ul li h6::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33%;
  height: 2px;
  background: var(--color);
}

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

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

.about3 .imgs p {
  text-align: center;
  transition: transform 0.5s;
}

.about3 .imgs img {
  width: 100%;
 
  transition: transform 0.6s;
}

.about3 .imgs span {
  display: block;
  overflow: hidden;
  width: 100%;
   border-radius: 1rem;
  margin-bottom: 1rem;
}

.about3 .imgs p:hover img {
  transform: scale(1.06);
}

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

.news {
  position: relative;
  z-index: 3;
  background: #f7f7f7;
}

.news .bar0 a {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 1rem;
  padding: 3%;
  box-sizing: border-box;
}

.news .bar0 .bb {
  width: 48%;
  padding: 3%;
  box-sizing: border-box;
}

.news .bar0 .aa {
  width: 42%;
  overflow: hidden;
  border-radius: 1rem;
}

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

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

.news .bar0 h5 {
  font-size: 1.4rem;
  font-family: BaiJamjuree-Bold;
  color: var(--color);
}

.news .bar0 h6 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 5rem 0 2rem;
  transition: all 0.5s ease;
}

.news .bar0 h4 {
  font-size: 1.4rem;
  color: var(--color);
  margin: 2rem 0 0;
  font-weight: 400;
}

.news .bar0 p {
  color: #999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 6.5rem;
}

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

.news .bar0 .more {
  margin-top: 5rem;
  background: var(--color);
}

.news .bar0 .swiper-pagination {
  position: static;
  margin: 5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news .bar0 .swiper-pagination span {
  width: 6px;
  height: 6px;
  opacity: 1;
  background: #d4d5d9;
  border: 2px solid transparent;
}

.news .bar0 .swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px !important;
  background: none !important;
  border-color: var(--color) !important;
}

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

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

.news .box ul li {
  background: #fff;
  position: relative;
  border-radius: 1rem;
  padding: 5rem 3rem 0;
  box-sizing: border-box;
}

.news .box ul li b {
  display: block;
  position: absolute;
  bottom: 7rem;
  right: 3rem;
  width: 30%;
  transition: all 0.5s ease;
}

.news .box ul li b img {
  width: 100%;
  border-radius: 1rem;
  transition: transform 0.2s ease;
}

.news .box ul li:hover b {
  opacity: 1;
}

.news .box ul li h5 {
  font-size: 1.3rem;
  font-family: BaiJamjuree-Bold;
  color: var(--color);
  margin: 3rem 0;
}

.news .box ul li h6 {
  font-size: 2rem;
  transition: all 0.5s ease;
  line-height: 1.6;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 6.4rem;
}

.news .box ul li p {
  color: #999;
  font-size: 1.4rem;
  line-height: 1.8;
  width: 61%;  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 5rem;
}

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

.newsd .bar0 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.back {
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  align-items: center;
  transition: all 0.5s ease;
  color: #999;
}

.back span {
  margin-right: 1rem;
  width: 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 1rem;
  transform: rotate(-45deg);
  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(-180deg);
  border-color: transparent;
}

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

.newsd .bar0 .title2 {
  margin: 2rem 0 0;
}

.newsd .bar0 h3 {
  margin: 1rem 0 2rem;
  font-weight: 400;
}

.newsd .bar0 h6 {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  font-family: BaiJamjuree-Bold;
  color: var(--color);
}

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

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

.social h6 {
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.social h6:not(:first-of-type) {
  margin-top: 10rem;
}

.social p {
  margin: 2.2rem 0;
}

.social p strong {
  font-weight: 400;
  color: var(--color);
  display: block;
  margin: 0 0 -1rem;
  font-size: 2rem;
  position: relative;
  padding-left: 2em;
}

.social p strong::before {
  content: '';
  position: absolute;
  left: 1em;
  top: 14px;
  width: 7px;
  height: 7px;
  background: var(--color);
  border-radius: 50%;
}

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

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

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

.pross .contain .left {
  width: 18rem;
}

.pross .contain .left .ls {
  position: sticky;
  top: 12rem;
  border-left: 1px solid #d8d8d8;
  font-size: 1.5rem;
  padding-left: 2rem;
}

.pross .contain .left dl {
  margin-bottom: 3.5rem;
  position: relative;
}

.pross .contain .left dl::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 0;
  border-radius: 2rem;
  width: 4px;
  background-color: var(--color);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: all 0.5s ease;
}

.pross .contain .left dl dt {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 2rem; 
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2rem;
}
.pross .contain .left dl dt a{
  font-weight: 500;
  font-size: 1.6rem; 
  transition: all 0.5s ease; 
  line-height: 1;
}
.pross .contain .left dl dt i{
    font-weight: 600;
}
.pross .contain .left dl >a{
    display: none;
}
.pross .contain .left dl dd {
  margin: 1.5rem 0;
  font-size: 1.3rem; 
  transition: all 0.5s ease; 
} 
.pross .contain .left dl.active dt a,
.pross .contain .left dl:hover dt  a{
  color: var(--color);
}

.pross .contain .left dl.active dt a{
  font-weight: 500 !important;
}

.pross .contain .left dl dd.on {
  color: var(--color);
  font-weight: 400;
}

.pross .contain .left dl dd:hover {
  color: var(--color);
  transform: translateX(5px);
}

.pross .contain .left dl.active::before {
  height: 100%;
}

.pross .contain .bar1 {
  width: calc(100% - 22rem);
}

.pro .bar1 .bbs:not(:first-of-type) {
  margin-top: 6rem;
}

.pro .bar1 h2 {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.1;
}

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

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

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

.pro .bar1 ul li b {
  display: block;
  overflow: hidden;
}

.pro .bar1 ul li b img {
  width: 100%;
  transition: all 0.6s ease;
}

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

.pro .bar1 ul li .tt {
  padding: 2.4rem;
  box-sizing: border-box;
}

.pro .bar1 ul li h6 {
  font-size: 1.8rem;
  font-weight: 400;
  transition: all 0.6s ease;
}

.pro .bar1 ul li p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.4rem;
}

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

.more4 {
  margin: 2rem 0 0;
}

.more4 img {
  width: 2.6rem;
  filter: grayscale(1) brightness(0.8);
}

.pro .bar1 ul li:hover .more4 img {
  filter: none;
  transition: filter 0.4s ease 0.4s;
  animation: 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) arrowGoRight forwards;
}

@keyframes arrowGoRight {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }

  50% {
    opacity: 0;
    transform: translate(1.5rem) scale(1.1);
  }

  51% {
    opacity: 0;
    transform: translate(-1.5rem) scale(1.1);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

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

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

.pro_d .bar1 .left {
  width: 55%;
  height: auto;
  position: relative;
}

.pro_d .bar1 .gallery-thumbs {
  margin-top: 2rem;
}

.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: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0.6;
  transition: all 0.5s ease;
}

.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: 2rem;
}

.pro_d .bar1 .left img {
  width: 100%;
  border-radius: 2rem;
  height: 66vh;
  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: 38%;
  padding: 0% 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;
  display: block;
  margin: 1.5rem 0 -0.5rem;
}
.pro_d .bar1 .right table{
    width: 100%;
}
.pro_d .bar1 .right table tr td{
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 1rem 1rem;
  box-sizing: border-box;
  background: #fff;
}

.pro_d .bar1 .right table tr:nth-of-type(2n + 1) td {
  background: #efefef; 
}
.pro_d .bar1 .right table tr td:nth-of-type(1) { 
  font-weight: 400;
}

.pro_d .bar2 {
  background: #f7f7f7;
  position: relative;
  z-index: 3;
}
.pro_d .bar2 p img{
    max-width: 100%;
}
.pro_d .bar2 table {
  width: 100%;
}

.pro_d .bar2 table td {
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 1.5rem 5rem;
  box-sizing: border-box;
  background: #fff;
}

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

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

.pro_d .bar3 p {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
}

.pro_d .bar3 .swiper-slide-active p {
  opacity: 1;
  bottom: 1rem;
  transition: all 0.5s ease 1s;
}

.pro_d .bar3 .swiper-container {
  border-radius: 2rem;
  overflow: hidden;
}

.pro_d .bar3 .swiper-slide {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
}

.pro_d .bar3 .slide-inner {
  width: 100%;
  height: 100%;
}

.case.pross .contain .left dl dt {
  font-weight: 300;
}

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

.partner {
  overflow: hidden;
  position: relative;
  z-index: 3;  
  background: #fdfdfd;
  padding-bottom: 0 !important;
}

.partner .bar1 { 
  margin: auto;
}

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

.partner .img .cir {
  position: absolute;
  z-index: 2;
  top: 25.8%;
  right: -16%;
  width: 60%;
}

.partner .bbs {
  position: absolute;
  top: 49%;
  right: 12.5%;
  z-index: 3;
}

.partner .bbs p {
  position: absolute;
  top: -3px;
  right: -8rem;
  font-weight: 400;
  margin: 0;
  width: max-content;
  color: var(--color);
}

.partner dl dd {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  transform-origin: center center;
}

.partner dd.show {
  opacity: 1;
  transform: scale(1);
}



.partner dl dd p {
  position: absolute;
  top: -10px;
  font-weight: 400;
  font-size: 1.4rem;
  left: calc(100% + 2rem);
  opacity: 0;
  line-height: 1.4;
  width: 0; 
  opacity: 1;
  width: max-content;
  top: -19px;
  transition: all 0.4s;
}
 
.partner dl dd .icons {
  width: 0.8rem;
  display: block; 
    height:0.8rem;
    background-color: var(--color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -0.4rem 0 0 -0.4rem;
}
.partner dl dd .icons::before {
  content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(0.5);
    animation: ripple 4s ease-in-out infinite;
}
.partner dl dd .icons::afetr {
  content: "";
    display: block;
    width: 3rem;
    height: 3rem; 
    border: 1px solid var(--color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    border-radius: 50%; 
    transform: translate(-50%,-50%) scale(0.5); 
    animation: ripple 4s ease-in-out infinite;
}
.partner dl dd .icons::after { 
    animation-delay: 27.4s;
}
@keyframes ripple {
  0% { 
    transform:translate(-50%,-50%) scale(0);
    opacity: 1;
  }

  100% { 
    transform:translate(-50%,-50%) scale(1.5);
    opacity: 0;
  }
}
.partner dl .dd1 {
  top: 29%;
  right: 19.3%;
}
.partner dl .dd1 p{
    left: -0.6rem;
    top: -3.8rem;
}
.partner dl .dd2 {
  top: 28%;
  left: 19%;
}

.partner dl .dd3 {
  top: 78%;
  right: 11%;
}

.partner dl .dd4 {
  top: 67%;
  right: 20%;
}

.partner dl .dd5 {
  top: 26%;
  left: 49%;
}

.partner dl .dd6 {
  top: 19.6%;
  left: 47%;
}

.partner dl .dd7 {
  top: 32.5%;
  left: 57%;
}
 

.partner dl .dd8 {
  top: 34%;
  right: 24.5%;
}
.partner dl .dd8 p{
    left: -0.6rem;
    top: 0.25rem;
}
.partner dl .dd9 {
  top: 32%;
  right: 24%;
}

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

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

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

.contact .ll h6 {
  font-weight: 500;
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}

.contact ul li p {
  text-align: left;
  margin: 1rem 0;
}

.contact .bar1 .ll ul li p strong {
  font-size: 2rem;
  font-weight: 400;
  font-family: BaiJamjuree-Bold;
}

.contact .bar1 .ll ul li p a {
  text-decoration: underline;
  font-size: 3rem;
  font-family: BaiJamjuree-Bold;
}

.contact .bar1 .ll ul li p a:hover {
  text-decoration: underline;
}

.contact .bar1 .imgs {
  margin: 2.5rem 0;
  display: flex;
}

.contact .bar1 .imgs p {
  text-align: center;
  line-height: 1.6;
  font-size: 1.2rem;
  margin-right: 2rem;
}

.contact .bar1 .imgs img {
  width: 10rem;
  margin: 0 auto 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.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: var(--color2);
  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 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  h6,
.store ul li  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);
  opacity: 0.6;
}

.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: 5rem;
  justify-content: center;
}

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