@charset "UTF-8";
/* 主题变量 */
:root {
  --color-primary: #63c6bc;
  --color-primary-rgb: 95, 198, 188;
  --color-second: #1d2020;
  --color-second-rgb: 29, 32, 32;
  --color-text: #333333;
}

*, *::before, *::after {
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

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

.justify-content-center {
  justify-content: center;
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex;
  }
}
/*  组件  */
header.header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: transparent;
  height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header.header .navbar:not(.has-hover).active {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header.header .navbar:not(.has-hover).active .nav-logo img {
  filter: none;
}
header.header .navbar:not(.has-hover).active .nav-item > a {
  color: #333;
}
header.header .navbar:not(.has-hover).active .nav-item:hover > a, header.header .navbar:not(.has-hover).active .nav-item.active > a {
  color: var(--color-primary);
}
header.header .navbar:not(.has-hover).active .nav-item::after {
  filter: none;
}
header.header .navbar:not(.has-hover).active .social-icon, header.header .navbar:not(.has-hover).active .lang-switch {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
header.header .navbar:not(.has-hover).active .social-icon:hover, header.header .navbar:not(.has-hover).active .lang-switch:hover {
  background: var(--color-primary);
}
header.header .navbar:not(.has-hover).active .hamburger span {
  background: var(--color-primary);
}
@media screen and (max-width: 991px) {
  header.header .navbar:not(.has-hover).active .nav-item > a {
    color: rgba(255, 255, 255, 0.85);
  }
  header.header .navbar:not(.has-hover).active .nav-item:hover > a, header.header .navbar:not(.has-hover).active .nav-item.active > a {
    color: #fff;
  }
  header.header .navbar:not(.has-hover).active .nav-item::after {
    filter: none;
  }
}
header.header .navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  header.header .navbar {
    position: static;
  }
}
header.header .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header.header .nav-logo img {
  height: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
}
header.header .nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 1;
  min-width: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  header.header .nav-menu {
    position: fixed;
    top: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
    right: -280px;
    width: 280px;
    height: calc(100vh - clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem));
    background: var(--color-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    overflow-y: auto;
    transition: right 0.35s ease;
    z-index: 1050;
  }
  header.header .nav-menu.active {
    right: 0;
  }
}
header.header .nav-item {
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  header.header .nav-item {
    flex-shrink: initial;
  }
}
@media (min-width: 769px) {
  header.header .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(1px);
  }
  header.header .nav-item:hover .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 2px;
  }
  header.header .nav-item.product-nav:hover .dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
header.header .nav-item > a {
  display: block;
  padding: 0 clamp(0.625rem, -1.1662958843rem + 2.8921023359vw, 2.25rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #333;
  white-space: nowrap;
  line-height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  transition: color 0.3s;
}
@media (max-width: 768px) {
  header.header .nav-item > a {
    color: #fff;
    padding: 14px 24px;
    font-size: 15px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
header.header .nav-item:hover > a, header.header .nav-item.active > a {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  header.header .nav-item:hover > a, header.header .nav-item.active > a {
    color: #fff;
  }
}
header.header .navbar.has-hover {
  background: rgba(var(--color-primary-rgb), 0.95);
}
header.header .navbar.has-hover .nav-item .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
header.header .navbar.has-hover .nav-item .dropdown::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 100%;
  left: 0;
}
header.header .nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: clamp(6.25rem, 4.872080089rem + 2.2246941046vw, 7.5rem);
  padding: clamp(0.75rem, 0.1988320356rem + 0.8898776418vw, 1.25rem) 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: clamp(0rem, -0.5511679644rem + 0.8898776418vw, 0.5rem);
  box-shadow: 0 2px clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem) rgba(0, 0, 0, 0.1);
}
header.header .nav-item .dropdown a {
  display: block;
  padding: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem) clamp(0.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem);
  text-align: center;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #333;
  white-space: normal;
  transition: all 0.3s;
}
header.header .nav-item .dropdown a:hover {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  header.header .nav-item .dropdown {
    position: static;
    min-width: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(var(--color-primary-rgb), 0.4);
    box-shadow: none;
  }
  header.header .nav-item .dropdown a {
    padding: 10px 24px 10px 32px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #fff;
    text-align: left;
  }
  header.header .nav-item .dropdown a:hover {
    color: #fff;
  }
}
@media (max-width: 768px) {
  header.header .has-dropdown > a::after {
    content: "+";
    float: right;
    font-size: 18px;
    font-weight: 300;
    line-height: inherit;
    transition: transform 0.3s;
  }
  header.header .has-dropdown.open > a::after {
    content: "−";
  }
  header.header .has-dropdown.open > .dropdown {
    display: block;
  }
}
header.header .nav-bg-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 300px;
  background: rgba(var(--color-primary-rgb), 0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}
@media (max-width: 768px) {
  header.header .nav-bg-panel {
    display: none !important;
  }
}
header.header .navbar.has-hover .nav-bg-panel {
  opacity: 1;
  visibility: visible;
}
header.header .nav-right {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, -0.3267519466rem + 1.3348164627vw, 1.25rem);
  flex-shrink: 0;
  margin-left: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
