@font-face {
  font-family: "Roboto";
  src: url("../webfonts/roboto.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../webfonts/montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #3273f1;
  --green: #05a1df;
  --green-dark: #007be7;
  --text: #333333;
  --muted: #777777;
  --light: #f8f8f8;
  --line: #e7e7e7;
  --dark: #111111;
  --white: #ffffff;
  --black: #000000;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", "Microsoft YaHei", Sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0 0 18px;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.18;
}

.container {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.topbar {
  color: var(--black);
  /* background: var(--green); */
  font-size: 14px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar-list li i {
  color: var(--green);
}
.topbar-list li a {
  font-family: Sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.social {
  display: flex;
  gap: 10px;
  font-size: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.logo img {
  width: 150px;
}

.nav-menu,
.submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 20px 13px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .active {
  color: var(--green);
}

.has-sub > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.submenu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--white);
  border-top: 3px solid var(--green);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.submenu .submenu {
  left: 100%;
  top: -3px;
}

.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
text-transform: capitalize;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px;
}

.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--green);
  font: 500 15px/1 "Roboto", "Microsoft YaHei", Arial, "微软雅黑", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: 6px;
}

.quote-btn:hover,
.btn:hover {
  background: var(--green-dark);
}

.btn-blue {
  background: var(--blue);
}

.btn-blue:hover {
  background: #1f5ed1;
}
.search-btn {
  display: none;
}
.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}


.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}


.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}



.hero {
  position: relative;
  /* min-height: 610px; */
  display: flex;
  align-items: center;
  color: var(--white);
  background: center / cover no-repeat;
  padding: 50px 0;
}


.page-hero::before,
.image-card::before,

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-content,
.page-hero .container,
.cta-band .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: 43px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  max-width: 820px;
  margin: 28px 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
}

.hero-list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--white);
  list-style: none;
}

.hero-list li::before {
  content: "\f00c";
  margin-right: 10px;
  color: var(--white);
  font-weight: 700;
  font-family: "FontAwesome";
  background-color: var(--green);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
}
.grid.hero-grid {
  gap: 2px;
}
.section {
  padding: 88px 0;
}

.section-light {
  background: var(--light);
}

.section-head {
  margin: 0 auto 46px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 16px;
  text-transform: none;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 44px);
}

.section-desc {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.55;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card {
  position: relative;
  overflow: hidden;
  background: center / cover no-repeat;
  padding-bottom: 75%;
  height: 0;
}
.image-card > div {
  height: 100%;
  overflow: hidden;
  position: absolute;
  bottom: calc(120px - 100%);
  left: 0;
  width: 100%;
  padding: 50px 28px;
  transition: bottom 0.6s ease, opacity 0.6s ease;
  opacity: 1;
  box-sizing: border-box;
}

.image-card:hover > div {
  bottom: 0px;
  transition: bottom 0.6s ease, opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card {
    display: block;
}
.blog-card > div {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  /*padding: 28px;*/
  color: var(--white);
  background: center / cover no-repeat;
  transition: transform 0.25s ease;
  border: 1px solid #ccc;
}
.blog-card > div img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.25s ease;
}

.blog-card:hover  > div::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 2;
}
.blog-card:hover img{
    transform: scale(1.1);

}
.blog-card:hover {
  /*transform: translateY(-10px);*/
}

.image-card > *,
.blog-card > * {
  position: relative;
  z-index: 1;
}

.image-card h3,
.blog-card h3 {
  color: var(--white);
  font-size: 21px;
  position: relative;
  line-height: 1.8;
}
.image-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 128px;
  height: 2px;
  background: var(--green);
}
.image-card p {
  margin-top: 70px;
  color: #b6b6b5;
}

.categories .grid-4 {
  gap: 5px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: var(--white);
  transition: transform 0.25s ease;
}
.product-card:first-child {
  grid-column: span 2;
}
.product-card p {
  padding-right: 150px;
  display: none;
}
.product-card .btn {
  display: none;
}
.product-card:first-child p {
  display: block;
}
.product-card:first-child .btn {
  display: inline-block;
}
.product-card .img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.product-card:first-child .img{
  padding-bottom: calc(50% - 5px);;
}
.product-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;

}
.product-card h3 {
position: absolute;
    color: var(--white);
    font-size: 23px;
    margin-bottom: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.52);
    padding: 10px;
}
.product-card:hover {
  transform: translateY(-5px);
}

