* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
:root {
  --padd64: 64px;
  --primary: #166dbb;
}
.text-two {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.text-three {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.img_box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
}
.img_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: all 0.5s;
}
.themeflat-container {
  position: relative;
  margin: 0 auto;
  width: 1280px;
  max-width: 100%;
}
.themeflat-container2 {
  position: relative;
  margin: 0 auto;
  width: 1280px;
  max-width: 90%;
}
.themeflat-container3 {
  position: relative;
  margin: 0 auto;
  width: 1200px;
  max-width: 90%;
}
.text-one {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.text-two {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.text-three {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.mod_header {
  text-align: center;
  margin-bottom: 30px;
}
.mod_title {
  font-size: 32px;
  font-weight: 700;
  color: #14142b;
  text-align: center;
}
.mod_subtitle {
  margin-top: 8px;
  font-size: 15px;
  color: #5a5a6e;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .mod__title {
    font-size: 26px;
  }
}
/*slick 修整*/
.slick-track .slick-slide {
  display: block !important;
}
.slick-slider {
  position: relative;
}
.slick-slider .slick-prev,
.slick-slider .slick-next {
  opacity: 0;
  top: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  z-index: -2;
  top: 50%;
  transform: translateY(-50%);
}
.slick-slider .slick-prev {
  left: 0;
}
.slick-slider .slick-next {
  right: 0;
}
.slick-dots {
  text-align: center;
  margin-top: 30px;
  --wh: 10px;
  --margin-x: 6px;
  --bg: #d9d9d9;
}
.slick-dots li {
  display: inline-block;
  width: var(--wh);
  height: var(--wh);
  margin: 0 var(--margin-x);
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--bg);
}
.slick-dots li.slick-active {
  background-color: var(--primary);
}
.slick-dots li button {
  color: transparent !important;
  display: none;
}
/*slick 修整 end*/
.home-product {
  padding: var(--padd64) 0px;
  /* ---- Cards grid ---- */
  /* ---- Responsive ---- */
}
.home-product .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.home-product .card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.home-product .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.home-product .card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dfe3e8 0%, #c7ccd3 100%);
}
.home-product .card__body {
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-product .card__title {
  font-size: 15.5px;
  font-weight: 700;
  color: #14142b;
  line-height: 1.3;
  margin-bottom: 8px;
}
.home-product .card__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: #6b6b7b;
  flex: 1;
}
.home-product .card__arrow {
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px solid;
  align-self: flex-end;
  color: #1a5cff;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
  border-top: 1px solid #e4e8ee;
  width: 100%;
  text-align: right;
}
.home-product .card:hover .card__arrow {
  transform: translateX(5px);
}
@media (max-width: 1400px) {
  .home-product .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .home-product .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .home-product .cards {
    grid-template-columns: 1fr;
  }
}
.home-solution {
  padding: var(--padd64) 0px;
  background: #0c1a30;
  /* ---- Cards row ---- */
  /* bottom gradient scrim so the label stays readable */
  /* placeholder image tints (swap with real photos) */
  /* ---- Responsive ---- */
}
.home-solution .mod_title {
  color: #fff;
}
.home-solution .mod_subtitle {
  color: #fff;
}
.home-solution .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.home-solution .card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 186 / 204;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 2px solid #ffffff96;
}
.home-solution .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}
.home-solution .card__img,
.home-solution .card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  overflow: hidden;
  z-index: 1;
}
.home-solution .card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 14, 28, 0.9) 0%, rgba(6, 14, 28, 0.35) 32%, rgba(6, 14, 28, 0) 55%);
  z-index: 2;
}
.home-solution .card__label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  z-index: 10;
}
.home-solution .card__label svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #ffffff;
  stroke-width: 1.6;
  fill: none;
}
@media (max-width: 1400px) {
  .home-solution .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .home-solution .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .home-solution .cards {
    grid-template-columns: 1fr;
  }
}
.home-choose {
  padding: var(--padd64) 0px;
  /* ---- Features row ---- */
  /* thin vertical divider between columns */
  /* ---- Responsive ---- */
}
.home-choose .features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 20px;
}
.home-choose .feature {
  position: relative;
  text-align: center;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.home-choose .feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #e3e3e8;
}
.home-choose .feature__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: initial;
  margin-bottom: 10px;
  padding-top: 10px;
}
.home-choose .feature__icon svg {
  width: 50px;
  height: 50px;
  stroke: #2f5bff;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-choose .feature__title {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c2e;
  line-height: 1.35;
  margin-bottom: 12px;
}
.home-choose .feature__desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a7a88;
}
@media (max-width: 1200px) {
  .home-choose .features {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
  .home-choose .feature + .feature::before {
    display: none;
  }
}
@media (max-width: 700px) {
  .home-choose .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  .home-choose .features {
    grid-template-columns: 1fr;
  }
}
.home-case {
  padding: var(--padd64) 0px;
  background: #1a1a2e;
  /* ---- Cards row ---- */
  /* placeholder image tints (swap for real photos) */
  /* ---- Responsive ---- */
}
.home-case .home-case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.home-case .mod_header {
  margin-bottom: 0;
}
.home-case .mod_title {
  color: #fff;
  font-size: 26px;
}
.home-case .section__more {
  font-size: 14px;
  font-weight: 600;
  color: #3d7bff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.home-case .section__more:hover {
  color: #6fa0ff;
}
.home-case .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.home-case .card {
  background: #0e1c33;
  border: 1px solid #1c2c47;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}
.home-case .card:hover {
  transform: translateY(-5px);
  border-color: #33507f;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}
.home-case .card__img {
  width: 100%;
  padding-top: 62.237762%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-case .card__img img {
  transition: transform 0.4s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.home-case .card:hover .card__img img {
  transform: scale(1.05);
}
.home-case .card__body {
  padding: 14px 16px 16px;
}
.home-case .card__name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.55;
}
.home-case .card__location {
  font-size: 12.5px;
  color: #b8c2d4;
  margin-bottom: 12px;
}
.home-case .card__product {
  font-size: 11.5px;
  font-style: italic;
  color: #7d8aa0;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home-case .img-marina {
  background: linear-gradient(135deg, #24406b, #0b1a30);
}
.home-case .img-dubai {
  background: linear-gradient(135deg, #4a5a70, #1a2740);
}
.home-case .img-mtr {
  background: linear-gradient(135deg, #3a4a63, #131f34);
}
.home-case .img-jakarta {
  background: linear-gradient(135deg, #2c3f5e, #0d1a2e);
}
@media (max-width: 1100px) {
  .home-case .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .home-case .cards {
    grid-template-columns: 1fr;
  }
}
.home-about {
  padding: var(--padd64) 0;
  background: #F5F6F8;
  /* ---- Left: image ---- */
  /* ---- Middle: text ---- */
  /* ---- Right: 2x2 feature grid ---- */
  /* ---- Responsive ---- */
}
.home-about .section {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.25fr;
  gap: 42px;
  align-items: center;
}
.home-about .about__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.home-about .about__media .img_box {
  width: 100%;
  height: 100%;
}
.home-about .about__title {
  font-size: 26px;
  font-weight: 700;
  color: #14142b;
  margin-bottom: 14px;
}
.home-about .about__text {
  font-size: 14px;
  line-height: 1.7;
  color: #6d6d7c;
  margin-bottom: 14px;
}
.home-about .about__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 9px 22px;
  border: 1px solid #2f5bff;
  border-radius: 4px;
  background: transparent;
  color: #2f5bff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
.home-about .about__btn:hover {
  background: #2f5bff;
  color: #ffffff;
}
.home-about .about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  padding-left: 25px;
  border-left: 1px solid #e4e8ee;
}
.home-about .stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  border-right: 1px solid #e4e8ee;
  border-top: 1px solid #e4e8ee;
}
.home-about .stat:nth-child(even) {
  border-right: none;
}
.home-about .stat:nth-child(1),
.home-about .stat:nth-child(2) {
  border-top: none;
}
.home-about .stat__icon svg {
  width: 34px;
  height: 34px;
  stroke: #2f5bff;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-about .stat__big {
  font-size: 14px;
  font-weight: 700;
  color: #14142b;
  line-height: 1.3;
}
.home-about .stat__text {
  font-size: 14px;
  color: #4a4a5a;
  line-height: 1.4;
}
.home-about .stat__text strong {
  display: block;
  font-weight: 600;
  color: #2a2a3a;
}
@media (max-width: 1200px) {
  .home-about .section {
    grid-template-columns: 1fr 1fr;
  }
  .home-about .about__media {
    grid-column: 1 / -1;
  }
}
@media (max-width: 720px) {
  .home-about .section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-about .about__stats {
    gap: 24px;
  }
  .home-about .about__title {
    font-size: 23px;
  }
}
.home-factory {
  padding: var(--padd64) 0;
  background: #fff;
  overflow: hidden;
  /* ---- Cards row ---- */
  /* ---- Responsive ---- */
}

.home-factory-swiper{
    overflow: initial !important;
    margin-left: -22px !important;
    margin-right: -22px !important;
}

.home-factory .mod_header {
  margin-bottom: 20px;
}
.home-factory .mod_title {
  font-size: 20px;
  text-align: left;
}
.home-factory .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.home-factory .card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: all 0.28s;
}
.home-factory .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}
.home-factory .card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.4s;
  overflow: hidden;
  z-index: 1;
}
.home-factory .card__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  z-index: -1;
}
.home-factory .card__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(6, 14, 28, 0.85) 0%, rgba(6, 14, 28, 0.15) 45%, rgba(6, 14, 28, 0) 70%);
}
.home-factory .card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  z-index: 2;
}
@media (max-width: 1200px) {
  .home-factory .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .home-factory .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-factory .section__title {
    font-size: 22px;
  }
}
@media (max-width: 440px) {
  .home-factory .cards {
    grid-template-columns: 1fr;
  }
}
.footer {
  background: #1b2547;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px 0px 22px;
  overflow: hidden;
  /* vertical divider between the two top halves */
  /* newsletter */
  /* ---- Middle row ---- */
  /* products two columns */
  /* ---- Bottom ---- */
  /* ---- Responsive ---- */
}
.footer .footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  align-items: center;
  position: relative;
  z-index: 1;
}
.footer .footer__top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
}
.footer .footer__top-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: relative;
}
.footer .footer__top::before {
  content: "";
  position: absolute;
}
.footer .contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer .contact__icon svg {
  width: 20px;
  height: 20px;
  stroke: #1b2547;
  stroke-width: 1.8;
  fill: none;
}
.footer .contact__label {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}
.footer .contact__label span,
.footer .contact__label a {
  display: block;
  font-weight: 400;
  color: #c4cbdd;
}
.footer .contact__label a:hover {
  color: #fff;
}
.footer .socials {
  display: flex;
  gap: 12px;
}
.footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer .socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}
.footer .socials svg {
  width: 50%;
  height: 50%;
  fill: #d5dae7;
}
.footer .newsletter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  padding-left: 40px;
}
.footer .newsletter__title {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}
.footer .newsletter__form {
  display: flex;
  height: 46px;
}
.footer .newsletter__input {
  width: 200px;
  border: none;
  outline: none;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 16px;
  font-style: italic;
}
.footer .newsletter__input::placeholder {
  color: #c4cbdd;
  font-style: italic;
}
.footer .newsletter__btn {
  border: none;
  background: #ffffff;
  color: #1b2547;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 22px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.footer .newsletter__btn:hover {
  background: #e6e9f2;
}
.footer .footer__mid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 40px;
  padding: 50px 0;
}
.footer .brand__logo {
  height: 80px;
  margin-bottom: 25px;
  display: inline-block;
}
.footer .brand__logo img {
  height: 100%;
  width: auto;
}
.footer .brand__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #c4cbdd;
  max-width: 400px;
  margin-bottom: 26px;
}
.footer .certs {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .cert {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.footer .cert img {
  width: 100%;
  height: 100%;
}
.footer .cert--fc {
  border: none;
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  width: auto;
}
.footer .col__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.footer .col__list {
  list-style: none;
}
.footer .col__list li {
  margin-bottom: 13px;
}
.footer .col__list a {
  font-size: 16px;
  color: #c4cbdd;
  transition: color 0.2s ease;
}
.footer .col__list a:hover {
  color: #ffffff;
}
.footer .products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}
.footer .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #c4cbdd;
}
@media (max-width: 900px) {
  .footer .footer__top {
    grid-template-columns: 1fr;
  }
  .footer .newsletter {
    justify-content: flex-start;
    border-left: none;
    padding-left: 0;
  }
  .footer .footer__mid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .footer .footer__top-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer .newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer .products__grid {
    grid-template-columns: 1fr;
  }
}
/* ---- Top row ---- */
.solution-section {
  padding: var(--padd64) 0;
  /* ---- Two entries: left / right ---- */
  /* image box */
  /* placeholder tints (swap for real photos) */
  /* copy under the image */
  /* ---- Responsive ---- */
}
.solution-section .entries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.solution-section .entry {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.solution-section .entry__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.65;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 40, 90, 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.solution-section .entry:hover .entry__media {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20, 40, 90, 0.22);
}
.solution-section .img_box {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
.solution-section .entry__overlay {
  position: absolute;
  left: 28px;
  bottom: 26px;
  right: 28px;
  color: #222;
  z-index: 2;
}
.solution-section .entry__tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(47, 91, 255, 0.92);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.solution-section .entry__overlay-title {
  font-size: 26px;
  font-weight: 700;
}
.solution-section .img-scenario {
  background: linear-gradient(135deg, #3a5a80, #142338);
}
.solution-section .img-solution {
  background: linear-gradient(135deg, #2f6f6b, #10262f);
}
.solution-section .entry__body {
  padding: 24px 6px 0;
}
.solution-section .entry__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #6d6d7c;
  margin-bottom: 16px;
}
.solution-section .entry__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #2f5bff;
  transition: gap 0.2s ease;
}
.solution-section .entry__cta svg {
  width: 24px;
  margin-left: 5px;
  transition: all 0.5s;
}
.solution-section .entry__cta svg path {
  fill: #2f5bff;
}
.solution-section .entry:hover .entry__cta svg {
  transform: translateX(6px);
}
@media (max-width: 820px) {
  .solution-section .entries {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .solution-section .entry__media {
    aspect-ratio: 16 / 10;
  }
}
/* ---- Cards: flex layout, wraps & centers (row1 = 5, row2 = 4) ---- */
.solution-navs {
  display: flex;
  background: #f3f3f3;
}
.solution-navs .items {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  border-right: 2px solid #fff;
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  color: #222;
  transition: all 0.5s;
}
.solution-navs .items::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  background: var(--primary);
  z-index: -1;
  height: 0;
}
.solution-navs:not(:hover) .items.active {
  color: #fff;
}
.solution-navs:not(:hover) .items.active::after {
  height: 100%;
  bottom: initial;
  top: 0;
}
.solution-navs .items:hover {
  color: #fff;
}
.solution-navs .items:hover::after {
  height: 100%;
  bottom: initial;
  top: 0;
}
.app-section {
  padding: var(--padd64) 0;
  /* tall image rectangle with scenario name */
  /* text block: short desc + button */
  /* ---- Responsive ---- */
}
.app-section .apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 0px;
  margin: 0 -18px;
}
.app-section .app.w-25 {
  width: 25%;
}
.app-section .app.w-25 .app__name {
  font-size: 22px;
}
.app-section .app {
  width: 20%;
  padding: 0 18px;
}
.app-section .app .contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(20, 40, 90, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-section .app .contents:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(20, 40, 90, 0.18);
}
.app-section .app__media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.app-section .app__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.55), rgba(10, 20, 40, 0.05) 55%);
}
.app-section .app__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.app-section .app__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
  background: #000;
  opacity: 0.25;
}
.app-section .app:hover .app__img img {
  transform: scale(1.06);
}
.app-section .app__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  z-index: 1;
  text-transform: capitalize;
}
.app-section .app__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 20px;
  flex: 1;
}
.app-section .app__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #6d6d7c;
  flex: 1;
}
.app-section .app__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #2f5bff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.app-section .app__btn:hover {
  background: #1d46e0;
}
@media (max-width: 720px) {
  .app-section .apps {
    gap: 24px 18px;
  }
  .app-section .app {
    width: 46%;
  }
}
@media (max-width: 420px) {
  .app-section .app {
    width: 100%;
    max-width: 300px;
  }
}
.solution-details {
  padding: var(--padd64) 0;
}
.solution-details-img {
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 800px;
}
.solution-details-img img {
  width: 100%;
}
.solution-details-tits {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  color: #222;
}
.solution-details-content {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-top: 15px;
}
.solution-details-content p {
  margin-bottom: 10px;
}
.solution-details-content table {
  border-collapse: collapse;
}
.solution-details-content table td {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
}
/* ---- Header: title + rule ---- */
.solution-prducts {
  padding-bottom: var(--padd64);
  /* ---- Grid: 4 columns ---- */
  /* ---- Responsive ---- */
}
.solution-prducts .section__head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.solution-prducts .section__title {
  font-size: 30px;
  font-weight: 700;
  color: #1b2d55;
  white-space: nowrap;
}
.solution-prducts .section__rule {
  flex: 1;
  height: 1px;
  background: #2b2b2b;
}
.solution-prducts .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
}
.solution-prducts .card {
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s ease;
}
.solution-prducts .card:hover {
  box-shadow: inset 0 0 0 9999px rgba(47, 91, 255, 0.03);
}
.solution-prducts .card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #f4f6f9 0%, #e7ebf1 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aab2c0;
  font-size: 12px;
  margin-bottom: 18px;
}
.solution-prducts .card__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #1b2d55;
}
.solution-prducts a.card__name:hover {
  color: #2f5bff;
}
.solution-prducts .card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #7a7a88;
}
@media (max-width: 860px) {
  .solution-prducts .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .solution-prducts .grid {
    grid-template-columns: 1fr;
  }
  .solution-prducts .section__title {
    font-size: 19px;
  }
}
.solution-form {
  padding: var(--padd64) 0;
  background: #F8F8F8;
  /* ---- Header ---- */
  /* ---- Form ---- */
  /* ---- Button ---- */
  /* ---- Responsive ---- */
}
.solution-form .form__title {
  font-size: 34px;
  font-weight: 800;
  color: #1e2a6b;
  margin-bottom: 16px;
}
.solution-form .form__intro {
  font-size: 16px;
  line-height: 1.6;
  color: #7a7a86;
  margin-bottom: 30px;
}
.solution-form .form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.solution-form .field {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  color: #333;
  background: #f2f2f2;
  border: 1px solid #e2e2e6;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.solution-form .field::placeholder {
  color: #9a9aa4;
}
.solution-form .field:focus {
  background: #ffffff;
  border-color: #6f86ff;
  box-shadow: 0 0 0 3px rgba(111, 134, 255, 0.18);
}
.solution-form .field--message {
  min-height: 128px;
  resize: vertical;
  margin-bottom: 28px;
}
.solution-form .form__btn {
  display: inline-block;
  padding: 15px 42px;
  background: #182774;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.solution-form .form__btn:hover {
  background: #0f1b5a;
}
.solution-form .form__btn:active {
  transform: translateY(1px);
}
@media (max-width: 780px) {
  .solution-form .form__row {
    grid-template-columns: 1fr;
  }
  .solution-form .form__title {
    font-size: 28px;
  }
}
.page-banners {
  position: relative;
  z-index: 1;
  font-size: 0;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-banners::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  opacity: 0.3;
}
.page-banners > img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.page-banners-content {
  width: 100%;
  z-index: 2;
  padding-top: 20px;
}
.page-banners-content .titles {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.35;
}
.page-banners-content .texts {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  width: 750px;
}
.page-banners .mod-braeds {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}
.mod-braeds-list {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
.mod-braeds-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mod-braeds-item a {
  font-size: 16px;
  color: #fff;
  line-height: 1.65;
  flex-shrink: 0;
}
.mod-braeds-item a:hover {
  text-decoration: underline;
}
.mod-braeds-item svg {
  width: 19px;
  height: 19px;
  transform: translateY(1px);
  margin: 0 4px;
}
.mod-braeds-item svg path {
  fill: #fff;
}
.mod-braeds-item:last-child svg {
  display: none;
}
.product-app {
  padding: var(--padd64) 0;
}
.pro-titles {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.25;
  color: #222;
}
.product-app-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 28px -12px -24px;
}
.product-app-item {
  width: 20%;
  padding: 0 12px;
  margin-bottom: 24px;
}
.product-app-content {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.product-app-content .img_box {
  padding-top: 80%;
  flex-shrink: 0;
}
.product-app-content .tits {
  padding: 12px 21px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.65;
  color: #222;
  text-align: center;
  background: #F5F6F9;
  flex-grow: 1;
}
.product-series-list {
  display: flex;
  flex-wrap: wrap;
  margin: 28px -12px -24px;
  list-style: none;
}
.product-series-item {
  width: 20%;
  padding: 0 12px;
  margin-bottom: 24px;
}
.product-series-content {
  height: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  padding: 15px;
}
.product-series-content .imgs {
  flex-shrink: 0;
}
.product-series-content .img_box {
  padding-top: 80%;
  border-radius: 10px;
}
.product-series-content .content {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-series-content .content .tits {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  line-height: 1.25;
  margin-top: 15px;
}
.product-series-content .content .types {
  font-size: 15px;
  color: #fff;
  background-color: #000;
  line-height: 1.65;
  margin-top: 14px;
  padding: 5px 15px 6px;
  border-radius: 50px;
}
.product-series-content .content .mores {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.product-series-content .content .mores p {
  font-size: 16px;
  color: #182774;
  line-height: 1.65;
  margin-right: 5px;
}
.product-series-content .content .mores svg {
  width: 20px;
  height: 20px;
  transition: all 0.5s;
}
.product-series-content .content .mores svg path {
  fill: #182774;
}
.product-series-content:hover .img_box img {
  transform: scale(1.06);
}
.product-series-content:hover .content .mores svg {
  transform: translateX(5px);
}
/* ---- Info section ---- */
.contact-info {
  padding: var(--padd64) 0;
}
.contact-info .info {
  background: #ffffff;
}
.contact-info .info__heading {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #1c1c26;
  margin-bottom: 46px;
}
.contact-info .info__cols {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-info .col {
  text-align: center;
}
.contact-info .col__circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid #e2e2e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info .col__circle svg {
  width: 32px;
  height: 32px;
}
.contact-info .col__circle svg path {
  fill: #166DBB;
}
.contact-info .col__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #1c1c26;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 2px solid #ebebeb;
  display: inline-block;
}
.contact-info .contact-contents {
  text-align: center;
  margin-top: 8px;
  font-size: 0;
}
.contact-info .contact-contents svg {
  width: 16px;
  transform: translateY(2px);
  margin-right: 4px;
}
.contact-info .contact-contents svg,
.contact-info .contact-contents p {
  display: inline;
}
.contact-info .contact-contents p {
  font-size: 16px;
  line-height: 1.65;
}
/* ---- Quote section ---- */
.contact-conflex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-conflex .items {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact-conflex .items svg {
  width: 16px;
  height: 16px;
  transform: translateY(2px);
  margin-right: 4px;
  flex-shrink: 0;
}
.contact-conflex .items p {
  font-size: 16px;
  line-height: 1.65;
}
.contact-conflex .items p a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
  display: inline-block;
}
.contact-conflex .items p a:hover {
  color: #166DBB;
  text-decoration: underline;
}
.contact-conflex .items:last-child {
  margin-bottom: 0;
}
/* ---- Responsive ---- */
@media (max-width: 760px) {
  .info__cols {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
.contact-form {
  padding: var(--padd64) 0;
  background: #f2f2f2;
}
.contact-form .flexs {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
.contact-form .left,
.contact-form .right {
  width: 100%;
}
.contact-form .left {
  margin-top: 40px;
}
.contact-form .img_box {
  padding-top: 30%;
  height: 100%;
  border-radius: 14px;
  min-height: 300px;
}
.contact-form .sa::after {
  content: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 3;
  background: #fff;
}
.contact-form .mod_header .mod_title,
.contact-form .mod_header .mod_subtitle {
  text-align: left;
}
.contact-form-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  gap: 16px 0;
}
.contact-form-box label {
  display: block;
  width: 50%;
  padding: 0 8px;
}
.contact-form-box label.block {
  width: 100%;
}
.contact-form-box input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
}
.contact-form-box textarea {
  padding: 16px 16px;
  width: 100%;
  height: 150px;
}
.contact-form-box input,
.contact-form-box textarea {
  font-size: 16px;
  color: #333;
  line-height: 1.65;
  border: none;
  outline: none;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #e4e4e4;
  font-family: inherit;
}
.contact-form-box button {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #166DBB;
  color: #fff;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.5s;
}
.contact-form-box button:hover {
  background: #0f5796;
}
.news-nav {
  padding: 50px 0 40px;
}
.news-nav-list {
  display: flex;
  margin: 0 -20px;
  flex-wrap: wrap;
  gap: 20px 0;
  list-style: none;
}
.news-nav-item {
  width: 33.333333%;
  padding: 0 20px;
}
.news-nav-link {
  display: block;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.news-nav-link .img_box {
  padding-top: 50%;
}
.news-nav-link .img_box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  background-color: #000;
  opacity: 0.2;
}
.news-nav-link .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  width: 100%;
  padding: 0 30px;
  text-align: center;
}
.news-nav-link:hover .img_box img {
  transform: scale(1.06);
}
.blog-content {
  padding-bottom: var(--padd64);
}
.blog-content .mod_title,
.blog-content .mod_subtitle {
  text-align: left;
}
.blog-lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -18px;
  gap: 36px 0;
  list-style: none;
}
.blog-items {
  width: 33.33333%;
  padding: 0 18px;
}
.blog-liinks {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
.blog-liinks .img_box {
  padding-top: 60%;
  flex-shrink: 0;
}
.blog-liinks .conts {
  flex-grow: 1;
  background: #f5f5f5;
  padding: 20px 25px;
}
.blog-liinks .time {
  font-size: 16px;
  line-height: 1.65;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 6px 15px;
  z-index: 3;
}
.blog-liinks .tits {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
  color: #222;
  transition: all 0.5s;
}
.blog-liinks .texts {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}
.blog-liinks:hover .img_box img {
  transform: scale(1.05);
}
.blog-liinks:hover .tits {
  color: var(--primary);
}
.blogdeta-hd {
  padding: var(--padd64) 0;
}
.blogdeta-hd .flexs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blogdeta-hd .lefts {
  width: 49%;
}
.blogdeta-hd .rights {
  width: 49%;
}
.blogdeta-hd .lefts .titles {
  color: #222;
  font-weight: 600;
  line-height: 1.35;
  font-size: 36px;
}
.blogdeta-hd .lefts .infos {
  margin-top: 48px;
  display: flex;
  align-items: center;
}
.blogdeta-hd .lefts .infos img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 15px;
}
.blogdeta-hd .lefts .infos p {
  font-size: 18px;
  color: #444;
  line-height: 1.5;
}
.blogdeta-hd .rights .img_box {
  padding-top: 55%;
  border-radius: 20px;
}
.blogdeta-main {
  padding: var(--padd64) 0;
  background: #F8F8F8;
}
.blogdeta-main .flexs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.blogdeta-main .flexs .lefts {
  width: 100%;
  padding-right: 0px !important;
  margin-bottom: 35px;
}
.blogdeta-main .flexs .rights {
  width: 100%;
  position: static !important;
  right: 0;
  top: 80px;
}
.blogdeta-edit h1,
.blogdeta-edit h2,
.blogdeta-edit h3,
.blogdeta-edit h4,
.blogdeta-edit h5,
.blogdeta-edit h6,
.blogdeta-edit p {
  font-size: revert;
  padding: 0.3em 0;
}
.blogdeta-edit ul,
.blogdeta-edit ol {
  padding-left: 20px;
}
.blogdeta-edit p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}
.blogdeta-edit img {
  max-width: 100%;
}
.blogdeta-group {
  margin-bottom: 45px;
}
.blogdeta-group .tits {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.45;
  color: #0f1b5a;
  margin-bottom: 20px;
}
.blogdeta-group:last-child {
  margin-bottom: 0;
}
.blogdeta-group-list {
  list-style-type: none;
}
.blogdeta-group-list .items:nth-child(1) {
  padding-top: 0;
}
.blogdeta-group-list .items:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blogdeta-group-list .items {
  padding: 24px 0;
  border-bottom: 1px solid #d3d3d3;
}
.blogdeta-group-list .links {
  display: flex;
  align-items: center;
}
.blogdeta-group-list .links .imgs {
  width: 160px;
  flex-shrink: 0;
}
.blogdeta-group-list .links .imgs .img_box {
  padding-top: 60%;
}
.blogdeta-group-list .links .conts {
  width: calc(100% - 160px);
  padding-left: 20px;
}
.blogdeta-group-list .links .tits {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.45;
  transition: all 0.5s;
}
.blogdeta-group-list .links .times {
  font-size: 16px;
  margin-top: 10px;
  color: #777;
  line-height: 1.45;
}
.blogdeta-group-list .links:hover .imgs .img_box {
  transform: scale(1.06);
}
.blogdeta-group-list .links:hover .tits {
  color: var(--primary);
}
.blogdeta-form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  gap: 10px 0;
}
.blogdeta-form-item.block {
  width: 100%;
}
.blogdeta-form-item {
  padding: 0 5px;
  width: 50%;
}
.blogdeta-form-item input {
  padding: 0 15px;
  height: 46px;
}
.blogdeta-form-item textarea {
  padding: 12px 15px;
  height: 80px;
}
.blogdeta-form-item input,
.blogdeta-form-item textarea {
  width: 100%;
  background: #F8F8F8;
  border: 1px solid #999;
  font-size: 16px;
  line-height: 1.55;
  font-family: initial;
  outline: none;
}
.blogdeta-form-item button {
  width: 100%;
  height: 46px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
}
.blogdeta-media {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
.blogdeta-media p {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.65;
}
.blogdeta-media .lists {
  display: flex;
  list-style: none;
}
.blogdeta-media .items {
  margin-right: 10px;
}
.blogdeta-media a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: all 0.5s;
}
.blogdeta-media a svg {
  width: 44%;
}
.blogdeta-media a svg path {
  fill: #fff;
}
.blogdeta-media a:hover {
  background: var(--primary);
}
.blogdeta-page {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
.blogdeta-page .prevs,
.blogdeta-page .nexts {
  width: 48%;
  display: block;
}
.blogdeta-page .nexts {
  text-align: right;
}
.blogdeta-page .tits {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  line-height: 1.5;
  margin-bottom: 5px;
  transition: all 0.5s;
}
.blogdeta-page p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 16px;
  color: #666;
}
.blogdeta-page .prevs:hover .tits,
.blogdeta-page .nexts:hover .tits {
  color: var(--primary);
}
.support-banner .titles {
  text-align: left;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
}
.support-main {
  padding: var(--padd64) 0;
}
.support-main .mod_header .mod_subtitle {
  font-size: 22px;
}
.support-main-list {
  display: flex;
  padding-top: 20px;
  margin: 0 -20px;
  gap: 30px 0;
  list-style: none;
  justify-content: center;
}
.support-main-item {
  width: 20%;
  padding: 0 20px;
}
.support-main-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-main-link .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  border: 4px solid #999999;
}
.support-main-link .icons svg {
  width: 65%;
}
.support-main-link .icons svg path {
  fill: var(--primary);
}
.support-main-link .title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-top: 20px;
}
.support-how-main {
  padding: var(--padd64) 0;
}
.support-how-edit ul,
.support-how-edit ol {
  padding-left: 20px;
}
.support-how-edit h1 {
  font-size: 38px;
  padding: 0.3em 0;
}
.support-how-edit h2 {
  font-size: 32px;
  padding: 0.3em 0;
}
.support-how-edit h3 {
  font-size: 28px;
  padding: 0.3em 0;
}
.support-how-edit h4 {
  font-size: 24px;
  padding: 0.3em 0;
}
.support-how-edit h5 {
  font-size: 20px;
  padding: 0.3em 0;
}
.support-how-edit h6 {
  font-size: 18px;
  padding: 0.3em 0;
}
.support-how-edit p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.65;
}
.support-video,
.support-faq {
  padding: var(--padd64) 0;
}
.support-video .mod_header .mod_title,
.support-faq .mod_header .mod_title {
  font-size: 36px;
}
.support-faq {
  background: #F5F7FA;
}
.support-term {
  padding: var(--padd64) 0;
}
.support-video-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -20px;
  gap: 40px 0;
  list-style: none;
}
.support-video-item {
  width: 33.3333333%;
  padding: 0 20px;
}
.support-video-cont {
  width: 100%;
}
.support-video-cont .img_box {
  padding-top: 60%;
}
.support-video-cont .img_box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.support-video-cont .tits {
  font-size: 26px;
  color: #222;
  line-height: 1.6;
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}
.support-faq .flexs {
  display: flex;
  justify-content: center;
  background: #E5E5E5;
}
.support-faq .flexs .items {
  width: 50%;
  border-right: 2px solid #fff;
}
.support-faq .flexs .items .tits {
  display: block;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 26px;
  line-height: normal;
}
.support-faq .flexs .items:last-child {
  border: none;
}
.support-faq-list {
  list-style: none;
}
.support-faq-list .item {
  border-bottom: 2px solid #fff;
}
.support-faq-list .item.open .hds svg {
  transform: rotate(180deg);
}
.support-faq-list .hds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F6F6F7;
  padding: 16px 20px;
  cursor: pointer;
}
.support-faq-list .hds p {
  padding-right: 30px;
  flex-grow: 1;
  font-size: 20px;
  color: #333333;
  line-height: 1.45;
  font-weight: bold;
}
.support-faq-list .hds svg {
  width: 22px;
  transition: all 0.5s;
}
.support-faq-list .hds svg path {
  fill: #333;
}
.support-faq-list .bds {
  padding: 15px 20px;
  display: none;
}
.case-mains {
  background: #F7F7F7;
  overflow: hidden;
  padding-bottom: var(--padd64);
}
.casenav__inner {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  /* ---- Item ---- */
  /* active (first item) */
  /* ---- Responsive ---- */
}
.casenav__inner .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: #8c8c94;
  text-decoration: none;
  transition: color 0.25s ease;
}
.casenav__inner .item__icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.casenav__inner .item__icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.casenav__inner .item__label {
  font-size: 18px;
  line-height: 1.5;
  color: #5a5a62;
  transition: color 0.25s ease;
}
.casenav__inner .item:hover {
  color: var(--primary);
}
.casenav__inner .item:hover .item__label {
  color: var(--primary);
}
.casenav__inner .item--active {
  color: var(--primary);
}
.casenav__inner .item--active .item__label {
  color: var(--primary);
  font-weight: 500;
}
@media (max-width: 900px) {
  .casenav__inner .casenav__inner {
    flex-wrap: wrap;
    gap: 26px 10px;
    padding: 22px 20px;
  }
  .casenav__inner .item {
    flex: 0 0 25%;
  }
}
@media (max-width: 520px) {
  .casenav__inner .item {
    flex: 0 0 33.33%;
  }
}
.case-big-swiper {
  margin-top: var(--padd64) !important;
}
.case-big-swiper .swiper-pagination {
  position: absolute;
  left: 50px !important;
  bottom: 40px !important;
  z-index: 2;
  width: initial !important;
}
.case-big-swiper .swiper-pagination .swiper-pagination-bullet {
  background: transparent !important;
  font-size: 18px;
  color: #444;
  position: relative;
  z-index: 1;
  margin-right: 50px !important;
  display: inline-block !important;
  width: initial !important;
  height: initial !important;
  margin-left: 0 !important;
  opacity: 1 !important;
  transition: all 0.5s;
  cursor: pointer;
}
.case-big-swiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #999;
  left: calc(100% + 9px);
  top: 50.5%;
  transform: translateY(-50%);
}
.case-big-swiper .swiper-pagination .swiper-pagination-bullet:last-child::after {
  display: none;
}
.case-big-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--primary);
}
.case-big-flexs {
  display: flex;
  background: #FFFFFF;
}
.case-big-flexs .lefts,
.case-big-flexs .rights {
  width: 50%;
}
.case-big-flexs .lefts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 90px;
}
.case-big-flexs .lefts .imgs img {
  width: 290px;
  height: 80px;
}
.case-big-flexs .lefts .subtit {
  margin-top: 15px;
  font-size: 28px;
  color: #222;
  line-height: 1.35;
  padding-left: 15px;
  position: relative;
  z-index: 1;
}
.case-big-flexs .lefts .subtit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #EAEAEA;
}
.case-big-flexs .lefts .tits {
  margin-top: 35px;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.26;
  font-weight: bold;
  display: block;
}
.case-big-flexs .lefts .texts {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.65;
  color: #555;
}
.case-big-flexs .lefts .texts span {
  font-weight: bold;
  margin-right: 5px;
}
.case-big-flexs .rights .img_box {
  height: 100%;
  padding-top: 60%;
}
.case-lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: var(--padd64) !important;
  margin: 0 -15px 0;
  gap: 30px 0;
  list-style: none;
}
.case-items {
  width: 33.333333%;
  padding: 0 15px;
}
.case-conts {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.case-conts .img_box {
  width: 100%;
  padding-top: 60%;
  flex-shrink: 0;
}
.case-conts .tabs {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
}
.case-conts .conts {
  background-color: #fff;
  padding: 18px 20px;
  flex-grow: 1;
}
.case-conts .conts .tits {
  font-size: 18px;
  line-height: 1.56;
  color: #222;
  font-weight: bold;
  transition: all 0.5s;
}
.case-conts .conts .adds {
  display: flex;
  align-items: center;
  font-size: 0;
  margin-top: 10px;
}
.case-conts .conts .adds .icons {
  width: 18px;
  flex-shrink: 0;
  margin-right: 5px;
}
.case-conts .conts .adds .icons svg {
  width: 100%;
}
.case-conts .conts .adds .icons svg path {
  fill: #a3a3a3;
}
.case-conts .conts .adds p {
  font-size: 16px;
  color: #a3a3a3;
}
.case-conts .conts .texts {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
  line-height: 1.56;
}
.case-conts .conts .times {
  font-size: 16px;
  color: #a3a3a3;
  line-height: 1.45;
  margin-top: 10px;
}
.case-conts:hover .img_box img {
  transform: scale(1.05);
}
.case-conts:hover .conts .tits {
  color: var(--primary);
}
.case-items.active .case-pop {
  opacity: 1;
  pointer-events: all;
}
.case-pop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.case-pop-content {
  padding: 40px 40px;
  background: #fff;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}
.case-pop-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  transition: all 0.5s;
}
.case-pop-close svg {
  width: 50%;
  transition: all 0.5s;
}
.case-pop-close svg path {
  fill: #fff;
}
.case-pop-close:hover svg {
  transform: rotate(180deg);
}
.case-pop-swiper .img_box {
  padding-top: 60%;
}
.case-pop-info {
  margin-top: 25px;
}
.case-pop-info .tits {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  color: var(--primary);
}
.case-pop-info .texts {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin-top: 10px;
}
.case-details {
  padding: var(--padd64) 0;
  background: #F7F7F7;
  overflow: hidden;
}
.case-details-flex {
  display: flex;
  align-items: flex-start;
}
.case-details-flex .lefts {
  width: calc(100% - 450px);
  background: #fff;
}
.case-details-flex .lefts .titles {
  padding: 40px 40px 40px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 30px;
}
.case-details-flex .lefts .content {
  padding: 45px 32px 60px;
}
.case-details-flex .lefts .tits {
  padding-left: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.2;
  color: #222;
  font-weight: 500;
  margin-bottom: 30px;
}
.case-details-flex .lefts .tits::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  left: 0;
  top: 13px;
}
.case-details-flex .lefts .case-edits {
  text-align: center;
}
.case-details-flex .lefts .case-edits img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.case-details-flex .lefts .case-edits p {
  line-height: 1.75;
  padding: 8px 0;
}
.case-details-flex .lefts .case-edits h1,
.case-details-flex .lefts .case-edits h2,
.case-details-flex .lefts .case-edits h3,
.case-details-flex .lefts .case-edits h4,
.case-details-flex .lefts .case-edits h5,
.case-details-flex .lefts .case-edits h6 {
  padding: 0.4em 0 0.2em;
}
.case-details-flex .rights {
  width: 450px;
  padding-left: 30px;
  line-height: 1.52;
}
.case-group {
  margin-bottom: 40px;
}
.case-group:last-child {
  margin-bottom: 0;
}
.case-group .titles {
  font-size: 24px;
  line-height: 1.25;
  color: #222;
  margin-bottom: 25px;
  font-weight: 500;
}
.case-group .case-group-list {
  list-style: none;
}
.case-group .case-group-item {
  margin-bottom: 30px;
}
.case-group .case-group-item:last-child {
  margin-bottom: 0;
}
.case-group .case-group-link .img_box {
  padding-top: 60%;
}
.case-group .case-group-link .tit {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 14px;
  color: #222;
  transition: all 0.5s;
}
.case-group .case-group-link:hover .img_box img {
  transform: scale(1.05);
}
.case-group .case-group-link:hover .tit {
  color: var(--primary);
}
.case-group .case-group-link2 .tit {
  font-size: 22px;
  margin-top: 0;
  background-color: #fff;
  padding: 20px 25px;
}
.case-details-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding: 40px 32px;
}
.case-details-controls .case-cut {
  width: 60%;
}
.case-details-controls .case-details-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #ddd;
  transition: all 0.5s;
}
.case-details-controls .case-details-back svg {
  width: 20px;
  flex-shrink: 0;
  margin-right: 10px;
  transform: translateY(1px);
}
.case-details-controls .case-details-back svg path {
  transition: all 0.5s;
}
.case-details-controls .case-details-back p {
  font-size: 18px;
  color: #555;
  flex-shrink: 0;
  transition: all 0.5s;
}
.case-details-controls .case-details-back:hover {
  border: 1px solid var(--primary);
}
.case-details-controls .case-details-back:hover svg path {
  fill: var(--primary);
}
.case-details-controls .case-details-back:hover p {
  color: var(--primary);
}
.case-details-controls .case-cut-next {
  margin-top: 10px;
}
.case-details-controls .case-cut-prev:hover,
.case-details-controls .case-cut-next:hover {
  color: var(--primary);
}
.case-details-controls .case-cut-prev,
.case-details-controls .case-cut-next {
  display: flex;
  font-size: 18px;
  line-height: 1.55;
  color: #333;
  transition: all 0.5s;
}
.case-details-controls .case-cut-prev span,
.case-details-controls .case-cut-next span {
  flex-shrink: 0;
  margin-right: 5px;
}
.case-details-controls .case-cut-prev p,
.case-details-controls .case-cut-next p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.slick-track .slick-slide {
  font-size: 0;
}
.prodeta-info {
  padding: var(--padd64) 0 50px;
}
.prodeta-info .flexs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prodeta-info .lefts {
  width: 45%;
  display: flex;
  flex-direction: column-reverse;
}
.prodeta-info .lefts .smimg {
  font-size: 0;
}
.prodeta-info .lefts .smimg .img_box {
  padding-top: 80%;
}
.prodeta-info .lefts .bigimg .img_box {
  padding-top: 80%;
}
.prodeta-info .rights {
  width: 52%;
  background: #F8F8F8;
  padding: 30px 30px;
}
.prodeta-info .rights .title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary);
}
.prodeta-info .rights .types {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin-top: 5px;
}
.prodeta-smimg {
  margin: 10px -5px 0;
}
.prodeta-smimg-items {
  padding: 0px 5px;
}
.prodeta-info-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 30px 0px 0px;
  padding: 20px 20px;
  background: var(--primary);
  border-radius: 80px;
}
.prodeta-info-item {
  width: 25%;
  padding: 0 15px;
}
.prodeta-info-conts {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.prodeta-info-conts .icons {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prodeta-info-conts .icons svg {
  width: 50%;
}
.prodeta-info-conts .icons svg path {
  fill: #fff;
}
.prodeta-info-conts .conts .tits {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
.prodeta-info-conts .conts .texts {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
  line-height: 1.65;
}
.prodeta-info-group {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
.prodeta-info-group .prodeta-info-btn {
  display: flex;
  padding: 11px 26px;
  border-radius: 50px;
  color: #fff;
  background: var(--primary);
  font-size: 18px;
  line-height: 1.65;
  transition: all 0.5s;
  margin-right: 18px;
}
.prodeta-info-group .prodeta-info-btn:hover {
  color: #fff;
  background: #000;
}
.prodeta-info-group .media-share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.prodeta-info-group .media-share .items {
  width: 46px;
  height: 46px;
  background: #dddddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.prodeta-info-group .media-share .items svg {
  width: 55%;
}
.prodeta-info-group .media-share .items svg path {
  fill: var(--primary);
  transition: all 0.5s;
}
.prodeta-info-group .media-share .items:hover {
  background: var(--primary);
}
.prodeta-info-group .media-share .items:hover svg path {
  fill: #fff;
}
.prodeta-nav {
  border-bottom: 1px solid #d8d8d8;
  background: #FFFFFF;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 10;
}
.prodeta-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.prodeta-nav-item {
  padding: 16px 0;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  transition: all 0.5s;
  margin-right: 30px;
}
.prodeta-nav-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  bottom: -1px;
  left: 0;
  transition: all 0.5s;
  opacity: 0;
}
.prodeta-nav-item:hover::after,
.prodeta-nav-item.active::after {
  opacity: 1;
}
.prodeta-technical {
  padding-top: 60px;
}
.prodeta-tits {
  border-bottom: 2px solid #e6e6e6;
}
.prodeta-tits p {
  display: inline-flex;
  padding: 14px 28px;
  background: var(--primary);
  border-radius: 0 24px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}
.prodeta-edit {
  padding: 26px 0px 0;
}
.prodeta-edit h2,
.prodeta-edit h3,
.prodeta-edit h4,
.prodeta-edit h5,
.prodeta-edit h6 {
  font-size: revert;
}
.prodeta-edit p {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
}
.prodeta-edit ul,
.prodeta-edit ol {
  padding-left: 20px;
}
.prodeta-download,
.prodeta-faq,
.prodeta-case,
.prodeta-cert,
.prodeta-connection,
.prodeta-cust {
  padding-top: 60px;
}
.prodeta-faq {
  padding-bottom: 80px;
}
.prodeta-download-list,
.prodeta-faq-list,
.prodeta-case-swiper {
  margin-top: 30px;
  list-style: none;
}
.prodeta-download-item,
.prodeta-faq-item {
  margin-bottom: 14px;
}
.prodeta-download-item:last-child,
.prodeta-faq-item:last-child {
  margin-bottom: 0;
}
.prodeta-download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: #F8F8F8;
  transition: all 0.5s;
}
.prodeta-download-link .lefts {
  display: flex;
  align-items: center;
  font-size: 0;
}
.prodeta-download-link .lefts .icons {
  width: 34px;
  margin-right: 15px;
}
.prodeta-download-link .lefts .icons svg {
  width: 100%;
}
.prodeta-download-link .lefts .icons svg path {
  fill: var(--primary);
}
.prodeta-download-link .lefts .tits {
  font-size: 20px;
  line-height: 1.56;
  color: var(--primary);
  font-weight: bold;
}
.prodeta-download-link .rights {
  display: flex;
  align-items: center;
  font-size: 0;
}
.prodeta-download-link .rights .tits {
  font-size: 18px;
  color: var(--primary);
  line-height: 1.56;
  margin-right: 14px;
}
.prodeta-download-link .rights .icons {
  width: 30px;
}
.prodeta-download-link .rights .icons svg {
  width: 100%;
}
.prodeta-download-link .rights .icons svg path {
  fill: var(--primary);
}
.prodeta-download-link:hover {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}
.prodeta-faq-item .hds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  background: #F8F8F8;
  cursor: pointer;
}
.prodeta-faq-item .hds p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.65;
  color: #222;
  margin-right: 30px;
}
.prodeta-faq-item .hds .icons {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.prodeta-faq-item .hds .icons::after,
.prodeta-faq-item .hds .icons::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  background: #666;
}
.prodeta-faq-item .hds .icons::after {
  width: 1px;
  height: 100%;
}
.prodeta-faq-item .hds .icons::before {
  width: 100%;
  height: 1px;
}
.prodeta-faq-item .bds {
  padding: 14px 25px;
  background-color: #e7e7e7;
  display: none;
}
.prodeta-faq-item .bds .bds-con {
  font-size: 16px;
  line-height: 1.7;
}
.prodeta-faq-item.active .hds p {
  color: var(--primary);
}
.prodeta-faq-item.active .hds .icons::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.prodeta-case-swiper .swiper-pagination {
  position: static;
  margin-top: 15px;
}
.prodeta-case-swiper .case-conts .conts {
  background: #F8F8F8;
}
/* ===== 首页资质 ===== */
.stats-bar {
  background: var(--white);
  padding: var(--padd64) 0 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #0B1526;
  border-radius: 12px;
  padding: 26px 36px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.stat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.stat-item strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}
