@charset "UTF-8";
/* 主题变量 */
:root {
  --color-primary: #1f2f53;
  --color-primary-rgb: 31, 47, 83;
  --color-second: #4a9eff;
  --color-second-rgb: 74, 158, 255;
  --color-text: #333333;
}

.relative {
  position: relative;
}

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

*, *::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;
}

/*  组件  */
header.header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  transition: all 0.3s ease-in-out;
}
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;
}
header.header .navbar .container::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: calc(100% - clamp(2.5rem, -9.9012791991rem + 20.022246941vw, 13.75rem));
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
header.header .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header.header .nav-logo img {
  height: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  filter: invert(1) brightness(2);
}
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;
  }
}
header.header .nav-item > a {
  display: block;
  padding: 0 clamp(0.625rem, -0.6151279199rem + 2.0022246941vw, 1.75rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #fff;
  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 {
    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: #fff;
}
header.header .nav-item.active::after {
  content: "";
  position: absolute;
  bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 15px;
  background: url(../img/ico.svg) center no-repeat;
  background-size: contain;
  filter: invert(1) brightness(2);
}
@media (max-width: 768px) {
  header.header .nav-item.active::after {
    display: none;
  }
}
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: translateY(0);
}
header.header .nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: clamp(0.75rem, 0.1988320356rem + 0.8898776418vw, 1.25rem) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.3s ease;
}
@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);
  }
}
header.header .nav-item .dropdown a {
  display: block;
  padding: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem) clamp(0.625rem, -0.6151279199rem + 2.0022246941vw, 1.75rem);
  padding-right: 0;
  font-size: clamp(0.75rem, 0.6811040044rem + 0.1112347052vw, 0.8125rem);
  color: #ccc;
  white-space: normal;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  header.header .nav-item .dropdown a {
    padding: 10px 24px 10px 32px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
}
header.header .nav-item .dropdown a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  header.header .nav-item .dropdown a:hover {
    padding-left: 38px;
  }
}
@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: 0;
  background: rgba(var(--color-primary-rgb), 0.95);
  opacity: 0;
  visibility: hidden;
  transition: height 0.3s ease, opacity 0.3s ease, visibility 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);
  }
}
@media (max-width: 1100px) {
  header.header .nav-right .social-icon {
    display: none;
  }
}
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(255, 255, 255, 0.35);
  color: #fff;
  transition: all 0.3s;
  flex-shrink: 0;
}
header.header .social-icon:hover {
  color: var(--color-primary);
  background: #fff;
}
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: #fff;
  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;
  }
}

.footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: clamp(1.875rem, -3.636679644rem + 8.8987764182vw, 6.875rem);
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
}
.footer .left .logo {
  margin-bottom: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.footer .left .logo img {
  height: clamp(2.125rem, 0.0581201335rem + 3.3370411568vw, 4rem);
  opacity: 0.5;
  filter: invert(1) brightness(2);
}
.footer .left .info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  margin-bottom: clamp(0.75rem, 0.1988320356rem + 0.8898776418vw, 1.25rem);
}
.footer .left .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.footer .left .info-item i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  flex-shrink: 0;
}
.footer .left .info-item svg {
  flex-shrink: 0;
}
.footer .nav {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
}
.footer .col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.footer .col h4 {
  font-size: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  font-weight: 700;
  margin-bottom: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem);
  white-space: nowrap;
}
.footer .col a {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  white-space: nowrap;
}
.footer .col a:hover {
  color: #fff;
}
.footer .bottom {
  margin-top: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
  text-align: right;
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  color: rgba(255, 255, 255, 0.3);
}
.footer .social {
  display: flex;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.footer .social-icon {
  width: clamp(1.75rem, 1.6122080089rem + 0.2224694105vw, 1.875rem);
  height: clamp(1.75rem, 1.6122080089rem + 0.2224694105vw, 1.875rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;
}
.footer .social-icon i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.footer .social-icon:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-2px);
}
@media (min-width: 992px) {
  .footer .container {
    flex-direction: row;
  }
  .footer .left {
    flex-shrink: 0;
    width: 40%;
  }
  .footer .nav {
    display: grid;
    flex: 1;
    min-width: 0;
    grid-template-columns: repeat(5, 1fr);
  }
  .footer .bottom .container {
    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: "MyriadPro";
  src: url("../fonts/MyriadPro-Regular.otf");
}
@font-face {
  font-display: swap;
  font-family: "D-DIN";
  src: url("../fonts/D-DIN.OTF");
}
@font-face {
  font-display: swap;
  font-family: "D-DIN-BOLD";
  src: url("../fonts/D-DIN-BOLD.OTF");
}
@font-face {
  font-display: swap;
  font-family: "D-DINCONDENSED-BOLD";
  src: url("../fonts/D-DINCONDENSED-BOLD.TTF");
}
.text-center {
  text-align: center;
}

.g-title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  color: #474747;
  font-weight: 400;
}
.g-title.white {
  color: #fff;
}
.g-title.white span.g-title-en {
  color: #fff;
}
.g-title span {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
  line-height: 1;
}
.g-title span.g-title-en {
  font-size: clamp(1.5rem, -2.7715517241rem + 6.8965517241vw, 5.375rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: "D-DINCONDENSED-BOLD";
  text-transform: uppercase;
}

.g-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  padding: 0 clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  height: clamp(2.875rem, 1.5659760845rem + 2.1134593993vw, 4.0625rem);
  border-radius: clamp(1.4375rem, 0.7485400445rem + 1.1123470523vw, 2.0625rem);
  background: var(--color-primary);
  color: #fff;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  transition: all 0.3s;
  text-decoration: none;
  min-width: clamp(11.25rem, 7.8052002225rem + 5.5617352614vw, 14.375rem);
  font-family: "Montserrat";
  font-weight: 700;
}
.g-more.small {
  padding: 0 clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.g-more:hover {
  background: #2a4a7d;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(26, 54, 93, 0.3);
}
.g-more span {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  transition: transform 0.3s;
}
.g-more:hover span {
  transform: translateX(0.25rem);
}
.g-more.white {
  background: #fff;
  color: var(--color-primary);
}
.g-more.white:hover {
  background: var(--color-second);
  color: #fff;
  box-shadow: 0 0.5rem 1.5625rem rgba(var(--color-second), 0.4);
}

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

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

.page-hero {
  height: clamp(18.75rem, -6.7415183537rem + 41.1568409344vw, 41.875rem);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero.null {
  height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
}
.page-hero .hero-position {
  margin-top: 5vh;
  margin-bottom: clamp(0.9375rem, -1.1982758621rem + 3.4482758621vw, 2.875rem);
  display: flex;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  flex-direction: column;
}
.page-hero .hero-position .crumbs {
  color: #fff;
}
.page-hero .hero-position .crumbs a, .page-hero .hero-position .crumbs span {
  color: #fff;
}
.page-hero .hero-position nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  color: rgba(255, 255, 255, 0.5);
}
.page-hero .hero-position nav ul li.active a, .page-hero .hero-position nav ul li:hover a {
  color: #fff;
}
.page-hero .hero-position nav ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
@media screen and (min-width: 992px) {
  .page-hero .hero-position {
    margin-top: 24vh;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 991px) {
  .page-hero nav ul {
    overflow: scroll;
    scroll-snap-type: x mandatory;
    width: calc(100% + 20px);
  }
  .page-hero nav ul li {
    white-space: nowrap;
  }
}

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

.hero-section {
  width: 100%;
  height: 100vh;
}
.hero-section .hero-swiper {
  width: 100%;
  height: 100%;
  background: #000;
}
.hero-section .hero-swiper .hero-pagination {
  bottom: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
  padding-left: clamp(1.25rem, -4.9506395996rem + 10.0111234705vw, 6.875rem);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.hero-section .hero-swiper .hero-pagination .swiper-pagination-bullet {
  width: clamp(0.625rem, 0.3494160178rem + 0.4449388209vw, 0.875rem);
  height: clamp(0.625rem, 0.3494160178rem + 0.4449388209vw, 0.875rem);
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s;
  position: relative;
}
.hero-section .hero-swiper .hero-pagination .swiper-pagination-bullet::after {
  content: "";
  width: clamp(1.375rem, 0.2726640712rem + 1.7797552836vw, 2.375rem);
  height: clamp(0.9375rem, 0.1796440489rem + 1.2235817575vw, 1.625rem);
  background: url(../img/ico.svg) center no-repeat;
  filter: invert(1) brightness(2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: all 0.3s ease;
}
.hero-section .hero-swiper .hero-pagination .swiper-pagination-bullet-active {
  background: transparent;
}
.hero-section .hero-swiper .hero-pagination .swiper-pagination-bullet-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero-section .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-section .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-section .swiper-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  color: #fff;
  padding-bottom: 5%;
}
@media (max-width: 768px) {
  .hero-section .swiper-slide .container {
    align-items: center;
    text-align: center;
  }
}
.hero-section .slide-title {
  font-size: clamp(1.5rem, -0.9802558398rem + 4.0044493882vw, 3.75rem);
  line-height: 1.1;
  font-weight: 400;
  text-align: right;
  margin-bottom: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  text-shadow: 0 2px clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero-section .slide-title {
    text-align: center;
  }
}
.hero-section .slide-subtitle {
  font-size: clamp(1.5rem, -0.9802558398rem + 4.0044493882vw, 3.75rem);
  text-align: right;
  margin-bottom: clamp(1.5rem, 0.6732480534rem + 1.3348164627vw, 2.25rem);
  line-height: 1.1;
}
@media (max-width: 768px) {
  .hero-section .slide-subtitle {
    text-align: center;
  }
}
.hero-section .hero-prev,
.hero-section .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-prev::after,
.hero-section .hero-next::after {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  font-weight: 700;
  color: #fff;
}
.hero-section .hero-prev:hover,
.hero-section .hero-next:hover {
  background: rgba(var(--color-second), 0.5);
}

.scroll-down {
  position: absolute;
  bottom: clamp(0.625rem, -3.1642797553rem + 6.1179087875vw, 4.0625rem);
  right: clamp(1.25rem, -4.9506395996rem + 10.0111234705vw, 6.875rem);
  z-index: 10;
  width: clamp(2.5rem, -0.6692157953rem + 5.1167964405vw, 5.375rem);
  height: clamp(2.5rem, -0.6692157953rem + 5.1167964405vw, 5.375rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-down 2s infinite;
  transition: all 0.3s;
  background: #fff;
  color: var(--color-primary);
}
.scroll-down i {
  font-size: clamp(1.5rem, 0.8110400445rem + 1.1123470523vw, 2.125rem);
}
@media (max-width: 768px) {
  .scroll-down {
    right: 50%;
    transform: translateX(50%);
  }
}

@keyframes bounce-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.index-about {
  position: relative;
  width: 100%;
  padding: clamp(2.5rem, -6.4564794216rem + 14.4605116796vw, 10.625rem) 0;
  background: #000;
  z-index: 2;
}
.index-about .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.index-about .g-title {
  margin-bottom: clamp(1.25rem, -2.6081757508rem + 6.2291434928vw, 4.75rem);
}
.index-about .right .g-content {
  margin-bottom: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  line-height: 1.8;
  color: #777;
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
.index-about .stats {
  display: flex;
  flex-direction: row;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-about .stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.index-about .stats .stat-item:hover .num {
  color: var(--color-primary);
  text-shadow: 1px 1px 0 var(--color-primary), -1px -1px 0 var(--color-primary), 1px -1px 0 var(--color-primary), -1px 1px 0 var(--color-primary);
}
.index-about .stats .num {
  color: #777;
  line-height: 1.2;
  font-size: clamp(1.75rem, -0.4546718576rem + 3.5595105673vw, 3.75rem);
  font-family: "Montserrat";
  font-weight: lighter;
  transition: all 0.3s;
}
.index-about .stats .label {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #777;
}
.index-about .vr {
  margin: 0 auto;
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  width: clamp(3.75rem, 1.6831201335rem + 3.3370411568vw, 5.625rem);
  height: clamp(3.75rem, 1.6831201335rem + 3.3370411568vw, 5.625rem);
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.index-about .vr:hover {
  transform: scale(0.9);
}
.index-about .vr i {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
}
@media (max-width: 991px) {
  .index-about .stats {
    flex-wrap: wrap;
  }
  .index-about .stats .stat-item {
    width: calc(50% - 20px);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 8px;
    border-radius: 4px;
  }
  .index-about .stats .stat-item .num, .index-about .stats .stat-item .label {
    color: #fff;
  }
}
@media (min-width: 992px) {
  .index-about {
    min-height: 120vh;
  }
  .index-about .container {
    grid-template-columns: 1fr 1fr;
  }
  .index-about .stats {
    justify-content: space-between;
  }
}

.index-product {
  position: relative;
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
  padding-top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
  background: #f3f4f8;
}
.index-product .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-product .category .g-title {
  white-space: nowrap;
  margin-right: clamp(1.25rem, -4.9506395996rem + 10.0111234705vw, 6.875rem);
}
.index-product .category ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.3125rem, -0.30756396rem + 1.0011123471vw, 0.875rem);
  position: relative;
  z-index: 2;
}
.index-product .category ul li {
  height: clamp(2.25rem, 0.872080089rem + 2.2246941046vw, 3.5rem);
  padding: 0 clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c9cdd8;
  border-radius: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #777777;
  cursor: pointer;
}
.index-product .category ul li.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
@media screen and (min-width: 992px) {
  .index-product .category ul {
    margin-top: calc(-1 * clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem));
  }
}
.index-product .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.875rem, -7.7704393771rem + 15.5728587319vw, 10.625rem);
}
.index-product .content .left {
  width: calc(100% - clamp(14.375rem, 1.2847608454rem + 21.1345939933vw, 26.25rem));
}
.index-product .content .right {
  margin-top: 3%;
  background: #fff;
  width: clamp(8.75rem, 1.1714404894rem + 12.2358175751vw, 15.625rem);
  border-radius: clamp(0.625rem, -0.6151279199rem + 2.0022246941vw, 1.75rem);
  padding: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.index-product .content .right a {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-primary);
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  margin-top: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.index-product .content .items {
  display: flex;
  flex-direction: column;
  gap: clamp(0.1875rem, -0.0191879867rem + 0.3337041157vw, 0.375rem);
}
.index-product .content .items .item {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #454545;
  text-align: center;
  padding: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  cursor: pointer;
}
.index-product .content .items .item.active {
  color: var(--color-primary);
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .index-product .content {
    flex-direction: column;
  }
  .index-product .content .left {
    width: 100%;
  }
  .index-product .content .right {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .index-product .content .right .items {
    flex-direction: row;
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .index-product .content .right .items .item {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
.index-product .swiper {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.index-product .swiper .swiper-slide {
  position: relative;
}
.index-product .swiper .swiper-slide img {
  width: 70%;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-product .swiper .product-prev {
  left: 0;
  transform: translateY(-50%);
}
.index-product .swiper .product-next {
  right: 0;
  transform: translateY(-50%);
}
.index-product .swiper .product-prev, .index-product .swiper .product-next {
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  background: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0;
  top: 50%;
  transition: all 0.3s;
}
.index-product .swiper .product-prev:hover, .index-product .swiper .product-next:hover {
  background: var(--color-primary);
}
.index-product .swiper .product-prev::after, .index-product .swiper .product-next::after {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
@media screen and (min-width: 992px) {
  .index-product .category ul {
    justify-content: space-between;
  }
  .index-product .category ul li {
    flex: 1;
    padding: 0;
  }
}

.index-resp {
  position: relative;
  width: 100%;
  color: #fff;
  padding: clamp(2.5rem, -6.4564794216rem + 14.4605116796vw, 10.625rem) 0 clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem) 0;
}
.index-resp .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-resp .left {
  flex-shrink: 0;
}
.index-resp .right {
  min-width: 0;
}
.index-resp .right .panel {
  display: none;
}
.index-resp .right .panel.active {
  display: block;
}
.index-resp .right i {
  font-size: clamp(1.5rem, -1.5314238042rem + 4.89432703vw, 4.25rem);
}
.index-resp .right .panel-title {
  font-size: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 0.1988320356rem + 0.8898776418vw, 1.25rem);
  margin-top: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.index-resp .right .panel-desc {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}
.index-resp .tabs {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(0.625rem, -6.2645995551rem + 11.1234705228vw, 6.875rem);
}
.index-resp .tab {
  padding: 0 clamp(1.25rem, -0.2657119021rem + 2.447163515vw, 2.625rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.index-resp .tab:hover, .index-resp .tab.active {
  color: #fff;
  border-color: #fff;
}
.index-resp .g-bg, .index-resp .production .img img, .production .img .index-resp img {
  opacity: 0;
  transition: all 0.6s;
}
.index-resp .g-bg.active, .index-resp .production .img img.active, .production .img .index-resp img.active {
  opacity: 1;
}
@media (min-width: 992px) {
  .index-resp {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .index-resp .container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .index-resp .right {
    width: clamp(25rem, 20.866240267rem + 6.6740823137vw, 28.75rem);
    text-align: right;
  }
  .index-resp .tabs {
    padding: 0;
    margin-top: auto;
  }
}

.index-cases {
  position: relative;
  width: 100%;
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
  background: #eff0f5;
  color: #474747;
}
.index-cases .header {
  text-align: center;
  margin-bottom: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
}
.index-cases .case-img {
  position: relative;
  height: 0;
  padding-bottom: 69.8%;
}
.index-cases .case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.index-cases .case-title {
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  color: #474747;
  text-align: center;
  line-height: 1.5;
  transition: color 0.3s;
}
.index-cases .bottom {
  display: flex;
  align-items: center;
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-cases .pagination-index {
  flex-shrink: 0;
  width: clamp(5rem, 0.1772803115rem + 7.786429366vw, 9.375rem);
  font-size: clamp(1rem, -0.6535038932rem + 2.6696329255vw, 2.5rem);
  color: #777777;
  font-family: "Montserrat";
}
.index-cases .pagination-index span {
  font-weight: bold;
  color: var(--color-primary);
}
.index-cases .cases-pagination {
  flex: 1;
  position: static;
  height: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background: #fff;
  border-radius: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.index-cases .cases-pagination span {
  display: block;
  height: 100%;
  width: 0;
  position: relative;
  background: var(--color-primary);
  transition: all 0.5s;
}
.index-cases .cases-pagination span::after {
  content: "";
  width: clamp(1.375rem, 0.2726640712rem + 1.7797552836vw, 2.375rem);
  height: clamp(0.9375rem, 0.1796440489rem + 1.2235817575vw, 1.625rem);
  background: url("../img/ico.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: calc(100% - 1px);
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .index-cases .cases-swiper {
    padding-top: clamp(5rem, 2.9331201335rem + 3.3370411568vw, 6.875rem);
  }
  .index-cases .cases-swiper .swiper-slide {
    transition: all 0.3s;
    max-height: clamp(26.25rem, 23.494160178rem + 4.4493882091vw, 28.75rem);
  }
  .index-cases .cases-swiper .swiper-slide.swiper-slide-prev {
    transform: translateY(calc(-1 * clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem)));
  }
  .index-cases .cases-swiper .swiper-slide.swiper-slide-next {
    transform: translateY(calc(-1 * clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem)));
  }
  .index-cases .cases-swiper .swiper-slide.swiper-slide-active .case-title {
    color: var(--color-primary);
    font-weight: bold;
  }
}

.page-header {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #fff;
}
.page-header .container {
  display: flex;
  justify-content: center;
}
.page-header .g-title {
  text-align: center;
}

.products-section {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  color: #474747;
}
.products-section .container {
  display: flex;
  gap: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
}
.products-section .main-content {
  display: flex;
  gap: clamp(1.25rem, -3.5727196885rem + 7.786429366vw, 5.625rem);
  width: 100%;
}
.products-section .breadcrumb-section {
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) 0;
  border-bottom: 1px solid #e0e0e0;
}
.products-section .breadcrumb-section .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #777;
}
.products-section .breadcrumb-section .container a {
  transition: color 0.3s;
}
.products-section .breadcrumb-section .container a:hover {
  color: var(--color-primary);
}
.products-section .breadcrumb-section .container .separator {
  width: 1px;
  height: 14px;
  background: #e0e0e0;
}
.products-section .breadcrumb-section .container .current {
  color: var(--color-primary);
  font-weight: 500;
}
.products-section .sidebar {
  background: #fff;
  border-radius: clamp(0.75rem, -0.3523359288rem + 1.7797552836vw, 1.75rem);
  overflow: hidden;
  width: clamp(18.75rem, 11.8604004449rem + 11.1234705228vw, 25rem);
  flex-shrink: 0;
}
.products-section .sidebar .sidebar-header {
  height: clamp(3.75rem, 0.3052002225rem + 5.5617352614vw, 6.875rem);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-section .sidebar .sidebar-header .sidebar-title {
  font-size: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  color: #fff;
}
.products-section .sidebar .category-nav {
  padding: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem) clamp(0.9375rem, -1.4738598443rem + 3.893214683vw, 3.125rem);
  height: calc(100% - clamp(3.75rem, 0.3052002225rem + 5.5617352614vw, 6.875rem));
}
.products-section .sidebar .category-nav .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.75rem, 0.1988320356rem + 0.8898776418vw, 1.25rem) 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s;
}
.products-section .sidebar .category-nav .category-item:last-child {
  border-bottom: none;
}
.products-section .sidebar .category-nav .category-item.active + .subcategory-list {
  display: block;
}
.products-section .sidebar .category-nav .category-item.active .category-name {
  font-weight: 700;
  color: var(--color-primary);
}
.products-section .sidebar .category-nav .category-item.active .category-arrow {
  transform: rotate(180deg);
}
.products-section .sidebar .category-nav .category-arrow {
  transition: transform 0.3s;
  font-size: clamp(0.625rem, 0.4872080089rem + 0.2224694105vw, 0.75rem);
  color: var(--color-primary);
  font-weight: 700;
}
.products-section .sidebar .category-nav .category-name {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  color: #333;
  transition: color 0.3s;
}
.products-section .sidebar .subcategory-list {
  padding: clamp(0.5rem, 0.0177280311rem + 0.7786429366vw, 0.9375rem) 0;
  display: none;
}
.products-section .sidebar .subcategory-list:has(.category-item.active) {
  display: block;
}
.products-section .sidebar .subcategory-item {
  display: block;
  padding: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem) 0;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
  padding-left: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.products-section .sidebar .subcategory-item::before {
  content: "";
  width: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem);
  height: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem);
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.products-section .sidebar .subcategory-item.active {
  color: var(--color-primary);
  font-weight: bold;
}
.products-section .content-area {
  width: 100%;
}
.products-section .current-category {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, -0.0767519466rem + 1.3348164627vw, 1.5rem);
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
}
.products-section .current-category .search-box {
  background: #fff;
  border-radius: clamp(1.4375rem, 1.0930200222rem + 0.5561735261vw, 1.75rem);
  height: clamp(2.875rem, 2.1860400445rem + 1.1123470523vw, 3.5rem);
  display: flex;
  overflow: hidden;
}
.products-section .current-category .search-box input {
  width: 100%;
  padding-left: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  height: 100%;
  color: #454545;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.products-section .current-category .search-box button {
  width: clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem);
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  color: #fff;
  background: var(--color-primary);
  border-radius: clamp(1.4375rem, 1.0930200222rem + 0.5561735261vw, 1.75rem);
  cursor: pointer;
}
.products-section .current-category .search-box button i {
  font-size: clamp(1.5rem, 0.9488320356rem + 0.8898776418vw, 2rem);
}
@media screen and (min-width: 992px) {
  .products-section .current-category .search-box {
    width: clamp(16.25rem, 13.494160178rem + 4.4493882091vw, 18.75rem);
  }
}
@media screen and (min-width: 992px) {
  .products-section .current-category {
    flex-direction: row;
    align-items: center;
  }
}
.products-section .sidebar-toggle {
  display: none;
  width: 100%;
  padding: 0 clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  height: clamp(2.875rem, 2.1860400445rem + 1.1123470523vw, 3.5rem);
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  font-size: clamp(0.9375rem, 0.7997080089rem + 0.2224694105vw, 1.0625rem);
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.products-section .sidebar-toggle i {
  font-size: clamp(1.125rem, 0.8494160178rem + 0.4449388209vw, 1.375rem);
  transition: transform 0.3s;
}
.products-section .sidebar-toggle.active i {
  transform: rotate(180deg);
}
.products-section .sidebar-drawer {
  position: static;
}
@media screen and (max-width: 991px) {
  .products-section {
    position: relative;
  }
  .products-section .main-content {
    flex-direction: column;
    gap: 0;
    position: relative;
  }
  .products-section .sidebar {
    display: none;
    width: 100%;
  }
  .products-section .sidebar-toggle {
    display: flex;
  }
  .products-section .sidebar-drawer {
    display: none;
    position: absolute;
    top: clamp(2.875rem, 2.1860400445rem + 1.1123470523vw, 3.5rem);
    left: 0;
    right: 0;
    z-index: 100;
  }
  .products-section .sidebar-drawer.active {
    display: block;
  }
  .products-section .sidebar-drawer.active .sidebar-header {
    display: none;
  }
  .products-section .sidebar-drawer .sidebar {
    display: block;
    position: static;
  }
}

.product-grid {
  display: grid;
  gap: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
}
.product-grid .product-card {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.product-grid .product-card:hover .img img {
  transform: scale(1.1);
}
.product-grid .product-card:hover .name {
  color: var(--color-primary);
}
.product-grid .img {
  padding-top: 70%;
  position: relative;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
  background: #fff;
}
.product-grid .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.3s;
}
.product-grid .name {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid .product-card:hover .img::after {
    opacity: 1;
  }
  .product-grid .product-card:hover .img::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  .product-grid .img {
    z-index: 2;
  }
  .product-grid .img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(31, 47, 83, 0.85);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: 1;
  }
  .product-grid .img::before {
    content: "";
    width: 100%;
    height: clamp(2.25rem, -0.7814238042rem + 4.89432703vw, 5rem);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    z-index: 2;
    background: url("../img/ico.svg") center no-repeat;
    transition: all 0.3s ease-in-out;
    filter: invert(1) brightness(2);
  }
}

.product-detail .main-head {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  margin-top: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.product-detail .main-head .left {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 992px) {
  .product-detail .main-head {
    flex-direction: row;
  }
  .product-detail .main-head .left {
    width: clamp(34.375rem, -3.5177975528rem + 61.1790878754vw, 68.75rem);
    height: clamp(24.375rem, -2.4944382647rem + 43.3815350389vw, 48.75rem);
    flex-shrink: 0;
  }
}
.product-detail .main-content {
  padding: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem) 0;
  padding-top: 0;
  background: #fff;
  border-radius: clamp(1.125rem, -0.3907119021rem + 2.447163515vw, 2.5rem);
  margin-top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
  overflow: hidden;
}
.product-detail .main-content .close {
  height: clamp(3.125rem, 1.747080089rem + 2.2246941046vw, 4.375rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #d5d5e2;
  cursor: pointer;
}
.product-detail .main-content .close i {
  font-size: clamp(1.5rem, 0.9488320356rem + 0.8898776418vw, 2rem);
  font-weight: bold;
}
.product-detail .main-content .head, .product-detail .main-content .g-content {
  margin: 0 clamp(0.9375rem, -15.2530589544rem + 26.1401557286vw, 15.625rem);
}
.product-detail .main-content .head {
  margin-top: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}
.product-detail .main-content .head h2 {
  font-size: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  font-weight: normal;
}
.product-detail .main-content .g-content {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.product-detail .main-content .g-content p {
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.product-detail .main-content .foot-more {
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  text-align: center;
}
.product-detail .product-swiper {
  border-radius: clamp(1.125rem, -0.3907119021rem + 2.447163515vw, 2.5rem);
  background: #fff;
  width: 100%;
  height: 100%;
}
.product-detail .product-swiper .swiper-slide {
  position: relative;
}
.product-detail .product-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}
.product-detail .product-swiper .swiper-slide ul {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.product-detail .product-swiper .swiper-slide ul li {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 2;
}
.product-detail .product-swiper .swiper-slide ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(0.4375rem, 0.2997080089rem + 0.2224694105vw, 0.5625rem);
  height: clamp(0.4375rem, 0.2997080089rem + 0.2224694105vw, 0.5625rem);
  border-radius: 50%;
  background: #fff;
}
.product-detail .product-swiper .swiper-slide ul li .dot {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(0.4375rem, 0.2997080089rem + 0.2224694105vw, 0.5625rem);
  height: clamp(0.4375rem, 0.2997080089rem + 0.2224694105vw, 0.5625rem);
}
.product-detail .product-swiper .swiper-slide ul li .dot::after, .product-detail .product-swiper .swiper-slide ul li .dot::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.product-detail .product-swiper .swiper-slide ul li .dot::before {
  animation: dot-expand 2s linear infinite;
}
.product-detail .product-swiper .swiper-slide ul li .dot::after {
  animation: dot-expand 2s 1s linear infinite;
  opacity: 0.5;
}
.product-detail .product-swiper .swiper-slide ul li span {
  white-space: nowrap;
  padding: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background: var(--color-primary);
  color: #fff;
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  position: absolute;
  left: 50%;
  bottom: calc(100% + clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem));
  transform: translateX(-50%);
  cursor: pointer;
  transition: all 0.3s;
}
.product-detail .product-swiper .swiper-slide ul li span:hover {
  filter: brightness(1.3);
}
@keyframes dot-expand {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
.product-detail .product-swiper .product-prev {
  left: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  transform: translateY(-50%);
}
.product-detail .product-swiper .product-next {
  right: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  transform: translateY(-50%);
}
.product-detail .product-swiper .product-prev, .product-detail .product-swiper .product-next {
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0;
  top: 50%;
}
.product-detail .product-swiper .product-prev::after, .product-detail .product-swiper .product-next::after {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.product-detail .product-swiper .product-prev.swiper-button-lock, .product-detail .product-swiper .product-next.swiper-button-lock {
  display: none;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, -0.3715239155rem + 2.1134593993vw, 2.125rem);
  border-radius: clamp(1.125rem, -0.3907119021rem + 2.447163515vw, 2.5rem);
  background: #fff;
  padding: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
}
.detail-info .group {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
.detail-info .label {
  color: #777;
}
.detail-info .shopping-cart {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.detail-info .shopping-cart > span {
  width: clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem);
  height: clamp(2.875rem, 1.497080089rem + 2.2246941046vw, 4.125rem);
  background: var(--color-primary);
  border-radius: clamp(1.4375rem, 0.7485400445rem + 1.1123470523vw, 2.0625rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}
.detail-info .shopping-cart > span i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
@media screen and (min-width: 992px) {
  .detail-info {
    width: clamp(23.75rem, 11.3487208009rem + 20.022246941vw, 35rem);
    flex-shrink: 0;
  }
}

.product-related {
  margin-top: clamp(2.5rem, -3.011679644rem + 8.8987764182vw, 7.5rem);
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.product-related .head {
  margin-bottom: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-related .head h2 {
  font-weight: normal;
  font-size: clamp(1.125rem, -0.3907119021rem + 2.447163515vw, 2.5rem);
}
.product-related .product-grid {
  gap: clamp(1.25rem, -1.0924638487rem + 3.7819799778vw, 3.375rem);
}
@media screen and (min-width: 992px) {
  .product-related .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cart-content {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
}
.cart-content .table {
  margin-top: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  background: #fff;
  border-radius: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  overflow: hidden;
}
.cart-content table {
  width: 100%;
  border-collapse: collapse;
}
.cart-content table thead tr th {
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
  color: #fff;
  background: var(--color-primary);
  padding: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) 0;
  border: none;
  font-weight: normal;
}
.cart-content table thead tr th:nth-child(2) {
  text-align: left;
}
.cart-content table thead tr th label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.cart-content table thead tr th label input[type=checkbox]:checked::after {
  background: #fff;
  color: var(--color-primary);
}
.cart-content table tbody tr td {
  height: clamp(3.75rem, -5.8954393771rem + 15.5728587319vw, 12.5rem);
  text-align: center;
}
.cart-content table tbody tr td:nth-child(2) {
  text-align: left;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.cart-content table tbody tr td .input-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.cart-content table tbody tr td .input-number input {
  width: clamp(2.5rem, 0.7776001112rem + 2.7808676307vw, 4.0625rem);
  padding: 0;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  text-align: center;
}
.cart-content table tbody tr td .input-number button {
  width: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid #dedede;
  border-radius: 50%;
  background: none;
  color: #999;
  transition: all 0.3s;
  cursor: pointer;
}
.cart-content table tbody tr td .input-number button i {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.cart-content table tbody tr td .input-number button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.cart-content table tbody tr td:nth-child(4) button {
  color: #999;
  transition: all 0.3s;
  background: none;
}
.cart-content table tbody tr td:nth-child(4) button:hover {
  color: var(--color-primary);
}
.cart-content table tbody tr td:nth-child(4) button i {
  font-size: clamp(1.125rem, 0.1604560623rem + 1.5572858732vw, 2rem);
}
.cart-content input[type=checkbox] {
  width: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  height: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  position: relative;
  margin: 0;
}
.cart-content input[type=checkbox]::after {
  position: absolute;
  top: 0;
  color: #000;
  width: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  height: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  display: inline-block;
  visibility: visible;
  padding-left: 0rem;
  text-align: center;
  content: " ";
}
.cart-content input[type=checkbox]:checked::after {
  content: "✓";
  color: #fff;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
  line-height: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
  background-color: var(--color-primary);
}

.message {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
}
.message.contact-message {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
}
.message.contact-message form {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.message.contact-message form .group {
  background: #eff0f5;
}
.message .g-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.message p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #666;
}
.message .interested-title {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  background: var(--color-primary);
  color: #fff;
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  margin-bottom: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.message form {
  display: grid;
  gap: clamp(0.75rem, -0.7657119021rem + 2.447163515vw, 2.125rem);
}
.message form .group {
  background: #fff;
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  display: flex;
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.message form .group label {
  color: #666;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  flex-shrink: 0;
}
.message form .group input {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #666;
  background: none;
}
.message form .group.group-message textarea {
  width: 100%;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.6;
  padding: 0;
  color: #666;
  background: none;
}
@media screen and (min-width: 992px) {
  .message form {
    grid-template-columns: repeat(4, 1fr);
  }
  .message form .group.group-message {
    grid-column: span 4;
  }
  .message form .group-btn {
    grid-column: span 4;
  }
}

.workshop {
  padding-top: clamp(2.5rem, -3.7006395996rem + 10.0111234705vw, 8.125rem);
  padding-bottom: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  background: url(../img/hands.webp) left top no-repeat #cedff4;
  background-size: 36% auto;
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.workshop .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, -0.3523359288rem + 1.7797552836vw, 1.75rem);
  position: relative;
}
.workshop .items {
  position: relative;
  height: clamp(31.25rem, 21.6045606229rem + 15.5728587319vw, 40rem);
  width: 100%;
}
.workshop .items .item {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: all 0.3s;
  opacity: 0.1;
}
.workshop .items .item.next2 {
  opacity: 0.4;
  z-index: 2;
  transform: translateY(1.25rem);
}
.workshop .items .item.next {
  opacity: 0.7;
  z-index: 3;
  transform: translateY(2.5rem);
}
.workshop .items .item.active {
  opacity: 1;
  transform: translateY(3.75rem);
  z-index: 4;
}
.workshop .items .item.active .img img {
  opacity: 1;
}
.workshop .items .item.active .text h3 {
  opacity: 1;
}
.workshop .items .item .left, .workshop .items .item .text {
  width: 100%;
  background: #fff;
  border-radius: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  overflow: hidden;
  height: 100%;
}
.workshop .items .item .img {
  height: 100%;
  background: #fff;
}
.workshop .items .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.3s;
}
.workshop .items .item .text {
  padding: 0 clamp(0.9375rem, -1.4738598443rem + 3.893214683vw, 3.125rem);
}
.workshop .items .item .text h3 {
  font-size: clamp(1.125rem, -0.1151279199rem + 2.0022246941vw, 2.25rem);
  color: var(--color-primary);
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  transition: all 0.3s;
  opacity: 0;
}
.workshop .items .item .text p {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  line-height: 2;
}
.workshop .items .item .text .mod_content {
  height: clamp(11.25rem, -10.7967185762rem + 35.595105673vw, 31.25rem);
}
.workshop .workshop-btn {
  width: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem);
  height: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cccccc;
  color: #fff;
  transition: all 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}
.workshop .workshop-btn:hover {
  background: var(--color-primary);
}
.workshop .workshop-btn i {
  font-size: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
}
.workshop .workshop-number {
  margin-top: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  font-size: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  color: #777;
}
.workshop .workshop-number span:last-child {
  color: var(--color-primary);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .workshop .items .item .img {
    aspect-ratio: 16/9;
    flex-shrink: 0;
  }
  .workshop .items .item .text {
    height: 100%;
    padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  }
  .workshop .workshop-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .workshop .workshop-btn.workshop-prev {
    left: 0;
  }
  .workshop .workshop-btn.workshop-next {
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  .workshop .items .item {
    align-items: stretch;
    flex-direction: row;
    width: 100%;
    height: 100%;
  }
  .workshop .items .item .text {
    width: 34.8%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.hengfu {
  position: relative;
  border-radius: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  margin: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem) 0;
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.hengfu span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  z-index: 2;
  color: #fff;
  font-size: clamp(1rem, -0.6535038932rem + 2.6696329255vw, 2.5rem);
}

.production {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  width: 100%;
  overflow: hidden;
}
.production .card {
  border-radius: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  background: #fff;
  padding: clamp(0.9375rem, -1.4738598443rem + 3.893214683vw, 3.125rem);
  display: grid;
  gap: 0.9375rem;
}
.production .info {
  padding: 0 clamp(0rem, -1.377919911rem + 2.2246941046vw, 1.25rem);
}
.production .info i {
  font-size: clamp(1.5rem, -0.7046718576rem + 3.5595105673vw, 3.5rem);
  color: var(--color-primary);
  line-height: 1;
}
.production .info h3 {
  font-size: clamp(1.125rem, -0.1151279199rem + 2.0022246941vw, 2.25rem);
  color: var(--color-primary);
  margin: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
  margin-top: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.production .info .g-content {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  line-height: 1.8;
}
.production .info .g-content ul {
  list-style: disc;
  padding-left: clamp(0.75rem, 0.0610400445rem + 1.1123470523vw, 1.375rem);
}
.production .info .g-content ul li::marker {
  color: var(--color-primary);
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.production .info .val {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  margin-top: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
}
.production .info .val span {
  font-size: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  color: #777;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.production .info .val span sub {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transform: translateY(calc(-1 * clamp(0.125rem, -0.1505839822rem + 0.4449388209vw, 0.375rem)));
  display: inline-block;
}
.production .info .val p {
  color: #777;
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
.production .img {
  padding-top: 70%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .production .card {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
  }
  .production .card:nth-child(2n-1) .info {
    padding-right: clamp(1rem, -1.3424638487rem + 3.7819799778vw, 3.125rem);
  }
  .production .card:nth-child(2n) .info {
    order: 2;
    padding-left: clamp(1rem, -1.3424638487rem + 3.7819799778vw, 3.125rem);
  }
}

.global {
  border-top-left-radius: clamp(1.875rem, -2.9477196885rem + 7.786429366vw, 6.25rem);
  border-top-right-radius: clamp(1.875rem, -2.9477196885rem + 7.786429366vw, 6.25rem);
  padding-top: clamp(1.875rem, -7.0814794216rem + 14.4605116796vw, 10rem);
  overflow: hidden;
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.global .title {
  padding-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  font-size: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  position: relative;
  color: #fff;
}
.global .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
  height: 0.0625rem;
  background: #fff;
}
.global .items {
  display: grid;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  margin-top: clamp(1.875rem, -8.4593993326rem + 16.6852057842vw, 11.25rem);
}
.global .item {
  padding: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
  background: transparent;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transform: translateY(30%);
  transition: all 0.3s;
}
.global .item.active {
  transform: translateY(0%);
  background: rgba(255, 255, 255, 0.85);
}
.global .item.active i {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.global .item.active h3 {
  color: var(--color-primary);
}
.global .item.active .g-content {
  color: #333;
  opacity: 1;
}
.global .item.active .g-content ul li::marker {
  color: var(--color-primary);
}
.global .item i {
  width: clamp(2.5rem, 0.5709121246rem + 3.1145717464vw, 4.25rem);
  height: clamp(2.5rem, 0.5709121246rem + 3.1145717464vw, 4.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  font-size: clamp(1.25rem, 0.4232480534rem + 1.3348164627vw, 2rem);
  margin: 0 auto;
  color: #fff;
  transition: all 0.3s;
}
.global .item h3 {
  font-size: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  text-align: center;
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  margin-bottom: clamp(0.75rem, 0.1988320356rem + 0.8898776418vw, 1.25rem);
  color: #fff;
  transition: all 0.3s;
}
.global .g-content {
  max-height: clamp(10.625rem, 9.247080089rem + 2.2246941046vw, 11.875rem);
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  line-height: 1.8;
  color: #fff;
  transition: all 0.3s;
  opacity: 0;
}
.global .g-content ul {
  list-style: disc;
  padding-left: clamp(0.75rem, 0.0610400445rem + 1.1123470523vw, 1.375rem);
}
.global .g-content ul li::marker {
  color: #fff;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  transition: all 0.3s;
}
@media screen and (min-width: 992px) {
  .global .items {
    grid-template-columns: repeat(3, 1fr);
  }
  .global .item {
    height: clamp(25rem, 18.1104004449rem + 11.1234705228vw, 31.25rem);
    padding-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  }
}

.about-profile {
  display: flex;
  flex-direction: column;
  background: #eef2ff;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.about-profile .info {
  padding-left: clamp(1.25rem, -4.9506395996rem + 10.0111234705vw, 6.875rem);
  padding-right: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
}
.about-profile .g-content {
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  line-height: 1.6;
}
.about-profile .val {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  margin: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) 0;
}
.about-profile .val .group {
  max-width: 30%;
}
.about-profile .val .group:hover span {
  text-shadow: 1px 1px 0 var(--color-primary), -1px -1px 0 var(--color-primary), 1px -1px 0 var(--color-primary), -1px 1px 0 var(--color-primary);
}
.about-profile .val .group:hover span sub {
  text-shadow: none;
}
.about-profile .val span {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  color: var(--color-primary);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  font-family: "Montserrat";
  transition: all 0.3s;
}
.about-profile .val span sub {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transform: translateY(calc(-1 * clamp(0.125rem, -0.1505839822rem + 0.4449388209vw, 0.375rem)));
  display: inline-block;
}
.about-profile .val p {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
.about-profile .video {
  height: clamp(10rem, 8.622080089rem + 2.2246941046vw, 11.25rem);
  position: relative;
  display: inline-block;
}
.about-profile .video a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  height: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.about-profile .video a i {
  font-size: clamp(1.5rem, 1.0866240267rem + 0.6674082314vw, 1.875rem);
}
.about-profile .video a:hover {
  transform: translate(-50%, -50%) scale(0.9);
}
.about-profile .video img {
  max-width: 100%;
  max-height: 100%;
}
.about-profile .vr {
  position: relative;
}
.about-profile .vr a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: clamp(3.125rem, -1.008759733rem + 6.6740823137vw, 6.875rem);
  height: clamp(3.125rem, -1.008759733rem + 6.6740823137vw, 6.875rem);
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.about-profile .vr a i {
  font-size: clamp(1.625rem, 0.247080089rem + 2.2246941046vw, 2.875rem);
}
.about-profile .vr a:hover {
  transform: translate(-50%, -50%) scale(0.9);
}
.about-profile .vr img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  .about-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
  }
  .about-profile .vr {
    width: 58.5%;
  }
  .about-profile .info {
    width: 41.5%;
  }
}
@media screen and (max-width: 991px) {
  .about-profile .val {
    flex-wrap: wrap;
  }
  .about-profile .val .group {
    max-width: inherit;
  }
}

.about-why {
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
}
.about-why .items {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  gap: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  flex-direction: column;
}
.about-why .items .item {
  position: relative;
  z-index: 2;
  color: #fff;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem);
}
.about-why .items .item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, rgba(31, 47, 83, 0), rgb(31, 47, 83));
  z-index: -1;
}
.about-why .items .item i {
  font-size: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  width: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem);
  height: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem);
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(0.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem);
}
.about-why .items .item h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-bottom: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.about-why .items .item .g-content {
  line-height: 1.8;
  color: #fff;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.about-why .items .item .g-content p {
  color: inherit;
}
@media screen and (min-width: 992px) {
  .about-why .items {
    flex-direction: row;
  }
  .about-why .items .item {
    height: clamp(25rem, 14.6656006674rem + 16.6852057842vw, 34.375rem);
    flex: 1;
    transition: all 0.3s;
  }
  .about-why .items .item.active {
    flex: 2;
  }
  .about-why .items .item.active i {
    margin: 0;
    margin-bottom: clamp(0.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem);
  }
  .about-why .items .item.active h3 {
    text-align: left;
  }
  .about-why .items .item.active .g-content {
    height: clamp(6.25rem, 4.872080089rem + 2.2246941046vw, 7.5rem);
  }
  .about-why .items .item i {
    margin: 0 auto;
    margin-bottom: clamp(0.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem);
  }
  .about-why .items .item h3 {
    text-align: center;
  }
  .about-why .items .item .g-content {
    height: 0;
    transition: all 0.3s;
  }
}

.history {
  padding-top: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
}
.history .row {
  display: flex;
  margin: 0 -15px;
}
.history .row .col-lg-6 {
  flex: 1;
  padding: 0 15px;
}
.history .pimg {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  position: relative;
  border-top-left-radius: clamp(1rem, -1.3424638487rem + 3.7819799778vw, 3.125rem);
  border-top-right-radius: clamp(1rem, -1.3424638487rem + 3.7819799778vw, 3.125rem);
  overflow: hidden;
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.history .pimg .container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.history .pimg .left {
  color: #fff;
}
.history .pimg .left .time {
  font-size: clamp(1.5rem, -0.9802558398rem + 4.0044493882vw, 3.75rem);
  font-family: "Montserrat";
  margin-bottom: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
  font-weight: bold;
}
.history .pimg .left .mod_content {
  font-size: clamp(0.9375rem, 0.7308120133rem + 0.3337041157vw, 1.125rem);
  line-height: 2;
  color: #fff;
}
.history .pimg .left .mod_content * {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.history .pimg .right {
  width: clamp(25.625rem, -2.6223581758rem + 45.6062291435vw, 51.25rem);
  height: clamp(25.625rem, -2.6223581758rem + 45.6062291435vw, 51.25rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.history .pimg .right .img {
  width: clamp(15.625rem, -1.5989988877rem + 27.808676307vw, 31.25rem);
  border: 1rem solid #fff;
  border-radius: 50%;
  overflow: hidden;
}
.history .pimg .right .img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@supports not (aspect-ratio: 1/1) {
  .history .pimg .right .img img {
    height: 100%;
  }
}
.history .pimg .right .kuang {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - clamp(7.8125rem, -0.7994994438rem + 13.9043381535vw, 15.625rem));
  height: 100%;
  overflow: hidden;
}
.history .pimg .right .kuang::after {
  position: absolute;
  top: 0;
  right: clamp(3.875rem, -0.3965517241rem + 6.8965517241vw, 7.75rem);
  content: "";
  height: 100%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  width: calc(100% + clamp(7.8125rem, -0.7994994438rem + 13.9043381535vw, 15.625rem));
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.8s;
}
.history .pimg .right .kuang .kuang_bold {
  position: absolute;
  right: clamp(3.875rem, -0.3965517241rem + 6.8965517241vw, 7.75rem);
  top: 0;
  height: 100%;
  width: 72%;
  overflow: hidden;
  pointer-events: none;
  transform-origin: 0% 50%;
  transform: rotate(-144deg);
  transition: all 0.8s;
}
@supports not (aspect-ratio: 1/1) {
  .history .pimg .right .kuang .kuang_bold {
    display: none;
  }
}
.history .pimg .right .kuang .kuang_bold::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: clamp(0.125rem, 0.0561040044rem + 0.1112347052vw, 0.1875rem) solid rgb(255, 255, 255);
  box-sizing: border-box;
}
.history .pimg .right .swiper {
  width: clamp(9.6875rem, -0.9913793103rem + 17.2413793103vw, 19.375rem);
  height: clamp(25rem, -2.5583982202rem + 44.4938820912vw, 50rem);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.history .pimg .right .swiper .swiper-slide {
  height: calc(clamp(25rem, -2.5583982202rem + 44.4938820912vw, 50rem) / 6);
  display: flex;
  align-items: center;
  color: #fff;
  transition: all 0.8s;
  padding-left: 0;
  cursor: pointer;
}
.history .pimg .right .swiper .swiper-slide.cur span {
  transform: translateX(clamp(0.5rem, 0.0866240267rem + 0.6674082314vw, 0.875rem)) scale(1.1);
  font-weight: bold;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.history .pimg .right .swiper .swiper-slide.cur i::before {
  width: 100%;
  height: 100%;
  background: transparent;
}
.history .pimg .right .swiper .swiper-slide.cur i::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.history .pimg .right .swiper .swiper-slide i {
  width: clamp(1rem, -0.1023359288rem + 1.7797552836vw, 2rem);
  height: clamp(1rem, -0.1023359288rem + 1.7797552836vw, 2rem);
  position: relative;
  flex-shrink: 0;
}
.history .pimg .right .swiper .swiper-slide i::after, .history .pimg .right .swiper .swiper-slide i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.history .pimg .right .swiper .swiper-slide i::before {
  width: clamp(0.4375rem, -0.0447719689rem + 0.7786429366vw, 0.875rem);
  height: clamp(0.4375rem, -0.0447719689rem + 0.7786429366vw, 0.875rem);
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
  transition: all 0.3s;
}
.history .pimg .right .swiper .swiper-slide i::after {
  width: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  height: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s;
}
.history .pimg .right .swiper .swiper-slide span {
  font-size: clamp(0.875rem, 0.1860400445rem + 1.1123470523vw, 1.5rem);
  white-space: nowrap;
}
.history .pimg .right .xian {
  width: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  height: clamp(10.75rem, -1.1001112347rem + 19.1323692992vw, 21.5rem);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(7rem, -0.7163515017rem + 12.4582869855vw, 14rem);
  z-index: 5;
  background: url("../img/xian.webp") center no-repeat;
  background-size: contain;
}
.history .pimg .right .xian > div:hover i {
  transform: scale(1.5);
}
.history .pimg .right .xian i {
  display: block;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  font-weight: lighter;
  color: #fff;
  transition: all 0.3s;
}
.history .pimg .right .xian .swiper-button-prev1.swiper-button-disabled,
.history .pimg .right .xian .swiper-button-next1.swiper-button-disabled {
  opacity: 1;
  pointer-events: auto;
}
.history .pimg .right .xian .swiper-button-prev1.swiper-button-lock,
.history .pimg .right .xian .swiper-button-next1.swiper-button-lock {
  display: block;
}
.history .pimg .right .xian .swiper-button-prev1 {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, -100%) rotate(148deg);
}
.history .pimg .right .xian .swiper-button-next1 {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-100%, 100%) rotate(32deg);
}
@media screen and (min-width: 992px) {
  .history .pimg {
    padding: 0;
  }
  .history .pimg .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .history .pimg .left {
    width: clamp(17.3125rem, -1.7716907675rem + 30.8120133482vw, 34.625rem);
  }
}

.honor {
  padding: clamp(2.5rem, -7.1454393771rem + 15.5728587319vw, 11.25rem) 0;
  z-index: 2;
}
.honor .swiper-wrapper {
  margin: clamp(3.75rem, 0.3052002225rem + 5.5617352614vw, 6.875rem) 0;
}
.honor .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: clamp(6.25rem, 2.116240267rem + 6.6740823137vw, 10rem);
}
.honor .swiper-slide.swiper-slide-active .img {
  transform: rotateY(0deg) scale(1);
}
.honor .swiper-slide.swiper-slide-prev .img {
  transform: rotateY(3deg);
}
.honor .swiper-slide.swiper-slide-next .img {
  transform: rotateY(-3deg);
}
.honor .swiper-slide.swiper-slide-next + .swiper-slide .img {
  transform: rotateY(-5deg) scale(1.15);
}
.honor .swiper-slide .img {
  width: clamp(13.5rem, 9.7796162403rem + 6.0066740823vw, 16.875rem);
  height: clamp(18rem, 13.0394883204rem + 8.0088987764vw, 22.5rem);
  background: url(../img/h-bg.webp) center no-repeat;
  background-size: contain;
  transform: rotateY(5deg) scale(1.15);
  transition: all 0.3s;
}
.honor .swiper-slide .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 90%;
  max-height: 90%;
  transform: translate(-50%, -50%);
}
.honor .bottom {
  display: flex;
  align-items: center;
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.honor .pagination-index {
  flex-shrink: 0;
  width: clamp(5rem, 0.1772803115rem + 7.786429366vw, 9.375rem);
  font-size: clamp(1rem, -0.6535038932rem + 2.6696329255vw, 2.5rem);
  color: #777777;
  font-family: "Montserrat";
}
.honor .pagination-index span {
  font-weight: bold;
  color: var(--color-primary);
}
.honor .honor-pagination {
  flex: 1;
  position: static;
  height: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background: #fff;
  border-radius: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.honor .honor-pagination span {
  display: block;
  height: 100%;
  width: 0;
  position: relative;
  background: var(--color-primary);
  transition: all 0.5s;
}
.honor .honor-pagination span::after {
  content: "";
  width: clamp(1.375rem, 0.2726640712rem + 1.7797552836vw, 2.375rem);
  height: clamp(0.9375rem, 0.1796440489rem + 1.2235817575vw, 1.625rem);
  background: url("../img/ico.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: calc(100% - 1px);
  top: 50%;
  transform: translateY(-50%);
}

.responsibility {
  padding: clamp(2.5rem, -6.4564794216rem + 14.4605116796vw, 10.625rem) 0;
  position: relative;
}
.responsibility.res-2 {
  color: #fff;
}
.responsibility.res-2 .container .info i {
  color: #fff;
}
.responsibility.res-3 .container .img {
  order: 2;
}
.responsibility .container {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, -4.2296996663rem + 8.3426028921vw, 5.625rem);
}
.responsibility .container .img {
  flex: 1;
}
.responsibility .container .img img {
  width: 100%;
  display: block;
  border-radius: clamp(0.75rem, -3.9349276974rem + 7.5639599555vw, 5rem);
}
.responsibility .container .info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.responsibility .container .info i {
  font-size: clamp(1.5rem, -1.8070077864rem + 5.3392658509vw, 4.5rem);
  line-height: 1;
  color: var(--color-primary);
}
.responsibility .container .info p {
  line-height: 2;
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
@media screen and (min-width: 992px) {
  .responsibility .container {
    flex-direction: row;
    align-items: center;
  }
  .responsibility .container .info {
    width: 38.4%;
    flex-shrink: 0;
  }
}

.case-list {
  padding: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem) 0;
}
.case-list .container {
  display: grid;
  gap: clamp(1.25rem, -3.5727196885rem + 7.786429366vw, 5.625rem) clamp(0.9375rem, -1.1293798665rem + 3.3370411568vw, 2.8125rem);
}
.case-list .item a {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  transition: all 0.3s ease-in-out;
}
.case-list .item a .img {
  padding-top: 70%;
  position: relative;
  z-index: 2;
}
.case-list .item a h3 {
  font-size: clamp(0.875rem, 0.1860400445rem + 1.1123470523vw, 1.5rem);
  line-height: 1;
  transition: all 0.3s;
  text-align: center;
  font-weight: normal;
  color: #333;
}
@media screen and (min-width: 992px) {
  .case-list .container {
    grid-template-columns: repeat(3, 1fr);
  }
  .case-list .item a:hover {
    transform: translateY(calc(-1 * clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem)));
  }
  .case-list .item a:hover h3 {
    font-weight: bold;
    color: var(--color-primary);
  }
}

.news-content {
  padding: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem) 0;
}
.news-content .news-list {
  display: grid;
  gap: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem) clamp(0.9375rem, -4.9186596218rem + 9.4549499444vw, 6.25rem);
}
.news-content .news-list .item a {
  color: #666;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
.news-content .news-list .item a:hover {
  transform: translateY(calc(-1 * clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem)));
}
.news-content .news-list .item a:hover h3 {
  color: var(--color-primary);
}
.news-content .news-list .item a:hover time {
  color: var(--color-primary);
}
.news-content .news-list .item a:hover .line {
  width: 100%;
}
.news-content .news-list .item a:hover .line::after, .news-content .news-list .item a:hover .line::before {
  opacity: 1;
}
.news-content .news-list .item a:hover .img::after {
  opacity: 1;
}
.news-content .news-list .item a:hover .img::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
.news-content .news-list .item a .info {
  padding: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.news-content .news-list .item a .img {
  padding-top: 70%;
  position: relative;
  z-index: 2;
}
.news-content .news-list .item a .img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(31, 47, 83, 0.85);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 1;
}
.news-content .news-list .item a .img::before {
  content: "";
  width: 100%;
  height: clamp(2.5rem, -1.0825917686rem + 5.7842046719vw, 5.75rem);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  z-index: 2;
  background: url("../img/ico.svg") center no-repeat;
  transition: all 0.3s ease-in-out;
  filter: invert(1) brightness(2);
}
.news-content .news-list .item a h3 {
  width: 100%;
  font-size: clamp(0.875rem, 0.1860400445rem + 1.1123470523vw, 1.5rem);
  line-height: 1;
  transition: all 0.3s;
  color: #333333;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-content .news-list .item a p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-content .news-list .item a p, .news-content .news-list .item a time {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: all 0.3s;
  line-height: 1.6;
}
.news-content .news-list .item a time {
  font-family: "Montserrat";
}
.news-content .news-list .item a .line {
  margin-top: auto;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.news-content .news-list .item a .line::after, .news-content .news-list .item a .line::before {
  content: "";
  width: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  height: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  background: var(--color-primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  opacity: 0;
  transition-delay: 0.3s;
}
.news-content .news-list .item a .line::after {
  left: auto;
  right: 0;
}
.news-content .news2-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.news-content .news2-list a {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, -1.8872358176rem + 4.5606229143vw, 3.5rem);
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.news-content .news2-list a:hover {
  background: var(--color-primary);
  color: #fff;
}
.news-content .news2-list a:hover .img img {
  transform: scale(1.1);
}
.news-content .news2-list a:hover .h3, .news-content .news2-list a:hover p, .news-content .news2-list a:hover time, .news-content .news2-list a:hover .icon {
  color: inherit;
}
.news-content .news2-list .img {
  aspect-ratio: 470/280;
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex-shrink: 0;
}
.news-content .news2-list .img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-content .news2-list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.news-content .news2-list .info h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-content .news2-list .info p {
  color: #777777;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-content .news2-list .info time {
  color: #777777;
  font-family: "Montserrat";
}
.news-content .news2-list .icon {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .news-content .news2-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  }
}
@media screen and (min-width: 992px) {
  .news-content .news-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-content .news2-list a {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .news-content .news2-list .img {
    width: clamp(18.75rem, 7.0376807564rem + 18.9098998888vw, 29.375rem);
    height: clamp(11.125rem, 4.0976084538rem + 11.3459399333vw, 17.5rem);
  }
  .news-content .news2-list .icon {
    width: clamp(3.75rem, -2.4506395996rem + 10.0111234705vw, 9.375rem);
    display: flex;
    justify-content: center;
    color: #9f9f9f;
  }
  .news-content .news2-list .icon i {
    font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  }
}

.video-content {
  padding: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem) 0;
}
.video-content .video-list {
  margin-top: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  display: grid;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(0.9375rem, -4.9186596218rem + 9.4549499444vw, 6.25rem);
}
.video-content .video-list .item a {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  text-align: center;
}
.video-content .video-list .item a:hover h3 {
  color: var(--color-primary);
}
.video-content .video-list .item a:hover .img::after {
  background: rgba(31, 47, 83, 0.85);
}
.video-content .video-list .item a:hover .img::before {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 1;
  background: #fff;
  color: var(--color-primary);
}
.video-content .video-list .item a .img {
  padding-top: 56.25%;
  position: relative;
  z-index: 2;
}
.video-content .video-list .item a .img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.video-content .video-list .item a .img::before {
  content: "\e66e";
  font-family: "iconfont" !important;
  font-size: clamp(1.125rem, -0.1151279199rem + 2.0022246941vw, 2.25rem);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  width: 100%;
  width: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
  height: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
  padding-left: 1%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: clamp(0.0625rem, -0.0752919911rem + 0.2224694105vw, 0.1875rem) solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.video-content .video-list .item a h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  line-height: 1.6;
  font-weight: 400;
  transition: all 0.3s;
}
@media screen and (min-width: 992px) {
  .video-content .video-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-detail-content {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  background: #fff;
  padding: clamp(1.25rem, -7.0175194661rem + 13.3481646274vw, 8.75rem) clamp(0.9375rem, -22.1426585095rem + 37.2636262514vw, 21.875rem);
  border-radius: clamp(0.625rem, -2.8197997775rem + 5.5617352614vw, 3.75rem);
}
.news-detail-content > h1 {
  font-size: clamp(1.125rem, -0.8040878754rem + 3.1145717464vw, 2.875rem);
  font-weight: 400;
  text-align: center;
}
.news-detail-content > time {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  color: #777777;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  margin: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  font-family: "Montserrat";
}
.news-detail-content > time i {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.news-detail-content .g-content {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  line-height: 1.8;
}
.news-detail-content .g-content p {
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.news-detail-content .back {
  margin: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.news-detail-content .back a {
  width: clamp(7.5rem, 3.366240267rem + 6.6740823137vw, 11.25rem);
  height: clamp(2.5rem, 0.7087041157rem + 2.8921023359vw, 4.125rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(3.75rem, 1.6831201335rem + 3.3370411568vw, 5.625rem);
  border: 1px solid var(--color-primary);
  transition: all 0.3s;
}
.news-detail-content .back a:hover {
  border-color: #2a4a7d;
  color: #fff;
  background: #2a4a7d;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(26, 54, 93, 0.3);
}
.news-detail-content .back a i {
  font-size: clamp(1rem, -0.2401279199rem + 2.0022246941vw, 2.125rem);
}

.pagination-detail {
  display: grid;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.pagination-detail a {
  background: #eff0f5;
  padding: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  display: flex;
  gap: clamp(0.625rem, -0.4084399333rem + 1.6685205784vw, 1.5625rem);
  transition: all 0.3s;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.pagination-detail a:hover {
  background: var(--color-primary);
  color: #fff;
}
.pagination-detail a:hover .text span {
  border-color: #fff;
  color: inherit;
}
.pagination-detail a:hover .text p {
  color: inherit;
}
.pagination-detail a:hover i {
  color: #fff;
}
.pagination-detail a:nth-child(2) i {
  order: 2;
  transform: rotateY(180deg);
}
.pagination-detail a .text {
  flex: 1;
  display: flex;
  gap: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  flex-direction: column;
  align-items: flex-start;
}
.pagination-detail a .text span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #dedede;
  color: #9f9f9f;
  transition: all 0.3s;
}
.pagination-detail a .text p {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.pagination-detail a i {
  flex-shrink: 0;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-top: clamp(2rem, 1.5866240267rem + 0.6674082314vw, 2.375rem);
  color: var(--color-primary);
  transition: all 0.3s;
}
@media screen and (min-width: 992px) {
  .pagination-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact {
  padding: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem) 0;
}

.contact-info {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  flex-direction: column;
  background: #eff0f5;
  gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  padding: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
  border-radius: clamp(0.75rem, -0.4901279199rem + 2.0022246941vw, 1.875rem);
}
.contact-info ul {
  display: grid;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  flex: 1;
}
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  font-family: "Montserrat";
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
  color: #454545;
}
.contact-info ul li i {
  color: var(--color-primary);
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.contact-info .qrcode {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.contact-info .qrcode .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #777;
}
.contact-info .qrcode .group img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .contact-info ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info .qrcode {
    width: clamp(16.25rem, 13.494160178rem + 4.4493882091vw, 18.75rem);
    flex-shrink: 0;
  }
}

.contact-map {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  height: clamp(18.75rem, -8.8083982202rem + 44.4938820912vw, 43.75rem);
  border-radius: clamp(1rem, -0.1023359288rem + 1.7797552836vw, 2rem);
  overflow: hidden;
}

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

.crumbs {
  display: flex;
  align-items: center;
  color: #777777;
}
.crumbs a, .crumbs span {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
.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: 992px) {
  .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, .products-section .sidebar .category-nav, .workshop .items .item .text .mod_content, .global .g-content, .about-why .items .item .g-content {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.h-auto::-webkit-scrollbar, .products-section .sidebar .category-nav::-webkit-scrollbar, .workshop .items .item .text .mod_content::-webkit-scrollbar, .global .g-content::-webkit-scrollbar, .about-why .items .item .g-content::-webkit-scrollbar {
  width: 0.25rem;
}
.h-auto::-webkit-scrollbar-track, .products-section .sidebar .category-nav::-webkit-scrollbar-track, .workshop .items .item .text .mod_content::-webkit-scrollbar-track, .global .g-content::-webkit-scrollbar-track, .about-why .items .item .g-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.h-auto::-webkit-scrollbar-thumb, .products-section .sidebar .category-nav::-webkit-scrollbar-thumb, .workshop .items .item .text .mod_content::-webkit-scrollbar-thumb, .global .g-content::-webkit-scrollbar-thumb, .about-why .items .item .g-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
}

.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 */