.index-about {}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.index-about .split {
  gap: 0;
  align-items: stretch;
}
.index-about .img {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 110%;
}
.index-about .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about p {
  margin: 0px;
  color: #E0E0E0;
}
.index-about .about-content {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}
.index-about .about-top {
  background-color: var(--green);
  color: var(--white);
  padding-right: 20%;
}
.index-about .about-top p {
  font-size: 28px;
  color: #FFFFFF;
  text-align: right;
  padding: 20px 0;
}
.index-about .about-content-desc {
  flex: 1;
  background-color: #052743;
  padding: 42px 20% 42px 42px;
}
.index-about .about-content-desc h2 {
  font-size: 43px;
  font-weight: 500;
  line-height: 58px;
  color: #FFFFFF;
}
.index-about .about-content-desc .btn {
  margin-top: 50px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
  text-align: center;
}

.stat {
  padding: 22px;
}

.stat strong {
  display: block;
  font-family: "Roboto", "Microsoft YaHei", sans-serif;
  font-size: 38px;
  line-height: 1;
}
.stat strong .counter {
  font-size: 43px;
  font-weight: 600;
  color: var(--green);
}
.stat strong span {
  color: var(--green);
}
.stat span {
  padding-top: 10px;
  color: #E0E0E0;
}
.cert-swiper {
  padding-bottom: 48px;
}

.cert-swiper .swiper-slide {
  height: auto;
}

.cert-swiper .swiper-pagination {
  bottom: 0;
}

main .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--green);
}

main .swiper-pagination-bullet-active {
  background: var(--green-dark);
}

.cert-item {
  height: 100%;
  /* padding: 28px; */
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}
.cert-item .img {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 140%;
}
.cert-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.cert-item h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.cert-item h3,
.feature-box h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.section-service .guarantee-grid {
  grid-template-columns: repeat(3, 1fr);
}
.guarantee {
  min-height: 150px;
  padding: 22px 16px;
  color: var(--black);
  box-shadow: rgba(0, 0, 0, 0.13) 0px 0px 10px 0px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .section-service .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .product-card:first-child {
  grid-column: span 1;
}
.product-card p {
    display: block;
}
}
@media screen and (max-width: 540px) {
  .section-service .guarantee-grid {
    grid-template-columns: 1fr;
  }
  .product-card p {
    padding: 0;
}
.product-card .img{
  position: static;
}
}
.guarantee i {
  font-size: 54px;
  margin-bottom: 24px;
  margin-top: 80px;
  color: var(--green);
}
.guarantee h3 {
  color: var(--black);
  font-size: 21px;
  margin-bottom: 80px;
  line-height: 1.5;
}
.guarantee p {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: var(--white);
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.guarantee:hover p {
  transform: translateY(-100%);
}
.section-service2 {
  background-color: transparent;
  background-image: linear-gradient(45deg, rgb(245, 255, 250) 0%, rgb(255, 255, 255) 100%);
}
.section-service2 {}
.section-service2 .container {
  display: flex;
  gap: 50px;
}
.section-service2 .grid {
  grid-template-columns: repeat(2, 1fr);
}
.section-service2 img {
  width: 58%;
}
.section-service2 .feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-service2 .feature-box i {
  font-size: 32px;
  color: var(--green);
}
.section-service2 .btn-box {
  margin-top: 36px;
}
.section-service2 .feature-box h3 {
  font-size: 18px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .section-service2 .container {
    flex-direction: column;
  }
  .section-service2 img {
    width: 100%;
  }
  .section-service2 .feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }
  .section-service2 .btn-box {
    text-align: center;
  }
}
.section-contact {
  background: url(../images/index-contact-bg.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.section-say {
  background-color: var(--light);
}
.section-say .container {
  display: flex;
  gap: 30px;
}
.section-say .section-say-content {
  width: 40%;
  padding: 30px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.08) 0px -10px 10px 0px;
  box-sizing: border-box;
}
.section-say .section-say-content h2 {
  font-size: 24px;
  font-weight: 700;
}
.section-say .section-say-testimonial {
  width: 60%;
}
.section-say .section-say-testimonial img {
  width: 100%;
}
.say-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  margin-top: 50px
}
.say-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.say-swiper .swiper-slide img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .section-say .container {
    flex-direction: column;
    min-width: 0;
  }
  .section-say .section-say-content {
    width: 100%;
  }
  .section-say .section-say-testimonial {
    width: 100%;
  }
  .section-say .say-swiper {
    max-width: 100%;
  }
}
.industry-card {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 20px;
  overflow: hidden;
  background: center / cover no-repeat;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.industry-card h3 {
  position: relative;
  color: var(--white);
  font-size: 20px;
}

.testimonial {}

.testimonial p {
  color: var(--white);
  font-size: 19px;
}
.index-blog .blog-card {
  min-height: auto;
  position: relative;
  padding: 0;
  /* padding-bottom: 124%;
  height: 0; */
}
.index-blog .blog-card .pic {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 75%;
}
.index-blog .blog-card .pic img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.index-blog .blog-card::before {
  z-index: 2;
}
/* .blog-card {
  min-height: 330px;
  align-items: flex-end;
} */

.blog-card h3  {
    font-size: 26px;
    line-height: 1.4;
    color: #333;
    text-align: center;
}
.index-blog .more {
  margin-top: 50px;
  text-align: center;
}
.page-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: center / cover no-repeat;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.breadcrumb {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.content {
  max-width: 900px;
  margin-inline: auto;
}

.content h2 {
  margin: 36px 0 16px;
  font-size: 30px;
}

.content img {
  margin: 22px 0;
}

.toc {
  padding: 24px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: var(--light);
}

.toc h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
}

.contact-form form {
  display: grid;
  gap: 15px;

}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 43px;

  border: 1px solid rgba(0, 0, 0, 0.25);

  color: rgba(0, 0, 0, 0.7);

  background: var(--white);
  border-radius: 6px;
  font-size: 20px;
  min-height: 72px;
  padding: 8px 24px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  display: none;
  margin: 0;
  color: var(--green);
}

