@charset "UTF-8";
body {
  overflow-x: hidden; 
}

h2, h3, h4 {
  font-weight: 400;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

html {
  overflow-x: hidden;
}
@media (max-width: 1600px) {
  html {
    font-size: 50.5%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

@media (max-width: 1670px) {
  .m {
    padding: 0 7rem;
  }
}
@media (max-width: 992px) {
  .m {
    padding: 0 2.5rem;
  }
}
@media (max-width: 375) {
  .m {
    padding: 0 1.5rem;
  }
}

/*变量*/
/* @font-face {
  font-family: "PPoppins-Light";
  src: url("../fonts/Poppins-Light.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins-Medium.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anton-VTT";
  src: url("../fonts/Anton-VTT.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins-SemiBold.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Italic";
  src: url("../fonts/Poppins-Italic.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*publick*/
.more {
  display: inline-block;
  height: 3.6rem;
  border: 1px solid #192F7C;
  border-radius: 4rem;
  text-align: center;
  line-height: 3.6rem;
  margin-top: 5.7rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.more > a {
  color: #fff;
  font-size: 1.4rem;
  font-family: "PPoppins-Light";
  padding-right: 4.6rem;
  display: block;
  padding-left: 2rem;
  background: #192F7C;
  color: #fff;
}
.more > a::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 17px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/jt.png) no-repeat;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}
.more > a:hover::after {
  -webkit-animation: sway 0.5s ease-in-out infinite alternate;
          animation: sway 0.5s ease-in-out infinite alternate;
}
.more:hover {
  background: #192F7C;
  border: 1px solid #192F7C;
}
.more:hover a {
  color: #fff;
}

@-webkit-keyframes sway {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

@keyframes sway {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
header {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* 平滑过渡 */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 初始位置 */
  background: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1670px) {
  header {
    padding: 0 7rem;
  }
}
@media (max-width: 1200px) {
  header {
    display: none;
  }
}
header::after {
  content: "";
  display: table;
  clear: both;
}
header .m {
  padding: 2rem 0;
}
header .m::after {
  content: "";
  display: table;
  clear: both;
}
header .m .logo {
  float: left;
}
header .m .logo img {
  width: 12rem;
  height: 4rem;
}
header .m .logo img.on {
  display: none;
}
header .m nav {
  float: left;
  padding-left: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  line-height: 4rem;
}
header .m nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .m nav ul li {
  position: relative;
  text-align: center;
}
header .m nav ul li a {
  font-size: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  padding: 0 1.1rem;
  font-family: "Poppins-Regular";
  display: block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}
header .m nav ul li a:hover {
  color: #192F7C;
}
header .m nav ul li a::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
header .m nav ul li a:hover {
  color: #fff;
}
header .m nav ul li .dd {
  width: 14rem;
  position: absolute;
  left: -2.5rem;
  padding: 0.7rem;
  background: #fff;
  display: none;
  top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    width: auto;
    white-space: nowrap;
    border-radius: 0.625rem;
    overflow: hidden;
}
header .m nav ul li .dd a {
  font-size: 1.2rem;
  color: #333;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
   line-height：2.5rem; 
   padding:1rem 0;
   display: block;
    text-align: center;
    padding: 0.5rem 2rem;
}
header .m nav ul li .dd a:hover {
  color: #fff !important;
  background: #192F7C;
}
header .m nav ul li > a {
  margin-bottom: 2rem;
}
header .m nav ul li:hover > a {
  color: #fff;
}
header .m .right {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .m .right .serch form {
  background: #fff;
  width: 17rem;
  height: 3.6rem;
  border-radius: 3rem;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
  /* 兼容所有现代浏览器 */
  /* 旧版WebKit/Blink浏览器 */
  /* 旧版Firefox 18- */
}
header .m .right .serch form input {
  height: 3.6rem;
  border: none;
}
header .m .right .serch form .search-button {
  color: white;
  border: none;
  cursor: pointer;
  background: none;
  background: url(../img/serch.png) no-repeat;
  width: 3rem;
  height: 2.5rem;
  position: absolute;
  right: 1.2rem;
  top: 0.9rem;
}
header .m .right .serch form input::-webkit-input-placeholder, header .m .right .serch form textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
header .m .right .serch form input::-moz-placeholder, header .m .right .serch form textarea::-moz-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
header .m .right .serch form input:-ms-input-placeholder, header .m .right .serch form textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
header .m .right .serch form input::-ms-input-placeholder, header .m .right .serch form textarea::-ms-input-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
header .m .right .serch form input::placeholder,
header .m .right .serch form textarea::placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
header .m .right .serch form input::-webkit-input-placeholder {
  color: #fff;
}
header .m .right .serch form input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
header .m .right .lang {
  width: 8rem;
  height: 3.6rem;
  background: #fff;
  border-radius: 3rem;
  margin: 0 1rem;
}
header .m .right .lang .select {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
header .m .right .lang .select p {
  width: 100%;
  line-height: 4rem;
  font-size: 1.4rem;
  font-family: "microsoft yahei";
  color: #192F7C;
  padding-left: 2rem;
}
header .m .right .lang .select p::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-left: 1px solid #192F7C;
  border-bottom: 1px solid #192F7C;
  top: 1.2rem;
  right: 0rem;
  position: absolute;
  -webkit-transform: rotate(-46deg);
          transform: rotate(-46deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin-right: 2rem;
}
header .m .right .lang .select ul {
  width: 100%;
  display: block;
  font-size: 16px;
  background: #FFFFFF;
  position: absolute;
  top: 4rem;
  left: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in;
  transition: max-height 0.3s ease-in;
  display: none;
}
header .m .right .lang .select ul li {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  padding: 0px 1.5rem;
  list-style: none;
  color: #666666;
  font-size: 1.4rem;
}
header .m .right .lang .select ul li:hover {
  background: #192F7C;
  color: #fff;
}
header .m .right .lang .select.open ul {
  max-height: 250px;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-animation: slide-down 0.5s ease-in;
  -webkit-transition: max-height 0.2s ease-in;
  transition: max-height 0.2s ease-in;
}
header .m .right .lang .select.open::after {
  -webkit-transform: rotate(134deg);
          transform: rotate(134deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  top: 18px;
}
@media (max-width: 1600px) {
  header .m .right .lang {
    display: none;
  }
}
header .m .right > a {
  width: 12.5rem;
  height: 3.6rem;
  color: #192F7C;
  border-radius: 3rem;
  display: block;
  line-height: 3.6rem;
  font-size: 1.4rem;
  background: #fff;
  text-transform: capitalize;
  font-family: "Poppins-Regular";
}
@media (max-width: 1600px) {
  header .m .right > a {
    margin-left: 1rem;
  }
}
@media (max-width: 1400px) {
  header .m .right > a {
    display: none;
  }
}
header.scrolled {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background: #192F7C;
  position: fixed;
  z-index: 99999999999;
}
header.scrolled .serch form {
  border: 1px solid #192F7C !important;
}
header.on {
  position: absolute;
  background: #192F7C;
  z-index: 99999999;
}

.about-ny {
  position: absolute;
  right: 0;
  left: 0;
}
.about-ny .breadcrumb {
  position: relative;
  z-index: 99;
  background: rgba(25, 47, 124, 0.7);
  color: #fff;
}
.about-ny .breadcrumb a {
  color: #fff;
}
.about-ny .scrolled header {
  background: #192F7C;
}
.about-ny .scrolled nav a {
  color: #fff;
}
@media (max-width: 992px) {
  .about-ny {
    position: relative;
  }
  .about-ny .breadcrumb {
    margin-top: 7rem !important;
  }
}
.about-ny .product.on {
  padding-top: 12rem;
  padding-bottom: 11rem;
}
@media (max-width: 1670px) {
  .about-ny .product.on {
    padding: 6rem 0;
  }
}
@media (max-width: 992px) {
  .about-ny .product.on {
    padding-bottom: 3.75rem;
  }
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  25% {
    -webkit-transform: scale(1, 1.2);
            transform: scale(1, 1.2);
  }
  50% {
    -webkit-transform: scale(1, 0.85);
            transform: scale(1, 0.85);
  }
  75% {
    -webkit-transform: scale(1, 1.05);
            transform: scale(1, 1.05);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
#m_header {
  height: 7.5rem;
  position: fixed;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  top: 0;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #192F7C;
  background-size: cover;
  display: none;
  z-index: 9999;
}
#m_header .m {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#m_header .m #m_logo img {
  height: 30px;
}
@media (max-width: 1200px) {
  #m_header {
    display: block;
  }
}

#nav_btn_box {
  height: 100%;
  z-index: 9999999999999;
  margin-left: 20px;
  position: fixed;
  height: 7.5rem;
  right: 0;
  top: 0;
  display: none;
}
@media (max-width: 1200px) {
  #nav_btn_box {
    display: block;
  }
}
#nav_btn_box .m {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nav_btn_box .m .menubtn {
  width: 23px;
  height: 23px;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nav_btn_box .m .menubtn span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  position: relative;
  vertical-align: middle;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
#nav_btn_box .m .menubtn span:after, #nav_btn_box .m .menubtn span:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: #fff;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
#nav_btn_box .m .menubtn span:before {
  top: -6px;
  -webkit-transition-property: top, transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
#nav_btn_box .m .menubtn span:after {
  bottom: -6px;
  -webkit-transition-property: bottom, transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
#nav_btn_box .m .menubtn.active span {
  background-color: transparent;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}
#nav_btn_box .m .menubtn.active span:after, #nav_btn_box .m .menubtn.active span:before {
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
#nav_btn_box .m .menubtn.active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav_btn_box .m .menubtn.active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#m_nav {
  z-index: 997;
  position: fixed;
  background: #005ea9;
  background-size: cover;
  width: 90%;
  height: 100%;
  right: 0;
  top: 0;
  display: none;
  padding: 50px 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition: all 0.5s 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  display: block;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
}
#m_nav .serch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#m_nav .serch form {
  background: #fff;
  width: 17rem;
  height: 3.6rem;
  border-radius: 3rem;
  padding: 0 2rem;
  position: relative;
  /* 兼容所有现代浏览器 */
  /* 旧版WebKit/Blink浏览器 */
  /* 旧版Firefox 18- */
}
#m_nav .serch form input {
  height: 3.6rem;
  border: none;
}
#m_nav .serch form .search-button {
  color: white;
  border: none;
  cursor: pointer;
  background: none;
  background: url(../img/serch.png) no-repeat;
  width: 2.4rem;
  height: 2.2rem;
  position: absolute;
  right: 1.2rem;
  top: 0.8rem;
}
#m_nav .serch form input::-webkit-input-placeholder, #m_nav .serch form textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
#m_nav .serch form input::-moz-placeholder, #m_nav .serch form textarea::-moz-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
#m_nav .serch form input:-ms-input-placeholder, #m_nav .serch form textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
#m_nav .serch form input::-ms-input-placeholder, #m_nav .serch form textarea::-ms-input-placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
#m_nav .serch form input::placeholder,
#m_nav .serch form textarea::placeholder {
  color: #fff;
  opacity: 1; /* Firefox默认会降低透明度，这个属性可以修复 */
}
#m_nav .serch form input::-webkit-input-placeholder {
  color: #fff;
}
#m_nav .serch form input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

#m_nav::-webkit-scrollbar {
  display: none;
}

#m_nav .serch {
  display: none;
}

#m_nav.act {
  pointer-events: auto;
  top: 5rem;
  visibility: visible;
  opacity: 1;
  padding: 5rem 5% 0 5%;
  -webkit-transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
}

#m_nav > ul > li {
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
}

#m_nav > ul > li + li {
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
}

#m_nav li .a {
  display: block;
}

#m_nav li h3 {
  line-height: 5.5rem;
  height: 5.5rem;
  color: #fff;
  padding: 0;
  font-size: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
}

#m_nav li ul li {
  position: relative;
}

#m_nav li ul li a {
  color: #D9D9D9;
  font-size: 1.5rem;
  width: 100%;
  display: block;
}

#m_nav li ul li a span:last-child {
  position: absolute;
  right: 1rem;
  font-size: 1.6rem;
  height: 3rem;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

#m_nav li ul li {
  line-height: 5rem;
}

#m_nav li .a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #fff;
  font-weight: 100;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

#m_nav li .a span:first-child {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 5.5rem;
  text-align: center;
  line-height: 5.5rem;
}

#m_nav li .a span:last-child {
  font-size: 1.6rem;
  position: absolute;
  right: 0;
  line-height: 4.5rem;
  height: 4.5rem;
}

#m_nav > ul > li ul {
  display: none;
}

#m_nav li i {
  font-size: 0;
}

#m_nav .title i {
  opacity: 1;
  filter: alpha(opacity=100);
  display: inline-block;
  width: 30px;
  height: 4.5rem;
  opacity: 0.8;
  float: right;
  display: inline-block;
  background: url(../images/arrow_down_white.svg) center no-repeat;
  background-size: 14px;
}

#m_nav li.on.title i {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}

#m_nav .on.title i {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}

#m_nav li {
  display: block;
  width: 100%;
}

#m_nav .slide_nav {
  position: absolute;
  left: 0;
  height: 70px;
  z-index: 998;
  padding: 15px;
  top: 0;
  width: 100%;
}

#m_nav .title .list {
  display: none;
  position: relative;
  width: 100%;
  z-index: 9;
  left: 0;
  margin-left: 0;
  background: 0;
  border: 0;
  clear: both;
  padding-bottom: 1rem;
}

#m_nav .title .list span {
  background: 0;
}

#m_nav .title .list span a:hover {
  color: #014085;
}

#m_nav .title .list a {
  display: block;
  font-size: 1rem;
  color: #fffde;
  text-align: left;
  line-height: 2.5rem;
  border: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.445, 0.145, 0.355, 1);
}

#m_nav .title .list .void > a {
  background-size: 10px;
  position: relative;
}