.stat-item span {
  font-size: 11.5px;
  color: var(--text-light);
}
.stats-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
}
.cert-logos {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cert {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.cert small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 2px;
}
.cert-iso {
  font-size: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
}
.cert-iso small {
  font-size: 8px;
}
/* ===== 首页资质-end ===== */
.product-center {
  padding: var(--padd64) 0;
}
.about-nav {
  position: sticky;
  left: 0;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  z-index: 10;
}
.about-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.about-nav-item {
  list-style-type: none;
  padding: 15px 26px;
  font-size: 18px;
  line-height: 1.55;
  color: #222;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}
.about-nav-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  right: 0;
  bottom: -1px;
  transition: all 0.5s;
  width: 0;
}
.about-nav-item.active {
  color: var(--primary);
}
.about-nav-item.active::after {
  width: 100%;
  left: 0;
  right: initial;
}
.about-nav-item:hover {
  color: var(--primary);
}
.about-choose {
  padding: var(--padd64) 0;
  background: #F3F3F3;
}
.about-choose .flexs {
  display: flex;
  flex-wrap: wrap;
}
.about-choose .flexs .lefts,
.about-choose .flexs .rights {
  width: 50%;
}
.about-choose .flexs .lefts {
  padding-right: 50px;
}
.about-choose .flexs .lefts .mod_title {
  text-align: left;
}
.about-choose .flexs .lefts .list {
  list-style: none;
  margin-top: 40px;
}
.about-choose .flexs .lefts .list li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-left: 30px;
  border-bottom: 1px solid #FFF;
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #333;
  line-height: 1.65;
}
.about-choose .flexs .lefts .list li::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 0;
  top: 10px;
  background: var(--primary);
}
.about-choose .flexs .lefts .list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.about-choose .flexs .rights {
  width: 100%;
}
.about-choose .flexs .rights .list {
  display: flex;
  flex-wrap: wrap;
}
.about-choose .flexs .rights .item {
  width: 33.33333%;
  padding: 30px 20px;
  border-right: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-choose .flexs .rights .item:nth-child(3n) {
  border-right: none;
}
.about-choose .flexs .rights .item:nth-child(n+4) {
  border-top: 2px solid #fff;
}
.about-choose .flexs .rights .icons {
  width: 63px;
}
.about-choose .flexs .rights .icons img {
  width: 100%;
  height: auto;
}
.about-choose .flexs .rights .texts {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 1.65;
}
.about-infos {
  padding: var(--padd64) 0;
}
.about-infos .flexs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about-infos .lefts {
  width: 47%;
  padding: 5px;
  background: #F3F3F3;
}
.about-infos .lefts .img_box {
  padding-top: 75.7251908%;
}
.about-infos .rights {
  width: 50%;
}
.about-infos .rights .mod_title {
  text-align: left;
}
.about-infos .rights .texts {
  margin-top: 20px;
}
.about-infos .rights .texts p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 15px;
}
.about-infos .rights .texts p:last-child {
  margin-bottom: 0;
}
.about-team {
  padding: var(--padd64) 0;
  background: #190C1C;
}
.about-team .mod_title {
  text-align: left;
  color: #fff;
}
.about-team-lists {
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  margin: 30px -15px 0 !important;
  /*gap: 30px 0;*/
}
.about-team-items {
  width: 25%;
  padding: 0 15px !important;
}
.about-team-conts .img_box {
  padding-top: 124.64985%;
  border-radius: 12px;
  object-fit: cover;
}
.about-team-conts .tits {
  font-size: 20px;
  line-height: 1.65;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
}
.about-team-conts .texts {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.652;
  color: #fff;
}
.about-team-conts .links {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.about-team-conts .links svg {
  width: 45%;
  height: auto;
}
.about-team-conts .links svg path {
  fill: #222;
}
.about-choose2 {
  padding: var(--padd64) 40px;
}
.about-choose2-list {
  margin: 30px -15px 0;
  display: flex;
  flex-wrap: wrap;
}
.about-choose2-item {
  padding: 0 15px;
  width:16.666666%;
}
.about-choose2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-choose2-content .icons {
  width: 80px;
}
.about-choose2-content .icons svg,
.about-choose2-content .icons img {
  width: 100%;
  height: auto;
}
.about-choose2-content .tits {
  background: #222;
  font-size: 18px;
  line-height: 1.65;
  padding: 5px 25px;
  display: inline-flex;
  border-radius: 50px;
  color: #fff;
  margin-top: 10px;
}
.about-choose2-content .texts {
  font-size: 16px;
  line-height: 1.55;
  color: #333;
  margin-top: 14px;
  text-align: center;
}
.about-strength {
  padding: var(--padd64) 0;
  background: #F3F3F3;
}
.about-strength-list {
  margin: 30px -15px 0;
}
.about-strength-item {
  padding: 0 15px;
}
.about-strength-content .img_box {
  padding-top: 70%;
  border-radius: 10px;
}
.about-strength-content .tits {
  text-align: center;
  font-size: 18px;
  color: #222;
  line-height: 1.65;
  margin-top: 12px;
}
.about-strength-slick {
  position: relative;
  z-index: 1;
}
.mod-arrow {
  position: absolute;
  width: calc(100% + 150px);
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  z-index: 2;
  pointer-events: none;
}
.mod-arrow .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mod-arrow .mod-prev,
.mod-arrow .mod-next {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #C7C7C7;
  transition: all 0.5s;
  cursor: pointer;
  pointer-events: all;
}
.mod-arrow .mod-prev svg,
.mod-arrow .mod-next svg {
  width: 50%;
}
.mod-arrow .mod-prev svg path,
.mod-arrow .mod-next svg path {
  fill: #fff;
}
.mod-arrow .mod-prev:hover,
.mod-arrow .mod-next:hover {
  background: var(--primary);
}
.mod-arrow .mod-prev {
  transform: rotate(180deg);
}
.about-honor {
  padding: var(--padd64) 0;
}
.about-honor .mod_header {
  margin-bottom: 0px;
}
.about-honoe-slick {
  margin: 20px -15px 0;
}
.about-honoe-content {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
}
.about-honoe-content .img_box {
  padding-top: 138%;
}
.about-honoe-item {
  padding: 15px;
}
.about-process {
  padding: var(--padd64) 0;
}
/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #DDE3EB;
}
.timeline-item {
  padding-bottom: 40px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item .year {
  font-weight: 800;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 0.25rem;
}
.timeline-item .tits {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.timeline-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}
.blog-main {
  padding: var(--padd64) 0;
}
.blog-flexs {
  display: flex;
  align-items: flex-start;
}
.blog-flexs .lefts {
  width: 330px;
  position: sticky;
  left: 0;
  top: 100px;
  padding-right: 30px;
}
.blog-flexs .lefts .titles {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #222;
  margin-bottom: 20px;
}
.blog-flexs .rights {
  width: calc(100% - 330px);
}
.blog-lefts-nav,
.blog-lefts-nav li {
  list-style: none;
}
.blog-lefts-nav .items {
  margin-bottom: 15px;
}
.blog-lefts-nav .items a {
  background: #f0f0f0;
  display: flex;
  padding: 12px 25px;
  color: #222;
  font-size: 18px;
  transition: all 0.5s;
  cursor: pointer;
  line-height: 1.65;
  border-radius: 4px;
}
.blog-lefts-nav .items:hover a,
.blog-lefts-nav .items.active a {
  background: var(--primary);
  color: #fff;
}
.prodeta-iso {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 15px;
  list-style: none;
  margin-top: 20px;
}
.prodeta-iso-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  list-style: none;
}
.prodeta-iso-item img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.page-shell {
  width: min(1380px, calc(100% - 80px));
  margin: 0 auto;
  line-height: 1.65;
  padding: 70px 0 100px;
  --ink: #17222c;
  --muted: #6f7c87;
  --line: #e4e9ec;
  --panel: #f5f7f8;
  --green: #0066ff;
  --green-dark: #0156d6;
  --green-soft: #c3dafd;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 42, 51, 0.09);
}
.page-shell .page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.page-shell .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-shell .eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--green);
  content: "";
}
.page-shell h1 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.page-shell .heading-note {
  max-width: 410px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}