.form-note.is-visible {
  display: block;
}

.cta-band {
  position: relative;
  padding: 72px 0;
  color: var(--white);
  background: center / cover no-repeat;
}

.cta-band h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 42px;
}

.cta-band p {
  max-width: 760px;
  color: var(--white);
}

.footer {
  color: var(--white);
  background: #141414;
}

.footer-main {
  padding: 70px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  gap: 40px;
}

.footer h2,
.footer h3 {
  margin-bottom: 18px;
  color: var(--white);
}

.footer p,
.footer a {
  color: #c8c8c8;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer ul li {
  display: flex;
  gap: 8px;
}
.footer ul li i {
  padding-top: 4px;
  width: 20px;
  display: block;
  flex-shrink: 0;
  color: var(--green);
}
.footer-logo {
  width: 150px;
  margin-bottom: 22px;
  filter: brightness(1.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 14px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-share {
  display: flex;
  gap: 15px;
}
.simple-page {
  min-height: 310px;
  /* display: grid;
  place-items: center;
  text-align: center; */
}
.simple-page .desc img{
  max-width: 100% !important;
  height: auto !important;
  display: inline-block;
}
@media (max-width: 1024px) {
  .navbar {
    grid-template-columns: 150px 1fr auto;
    gap: 12px;
  }

  .nav-menu a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .grid-4,
  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    width: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 9999;
  }

  .logo img {
    width: 132px;
  }

  .search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu-toggle {
    display: block;
  }

  .header-actions .quote-btn {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: block;
    position: absolute;
    left: -15px;
    top: 100%;
    background-color: #fff;
    right: -15px;
    padding: 15px;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .submenu,
  .submenu .submenu {
    position: static;
    min-width: 0;
    display: none;
    padding-left: 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-sub.is-open > .submenu {
    display: block;
  }

  .hero {
    min-height: 560px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .stats,
  .logo-grid,
  .guarantee-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* .image-card {
    min-height: 360px;
  } */

  .blog-card h3 {
    font-size: 28px;
  }

  .footer-bottom .container {
    flex-direction: column;
  }
}

/******news**********/
.show-news {
  padding-top: 0;
  background-color: #F9F9F9
}
.show-news .show-news-thumb {
  width: 100%;
  height: 480px;
}
.show-news .show-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show-news .container {
  display: flex;
  gap: 20px;
}
.show-news .content {
  width: 70%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 10px 0px;
  border-radius: 15px;
  margin-top: -88px;
  padding: 28px;
}
.show-news .sidebar {
  width: 30%;
}
@media (max-width: 992px) {
  .show-news .container {
    flex-direction: column;
    gap: 20px;
  }
  .show-news .content {
    width: 100%;
  }
  .show-news .sidebar {
    width: 100%;
  }
}
.show-news .time {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 30px;
  padding-top: 30px;
}
.show-news h1 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #333;
}
.show-news .show-content {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #333;
}
.show-news .show-content img {
  max-width: 100% !important;
  height: auto !important;
}
.show-news .sidebar {
  padding-top: 22px;
}
.show-news .sidebar .sidebar-form {
  border-radius: 15px;
  border: 2px solid var(--green);
  padding: 18px 18px 28px 18px;
}
.show-news .sidebar h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--green);
  margin: 0;
  padding: 0;
}
.sidebar-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sidebar-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar-form input, .sidebar-form textarea {
  background-color: #ffffff;
  color: #333;
  padding: 10px;
  border-radius: 2px;
  border: 1px solid #333;
  font-size: 15px;
}
.show-news-more .section-title {
  color: #333;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
}
/*****contact*****/

.contact-us {
  padding-top: 0;
}
.contact-us section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 688px;
}
.contact-us .desc {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.contact-us section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #F5FFFA;
}
.contact-us .desc h1 {
  font-size: 16px;
  font-weight: 400;
  color: var(--green);
  padding-top: 90px;
}
.contact-us .desc h2 {
  font-size: 44px;
  font-weight: 600;
  color: #333;
}
.contact-us .desc p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #999;
}
.contact-us > .container {
  margin-top: -90px;
}
.contact-us .grid {
  gap: 38px;
}
.contact-us .contact-card {
  padding: 28px;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 10px 0px;
  display: flex;
  gap: 18px;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  border-radius: 18px;
  transition: all 0.3s ease-in-out;
}
.contact-us .contact-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}
.contact-us .contact-card h4 {
  font-size: 19px;
  font-weight: 500
}
.contact-us .contact-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #999999;
  margin: 0;
}
.contact-us .contact-card:hover {
  background-color: var(--green);
}
.contact-us .contact-card:hover h3,
.contact-us .contact-card:hover h4,
.contact-us .contact-card:hover p {
  color: #fff;
}
.contact-us .contact-card i {
  color: #DBDEE3;
  font-size: 50px;
  position: absolute;
  top: 28px;
  right: 28px;
}