#m_nav .title .list .void > a:before {
  content: "路";
  position: absolute;
  left: -1em;
  font-size: 12px;
  font-weight: bold;
}

#m_nav .title .list span {
  position: relative;
  display: block;
}

#m_nav .title .list span .sub {
  position: static;
  width: 100%;
  display: block !important;
  overflow: hidden;
}

#m_nav .title .sub a {
  background: 0;
  font-size: 0.875rem;
  opacity: 0.8;
  min-width: 50%;
  float: left;
  display: inline-block;
  color: #999;
}

.nav_mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

#m_nav li h3 {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

#m_nav li h3 .a span:last-child {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  opacity: 1;
  filter: alpha(opacity=100);
  display: inline-block;
  width: 16px;
  height: 5.5rem;
  float: right;
  display: inline-block;
  background: url(../img/arrow_down.svg) center no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

#m_nav li .list a {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

#m_nav.act li h3 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s 0.6s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition: all 0.5s 0.6s cubic-bezier(0.445, 0.145, 0.355, 1);
  opacity: 1;
}

#m_nav.act .list a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s 0.6s cubic-bezier(0.445, 0.145, 0.355, 1);
  transition: all 0.5s 0.6s cubic-bezier(0.445, 0.145, 0.355, 1);
  opacity: 1;
}

