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

@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: #1a1a1a;
  font-family: 'HarmonyOSSansSC';
  font-weight: 300;
}

p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 1rem 0;
  color: #666;
  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: 94%;
  margin: auto;
}

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

.w_all3 {
  width: 52vw;
  margin: auto;
}

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

html,
body {
  font-size: 62.5%;
  width: 100%;
  position: relative;
  --color: #08356c;
  --color2: #c49a44;
  --height: 90px;
  --height2: 70px;
}

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  box-sizing: border-box;
  z-index: 999;
  transition: all 0.4s ease;
}

header.active {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

header.on,
header.on2 {
  background: #fff;
}

header .nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--height);
}

header.active .nav_box {
  height: var(--height2);
}

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

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

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

header.active .logo {
  height: 5rem;
}

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

header nav {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

header ul {
  width: max-content;
  display: flex; 
  align-items: center;
  transition: all 0.5s ease;
}

header ul li {
  margin: 0 2.5rem;
  
}

header .nav li h2 {
  color: #fff;
  line-height: 1.5;
  text-align: center;
  font-size: 1.6rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  font-weight: 400;
  height: var(--height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .nav li h2 span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: BaiJamjuree-Regular;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.3;
}

header .nav li h2 span::before {
  content: '';
  width: 1rem;
  height: 1px;
  background: #fff;
  margin-right: 5px;
  opacity: 0.3;
}

header .nav li h2 span::after {
  content: '';
  width: 1rem;
  height: 1px;
  background: #fff;
  margin-left: 5px;
  opacity: 0.3;
} 

header.active .nav li h2 {
  height: var(--height2);
}

header.active .nav li h2,
header.on .nav li h2,
header.on2 .nav li h2 {
  color: #1a1a1a;
}

header.active .nav li h2 span,
header.on .nav li h2 span,
header.on2 .nav li h2 span {
  color: #1a1a1a;
}

header.active .nav li h2 span::before,
header.on .nav li h2 span::before,
header.on2 .nav li h2 span::before {
  background: #1a1a1a;
}

header.active .nav li h2 span::after,
header.on .nav li h2 span::after,
header.on2 .nav li h2 span::after {
  background: #1a1a1a;
}

header .nav li .la {
  position: relative;
}

header .nav li .la::before {
  content: '';
  width: 0%;
  height: 0.4vw;
  background: var(--color);
  position: absolute;
  left: 0;
  top: 57%;
  z-index: 1;
  transition: all 0.5s;
  opacity: 0 !important;
  display: none;
}

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

header .nav li:hover .la::before {
  opacity: 1;
  width: 100%;
}

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

header .language {
  color: #fff;
  font-size: 1.6rem;
  margin-left: 3rem;
  display: flex;
  align-items: center;
  z-index: 9999;
  position: relative;
  font-weight: 400;
}

header.active .language,
header.on .language,
header.on2 .language {
  color: #1a1a1a;
}

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

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

header.active .navBtn span,
header.on .navBtn span,
header.on2 .navBtn span {
  background: #1a1a1a;
}

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

.s_menu {
  background: #fff;
  position: fixed;
  left: -100%;
  width: 300%;
  top: var(--height);
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.02);
  display: none;
}

header.active .s_menu {
  top: var(--height2);
}

.s_menu .sr {
  display: flex;
  padding: 1rem 0;
  justify-content: center;
  width: 100vw;
  flex-wrap: wrap;
}

.s_menu .sr p {
  font-size: 1.6rem;
  line-height: 1.4;
  box-sizing: border-box;
  margin: 0.5rem 3rem;
  color: #666;
  transition: all 0.4s ease;
}

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

.menus {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: none;
}

.menus ul {
  width: 100%;
  height: auto;
  margin-top: var(--height);
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menus ul li {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  height: calc(100vh - var(--height));
  width: 16.6%;
  margin: 0;
  padding: 5% 1%;
  text-align: center;
}

.menus ul li h2 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.menus ul li h2 span {
  display: block;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-family: BaiJamjuree-Regular;
}

.menus .s_menu {
  position: static;
  display: block !important;
  border: none;
  box-shadow: none;
  width: 100%;
}

.menus .s_menu .sr {
  width: 100%;
  display: block;
  padding: 0;
}

.menus .s_menu .sr p {
  margin: 2rem 0;
  text-align: center;
}

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

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

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

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

.banner .txt h3 {
  font-size: 6rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 3rem;
  letter-spacing: 3px;
}

.banner .txt p {
  font-size: 2rem;
  color: #fff;
}

.banner .swiper-pagination {
  display: flex;
  z-index: 5;
  justify-content: flex-start;
  box-sizing: border-box;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

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

.banner .swiper-pagination-bullet-active {
  background: #fff !important;
  opacity: 1 !important;
}

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

.btn .bl {
  margin: 0 1rem;
  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: 0%;
}

.btn .llr {
  right: 0%;
}

.btn .bl i {
  display: block;
  font-size: 1.6rem;
  line-height: 36px;
  opacity: 0.6;
  font-weight: 600;
  transition: all 0.5s ease;
}

.btn .llr i {
  -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;
}

.title {
  margin-bottom: 4rem;
}

.title h3 {
  font-size: 4.6rem;
  line-height: 1.3;
  font-weight: 500;
}

.title h6 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 1rem;
}

.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.4rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: var(--color);
}

.more i {
  width: 2rem;
  margin-left: 1.2rem;
  height: 2rem;
  padding: 0.3rem;
  border-radius: 50%;
  border: 1px solid var(--color);
  color: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.5s ease;
}

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

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

.more2 {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 400;
  border-radius: 0.6rem;
  color: var(--color);
  border: 1px solid var(--color);
  width: max-content;
  padding: 1.2rem 3rem;
  transition: all 0.5s ease;
}

.more2:hover {
  background: var(--color2);
  color: #fff;
  border-color: transparent;
}

.index_bars {
  padding: 7rem 0;
  position: relative;
}

.index_barsb {
  padding: 0rem 0 7rem;
  position: relative;
}

.index_grobal p img {
  width: 100%;
  margin-top: 5rem;
  display: block;
}

.index_about0 {
  overflow: hidden;
}

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

.index_about0 .title {
  margin: 0 auto;
}

.index_about0 .more {
  margin: 0 0;
}

.index_about0 .tt {
  width: 85%;
}

.index_about0 .tt p {

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index_about0 .bb {
  overflow: hidden;
  border-radius: 2rem;
  position: relative;
}

.index_about0 .bb img {
  width: 100%;
}

.index_about0 .bb::before {
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease;
}

.index_about0 .bb:hover::before {
  opacity: 0.4;
}

.index_about0 .bb p {
  position: absolute;
  left: 0;
  bottom: -10%;
  padding: 0.5rem 3rem;
  box-sizing: border-box;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease;
}

.index_about0 .bb:hover p {
  opacity: 1;
  bottom: 0;
}

.index_areas {
  width: 100%;
  background: #f6f6f6;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

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

.index_areas .title {
  width: 48%;
}

.index_areas h3 {
  margin: 0 auto 2rem;
  color: var(--color);
}

.index_areas p {
  text-align: left;
}

.index_areas dl {
  width: 42%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.index_areas dl a {
    display: block;
    width: 32%; 
  background: #fff;
  border-radius: 1rem;
  padding: 3rem 2rem 2rem;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.5s ease;
}

.index_areas dl dd img {
  width: 30%;
  margin: auto;
  transition: all 0.5s ease;
}

.index_areas dl dd p {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.6;
  margin: 2rem 0 0;
  transition: all 0.5s ease;
}

.index_areas dl a:hover {
  background: var(--color2);
}

.index_areas dl dd:hover img {
  filter: invert(1) brightness(1000);
}

.index_areas dl dd:hover p {
  color: #fff;
}

.index_job {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

.index_job .txt {
  position: relative;
  z-index: 3;
}

.index_job .title h3 {
  color: #fff;
}

.index_job .title p {
  text-align: left;
  margin: 1rem 0;
  color: #fff;
}

.index_job .more {
  color: #fff;
}

.index_job .more i {
  color: #fff;
  border-color: #fff;
}

.contact {
  background: #f6f6f6;
}

.contact .bar1 {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 1rem;
}

.contact .bar1 .ll {
  width: 50%;
  padding: 3%;
  box-sizing: border-box;
}

.contact .title h3 {
  font-size: 4rem;
}

.contact .ll p {
  text-align: left;
}

.contact .bar1 .ll ul li {
  margin: 2.5rem 0;
  display: flex;
}

.contact .bar1 .ll ul li p strong {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  display: block;
}

.contact .bar1 .ll ul li p {
  margin: 0rem 0;
  line-height: 1.6;
}

.contact .bar1 .ll ul li p a {
  font-size: 1.6rem;
}

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

.contact .bar1 .ll ul li img {
  margin: 2px 1.5rem 0 0;
  width: 2rem;
}

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

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

.contact .bar1 .message {
  width: 50%;
  padding: 3% 3%;
  background: #fff;
  border-radius: 1rem;
  box-sizing: border-box;
}

.contact .message .title {
  margin-bottom: 2rem;
}

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

.message .online .inps p {
  margin: 0 0 2rem;
  width: 48.5%;
}

.message .online .inps p span {
  font-size: 1.2rem;
  display: block;
  color: #333;
  margin-bottom: 5px;
}

.message .online .inps p img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.message .online .inputs {
  font-size: 1.4rem;
  background: none;
  display: block;
  line-height: 1.4;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 1rem;
  width: 100%;
  box-shadow: none;
  box-sizing: border-box;
  border-radius: 0.5rem;
}

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

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

.message textarea {
  min-height: 15rem;
}

.message .submit {
  margin: 1rem 0 0;
  position: relative;
  background: var(--color);
  width: max-content;
  padding: 1.1rem 2.5rem;
  width: max-content;
  display: flex;
  color: #fff;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
  font-size: 1.4rem;
  font-weight: 400;
}

.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 {
  background: var(--color2);
  color: #fff;
  border-color: transparent;
}

.footer {
  background: #fff;
  position: relative;
}

.footer .logo2 {
  width: 10rem;
  margin: 4rem 0;
}

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

.footer dl {
  display: flex;
  margin: 4rem 0 0.5rem;
}

.footer dl dd {
  font-size: 1.4rem;
  margin-right: 3rem;
  font-weight: 400;
  transition: all 0.5s ease;
}

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

.footer .tt {
  display: flex;
}

.footer .tt p {
  line-height: 1.4;
  font-size: 1.4rem;
  transition: all 0.5s ease;
  margin-right: 3rem;
}

.footer .copy {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 2rem;
}

.footer .copy .rr {
  display: flex;
}

.footer .copy .rr p {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.3);
  margin: 0;
}

.footer .copy .rr p a {
  font-size: 1.3rem;
  margin-left: 20px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

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

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

.footer .links b {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  padding: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 1.2rem;
  cursor: pointer;
}

.footer .links img:first-of-type {
  height: 2.2rem;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

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

.footer .links .ewm {
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0.6rem;
  bottom: 0;
  width: 10rem;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.footer .links b:hover .ewm {
  opacity: 1;
  bottom: 4.2rem;
  transition: all 0.5s linear;
}

.all_back {
  position: absolute;
  right: 1%;
  bottom: 13.5rem;
  z-index: 99999999;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  background: var(--color);
  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);
  display: none;
}

.all_back img {
  width: 100%;
}

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

.allRight {
  position: fixed;
  right: 1%;
  bottom: 5rem;
  z-index: 9999999;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.allRight img {
  width: 10rem;
}

.allRight p {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
  width: 90%;
  line-height: 1.5;
  transform: translate(-50%, -50%);
  display: none !important;
}

.bans {
  height: 65vh;
  position: relative;
}

.bans::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(8, 53, 108, 0.5),
      rgba(8, 53, 108, 0));
  z-index: 1;
}

.bans .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--color);
  z-index: 6;
}

.bans dl {
  display: flex;
  align-items: center;
}

.bans dl dd {
  font-size: 1.6rem;
  margin-right: 6rem;
  padding: 3rem 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  color: #fff;
}

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

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

.bans .txt2 h3 {
  font-size: 4.6rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 3px;
}

.bans2 {
  height: 80px !important;
}

.bans2::before {
  display: none;
}

.title2 {
  margin-bottom: 3rem;
}

.title2 h3 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.title2 h6 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  color: #999;
  font-family: BaiJamjuree-Bold;
  opacity: 0.5;
  text-align: right;
  text-transform: uppercase;
  max-width: 50%;
}

.about {
  background: #f6f6f6;
}

.about .bar {
  justify-content: space-between;
}

.about .bar .ll {
  width: 43%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.about .bar .ll .num {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about .bar h6 strong {
  font-size: 16rem;
  font-family: BaiJamjuree-Bold;
  color: transparent;
  -webkit-text-stroke: 2px var(--color);
  font-style: italic;
}

.about .bar dl {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about .bar dl span {
  display: block;
  text-align: center;
  margin: 0.6rem 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.about .bar dl strong {
  font-size: 3.4rem;
  font-style: italic;
  font-weight: 500;
  margin-right: 1rem;
  font-family: BaiJamjuree-Bold;
}

.about .bar dl dd:nth-of-type(2) strong {
  font-size: 5.6rem;
}

.about .bar .rr {
  width: 54%;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 5%;
  box-sizing: border-box;
}

.about .bar .title {
  margin: 0;
}

.about .bar .tt {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 5%;
  box-sizing: border-box;
}

.about .bar .tt::-webkit-scrollbar {
  width: 2px !important;
  background: rgba(0, 0, 0, 0);
}

.about .bar .tt::-webkit-scrollbar-thumb {
  background: var(--color);
  border-radius: 10px;
}

.about .bar .tt p {
  margin: 1.5rem 0;
}

.honor {
  overflow: hidden;
}

.honor .top {
  justify-content: space-between;
  align-items: center;
}

.honor .title2 {
  margin: 0;
}

.honor .swiper-slide {
  padding: 1rem 0;
}

.honor .swiper-slide b {
  width: 100%;
  display: block;
  transition: all 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 5%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28rem;
}

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

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

.honor .swiper-slide h6 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  text-align: center;
  transition: all 0.5s ease;
}

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

.honor .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4rem;
  box-sizing: border-box;
}

.honor .bottom .swiper-scrollbar {
  width: 100%;
  height: 2px;
  background: #ddd;
  opacity: 1 !important;
}

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

.organization .img img {
  width: 100%;
  transition: all 0.5s ease;
}

.partner {
  background: #f6f6f6;
}

.partner .swiper-slide {
  background: #fff;
  padding: 2rem 0;
  margin-top: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

.partner img {
  width: 100%;
  height: 8rem;
  box-sizing: border-box;
  object-fit: contain;
  transition: all 0.5s ease;
}

.partner .swiper-slide:hover img {
  transform: scale(1.06);
}

.partner .swiper-pagination {
  position: static;
  margin-top: 3rem;
}

.partner .swiper-pagination span {
  background: var(--color2);
}

.area {
  background-color: #f6f6f6;
}

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

.area .bar1 dl a {
  display: block;
}

.area .bar1 dl dd {
  position: relative;
  transition: all 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.area .bar1 dl dd .t1 {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.area .bar1 dl dd .t1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.area .bar1 dl dd img {
  height: 4rem;
  margin-bottom: 2rem;
  object-fit: cover;
  filter: invert(1) brightness(1000);
  transition: all 0.5s linear;
  position: relative;
  z-index: 3;
}

.area .bar1 dl dd h6 {
  font-size: 1.8rem;
  transition: all 0.5s linear;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  position: relative;
  z-index: 3;
}

.area .bar1 dl dd .t2 {
  position: relative;
  z-index: 3;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.area .bar1 dl dd p {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.6;
  font-size: 1.5rem;
  transition: all 0.5s linear;
}

.area .bar1 dl dd p::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--color);
  position: absolute;
  left: 0;
  transform: rotate(45deg);
  top: 8px;
  transition: all 0.5s linear;
}

.area .bar1 dl dd:hover {
  transform: translateY(-10px);
}

.aread {
  background: #f6f6f6;
}

.aread .bar {
  justify-content: space-between;
}

.aread .bar .ll {
  background: var(--color2);
  width: 20rem;
  height: 100%;
  text-align: center;
  padding: 5.5rem 2rem;
  box-sizing: border-box;
}

.aread .bar .ll img {
  width: 5rem;
  margin: auto;
  filter: invert(1) brightness(1000);
}

.aread .bar .ll h6 {
  font-size: 1.8rem;
  color: #fff;
  margin-top: 2rem;
  font-weight: 400;
}

.aread .bar .rr {
  width: calc(100% - 20rem);
  background: #fff;
  padding: 4%;
  box-sizing: border-box;
}

.aread .bar .rr p {
  margin: 1rem 0 0;
}

.aread .bar .rr p strong {
  display: block;
  font-weight: 500;
  color: var(--color);
  margin: 2.5rem 0 0;
}

.team {
  background: #f6f6f6;
}

.allSearch .b1 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.allSearch .b1 span {
  font-size: 1.5rem;
  font-weight: 400;
}

.allSearch ul {
  display: flex;
  align-items: center;
  width: calc(100% - 25rem);
  overflow-x: auto;
  padding: 1.5rem 0;
}

.allSearch ul::-webkit-scrollbar {
  height: 1px !important;
  background: rgba(0, 0, 0, 0);
}

.allSearch ul::-webkit-scrollbar-thumb {
  background: var(--color);
  border-radius: 10px;
}

.allSearch ul li {
  font-size: 1.5rem;
  margin-left: 1rem;
  width: 2rem;
  height: 2rem;
  padding: 0.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  cursor: pointer;
}

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

.allSearch ul li:hover {
  color: var(--color2);
}

.allSearch .b2 {
  margin: 3rem auto;
  display: flex;
  align-items: center;
}

.allSearch .b2 .bb {
  width: 20%;
  margin-right: 2rem;
  background: none;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 400;
}

.allSearch .b2 button {
  background: var(--color);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem;
  margin: 0;
  transition: all 0.5s ease;
  cursor: pointer;
}

.allSearch .b2 button i {
  color: #fff;
  display: block;
  font-size: 1.8rem;
  margin-top: -2px;
}

.allSearch .b2 button:hover {
  background: var(--color2);
}

.team .bar1 dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}

.team .bar1 dl a {
  display: block;
}

.team .bar1 dl dd {
  position: relative;
  transition: all 0.5s ease;
  border-radius: 1rem;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.team .bar1 dl dd .ttp {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.team .bar1 dl dd h6 {
  font-size: 1.6rem;
  transition: all 0.5s linear;
  line-height: 1.4;
  font-weight: 400;
}

.team .bar1 dl dd h6 strong {
  font-size: 1.4rem;
  display: block;
  margin-top: 0.5rem;
  opacity: 0.7;
  transition: all 0.5s linear;
}

.team .bar1 dl dd .ttp span {
  display: flex;
  font-size: 1.4rem;
  opacity: 0.7;
  transition: all 0.5s linear;
  align-items: center;
}

.team .bar1 dl dd .ttp span img {
  width: 1.6rem;
  margin-right: 0.8rem;
  margin-top: -2px;
  transition: all 0.5s linear;
}

.team .bar1 dl dd h5 {
  line-height: 1.6;
  font-size: 1.4rem;
  transition: all 0.5s linear;
  padding: 1rem 0;
  margin: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.team .bar1 dl dd .img {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.team .bar1 dl dd img {
  width: 70%;
}

.team .bar1 dl dd .mm {
  width: 3.2rem;
  border: 1px solid var(--color);
  padding: 0.5rem;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.5s linear;
}

.team .bar1 dl dd:hover {
  transform: translateY(-10px);
  background: var(--color);
}

.team .bar1 dl dd:hover h6,
.team .bar1 dl dd:hover h6 strong,
.team .bar1 dl dd:hover .ttp span,
.team .bar1 dl dd:hover h5 {
  color: #fff;
}

.team .bar1 dl dd:hover .mm {
  background: #fff;
  transform: scale(1.02);
}

.team .bar1 dl dd:hover .ttp span img {
  filter: invert(1) brightness(1000);
}

.teamd .bar .ll {
  background: none;
  padding: 0;
  width: 20%;
}

.teamd .bar .ll img {
  width: 100%;
  filter: none;
}

.teamd .bar .ll .tt0 {
  padding: 1.5rem 2rem;
  box-sizing: border-box;
}

.teamd .bar .ll h6 {
  color: var(--color);
  font-size: 2.2rem;
}

.teamd .bar .ll h5 {
  font-size: 1.5rem;
  margin: 0.8rem 0 2rem;
}

.teamd .bar .ll p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.teamd .bar .rr {
  width: 80%;
}

.case {
  background-color: #f6f6f6;
}

.case .allSearch {
  margin-bottom: 4rem;
}

.case .allSearch ul li {
  min-width: max-content;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}

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

.case .bar1 dl a {
  display: block;
}

.case .bar1 dl dd {
  position: relative;
  transition: all 0.5s ease;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.case .bar1 dl dd .t1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.case .bar1 dl dd h6 {
  font-size: 1.8rem;
  transition: all 0.5s linear;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  z-index: 3;
}

.case .bar1 dl dd p {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400; 
}

.case .bar1 dl dd img {
  height: 1.9rem;
  margin-right: 0.5rem;
  margin-top: -3px;
}

.case .bar1 dl dd h5 {
  margin-top: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.6;
  font-size: 1.5rem;
  transition: all 0.5s linear;
}

.case .bar1 dl dd .more {
  margin: 3rem 0 0;
}

.case .bar1 dl dd .more i {
  padding: 0.1rem;
}

.case .bar1 dl dd:hover {
  transform: translateY(-10px);
}

.cased {
  background: #f6f6f6;
}

.cased .bar0 .title2 {
  margin: 0;
  text-align: center;
}

.cased .bar0 h3 {
  margin: 1rem 0 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color);
}

.cased .bar0 h6 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}

.cased .tt {
  margin-top: 4rem;
}

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

.cased .tt p img {
  max-width: 100% !important;
}

.cased .bottom {
  padding-top: 3%;
}

.cased .bottom p {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  display: block;
  width: 100%;
  padding: 2.5rem 3rem;
  color: #222;
  background: #fff;
  margin-bottom: 5px;
  line-height: 1.4;
}

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

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

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

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

.wenjian .bar0 {
  background: #fff;
}

.wenjian .bar0 .top {
  display: flex;
  justify-content: space-between;
}

.wenjian .bar0 .top .aa {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wenjian .bar0 .top .bb {
  width: 48%;
  height: 45vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wenjian .bar0 .top .bb img {
  width: 100%;
  transition: all 0.5s linear;
}

.wenjian .bar0:hover .top .bb img {
  transform: scale(1.06);
}

.wenjian .bar0 .top h5 {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.wenjian .bar0 .top h6 {
  font-size: 2rem;
  font-weight: 400;
  margin: 2rem 0 4rem;
  transition: all 0.5s ease;
}

.wenjian .bar0:hover .top h6 {
  color: var(--color2);
}

.wenjian .bar1 {
  background: #f6f6f6;
}

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

.wenjian ul li {
  transition: all 0.5s ease;
  padding: 5rem 2rem;
  box-sizing: border-box;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.wenjian ul a:nth-child(-n + 3) li {
  border-top: none;
}

.wenjian ul li b {
  display: block;
  overflow: hidden;
  position: relative;
}

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

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

.wenjian ul li h5 {
  font-size: 1.2rem;
  margin: 3rem 0 1rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: #999;
  transition: all 0.5s ease;
}

.wenjian ul li h6 {
  font-size: 1.8rem;
  transition: all 0.5s ease;
  line-height: 1.6;
  font-weight: 400;
  height: 5.2rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.more3 {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 6rem auto 0;
  border: 1px solid #e2e2e2;
  border-radius: 1.85vw;
  padding: 1.4rem 2.5rem;
  font-size: 1.4rem;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.5s ease;
}

.more3 img {
  margin-left: 0.6rem;
  transition: all 0.5s ease;
}

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

.more3:hover img {
  transform: rotate(180deg);
}

.job .bar1 p {
  text-align: center;
  line-height: 1.5;
  font-size: 1.5rem;
}

.job .bar1 p strong {
  font-weight: 500;
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.job .bar1 p:not(:first-of-type) strong {
  margin-top: 4rem;
}

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

.job .bar2 ul li {
  width: 20%;
  padding: 0 3%;
  height: 70vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  flex: 1 1 20%;
}

.job .bar2 ul li h6 {
  color: #fff;
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.5s linear;
}

.job .bar2 ul li img {
  width: 5rem;
  margin: auto;
  transition: all 0.4s ease;
  filter: invert(1) brightness(1000);
}

.job .bar2 ul li p {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  opacity: 0;
  height: 0;
  transform: translateY(10px);
}

.job .bar2 ul li.on {
  width: 33.3%;
  flex: 1 1 33.3%;
}

.job .bar2 ul li.on img {
  margin-left: 0;
}

.job .bar2 ul li.on h6 {
  text-align: left;
}

.job .bar2 ul li.on p {
  opacity: 1;
  transition: all 0.4s ease 0.1s;
  text-align: left;
  pointer-events: all;
  height: auto;
  transform: translateY(0);
}

.job .bar3 {
  background: #f6f6f6;
}

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

.job .bar3 dl dd {
  margin: 0 1.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
  cursor: pointer;
}

.job .bar3 dl dd:hover {
  color: var(--color2);
  font-weight: 400;
}

.job .bar3 dl dd.active {
  color: var(--color2);
  font-weight: 400;
  border-color: var(--color2);
}

.job .bar3 ul {
  margin-top: 3rem;
  display: none;
}

.job .bar3 ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  cursor: pointer;
}

.job .bar3 ul li h5 {
  font-weight: 400;
  font-size: 1.6rem;
  transition: all 0.5s ease;
  color: #333;
}

.job .bar3 ul li h4 {
  font-size: 1.5rem;
  color: #666;
}

.job .bar3 ul li h6 {
  color: #fff;
  font-size: 1.6rem;
  background: var(--color);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job .bar3 ul li:hover h5 {
  color: var(--color2);
}

.job .bar3 ul li .tt {
  display: none;
}
.oversea{
    overflow: hidden;
}
.oversea .top{
    position: relative;
    z-index: 9;
}
.oversea .title2 h3{
    background: var(--color);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0.8rem 2rem;
    width: max-content;
    margin:0 auto 1rem;
    position: relative;
    border-radius: 0.5rem;
    cursor: pointer;
}
.oversea .title2 h3 img{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120%;
    background: #fff;
    width: 12rem;
    border-radius: 0.5rem;
    border: 1px solid  rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
}
.oversea .title2 h3:hover img{
    opacity: 1;
    top: 100%;
    pointer-events: auto;
}
.oversea .title2 p{
    text-align: center;
}
.oversea .conatin{
    position: relative;
}
.oversea .conatin .img img{
    width: 100%;
}
.oversea dl dd {
  position: absolute;
  cursor: pointer;
}


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

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

.oversea dl dd span::before,
.oversea 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;
}

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

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

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

.oversea dl .dd1 {
    top: 32.11%;
    left: 77.94%;
}
.oversea ul li {
  position: absolute; 
      top: 17%;
    right: 15%;
    width: 67%;
    
}
.oversea ul li img{
    width: 100%;
    transform-origin: right center;  
}
 
.tk {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  left: 0;
  top: 0;
  background: rgba(18, 19, 24, 0.3);
  z-index: 9999999999;
  display: none;
}

.tk .close img {
  position: absolute;
  right: 4%;
  top: -1.5rem;
  width: 2rem;
  padding: 0.5rem;
  background: var(--color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s linear;
}

.tk .close img:hover {
  background: var(--color2);
}

.tbox {
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}

.tbox.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.tbox .txt {
  background: #fff;
  padding: 5rem;
  border-radius: 2rem;
}

.tbox h5 {
  font-size: 2.2rem;
  color: var(--color);
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.tbox p strong {
  font-weight: 400;
  display: block;
}

.tbox p:not(:first-of-type) strong {
  margin-top: 2rem;
}

.tbox p {
  font-size: 1.4rem;
  line-height: 1.5;
}

/* tobig */
.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: 4%;
  justify-content: center;
}

.pages ul li {
  font-size: 1.4rem; 
  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;
}

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

.pages ul li:hover {
  color: var(--color);
  text-decoration: underline;
}
html[lang='en'] *{
    letter-spacing: 0 !important;
} 