@media (max-width: 768px) {
  header.header .nav-right {
    order: 3;
    margin-left: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  }
}
header.header .social-icon {
  width: clamp(1.875rem, 1.4616240267rem + 0.6674082314vw, 2.25rem);
  height: clamp(1.875rem, 1.4616240267rem + 0.6674082314vw, 2.25rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  flex-shrink: 0;
}
header.header .social-icon:hover {
  background: var(--color-primary);
}
header.header .lang-switch {
  width: clamp(1.875rem, 1.4616240267rem + 0.6674082314vw, 2.25rem);
  height: clamp(1.875rem, 1.4616240267rem + 0.6674082314vw, 2.25rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: all 0.3s;
  flex-shrink: 0;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-weight: bold;
  white-space: nowrap;
}
header.header .lang-switch:hover {
  color: var(--color-primary);
  background: #fff;
}
header.header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
@media (max-width: 768px) {
  header.header .hamburger {
    display: flex;
    order: 2;
    margin-left: auto;
  }
}
header.header .hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
header.header .hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header.header .hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header.header .mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  header.header .mobile-overlay {
    display: block;
    pointer-events: none;
  }
  header.header .mobile-overlay.active {
    pointer-events: auto;
  }
}
header.header .product-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  padding: clamp(1.25rem, -0.6790878754rem + 3.1145717464vw, 3rem) 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
header.header .product-dropdown.show {
  opacity: 1;
  pointer-events: auto;
}
header.header .product-dropdown::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
header.header .product-dropdown .container {
  display: flex;
  align-items: stretch;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
header.header .product-dropdown .label {
  width: clamp(6.25rem, 3.494160178rem + 4.4493882091vw, 8.75rem);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
header.header .product-dropdown .label span {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
header.header .product-dropdown .label ul {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
}
header.header .product-dropdown .label ul li {
  font-size: clamp(0.9375rem, 0.8686040044rem + 0.1112347052vw, 1rem);
  color: #666;
  cursor: pointer;
}
header.header .product-dropdown .label ul li.active {
  color: var(--color-primary);
}
header.header .product-dropdown .content {
  width: 100%;
}
header.header .product-dropdown .content .index-items {
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  max-height: clamp(19.375rem, 6.6292408231rem + 20.5784204672vw, 30.9375rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}
header.header .product-dropdown .content .index-items::-webkit-scrollbar {
  width: 0.25rem;
}
header.header .product-dropdown .content .index-items::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
header.header .product-dropdown .content .index-items::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}
header.header .product-dropdown .content .index-items .item .text {
  width: 100%;
}
header.header .product-dropdown .content .index-items .item .title, header.header .product-dropdown .content .index-items .item .subtitle {
  font-size: 12px;
}
header.header .product-dropdown .content .index-items .item .model {
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  margin: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) 0;
}
header.header .product-dropdown .content .index-items .item .model img {
  height: clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem);
}
header.header .search-module {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9991;
  width: 100%;
  height: clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem);
  background: rgba(21, 21, 21, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, -2.0570077864rem + 5.3392658509vw, 4.25rem);
}
header.header .search-module form {
  width: 100%;
}
header.header .search-module form input {
  width: 100%;
  font-size: clamp(1rem, -0.1023359288rem + 1.7797552836vw, 2rem);
  background: none;
  border: none;
  outline: none;
  color: #fff;
}
header.header .search-module form input::placeholder {
  color: #fff;
}
header.header .search-module form span {
  cursor: pointer;
}
header.header .search-module form span i {
  color: #fff;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
header.header .search-module.active {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  background: var(--color-second);
  color: #fff;
  padding-top: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
}
.footer .left .logo {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.footer .left .logo img {
  height: clamp(1.875rem, 1.4616240267rem + 0.6674082314vw, 2.25rem);
  filter: invert(1) brightness(10);
}
.footer .left .info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.footer .left .info .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.footer .left .info .info-item i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  flex-shrink: 0;
}
.footer .left .social {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.6151279199rem + 2.0022246941vw, 1.75rem);
}
.footer .left .social a {
  color: #fff;
  position: relative;
}
.footer .left .social a span {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: clamp(7.5rem, 6.122080089rem + 2.2246941046vw, 8.75rem);
}
.footer .left .social a span img {
  width: 100%;
}
.footer .left .social a:hover span {
  display: block;
}
.footer .left .social a:hover i {
  transform: scale(1.2);
}
.footer .left .social i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  transition: all 0.3s;
  display: block;
}
.footer .nav-menu {
  display: none;
  width: 100%;
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.footer .nav-menu li > a {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #fff;
}
.footer .nav-menu li .dropdown {
  margin-top: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.footer .nav-menu li .dropdown a {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  opacity: 0.68;
  color: #fff;
  transition: all 0.3s;
}
.footer .nav-menu li .dropdown a:hover {
  opacity: 1;
}
.footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  padding: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem) 0;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: rgba(255, 255, 255, 0.42);
}
.footer .bottom .container {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.footer .bottom .container a {
  transition: all 0.3s;
}
.footer .bottom .container a:hover {
  color: #fff;
}
@media (min-width: 992px) {
  .footer > .container {
    display: flex;
  }
  .footer > .container .left {
    width: 37%;
    flex-shrink: 0;
  }
  .footer .nav-menu {
    display: flex;
    justify-content: space-between;
  }
  .footer .bottom .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.suspend {
  position: fixed;
  z-index: 999;
  bottom: 5%;
  right: clamp(0.3125rem, -0.4453559511rem + 1.2235817575vw, 1rem);
  transition: all 0.3s;
}
.suspend ul {
  transition: all 0.3s;
}
.suspend ul li {
  margin-bottom: clamp(0.125rem, -0.2883759733rem + 0.6674082314vw, 0.5rem);
}
.suspend ul li.cart i {
  position: relative;
}
.suspend ul li.cart i span {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -5%);
  width: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  height: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  z-index: 2;
  font-size: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
}
.suspend ul li.mod_backTop {
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.suspend ul li.mod_backTop.active {
  opacity: 1;
  pointer-events: auto;
}
.suspend ul li a, .suspend ul li button {
  width: clamp(2.875rem, 2.0482480534rem + 1.3348164627vw, 3.625rem);
  height: clamp(2.875rem, 2.0482480534rem + 1.3348164627vw, 3.625rem);
  border: none;
  padding: 0;
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.suspend ul li a:hover, .suspend ul li button:hover {
  filter: brightness(95%);
  transform: scale(0.95);
}
.suspend ul li a i, .suspend ul li button i {
  font-size: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
}
.suspend .open-btn {
  position: absolute;
  right: calc(100% + 1px);
  top: 0;
  color: var(--color-primary);
  padding: 4px 0;
}
.suspend .open-btn i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .suspend {
    transform: translateX(calc(100% + 10px));
  }
  .suspend.active {
    transform: translateX(0);
  }
  .suspend.active ul {
    opacity: 1;
    pointer-events: auto;
  }
  .suspend ul {
    opacity: 0;
    pointer-events: none;
  }
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Arial", "Microsoft YaHei", sans-serif;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}

@font-face {
  font-display: swap;
  font-family: "ROBOTOCONDENSED-REGULAR";
  src: url("../fonts/ROBOTOCONDENSED-REGULAR.TTF");
}
.text-center {
  text-align: center;
}

.g-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4375rem, -0.0447719689rem + 0.7786429366vw, 0.875rem);
  color: #fff;
  letter-spacing: 2px;
  font-weight: 400;
}
.g-title.text-left {
  align-items: flex-start;
}
.g-title.img {
  flex-direction: column;
  justify-content: center;
}
.g-title.black {
  color: #333;
}
.g-title span {
  font-size: clamp(1.5rem, 0.2598720801rem + 2.0022246941vw, 2.625rem);
  line-height: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, -0.0767519466rem + 1.3348164627vw, 1.5rem);
}
.g-title span:not(img) {
  font-weight: normal;
}
.g-title img {
  height: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  filter: invert(1) brightness(10);
}
.g-title strong {
  font-size: clamp(1.5rem, 0.2598720801rem + 2.0022246941vw, 2.625rem);
  text-transform: uppercase;
}
.g-title p {
  font-size: clamp(1rem, 0.3110400445rem + 1.1123470523vw, 1.625rem);
}
.g-title .g-more {
  margin-top: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}