.page-shell .product-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}
.page-shell .category-panel {
  position: sticky;
  top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(34, 49, 57, 0.05);
}
.page-shell .category-title {
  padding: 22px 25px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-shell .category-list {
  list-style: none;
}
.page-shell .category-button {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  color: #222;
  transition: color 0.25s ease, background 0.25s ease, padding 0.25s ease;
}
.page-shell .category-list li:last-child .category-button {
  border-bottom: 0;
}
.page-shell .category-button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.page-shell .category-button:hover,
.page-shell .category-button:focus-visible {
  color: var(--green-dark);
  background: #f7fbf9;
  outline: none;
  padding-left: 28px;
}
.page-shell .category-button.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 700;
}
.page-shell .category-button.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}
.page-shell .category-button .arrow {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}
.page-shell .category-button:hover .arrow,
.page-shell .category-button.is-active .arrow {
  transform: translateX(3px);
}
.page-shell .content-panel {
  min-width: 0;
}
.page-shell .svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.page-shell .view {
  animation: reveal 0.42s ease both;
}
.page-shell .view[hidden] {
  display: none;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-shell .intro-head {
  margin-bottom: 38px;
}
.page-shell .section-kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-shell h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.18;
}
.page-shell .lead {
  max-width: 900px;
  color: var(--muted);
  font-size: 16px;
}
.page-shell .definition-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 62px;
  border-radius: 5px;
  background: #15262a;
  color: #fff;
}
.page-shell .definition-copy {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 62px);
}
.page-shell .definition-copy h3 {
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 600;
}
.page-shell .definition-copy p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.page-shell .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
  list-style: none;
}
.page-shell .feature-list li {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}
.page-shell .scene-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 24px;
}
.page-shell .scene-heading h3 {
  font-size: 25px;
  font-weight: 650;
}
.page-shell .scene-heading p {
  max-width: 460px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}