.section-contact-us .split {
  gap: 40px;
}
.section-contact-us .desc {
  padding-right: 40px;
  gap: 40px;
}
.section-contact-us .contact-form {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 10px 0px;
  border-radius: 18px;
  padding: 58px;
}
.section-contact-us .eyebrow {
  font-size: 50px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;

}
.section-contact-us .feature-box {
  display: flex;
  gap: 28px;
}
.section-contact-us .feature-box > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section-contact-us .feature-box i {
  font-size: 50px;
  color: var(--green);
}
.section-contact-us .feature-box h3 {
  font-size: 25px;
  font-weight: 700;
  color: #333;
}
.section-contact-us .feature-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #999999;
}
@media screen and (max-width: 768px) {
  .contact-us section .container {
    grid-template-columns: 1fr;
  }
  .contact-us section {
    background-position: 80% 335px;
    background-size: 900px auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-radius: 18px;
    padding-bottom: 80px;
  }
  .contact-us .desc {
    gap: 18px;
    text-align: center;
  }
  .contact-us .desc h2 {
    font-size: 22px;
  }
  .section-contact-us .desc {
    padding-right: 0;
    gap: 40px;
  }
  .section-contact-us .eyebrow {
    font-size: 38px;

  }
  .section-contact-us .feature-box {
    gap: 28px;
    flex-direction: column;
  }
  .section-contact-us .contact-form {
    padding: 32px;
  }
}
/*******about ********/