/*banner*/
.banner {
  position: relative;
  overflow: hidden;
}
.banner .anniu a {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
@media (max-width: 1600px) {
  .banner .m {
    padding-top: inherit !important;
  }
}
.banner.on .m {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .banner {
    margin-top: 7.5rem;
  }
}
.banner .swiper-container {
  max-width: 100%;
  padding: 0;
}
.banner .swiper-container .swiper-slide {
  position: relative;
}
.banner .swiper-container .swiper-slide:first-child .click {
  left: 19.5%;
}
.banner .swiper-container .swiper-slide:nth-child(2) .click {
  left: 17.5%;
  top: 47%;
}
.banner .swiper-container .swiper-slide:nth-child(2) .clickt {
  left: 37.7%;
  top: 78%;
}
.banner .swiper-container .swiper-slide:nth-child(4) .click:first-child {
  left: 41%;
  top: 66%;
}
.banner .swiper-container .swiper-slide:nth-child(4) .click:nth-child(3) {
  bottom: 6rem;
  top: auto;
}
@media (max-width: 1670px) {
  .banner .swiper-container .swiper-slide:nth-child(4) .click:nth-child(3) {
    right: 5rem;
  }
}
.banner .m {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 10.5%;
}
.banner .m .click {
  position: absolute;
  left: 50%;
  top: 60%;
  margin-top: inherit;
}
.banner .m .click a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner .m .click .p1 {
  width: 4.6rem;
  height: 4.6rem;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner .m .click .txt {
  color: #fff;
  font-family: "Poppins-Medium";
  font-size: 2rem;
  margin-left: 1.9rem;
  font-style: italic;
  margin-top: 0.5rem;
}
@media (max-width: 1600px) {
  .banner .m .click {
    display: none;
  }
}
.banner .m .clickt {
  right: 0;
  left: auto;
  bottom: 28rem;
}
@media (max-width: 1400px) {
  .banner .m .clickt {
    display: none;
  }
}
.banner .m .img img {
  max-width: 100%;
}
@media (max-width: 1670px) {
  .banner .m .text {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .banner .m .text {
    width: 100%;
  }
}
.banner .m .text h2 {
  font-family: "Poppins-Italic";
  font-size: 6rem;
  color: #fff;
  text-shadow: 0.2rem 0.4rem 0.5rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.12rem;
}
@media (max-width: 1670px) {
  .banner .m .text h2 {
    font-size: 5rem;
  }
}
@media (max-width: 992px) {
  .banner .m .text h2 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .banner .m .text h2 {
    font-size: 2.5rem;
  }
}
.banner .m .text p {
  margin-top: -1rem;
  font-size: 1.6rem;
  color: #fff;
  font-family: "Poppins-Regular";
  text-shadow: 0.2rem 0.4rem 0.5rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .banner .m .text p {
    display: none;
  }
}
@media (max-width: 992px) {
  .banner .m .text .more {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .banner .m .text .more {
    margin-top: 0rem;
    display: none;
  }
}
.banner .m .product_xq, .banner .m .product_xq-one, .banner .m .product_xq-two, .banner .m .product_xq-three {
  position: absolute;
  right: 15rem;
  width: 30rem;
  height: 40rem;
  top: 43rem;
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0.2rem 1.8rem 15rem rgba(0, 0, 0, 0.5);
          box-shadow: 0.2rem 1.8rem 15rem rgba(0, 0, 0, 0.5);
  display: none;
}
@media (max-width: 1400px) {
  .banner .m .product_xq, .banner .m .product_xq-one, .banner .m .product_xq-two, .banner .m .product_xq-three {
    top: 13rem;
  }
}
@media (max-width: 1670px) {
  .banner .m .product_xq, .banner .m .product_xq-one, .banner .m .product_xq-two, .banner .m .product_xq-three {
    bottom: 7rem;
    top: auto;
  }
}
@media (max-width: 1600px) {
  .banner .m .product_xq, .banner .m .product_xq-one, .banner .m .product_xq-two, .banner .m .product_xq-three {
    top: 6rem;
  }
}
.banner .m .product_xq > div::after, .banner .m .product_xq-one > div::after, .banner .m .product_xq-two > div::after, .banner .m .product_xq-three > div::after {
  content: "";
  display: table;
  clear: both;
}
.banner .m .product_xq .img, .banner .m .product_xq-one .img, .banner .m .product_xq-two .img, .banner .m .product_xq-three .img {
  margin-top: 2rem;
}
.banner .m .product_xq .img img, .banner .m .product_xq-one .img img, .banner .m .product_xq-two .img img, .banner .m .product_xq-three .img img {
  max-width: 90%;
  margin: 0 auto;
  max-height: 20.8rem;
}
.banner .m .product_xq .texts, .banner .m .product_xq-one .texts, .banner .m .product_xq-two .texts, .banner .m .product_xq-three .texts {
  padding: 0 5rem;
  text-align: center;
  position: absolute;
  bottom: 3rem;
}
.banner .m .product_xq .texts p, .banner .m .product_xq-one .texts p, .banner .m .product_xq-two .texts p, .banner .m .product_xq-three .texts p  {
  text-align: center;
  font-size: 1.6rem;
  color: #333;
  font-family: "PPoppins-Light";
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.banner .m .product_xq .texts .more, .banner .m .product_xq-one .texts .more, .banner .m .product_xq-two .texts .more, .banner .m .product_xq-three .texts .more {
  border: 1px solid #192F7C;
  margin-top: 2.8rem;
}
.banner .m .product_xq .texts .more a, .banner .m .product_xq-one .texts .more a, .banner .m .product_xq-two .texts .more a, .banner .m .product_xq-three .texts .more a {
  color: #192F7C;
}
.banner .m .product_xq .texts .more a::after, .banner .m .product_xq-one .texts .more a::after, .banner .m .product_xq-two .texts .more a::after, .banner .m .product_xq-three .texts .more a::after  {
  background: url(../img/jtt.png) no-repeat 0rem center;
}
.banner .m .product_xq .texts .more a:hover, .banner .m .product_xq-one .texts .more a:hover, .banner .m .product_xq-two .texts .more a:hover, .banner .m .product_xq-three .texts .more a:hover {
  color: #fff;
}
.banner .m .product_xq .texts .more:hover a::after, .banner .m .product_xq-one .texts .more:hover a::after, .banner .m .product_xq-two .texts .more:hover a::after, .banner .m .product_xq-three .texts .more:hover a::after {
  background: url(../img/jt.png) no-repeat 0rem center;
}
@media (max-width: 1600px) {
  .banner .m {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
  }
}
@media (max-width: 1670px) {
  .banner .m {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 1400px) {
  .banner .m {
    padding-top: 0;
  }
}
.banner .img {
  height: 95.8rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.banner .img img {
  height: 95.8rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
@media (max-width: 992px) {
  .banner .img {
    height: 45.8rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .banner .img img {
    height: 45.8rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}
@media (max-width: 768px) {
  .banner .img {
    height: 29.7rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .banner .img img {
    height: 29.7rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}
.banner .more {
  border: 1px solid #fff;
}
.banner .more a {
  background: none;
}
.banner .more:hover {
  border: 1px solid #192F7C;
}

.home_product {
  padding: 11.4rem 0 6rem;
}
@media (max-width: 768px) {
  .home_product {
    padding-top: 3.75rem;
  }
}
.home_product .m .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .home_product .m .ul {
    display: grid;
    padding-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 2rem;
  }
}
@media (max-width: 576px) {
  .home_product .m .ul {
    display: grid;
    padding-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 2rem;
    padding-top: 0;
  }
  .home_product .m .ul p {
    display: none !important;
  }
  .home_product .m .ul .text {
    padding: 1.5rem 1.5rem 0 1.5rem !important;
  }
}
@media (max-width: 375) {
  .home_product .m .ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home_product .m .ul .box {
  -webkit-box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  margin: 0 1.5rem;
  padding-bottom: 3rem;
  width:25%
}
.home_product .m .ul .box:hover {
  transition: 1s;
  -webkit-transition: 1s;
  -ms-transition: 1s;
  -moz-transition: 1s;
  transform: scale(1.1) rotate(0.1deg);
  -webkit-transform: scale(1.1) rotate(0.1deg);
  -ms-transform: scale(1.1) rotate(0.1deg);
  -moz-transform: scale(1.1) rotate(0.1deg);
}
@media (max-width: 1400px) {
  .home_product .m .ul .box {
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
             width:100%
  }
}
@media (max-width: 768px) {
  .home_product .m .ul .box {
    -webkit-box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  }
}
.home_product .m .ul .box:first-child {
  margin-left: 0;
}
.home_product .m .ul .box:last-child {
  margin-right: 0;
}
.home_product .m .ul .box .text {
  padding: 3rem 3rem 0 3rem;
}
.home_product .m .ul .box .text h5 {
  font-family: "Poppins-Medium";
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 0.5rem;
}
.home_product .m .ul .box .text p {
  font-size: 1.6rem;
  color: #666;
  font-family: "Poppins-Italic";
  line-height: 2.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_product .m .ul .box .text .more {
  border: none;
  margin-top: 1rem;
  text-align: left;
  width: 12.8rem;
  margin-bottom: 1.5rem;
}
.home_product .m .ul .box .text .more a {
  color: #192F7C;
  font-size: 1.4rem;
  font-family: "Poppins-Regular";
  padding-left: 0;
  background: none;
}
.home_product .m .ul .box .text .more a::after {
  background: url(../img/jtt.png) no-repeat;
}
.home_product .m .ul .box .text .more:hover {
  background: none;
}
.home_product .m .ul .box .text .more:hover a {
  color: #192F7C;
}
.home_product .m .ul .box .img {
  padding: 0 2rem 0.4rem;
}
.home_product .m .ul .box .img img {
  max-width: 25.8rem;
  max-height: 25.7rem;
}
@media (max-width: 992px) {
  .home_product .box h5 {
    font-size: 1.5rem !important;
  }
  .home_product .box .more {
    margin-top: 0 !important;
  }
}

.publick-title h3 {
  font-family: "Poppins-SemiBold";
  font-size: 4.8rem;
  color: #192F7C;
  text-transform: capitalize;
  margin-top: -1rem;
}
@media (max-width: 1400px) {
  .publick-title h3 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .publick-title h3 {
    font-size: 2.5rem;
  }
}
.publick-title span {
  font-size: 2.4rem;
  color: #333;
  font-family: "Poppins-Regular";
}
.publick-title h4 {
  font-family: "Poppins-Regular";
  font-size: 4.8rem;
  color: #192F7C;
  text-transform: capitalize;
}
.publick-title h4:first-child {
  color: #333;
  font-weight: 400;
}
.publick-title h4:nth-child(2) {
  margin-top: -0.5rem;
}
@media (max-width: 1400px) {
  .publick-title h4 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .publick-title h4 {
    font-size: 2.5rem;
  }
}
.publick-title p {
  font-size: 1.6rem;
  color: #666;
  margin: 1.5rem 0 6.4rem;
  line-height: 2.5rem;
  font-family: "Poppins-Regular";
}
@media (max-width: 992px) {
  .publick-title p {
    margin-bottom: 3.75rem;
  }
  .publick-title h3 {
    line-height: 2.6rem;
    margin: 0.5rem 0;
  }
}

.home-about {
  background: #F5F7FA;
}
@media (max-width: 768px) {
  .home-about {
    padding: 3.75rem 0;
  }
}
.home-about .m {
  padding: 5.5rem 0 7.6rem 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1670px) {
  .home-about .m {
    padding: 5.5rem 7rem;
  }
}
@media (max-width: 992px) {
  .home-about .m {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .home-about .m {
    padding: 0 2.5rem;
  }
}
.home-about .m > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home-about .m .text {
  padding-right: 4.4rem;
}
@media (max-width: 992px) {
  .home-about .m .text {
    padding-right: 0;
  }
}
.home-about .m .text p {
  padding-right: 2.9rem;
  line-height: 2.5rem;
}
.home-about .m .text ul li {
  font-size: 1.6rem;
  color: #192F7C;
  background: url(../img/dd.png) no-repeat left center;
  padding-left: 2.9rem;
  margin: 3.5rem 0;
  font-family: "Poppins-Regular";
}
@media (max-width: 1400px) {
  .home-about .m .text ul li {
    margin: 2.5rem 0;
  }
}
.home-about .m .text .bom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 1.5rem;
}
@media (max-width: 768px) {
  .home-about .m .text .bom {
    top: inherit;
  }
}
.home-about .m .text .bom .more {
  border: 1px solid #192F7C;
  margin-top: 0;
}
.home-about .m .text .bom .more a {
  font-size: 1.4rem;
  font-family: "PPoppins-Regular";
  background: none;
  color: #192F7C;
}
.home-about .m .text .bom .more a::after {
  background: url(../img/jtt.png) no-repeat;
}
.home-about .m .text .bom .more:hover {
  background: #192F7C;
}
.home-about .m .text .bom .more:hover a {
  color: #fff;
}
.home-about .m .text .bom .more:hover a::after {
  background: url(../img/jt.png) no-repeat;
}
.home-about .m .text .bom .down-load {
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-left: 1rem;
  background: none;
  border: 1px solid #192F7C;
  cursor: pointer;
  font-family: "PPoppins-Regular";
}
.home-about .m .text .bom .down-load a {
  display: inline-block;
  color: #192F7C;
  font-size: 1.4rem;
}
.home-about .m .text .bom .down-load:hover {
  background: #192F7C;
  color: #fff;
}
.home-about .m .text .bom .down-load:hover a {
  color: #fff;
}
.home-about .m .img {
  padding-top: 2.9rem;
}
@media (max-width: 992px) {
  .home-about .m .img {
    display: none;
  }
}

#target-div {
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 992px) {
  #target-div {
    margin: 0;
  }
}

.home-why {
  padding: 4rem 0 0;
}
@media (max-width: 768px) {
  .home-why {
    padding: 0;
  }
}
.home-why .m {
  background: url(../img/bj.png) no-repeat right bottom;
}
.home-why .m .text .bom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 0.5rem;
}
@media (max-width: 768px) {
  .home-why .m .text .bom {
    top: -2rem;
  }
}
.home-why .m .text .bom .more {
  border: 1px solid #192F7C;
  margin-top: 0;
}
.home-why .m .text .bom .more a {
  font-size: 1.4rem;
  font-family: "PPoppins-Regular";
  background: none;
  color: #192F7C;
}
.home-why .m .text .bom .more a::after {
  background: url(../img/jtt.png) no-repeat;
}
.home-why .m .text .bom .more:hover {
  background: #192F7C;
}
.home-why .m .text .bom .more:hover a {
  color: #fff;
}
.home-why .m .text .bom .more:hover a::after {
  background: url(../img/jt.png) no-repeat;
}
.home-why .m .text .bom > a {
  background: none;
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-left: 1rem;
  font-family: "PPoppins-Regular";
  display: inline-block;
  color: #fff;
  border: 1px solid #192F7C;
  font-size: 1.4rem;
  color: #192F7C;
}
.home-why .m .text .bom > a:hover {
  background: #192F7C;
  color: #fff;
}
.home-why .m .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  padding-top: 25rem;
}
@media (max-width: 1400px) {
  .home-why .m .ul {
    padding-top: 20rem;
  }
}
@media (max-width: 992px) {
  .home-why .m .ul {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .home-why .m .ul .box {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .home-why .m .ul {
    padding-top: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.home-why .m .ul::after {
  content: "";
  display: table;
  clear: both;
}
.home-why .m .ul .box {
  padding: 0 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 17.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .home-why .m .ul .box {
    display: inline-block;
  }
  .home-why .m .ul .box:nth-child(2) .animation-container, .home-why .m .ul .box:nth-child(4) .animation-container {
    display: none;
  }
}
@media (max-width: 768px) {
  .home-why .m .ul .box {
    height: inherit;
    background: #F5F7FA;
    padding: 2rem;
    margin-bottom: 2rem;
  }
  .home-why .m .ul .box .animation-container {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .home-why .m .ul .box .text {
    position: relative;
    top: 20%;
  }
}
@media (max-width: 768px) {
  .home-why .m .ul .box .text {
    top: 0;
  }
}
.home-why .m .ul .box .text span {
  color: #B61F26;
  font-size: 4rem;
  font-family: "Anton-VTT";
}
@media (max-width: 1400px) {
  .home-why .m .ul .box .text span {
    font-size: 3rem;
  }
}
.home-why .m .ul .box .text p {
  font-size: 1.6rem;
  color: #333;
}
.home-why .m .ul .box .animation-container {
  position: absolute;
  right: 0;
}
.home-why .m .ul .box .animation-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.home-why .m .ul .box .card-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #4cc9f0;
}
.home-why .m .ul .box.aos-animate {
  /* 基础线条样式 */
  /* 动画1：简单线条 + 图标 */
}
.home-why .m .ul .box.aos-animate .animation-container {
  position: absolute;
  right: 0;
  height: 17.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 2rem;
}
@media (max-width: 992px) {
  .home-why .m .ul .box.aos-animate .animation-container {
    margin-top: -10rem;
  }
}
.home-why .m .ul .box.aos-animate .line {
  width: 1px;
  background: #999;
  border-radius: 3px;
}
.home-why .m .ul .box.aos-animate .icon {
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #192F7C;
  font-size: 28px;
  opacity: 0;
}
.home-why .m .ul .box.aos-animate .icon .y1 {
  background: #192F7C;
  width: 50%;
  height: 50%;
}
.home-why .m .ul .box.aos-animate .p1::before, .home-why .m .ul .box.aos-animate .p1::after {
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(25, 47, 124, 0.8);
}
.home-why .m .ul .box.aos-animate .line-1 {
  height: 0;
  -webkit-animation: extendLine 1.5s ease-out 0.5s forwards;
          animation: extendLine 1.5s ease-out 0.5s forwards;
}
.home-why .m .ul .box.aos-animate .icon-1 {
  -webkit-animation: fadeInIcon 0.5s ease-out 2s forwards;
          animation: fadeInIcon 0.5s ease-out 2s forwards;
}
@-webkit-keyframes extendLine {
  0% {
    height: 0;
  }
  100% {
    height: 200px;
  }
}
@keyframes extendLine {
  0% {
    height: 0;
  }
  100% {
    height: 200px;
  }
}
@-webkit-keyframes fadeInIcon {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fadeInIcon {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (max-width: 992px) {
  .home-why .m {
    padding: 0;
  }
}

@-webkit-keyframes breathing {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
}

@keyframes breathing {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
}
@-webkit-keyframes breathing1 {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
}
@keyframes breathing1 {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
}
.p1 {
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.p1::before {
  width: 100%;
  height: 100%;
  -webkit-animation: breathing 1.5s ease-in-out infinite;
          animation: breathing 1.5s ease-in-out infinite;
}
.p1::after {
  width: 3.6rem;
  height: 3.6rem;
  -webkit-animation: breathing1 3s ease-in-out infinite;
          animation: breathing1 3s ease-in-out infinite;
}
.p1 .y1 {
  width: 50%;
  height: 50%;
  background-color: #fff;
  position: relative;
  z-index: 2;
  border-radius: 50%;
}
.p1::before, .p1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.home_wecan {
  padding-top: 11.9rem;
}
.home_wecan.on {
  padding-top: 2.2rem;
  margin-top: -1.5rem;
}
.home_wecan.on p {
  margin-bottom: 2.6rem;
}
@media (max-width: 768px) {
  .home_wecan {
    padding-top: 3.75rem;
  }
}
.home_wecan.on .add .cen span {
  font-size: 2rem !important;
  padding-top: 3.5rem !important;
}
.home_wecan.on .add .cen .txt {
  padding: 4rem 7.6rem !important;
}
.home_wecan .pic {
  overflow: hidden; /*隐藏溢出*/
  width: 100%;
  height: 720px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .home_wecan .pic {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: inherit;
  }
}
.home_wecan .pic .box {
  height: 72rem;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  margin: 0 1rem;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: calc(14.2857142857% - 0.3125rem);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home_wecan .pic .box {
    width: 100% !important;
    height: auto;
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
    position: relative;
    border-radius: 0;
  }
  .home_wecan .pic .box:first-child {
    grid-column: span 2;
    width: 100%;
  }
}
.home_wecan .pic .box .cen {
  position: absolute;
  top: 0;
}
.home_wecan .pic .box .img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.home_wecan .pic .box .img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_wecan .pic .box:nth-child(1) {
  background-position: center center; /*图片居中  等比例*/
  background-repeat: no-repeat; /*图片不平铺*/
}
.home_wecan .pic .box .txt {
  text-align: center;
  z-index: 2;
  color: #fff;
}
@media (max-width: 992px) {
  .home_wecan .pic .box .txt {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .home_wecan .pic .box .txt .p1 {
    display: none;
  }
}
.home_wecan .pic .box .txt > span {
  font-size: 2rem;
  font-family: "Poppins-Medium";
  color: #fff;
  display: inline-block;
  padding-top: 8.5rem;
}
@media (max-width: 992px) {
  .home_wecan .pic .box .txt > span {
    font-size: 1.5rem;
    padding-top: 0;
    padding-bottom: 1.5rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0rem;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  }
}
@media (max-width: 768px) {
  .home_wecan .pic .box .txt > span {
    display: none;
  }
}
.home_wecan .pic .box .txt .mo {
  display: none;
}
.home_wecan .pic .box > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.home_wecan .pic .box .cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  right: 0;
  left: 0;
}
@media (max-width: 992px) {
  .home_wecan .pic .box .cen {
    text-align: center;
  }
}
.home_wecan .pic .box.add {
  width: calc(60.6060606061% - 0.3125rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
@media (max-width: 1670px) {
  .home_wecan .pic .box.add {
    width: calc(42.8571428571% - 0.3125rem);
  }
}
.home_wecan .pic .box.add .txt {
  margin-left: 6rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 7.6rem;
  max-width: 42%;
}
@media (max-width: 1670px) {
  .home_wecan .pic .box.add .txt {
    padding: 4rem;
    margin-left: 2rem;
    max-width: 62%;
  }
}
@media (max-width: 992px) {
  .home_wecan .pic .box.add .txt {
    background: none;
  }
}
.home_wecan .pic .box.add .txt > span {
  font-size: 4.8rem;
  line-height: 4.8rem;
  text-shadow: 0.2rem 0.4rem 0.5rem rgba(0, 0, 0, 0.5);
  font-family: "Poppins-SemiBold";
}
@media (max-width: 1600px) {
  .home_wecan .pic .box.add .txt > span {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
@media (max-width: 992px) {
  .home_wecan .pic .box.add .txt > span {
    padding-top: 0;
    font-size: 2rem;
  }
}
.home_wecan .pic .box.add .txt .mo {
  display: block;
}
@media (max-width: 992px) {
  .home_wecan .pic .box.add .txt .mo {
    display: none;
  }
}
.home_wecan .pic .box.add .txt .mo span {
  font-size: 1.6rem;
  color: #fff;
  display: block;
  padding-top: 0.8rem;
  font-family: "Poppins-Regular";
}
.home_wecan .pic .box.add .txt .mo .bom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5.8rem;
}
.home_wecan .pic .box.add .txt .mo .bom > a {
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-left: 1rem;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  min-width: 13.6rem;
  border: 1px solid #fff;
}
.home_wecan .pic .box.add .txt .mo .bom > a:hover {
  background: #192F7C;
  color: #fff;
  border: 1px solid #192F7C;
}
@media (max-width: 1400px) {
  .home_wecan .pic .box.add .txt .mo .bom > a {
    min-width: 12.5rem;
  }
}
.home_wecan .pic .box.add .txt .mo .bom .more {
  border: 1px solid #fff;
  margin-top: 0;
}
.home_wecan .pic .box.add .txt .mo .bom .more a {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Poppins-Regular";
  min-width: 9rem;
  background: none;
}
.home_wecan .pic .box.add .txt .mo .bom .more a::after {
  background: url(../img/jt.png) no-repeat;
}
@media (max-width: 1670px) {
  .home_wecan .pic .box.add .txt .mo .bom .more a {
    min-width: inherit;
  }
}
.home_wecan .pic .box.add .txt .mo .bom .more:hover {
  background: #192F7C;
  border: 1px solid #192F7C;
}
.home_wecan .pic .box.add .txt .mo .bom .more:hover a {
  color: #fff;
}
.home_wecan .pic .box.add .txt .mo .bom .more:hover a::after {
  background: url(../img/jt.png) no-repeat;
}
@media (max-width: 1670px) {
  .home_wecan .pic .box {
    width: calc(42.8571428571% - 0.3125rem);
  }
}
@media (max-width: 992px) {
  .home_wecan .pic .box {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .home_wecan .m {
    padding: 0;
  }
  .home_wecan .m .publick-title {
    padding: 0 2.5rem;
  }
}

/*首页-项目展示*/
.home-Project {
  background: #F5F7FA;
  padding: 5.5rem 0;
}
.home-Project img {
  width: 100%;
}
.home-Project .swiper-demo11 {
  width: calc((22vw - 16.5rem) / 2 + 100%);
}
.home-Project .swiper-demo11 .swiper-slide {
  position: relative;
  height: 55rem;
  width: 40rem !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.home-Project .swiper-demo11 .swiper-slide.add {
  width: 72rem !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.home-Project .swiper-demo11 .swiper-slide.add .txt {
  background: rgba(0, 0, 0, 0.6);
}
.home-Project .swiper-demo11 .swiper-slide.add .txt p {
  display: block;
}
.home-Project .swiper-demo11 .swiper-slide .img {
  height: 100%;
}
.home-Project .swiper-demo11 .swiper-slide .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  color: #fff;
  -webkit-transition: 1s;
  transition: 1s;
}
.home-Project .swiper-demo11 .swiper-slide .txt span {
  font-size: 2.4rem;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2rem;
}
.home-Project .swiper-demo11 .swiper-slide .txt p {
  font-size: 1.6rem;
  display: none;
}
@media (max-width: 992px) {
  .home-Project .swiper-demo11 {
    width: inherit !important;
  }
  .home-Project .swiper-demo11 .swiper-slide {
    width: inherit !important;
    height: 29rem;
  }
  .home-Project .swiper-demo11 .swiper-slide.add {
    width: inherit !important;
  }
  .home-Project .swiper-demo11 .swiper-slide .txt {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
  }
  .home-Project .swiper-demo11 .swiper-slide .txt span {
    -webkit-line-clamp: 2;
    margin-bottom: 0;
    font-size: 2rem;
  }
  .home-Project .swiper-demo11 .swiper-slide .txt p {
    display: none !important;
  }
}

.home-what {
  padding: 7rem 0 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .home-what {
    padding-top: 3.2rem;
  }
  .home-what .text {
    padding-bottom: 2rem !important;
  }
}
.home-what .m .text {
  padding-bottom: 5.5rem;
}
.home-what .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 992px) {
  .home-what .content {
    display: inline-block;
  }
  .home-what .content .text .txt {
    padding: 1.5rem 2rem 2.5rem !important;
  }
}
.home-what .content .box {
  width: 50%;
}
@media (max-width: 992px) {
  .home-what .content .box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home-what .content .box {
    margin-bottom: 0;
  }
}
.home-what .content .box .img-t {
  min-height: 47.9rem;
  position: relative;
}
@media (max-width: 992px) {
  .home-what .content .box .img-t {
    min-height: 40.9rem;
  }
}
@media (max-width: 768px) {
  .home-what .content .box .img-t {
    min-height: 25.9rem;
  }
}
.home-what .content .box .img-t img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.home-what .content .box .img-t, .home-what .content .box .img {
  overflow: hidden;
}
.home-what .content .box .img-t img, .home-what .content .box .img img {
  max-width: 100%;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.home-what .content .box .img-t img:hover, .home-what .content .box .img img:hover {
  transform: scale(1.05) rotate(0.1deg);
  -webkit-transform: scale(1.05) rotate(0.1deg);
  -moz-transform: scale(1.05) rotate(0.1deg);
  -ms-transform: scale(1.05) rotate(0.1deg);
  -o-transform: scale(1.05) rotate(0.1deg);
}
.home-what .content .box .r-t {
  background: #192F7C;
  padding: 4.8rem 6.3rem;
  font-family: "Poppins-Regular";
  min-height: 38.3rem;
}
@media (max-width: 992px) {
  .home-what .content .box .r-t {
    min-height: auto;
  }
  .home-what .content .box .r-t p {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .home-what .content .box .r-t {
    padding: 2.5rem;
  }
}
.home-what .content .box .r-t span {
  font-size: 3.6rem;
  color: #fff;
  line-height: 5.15rem;
}
@media (max-width: 1600px) {
  .home-what .content .box .r-t span {
    font-size: 2.8rem;
  }
}
@media (max-width: 1200px) {
  .home-what .content .box .r-t span {
    font-size: 2.5rem;
  }
}
.home-what .content .box .r-t p {
  font-size: 2rem;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 3.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1200px) {
  .home-what .content .box .r-t p {
    font-size: 1.5rem;
  }
}
.home-what .content .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home-what .content .text .txt {
  background: #192F7C;
  padding: 2rem;
  font-size: 2rem;
  color: #fff;
  min-height: 8rem;
}
@media (max-width: 1600px) {
  .home-what .content .text .txt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 768px) {
  .home-what .content .text .txt {
    font-size: 1.5rem;
  }
}

.home-lxwm {
  padding: 5.6rem 0;
  position: relative;
}
@media (max-width: 992px) {
  .home-lxwm {
    display: none;
  }
}
@media (max-width: 1400px) {
  .home-lxwm .m {
    padding: 0;
  }
}
.home-lxwm .m h6 {
  text-align: center;
  font-size: 30rem;
  color: #F5F7FA;
  text-transform: uppercase;
  font-family: "Poppins-Medium";
  position: absolute;
  top: 0;
  z-index: -9;
}
.home-lxwm .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 8rem;
}
.home-lxwm .ul .box{
    width: calc(33.33333333% - 20px);
}
.home-lxwm .ul .box .t-p {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-lxwm .ul .box .t-p span {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  background: #192F7C;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1400px) {
  .home-lxwm .ul .box .t-p span {
    width: 3.5rem;
    height: 3.5rem;
  }
  .home-lxwm .ul .box .t-p span img {
    width: 50%;
  }
}
.home-lxwm .ul .box .t-p p {
  font-size: 2.4rem;
  color: #333;
  margin-left: 2rem;
}
@media (max-width: 1400px) {
  .home-lxwm .ul .box .t-p p {
    font-size: 2rem;
  }
}
.home-lxwm .ul .box .b-m {
  margin-top: 6rem;
  background: #fff;
}
.home-lxwm .ul .box .b-m img {
  max-width: 100%;
}

footer {
  background: #333 url(../img/bt-bj.png) no-repeat right bottom;
  padding: 6rem 0 3rem;
}
@media (max-width: 992px) {
  footer {
    padding: 3rem 0 3rem;
  }
}
footer .f-t {
  border-bottom: 1px solid #fff;
  padding-bottom: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 992px) {
  footer .f-t {
    margin-bottom: 3rem;
  }
}
footer .f-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 992px) {
  footer .f-c .box a {
    font-size: 1.5rem !important;
  }
}
footer .f-c .box {
  color: #fff;
  margin: 0 4rem;
}
footer .f-c .box:nth-child(1) {
  margin-left: 0;
  width: 25%;
}
footer .f-c .box:nth-child(2) {
  width: 21%;
}
footer .f-c .box:nth-child(3) {
  width: 16%;
}
footer .f-c .box:nth-child(4) {
  width: 13%;
}
footer .f-c .box:last-child {
  margin-right: 0;
  width: 30%;
}
footer .f-c .box:last-child a:hover::after {
  width: 0;
}
footer .f-c .box span {
  font-size: 2.4rem;
  display: block;
  padding-bottom: 2rem;
}
footer .f-c .box a {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  color: #D9D9D9;
  font-family: "Poppins-Light";
  line-height: 4.5rem;
  position: relative;
}
@media (max-width: 992px) {
  footer .f-c .box a {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  footer .f-c .box a {
    font-size: 1.8rem;
    line-height: 4rem;
  }
}
footer .f-c .box a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  height: 2px;
  width: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .f-c .box a:hover::after {
  width: 0.625rem;
}
@media (max-width: 992px) {
  footer .f-c .box a:hover::after {
    width: 0;
  }
}
footer .f-c .box:last-child a {
  padding-left: 3rem;
}
footer .f-c .box:last-child a:nth-child(2) {
  background: url(../img/phone.png) no-repeat left center;
}
footer .f-c .box:last-child a:nth-child(3) {
  background: url(../img/phone2.png) no-repeat left center;
}
footer .f-c .box:last-child a:nth-child(4) {
  background: url(../img/map.png) no-repeat left 1rem;
}
footer .f-c .box:last-child a:nth-child(5) {
  background: url(../img/email.png) no-repeat left center;
}
@media (max-width: 992px) {
  footer .f-c {
    display: inline-block;
  }
  footer .f-c .box {
    display: none;
  }
  footer .f-c .box:last-child {
    display: block;
    width: 100%;
    margin-left: 0;
  }
}
footer .f-b {
  padding-top: 1.7rem;
}
footer .f-b span {
  font-size: 2.4rem;
  display: block;
  padding-bottom: 2rem;
  color: #fff;
}
footer .f-b .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5rem 0;
}
footer .f-b .box a {
  margin-right: 4rem;
}
footer .f-b P {
  color: #D9D9D9;
  font-size: 1.4rem;
  margin-top: 3.8rem;
}
@media (max-width: 992px) {
  footer .f-b span {
    display: none;
  }
  footer .f-b .box {
    margin: 2rem 0 2rem;
  }
  footer .f-b .box a {
    margin-right: 2.5rem;
  }
}

.sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 3.5rem;
}
.sidebar .box {
  text-align: center;
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
.sidebar .box p {
  position: absolute;
  right: 5rem;
  background: #192F7C;
  color: #fff;
  padding: 1.5rem;
  top: 2.5rem;
  border-radius: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #192F7C;
  padding: 10px 15px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0; /* 透明隐藏 */
  width: 0; /* 宽度为0 */
  overflow: hidden; /* 隐藏溢出内容 */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* 过渡动画 */
  white-space: nowrap; /* 防止文字换行 */
}
.sidebar .box p.show {
  opacity: 1;
  width: 15rem;
}
.sidebar .box:last-child {
  background: #192F7C;
  border-radius: 5rem;
}
.sidebar .box:hover {
  background: #192F7C;
  border-radius: 5rem;
}
@media (max-width: 992px) {
  .sidebar {
    right: 1rem;
  }
  .sidebar .box {
    width: 4rem;
    height: 4rem;
  }
  .sidebar .box img {
    width: 2rem;
    height: 2rem;
  }
}

.breadcrumb {
  background: #F5F7FA;
  height: 6rem;
  margin-top: 8rem;
  font-size: 1.6rem;
  color: #192F7C;
  line-height: 6rem;
}
.breadcrumb a {
  font-family: "Poppins-Regular";
}
@media (max-width: 1200px) {
  .breadcrumb {
    margin-top: 7rem;
  }
}

.product {
  padding: 5.5rem 0 5.8rem 0;
}
.product .publick-title {
  padding-bottom: 0;
}
.product .publick-title span {
  padding: 3.3rem 0 1rem;
  display: block;
}
.product .publick-title h4 {
  font-size: 3.6rem;
  font-family: "Poppins-Regular";
}
@media (max-width: 576px) {
  .product .publick-title h4 {
    font-size: 2.6rem;
  }
}
.product .publick-title p {
  font-family: "Poppins-Regular";
}
.product .p-o h3 {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 0.4rem;
}
.product .p-o .p-bm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .p-o .p-bm .imgc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 59.5%;
}
.product .p-o .p-bm .imgc .img {
  border: 1px solid #F2F2F2;
  width: 48.5rem;
  height: 48rem;
}
.product .p-o .p-bm .imgc .img:last-child {
  border: none;
}
.product .p-o .p-bm .imgc .img img {
  max-width: 100%;
  max-height: 100%;
}
.product .p-o .p-bm .imgc .img:first-child .box {
  display: none;
  height: 100%;
  text-align: center;
}
.product .p-o .p-bm .imgc .img:first-child .box img {
  max-width: 100%;
  width: inherit;
  height: inherit;
  margin: 0 auto;
}
.product .p-o .p-bm .imgc .img:first-child .box.active {
  display: block;
}
.product .p-o .p-bm .imgc .img:first-child:hover {
  border: 1px solid #192F7C;
}
.product .p-o .p-bm .imgc .img:last-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
  margin-left: 2rem;
}
@media (max-width: 576px) {
  .product .p-o .p-bm .imgc .img:last-child {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .product .p-o .p-bm .imgc .img {
    width: inherit;
    height: inherit;
  }
}
.product .p-o .p-bm .imgc .kk {
  background: #F2F2F2;
  padding: 2rem;
  border: 1px solid #fff;
  cursor: pointer;
}
.product .p-o .p-bm .imgc .kk img {
  max-width: 18.7rem;
  max-height: 18.8rem;
}
.product .p-o .p-bm .imgc .kk:hover, .product .p-o .p-bm .imgc .kk.on {
  border: 1px solid #192F7C;
}
@media (max-width: 768px) {
  .product .p-o .p-bm .imgc {
    display: inline;
  }
}
.product .p-o .p-bm .text {
  margin-left: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product .p-o .p-bm .text ul {
  font-family: "Poppins-Regular";
}
.product .p-o .p-bm .text ul li {
  font-size: 2rem;
  color: #192F7C;
  background: url(../img/dd.png) no-repeat left center;
  padding-left: 2.9rem;
  margin: 3rem 0;
}
@media (max-width: 1400px) {
  .product .p-o .p-bm .text ul li {
    margin: 2.5rem 0;
  }
}
@media (max-width: 1200px) {
  .product .p-o .p-bm .text ul li {
    font-size: 1.8rem;
  }
}
.product .p-o .p-bm .text ul li:first-child {
  margin-top: 0;
}
.product .p-o .p-bm .text .bom a {
  border: 1px solid #192F7C;
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-left: 1rem;
  color: #fff;
  display: inline-block;
  height: 3.8rem;
  font-size: 1.4rem;
  color: #192F7C;
  font-family: "Poppins-Regular";
}
.product .p-o .p-bm .text .bom a:hover {
  background: #192F7C;
  color: #fff;
}
@media (max-width: 992px) {
  .product .p-o .p-bm {
    display: inline-block;
  }
  .product .p-o .p-bm .imgc {
    width: 100%;
  }
  .product .p-o .p-bm .text {
    margin-left: 0;
    display: inline-block;
    padding: 5rem 0;
    width: 100%;
    display: none;
  }
  .product .p-o .p-bm .text ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .product .p-o .p-bm {
    width: 100%;
  }
  .product .p-o .p-bm .imgc .img {
    max-height: 44.3rem !important;
  }
  .product .p-o .p-bm .imgc .kk {
    max-height: 16rem;
  }
}
.product .p-t {
  padding: 12rem 0rem 10.5rem 0rem;
}
@media (max-width: 1670px) {
  .product .p-t {
    padding: 12rem 7rem 10.5rem 7rem;
  }
}
@media (max-width: 992px) {
  .product .p-t {
    padding: 12rem 2.5rem 10.5rem 2.5rem;
  }
}
@media (max-width: 576px) {
  .product .p-t {
    padding: 3.75rem 2.5rem 3.5rem 2.5rem;
  }
}
.product .p-t .publick-title {
  padding-bottom: 6.4rem;
}
@media (max-width: 576px) {
  .product .p-t .publick-title {
    padding-bottom: 5rem;
  }
}
.product .p-t .bom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}
.product .p-t .bom .img {
  overflow: hidden;
  height: 265px;
}
.product .p-t .bom .img img {
  max-width: 100%;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.product .p-t .bom .img img:hover {
  transform: scale(1.05) rotate(0.1deg);
  -webkit-transform: scale(1.05) rotate(0.1deg);
  -moz-transform: scale(1.05) rotate(0.1deg);
  -ms-transform: scale(1.05) rotate(0.1deg);
  -o-transform: scale(1.05) rotate(0.1deg);
}
.product .p-t .bom .txt {
  background: #F5F7FA;
  font-size: 1.6rem;
  color: #192F7C;
  padding: 2.2rem 2rem;
  line-height: 2.5rem;
  font-family: "Poppins-Regular";
}
@media (max-width: 992px) {
  .product .p-t .bom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .product .p-t .bom .box:last-child {
    display: none;
  }
}
@media (max-width: 576px) {
  .product .p-t .bom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product .p-t .p-tt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product .p-t .p-tt .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .p-t .p-tt .box a {
  display: inline-block;
  font-size: 1.8rem;
  color: #000;
  background: url(../img/dd.png) no-repeat left center;
  padding-left: 2.9rem;
  margin: 1rem 0;
  font-family: "Poppins-Regular";
}
.product .p-t .p-tt .box .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3.1rem;
}
.product .p-t .p-tt .box .txt span {
  display: block;
  font-size: 2rem;
  color: #333;
  font-family: "Poppins-Medium";
  padding-bottom: 1.2rem;
}
.product .p-t .p-tt .box .img {
  width: 70%;
  position: relative;
}
.product .p-t .p-tt .box .img .xian {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product .p-t .p-tt .box .img .xian img {
  width: inherit;
}
.product .p-t .p-tt .box .img span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
}
@media (max-width: 992px) {
  .product .p-t .p-tt {
    margin-top: -7rem;
  }
  .product .p-t .p-tt .box .img {
    width: 100%;
  }
  .product .p-t .p-tt .box .img img {
    max-width: 80%;
  }
  .product .p-t .p-tt .box .txt {
    display: none;
  }
}
.product .p-t.on {
  padding-top: 1rem;
}
.product .p-t.on .publick-title {
  padding-bottom: 0rem;
}
.product .p-s {
  background: url(../img/26.png) no-repeat center center;
  padding: 10rem 0;
  text-align: center;
  position: relative;
  background-size: cover;
}
.product .p-s.on {
  background: url(../img/37.png) no-repeat center center;
  background-size: cover;
}
.product .p-s h2 {
  font-family: "Poppins-Medium";
  font-size: 6rem;
  color: #fff;
  text-shadow: 0.2rem 0.4rem 0.5rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.12rem;
  padding-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .product .p-s h2 {
    font-size: 3.75rem;
  }
}
.product .p-s p {
  font-size: 2rem;
  color: #fff;
  font-family: "Poppins-Medium";
  text-shadow: 0.2rem 0.4rem 0.5rem rgba(0, 0, 0, 0.5);
  width: 52%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product .p-s p {
    width: 100%;
  }
}
.product .p-s .bom {
  margin-top: 6.5rem;
}
.product .p-s .bom a {
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-left: 1rem;
  color: #fff;
  display: inline-block;
  height: 3.8rem;
  font-size: 1.4rem;
  font-family: "Poppins-Regular";
  border: 1px solid #fff;
  color: #fff;
}
.product .p-s .bom a:hover {
  background: #192F7C;
  color: #fff;
  border: 1px solid #192F7C;
}
@media (max-width: 576px) {
  .product .p-s {
    padding: 3.75rem 0;
  }
}
@media (max-width: 576px) {
  .product .p-s h2 {
    font-size: 2.75rem;
  }
  .product .p-s p {
    font-size: 1.5rem;
  }
}
.product .p-f {
  padding: 10rem 0 6rem;
}
.product .p-f .m .publick-title {
  padding-bottom: 0rem;
}
.product .p-f .m .publick-title h4 {
  margin-bottom: 2rem;
}
.product .p-f .m .publick-title p {
  padding: 0.5rem 0;
  margin-bottom: 0rem;
  margin-top: 0;
  line-height: 2rem;
  font-family: "Poppins-Regular";
}
.product .p-f .m::after {
  content: "";
  display: table;
  clear: both;
}
.product .p-f .m .bom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 2.4rem;
  gap: 2rem;
}
.product .p-f .m .bom .more {
  border: 1px solid #192F7C;
  margin-top: 0;
}
.product .p-f .m .bom .more a {
  font-size: 1.4rem;
  font-family: "Poppins-Regular";
  background: none;
  color: #192F7C;
}
.product .p-f .m .bom .more a::after {
  background: url(../img/jtt.png) no-repeat;
}
.product .p-f .m .bom .more:hover {
  background: #192F7C;
}
.product .p-f .m .bom .more:hover a {
  color: #fff;
}
.product .p-f .m .bom .more:hover a::after {
  background: url(../img/jt.png) no-repeat;
}
.product .p-f .m .bom > a {
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-left: 1rem;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  border: 1px solid #192F7C;
  color: #192F7C;
  font-family: "Poppins-Regular";
}
.product .p-f .m .bom > a:hover {
  background: #192F7C;
  color: #fff;
}
.product .p-f > .bom {
  margin-top: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product .p-f > .bom .box {
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 20%;
  overflow: hidden;
}
.product .p-f > .bom .box .img {
  height: 100%;
}
.product .p-f > .bom .box .cen {
  margin-top: 16rem;
}
.product .p-f > .bom .box .txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16rem;
  padding: 3rem;
  line-height: 16rem;
  background: url(../img/32.png) no-repeat center bottom;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease; /* 0.5秒滑动过渡 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product .p-f > .bom .box .txt span {
  font-size: 2rem;
  color: #fff;
  display: inline-block;
  font-family: "Poppins-Medium";
  text-shadow: 0.2rem 0.4rem 0.5rem rgba(0, 0, 0, 0.5);
  line-height: 5rem;
  height: auto;
}
@media (max-width: 1200px) {
  .product .p-f > .bom .box .txt span {
    line-height: 3.5rem;
  }
}
@media (max-width: 576px) {
  .product .p-f > .bom .box .txt span {
    line-height: 2.5rem;
  }
}
.product .p-f > .bom .box .txt p {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0;
  line-height: 2.8rem;
  font-family: "Poppins-Regular";
  margin-top: -5rem;
}
.product .p-f > .bom .box .txt.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  top: 0;
  height: 88%;
  background: rgba(25, 47, 124, 0.8);
}
.product .p-f > .bom .box .txt.active p {
  opacity: 1;
}
@media (max-width: 992px) {
  .product .p-f > .bom .box {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .product .p-f > .bom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .product .p-f > .bom .box:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .product .p-f > .bom {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2.5rem;
  }
}
@media (max-width: 576px) {
  .product .p-f .bom > a {
    display: none !important;
  }
  .product .p-f .bom .txt span {
    line-height: 2.5rem;
  }
  .product .p-f .bom .txt p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .product .p-f {
    padding: 10rem 0 2.5rem 0;
  }
}
.product.on .publick-title h4 {
  font-size: 4.8rem;
}
@media (max-width: 768px) {
  .product.on .publick-title h4 {
    font-size: 3.75rem;
  }
}
.product.on .p-f {
  padding-top: 1.5rem;
}
.product.on .p-f .bom {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .product.on .p-f .bom {
    margin-top: 2rem;
  }
}
.product.on {
  padding: 5.6rem 0 0;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .product.on {
    padding: 6rem 0;
  }
  .product.on .p-f {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .product.on {
    padding: 3.75rem 0;
  }
}
@media (max-width: 992px) {
  .product.on {
    padding-top: 3.75rem !important;
    margin-top: 0 !important;
  }
  .product.on .txt {
    padding: 2rem !important;
  }
  .product.on .txt span {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
}
@media (max-width: 1200px) {
  .product.on {
    padding-top: 0;
    margin-top: -2rem;
  }
}

@media (max-width: 768px) {
  .about-us {
    height: 25rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .about-us .banner {
    width: 100%;
    height: 100%;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .about-us .banner .img {
    height: 100%;
    width: 100%;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}
.about-us .banner .img {
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.about-us .banner .img img {
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.about-us .banner .m {
  padding-top: 0;
  top: 26%;
}
.about-us .banner .img {
  height: 53.8rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.about-us .banner .img img {
  height: 100%;
}
@media (max-width: 768px) {
  .about-us .banner .img {
    height: 25rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .about-us .banner .img img {
    height: 100%;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}
.about-us .banner h2 {
  font-size: 6rem;
  margin-bottom: 1.8rem;
}
.about-us .banner .more {
  margin: 18.5rem auto 0;
  background: none;
  color: #192F7C;
  border: 1px solid #fff;
}
.about-us .banner .more:hover {
  background: #192F7C;
  border: 1px solid #192F7C;
  color: #fff;
}
@media (max-width: 1670px) {
  .about-us .banner h2 {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .about-us .banner h2 h2 {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .about-us .banner {
    margin-top: 0;
  }
}
@media (max-width: 1670px) {
  .about-us .banner .m {
    top: 0;
  }
}
.about-us.on {
  height: auto;
}
.about-us.on .img {
  height: 95.8rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
@media (max-width: 1670px) {
  .about-us.on .banner .m {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 992px) {
  .about-us.on .img {
    height: 45.8rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}
@media (max-width: 768px) {
  .about-us.on .img {
    height: 29.7rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}

.about {
  background: #f5f7fa;
  padding: 5.5rem 0;
}
.about .box {
  background: #fff;
}

.about-why {
  padding: 11rem 0;
}
.about-why .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-why .content > div {
  width: 50%;
}
.about-why .content > div:last-child {
  width: 75%;
}
.about-why .content .mySwiper11 {
  padding-top: 10rem;
  padding-right: 2rem;
}
.about-why .content .mySwiper11 .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide {
  background: #F5F7FA;
  margin: 1rem;
  width: 100% !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  cursor: pointer;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide .cen {
  padding: 3rem;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide .cen p {
  font-size: 2rem;
  color: #333;
  background: url(../img/icon6.png) no-repeat left top;
  font-family: "Poppins-Medium";
  padding-top: 3rem;
  margin-top: 3rem;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide.active {
  background: #192F7C;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide.active p {
  color: #fff;
  background: url(../img/icon6q.png) no-repeat left top;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide.active .img2 {
  display: block;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide.active .img1 {
  display: none;
}
.about-why .content .mySwiper11 .swiper-wrapper .swiper-slide .img2 {
  display: none;
}
@media (max-width: 576px) {
  .about-why .content .mySwiper11 .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.about-why .content .mySwiper22 .swiper-slide {
  position: relative;
}
.about-why .content .mySwiper22 .swiper-slide .txt {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 8rem;
  background: rgba(0, 0, 0, 0.6);
  font-size: 3rem;
  color: #fff;
  padding: 0 3rem;
  line-height: 8rem;
}
.about-why .content .mySwiper22 .swiper-slide .slide-content {
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s ease 0.3s;
  transition: all 0.8s ease 0.3s;
}
.about-why .content .mySwiper22 .swiper-slide .img {
  height: 100%;
  max-height: 60.7rem;
}
.about-why .content .mySwiper22 .swiper-slide .img img {
  max-height: 60.7rem;
}
.about-why .content .mySwiper22 .swiper-slide-active .slide-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.about-why .content .mySwiper2 {
  overflow: hidden;
}
@media (max-width: 992px) {
  .about-why {
    padding: 6.3rem 0;
  }
  .about-why .content {
    display: block;
  }
  .about-why .content > div {
    width: 100%;
    padding-right: 0 !important;
  }
  .about-why .content > div:last-child {
    width: 100%;
    margin-top: 2rem;
  }
  .about-why .mySwiper11 {
    padding-top: 0 !important;
  }
}
@media (max-width: 992px) {
  .about-why {
    padding: 3.75rem 0;
  }
  .about-why .swiper-container {
    max-width: 100%;
    padding: 0;
  }
  .about-why .mySwiper11 .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .about-why .mySwiper11 .swiper-wrapper .swiper-slide {
    margin: 0 !important;
  }
  .about-why .mySwiper11 .swiper-wrapper .cen {
    padding: 2rem !important;
  }
  .about-why .mySwiper11 .swiper-wrapper .cen img {
    width: 4rem;
  }
  .about-why .mySwiper11 .swiper-wrapper .cen p {
    font-size: 1.5rem !important;
    padding-top: 1.5rem !important;
    background: none !important;
    margin-top: 0 !important;
  }
  .about-why .mySwiper22 .txt {
    font-size: 1.5rem !important;
  }
}

.about-par {
  margin-top: 8rem;
}
.about-par .banner {
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.about-par .banner .img {
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.about-par .banner .m {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
}
.about-par .banner .m .cen {
  position: absolute;
  text-align: center;
  width: 100%;
}
.about-par .banner .m h2 {
  font-size: 6.6rem !important;
}
.about-par .banner .m p {
  font-size: 3.6rem;
}
@media (max-width: 1200px) {
  .about-par {
    margin-top: 7.6rem;
  }
}
@media (max-width: 1670px) {
  .about-par .banner .text {
    width: 100%;
  }
  .about-par .banner .text h2 {
    font-size: 5rem !important;
  }
}
@media (max-width: 992px) {
  .about-par {
    margin-top: 0rem;
    overflow: hidden;
  }
  .about-par .banner {
    height: 43.4rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    overflow: hidden;
  }
  .about-par .banner .img {
    height: 53.8rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .about-par .banner .img img {
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}
@media (max-width: 768px) {
  .about-par .banner {
    height: 25rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .about-par .banner .img {
    height: 100% !important;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .about-par .banner .text {
    width: 100%;
  }
  .about-par .banner .text h2 {
    font-size: 3rem !important;
  }
}

.about-National {
  background: #f5f7fa url(../img/bj1.png) no-repeat right top;
  padding: 11rem 0 11.5rem 0;
}
@media (max-width: 768px) {
  .about-National {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.about-National .m {
  font-family: "Poppins-Regular";
}
.about-National .m .publick-title h4 {
  font-family: "Poppins-Regular";
  margin-bottom: 2rem;
}
.about-National .m .publick-title p {
  line-height: 2rem;
  padding: 0.5rem 0;
  margin-bottom: 0rem;
  margin-top: 0;
  font-family: "Poppins-Regular";
}
.about-National .m .bom {
  display: grid;
  grid-template-columns: repeat(5, 5fr);
  gap: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 8.5rem;
}
@media (max-width: 768px) {
  .about-National .m .bom {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 4rem;
  }
}
.about-National .m .bom .box {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: center;
  padding: 3.8rem 0;
  border: 1px solid #d9d9d9;
}
.about-National .m .bom .box p {
  font-size: 1.6rem;
  color: #333;
  padding-top: 2.8rem;
  display: block;
  font-family: "Poppins-Regular";
}
.about-National .m .bom .box img {
  max-width: 7rem;
  max-height: 7rem;
}

.about-Partners {
  background: url(../img/bj2.webp) no-repeat center center;
  padding: 13rem 0;
  background-size: cover;
  margin-bottom: 11.5rem;
}
.about-Partners .publick-title {
  font-family: "Poppins-Regular";
}
.about-Partners .publick-title h4 {
  color: #fff;
  font-family: "Poppins-Regular";
}
.about-Partners .publick-title p {
  color: #fff;
}
.about-Partners .publick-title p:last-child {
  margin-bottom: 3.8rem;
}
.about-Partners .bom .cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-Partners .bom .box {
  font-family: "PPoppins-Light";
  color: #fff;
  border: 1px solid #fff;
  padding: 0.9rem 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.about-Partners .bom .box p {
  background: url(../img/dd1.png) no-repeat left center;
  padding-left: 2rem;
  font-size: 1.6rem;
}
@media (max-width: 992px) {
  .about-Partners {
    padding: 3.75rem 0;
    margin-bottom: 3.75rem;
  }
  .about-Partners .bom p {
    background: none !important;
    padding-left: 0 !important;
  }
  .about-Partners .anniu {
    margin-top: 3.75rem;
  }
  .about-Partners .anniu a {
    margin: 0.5rem 0;
  }
}
@media (max-width: 768px) {
  .about-Partners .bom p {
    background: none !important;
    padding-left: 0 !important;
  }
}

.anniu {
  margin-top: 4.5rem;
}
.anniu a {
  border: 1px solid #fff;
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-right: 1rem;
  display: inline-block;
  color: #192F7C;
  font-size: 1.4rem;
  background: #fff;
  font-family: "Poppins-Regular";
}
.anniu a:hover {
  background: #192F7C;
  color: #fff;
  border: 1px solid #192F7C;
}

.contact {
  margin-top: 8rem;
}
.contact .img {
  overflow: hidden;
}
.contact .img img {
  max-width: 64rem;
  max-height: 36rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.contact .img img:hover {
  transform: scale(1.05) rotate(0.1deg);
  -webkit-transform: scale(1.05) rotate(0.1deg);
  -moz-transform: scale(1.05) rotate(0.1deg);
  -ms-transform: scale(1.05) rotate(0.1deg);
  -o-transform: scale(1.05) rotate(0.1deg);
}
.contact .publick-list {
  padding: 8.5rem 0;
}
.contact .publick-list .publick-title {
  margin-bottom: 2.5rem;
}
.contact .publick-list .list > .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d9d9d9;
  padding: 3rem 0;
}
.contact .publick-list .list > .box:last-child {
  border: none;
}
.contact .publick-list .list > .box .txt {
  margin-left: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .publick-list .list > .box .txt h4 {
  font-size: 2.4rem;
  color: #333;
  font-family: "Poppins-Regular";
  margin-bottom: 3rem;
}
.contact .publick-list .list > .box .txt .p {
  font-family: "Poppins-Medium";
}
.contact .publick-list .list > .box .txt .p .box {
  font-size: 1.6rem;
  line-height: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact .publick-list .list > .box .txt .p .box span {
  color: #333;
  font-weight: 700;
}
.contact .publick-list .list > .box .txt .p .box p {
  color: #666;
  margin-left: 0.5rem;
}
.contact .publick-list .list > .box .txt .anniu {
  margin-top: 2.8rem;
}
.contact .publick-list .list > .box .txt .anniu a{ 
  border:1px solid #192F7C;
}
.contact .publick-list .list > .box:hover h4 {
  color: #192F7C;
}
@media (max-width: 1670px) {
  .contact .publick-list {
    padding: 10rem 7rem;
  }
}
@media (max-width: 992px) {
  .contact .publick-list .list .box {
    display: inline-block;
    width: 100%;
  }
  .contact .publick-list .list .box .txt {
    margin-left: 0;
    margin-top: 3rem;
  }
}
@media (max-width: 1200px) {
  .contact {
    margin-top: 7.5rem;
  }
}
@media (max-width: 992px) {
  .contact .anniu {
    display: none;
  }
  .contact .publick-list {
    padding: 3.75rem 2.5rem;
  }
  .contact .publick-list h4 {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 1200px) {
  .contact .banner .anniu {
    display: none;
  }
}
.contact.on img {
  max-width: inherit;
  max-height: inherit;
}
.contact .top {
  text-align: center;
}
.contact .top img {
  max-width: 100%;
}
.contact .imgs {
  height: 53.8rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
@media (max-width: 1670px) {
  .contact {
    height: auto;
  }
  .contact .banner .m {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .contact .banner .imgs {
    height: 25rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}
@media (max-width: 992px) {
  .contact .con-t {
    margin-top: 0 !important;
  }
}

.news {
  padding: 19.5rem 0 1.5rem 0;
}
.news.on {
  padding-top: 2.7rem;
  margin-top: 4.5rem;
  margin-bottom: 11rem;
}
.news.on .publick-list {
  padding-top: 0rem;
  padding-bottom: 3rem;
}
.news.on .publick-list .list {
  font-family: "PPoppins-Light";
}
.news.on .publick-list .list .img {
  width: 400px;
  height: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news.on .publick-list .list .img img {
  max-width: 100%;
}
.news.on .publick-list .list p, .news.on .publick-list .list span {
  font-size: 1.6rem;
  color: #666;
}
.news.on .publick-list .list span {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news.on .box {
  border: none !important;
  padding-bottom: 0 !important;
}
.news .m .publick-title h3 {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 0.4rem;
}
.news .m .publick-title span {
  padding: 3.3rem 0 1rem;
  display: block;
}
.news .m .mySwiper {
  overflow: hidden;
  font-family: "Poppins-Regular";
  margin-top: 3rem;
  padding-bottom: 5.5rem;
}
.news .m .mySwiper p {
  font-size: 2rem;
  line-height: 3rem;
}
.news .m .mySwiper .swiper-slide {
  background: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news .m .mySwiper .swiper-slide .cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5%;
  width: 90%;
}
.news .m .mySwiper .swiper-slide .txt {
  width: 50%;
  padding-right: 2%;
  padding-top: 4rem;
}
.news .m .mySwiper .swiper-slide .txt span:last-child {
  margin-top: 6rem;
  font-size: 2rem;
  line-height: 3rem;
}
.news .m .mySwiper .swiper-slide span {
  font-size: 3.6rem;
  line-height: 3rem;
  padding-bottom: 7rem;
  display: block;
}
.news .m .mySwiper .swiper-slide img {
  max-width: 100%;
  width: 75.5rem;
  height: 60rem;
}
.news .m .mySwiper .swiper-slide > div {
  width: 50%;
}
.news .m .mySwiper .swiper-slide > div:first-child {
  padding-right: 3rem;
}
.news .m .content {
  position: relative;
}
.news .m .content .swiper-button-prev, .news .m .content .swiper-button-next {
  width: 5rem;
  height: 5rem;
  background: #fff url(../img/jt4.png) no-repeat center center;
  -webkit-box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.news .m .content .swiper-pagination {
  margin-top: 5rem;
}
.news .m .content .swiper-button-prev {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.news .m .content .swiper-pagination-bullet {
  background: #D9D9D9;
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.news .m .content .swiper-pagination-bullet-active {
  background: #192F7C;
}
@media (max-width: 1200px) {
  .news .cen {
    display: inline !important;
  }
  .news .cen .txt {
    width: 100% !important;
  }
  .news .cen .img {
    height: 41rem;
  }
}
@media (max-width: 992px) {
  .news {
    padding: 12rem 0 0;
  }
  .news .cen .img {
    height: inherit !important;
  }
  .news .txt {
    padding-top: 0 !important;
  }
  .news .txt span {
    padding-bottom: 4rem !important;
  }
  .news.on {
    margin-bottom: 3.75rem;
  }
  .news.on .publick-list span {
    margin-top: 2rem !important;
    padding-bottom: 0 !important;
  }
  .news .swiper-slide span {
    line-height: 4rem !important;
    padding-bottom: 2rem !important;
  }
}
.news .swiper-button-prev svg, .news .swiper-button-next svg {
  display: none;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 关键属性 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直居中 */
  font-size: 1.6rem;
  color: #192F7C;
  line-height: 2rem;
  font-family: "Poppins-Regular";
  margin-top: 3.5rem;
}
.page a {
  color: #192F7C;
}
.page .left {
  background: url(../img/page.png) no-repeat left center;
  padding-left: 4rem;
}
.page .center {
  color: #333;
}
.page .center em {
  color: #192F7C;
}
.page .right {
  background: url(../img/page2.png) no-repeat right center;
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .page .center {
    display: none;
  }
}

.lxwm {
  margin-top: 7.5rem;
}
.lxwm.on {
  padding-top: 0.5rem;
}
.lxwm.on .p-s {
  background: url(../img/bja.png) no-repeat center center;
  background-size: cover;
}
.lxwm .banner {
  text-align: center;
}
.lxwm .banner h2 {
  font-size: 6.6rem !important;
}
.lxwm .banner p {
  font-size: 3.6rem !important;
}
.lxwm .top {
  padding: 11rem 0;
  font-family: "Poppins-Regular";
}
@media (max-width: 1670px) {
  .lxwm .top {
    padding: 11rem 7rem;
  }
}
.lxwm .top .publick-title h4 {
  font-weight: 400;
}
.lxwm .top .publick-title h3 {
  padding-bottom: 1rem;
}
.lxwm .top .publick-title p {
  line-height: 3rem;
  margin-bottom: 0;
  margin-top: 0;
}
.lxwm .top .left {
  width: 39%;
  padding-right: 10%;
}
.lxwm .top .left .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  color: #666;
  padding: 2.5rem 0;
  font-family: "Poppins-Regular";
}
.lxwm .top .left .box .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1rem;
}
.lxwm .top .left .box .img img {
  height: auto;
}
.lxwm .top .left .box .txt span {
  display: block;
  padding-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .lxwm .top .left .box {
    padding: 1.5rem 0;
  }
}
.lxwm .top .right {
  -webkit-box-shadow: 0.2rem 0.8rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0.2rem 0.8rem 3rem rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 3rem;
  width: 55%;
}
.lxwm .top .right span {
  font-size: 2.4rem;
  color: #333;
}
.lxwm .top .right p {
  font-size: 1.6rem;
  color: #333;
  padding: 3rem 0;
}
.lxwm .top .right form {
  /* 红色*号样式 */
}
.lxwm .top .right form .in {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .lxwm .top .right form .in {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lxwm .top .right form input {
  width: 41rem;
  height: 2rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  color: #666;
  width: 84%;
  height: 100%;
  border: none;
}
.lxwm .top .right form input::-webkit-input-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form input::-moz-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form input:-ms-input-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form input::-ms-input-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form input::placeholder {
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .lxwm .top .right form input {
    width: 92%;
  }
}
@media (max-width: 768px) {
  .lxwm .top .right form input {
    width: 82%;
  }
}
.lxwm .top .right form .input-wrapper {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  height: 5rem;
}
.lxwm .top .right form .input-wrapper::before {
  content: "*"; /* 星号内容 */
  color: red; /* 红色 */
  position: absolute; /* 绝对定位 */
  left: 17px; /* 距离左侧的距离，和输入框内边距对应 */
  top: 55%; /* 垂直居中 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
}
@media (max-width: 1200px) {
  .lxwm .top .right form .input-wrapper::before {
    left: 0.8rem;
  }
}
@media (max-width: 992px) {
  .lxwm .top .right form .input-wrapper::before {
    left: 2.8rem;
  }
}
@media (max-width: 768px) {
  .lxwm .top .right form .input-wrapper::before {
    left: 1.5rem;
  }
}
.lxwm .top .right form textarea {
  width: 41rem;
  height: 5rem;
  border: 1px solid #D9D9D9;
  color: #666;
  width: 92.5%;
  font-size: 1.6rem;
  border: none;
}
.lxwm .top .right form textarea::-webkit-input-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form textarea::-moz-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form textarea:-ms-input-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form textarea::-ms-input-placeholder {
  text-transform: capitalize;
}
.lxwm .top .right form textarea::placeholder {
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .lxwm .top .right form textarea {
    width: 81.5%;
  }
}
.lxwm .top .right form button {
  display: inline-block;
  height: 3.6rem;
  border: 1px solid #fff;
  border-radius: 4rem;
  text-align: center;
  line-height: 3.6rem;
  margin-top: 5.7rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  background: #192F7C;
  color: #fff;
  position: relative;
  margin: 0 auto;
  font-size: 1.4rem;
  font-family: "PPoppins-Light";
  padding-right: 4.6rem;
  display: block;
  padding-left: 2rem;
  margin-top: 1.6rem;
  cursor: pointer;
}
.lxwm .top .right form button::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 17px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/jt.png) no-repeat;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}
.lxwm .top .right .t {
  margin-top: 2rem;
}
.lxwm .top .right .t .input-wrapper {
  width: 100%;
  height: 10rem;
}
.lxwm .top .right .t .input-wrapper textarea {
  padding: 2rem;
}
.lxwm .top .right .t .input-wrapper::before {
  top: 36%;
}
.lxwm .top .cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.2rem;
}
@media (max-width: 992px) {
  .lxwm .top .cen {
    display: inline-block;
  }
  .lxwm .top .cen > div {
    width: 94%;
  }
  .lxwm .top .cen .left {
    display: block;
    margin-bottom: 5rem;
  }
}
@media (max-width: 1670px) {
  .lxwm .banner h2 {
    font-size: 5rem !important;
  }
  .lxwm .banner p {
    font-size: 2rem !important;
  }
}
@media (max-width: 768px) {
  .lxwm .banner h2 {
    font-size: 3rem !important;
  }
  .lxwm .banner .m {
    padding: 5.4rem 2.5rem 0;
  }
}
@media (max-width: 992px) {
  .lxwm .m {
    padding: 5.4rem 2.5rem;
  }
  .lxwm .cen > div {
    width: inherit !important;
  }
  .lxwm .banner {
    height: 25rem;
  }
  .lxwm .banner .img {
    height: 100%;
  }
  .lxwm .banner .img img {
    height: 100%;
  }
}
.lxwm .banner {
  height: 53.8rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.lxwm .banner .img {
  height: 53.8rem;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.lxwm .banner .img img {
  height: 100%;
}
@media (max-width: 768px) {
  .lxwm .banner {
    height: 25rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
  .lxwm .banner .img {
    height: 25rem;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
  }
}

.contact .con-t {
  margin-top: 7rem;
}
.contact .con-t .mySwiper2 {
  max-width: 1650px;
}
.contact .con-t .mySwiper2 .swiper-slide {
  background: url(../img/bj5.png) no-repeat left top;
}
@media (max-width: 992px) {
  .contact .con-t .mySwiper2 .swiper-slide {
    display: inline;
  }
  .contact .con-t .mySwiper2 .swiper-slide > div {
    width: auto;
  }
}
.contact .con-t .mySwiper2 .swiper-slide .publick-title h4 {
  font-family: "Poppins-SemiBold";
}
.contact .con-t .mySwiper2 ul {
  margin-top: -2rem;
}
.contact .con-t .mySwiper2 ul li {
  font-size: 1.6rem;
  color: #192F7C;
  background: url(../img/dd.png) no-repeat left center;
  padding-left: 2.9rem;
  margin: 3rem 0;
  font-family: "Poppins-Regular";
}
@media (max-width: 1400px) {
  .contact .con-t .mySwiper2 ul li {
    margin: 2.5rem 0;
  }
}
.contact .con-t .mySwiper2 .cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1670px) {
  .contact .con-t .mySwiper2 .cen {
    padding: 0 7rem;
  }
}
.contact .con-t .mySwiper2 .cen > div {
  width: 50%;
}
.contact .con-t .mySwiper2 .cen > div p {
  width: 87%;
}
@media (max-width: 992px) {
  .contact .con-t .mySwiper2 .cen {
    display: flow-root;
    padding: 0 2.5rem;
  }
  .contact .con-t .mySwiper2 .cen ul {
    display: none;
  }
  .contact .con-t .mySwiper2 .cen > div {
    width: 100%;
  }
}
.contact .con-t .mySwiper2 .cen .img {
  max-height: 69rem;
}
@media (max-width: 992px) {
  .contact .con-t .mySwipers {
    display: none;
  }
}
.contact .con-t .mySwipers .swiper-slide {
  height: 6rem;
  text-align: center;
  line-height: 6rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  font-size: 1.6rem;
  cursor: pointer;
}
.contact .con-t .mySwipers .swiper-slide:hover {
  background: #192F7C;
  color: #fff;
}
@media (max-width: 1670px) {
  .contact .con-t .mySwipers {
    padding: 0 7rem !important;
  }
}
.contact .con-t .mySwipers .swiper-slide {
  font-family: "Poppins-Regular";
}
.contact .con-t .bj {
  background:#f5f7fa;
  padding: 3rem 0;
}
.contact .con-t .swiper-slide-thumb-active {
  background: #192F7C;
  color: #fff;
}
@media (max-width: 1670px) {
  .contact .con-t .m {
    padding: 0;
  }
}
.contact .con-t .swiper-button-prev, .contact .con-t .swiper-button-next {
  width: 5rem;
  height: 5rem;
  background: #fff url(../img/jt4.png) no-repeat center center;
  -webkit-box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: none;
}
.contact .con-t .swiper-button-prev svg, .contact .con-t .swiper-button-next svg {
  display: none;
}
@media (max-width: 992px) {
  .contact .con-t .swiper-button-prev, .contact .con-t .swiper-button-next {
    display: block;
  }
}
.contact .con-t .swiper-pagination {
  margin-top: 5rem;
}
.contact .con-t .swiper-button-prev {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.contact .con-t .swiper-pagination-bullet {
  background: #D9D9D9;
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.contact .con-t .swiper-pagination-bullet-active {
  background: #192F7C;
}
.contact .tab {
  border: 1px solid #eee;
  margin-bottom: 3rem;
}
.contact .tab .swiper-slide {
  border-right: 1px solid #eee;
}

.about-who {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 6rem;
}
.about-who .m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-who .m > div {
  width: 50%;
}
.about-who .m .text {
  width: 47.5%;
  padding-right: 2.5%;
}
.about-who .m .text .swiper {
  padding: 0 3rem;
}
.about-who .m .text .swiper .swiper-slide {
  text-align: center;
}
.about-who .m .swiper .img {
  height: 100%;
}
.about-who .m .swiper .img img {
  height: 100%;
}
@media (max-width: 992px) {
  .about-who .m {
    display: block;
  }
  .about-who .m > div {
    width: 100% !important;
  }
  .about-who .m .swiper {
    margin-top: 2.5rem;
  }
  .about-who .m .swiper .img {
    width: 100%;
    padding: 0;
  }
}
.about-who .swiper-button-prev, .about-who .swiper-button-next {
  width: 5rem;
  height: 5rem;
  background: #fff url(../img/jt4.png) no-repeat center center;
  -webkit-box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  bottom: 3rem;
}
.about-who .swiper-button-prev svg, .about-who .swiper-button-next svg {
  display: none;
}
.about-who .swiper-pagination {
  position: absolute;
  bottom: 1.8rem;
}
.about-who .swiper-button-prev {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.about-who .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.25);
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.about-who .swiper-pagination-bullet-active {
  background: #192F7C;
}
.about-who .publick-title span {
  width: 100%;
  height: 5rem;
  display: block;
  text-align: center;
  line-height: 5rem;
  border: 1px solid #192F7C;
  font-size: 2rem;
  color: #192F7C;
  font-family: "Poppins-Italic";
}
.about-who .swiper-slide {
  position: relative;
}
.about-who .swiper-slide img {
  height: 100%;
}
@media (max-width: 992px) {
  .about-who {
    padding-top: 3.75rem;
  }
  .about-who .publick-title span {
    font-size: 1.5rem;
    height: inherit;
    line-height: 2rem;
    padding: 1rem 0;
  }
}
.about-who .right {
  position: relative;
}
.about-who .right .swiper {
  margin: 0 4%;
}
.about-who .right .swiper .swiper-slide {
  position: relative;
  height: 100%;
}

.about-achie {
  padding-bottom: 8.5rem;
}
.about-achie .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.about-achie .box-fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
}
@media (max-width: 1670px) {
  .about-achie .box-fl {
    padding: 0;
    overflow: hidden;
  }
}
@media (max-width: 1400px) {
  .about-achie .box-fl {
    display: none;
  }
}
.about-achie img {
  width: 100%;
  height: 100%;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
@media (max-width: 992px) {
  .about-achie {
    padding-bottom: 0;
  }
}

.ls6Box {
  width: calc((22vw - 16.5rem) / 2 + 100%);
  padding-top: 5rem;
}
@media (max-width: 1670px) {
  .ls6Box {
    width: calc((14vw - 16.5rem) / 2 + 100%);
  }
}

.ls6W1 .swiper-slide {
  height: 41.9rem;
  margin-bottom: 2.5rem;
  padding: 5rem 0;
}
.ls6W1 .swiper-slide .img {
  height: 41.9rem;
  width: 100%;
  border: 1px solid #eee;
}
.ls6W1 .swiper-slide .img img {
  width: 100%;
}
@media (max-width: 1400px) {
  .ls6W1 .swiper-slide .img {
    width: auto !important;
    height: inherit !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ls6W1 .swiper-slide .img img {
    width: -webkit-fill-available;
  }
}
.ls6W1 .swiper-slide:hover img {
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  z-index: 9999;
  border: 1px solid #fff;
}
.ls6W1 .swiper-slide:hover img:hover {
  -webkit-transform: scale(1.1) rotate(0.1deg);
          transform: scale(1.1) rotate(0.1deg);
  z-index: 9999;
  border: 1px solid #192F7C;
}
@media (max-width: 1400px) {
  .ls6W1 .swiper-slide {
    margin-bottom: 0;
  }
}

.ls6W1 .swiper-scrollbar {
  height: 10px;
  bottom: auto;
  border-radius: 0;
  z-index: 1;
  background: none;
  position: relative;
  width: 100%;
}

.ls6W1 .swiper-scrollbar:before {
  content: "";
  position: relative;
  right: 0;
  background: #F5F7FA;
  height: 10px;
  z-index: -1;
  border-radius: 50vw;
  width: 1650px;
  margin: 0 auto;
}

.ls6W1 .swiper-scrollbar-drag {
  background: #192F7C;
  cursor: pointer;
  margin-left: 0;
  position: relative;
  top: -10px;
}

/* 放大模态框样式 */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.modal-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
}

.nav-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 1001;
}

.prev-btn {
  left: 20rem;
}

.next-btn {
  right: 20rem;
}

.about-project {
  padding: 0.5rem 0 5rem;
  margin-top: -1rem;
}
@media (max-width: 992px) {
  .about-project {
    padding-bottom: 0;
  }
  .about-project .mySwiperqq {
    margin-bottom: 3.75rem !important;
    margin-top: 3.75rem !important;
  }
}
.about-project .m .publick-title p {
  margin-bottom: 2.7rem;
}
.about-project .m .bom a {
  border-radius: 4rem;
  padding: 0 2rem;
  line-height: 3.6rem;
  margin-right: 1rem;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Poppins-Regular";
  border: 1px solid #192F7C;
  color: #192F7C;
}
.about-project .m .bom a:hover {
  background: #192F7C;
  color: #fff;
}
@media (max-width: 768px) {
  .about-project .bom a {
    margin: 0.5em 0;
  }
}
.about-project .mySwiperqq {
  margin: 6.8rem 0;
}
.about-project .mySwiperqq .m {
  position: relative;
  top: -20rem;
}
@media (max-width: 992px) {
  .about-project .mySwiperqq .swiper-button-next, .about-project .mySwiperqq .swiper-button-prev {
    position: absolute;
    top: 9rem;
  }
}
.about-project .mySwiperqq .swiper-slide {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.about-project .mySwiperqq .swiper-slide .img {
  margin: 0;
}
.about-project .mySwiperqq .swiper-slide .txt .cen {
  width: 98%;
}
.about-project .mySwiperqq .swiper-slide .txt span {
  font-family: "Poppins-SemiBold";
}
@media (max-width: 1670px) {
  .about-project .mySwiperqq .swiper-slide .img {
    margin: 0 1rem;
  }
}
@media (max-width: 992px) {
  .about-project .mySwiperqq .swiper-slide .img {
    margin: 2rem 0;
  }
}
.about-project .mySwiperqq .swiper-button-prev, .about-project .mySwiperqq .swiper-button-next {
  width: 5rem;
  height: 5rem;
  background: #fff url(../img/jt4.png) no-repeat center center;
  -webkit-box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  bottom: 3rem;
}
.about-project .mySwiperqq .swiper-button-prev svg, .about-project .mySwiperqq .swiper-button-next svg {
  display: none;
}
.about-project .mySwiperqq .swiper-pagination {
  position: absolute;
  bottom: 1.8rem;
}
.about-project .mySwiperqq .swiper-button-prev {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.about-project .mySwiperqq .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.25);
  width: 1rem;
  height: 1rem;
  opacity: 1;
}
.about-project .mySwiperqq .swiper-pagination-bullet-active {
  background: #192F7C;
}
@media (max-width: 768px) {
  .about-project .mySwiperqq .swiper-slide span {
    font-size: 2rem !important;
  }
  .about-project .mySwiperqq .swiper-slide p {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 992px) {
  .about-project .mySwiperqq .swiper-slide .img {
    margin: 1rem;
  }
  .about-project .mySwiperqq .swiper-slide .cen {
    margin: 1rem;
  }
  .about-project .mySwiperqq .swiper-slide .txt {
    display: none;
  }
  .about-project .mySwiperqq .swiper-button-next, .about-project .mySwiperqq .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 768px) {
  .about-project .mySwiperqq .swiper-slide {
    display: inline-block;
  }
}
.about-project .swiper-slide img {
  max-width: 100%;
  height: 100%;
}

.mySwiperuu .swiper-slide {
  height: inherit !important;
}
.mySwiperuu .swiper-slide .cen {
  margin: 0 1rem;
  width: 50%;
}
.mySwiperuu .swiper-slide .img {
  height: inherit !important;
  margin: 0 !important;
}
.mySwiperuu .swiper-slide .img img {
  width: 100% !important;
}

/* 放大查看器 */
#lightbox .counter {
  display: none;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 80vh;
  overflow: hidden;
  -webkit-animation: lightboxIn 0.4s ease;
          animation: lightboxIn 0.4s ease;
}

@-webkit-keyframes lightboxIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* 大图区域 */
.lightbox-image-container {
  position: relative;
  width: 100%;
  height: calc(100% - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/* 标题区域 */
.lightbox-title-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 30px 40px;
  z-index: 10;
}

.lightbox-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.lightbox-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.5;
}

/* 关闭按钮 */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  -webkit-transform: rotate(90deg) scale(1.1);
          transform: rotate(90deg) scale(1.1);
}

/* 导航按钮 */
.nav-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  opacity: 0;
}

.lightbox-container:hover .nav-btn {
  opacity: 1;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* 加载动画 */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  -webkit-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
  z-index: 5;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* 响应式设计 */
@media (max-width: 768px) {
  .subtitle {
    font-size: 1rem;
  }
  .swiper-container {
    max-width: 95%;
    padding: 15px;
  }
  .slide-image {
    height: 250px;
  }
  .slide-info {
    padding: 15px;
  }
  .slide-title {
    font-size: 1.1rem;
  }
  .lightbox-container {
    height: 70vh;
    border-radius: 10px;
  }
  .lightbox-title-container {
    padding: 20px;
  }
  .lightbox-title {
    font-size: 1.4rem;
  }
  .lightbox-subtitle {
    font-size: 1rem;
  }
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    opacity: 1;
  }
  .close-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .slide-image {
    height: 200px;
  }
  .lightbox-container {
    height: 60vh;
  }
  .lightbox-title {
    font-size: 1.2rem;
  }
  .lightbox-subtitle {
    font-size: 0.9rem;
  }
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
.producta {
  background: #F5F7FA;
  padding: 6rem 0 6rem !important;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .producta {
    padding: 3.75rem 0;
  }
  .producta .swiper-slide {
    height: inherit !important;
  }
}
.producta .mySwipera {
  overflow: hidden;
}
.producta .swiper-slide img {
  width: 100%;
}
.producta .swiper-slide .box .txt {
  background: #192F7C;
  padding: 3rem;
  color: #fff;
}
.producta .swiper-slide .box .txt span {
  font-size: 4.8rem;
  display: block;
}
.producta .swiper-slide .box .txt .cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.producta .swiper-slide .box .txt p {
  font-size: 2rem;
}
.producta .mySwiperqq {
  height: inherit !important;
  margin: 0 !important;
  margin-bottom: 6rem;
}
.producta .mySwiperqq .jt {
  top: -29rem;
}
.producta .mySwiperqq .swiper-slide {
  height: 61rem;
}
.producta .mySwiperqq .swiper-slide .txt {
  background: #192F7C;
  font-size: 4.8rem;
  padding: 3.2rem 2.15rem;
  color: #fff;
}
.producta .mySwiperqq .swiper-slide .txt > img {
  height: 5rem;
}
.producta .mySwiperqq .swiper-slide .txt span {
  display: block;
  margin-top: -2rem;
}
.producta .mySwiperqq .swiper-slide .txt .cen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2rem;
}
.producta .mySwiperqq .swiper-slide .txt .cen p {
  font-family: "Poppins-Regular";
}
.producta .mySwiperqq .swiper-slide .img {
  height: 61rem;
}
.producta .mySwiperqq .swiper-slide img {
  width: inherit;
}
@media (max-width: 1600px) {
  .producta .mySwiperqq .swiper-slide .swiper-slide {
    height: 27rem;
  }
  .producta .mySwiperqq .swiper-slide span {
    font-size: 3.5rem;
    margin-top: 1.5rem !important;
  }
  .producta .mySwiperqq .swiper-slide .img {
    height: 27rem;
  }
}
@media (max-width: 992px) {
  .producta {
    padding: 6rem 0 0 !important;
    margin-bottom: 3.75rem;
  }
}

.home-jizx {
  position: relative;
  padding-top: 21rem;
}
@media (max-width: 1670px) {
  .home-jizx {
    padding-top: 15rem;
  }
}
@media (max-width: 992px) {
  .home-jizx {
    padding: 3.2rem 2.5rem 0;
    top: 0;
  }
  .home-jizx .m {
    top: inherit !important;
  }
}
.home-jizx > img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 992px) {
  .home-jizx > img {
    display: none;
  }
}
.home-jizx .m {
  background: none;
  position: relative;
  top: -13rem;
}
.home-jizx .m > a {
  position: absolute;
  right: 32%;
  top: 40%;
}
.home-jizx .m > a .p1::before {
  background: #192F7C;
  width: 2rem;
  height: 2rem;
}
@media (max-width: 1670px) {
  .home-jizx .m > a .p1 {
    display: none;
  }
}
.home-jizx .m > a .y1 {
  width: 1rem;
  height: 1rem;
  background: #192F7C;
}
.home-jizx .m .center {
  margin: 5rem 0 0;
  font-family: "Poppins-Regular";
}
.home-jizx .m .center > span {
  color: #192F7C;
  background: url("../img/dd.png") no-repeat left center;
  padding-left: 3.5rem;
  font-size: 2.4rem;
}
.home-jizx .m .center > p {
  font-size: 1.6rem;
  color: #666;
  width: 49%;
}
@media (max-width: 992px) {
  .home-jizx .m .center > p {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media (max-width: 992px) {
  .home-jizx .m .center {
    margin-top: 2rem;
  }
}
.home-jizx .m .lunbotu {
  padding: 2rem 5rem;
  width: 50%;
  position: relative;
}
@media (max-width: 992px) {
  .home-jizx .m .lunbotu {
    width: 100%;
    padding: 0;
  }
}
.home-jizx .m .lunbotu .swiper-button-prev, .home-jizx .m .lunbotu .swiper-button-next {
  width: 5rem;
  height: 5rem;
  background: #fff url(../img/jt4.png) no-repeat center center;
  -webkit-box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 0px 14px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  bottom: 3rem;
}
.home-jizx .m .lunbotu .swiper-button-prev svg, .home-jizx .m .lunbotu .swiper-button-next svg {
  display: none;
}
.home-jizx .m .lunbotu .swiper-button-prev {
  left: -18px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.home-jizx .m .lunbotu .swiper-button-next {
  right: -18px;
}
.home-jizx .m .bom {
  margin-top: 3.6rem;
}
.home-jizx .m .swiper .swiper-slide .con {
  margin: 10px;
  -webkit-box-shadow: 2px 2px 11px #ccc;
          box-shadow: 2px 2px 11px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  background: #fff;
}
.home-jizx .m .swiper .swiper-slide .con .swiper-button-prev, .home-jizx .m .swiper .swiper-slide .con .swiper-button-next {
  position: absolute;
  top: 50%;
}
.home-jizx .m .swiper .swiper-slide .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 2rem;
}
.home-jizx .m .swiper .swiper-slide .img img {
  height: 157px;
}
.home-jizx .m .swiper .swiper-slide span {
  font-size: 1.4rem;
  color: #333;
  font-family: "Poppins-Medium";
  margin-top: 1rem;
  display: block;
}
.home-jizx .m .swiper .swiper-slide p {
  font-size: 1.2rem;
  color: #666;
  font-family: "Poppins-Regular";
  margin: 1rem 0;
}
.home-jizx .m .swiper .swiper-slide a {
  font-size: 1.2rem;
  font-family: "Poppins-Regular";
  color: #192F7C;
  background: url(../img/jtt.png) no-repeat right center;
  padding-right: 2.5rem;
  position: absolute;
  bottom: 2rem;
}
.home-jizx .m .swiper .swiper-slide .txt {
  position: relative;
}
@media (max-width: 1400px) {
  .home-jizx .m .swiper .swiper-slide span {
    font-size: 2.4rem;
  }
  .home-jizx .m .swiper .swiper-slide p {
    font-size: 1.5rem;
  }
  .home-jizx .m .swiper .swiper-slide a {
    font-size: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .home-jizx .m .swiper .swiper-slide span {
    font-size: 2rem;
  }
  .home-jizx .m .swiper .swiper-slide p {
    font-size: 1.5rem;
    display: none;
  }
  .home-jizx .m .swiper .swiper-slide a {
    font-size: 1.5rem;
    left: 0;
  }
}

.xp-tc {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  -webkit-transition: 1s;
  transition: 1s;
}
.xp-tc.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.xp-tc .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #fff;
}
@media (max-width: 1400px) {
  .xp-tc .content {
    width: 90%;
  }
  .xp-tc .content .right {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .xp-tc .content .right form .in {
    gap: 1rem !important;
  }
  .xp-tc .content .right form .t {
    margin-top: 1rem !important;
  }
  .xp-tc .content .right input {
    margin-left: 2rem !important;
  }
  .xp-tc .content .right textarea {
    margin-left: 1.6rem !important;
  }
}
.xp-tc .content .left {
  background: #192F7C url(../img/62.png) no-repeat bottom center;
  padding: 4rem 3rem 13.5rem;
  width: 48.2rem;
}
.xp-tc .content .left ul {
  margin-top: 2rem;
}
.xp-tc .content .left ul li {
  color: #fff;
  font-size: 1.6rem;
  padding-left: 3rem;
  line-height: 5rem;
}
.xp-tc .content .left ul li:first-child {
  background: url(../img/phone.png) no-repeat left center;
}
.xp-tc .content .left ul li:nth-child(2) {
  background: url(../img/email.png) no-repeat left center;
}
.xp-tc .content .left ul li:last-child {
  background: url(../img/phone2.png) no-repeat left center;
}
.xp-tc .content .left p {
  font-size: 1.6rem;
  font-family: "Poppins-Italic";
  color: #fff;
  padding-top: 2rem;
}
.xp-tc .content .left .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 2.5rem;
}
.xp-tc .content .left .con .box {
  position: relative;
  width: 18.1rem;
  margin-top: 3rem;
}
@media (max-width: 1400px) {
  .xp-tc .content .left .con .box {
    width: 48%;
  }
}
.xp-tc .content .left .con .box > img {
  width: 100%;
}
.xp-tc .content .left .con .box span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.xp-tc .content .right {
  width: 93.8rem;
  padding: 3.6rem;
  background: url(../img/63.png) no-repeat 3.6rem 3.6rem;
  -webkit-box-shadow: 0.2rem 0.8rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0.2rem 0.8rem 3rem rgba(0, 0, 0, 0.2);
}
.xp-tc .content .right > img {
  position: absolute;
  right: 3.4rem;
  top: 3.4rem;
  cursor: pointer;
}
.xp-tc .content .right span {
  font-family: "Poppins-Medium";
  font-size: 2.4rem;
  color: #192F7C;
  margin-top: 2rem;
  display: block;
}
.xp-tc .content .right p {
  font-size: 1.6rem;
  font-family: "Poppins-Regular";
  padding: 2.5rem 0 1rem;
}
.xp-tc .content .right p:nth-child(4) {
  color: #666;
  font-style: italic;
}
.xp-tc .content .right p em {
  color: #192F7C;
}
.xp-tc .content .right p i {
  color: red;
}
.xp-tc .content .right form {
  margin-top: 1rem;
  /* 红色*号样式 */
}
.xp-tc .content .right form .in {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .xp-tc .content .right form .in {
    grid-template-columns: repeat(1, 1fr);
  }
}
.xp-tc .content .right form input {
  width: 41rem;
  height: 2rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  color: #666;
  width: 81%;
  height: 100%;
  border: none;
  margin-left: 3rem;
}
.xp-tc .content .right form .t {
  margin-top: 2rem;
}
.xp-tc .content .right form .t .input-wrapper {
  height: 11.8rem;
}
.xp-tc .content .right form .t .input-wrapper::before {
  top: 25% !important;
}
.xp-tc .content .right form .input-wrapper {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  height: 5.7rem;
  width: 100%;
}
@media (max-width: 992px) {
  .xp-tc .content .right form .input-wrapper {
    height: 4rem;
  }
  .xp-tc .content .right form .input-wrapper::before {
    left: 1.8rem !important;
  }
}
.xp-tc .content .right form .input-wrapper::before {
  content: "*"; /* 星号内容 */
  color: red; /* 红色 */
  position: absolute; /* 绝对定位 */
  left: 34px; /* 距离左侧的距离，和输入框内边距对应 */
  top: 55%; /* 垂直居中 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
}
@media (max-width: 1400px) {
  .xp-tc .content .right form .input-wrapper::before {
    left: 3.8rem;
  }
}
.xp-tc .content .right form textarea {
  width: 100%;
  height: 74%;
  border: 1px solid #D9D9D9;
  color: #666;
  width: 89%;
  font-size: 1.6rem;
  border: none;
  padding: 1rem;
  margin-left: 3rem;
  padding: 1.5rem 2.5rem;
}
@media (max-width: 992px) {
  .xp-tc .content .right form textarea {
    width: 76%;
  }
}
.xp-tc .content .right form button {
  display: inline-block;
  height: 3.6rem;
  border: 1px solid #fff;
  border-radius: 4rem;
  text-align: center;
  line-height: 3.6rem;
  margin-top: 5.7rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  background: #192F7C;
  color: #fff;
  position: relative;
  margin: 0 auto;
  font-size: 1.4rem;
  font-family: "PPoppins-Light";
  padding-right: 4.6rem;
  display: block;
  padding-left: 2rem;
  margin-top: 1.6rem;
  cursor: pointer;
}
.xp-tc .content .right form button::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 17px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/jt.png) no-repeat;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
}
@media (max-width: 768px) {
  .xp-tc .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xp-tc .content .left {
    padding: 4rem;
    width: 100%;
    display: none;
  }
  .xp-tc .content .left .con {
    display: none;
  }
  .xp-tc .content .left p {
    display: none;
  }
  .xp-tc .content .right form input {
    width: 79%;
  }
  .xp-tc .content .right form .input-wrapper {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .xp-tc .content .right p:nth-child(4) {
    display: none;
  }
  .xp-tc .content .right form input {
    width: 75%;
  }
  .xp-tc .content .right form textarea {
    width: 71%;
  }
}/*# sourceMappingURL=style.min.css.map */