@charset "utf-8";
/* CSS Document */
@font-face {
  src: url("../fonts/SourceHanSansCN-Regular.otf");
  font-family: "myfont";
}
@font-face {
  src: url("../fonts/SourceHanSansCN-Medium.otf");
  font-family: "title";
}
@font-face {
  src: url("../fonts/impact.ttf");
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  font-size: 12px;
  color: #666;
  list-style: none;
  font-family: "myfont", Arial, sans-serif;
  font-weight: normal;
  box-sizing: border-box;
}
@font-face {
  font-family: "iconfont";
  src: url("../icons/iconfont.eot");
  src: url("../icons/iconfont.eot?#iefix") format("embedded-opentype"),
    url("../icons/iconfont.woff") format("woff"),
    url("../icons/iconfont.ttf") format("truetype"),
    url("../icons/iconfont.svg#iconfont") format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  list-style: none;
  font-size: 12px;
  line-height: 24px;
}
img {
  width: 100%;
  display: block;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
dir,
section {
  margin: 0;
  padding: 0;
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
/*index*/
.w_all {
  width: 80%;
  margin: auto;
}
.w_all2 {
  width: 84%;
  margin: auto;
}
.w_all3 {
  width: 100%;
  padding-bottom: 6%;
}
html,
body {
  width: 100%;
  position: relative;
}
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 999;
}
header .nav_box {
  position: relative;
}
header .nav_box.white {
  background-color: #fff;
  box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
}
header .nav_box.white .nav ul li h2 {
  color: #333;
}
header .nav_box.white .h_other span{
  color: rgba(0, 0, 0, 0.3);
}
header .nav_box.white .h_other span.active{
  color: rgba(0, 0, 0, 0.7);
}

/* 首页 Strat */

.nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 80px;
  transition: background-color 0.8s ease;
}
.nav_box:hover {
  background-color: #fff;
}
.nav_box > a {
  display: flex;
  align-items: center;
}
.nav_box > a .zs {
  font-size: 2.5rem;
  font-family: "title";
  font-weight: 800;
  color: #689bda;
  margin-left: 12px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#0e6bb9),
    to(#79aae2)
  );
  background: -o-linear-gradient(left, #0e6bb9, #79aae2);
  background: linear-gradient(-90deg, #0e6bb9, #79aae2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.nav_box .logo {
  width: 51px;
}
.nav_box .nav ul {
  display: flex;
}
.nav_box .nav ul li {
  padding: 0 35px;
  position: relative;
  height: 90px;
  line-height: 90px;
}
.nav_box .nav ul li h2 {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
.nav_box .nav ul li h2::after {
  content: "";
  width: 0;
  height: 4px;
  background: rgba(0, 85, 255, 1);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.36s;
}
.nav_box .nav ul li:hover h2::after {
  width: 100%;
}
.nav_box:hover .nav ul li h2 {
  color: #333;
}
.nav_box .nav ul li:hover h2 {
  color: #4487cc;
}
.nav_box .nav ul .sub {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 90px;
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
  box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: all 0.6s;
  text-align: center;
}
.nav_box .nav ul li:hover .sub {
  transform: scaleY(1);
}
.nav_box .nav ul .sub ul {
  display: flex;
  justify-content: center;
}
.nav_box .nav ul .sub p {
  font-size: 1.5rem;
  color: #333;
  line-height: 80px;
  padding: 0 30px;
}
.nav_box .nav ul .sub p:hover {
  color: #4487cc;
}
.nav_box .h_other {
  color: rgba(255, 255, 255, 0.7);
}
.nav_box .h_other span {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 20px;
}
.nav_box .h_other span.active {
  color: #fff;
}
.nav_box:hover .h_other {
  color: rgba(0, 0, 0, 0.3);
}
.nav_box:hover .h_other span {
  color: rgba(0, 0, 0, 0.3);
}
.nav_box:hover .h_other span.active {
  color: rgba(0, 0, 0, 0.7);
}
.nav_box .h_other a:hover span {
  color: #106dba;
}
.nav_box .h_other a:hover span.active {
  color: #106dba;
}

/* 首页 End*/

/* banner Strat */
.banner {
  position: relative;
  height: 100vh;
}
.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.banner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-pagination {
  display: flex;
  flex-direction: column;
  width: 20% !important;
  position: absolute;
  top: 50%;
  left: 95% !important;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-bottom: 15px !important;
  background: #fff;
  opacity: 1;
}
.banner .swiper-pagination-bullet-active {
  background: #4487cc !important;
}

.banner .tit {
  position: absolute;
  top: 45%;
  left: 10%;
}
.banner .tit h2 {
  font-size: 4.7rem;
  color: #fff;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  letter-spacing: 6px;
  line-height: 1.45;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  z-index: 9;
}
.banner .tit h2 strong {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.5px;
}

/* banner End*/
.title h2 {
  font-size: 4.5rem;
  font-family: "title";
  font-weight: 600;
  color: #333;
  position: relative;
  z-index: 1;
  padding-left: 5%;
  padding-top: 10%;
}
.title h2::before {
  content: "";
  position: absolute;
  top: 68%;
  left: 0;
  width: 120px;
  height: 50px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#064b8a),
    to(#6ca7d0)
  );
  background: -o-linear-gradient(left, #71a3e0, #4487cc);
  background: linear-gradient(-90deg, #71a3e0, #4487cc);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  z-index: -1;
}
.more strong {
  font-size: 1.5rem;
  color: #fff;
}
.more {
  width: 210px;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  border-radius: 50px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#064b8a),
    to(#6ca7d0)
  );
  background: -o-linear-gradient(left, #71a3e0, #4487cc);
  background: linear-gradient(-90deg, #71a3e0, #4487cc);
}
.more img {
  width: 25px;
}
.more:hover {
  box-shadow: 5px 5px 10px #6ca7d0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
/* i_part1 Strat */

.i_part1 {
  width: 80%;
  margin: 0 auto;
}
.i_part1 .con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.i_part1 .txt {
  width: 40%;
}
.i_part1 .img {
  width: 46%;
}
.i_part1 .txt p {
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
  letter-spacing: 1px;
  text-align: justify;
}
.i_part1 .txt .more {
  margin-top: 25%;
  cursor: pointer;
}
/* i_part1 End*/

/* i_part2 Strat */

.i_part2 {
  background-color: #cecdcd;
}
.i_part2 .con {
  display: flex;
  padding-top: 3%;
}
.i_part2 .con .aa {
  width: 50%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.i_part2 .con .aa .name h2 {
  font-size: 3.8rem;
  color: #333;
  font-family: "title";
  text-align: center;
}
.i_part2 .con .aa:hover .name h2 {
  color: #106dba;
}
.i_part2 .con .aa .img {
  width: 65%;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.i_part2 .con .aa .img img {
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.i_part2 .con .aa:hover .img img {
  transform: scale(1.06);
}
.i_part2 .con .aa .txt {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.i_part2 .con .bb {
  border-left: 2px solid #f6f6f6;
  flex-direction: row-reverse;
  background-color: rgba(69, 135, 203, 0.8);
}
.i_part2 .con .bb .name h2 {
  color: #fff;
}
.i_part2 .con .aa .more1 {
  width: 130px;
  padding: 10px 22px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#4487cc),
    to(#71a3e0)
  );
  background: -o-linear-gradient(left, #71a3e0, #4487cc);
  background: linear-gradient(-90deg, #71a3e0, #4487cc);
  border-radius: 50px;
  margin-top: 50px;
}
.i_part2 .con .aa .more1 strong {
  font-size: 1.3rem;
  color: #fff;
}
.i_part2 .con .aa:hover .more1 {
  box-shadow: 5px 5px 10px #6ca7d0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.i_part2 .con .bb .more1 {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#fff),
    to(#fff)
  );
  background: -o-linear-gradient(left, #fff, #fff);
  background: linear-gradient(-90deg, #fff, #fff);
}
.i_part2 .con .bb .more1 strong {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#0e6bb9),
    to(#79aae2)
  );
  background: -o-linear-gradient(left, #0e6bb9, #79aae2);
  background: linear-gradient(-90deg, #0e6bb9, #79aae2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.i_part2 .con .bb:hover .more1 {
  box-shadow: 1px 1px 10px #fff;
}

/* i_part2 End*/

/* i_part3 Strat */

.i_part3 ul {
  border-top: 1px solid rgb(233, 233, 233);
  margin-top: 3%;
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.i_part3 ul .lists,
.i_part3 ul .box {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.i_part3 ul .lists {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.i_part3 ul .box {
  position: relative;
  display: flex;
}
.i_part3 ul li {
  width: 25%;
  position: relative;
  border-right: 1px solid rgb(233, 233, 233);
  border-bottom: 1px solid rgb(233, 233, 233);
}
.i_part3 ul li:last-of-type {
  border-right: none;
}
.i_part3 ul li a {
  width: 100%;
  position: relative;
  z-index: 2;
}
.i_part3 ul li .aa {
  width: 100%;
  transition: all 0.36s;
  opacity: 0;
}
.i_part3 ul li .bb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  padding: 20% 10% 0 10%;
}
.i_part3 ul li .bb .img {
  width: 90px;
  transition: all 0.5s;
}
.i_part3 ul li .bb .txt {
  margin-top: 45%;
  -webkit-user-select: text -khtml-user-select text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.i_part3 ul li .bb .txt .name h3 {
  font-size: 2.3rem;
  font-family: "title";
  color: #333;
  font-weight: 600;
  line-height: 2.5;
}
.i_part3 ul li .bb .txt .itro p {
  font-size: 1.5rem;
  color: #999;
  font-weight: lighter;
  letter-spacing: 1px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.i_part3 ul li a:hover .bb .txt .itro p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.i_part3 ul li .bb .more1 strong {
  font-size: 1.2rem;
  color: #f75a2a;
  margin-top: 55%;
  display: none;
}
.i_part3 ul li a:hover .aa {
  opacity: 1;
}
.i_part3 ul li a:hover .bb {
  top: -60%;
}
.i_part3 ul li a:hover .bb .img {
  opacity: 0;
}
.i_part3 ul li a:hover .bb .more1 strong {
  display: block;
}

/* i_part3 End*/

/* i_part4 Strat */

.i_part4 {
  background-color: #cecdcd;
  position: relative;
  z-index: 1;
}
.i_part4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}
.i_part4 > p {
  padding: 0 10%;
  margin-top: 20px;
  font-size: 1.3rem;
  color: #666;
  line-height: 2;
  text-align: left;
}

.i_part4 .con {
  position: relative;
  margin-top: 4%;
}
.i_part4 .swiper-container {
  width: 100%;
  position: relative;
}
.i_part4 .swiper-slide {
  overflow: hidden;
  display: block;
}
.i_part4 .swiper-container img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.i_part4 .swiper-container p{
  text-align: center;
  margin: 10px 0;
  font-size: 14px;
}
.i_part4 .swiper-pagination {
  width: 100%;
  margin-top: 3%;
}
.i_part4 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}

/* i_part4 End*/

/* i_part5 Strat */

.i_part5 {
  background-color: #fff;
}
.i_part5 .con {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
}
.i_part5 .con .image {
  position: relative;
  width: 45%;
  height: 56vh;
  overflow: hidden;
}

.i_part5 .con .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}

.i_part5 .con .image img.active {
  opacity: 1;
}

.i_part5 .con .text {
  width: 50%;
}

.i_part5 .con .text li {
  border-bottom: 1px solid #d3cfcf;
}
.i_part5 .con .text li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 50px 0;
}
.i_part5 .con .text li .cate {
  width: 10%;
  text-align: center;
  font-weight: 500;
}
.i_part5 .con .text li .cate em {
  font-size: 1.6rem;
  padding: 10px 18px;
}

.i_part5 .con .text li:hover .cate em {
  display: inline-block;
  background: #3264e1;
  color: #fff;
  border-radius: 20px;
}
.i_part5 .con .text li .tit {
  width: 72%;
  color: #333;
  padding-left: 40px;
}
.i_part5 .con .text li .tit h2 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.667;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.i_part5 .con .text li .date {
  width: 18%;
  color: #888;
  font-size: 1.3rem;
  text-align: center;
}

/* i_part5 End*/

/* 底部栏 Strat */

.footer {
  background-color: rgba(0, 0, 0, 1);
}
.footer .con .mes {
  display: flex;
  justify-content: space-between;
  padding: 6% 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .con .aa {
  display: flex;
  flex-direction: column;
}
.footer .con .aa .logo a {
  display: flex;
  align-items: center;
}
.footer .con .aa .logo .img {
  width: 51px;
}
.footer .con .aa .logo a span {
  font-size: 2.5rem;
  font-family: "title";
  font-weight: 800;
  color: #689bda;
  margin-left: 12px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#0e6bb9),
    to(#79aae2)
  );
  background: -o-linear-gradient(left, #0e6bb9, #79aae2);
  background: linear-gradient(-90deg, #0e6bb9, #79aae2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.footer .con .aa .way {
  margin-top: 50px;
}
.footer .con .aa .way ul {
  display: flex;
}
.footer .con .aa .way ul li {
  margin-right: 15px;
}
.footer .con .aa .way ul li a img {
  width: 42px;
  padding: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.36s;
}
.footer .con .aa .way ul li a:hover img {
  opacity: 1;
}
.footer .con .aa .ads {
  margin-top: 50px;
}
.footer .con .aa .ads a {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 2;
}
.footer .con .aa .ads p {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.7;
}
.footer .con .bb {
  width: 50%;
}
.footer .con .bb ul {
  display: flex;
  justify-content: space-between;
}
.footer .con .bb ul li {
  width: 22%;
}
.footer .con .bb ul li .cpg {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.footer .con .bb ul li .tit {
  font-size: 1.6rem;
  color: #fff;
  line-height: 2;
}
.footer .con .bb ul li .cpg a {
  font-size: 1.3rem;
  font-weight: lighter;
  color: #fff;
  opacity: 0.5;
  line-height: 2;
  margin-bottom: 15px;
  transition: all 0.36s;
}
.footer .con .bb ul li .cpg a:hover {
  opacity: 1;
}
.footer .con .cc .qr {
  width: 150px;
}
.footer .con .cc p {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
.footer .con .copyright {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.footer .con .copyright .left {
  display: flex;
}
.footer .con .copyright .left span {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.footer .con .copyright .left span img {
  width: 15px;
  vertical-align: middle;
}

/* 底部栏 End*/

/* 内页banner Strat */

.ny_banner {
  height: 60vh;
  display: flex;
  align-items: center;
}
.ny_banner .title {
  width: 100%;
  padding-left: 0;
  text-align: center;
}
.ny_banner .title h2 {
  padding-top: 0;
  color: #fff;
  font-family: "myfont";
  letter-spacing: 3px;
  font-size: 3rem;
  font-weight: 400;
}
.ny_banner .title h2::before {
  width: 0;
}
.nynav {
  display: flex;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.nynav span a {
  font-size: 1.2rem;
  color: #888;
  margin: 0 8px;
}
.nynav span.act a {
  color: #106dba;
}
.nynav .icon {
  width: 20px;
}

/* 内页banner End*/

/* 产品中心 Strat */

.pro {
  position: relative;
}
.pro .nynav {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 0;
}
.pro .con {
  padding: 5% 15% 6%;
}
.pro .con ul {
  display: flex;
  flex-wrap: wrap;
}
.pro .con ul li {
  width: 49%;
  height: 265px;
  margin-right: 2%;
  margin-bottom: 2%;
  overflow: hidden;
  position: relative;
}
.pro .con ul li:nth-of-type(2n) {
  margin-right: 0;
}
.pro .con ul li .imgbox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pro .con ul li .imgbox img {
  transition: all 0.5s;
}
.pro .con ul li .imgbox::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    #333 0%,
    rgba(0, 0, 0, 0.2) 25%,
    rgba(0, 0, 0, 0.1)
  );
  position: absolute;
  left: 0;
  top: 0;
}
.pro .con ul li .bg {
  transition: 0.3s;
  width: 48%;
  position: absolute;
  left: -48%;
  top: 0;
  height: 100%;
}
.pro .con ul li .bg img {
  height: 100%;
  opacity: 0.8;
}
.pro .con ul li .text {
  transition: 0.3s;
  position: absolute;
  left: 30px;
  top: 108%;
  transform: translateY(-50%);
}
.pro .con ul li .text h4 {
  transition: 0.3s;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.pro .con ul li .text h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 40px;
}
.pro .con ul li .text .more1 {
  font-size: 15px;
  transition: 0.4s;
  background-color: #fff;
  border: 1px solid #fff;
  color: #333;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: 126px;
  padding: 5px 0;
}
.pro .con ul li:hover .imgbox img {
  transform: scale(1.2);
}
.pro .con ul li:hover .bg {
  left: 0%;
}
.pro .con ul li:hover .text {
  top: 50%;
}
.pro .con ul li:hover .text h4 {
  margin-bottom: 3px;
}
.pro .con ul li .more1:hover {
  background-color: transparent;
  color: #fff;
}

/* 产品中心 End*/

/* 产品详情 Strat */

.pro_d {
  position: relative;
}
.cpg_nav ul {
  padding: 0 15%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
}
.cpg_nav ul li {
  position: relative;
  margin-right: 5%;
}

.cpg_nav ul li a {
  display: block;
  padding: 20px 0;
  font-size: 1.45rem;
  color: #3f4041;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}
.cpg_nav ul li.active a {
  color: #106dba;
}
.cpg_nav ul li a::after {
  content: "";
  width: 0;
  height: 4px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#0e6bb9),
    to(#79aae2)
  );
  background: -o-linear-gradient(left, #0e6bb9, #79aae2);
  background: linear-gradient(-90deg, #0e6bb9, #79aae2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.36s;
}
.cpg_nav ul li.active a::after {
  width: 100%;
}
.cpg_nav ul li:hover a {
  color: #106dba;
}
.cpg_nav ul li:hover a::after {
  width: 100%;
}

.pro_d .nynav {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 0;
}

.pro_d .con {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0;
}
.pro_d .p_part1 {
  display: flex;
  justify-content: space-between;
}
.pro_d .p_part1 .img {
  width: 46%;
}
.pro_d .p_part1 .msg {
  width: 46%;
}
.pro_d .p_part1 .msg .back {
  text-align: right;
  font-size: 1.2rem;
  color: #333;
  overflow: hidden;
  opacity: 0.5;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.pro_d .p_part1 .msg .back:hover {
  opacity: 1;
}
.pro_d .p_part1 .msg .tit h2 {
  font-size: 2.4rem;
  font-family: "title";
  color: #333;
  font-weight: bolder;
  letter-spacing: 0.3px;
  padding: 20px 0 20px 0;
  border-bottom: 3px solid #106dba;
}
.pro_d .msg .msg_con {
  padding-top: 20px;
}
.pro_d .msg .msg_con h2 {
  font-size: 1.5rem;
  color: #106dba;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
}
.pro_d .msg .msg_con p {
  font-size: 1.4rem;
  color: #777;
}
.pro_d .p_part2 {
  margin-top: 8%;
  border-top: 3px solid #106dba;
}
.pro_d .p_part2 .msg .nature {
  display: flex;
  flex-wrap: wrap;
}
.pro_d .p_part2 .msg .nature h2 {
  width: 100%;
}
.pro_d .p_part2 .msg .nature p {
  width: 50%;
  line-height: 2;
  padding-left: 25px;
  position: relative;
}
.pro_d .p_part2 .msg .nature p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/right.png") no-repeat left 15%;
  width: 60px;
  height: 60px;
  background-size: 35%;
}

.pro_d .table {
  background-color: #f8f7f7;
  padding: 5% 15%;
}
.pro_d .table h2 {
  font-size: 1.5rem;
  color: #106dba;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
  padding-bottom: 15px;
}
.pro_d table {
  width: 100%;
}
.pro_d table tr td {
  padding: 1% 3%;
  background: #ffff99;
  font-size: 1.4rem;
  color: #333;
  word-wrap: break-word;
}
.pro_d table tr:first-of-type td {
  font-size: 1.7rem;
  color: #333;
  background-color: #99ccff;
}
.pro_d .pic {
  width: 70%;
  margin: 0 auto;
  padding: 6% 0;
}
.pro_d .pic h2 {
  font-size: 1.5rem;
  color: #106dba;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
}
.pro_d .pic ul {
  display: flex;
  flex-wrap: wrap;
}
.pro_d .pic ul li {
  width: 23.5%;
  margin-top: 3%;
  margin-right: 1.5%;
}
.pro_d .pic ul li img{
    height: 190px;
    object-fit: cover;
}

/* 产品详情 End*/

/* 关于我们 Strat */
.abt {
  width: 100%;
  background-color: #fff;
  position: relative;
}
.abt .a_part1 {
  width: 100%;
  position: relative;
  padding: 5% 15%;
  background: #f6f6f6;
  z-index: 1;
}
.abt .a_part1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 246, 246, 0.85);
  z-index: -1;
}
.abt .a_part1 .tit h2 {
  font-size: 3.6rem;
  margin-bottom: 2%;
  color: #333;
  font-weight: bold;
  padding-top: 2%;
  position: relative;
}
.abt .a_part1 .tit h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8%;
  height: 1px;
  background: #ccc;
}
.abt .a_part1 .itro {
  display: flex;
  justify-content: space-between;
}
.abt .a_part1 .itro p {
  color: #333;
  font-size: 1.4rem;
  line-height: 2.2;
  text-indent: 2em;
  text-align: justify;
}
.abt .a_part1 .itro .aa {
  width: 47%;
}
.abt .a_part1 .itro .bb {
  width: 47%;
}
.abt .a_part2 {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0;
}
.abt .a_part2 ul {
  display: flex;
  justify-content: space-between;
}
.abt .a_part2 ul li {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.abt .a_part2 ul li .icon {
  width: 156px;
}
.abt .a_part2 ul li h2 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #106dba;
  letter-spacing: 1px;
  padding: 20px 0;
  overflow: hidden;
}
.abt .a_part2 ul li p {
  width: 70%;
  text-align: center;
  color: #333;
  line-height: 1.6;
  font-size: 1.6rem;
}
.abt .a_part3 {
  padding: 6% 15%;
  background-color: #f3f3f3;
  position: relative;
}
.abt .a_part3 .title h2 {
  padding-top: 0;
}
.abt .a_part3 .title h2::before {
  top: 0;
}
.title1 h2 {
  font-size: 3rem;
  color: #333;
  font-weight: bold;
  color: #333;
  position: relative;
  padding-left: 2%;
  padding-top: 18px;
  z-index: 99;
}
.title1 h2::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #fff;
  left: 10px;
  top: 18px;
  z-index: -1;
}
.title1 h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: linear-gradient(135deg, #2b74b6, #87b6e9);
  left: 0;
  z-index: -2;
  top: 8px;
}

.title1 span {
  line-height: 2;
  font-size: 1.2rem;
  color: #106dba;
  padding-left: 2%;
  text-transform: uppercase;
}
.abt .a_part3 .con {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 65vh;
  margin-top: 5%;
}
.abt .a_part3 .image {
  position: relative;
  width: 35%;
  /* background: #fff; */
  height: 100%;
}
.abt .a_part3 .image img {
  width: 100%;
  padding: 10%;
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.abt .a_part3 .text {
  width: 50%;
  cursor: context-menu;
}
.abt .a_part3 .text .tit h2 {
  font-size: 3.2rem;
  color: #333;
  font-weight: bolder;
}
.abt .a_part3 .text ul {
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap; */
  height: 95%;
  overflow: auto;
  scroll-behavior: smooth;
  padding-right: 3%;
}
.abt .a_part3 .text ul::-webkit-scrollbar {
  width: 8px;
}

.abt .a_part3 .text ul::-webkit-scrollbar-track {
  background-color: #fff;
}

.abt .a_part3 .text ul::-webkit-scrollbar-thumb {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#0e6bb9),
    to(#79aae2)
  );
  background: -o-linear-gradient(left, #0e6bb9, #79aae2);
  background: linear-gradient(-90deg, #0e6bb9, #79aae2);
  border-radius: 5px;
}

.abt .a_part3 .text ul li {
  width: 100%;
  cursor: pointer;
}
.abt .a_part3 .text ul li img {
  width: 100%;
  margin-bottom: 15px;
  display: none;
}
.abt .a_part3 .text ul li h2 {
  font-size: 1.4rem;
  line-height: 2;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 10px 20px;
  border-bottom: 1px dashed #ccc;
  position: relative;
}
.abt .a_part3 .text ul li h2::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #106dba;
}
.abt .a_part3 .text ul li:hover h2{
  color: #064b8a;
}

/* 关于我们 End*/

/* 服务支持 Strat */

.serve {
  position: relative;
  padding-bottom: 6%;
}
.serve .s_part1 {
  width: 70%;
  margin: 0 auto;
  padding-top: 5%;
}
.serve .s_part1 .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3%;
}
.serve .s_part1 .con .aa {
  width: 46%;
}
.serve .s_part1 .con .aa p{
  color: #333;
  font-size: 1.4rem;
  line-height: 2.2;
  text-indent: 2em;
  text-align: justify;
}
.serve .s_part1 .con .bb {
  width: 46%;
}
.serve .s_part2 {
  width: 70%;
  margin: 0 auto;
  padding-top: 5%;
}

.serve .s_part2 .con ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.serve .s_part2 .con li {
  padding: 3% 3%;
  background-color: #f5f5f5;
  width: 48%;
  position: relative;
  z-index: 1;
  margin-top: 5%;
}
.serve .s_part2 .con .num {
  font-size: 8rem;
  font-weight: bold;
  color: #eaeaea;
  position: absolute;
  top: 0;
  right: 20px;
  z-index: -1;
}
.serve .s_part2 .con .tit h3 {
  font-size: 2.2rem;
  color: #106dba;
  line-height: 2;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.serve .s_part2 .con .msg {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.serve .s_part2 .con .msg .item {
  width: 46%;
  margin-bottom: 20px;
}
.serve .s_part2 .con .msg h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #383838;
  line-height: 2;
  display: flex;
  align-items: center;
}
.serve .s_part2 .con .msg h2 img {
  width: 25px;
  margin-right: 5px;
}
.serve .s_part2 .con .msg p {
  font-size: 1.4rem;
  color: #333;
}
.serve .s_part2 .con .list2 .msg .item {
  width: 100%;
}
.serve .s_part3 {
  width: 70%;
  margin: 0 auto;
  padding-top: 5%;
}
.serve .s_part3 .con {
  padding-top: 5%;
}
.serve .s_part3 p {
  font-size: 1.8rem;
  color: #333;
  letter-spacing: 2px;
  line-height: 2;
  margin-left: 2%;
}
.serve .s_part3 p a {
  text-decoration: underline;
  font-size: 1.8rem;
  margin-left: 5px;
  color: #106dba;
}
.serve .s_part4 {
  width: 70%;
  margin: 0 auto;
  padding-top: 5%;
}
.serve .s_part4 .con {
  margin-top: 5%;
}
.serve .s_part4 .table {
  background-color: #fff;
}
.serve .s_part4 .table h2 {
  font-size: 1.5rem;
  color: #106dba;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
  padding-bottom: 15px;
}
.serve .s_part4 table {
  width: 100%;
}
.serve .s_part4 table tr td {
  padding: 1.5% 3%;
  background: #f9f9f9;
  font-size: 1.3rem;
  color: #333;
}
.serve .s_part4 table tr:first-of-type td {
  font-size: 1.6rem;
  color: #fff;
  background-color: #777;
}
.serve .s_part4 .t_name {
  font-size: 2rem;
  color: #106dba;
  text-align: center;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 30px;
}
.serve .s_part4 .cnt {
  font-size: 1.5rem;
  color: #106dba;
  margin-top: 20px;
  letter-spacing: 2px;
  line-height: 2.2;
}
.serve .s_part4 .cnt a {
  font-size: 1.5rem;
  color: #106dba;
  text-decoration: underline;
}

/* 服务支持 End*/

/* 新闻中心 Strat */

.news {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0 5% 0;
}
.news ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5%;
}
.news ul li {
  width: 30%;
  margin: 0 1.5% 5% 1.5%;
  position: relative;
  border-bottom: 1px solid #d1d1d1;
}
.news ul li .imgbox {
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.news ul li .imgbox img {
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.news ul li:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news ul li .msg {
  padding: 20px 0;
}
.news ul li .msg .time p {
  font-size: 1.35rem;
  color: #777;
  transition: all 0.5s;
  line-height: 1.75;
}
.news ul li .msg .tit {
  font-size: 1.65rem;
  color: #333;
  line-height: 1.75;
  letter-spacing: 1px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 70px;
}
.news ul li .msg .l_more {
  font-size: 1.35rem;
  color: #777;
  line-height: 1.75;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  bottom: 20px;
  opacity: 0;
}

.news ul li a::after {
  content: " ";
  width: 0;
  height: 2px;
  background-color: #106dba;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.news ul li:hover .msg .time p {
  color: #106dba;
}
.news ul li:hover .l_more {
  color: #106dba;
  opacity: 1;
}
.news ul li:hover a::after {
  width: 100%;
}

/* 新闻中心 End*/

/* 新闻详情 Strat */

.n_msg {
  width: 100%;
}
.n_msg .tit {
  width: 100%;
  padding: 5% 15%;
  padding-top: 1%;
  background-color: #f1f2f3;
}
.n_msg .tit h3 {
  font-size: 2.8rem;
  color: #333;
  font-weight: bold;
  line-height: 2;
  margin-top: 20px;
}
.n_msg .tit p {
  font-size: 1.25rem;
  line-height: 2;
  color: #444;
  opacity: 0.75;
}
.n_msg .article {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.n_msg .article .aa {
  width: 70%;
  border-right: 1px solid #d1d1d1;
  padding: 5% 5% 5% 0;
}
.n_msg .article .bb {
  width: 30%;
  padding: 5% 0 5% 5%;
}
.n_msg .article .aa p {
  color: #666;
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 2px;
  text-indent: 2em;
  text-align: justify;
  margin-bottom: 50px;
}
.n_msg .article .aa p img {
  width: 70%;
  margin: 0 auto;
}
.n_msg .article .bb .name {
  font-size: 2.25rem;
  color: #333;
  opacity: 0.95;
  font-weight: bolder;
  margin-bottom: 30px;
}
.n_msg .article .bb ul {
  display: flex;
  flex-direction: column;
}
.n_msg .article .bb ul li a {
  display: flex;
  justify-content: space-between;
  padding: 6% 0;
  border-top: 1px solid #d1d1dd;
}
.n_msg .article .bb ul li:last-of-type a {
  border-bottom: 1px solid #d1d1dd;
}
.n_msg .article .bb ul li a .imgbox {
  width: 35%;
  overflow: hidden;
  transition: all 0.3s;
}
.n_msg .article .bb ul li a .imgbox img {
  transition: all 0.6s;
  overflow: hidden;
}
.n_msg .article .bb ul li a .txt {
  width: 60%;
}
.n_msg .article .bb ul li a .txt h3 {
  font-size: 1.25rem;
  color: #444;
  line-height: 1.5;
  transition: all 0.3s;
}
.n_msg .article .bb ul li a .txt p {
  font-size: 1rem;
  color: #aaa;
  line-height: 2;
  transition: all 0.3s;
}
.n_msg .article .bb ul li:hover .txt h3 {
  color: #106dba;
}
.n_msg .article .bb ul li:hover .txt p {
  color: #106dba;
}
.n_msg .article .bb ul li:hover .imgbox img {
  transform: scale(1.1);
}

/* 新闻详情 End*/

/* 联系我们 Strat */

.contact {
  width: 100%;
  position: relative;
  padding-top: 5%;
}
.contact .way {
  width: 70%;
  margin: 0 auto;
}
.contact .way .msg {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.contact .way .msg .aa {
  width: 38%;
  position: absolute;
  top: 12%;
  right: 5%;
  z-index: 99;
  padding: 3% 3%;
  box-shadow: 0 15px 20px #4487cc;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#0e6bb9),
    to(#79aae2)
  );
  background: -o-linear-gradient(left, #0e6bb9, #79aae2);
  background: linear-gradient(-90deg, #0e6bb9, #79aae2);
}
.contact .way .msg .aa .ads h2 {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}

.contact .way .msg .aa p,
.contact .way .msg .aa p a {
  font-size: 1.45rem;
  color: #fff;
  line-height: 2;
}
.contact .way .msg .bb {
  width: 100%;
  position: relative;
  z-index: 1;
}
.contact .way .msg .bb #mapDiv {
  height: 500px;
}
.contact .leave {
  width: 100%;
  margin-top: 5%;
  padding: 5% 15% 8%;
  background-color: #f6f6f6;
}
.contact .leave .tit h2 {
  font-size: 2.35rem;
  color: #333;
  font-weight: bold;
  line-height: 2.2;
}
.contact .leave .tit p {
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 2px;
  color: #666;
}
.contact .leave .tit p a {
  font-size: 1.6rem;
  color: #106dba;
}
.contact .leave .form {
  background-color: #fff;
  margin-top: 5%;
  padding: 3% 4%;
}
.contact .leave .form .msg {
  display: flex;
  justify-content: space-between;
}
.contact .leave .form input {
  width: 30%;
  background-color: #f6f6f6;
  border: none;
  box-shadow: none;
  margin: 1% 0;
  line-height: 60px;
  padding: 0 3%;
  outline: none;
  appearance: none;
  color: #333;
  font-size: 16px;
}
.contact .leave .form .content {
  width: 100%;
  border: none;
  margin: 1% 0;
  box-shadow: none;
  background: #f6f6f6;
  line-height: 30px;
  padding: 3%;
  outline: none;
  appearance: none;
  color: #333;
  font-size: 16px;
  height: 200px;
}
.contact .leave .form button {
  margin: 3% auto 0;
  color: #fff;
  padding: 20px 80px;
  display: block;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  border: 1px solid #064b8a;
  border-radius: 50px;
  transition: all 0.35s;
}
.contact .leave .form button span {
  color: #064b8a;
  font-size: 1.5rem;
}
.contact .leave .form button:hover {
  background-color: #064b8a;
}
.contact .leave .form button:hover span {
  color: #fff;
}
/* 联系我们 End*/

/*产品图片放大*/
 .pro_d .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            cursor: pointer;
        }

        .pro_d .modal {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .pro_d .modal-content {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .pro_d .close {
            position: absolute;
            top: 15px;
            right: 15px;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }

/* 英文 Strat */
html[lang="en"] .banner .tit h2 {
  width: 70%;
  margin: 0 auto;
  font-size: 4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
html[lang="en"] .banner .tit{
  width: 100%;
  left: 0;
}
html[lang="en"] .title h2{
  text-transform: uppercase;
}
html[lang="en"] .i_part1 .txt{
  margin-top: 6%;
}
html[lang="en"] .i_part1 .txt p{
    line-height: 1.75;
    letter-spacing: 1px;
}
html[lang="en"] .more{
  width: 240px;
}
html[lang="en"] .i_part2 .con .aa .more1{
  width: 110px;
  margin: 50px auto 0;
  text-align: center;
}
html[lang="en"] .i_part2 .con .aa .more1 strong{
  font-size: 1.2rem;
}
html[lang="en"] .i_part2 .con .aa .name h2{
  font-size: 2.8rem;
}
html[lang="en"] .i_part3 ul li a:hover .bb .txt .itro p{
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
html[lang="en"] .abt .a_part1 .itro p{
  text-indent: 0;
}
html[lang="en"] .abt .a_part2 ul li p {
  width: 95%;
}
html[lang="en"] .pro_d table tr td{
  padding: 1%;
}
html[lang="en"] .pro_d .pic h2{
  text-transform: capitalize;
}
html[lang="en"] .contact .leave .tit p {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #666;
}
html[lang="en"] .way .msg .aa {
  width: 40%;
  position: relative;
  top: 0;
  right: 0;
  padding: 3% 3%;
  background: -webkit-gradient( linear, right top, left top, from(#0e6bb9), to(#79aae2) );
  background: -o-linear-gradient(left, #0e6bb9, #79aae2);
  background: linear-gradient(-90deg, #0e6bb9, #79aae2);
  box-shadow: none;
}
html[lang="en"] .contact .way .msg .bb {
  width: 60%;
  position: relative;
  z-index: 1;
}
html[lang="en"] .contact .way .msg .bb #mapDiv {
  height: 100%;
}
html[lang="en"] .serve .s_part2 .con .msg .item {
  width: 100%;
}
html[lang="en"] .serve .s_part2 .con .msg h2{
  margin-bottom: 10px;
}
html[lang="en"] .serve .s_part2 .con .msg p{
  text-align: justify;
}
html[lang="en"] .serve .s_part3 p{
  letter-spacing: 0;
}
html[lang="en"] .serve .s_part4 .cnt {
  font-size: 1.5rem;
  color: #666;
  margin-top: 20px;
  letter-spacing: 1px;
  line-height: 2.2;
}
/* 英文 End*/