.about-us {
  padding: 150px 0;
  background-size: cover;
  background-position: center;
}
.about-us .container > div {
  width: 80%;
}
.about-us .section-title {
  font-size: 44px;
  font-weight: 500;
  color: #FFFFFF;
}
.about-us p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #BBBBBB;
}
.about-number {
  margin-bottom: 20px;
  padding: 50px 0;
  background-color: #252525;
}
.about-number .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  align-items: center;
}
.about-number h3 {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
}
.about-number p {
  font-size: 18px;
  font-weight: 400;
  color: #D3DFDF;
  text-align: center;
}
.about-quality {
  padding: 60px 0;
}
.about-quality .section-head {
  text-align: left;
  padding-right: 40px;
}
.about-quality .pic {
  width: 100%;
  padding-bottom: 83%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.about-quality .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.about-quality .btn-group {
  padding-top: 40px;
}
.progress-container {
  padding-top: 40px;
}
.progress-container .progress-title {
  display: block;
  margin: 10px 0 5px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 10%;
  overflow: hidden;
  transition: width 3s ease-in-out;
}
.progress-container .progress-title.active {
  width: var(--progress-width);
}
.progress-container .progress-title > span {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.progress-container .progress-title .span1 {
  z-index: 1;
}
.progress-container .progress-title .span2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e8e8e8;
  border-radius: 3px;
}
.progress-bar {
  position: relative;
}
.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--green);
  border-radius: 3px;
  z-index: 1;
  transition: width 3s ease-in-out;
}
.progress-bar.active::after {
  width: var(--progress-width);
}
.about-device .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about-device .container .desc {
  /* flex: 1; */
}
.about-device .container .about-device-swiper {
  min-width: 0;
  /* flex: 1; */
}
.about-device-swiper .pic {
  width: 100%;
  padding-bottom: 71%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.about-device-swiper .pic img {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  transition: all 0.6s ease-in-out;
}
.swiper-slide-active .pic img {
  transform: scale(1.1);
}
.about-device-swiper-button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 10px;
}
.about-device-swiper-button-next,
.about-device-swiper-button-prev {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background-color: var(--green);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-device .desc {
  display: flex;
  gap: 10px;
}
.about-device .desc .pagination {
  width: 30px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.about-device .desc .pagination .pagination-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 23px;
}
.about-device .desc .pagination .pagination-item span {
  background-color: var(--green);
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.about-device .desc .pagination .pagination-item.active span {
  display: flex;
}
.about-device .desc .pagination .pagination-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--green);
}
.about-device .desc .desc-item {
  padding: 0 40px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  gap: 20px;
}
.about-device .desc .desc-item .title,
.about-device .desc .desc-item .desc {
  animation-duration: 0.45s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.about-device .desc .desc-item .title.text-slide-up,
.about-device .desc .desc-item .desc.text-slide-up {
  animation-name: textSlideUp;
}
@keyframes textSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-device .desc .desc-item .btn {}
@media screen and (max-width: 768px) {
  .about-quality {
    padding: 40px 0;
  }
  .about-device .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-number .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-number h3 {
    font-size: 32px;
  }
  .about-number p {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .about-device .desc .pagination {
    display: none;
  }
}
.about-market .container {
  grid-template-columns: 1fr;
  text-align: center;
}
/***搜索*****/
.search-box {
  align-items: center;
  background-color: rgba(22, 22, 63, 0.9);
  bottom: 0;
  height: 100vh;
  left: 0;
  padding: 0 15%;
  position: fixed;
  right: 0;
  top: 0;
  transition: .3s;
  z-index: 9998;
  opacity: 0;
  overflow: hidden;
  transform: scale(0)
}
.search-box.active {
  opacity: 1;
  transform: scale(1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-box input {
  width: 100%;
  max-width: 900px;
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: 0px;
  border: solid #fff;
  border-width: 0 0 1px;
  color: #fff;
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
  background: none;
}

/*****分页*********/
.pages {
  text-align: center;
  padding: 20px 0;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857;
  text-decoration: none;
  color: var(--green);
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: var(--green);
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: var(--green);
  border-color: var(--green);
  cursor: default;
}
/******返回顶部*********/

.back-to-top {
  align-items: center;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 30px;
  transform: translateY(15px);
  transition: .3s;
  width: 48px;
  z-index: 9997;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #084298;
}

.product-swiper .image-card{
      padding: 0;
      height: auto;
    }
    .product-swiper .image-card a{
      display: block;
    }
    .product-swiper .image-card .img{
      position: relative;
      overflow: hidden;
      padding-bottom: 75%;
    }
    .product-swiper .image-card img{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .product-swiper .image-card h3{
    text-align: center;
    background: #fff;
    color: #222;
    padding: 0 5px;
    }
   .product-swiper  .image-card h3::after{
    display: none;
    }

    .form-group input,.form-group textarea{
      width: 100% !important;
      font-family: "Roboto", "Microsoft YaHei", Sans-serif;
          color: #333;
    font-size: 18px;
    font-weight: 400;
    }
    .form-group label{
      display: none;
    }
    .finecms-file-ts{
      display: none;
    }
input::placeholder, textarea::placeholder, textarea {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto", "Microsoft YaHei", Sans-serif;
}