.g-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  height: 34px;
  border-radius: 17px;
  color: #fff;
  padding: 0 clamp(1rem, 0.37993604rem + 1.0011123471vw, 1.5625rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid #fff;
  line-height: 1;
  cursor: pointer;
}
.g-more.black {
  color: #999;
  border-color: #ccc;
}
.g-more.black:hover {
  border-color: #fff;
}
.g-more span {
  font-size: inherit;
}
.g-more:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5625rem rgba(26, 54, 93, 0.3);
}

.container {
  width: 100%;
  max-width: 1890px;
  padding: 0 clamp(1.25rem, -8.7399193548rem + 16.1290322581vw, 10.3125rem);
  margin: 0 auto;
}

.g-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-hero {
  margin-top: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  height: calc(100vh - clamp(7.5rem, 1.988320356rem + 8.8987764182vw, 12.5rem));
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4%;
  color: #fff;
}
.page-hero.null {
  height: 0;
  padding: 0;
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.page-hero.pt8 {
  padding-top: 6%;
}
.page-hero .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.page-hero .title .type {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.page-hero .title h1 {
  display: flex;
  align-items: center;
  gap: clamp(0.9375rem, 0.31743604rem + 1.0011123471vw, 1.5rem);
  font-size: clamp(1.5rem, 0.2598720801rem + 2.0022246941vw, 2.625rem);
  text-transform: uppercase;
}
.page-hero .title h1 img {
  height: clamp(1.25rem, 0.4232480534rem + 1.3348164627vw, 2rem);
  filter: invert(1) brightness(10);
}
.page-hero .title .slogan {
  font-size: clamp(1.125rem, 0.5738320356rem + 0.8898776418vw, 1.625rem);
}
@media (min-width: 769px) and (max-width: 991px) {
  .page-hero {
    height: 30vh;
  }
}
@media (max-width: 768px) {
  .page-hero {
    margin-top: 0;
    height: 26vh;
  }
}

.page-main {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero-section .hero-swiper {
  width: 100%;
  height: 100%;
  background: #000;
}
.hero-section .hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-swiper .swiper-slide.swiper-slide-active .container {
  transform: translateY(0);
  transition-delay: 0.5s;
  opacity: 1;
}
.hero-section .hero-swiper .swiper-slide .container {
  padding-top: 10%;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  padding-bottom: 5%;
  transform: translateY(10%);
  transition: all 0.8s ease;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero-section .hero-swiper .swiper-slide .container {
    align-items: center;
    text-align: center;
  }
}
.hero-section .hero-swiper .slide-title {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  line-height: 1.1;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero-section .hero-swiper .slide-title {
    text-align: center;
  }
}
.hero-section .hero-swiper .slide-model {
  display: flex;
  align-items: center;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  font-size: clamp(1.25rem, -0.2657119021rem + 2.447163515vw, 2.625rem);
  margin: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem) 0;
  line-height: 1;
}
.hero-section .hero-swiper .slide-model img {
  height: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  filter: invert(1) brightness(10);
}
.hero-section .hero-swiper .slide-subtitle {
  font-size: clamp(1.125rem, 0.5738320356rem + 0.8898776418vw, 1.625rem);
  text-align: right;
  margin-bottom: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  line-height: 1.1;
}
@media (max-width: 768px) {
  .hero-section .hero-swiper .slide-subtitle {
    text-align: center;
  }
}
.hero-section .hero-swiper .hero-prev,
.hero-section .hero-swiper .hero-next {
  width: clamp(2.25rem, 1.6988320356rem + 0.8898776418vw, 2.75rem);
  height: clamp(2.25rem, 1.6988320356rem + 0.8898776418vw, 2.75rem);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.hero-section .hero-swiper .hero-prev::after,
.hero-section .hero-swiper .hero-next::after {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  font-weight: 700;
  color: #fff;
}
.hero-section .hero-swiper .hero-prev:hover,
.hero-section .hero-swiper .hero-next:hover {
  background: rgba(var(--color-second), 0.5);
}
.hero-section .hero-swiper-label {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  z-index: 2;
}
.hero-section .hero-swiper-label .swiper {
  height: 96px;
  width: clamp(10rem, 7.244160178rem + 4.4493882091vw, 12.5rem);
  position: relative;
  margin-left: 0;
}
.hero-section .hero-swiper-label .swiper::after {
  content: "";
  width: 3px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
.hero-section .hero-swiper-label .swiper .swiper-slide.swiper-slide-thumb-active span {
  opacity: 1;
}
.hero-section .hero-swiper-label .swiper .swiper-slide span {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  opacity: 0.5;
  padding-left: clamp(1rem, 0.3110400445rem + 1.1123470523vw, 1.625rem);
  line-height: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 991px) {
  .hero-section {
    height: 50vh;
  }
}

.index-product {
  position: relative;
  margin-top: clamp(0.625rem, 0.4183120133rem + 0.3337041157vw, 0.8125rem);
}
.index-product > .container {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
}
.index-product .product-name-swiper {
  margin-top: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem) !important;
}
.index-product .product-name-swiper .swiper-slide {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  opacity: 0.75;
  transition: all 0.3s;
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
  cursor: pointer;
  text-align: center;
}
.index-product .product-name-swiper .swiper-slide.active {
  opacity: 1;
}
.index-product .product-swiper {
  height: 100vh;
}
.index-product .product-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
}
.index-product .product-swiper .swiper-slide.swiper-slide-active .container {
  opacity: 1;
  transform: translateY(-20%);
  transition-delay: 0.5s;
}
.index-product .product-swiper .swiper-slide .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.8s ease;
}
.index-product .product-swiper .swiper-slide .title {
  width: 31%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-product .product-swiper .swiper-slide .title .name {
  font-size: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}
.index-product .product-swiper .swiper-slide .title .name span {
  font-size: clamp(1.5rem, 0.2598720801rem + 2.0022246941vw, 2.625rem);
  font-weight: bold;
}
.index-product .product-swiper .swiper-slide .title .type {
  padding: clamp(0.1875rem, -0.0191879867rem + 0.3337041157vw, 0.375rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  border: 1px solid #fff;
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  transition: all 0.3s ease;
}
.index-product .product-swiper .swiper-slide .title .type:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.index-product .product-swiper .swiper-slide ul {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.index-product .product-swiper .swiper-slide ul li {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
.index-product .product-swiper .swiper-slide ul li span {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  font-weight: bold;
  margin-top: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.index-product .product-swiper .product-prev, .index-product .product-swiper .product-next {
  top: 60%;
  transform: translateY(-50%);
  left: clamp(0.3125rem, -10.7108592881rem + 17.7975528365vw, 10.3125rem);
}
.index-product .product-swiper .product-prev::after, .index-product .product-swiper .product-next::after {
  display: none;
}
.index-product .product-swiper .product-prev i, .index-product .product-swiper .product-next i {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  color: #fff;
}
.index-product .product-swiper .product-next {
  left: auto;
  right: clamp(0.3125rem, -10.7108592881rem + 17.7975528365vw, 10.3125rem);
}
.index-product .product-swiper .product-next i {
  transform: rotate(180deg);
}
@media screen and (min-width: 992px) {
  .index-product .product-name-swiper {
    margin: 0 clamp(0rem, -23.4246384872rem + 37.8197997775vw, 21.25rem);
  }
  .index-product .product-swiper .swiper-slide.swiper-slide-active .container {
    transform: translateY(-100%);
  }
  .index-product .product-swiper .swiper-slide .container {
    flex-direction: row;
  }
}
@media screen and (max-width: 992px) {
  .index-product .product-swiper {
    height: 60vh;
  }
  .index-product .product-swiper .swiper-slide .container {
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .index-product .product-swiper .swiper-slide .title {
    width: 100%;
    justify-content: flex-start;
  }
  .index-product .product-swiper .swiper-slide ul {
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .index-product .product-swiper .swiper-slide ul li {
    flex-shrink: 0;
  }
}

.index-energy {
  margin-top: clamp(0.625rem, 0.4183120133rem + 0.3337041157vw, 0.8125rem);
  position: relative;
}
.index-energy .g-title {
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.index-energy img {
  display: block;
}
@media screen and (max-width: 991px) {
  .index-energy {
    padding-top: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
  }
  .index-energy .g-title {
    position: static;
    margin-bottom: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
    color: #333;
  }
  .index-energy .g-title span img {
    filter: none;
  }
  .index-energy img.g-bg {
    position: static;
  }
}

.index-items {
  padding: clamp(0.625rem, 0.4183120133rem + 0.3337041157vw, 0.8125rem);
  display: grid;
  gap: clamp(0.625rem, 0.4183120133rem + 0.3337041157vw, 0.8125rem);
}
.index-items .item {
  display: block;
  position: relative;
  z-index: 2;
  padding-top: 76%;
  color: #fff;
  overflow: hidden;
}
.index-items .item:hover img.g-bg {
  transform: scale(1.05);
}
.index-items .item .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
.index-items .item .title {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  line-height: 1.1;
  font-weight: 400;
}
@media (max-width: 768px) {
  .index-items .item .title {
    text-align: center;
  }
}
.index-items .item .model {
  display: flex;
  align-items: center;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  font-size: clamp(1.25rem, -0.2657119021rem + 2.447163515vw, 2.625rem);
  margin: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem) 0;
  margin-bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  line-height: 1;
  font-weight: bold;
}
.index-items .item .model img {
  height: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  filter: invert(1) brightness(10);
}
.index-items .item .subtitle {
  font-size: clamp(1.125rem, 0.5738320356rem + 0.8898776418vw, 1.625rem);
  text-align: center;
  margin-bottom: clamp(0.9375rem, 0.2485400445rem + 1.1123470523vw, 1.5625rem);
  line-height: 1.6;
}
.index-items .item img.g-bg {
  transition: all 0.5s ease;
}
@media screen and (min-width: 992px) {
  .index-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.index-case {
  position: relative;
}
.index-case .g-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.index-case .swiper .swiper-slide {
  min-height: clamp(16.25rem, -16.8200778643rem + 53.3926585095vw, 46.25rem);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.index-case .swiper .swiper-slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
  z-index: 2;
}
.index-case .swiper .swiper-slide .title {
  margin: 0 clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem);
  margin-bottom: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 5;
}
.index-case .swiper .case-prev, .index-case .swiper .case-next {
  color: #fff;
  left: 20%;
}
.index-case .swiper .case-prev:hover, .index-case .swiper .case-next:hover {
  scale: 1.2;
  transition: all 0.5s ease;
}
.index-case .swiper .case-prev::after, .index-case .swiper .case-next::after {
  font-size: clamp(1.5rem, -0.0157119021rem + 2.447163515vw, 2.875rem);
}
.index-case .swiper .case-next {
  right: 20%;
  left: auto;
}

.index-factory {
  position: relative;
  margin-top: clamp(0.625rem, 0.4183120133rem + 0.3337041157vw, 0.8125rem);
}
.index-factory img {
  width: 100%;
  display: block;
}
.index-factory img.logo {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  width: auto;
  height: clamp(3.75rem, -4.9308954394rem + 14.0155728587vw, 11.625rem);
}

.index-about {
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
}
.index-about .desc {
  text-align: center;
  line-height: 1.8;
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-about ul {
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.index-about ul li {
  display: flex;
  justify-content: center;
}
.index-about ul li:not(:last-child) {
  border-right: 1px solid #c3c4c4;
}
.index-about ul li .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index-about ul li .num {
  color: var(--color-primary);
  display: flex;
  align-items: flex-end;
  gap: clamp(0.1875rem, -0.0191879867rem + 0.3337041157vw, 0.375rem);
}
.index-about ul li .num span {
  font-size: clamp(1.5rem, -1.6692157953rem + 5.1167964405vw, 4.375rem);
  font-family: "ROBOTOCONDENSED-REGULAR";
  font-weight: bold;
  line-height: 1;
}
.index-about ul li .num sub {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  margin-bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.index-about ul li p {
  text-align: center;
  color: #777;
}
@media screen and (max-width: 768px) {
  .index-about ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .index-about ul li {
    border: none !important;
  }
}

.index-news {
  padding: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem) 0;
}
.index-news .g-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-news .more {
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}

.news-list {
  display: grid;
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  grid-template-columns: repeat(3, 1fr);
}
.news-list .list-item .img {
  padding-top: 70%;
  position: relative;
  overflow: hidden;
  border-radius: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
}
.news-list .list-item .img img {
  transition: all 0.5s ease;
}
.news-list .list-item .text {
  padding: clamp(0rem, -1.377919911rem + 2.2246941046vw, 1.25rem);
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  color: #777;
}
.news-list .list-item .text h3 {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.news-list .list-item .text p {
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .list-item .text .ico {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
}
.news-list .list-item .text .ico i {
  transition: all 0.3s;
}
.news-list .list-item:hover .img img {
  transform: scale(1.05);
}
.news-list .list-item:hover .text h3 {
  color: var(--color-primary);
}
.news-list .list-item:hover .text .ico i {
  transform: rotate(45deg);
}
@media (min-width: 769px) and (max-width: 991px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.index-message {
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
  background: #f9f9f9;
  position: relative;
}
.index-message img {
  position: absolute;
  bottom: 0;
  right: 5%;
  max-width: clamp(15.625rem, -15.3781979978rem + 50.0556173526vw, 43.75rem);
  opacity: 0.1;
}
.index-message .left {
  position: relative;
  z-index: 2;
}
.index-message .desc {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  line-height: 1.8;
  color: #666;
}
.index-message form {
  margin-top: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem) clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
}
.index-message form .group {
  border-bottom: 1px solid #dedede;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.index-message form .group.content {
  grid-column: span 2;
}
.index-message form .group label {
  flex-shrink: 0;
  color: #999;
}
.index-message form .group input {
  width: 100%;
  height: clamp(2.125rem, 1.1604560623rem + 1.5572858732vw, 3rem);
  background: none;
  color: #454545;
  font-family: inherit;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.index-message form .group.button {
  border: none;
}
.index-message form .group.button button {
  display: flex;
  align-items: center;
  border-radius: clamp(1.0625rem, 0.5802280311rem + 0.7786429366vw, 1.5rem);
  background: var(--color-primary);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  height: clamp(2.125rem, 1.1604560623rem + 1.5572858732vw, 3rem);
  padding: 0 clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  color: #fff;
}
.index-message .form-error-tip {
  white-space: nowrap;
  color: #999;
}
@media screen and (min-width: 992px) {
  .index-message img {
    opacity: 1;
  }
  .index-message .left {
    width: 57%;
  }
}

.ny-nav {
  padding: clamp(0.9375rem, -0.2337319244rem + 1.8909899889vw, 2rem) 0;
  box-shadow: 0 clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem) clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) rgba(0, 0, 0, 0.1);
}
.ny-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ny-nav .nav {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -3.508759733rem + 6.6740823137vw, 4.375rem);
}
.ny-nav .nav li.active a {
  color: var(--color-primary);
}
.ny-nav .nav li a {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #333;
  padding: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  display: block;
}

.about-1 {
  padding-top: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  padding-bottom: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem);
}
.about-1 .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.about-1 .content .left {
  padding-top: clamp(0rem, -2.755839822rem + 4.4493882091vw, 2.5rem);
}
.about-1 .content .left .g-content {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  line-height: 2;
  color: #333;
  max-height: clamp(25rem, 15.3545606229rem + 15.5728587319vw, 33.75rem);
}
.about-1 .content .left .g-content h2 {
  font-weight: normal;
}
.about-1 .content .left .g-content p {
  margin-top: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  text-indent: 2em;
}
.about-1 .content .right {
  display: flex;
  align-items: flex-end;
}
.about-1 ul.number {
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.about-1 ul.number li {
  display: flex;
  justify-content: center;
}
.about-1 ul.number li:not(:last-child) {
  border-right: 1px solid #c3c4c4;
}
.about-1 ul.number li .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-1 ul.number li .num {
  color: var(--color-primary);
  display: flex;
  align-items: flex-end;
  gap: clamp(0.1875rem, -0.0191879867rem + 0.3337041157vw, 0.375rem);
}
.about-1 ul.number li .num span {
  font-size: clamp(1.5rem, -1.6692157953rem + 5.1167964405vw, 4.375rem);
  font-family: "ROBOTOCONDENSED-REGULAR";
  font-weight: bold;
  line-height: 1;
}
.about-1 ul.number li .num sub {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  margin-bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.about-1 ul.number li p {
  text-align: center;
  color: #777;
}
@media screen and (max-width: 991px) {
  .about-1 .content {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-1 ul.number {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  }
  .about-1 ul.number li {
    border: none !important;
  }
}

.about-2 {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6%;
}
.about-2 p {
  font-size: clamp(1rem, 0.3110400445rem + 1.1123470523vw, 1.625rem);
  color: #fff;
  margin: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) 0;
}
@media screen and (max-width: 991px) {
  .about-2 {
    padding-top: 0;
    height: auto;
  }
  .about-2 .mod-title {
    color: #333;
  }
  .about-2 p {
    color: #666;
  }
  .about-2 img.g-bg {
    position: static;
    transform: none;
    width: 100%;
    display: block;
  }
}

.about-3 {
  padding-top: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem);
}
.about-3 .swiper {
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.about-3 .swiper .swiper-slide {
  min-height: clamp(16.25rem, -16.8200778643rem + 53.3926585095vw, 46.25rem);
}
.about-3 .swiper .style-prev, .about-3 .swiper .style-next {
  color: #fff;
  left: 20%;
}
.about-3 .swiper .style-prev::after, .about-3 .swiper .style-next::after {
  font-size: clamp(1.5rem, -0.0157119021rem + 2.447163515vw, 2.875rem);
}
.about-3 .swiper .style-next {
  right: 20%;
  left: auto;
}

.about-4 {
  padding-top: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem);
}
.about-4 .map {
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-4 .map ul {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.about-4 .map ul li {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.about-4 .map ul li:nth-child(1) {
  z-index: 1;
}
.about-4 .map ul li:nth-child(2) {
  z-index: 2;
}
.about-4 .map ul li:nth-child(3) {
  z-index: 3;
}
.about-4 .map ul li:nth-child(4) {
  z-index: 4;
}
.about-4 .map ul li:nth-child(5) {
  z-index: 5;
}
.about-4 .map ul li:nth-child(6) {
  z-index: 6;
}
.about-4 .map ul li:nth-child(7) {
  z-index: 7;
}
.about-4 .map ul li:nth-child(8) {
  z-index: 8;
}
.about-4 .map ul li:nth-child(9) {
  z-index: 9;
}
.about-4 .map ul li:nth-child(10) {
  z-index: 10;
}
.about-4 .map ul li.active .box {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}
.about-4 .map ul li .dot {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  height: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.about-4 .map ul li .dot i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 50%;
}
.about-4 .map ul li .dot::after, .about-4 .map ul li .dot::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.about-4 .map ul li .dot::before {
  animation: dot-expand 2s linear infinite;
}
.about-4 .map ul li .dot::after {
  animation: dot-expand 2s 1s linear infinite;
  opacity: 0.5;
}
.about-4 .map ul li .box {
  padding: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background: #fff;
  left: clamp(1.25rem, -0.4723998888rem + 2.7808676307vw, 2.8125rem);
  top: 50%;
  transform: translateX(clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem)) translateY(-50%);
  position: absolute;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 10;
}
.about-4 .map ul li .box::after {
  content: "";
  width: calc(100% + clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem));
  height: calc(100% + clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.35);
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  z-index: -1;
  box-shadow: 0 clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) rgba(0, 0, 0, 0.1);
}
.about-4 .map ul li .box img {
  height: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
}
.about-4 .map ul li .box .text {
  white-space: nowrap;
}
.about-4 .map ul li .box .text span {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  font-weight: bold;
}
.about-4 .map ul li .box .text p {
  font-size: clamp(0.8125rem, 0.7436040044rem + 0.1112347052vw, 0.875rem);
}

@keyframes dot-expand {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
.about-5 {
  padding: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem) 0;
}
.about-5 ul {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.about-5 ul li {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #333;
  cursor: pointer;
}
.about-5 ul li.active {
  color: var(--color-primary);
}
.about-5 ul .line {
  width: 1px;
  height: clamp(0.625rem, 0.0738320356rem + 0.8898776418vw, 1.125rem);
  background: #919191;
}
.about-5 .items {
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.625rem, -0.4773359288rem + 1.7797552836vw, 1.625rem) clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
}
.about-5 .items .item {
  background: #f9f9f9;
  padding: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  transition: all 0.3s;
}
.about-5 .items .item:hover {
  background: var(--color-primary);
  color: #fff;
}
.about-5 .items .item:hover span i {
  color: #fff;
}
.about-5 .items .item span {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.about-5 .items .item span i {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  transition: all 0.3s;
}
.about-5 .items .item a {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.about-5 .items .item a i {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.about-5 .loading {
  margin-top: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
@media screen and (max-width: 991px) {
  .about-5 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pd-1 {
  padding-top: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
}
.pd-1 ul {
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.625rem, -3.0953837597rem + 6.0066740823vw, 4rem);
}
.pd-1 ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.pd-1 ul li i {
  font-size: clamp(1.5rem, 0.6732480534rem + 1.3348164627vw, 2.25rem);
  color: var(--color-primary);
}

.pd-2 {
  padding-top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.pd-2 .container {
  display: flex;
}
.pd-2 .img {
  aspect-ratio: 762/583;
  overflow: hidden;
  width: 48%;
  flex-shrink: 0;
}
.pd-2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-2 .text {
  width: 100%;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem) clamp(0.9375rem, -3.2651557286rem + 6.7853170189vw, 4.75rem);
}
.pd-2 .text .title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.1875rem, -0.0191879867rem + 0.3337041157vw, 0.375rem);
  color: #333;
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.pd-2 .text .title span {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-size: clamp(1.125rem, -0.1151279199rem + 2.0022246941vw, 2.25rem);
}
.pd-2 .text .title span img {
  height: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  filter: invert(1) grayscale(5);
}
.pd-2 .text .title p {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  line-height: 2;
  color: #333;
}
.pd-2 .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .pd-2 .container {
    flex-direction: column;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .pd-2 .img {
    width: 100%;
  }
  .pd-2 .text {
    padding: 0;
  }
}

.pd-title {
  color: #333;
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.pd-title h2 {
  font-size: clamp(1.125rem, -0.5285038932rem + 2.6696329255vw, 2.625rem);
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-weight: normal;
}
.pd-title p {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  line-height: 1.6;
}

.case-content {
  padding: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem) 0;
}
.case-content.related {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.case-content.related .title {
  font-size: clamp(1.25rem, 0.9744160178rem + 0.4449388209vw, 1.5rem);
  font-weight: normal;
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.case-content.related .items {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
}
.case-content.related .item {
  background: #fff;
}
.case-content.related .item .info {
  padding: clamp(0.75rem, -0.0767519466rem + 1.3348164627vw, 1.5rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.case-content.related .item .info .text h2 {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.case-content.related .item .info .text p {
  font-size: 14px;
}
.case-content.related .item .info .more {
  margin-left: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
}
.case-content .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem) clamp(1.25rem, -1.2302558398rem + 4.0044493882vw, 3.5rem);
}
.case-content .item {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  transition: all 0.3s;
}
.case-content .item:hover .img img {
  transform: scale(1.05);
}
.case-content .item:hover .info .text h2 {
  color: var(--color-primary);
}
.case-content .item:hover .info .more::after {
  transform: translateX(0);
}
.case-content .item .img {
  aspect-ratio: 760/455;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.case-content .item .img img {
  transition: all 0.3s;
  z-index: 1;
}
.case-content .item .info {
  padding: clamp(0.75rem, -0.0767519466rem + 1.3348164627vw, 1.5rem) clamp(0.9375rem, -0.2337319244rem + 1.8909899889vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-content .item .info .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.case-content .item .info .text h2 {
  font-size: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  color: #333;
  transition: all 0.3s;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.case-content .item .info .text p {
  line-height: 1.8;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.case-content .item .info .more {
  margin-left: clamp(0.9375rem, -4.2296996663rem + 8.3426028921vw, 5.625rem);
  position: relative;
  z-index: 2;
}
.case-content .item .info .more::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #dbdbdb;
  position: absolute;
  right: 0;
  transform: translateX(calc(-1 * clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem)));
  top: 0;
  z-index: -1;
  transition: all 0.3s;
}
.case-content .item .info .more i {
  width: clamp(2.125rem, 1.2982480534rem + 1.3348164627vw, 2.875rem);
  height: clamp(2.125rem, 1.2982480534rem + 1.3348164627vw, 2.875rem);
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-content .g-pagination {
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  padding: clamp(0rem, -2.0668798665rem + 3.3370411568vw, 1.875rem) 0;
}
@media screen and (max-width: 991px) {
  .case-content .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .case-content.related .items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.case-pagination {
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  display: flex;
  gap: clamp(1.25rem, -5.501807564rem + 10.9010011123vw, 7.375rem);
  justify-content: space-between;
}
.case-pagination .cp-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #f9f9f9;
  padding: clamp(0.5rem, -0.1889599555rem + 1.1123470523vw, 1.125rem) clamp(0.9375rem, -1.1982758621rem + 3.4482758621vw, 2.875rem);
  transition: all 0.3s;
  color: #666;
}
.case-pagination .cp-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.case-pagination .cp-btn .text {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem);
}
.case-pagination .cp-btn .text span:last-child {
  display: flex;
  flex-direction: column;
  gap: clamp(0.1875rem, -0.0191879867rem + 0.3337041157vw, 0.375rem);
}
.case-pagination .cp-btn .text span:last-child time {
  font-size: 14px;
}
.case-pagination .cp-btn i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  transform: rotateY(180deg);
}
@media screen and (max-width: 991px) {
  .case-pagination {
    flex-direction: column;
  }
}

.case-detail {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.case-detail .box {
  padding: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
  background: #fff;
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  color: #333;
}
.case-detail .box > h1 {
  font-size: clamp(1.125rem, 0.5738320356rem + 0.8898776418vw, 1.625rem);
  font-weight: normal;
  margin-bottom: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.case-detail .box > h2 {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  margin-bottom: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  font-weight: normal;
}
.case-detail .box .time-view {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  color: #666;
}
.case-detail .box .time-view span {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.case-detail .box .time-view span i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-primary);
}
.case-detail .box .g-content {
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  padding-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  border-top: 1px solid #dedede;
  line-height: 2;
}
.case-detail .box .g-content p:not(:first-child) {
  margin-top: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}

.contact-content {
  padding-top: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
}
.contact-content .box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.contact-content .box .left {
  width: 50%;
  padding: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
}
.contact-content .box .right {
  width: 50%;
  height: clamp(18.75rem, 2.9039210234rem + 25.5839822024vw, 33.125rem);
}
.contact-content ul {
  margin: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.contact-content ul li {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  color: #333;
}
.contact-content ul li i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
  color: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .contact-content .box {
    flex-direction: column;
    gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  }
  .contact-content .box .left, .contact-content .box .right {
    width: 100%;
  }
}

.social-media {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.social-media a {
  color: #b8b8b8;
  transition: all 0.3s;
  position: relative;
}
.social-media a span {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: clamp(7.5rem, 6.122080089rem + 2.2246941046vw, 8.75rem);
}
.social-media a span img {
  width: 100%;
}
.social-media a:hover {
  color: var(--color-primary);
  transform: scale(1.2);
}
.social-media a:hover span {
  display: block;
}
.social-media a i {
  font-size: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
}

.anchor {
  position: absolute;
  left: 0;
  top: calc(-1 * clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem));
}

.mod-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  line-height: 1;
}
.mod-title.black {
  color: #333;
}
.mod-title.text-left {
  align-items: flex-start;
}
.mod-title .img-title {
  height: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  filter: invert(1) brightness(10);
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.mod-title .en {
  font-size: clamp(1.125rem, -0.5285038932rem + 2.6696329255vw, 2.625rem);
  text-transform: uppercase;
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-weight: bold;
}
.mod-title .cn {
  font-size: clamp(1.5rem, 1.3622080089rem + 0.2224694105vw, 1.625rem);
  font-weight: normal;
  letter-spacing: 2px;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  color: #777777;
}
.crumbs a, .crumbs span {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.crumbs a:hover {
  color: var(--color-primary);
}
.crumbs i {
  margin: 0 clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
@media screen and (max-width: 991px) {
  .crumbs {
    display: none;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    width: calc(100% + 20px);
  }
  .crumbs span {
    white-space: nowrap;
  }
}

.g-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.g-pagination ul li.active.disabled {
  opacity: 1;
}
.g-pagination ul li.active span {
  background-color: var(--color-primary);
  color: #fff;
}
.g-pagination ul li.disabled {
  opacity: 0.65;
}
.g-pagination ul li a,
.g-pagination ul li span {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  margin: 0 clamp(0.125rem, -0.2883759733rem + 0.6674082314vw, 0.5rem);
  padding: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem) clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  border-radius: 0.25rem;
  color: #454545;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
}
.g-pagination ul li a.active:hover {
  color: #fff;
}
.g-pagination ul li a:hover {
  color: var(--color-primary);
}

.g-content {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 1.6;
  color: #666666;
}
.g-content img {
  max-width: 100%;
  height: auto !important;
}
.g-content table {
  max-width: 100% !important;
}
.g-content iframe {
  aspect-ratio: 16/9;
}

/* 设置滚动条的样式 */
.h-auto, .about-1 .content .left .g-content {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.h-auto::-webkit-scrollbar, .about-1 .content .left .g-content::-webkit-scrollbar {
  width: 0.25rem;
}
.h-auto::-webkit-scrollbar-track, .about-1 .content .left .g-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.h-auto::-webkit-scrollbar-thumb, .about-1 .content .left .g-content::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

.tooltip {
  transition: all 0.3s ease;
  padding: 8px 20px;
  border-radius: 4px;
  max-width: 300px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  background: rgba(var(--color-primary-rgb), 0.8);
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}
.tooltip.hidden {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tooltip {
    padding: 8px 10px;
    padding-right: 30px;
  }
}/*# sourceMappingURL=styles.css.map */