.page-shell .scene-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.page-shell .scene-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 4px;
  color: #fff;
  isolation: isolate;
}
.page-shell .scene-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.page-shell .scene-card::after {
  position: absolute;
  z-index: 1;
  inset: 25% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(7, 19, 20, 0.88));
  content: "";
}
.page-shell .scene-card:hover .scene-art {
  transform: scale(1.035);
}
.page-shell .scene-content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}
.page-shell .scene-content h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.page-shell .scene-content p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}
.page-shell .list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 32px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.page-shell .list-head h2 {
  margin-bottom: 9px;
}
.page-shell .category-summary {
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
}
.page-shell .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.page-shell .product-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: #222;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.page-shell .product-card:hover {
  border-color: rgba(21, 150, 111, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.page-shell .product-image {
  position: relative;
  display: grid;
  overflow: hidden;
  /* min-height: 230px; */
  padding-top: 66%;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), transparent), var(--panel);
}
.page-shell .product-image::after {
  position: absolute;
  right: 10%;
  bottom: 17px;
  left: 10%;
  height: 18px;
  border-radius: 50%;
  background: rgba(47, 63, 70, 0.11);
  content: "";
  filter: blur(8px);
}
.page-shell .product-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.page-shell .product-card:hover .product-image img {
  transform: scale(1.035) translateY(-2px);
}
.page-shell .product-info {
  padding: 21px 22px 23px;
}
.page-shell .product-series {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-shell .product-name {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
}

.page-shell .types{
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-shell .types span{
    color: #6f7c87;
    font-size: 12px;
    line-height: 1.45;
}

.page-shell .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.page-shell .product-meta .detail-arrow {
  color: var(--green-dark);
  font-size: 17px;
  transition: transform 0.25s ease;
}
.page-shell .product-card:hover .detail-arrow {
  transform: translateX(4px);
}
@media (max-width: 1100px) {
  .page-shell .product-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
  }
  .page-shell .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .page-shell .page-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 28px;
  }
  .page-shell .heading-note {
    max-width: none;
    text-align: left;
  }
  .page-shell .product-layout {
    display: block;
  }
  .page-shell .category-panel {
    position: static;
    margin-bottom: 36px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .page-shell .category-title {
    padding: 16px 0 13px;
  }
  .page-shell .category-list {
    display: flex;
    overflow-x: auto;
    padding: 12px 0;
    gap: 8px;
    scrollbar-width: none;
  }
  .page-shell .category-list::-webkit-scrollbar {
    display: none;
  }
  .page-shell .category-list li {
    flex: none;
  }
  .page-shell .category-button {
    width: auto;
    padding: 9px 14px;
    border: 1px solid var(--line) !important;
    border-radius: 999px;
    white-space: nowrap;
  }
  .page-shell .category-button::before,
  .page-shell .category-button .arrow {
    display: none;
  }
  .page-shell .category-button:hover,
  .page-shell .category-button:focus-visible {
    padding-left: 14px;
  }
  .page-shell .intro-head {
    gap: 25px;
    margin-bottom: 28px;
  }
  .page-shell .definition-card {
    margin-bottom: 48px;
  }
  .page-shell .definition-copy {
    padding: 30px 25px;
  }
  .page-shell .scene-heading,
  .page-shell .list-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .page-shell .scene-heading p {
    text-align: left;
  }
  .page-shell .scene-grid {
    grid-template-columns: 1fr;
  }
  .page-shell .scene-card {
    min-height: 300px;
  }
  .page-shell .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-shell *,
  .page-shell *::before,
  .page-shell *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 1100px) {
  .page-shell {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    padding: 38px 20px 64px;
  }
}
.mod_subtit {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.support-term .mod_header {
  margin-bottom: 0;
}
.support-term-content {
  margin-top: 30px;
  width: 100%;
}
.support-term-content table {
  width: 100%;
}
.support-term-content th {
  background: var(--primary);
  color: #fff;
  padding: 15px 15px;
  text-align: left;
  font-size: 18px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0;
}
.support-term-content td {
  padding: 15px 15px;
  border-bottom: 1px solid #DDE3EB;
  font-size: 16px;
  line-height: 1.45;
}
.support-term-content tr:hover td {
  background: rgba(0, 102, 255, 0.03);
}
.download-main {
  padding: var(--padd64) 0;
}
.download-main .flexs {
  display: flex;
  justify-content: space-between;
}
.download-main .lefts {
  width: 280px;
}
.download-main .lefts .tits {
  font-size: 30px;
  font-weight: bold;
  color: #222;
  line-height: 1.35;
}
.download-main .lefts .download-navs {
  margin-top: 20px;
  background: #F8F9FB;
  border-radius: 10px;
  overflow: hidden;
}
.download-main .lefts .download-navs-items {
  padding: 14px 20px;
  transition: all 0.5s;
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  cursor: pointer;
}
.download-main .lefts .download-navs-items:hover,
.download-main .lefts .download-navs-items.active {
  background: var(--primary);
  color: #fff;
}
.download-main .rights {
  width: calc(100% - 280px);
  padding-left: 30px;
  padding-top: 10px;
}
.download-main .download-search {
  display: flex;
  width: 34%;
  margin-left: auto;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.download-main .download-search input {
  width: calc(100% - 48px);
  padding: 0 15px;
  font-size: 16px;
  border: none;
  outline: none;
}
.download-main .download-search button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
}
.download-main .download-search button svg {
  width: 50%;
}
.download-lists {
  margin-top: 35px;
  list-style: none;
}
.download-items {
  margin-bottom: 25px;
  display: flex;
  padding: 20px 15px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  overflow: hidden;
}
.download-items .left,
.download-items .right {
  width: 50%;
}
.download-items .left {
  width: 47%;
}
.download-items .right {
  width: 63%;
}
.download-items .left {
  display: flex;
  justify-content: space-between;
}
.download-items .left .imgs {
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.download-items .left .imgs .img_box {
  padding-top: 80%;
  border-radius: 5px;
}
.download-items .left .conts {
  width: calc(100% - 220px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #dfdfdf;
}
.download-items .left .tits {
  font-size: 18px;
  line-height: 1.45;
  font-weight: bold;
  color: #333;
}
.download-items .left .texts {
  font-size: 16px;
  line-height: 1.65;
  margin-top: 5px;
}
.download-items .right {
  display: flex;
  justify-content: space-between;
}
.download-items .right .links:last-child {
  border: none;
}
.download-items .right .links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 32%;
  border-right: 1px solid #dfdfdf;
}
.download-items .right .links .icons1 {
  width: 40px;
}
.download-items .right .links .icons1 svg {
  width: 100%;
}
.download-items .right .links .tit {
  font-size: 16px;
  line-height: 1.35;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.download-items .right .links .types {
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 9px;
  color: #666;
}
.download-items .right .links .icons2 {
  width: 20px;
  margin-top: 8px;
}
.download-items .right .links .icons2 svg {
  width: 100%;
}
.download-items:last-child {
  margin-bottom: 0;
}
.support-video .themeflat-container2 {
  width: 90%;
  max-width: 100%;
}
.support-video-readmore {
  margin: 0 auto;
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  font-size: 18px;
  line-height: 1.65;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
  margin-top: 50px;
}
.support-video-list.is-collapsed .support-video-item:nth-child(n + 7) {
  display: none;
}
.support-video-list.is-collapsed .support-video-item:nth-child(n + 7) {
  display: none;
}
/* Video list expansion: preserve the button's semantic and keyboard-friendly states. */
.support-video-readmore[hidden] {
  display: none;
}
/* Keep the semantic button visually consistent with the original read-more control. */
.support-video-readmore {
  border: 0;
  font-family: inherit;
}
.support-video-readmore[hidden] {
  display: none;
}
.support-video-readmore:focus-visible {
  outline: 3px solid #76aef8;
  outline-offset: 3px;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.blog-pagination__list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-pagination__list svg {
  width: 23px;
}
.blog-pagination__list li span,
.blog-pagination__list li a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071a2d;
  background: #eef5fc;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
/* Blog pagination: distinguish the current page from navigable page links. */
.blog-pagination__list li.active a,
.blog-pagination__list li.active span {
  color: #fff;
  background: var(--primary);
  /* Reuse the project's primary theme color token. */
}
/* Blog pagination: keep unavailable previous/next controls visible but clearly disabled. */
.blog-pagination__disabled {
  color: #617184;
  cursor: not-allowed;
}
.blog-pagination__list li a,
.blog-pagination__list li span {
  transition: color 0.25s ease, background-color 0.25s ease;
}
.blog-pagination__list li:hover a,
.blog-pagination__list li:hover span {
  color: #fff;
  background: var(--primary);
}
.blog-pagination__list li a:focus-visible {
  outline: 3px solid #76aef8;
  outline-offset: 3px;
}
.blog-pagination__list li path {
  transition: all 0.5s;
}
.blog-pagination__list li:hover path {
  fill: #fff !important;
}
/* ---- Mega dropdown ---- */
.header-inner {
  position: relative;
}
.mainnav .menu > li:hover .mega {
  opacity: 1;
  pointer-events: all;
}
.mega {
  max-width: 100%;
  margin: 0px auto 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20, 40, 90, 0.16);
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  transition: all 0.5s;
  opacity: 0;
  pointer-events: none;
}
/* left category list */
.mega__side {
  padding: 22px 0;
  border-right: 1px solid #eef0f4;
}
.mega__cat {
  padding: 12px 26px;
  font-size: 15px;
  color: #444458;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.mega__cat:hover {
  color: #2f5bff;
}
.mega__cat--active {
  background: #eef3ff;
  color: #2f5bff;
  font-weight: 600;
}
/* right content */
.mega__main {
  padding: 24px 28px 26px;
}
/* featured block */
.feature {
  background: #f1f3f6;
  border-radius: 12px;
  padding: 26px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
  align-items: center;
}
.feature__img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef1f5, #d7dde6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa3b0;
  font-size: 13px;
  overflow: hidden;
}
.feature__title {
  font-size: 22px;
  font-weight: 700;
  color: #14142b;
  margin-bottom: 12px;
}
.feature__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6d6d7c;
  margin-bottom: 18px;
}
.feature__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 22px;
}
.feature__li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3a3a4a;
}
.feature__li svg {
  width: 17px;
  height: 17px;
  stroke: #2f5bff;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
.feature__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #2f5bff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.feature__btn:hover {
  background: #1d46e0;
}
/* series thumbnails row */
.series {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 22px;
}
.series__item {
  width: 118px;
  text-align: center;
  cursor: pointer;
}
.series__thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid #e8eaef;
  border-radius: 10px;
  background: linear-gradient(135deg, #f6f8fb, #e6eaf0);
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.series__thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
}
.series__item:hover .series__thumb {
  border-color: #2f5bff;
  transform: translateY(-3px);
}
.series__name {
  margin-top: 10px;
  font-size: 14px;
  color: #33333f;
}
.series__more {
  margin-left: auto;
  align-self: center;
  font-size: 14px;
  font-weight: 600;
  color: #2f5bff;
  text-decoration: none;
  white-space: nowrap;
}
.series__more:hover {
  color: #1d46e0;
}
/* ---- Responsive ---- */
@media (max-width: 900px) {
  .navbar__menu {
    gap: 18px;
    overflow-x: auto;
  }
  .mega {
    grid-template-columns: 1fr;
  }
  .mega__side {
    display: flex;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid #eef0f4;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .series {
    flex-wrap: wrap;
  }
  .series__more {
    margin-left: 0;
  }
}
.mega-rights-item:not(:first-child) {
  display: none;
}
@media screen and (max-width: 991px) {
  #mainnav-mobi ul li {
    position: relative !important;
  }
  .mega {
    display: none;
  }
}
.home-banner-swiper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-banner-swiper .img_box {
  padding-top: 33.85416666%;
}
.home-banner-swiper .swiper-pagination {
  bottom: 20px !important;
}
.home-banner-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #E3E3E2;
  width: 11px;
  height: 11px;
  border-radius: 11px;
  transition: all 0.5s;
  cursor: pointer;
  opacity: 1 !important;
}
.home-banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  background: var(--primary);
}

.support-downloads{
    padding: var(--padd64) 0;
    background: #f7f9fc;
}

.support-videos{
    padding: var(--padd64) 0;
}

.mod-mores-box{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.mod-mores{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: var(--primary);
    font-size: 0;
    transition: all 0.5s;
}

.mod-mores:hover{
    transform: translateY(5px);
}

.mod-mores span{
    font-size: 17px;
    color: #fff;
    line-height: 1.65;
}

.mod-mores svg{
    width: 18px;
    height: auto;
    flex-shrink: 0;
    margin-left: 10px;
}

.mod-mores svg path{
    fill: #fff;
}

@media screen and (max-width:1200px) {
    .mod-mores span{
        font-size: 16px;
    }
    
    .mod-mores svg{
        width: 18px;
    }
    
    .mod-mores-box{
        margin-top: 25px;
    }
}

.banner-group{
    display: flex;
    margin-top: 30px;
}

.banner-group .mod-mores{
    margin-right: 15px;
}

.banner-group .mod-mores:hover{
    transform: none;
    background: #222;
}

.contact-form{
    position: relative;
    z-index: 1;
}

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

.contact-form .mod_header .mod_title{
    margin-bottom: 0;
}

.contact-form .mod_header .mod_title,
.contact-form .mod_header .mod_subtitle{
    color: #fff;
}

.contact-form iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: 2;
}

.popup-video{
    position: absolute;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    cursor: pointer;
    transition: all 0.5s;
}

.popup-video:hover{
    transform: translate(-50%,-50%) scale(1.2);
}

.popup-video svg{
    width: 50%;
}

.product-info-flex{
    display: flex;
    align-items: center !important;
    justify-content: space-between;
}

.product-info-flex .lefts{
    width: 45%;
}

.product-info-flex .rights h2{
    font-size: clamp(30px, 3.2vw, 35px);
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-info-flex .lefts .img_box{
    padding-top: 66%;
}

.product-info-flex .rights{
    width: 50%;
}

@media screen and (max-width:1024px) {
    .product-info-flex{
        flex-direction: column;
    }
    
    .product-info-flex .lefts,
    .product-info-flex .rights{
        width: 100%;
    }
}

.slick-box{
    position: relative;
}

.slick-box-arrow{
    position: absolute;
    width:calc(100% + 140px);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.mod-prevs,
.mod-nexts{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    pointer-events: all;
    cursor: pointer;
    background: var(--primary);
}

.mod-prevs svg,
.mod-nexts svg{
    width: 37%;
}

.mod-prevs svg path,
.mod-nexts svg path{
    fill: #fff;
}

.mod-prevs svg{
    transform: rotate(180deg);
}

.about-honoe-box{
    position: relative;
}



@media screen and (max-width:1440px) {
    .slick-box-arrow{
        width:calc(100% - 40px);
    }
}

@media screen and (max-width:768px) {
    .slick-box-arrow{
        width:calc(100% - 20px);
    }
}

.home-readmore-box{
    text-align: center;
    margin-top: 25px;
}

.home-readmore{
    display: inline-flex;
    padding: 11px 25px;
    font-size: 16px;
    line-height: 1.45;
    color: #fff;
    background: var(--primary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.5s;
}

.home-readmore:hover{
    color: #fff;
    background: #222;
}

.home-readmore.type-white{
    background: #fff;
    color: #222;
}

.home-readmore.type-white:hover{
    background: var(--primary);
    color: #fff;
}

.prodeta-Certification{
    display: flex;
    flex-wrap: wrap;
    margin: 30px -15px 0;
    gap:30px 0;
}

.prodeta-Certification .img{
    width: 50%;
    padding: 0 15px;
}

.prodeta-Certification .img img{
    width: 100%;
}

.category-info-flex .rights{
    width: 100% !important;
}

.prodeta-video{
    padding-top: 60px;
}

.prodeta-video-list{
    display: flex;
    flex-wrap: wrap;
    margin: 25px -15px 0;
    gap:30px 0;
}

.prodeta-video-list .items{
    width: 100%;
    padding: 0 15px;
}

.prodeta-video-list .items .img_box{
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    padding-bottom: 55%;
}

.prodeta-video-list .items .img_box iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    left:0;
    top: 0;
    object-fit: cover;
    z-index: 1;
}

.prodeta-case-swiper .case-conts .img_box{
    padding-top: 141.80887%;
}

.prodeta-form{
    display: flex;
    flex-wrap: wrap;
    margin: 30px -12px 0;
    gap: 24px 0;
}

.prodeta-form-items{
    width: 33.33333333%;
    padding: 0 12px;
} 

.prodeta-form-items .content{
    
}

.prodeta-form-items.block{
    width: 100%;
}

.prodeta-form-items input,
.prodeta-form-items textarea{
    width: 100%;
    font-size: 16px;
    color: #222;
    border: 1px solid #C7C7C7;
    border-radius: 10px;
    display: block;
}

.prodeta-form-items input{
    height: 50px;
    padding: 0 15px;
}

.prodeta-form-items textarea{
    height: 150px;
    padding: 15px 15px;
}

.prodeta-form-items button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    min-width: 120px;
    cursor: pointer;
    transition: all 0.5s;
}

.prodeta-form-items button:hover{
    background: #222;
}

.prodeta-consult{
  padding-bottom: 80px;  
}

.prodeta-faq {
    padding-bottom: 60px;
}

@media screen and (max-width:991px) {
    
}

@media screen and (max-width:768px) {
    .prodeta-video-list .items{
        width: 100%;
    }
    
    .prodeta-form-items {
        width: 100%;
    }
    
    .prodeta-consult {
        padding-bottom: 60px;
    }
}

.customer-video,
.mod-testimonials{
    padding: 0px 0px var(--padd64);
}

.customer-video-swiper .img_box{
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    padding-bottom: 55%;
}

.customer-video-swiper .img_box iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    left:0;
    top: 0;
    object-fit: cover;
    z-index: 1;
}

.customer-video .swiper-pagination,
.testimonials-swiper .swiper-pagination{
    position: relative;
    margin-top: 10px;
}

.testimonials-swiper .swiper-slide{
    padding: 5px;
}

.testimonials-cont{
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
    border-bottom: 6px solid #222; 
    transition: all 0.5s;
}

.testimonials-cont:hover{
    border-bottom: 6px solid var(--primary); 
}

.testimonials-cont>svg{
    width: 40px;
    height: auto;
}

.testimonials-cont>svg path{
    fill: var(--primary);
}

.testimonials-cont .texts{
    font-size: 16px;
    line-height: 1.55;
    color: #444;
    font-style: italic;
    margin-top: 4px;
}

.testimonials-cont .infos{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonials-cont .infos .imgs{
    width: 80px;
    flex-shrink: 0;
    margin-right: 15px;
    background: #ccc;
}
.testimonials-cont .infos .imgs .img_box{
    padding-bottom: 100%;
}

.testimonials-cont .infos .conts .names{
    font-size: 22px;
    color: #222;
    line-height: 1.45;
    font-weight: bold;
}

.testimonials-cont .infos .conts .text{
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

.testimonials-swiper{
    margin-top: -5px;
    margin-left: -5px;
    margin-right: -5px;
}










