@charset "utf-8";

.header {
  height: 85px;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  justify-content: space-between;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  transition: all 0.4s;
  padding: 0 5%;
}
.header * {
  transition: all 0.4s;
}
.header_wrap {
  height: 85px;
}

.header .logo {
  flex: 1;
}
.header .logo img {
  max-height: 46px;
}
.header .logo .img2 {
  display: none;
}
.nav .nav_li {
  margin: 0 28px;
  position: relative;
}
.nav .nav_li .nav1 a {
  color: #fff;
  display: block;
  line-height: 85px;
  position: relative;
  text-transform: capitalize;
  transition: all 0s;
  font-size: 18px;
  white-space: nowrap;
}
.nav .nav_li .nav1 a:after {
  content: '';
  width: 0;
  height: 3px;
  background: var(--subtheme-color);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
.nav .nav_li .nav1 a:hover,
.nav .nav_li.cur .nav1 a {
  color: #fff;
}
.nav .nav_li .nav2 {
  list-style-type: none;
  position: absolute;
  top: 100px;
  line-height: 40px;
  width: 160px;
  left: 50%;
  margin-left: -80px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  color: #3a3a3a;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.2s;
}
.nav .nav_li:hover .nav2 {
  top: 85px;
  opacity: 1;
  visibility: visible;
}
.nav .nav_li .nav2 h4 {
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  margin-bottom: 10px;
  text-transform: capitalize;
  text-align: center;
}
.nav .nav_li .nav2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid #e1e1e1;
}
.nav .nav_li .nav2 a:last-child {
  border-bottom: none;
}
.nav .nav_li .nav2 a i {
  font-size: 12px;
}
.nav .nav_li .nav2 a:hover {
  color: #fff;
  background: var(--subtheme-color);
  border-color: var(--subtheme-color);
}
.nav .nav_li:hover .nav1 a:after,
.nav .nav_li.cur .nav1 a:after {
  width: 100%;
}
.nav_info {
  height: 48px;
  align-items: center;
  justify-content: flex-end;
}
.nav_info .tel a {
  color: #666;
  font-family: 'MuliLatin';
  font-size: 14px;
  display: flex;
  margin-right: 35px;
  align-items: center;
  cursor: pointer;
}
.nav_info .tel a i {
  font-size: 12px;
  margin-right: 5px;
  background: #f2f2f2;
  color: #4e70ce;
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_info .search {
  margin-left: 5%;
}
.nav_info .search a {
  display: inline-block;
  background: #38a9dc;
  color: #fff;
  padding: 6px 20px;
  border-radius: 40px;
  min-width: 100px;
  border: 2px #38a9dc solid;
  text-transform: uppercase;
}
.nav_info .search a:hover {
  background: transparent;
  border: 2px #38a9dc solid;
  color: #38a9dc;
}
.nav_info .search form {
  position: relative;
}
.nav_info .search form input {
  border: none;
  outline: none;
  width: 180px;
  height: 35px;
  background: #fff;
  border-radius: 100px;
  padding: 0 40px 0 10px;
}
.nav_info .search form button {
  outline: none;
  border: none;
  position: absolute;
  right: 8px;
  top: 4px;
  background: transparent;
  cursor: pointer;
}
.nav_info .search form button i {
  font-size: 16px;
  color: #c5c5c5;
}

.nav_info .lang_box .lang img {
  margin-right: 6px;
  width: 15px;
  height: 15px;
}
.nav_info .lang_box .lang .img2 {
  display: none;
}
.nav_info .lang_box .lang i {
  font-size: 10px;
  margin-left: 3px;
  transform: rotate(180deg);
  transition: all 0.3s;
}
.nav_info .lang_box {
  position: relative;
  z-index: 100;
  margin: 0 4%;
}
.nav_info .lang_box .lang {
  display: flex;
  align-items: center;
  height: 28px;
  cursor: pointer;
  color: #fff;
  transition: all 0s;
  font-size: 14px;
}
.nav_info .lang_box .dlang {
  position: absolute;
  left: 0;
  top: 28px;
  width: 145px;
  background: #fff;
  padding: 5px 15px 10px;
  display: none;
  border-radius: 3px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
.nav_info .lang_box .dlang a {
  display: flex;
  align-items: center;
  color: #666;
}
.nav_info .lang_box .dlang a:hover {
  color: var(--theme-color);
}
.nav_info .lang_box .dlang a img {
  height: 16px;
  margin-right: 6px;
}
.nav_info .lang_box:hover .dlang {
  display: block;
}
.nav_info .lang_box:hover .lang i {
  transform: rotate(0deg);
}
.header.header_on {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}
.header.header_on .nav .nav_li .nav1 a {
  color: #333;
}
.header.header_on .nav_info .search form input {
  background: #eee;
}
.header.header_on .nav .nav_li .nav1 a:hover,
.header.header_on .nav .nav_li.cur .nav1 a {
  color: var(--subtheme-color);
}
.header.header_on .nav_info .lang_box .lang .img1 {
  display: none;
}
.header.header_on .nav_info .lang_box .lang .img2 {
  display: block;
}
.header.header_on .nav_info .lang_box .lang {
  color: #333;
}
.header.header_on .logo .img1 {
  display: none;
}
.header.header_on .logo .img2 {
  display: block;
}
.banner {
  position: relative;
  overflow: hidden;
}
.banner .item_img img {
  width: 100%;
}
.banner .item .item_con {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 5vh;
}
.banner .item .item_con .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner .item .item_con .info {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.banner .item .item_con h4 {
  font-size: 45px;
  font-weight: bold;
  line-height: 1.1;
}
.banner .item .item_con h4 span {
  color: var(--theme-color);
}
.banner .item .item_con .desc {
  margin: 36px 0 40px;
}
.banner .item .item_con .desc p {
  font-size: 18px;
  padding-left: 20px;
  position: relative;
}
.banner .item .item_con .desc p:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  background: #fff;
}
.banner .pages {
  position: absolute;
  width: 100%;
  bottom: 50px;
  display: flex;
  z-index: 30;
  justify-content: space-between;
}
.banner .swiper-pagination {
  text-align: left;
  bottom: 0;
  left: 5%;
  width: auto;
}
.banner .swiper-num {
  right: 5%;
  position: absolute;
  bottom: 0;
  color: #fff;
}
.banner .swiper-num .active {
  font-size: 30px;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  width: 55px;
  height: 3px;
  background: #fff;
  margin: 0 8px;
  opacity: 1;
  position: relative;
  opacity: 0.5;
  border-radius: 0;
}
.banner
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.banner .swiper-button-prev {
  left: 3%;
}
.banner .swiper-button-next {
  right: 3%;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
}
.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
  display: flex;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  background: var(--theme-color);
}
.banner .swiper-button-prev:after,
.banner .swiper-button-next:after {
  color: #fff;
  font-size: 24px;
}
.banner .banner-towrap {
  position: absolute;
  bottom: 42px;
  left: 50%;
  z-index: 2;
  margin-left: -24px;
  display: flex;
  align-items: center;
}
.banner .banner-towrap p {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
}
.banner .banner-to {
  transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  display: block;
  border: 1px solid #fff;
  background-color: transparent;
  z-index: 9;
  margin: auto;
  color: #fff;
  position: relative;
  height: 30px;
  width: 20px;
  text-align: center;
  border-radius: 10px;
  margin: 0 5px;
}
.banner .banner-towrap span {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
}
.banner .banner-to i {
  animation: downico 1.5s ease-out infinite;
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  margin-left: -1px;
}
@keyframes downico {
  0% {
    top: 10%;
  }
  35% {
    top: 40%;
  }
  65% {
    top: 50%;
  }
  100% {
    top: 10%;
  }
}
@-webkit-keyframes downico {
  0% {
    top: 10%;
  }
  35% {
    top: 40%;
  }
  65% {
    top: 50%;
  }
  100% {
    top: 10%;
  }
}

/* tit_box1 */

.tit_box1 {
  padding: 40px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.tit_box1 .tit h4 {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  text-transform: capitalize;
  z-index: 2;
  position: relative;
}
.tit_box1 .tit span {
  display: block;
  font-size: 60px;
  line-height: normal;
  color: #eaeaea;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.tit_box1 .tit p {
  margin-top: 10px;
  font-size: 20px;
  color: #666;
}
.tit_box1_fff .tit h4,
.tit_box1_fff .tit p {
  color: #fff;
}

.tit_box2 {
  align-items: center;
}
.tit_box2 .tit {
  flex: 1;
}
.tit_box2 .tit h4 {
  color: #2d2d2d;
  font-family: 'MuliBlackMOD';
  font-size: 60px;
  text-transform: uppercase;
  line-height: 1.3;
}
.tit_box2_fff .tit h4 {
  color: #fff;
}
.tit_box2-center {
  text-align: center;
}

.bg1 {
  padding: 20px 0 0;
  background: #f6f6f6;
  overflow: hidden;
}
.bg2 {
  background: var(--theme-color);
}

/* product */

.product_wrap {
  padding: 100px 0;
  overflow: hidden;
  background: url('../images/bg1.jpg') no-repeat right center;
  background-size: cover;
}
.product_wrap .tit_box1 {
  justify-content: center;
  padding-bottom: 45px;
}
.product_wrap .tit_box1 h4 {
  color: #fff;
}
.product_wrap .tit_box1 span {
  margin: 0 auto;
  right: 0;
  color: #fff;
  text-align: center;
  opacity: 0.4;
}
.product-nav {
  position: relative;
  overflow: hidden;
}
.product-nav-con {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 99, 207, 0.95);
}
.product-nav-con .title {
  display: block;
  font-size: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.product-nav-con .title i {
  font-size: 30px;
  color: #fff;
}
.product-nav-con .text {
  display: none;
  border-top: 1px rgba(255, 255, 255, 0.2) solid;
  padding: 10px 20px;
  transition: all 0.4s ease-in-out;
}
.product-nav-con .text a {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  margin-right: 10px;
}
.product-nav:hover img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.product-nav:hover .text {
  display: block;
  transition: all 0.4s ease-in-out;
}
.productSwiper {
  margin-top: 40px;
}
.productSwiper .swiper-slide a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.productSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productSwiper .swiper-slide h4 {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
}
.productSwiper .swiper-slide a:hover img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.productSwiper .swiper-slide a:hover h4 {
  background: rgba(0, 99, 207, 0.95);
  transition: all 0.4s ease-in-out;
}
.more-btn-white {
  text-align: center;
  margin: 60px auto 0;
}
.more-btn-white .btn_a {
  background: transparent;
  font-size: 15px;
  margin-top: 60px;
  border-radius: 40px;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  color: #fff;
  border: 2px #fff solid;
}
.more-btn-white .btn_a i {
  width: 30px;
  height: 30px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  margin-left: 5px;
}
.more-btn-white .btn_a span {
  display: inline-block;
}
.more-btn-white .btn_a:hover {
  background: #38a9dc;
  border-color: #38a9dc;
  color: #fff;
}
.more-btn-white .btn_a:hover i {
  color: #fff;
}
.more-btn-thm {
  text-align: center;
  margin: 60px auto 0;
}
.more-btn-thm .btn_a {
  background: #38a9dc;
  font-size: 15px;
  margin-top: 60px;
  border-radius: 40px;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  color: #fff;
  border: 2px #38a9dc solid;
}
.more-btn-thm .btn_a i {
  width: 30px;
  height: 30px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  margin-left: 5px;
}
.more-btn-thm .btn_a span {
  display: inline-block;
}
.more-btn-thm .btn_a:hover {
  background: transparent;
  border-color: #38a9dc;
  color: #38a9dc;
}
.more-btn-thm .btn_a:hover i {
  color: #38a9dc;
}
.product_wrap a {
  margin: 0 auto;
}

/* about */

.about_wrap {
  background: linear-gradient(to right, #fff 70%, #dcdcdc 30%);
  background-size: cover;
  padding: 100px 0;
  overflow: hidden;
}
.about_wrap .wrapper {
  position: relative;
}
.about_wrap .about-box {
  display: flex;
  justify-content: space-between;
}
.about_con {
  width: 38%;
  color: #333;
}
.about_img {
  width: 56%;
}
.about_wrap .watch_btn {
  position: absolute;
  top: 20%;
  left: 60%;
  transform: translateX(-50%);
  cursor: pointer;
}
.about_wrap .watch_btn img {
  width: 50px;
}
.about_con .subtitle {
  font-size: 22px;
  line-height: 1.5;
  padding-bottom: 10px;
  color: #143170;
  font-weight: bold;
}
.about_con .desc {
  font-size: 15px;
  color: #444444;
}
.about_con .desc p {
  margin-top: 10px;
  color: #444444;
}
.about_con .btn_a {
  background: #38a9dc;
  font-size: 15px;
  margin-top: 60px;
  border-radius: 40px;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  color: #fff;
  border: 2px transparent solid;
}
.about_con .btn_a i {
  width: 30px;
  height: 30px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  margin-left: 5px;
}
.about_con .btn_a span {
  display: inline-block;
}
.about_con .btn_a:hover {
  background: transparent;
  border-color: #38a9dc;
  color: #38a9dc;
}
.about_con .btn_a:hover i {
  color: #38a9dc;
}
.about_list {
  width: 72%;
  padding-top: 90px;
  margin: 0 -30px;
}
.about_list .item {
  position: relative;
  flex: 1;
  color: #333;
  padding: 0 0px;
  text-align: center;
}
.about_list .item .nums {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
.about_list .item .nums span {
  font-size: 72px;
  line-height: 1;
  vertical-align: top;
  margin-right: 6px;
}
.about_list .item .nums em {
  font-style: normal;
  vertical-align: bottom;
}
.about_list .item p {
  font-size: 20px;
}

/* industry_wrap */
.industry_wrap {
  width: 100%;
  padding: 90px 0 0;
  overflow: hidden;
}
.industry_wrap .tit_box1 .more-btn-thm {
  margin: 0;
}
.industry_wrap .tit_box1 .more-btn-thm a {
  margin-top: 0;
}

/* choose_wrap */

.choose_wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 850px;
}
.choose_con {
  width: 50%;
  margin-left: 50%;
  padding: 20px 8% 20px 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.choose_con .tit_box1 {
  padding-top: 0;
}
.choose_con .list {
  padding-top: 20px;
}
.choose_con .list .item {
  background: #fdfefe;
  margin-bottom: 20px;
  padding: 20px 40px;
  border-radius: 10px;
  align-items: center;
  transition: all 0.4s;
}
.choose_con .list .item .img img {
  width: 65px;
  height: 65px;
}
.choose_con .list .item .con {
  padding-left: 45px;
  flex: 1;
  min-width: 0;
  font-size: 16px;
}
.choose_con .list .item:hover {
  background: var(--theme-color);
}
.choose_con .list .item:hover .img img {
  filter: brightness(1000%) grayscale(1000%);
}
.choose_con .list .item:hover .con {
  color: #fff;
}

.choose_con .tel_btn {
  position: relative;
  display: flex;
  margin-top: 60px;
  align-items: center;
}
.choose_con .tel_btn .tel {
  font-size: 22px;
  font-weight: bold;
  margin-left: 20px;
  font-style: italic;
}
.choose_con .tel_btn .more {
  margin-left: 80px;
}
.choose_con .tel_btn .button_wrap .button {
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.choose_con .tel_btn .button_wrap .button:hover {
  color: #fff;
  border-color: var(--subtheme-color);
}

/* application_fields */

.application_fields {
  position: relative;
  overflow: hidden;
}
.application_fields_list {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.application_fields_tit {
  position: absolute;
  top: 40px;
  z-index: 5;
}
.application_fields_list .item {
  width: 25%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s;
  position: relative;
}
.application_fields_list .item .item_tit {
  font-size: 22px;
  padding: 0 10% 120px;
}
.application_fields_list .item .item_con {
  bottom: -100%;
  transition: all 0.4s;
  position: absolute;
  width: 92%;
  padding: 0 10%;
}
.application_fields_list .item .img {
  margin-bottom: 40px;
}
.application_fields_list .item .tit {
  font-size: 22px;
}
.application_fields_list .item .desc {
  font-size: 16px;
  margin: 15px 0 30px;
}
.application_fields_list .item .btn {
  display: inline-block;
  font-size: 16px;
}
.application_fields_list .item .btn i {
  font-size: 12px;
  margin-left: 6px;
}
.application_fields_list .item .btn:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.4s;
}
.application_fields_list .item:hover,
.application_fields_list .item.cur {
  background: rgba(0, 69, 142, 0.6);
}
.application_fields_list .item:hover .item_tit,
.application_fields_list .item.cur .item_tit {
  display: none;
}
.application_fields_list .item:hover .item_con,
.application_fields_list .item.cur .item_con {
  bottom: 120px;
}
.application_fields_list .item .btn:hover:after,
.application_fields_list .item.cur .btn:after {
  width: 100px;
}

.application_fields_img .img {
  display: none;
}
.application_fields_img .img:first-child {
  display: block;
}

/* news */

.news_wrap {
  background: url(../images/bg-new.png) top center no-repeat;
  background-size: cover;
  padding: 100px 0 150px;
  overflow: hidden;
}
.news_wrap .more-btn-thm {
  margin: 0;
}
.news_wrap .more-btn-thm a {
  margin-top: 0;
}
.news_list_wrap {
  background: #fff;
  display: grid;
  grid-template-columns: 33.33333% 66.666666%;
  gap: 20px;
  overflow: hidden;
}
.news_list_wrap_name {
  display: flex;
  align-items: center;
  font-size: 29px;
  color: #333;
  padding: 15px 0;
}
.news_list_wrap_name::before {
  content: '';
  display: block;
  width: 4px;
  height: 30px;
  background: #144aa7;
  border-radius: 4px;
  margin-right: 10px;
}
.news_list_wrap .a_item {
  display: block;
}
.news_list_wrap .blog_1 {
  background: #fff;
}
.news_list_wrap .a_item1 .img {
  overflow: hidden;
}
.news_list_wrap .a_item1 .con {
  background: #fff;
  padding: 25px 35px 35px;
}
.news_list_wrap .a_item1 .con .time {
  justify-content: space-between;
  display: flex;
  color: #666;
}
.news_list_wrap .a_item1 .con .time .span1 {
  font-size: 15px;
  color: var(--theme-color);
}
.news_list_wrap .a_item1 .con h4 {
  font-size: 22px;
  line-height: 1.2;
  margin: 13px 0;
}
.news_list_wrap .a_item1 .con p {
  color: #777;
  font-size: 16px;
}
.news_list_wrap .a_item1 .con .btn {
  margin-top: 15px;
  font-size: 16px;
  color: var(--theme-color);
}
.news_list_wrap .a_item1 .con .btn:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--theme-color);
  transition: all 0.3s;
}
.news_list_wrap .a_item1 .con .btn i {
  font-size: 12px;
}
.news_list_wrap .a_item1:hover .con h4 {
  color: var(--theme-color);
}
.news_list_wrap .a_item1:hover .con .btn:after {
  width: 90px;
}
.news_list_wrap .a_item2 {
  background: var(--theme-color);
  border-radius: 20px;
  color: #fff;
  padding: 30px;
  margin: 0 30px;
}
.news_list_wrap .a_item2 .img {
  border-radius: 20px;
}
.news_list_wrap .a_item2 .con {
  padding: 15px 0 30px;
  background: transparent;
  color: #fff;
}
.news_list_wrap .a_item2 .con .time,
.news_list_wrap .a_item2 .con .time .span1 {
  color: #fff;
}
.news_list_wrap .a_item2 .con h4 {
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 30px;
}
.news_list_wrap .a_item2 .con h4 span {
  font-size: 22px;
  line-height: 1.2;
}
.news_list_wrap .a_item2 .con .btn {
  color: #fff;
}
.news_list_wrap .a_item2 .con .btn:after {
  background: #fff;
}
.news_list_wrap .a_item2 .con h4:before,
.news_list_wrap .a_item2 .con h4:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
  bottom: 0;
}
.news_list_wrap .a_item2 .img {
}
.news_list_wrap .a_item2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.news_list_wrap .a_item2 .con h4:after {
  width: 80px;
  background: #fff;
}
.news_list_wrap .a_item2 .con h4:after {
}
.news_list_wrap .a_item2 .con p {
  color: #fff;
}
.news_list_wrap .a_item2:hover .con h4 {
  color: #fff;
}
.news_list_wrap .news_ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-gap: 15px; */
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  border-left: 1px #eeeeee solid;
}
.news_list_wrap .news_ul .item {
  display: block;
  grid-gap: 15px;
  margin-bottom: 26px;
  align-items: center;
  overflow: hidden;
}
.news_list_wrap .news_ul a {
  display: block;
  border-bottom: 1px #eeeeee solid;
}
.news_list_wrap .news_ul a:nth-of-type(2),
.news_list_wrap .news_ul a:nth-of-type(4) {
  border-left: 1px #eeeeee solid;
}
.news_list_wrap .news_ul a:nth-of-type(3),
.news_list_wrap .news_ul a:nth-of-type(4) {
  border-bottom: 0;
}
.news_list_wrap .news_ul a .con_type {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  background: #144aa7;
  padding: 5px 15px;
}
.news_list_wrap .news_ul .item:last-child {
  margin-bottom: 0;
}
.news_list_wrap .news_ul .item .img {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  float: left;
}
.news_list_wrap .news_ul .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_list_wrap .news_ul .item .con {
  width: 100%;
}
.news_list_wrap .news_ul .item .con span {
  color: #999;
}
.news_list_wrap .news_ul .item .con h4 {
  font-size: 22px;
  margin: 15px 0 15px;
  line-height: 1.4;
}
.news_list_wrap .news_ul .item .con h4,
.news_list_wrap .news_ul .item .con p,
.news_list_wrap .news_ul .item .con div,
.news_list_wrap .news_ul .item .con span {
  padding-left: 15px;
  padding-right: 15px;
}
.news_list_wrap .news_ul .item .con p {
  font-size: 16px;
}
.news_list_wrap .news_ul .item .con .btn {
  color: #888;
  margin-top: 20px;
}
.news_list_wrap .news_ul .item .con .btn:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #999;
  transition: all 0.3s;
}
.news_list_wrap .news_ul .item .con .btn i {
  font-size: 12px;
}
.news_list_wrap .news_ul .item:hover .con h4 {
  color: var(--theme-color);
}
.news_list_wrap .news_ul .item:hover .con .btn:after {
  width: 80px;
}

/* public_message */

.public_message_con {
  border-radius: 30px;
  background: #fff;
  margin-top: 70px;
  padding: 70px;
}
.public_message_con .cover {
  width: 40%;
  height: 500px;
  background: #f6f6f6;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.public_message_con .cover img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.public_message_con .page_contact2_form {
  background: transparent;
}
.public_message_con .page_contact2_form .input_box .input input,
.public_message_con .page_contact2_form textarea {
  border: 1px solid #ddd;
}

.page_product_related {
  padding: 70px 0 0;
}
.page_product_related_tit {
  font-size: 40px;
  color: #333;
  text-align: center;
}

/* footer_message */

.footer_message {
  background: url('../images/bg3.jpg') no-repeat center;
  background-size: cover;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.footer_message .con {
  color: #fff;
}
.footer_message .con p {
  font-size: 18px;
}
.footer_message .con h4 {
  font-size: 48px;
  font-family: 'MuliBlackMOD';
  line-height: 1.4;
}
.footer_message .con .btn {
  height: 54px;
  line-height: 54px;
  background: #0086cf;
  padding: 0 40px;
  display: inline-block;
  margin-top: 40px;
  cursor: pointer;
}
.footer_message .con .btn:hover {
  opacity: 0.9;
}
.footer_message .con .btn i {
  margin-right: 6px;
}
.footer_message .form {
  margin-top: 20px;
}
.footer_message .form input {
  width: 320px;
  border-radius: 200px;
  background: #fff;
  height: 54px;
  outline: none;
  border: none;
  margin: 0 8px;
  font-size: 16px;
  padding: 0 20px;
}
.footer_message .form input.content {
  flex: 1;
}
.footer_message .form button {
  border: none;
  outline: none;
  width: 240px;
  height: 54px;
  border-radius: 100px;
  background: var(--theme-color);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.footer_message .form button:hover {
  background: var(--theme-color);
}
.footer_message .form button i {
  font-size: 20px;
  margin-right: 10px;
  font-family: 'MontserratLight';
}
.footer_message .share {
  height: 48px;
  padding: 0 30px;
  background: rgba(176, 181, 203, 0.3);
  display: inline-block;
  margin-top: 48px;
  border-radius: 100px;
}

.footer_message .share_wrap {
  align-items: center;
  height: 100%;
}
.footer_message .share_wrap .tit {
  font-size: 16px;
  color: #fff;
  margin-right: 15px;
}
.footer_message .b_top {
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 42px;
  text-align: center;
  background: var(--theme-color);
  color: #0064b3;
  border: 4px solid #fff;
  border-radius: 100%;
  margin-left: -25px;
  z-index: 99;
}
.footer_message .b_top:hover {
  background: var(--theme-color);
}
.footer_message .b_top span {
  font-size: 14px;
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: block;
}

/* footer */

.footer {
  background: #132131;
  padding: 70px 0 0;
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer_con {
  justify-content: space-between;
}
.footer_hd {
  width: 25%;
}
.footer_hd .f_logo {
  padding-bottom: 15px;
}
.footer_hd .follow_list {
  margin-top: 30px;
}
.footer_hd .follow_list span {
  font-size: 18px;
  margin-right: 10px;
}
.footer_hd .list .item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.footer_hd .list .item p {
  color: #c1cad4;
  font-size: 16px;
}
.footer_hd .list .item h4 {
  font-size: 16px;
  padding-right: 50px;
}
.footer_md {
  flex: 1;
}
.footer_md .menu {
  display: flex;
}
.footer_md .menu .item {
  flex: auto;
  margin-right: 30px;
}
.footer_md .menu .item:last-child {
  margin-right: 0;
}
.footer_md .menu .item h4 {
  font-weight: bold;
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
  margin-bottom: 20px;
}
.footer_md .menu .item h4 a {
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
}
.footer_md .menu .item p {
  margin-bottom: 3px;
}
.footer_md .menu .item p a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
}
.footer_md .menu .item p a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer_md .menu .item .list .item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  margin-bottom: 10px;
}
.footer_md .menu .item .list .item p {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
}
.footer_md .menu .item .list .item h4 {
  font-weight: normal;
  border-bottom: none;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.3);
}
.footer_md .tel_list {
  width: 420px;
}
.footer_md .item.tel_list .tit {
  margin-bottom: 20px;
}
.footer_md .item .tel_item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.footer_md .form {
  margin-top: 70px;
}
.footer_md .form h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.footer_md .form input {
  height: 52px;
  background: #e9e9e9;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 16px;
  color: #333;
  border-radius: 5px;
}
.footer_md .form button {
  height: 52px;
  background: var(--subtheme-color);
  outline: none;
  border: none;
  margin-left: 8px;
  padding: 0 50px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}
.footer_md .form button:hover {
  font-style: normal;
}
.footer_ft .tit {
  margin-bottom: 20px;
}
.footer_ft .follow_list a {
  width: 28px;
  height: 28px;
}

.footer_md .item .tel_item .ico {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_md .item .tel_item .con {
  flex: 1;
  min-width: 0;
  padding-left: 10px;
}

.footer_copyright {
  background: #132131;
  font-size: 14px;

  text-align: center;
  margin-top: 45px;
}
.footer_copyright .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px rgba(255, 255, 255, 0.2) solid;
  padding: 20px 0 20px;
}
.footer_copyright a {
  margin-left: 30px;
}

/* page_banner */

.page_banner {
  position: relative;
}
.page_banner .img img {
  width: 100%;
}
.page_banner .info {
  position: absolute;
  bottom: 200px;
  color: #fff;
  text-transform: capitalize;
}
.page_banner .info .tit {
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}
.page_banner .info .subtitle {
  font-size: 20px;
  max-width: 750px;
}

.page_banner_menu {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.page_banner_menu .list {
  justify-content: center;
}
.page_banner_menu .list .item a {
  background: rgba(0, 0, 0, 0.6);
  height: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
}
.page_banner_menu .list .item.cur a,
.page_banner_menu .list .item:hover a {
  background: var(--subtheme-color);
}

.inner_pos {
  padding-top: 20px;
}
.inner_pos a {
  padding: 0 4px;
}
.inner_pos a:first-child {
  padding-left: 0;
}
.inner_pos a:hover {
  color: var(--subtheme-color);
}

/* page_product */

.page_product {
  padding: 80px 0;
}
.page_product_menu {
  width: 340px;
}
.page_product_menu .menu {
}
.page_product_menu .menu_tit {
  font-size: 38px;
  color: #333;
  font-weight: bold;
  padding: 0 0 18px;
  line-height: 1;
  position: relative;
}
.page_product_menu .menu_tit:after {
  content: '';
  width: 80px;
  height: 3px;
  background: var(--subtheme-color);
  display: block;
  position: absolute;
  bottom: 0;
}
.page_product_menu .menu_list {
  padding-top: 10px;
}
.page_product_menu .menu_list .wrap {
  position: relative;
}
.page_product_menu .menu_list .wrap .ico {
  position: absolute;
  right: 15px;
  top: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  justify-content: center;
}
.page_product_menu .menu_list .wrap .ico i {
  font-size: 14px;
}
.page_product_menu .menu_list .hd a {
  font-size: 16px;
  color: #333;
  display: block;
  padding: 15px 15px 15px 27px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.page_product_menu .menu_list .hd a:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 22px;
  border: 2px solid #ddd;
  transition: all 0.3s;
}
.page_product_menu .menu_list .cur .hd a:before,
.page_product_menu .menu_list .hd a:hover:before {
  background: var(--subtheme-color);
}
.page_product_menu .menu_list .hd a:hover {
}
.page_product_menu .menu_list .wrap.cur .ico {
  color: #fff;
}
.page_product_menu .menu_list .bd {
  padding-bottom: 20px;
  margin-top: 10px;
  display: none;
}
.page_product_menu .menu_list .bd a {
  padding: 15px 0;
  margin: 0 20px;
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.page_product_menu .menu_list .bd a span {
  flex: 1;
}
.page_product_menu .menu_list .bd a i {
  font-size: 14px;
}
.page_product_menu .menu_list .bd a:last-child {
  margin-bottom: 0;
}

.page_product_menu .menu_list a:hover {
  color: var(--subtheme-color);
}
.page_product_menu .menu_list .bd a:hover:before {
  border-color: var(--theme-color);
}

.page_product_menu .tel_box {
  padding-top: 20px;
}
.page_product_menu .tel_box .tit {
  font-size: 28px;
  font-family: 'MuliLatin';
  font-weight: bold;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 10px;
  position: relative;
}
.page_product_menu .tel_box .tit:after {
  content: '';
  display: block;
  width: 20%;
  height: 3px;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.page_product_menu .tel_box .tel {
  padding-top: 20px;
  align-items: center;
}
.page_product_menu .tel_box .tel .con {
  padding-left: 15px;
  color: #333;
}
.page_product_menu .tel_box .tel .con p {
  font-size: 26px;
  font-weight: bold;
  font-family: 'MuliLatin';
}

.page_product_list {
  flex: 1;
  min-width: 0;
  padding-left: 70px;
}

.page_product_list .list {
  padding: 0 0 10px;
  margin: 0 -12px;
}
.page_product_list .list a {
  padding: 12px;
  width: 25%;
}
.page_product_list .list .item {
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}
.page_product_list .list .item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
}
.page_product_list .list .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.page_product_list .list .item .con {
  padding: 20px;
}
.page_product_list .list .item .con h4 {
  font-size: 20px;
  position: relative;
  transition: all 0.4s;
  line-height: 1.8;
  text-align: center;
}
.page_product_list .list .item .con .desc {
  font-size: 16px;
  color: #777;
}
.page_product_list .list .item .con .btn {
  height: 35px;
  background: #333;
  border-radius: 100px;
  width: 135px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s;
  margin-top: 30px;
}
.page_product_list .list .item .con .btn i {
  font-size: 12px;
  margin-left: 5px;
}
.page_product_list .list .item:hover .con h4 {
  color: var(--subtheme-color);
}
.page_product_list .list .item:hover .con .btn {
  background: var(--subtheme-color);
}

/* page_about1 */

.page_about1_wrap {
  background: url('../images/page_about_bg1.jpg') no-repeat left bottom;
  background-size: cover;
}
.page_about1 {
  padding: 80px 0 80px;
  overflow: hidden;
}
.page_about1_img {
  width: 47.5%;
  overflow: hidden;
  position: relative;
}
.page_about1_img img {
  width: 100%;
}
.page_about1_con {
  flex: 1;
  min-width: 0;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_about1_con .tit {
  font-size: 40px;
  font-family: 'MuliLatin';
  font-weight: bold;
  text-transform: capitalize;
  color: #333;
  padding-bottom: 15px;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
  margin-bottom: 20px;
}
.page_about1_con .tit:after {
  content: '';
  width: 108px;
  height: 4px;
  display: block;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.page_about1_con p {
  font-size: 16px;
  color: #333;
  line-height: 1.9;
  margin-top: 15px;
}

.page_about_tit {
  text-align: center;
  color: #fff;
  padding: 70px 0 40px;
}
.page_about_tit .tit h4 {
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 56px;
  font-family: 'MontserratExtraBold';
}
.page_about_tit .tit p {
  font-family: 'MontserratLight';
}
.page_about_tit1 {
  color: #333;
}
.page_about1 .watch_btn {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 99;
  cursor: pointer;
}
.page_about1 .watch_btn img {
  width: 50px;
  height: 50px;
}

.page_about2_wrap {
  background: var(--theme-color);
  overflow: hidden;
}
.page_about2_con {
  padding: 50px 0;
  margin: 0 -5%;
}
.page_about2_con .item {
  padding: 0 5%;
  flex: 1;
  text-align: center;
  color: #fff;
}
.page_about2_con .item .tit {
  font-size: 20px;
}
.page_about2_con .item .nums {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.page_about2_con .item .nums span {
  font-size: 72px;
  line-height: 1;
  margin-right: 10px;
  vertical-align: top;
}
.page_about2_con .item .nums em {
  vertical-align: bottom;
  font-size: 32px;
}
.page_about2_con .item .desc {
  font-size: 20px;
  margin-top: 15px;
}

/* page_about3_wrap */

.page_about3_wrap {
  background: url('../images/page_about_bg3.jpg') no-repeat center top;
  background-attachment: fixed;
  overflow: hidden;
}

.page_about3_con {
  position: relative;
  display: flex;
}
.page_about3_con .item {
  flex: 1;
  padding: 220px 6% 280px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.page_about3_con .item:last-child {
  border-right: none;
}
.page_about3_con .item .img {
  text-align: center;
}
.page_about3_con .item .con {
  color: #fff;
  text-align: center;
}
.page_about3_con .item .con h4 {
  font-size: 30px;
  font-weight: bold;
  margin: 40px 0 0;
}
.page_about3_con .item .con h4:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #e77817;
  margin: 10px auto 20px;
}
.page_about3_con .item .con p {
  font-size: 18px;
}

/* page_about4_con */

.page_about4_con {
  margin: 0 -25px;
  padding: 50px 0 140px;
}
.page_about4_con .item {
  flex: 1;
  padding: 0 25px;
}
.page_about4_con .item .img img {
  border-radius: 20px;
}
.page_about4_con .item .con h4 {
  font-size: 24px;
  font-weight: bold;
  padding: 20px 0 10px;
}
.page_about4_con .item .con p {
  font-size: 16px;
  color: #666;
}

.page_cs_panel2_con {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
}
.page_cs_panel2_con .wrapper {
  position: relative;
  margin-top: 40px;
}
.page_cs_panel2_con .item {
  background: #f3f3f3;
  padding: 0;
  position: relative;
}
.page_cs_panel2_con .item .img {
  justify-content: center;
}
.page_cs_panel2_con .item .img a {
  display: block;
  width: 100%;
  overflow: hidden;
}
.page_cs_panel2_con .item .img a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.page_cs_panel2_con .item .tit span {
  width: 100px;
  height: 100px;
  border: 2px #fff solid;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.page_cs_panel2_con .item .tit span img {
  width: 60px;
}
.page_cs_panel2_con .item .tit h4 {
  font-size: 30px;
  color: #fff;
  display: block;
  margin-top: 20px;
}
.page_cs_panel2_con .item .tit h4::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 10px auto 0;
}
.page_cs_panel2_con .item .tit h6 {
  color: #fff;
  margin-top: 10px;
}
.page_cs_panel2_con .item .tit p {
  display: none;
  padding: 0 20px;
  color: #fff;
  margin-top: 20px;
  text-align: left;
}
.page_cs_panel2_con .item:hover {
  background: var(--theme-color);
}
.page_cs_panel2_con .item:hover .tit {
  color: #fff;
}
.page_cs_panel2_con .item:hover .img a img {
  transform: scale(1.1);
}
.page_cs_panel2_con .item .tit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.page_cs_panel2_con .item:hover .tit {
  background: rgba(20, 74, 167, 0.9);
  height: 100%;
  margin-bottom: 0;
}
.page_cs_panel2_con .item:hover .tit span {
  display: flex;
}
.page_cs_panel2_con .item:hover .tit p {
  display: block;
}
.page_cs_panel2_con .swiper-button-prev i,
.page_cs_panel2_con .swiper-button-next i {
  color: #000;
  font-size: 34px;
}
.page_cs_panel2_con .swiper-button-next {
  right: auto;
  left: 40px;
}
.page_cs_panel2_con .swiper-button-prev {
  left: 0;
}
.page_cs_panel2_con .swiper-button-prev i {
  transform: rotate(180deg);
}
.page_cs_panel2_con .swiper-pagination {
  width: calc(100% - 100px);
  left: 100px;
}
.page_cs_panel2_con .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 6px;
  background: var(--theme-color);
}
.page_cs_panel2_con .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #007aff;
}
/* page_public_about_list */

.page_public_about_list {
  padding-bottom: 80px;
}
.page_public_about_list .list {
  margin: -18px -18px 0;
}
.page_public_about_list .list a {
  padding: 18px;
  width: 33.333%;
  display: block;
}
.page_public_about_list .list a .img img {
  object-fit: cover;
  width: 100%;
  height: 350px;
}
.page_public_about_list5 .list {
  margin: -13px -13px 0;
}
.page_public_about_list5 .list a {
  width: 20%;
  padding: 13px;
}
.page_public_about_list5 .list a .img img {
  height: 357px;
}
.page_public_about_list5 .list .item {
  background: #f6f6f6;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* page_about_photo1 */

.page_about_photo1 {
  padding-bottom: 80px;
}
.page_about_photo1 .list {
  padding: 40px 0 60px;
  overflow: hidden;
  position: relative;
}

.page_about_photo1 .list .img img {
  width: 100%;
  height: 355px;
  border-radius: 20px;
  object-fit: cover;
}
.page_about_photo1 .swiper-pagination-bullet-active {
  background: var(--theme-color);
}

.page_about_photo2 {
  padding-bottom: 80px;
}
.page_about_photo2 .list {
  padding: 40px 0 0;
  margin: 0 -33px;
}
.page_about_photo2 .list .item {
  flex: 1;
  padding: 0 33px;
  position: relative;
}
.page_about_photo2 .list .item:after {
  content: '>';
  font-size: 30px;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  font-family: cursive;
  color: #999;
}
.page_about_photo2 .list .item .img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}
.page_about_photo2 .list .item h4 {
  text-align: center;
  line-height: 50px;
  color: #333;
  font-size: 18px;
}

/* page_cases */

.page_cases {
  padding: 80px 0 0;
}
.page_cases_tit {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  height: 84px;
}
.page_cases_tit .tit {
  color: #2d2d2d;
  font-size: 50px;
  font-family: 'MontserratExtraBold';
  flex: 1;
}
.page_cases_tit .menu {
  display: flex;
  height: 100%;
}
.page_cases_tit .menu a {
  font-size: 18px;
  color: #2d2d2d;
  display: flex;
  margin-left: 160px;
  position: relative;
  height: 100%;
  align-items: center;
}
.page_cases_tit .menu a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  right: 0;
  background: var(--theme-color);
  height: 2px;
  transition: all 0.4s;
}
.page_cases_tit .menu a:hover,
.page_cases_tit .menu a.cur {
  color: var(--theme-color);
}
.page_cases_tit .menu a:hover:after,
.page_cases_tit .menu a.cur:after {
  width: 100%;
}

/* page_download_center */

.page_download_center {
  padding: 30px 0 50px;
}
.page_download_center .list_item {
  margin-bottom: 30px;
}
.page_download_center .list_item .menu {
  display: flex;
  color: #333;
  font-size: 24px;
  padding: 30px 40px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  justify-content: space-between;
  font-family: 'MontserratSemiBold';
  align-items: center;
}
.page_download_center .list_item .menu i {
  font-size: 20px;
  color: #333;
  transition: all 0.3s;
}
.page_download_center .list_item .menu:hover,
.page_download_center .list_item .menu.cur {
  color: var(--theme-color);
}

.page_download_tit .tit p {
  max-width: 70%;
  margin: auto;
}
.page_download_tit .tit p a {
  color: var(--theme-color);
}
.page_download_tit .tit p a:hover {
  text-decoration: underline;
}

.page_download_center .list_item .list {
  display: none;
  padding: 0 40px;
  background: #fff;
}
.page_download_center .list_item:first-child .list {
  display: block;
}

.page_download_center .list_item .list .item {
  display: flex;
  height: 90px;
  display: flex;
  align-items: center;
  border-top: 1px solid #ebebeb;
}

.page_download_center .list_item .list .item .pdf {
  width: 50px;
  height: 25px;
  border: 1px solid #a9a9a9;
  font-family: 'MontserratLight';
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.page_download_center .list_item .list .item h4 {
  font-size: 16px;
  color: #2d2d2d;
  margin-left: 25px;
  flex: 1;
}
.page_download_center .list_item .list .item .btn {
  border: 1px solid #c3c3c3;
  padding: 5px 20px;
  transition: all 0.3s;
  border-radius: 5px;
}
.page_download_center .list_item .list .item .btn i {
  margin-left: 8px;
  font-size: 16px;
}
.page_download_center .list_item .list .item:hover h4 {
  color: var(--theme-color);
}
.page_download_center .list_item .list .item:hover .btn {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

.page_download_center_more {
  text-align: center;
  padding-bottom: 80px;
}
.page_download_center_more a {
  padding-bottom: 5px;
  display: inline-block;
}
.page_download_center_more a:after {
  width: 100%;
  height: 1px;
  background: #666;
  content: '';
  display: block;
}
.page_download_center_more a:hover {
  color: var(--theme-color);
}
.page_download_center_more a:hover:after {
  background: var(--theme-color);
}

/* page_product_video */

.page_product_video {
  padding: 50px 0 80px;
}
.page_product_video .list {
  margin: 0 -17px;
}
.page_product_video .list .item {
  width: 33.33%;
  padding: 0 17px;
}
.page_product_video .list .item iframe {
  height: 385px;
}

/* page_case_detail */

.page_cases_show_wrap {
  padding: 0 0 80px;
}
.technical_support {
  width: 340px;
}
.technical_support .panel1 {
  margin-bottom: 50px;
}
.technical_support .panel1:last-child {
  margin-bottom: 0;
}
.technical_support .p1_tit {
  font-size: 28px;
  font-family: 'MuliLatin';
  font-weight: bold;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 10px;
  position: relative;
}
.technical_support .p1_tit:after {
  content: '';
  display: block;
  width: 20%;
  height: 3px;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.technical_support .ico {
  margin-top: 6px;
}
.technical_support .con {
  padding-left: 15px;
}
.technical_support .p1_con {
  padding-top: 20px;
  align-items: center;
}
.technical_support .p1_con .con h4 {
  font-size: 26px;
  font-weight: bold;
  font-family: 'MuliLatin';
}
.technical_support .p2_tit {
  margin-bottom: 20px;
}
.technical_support .p2_tit:after {
  display: none;
}
.technical_support .p2_form input,
.technical_support .p2_form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f6f6f6;
  height: 54px;
  line-height: 34px;
  border-left: 3px solid #0051a2;
  margin-bottom: 15px;
  padding: 10px 22px;
}
.technical_support .p2_form textarea {
  height: 120px;
}
.technical_support button {
  width: 100%;
  height: 54px;
  background: #0051a2;
  line-height: 54px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.technical_support button i {
  margin-left: 10px;
}
.technical_support button:hover {
  background: var(--theme-color);
}

/* page_cases_list */

.page_cases_list {
  padding-bottom: 80px;
}
.page_cases_list .list {
  margin: -18px -18px 0;
}
.page_cases_list .list .item {
  width: 33.333%;
  padding: 18px;
}
.page_cases_list .list .item .img {
  overflow: hidden;
}
.page_cases_list .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_cases_list .list .item .info {
  padding: 25px;
  background: #f4f4f4;
  transition: all 0.3s;
}
.page_cases_list .list .item .info h4 {
  font-size: 20px;
  transition: all 0.3s;
}
.page_cases_list .list .item .info p {
  font-family: 'MontserratLight';
  margin: 10px 0 30px;
  height: 50px;
}
.page_cases_list .list .item .info span {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.page_cases_list .list .item .info span i {
  font-size: 12px;
  color: #999;
}
.page_cases_list .list .item .info span:before,
.page_cases_list .list .item .info span:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #666;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  bottom: 0;
}
.page_cases_list .list .item .info span:after {
  background: var(--theme-color);
  width: 0;
}
.page_cases_list .list .item:hover .info {
  background: var(--theme-color);
}
.page_cases_list .list .item:hover .info h4 {
  color: #fff;
}
.page_cases_list .list .item:hover .info span:after {
  width: 100%;
}

/* product_detail */

.pd_detail {
  background: #f5f5f5;
  padding: 85px 0 50px;
}
.pd_detail_con {
  padding-top: 60px;
}
.pd_detail_hd .pics {
  width: 45%;
  overflow: hidden;
  display: flex;
  height: 450px;
}
.pd_detail_hd .pics .mySwiper2 {
  width: 100%;
  height: 415px;
  margin: 0;
  overflow: hidden;
}

.pd_detail_hd .pics .mySwiper2 .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pd_detail_hd .pics .mySwiper2 .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pd_detail_hd .pics .mySwiper {
  margin-top: 20px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide {
  height: 100%;
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img {
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide.swiper-slide-thumb-active .img {
  border: 1px solid var(--theme-color);
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img img {
  object-fit: contain;
}
.mySwiper2 .swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  border-radius: 0;
  background: #aaa;
  opacity: 1;
}
.mySwiper2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color);
}

.pd_detail_hd .infos {
  flex: 1;
  padding: 10px 10% 0 0;
  min-width: 0;
}
.pd_detail_hd .infos .name {
  color: #888;
}
.pd_detail_hd .infos h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 20px;
  position: relative;
}

.pd_detail_hd .infos .desc {
  font-size: 16px;
  color: #666;
  margin: 35px 0 50px;
}
.pd_detail_hd .infos .desc span {
  display: block;
  padding-left: 18px;
  position: relative;
}
.pd_detail_hd .infos .desc span:before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--theme-color);
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
}
.pd_detail_hd .infos .list {
  margin: 0 -50px;
}
.pd_detail_hd .infos .list .item {
  display: flex;
  padding: 0 50px;
  align-items: center;
  border-right: 1px solid #ccc;
}
.pd_detail_hd .infos .list .item:last-child {
  border-right: none;
}
.pd_detail_hd .infos .list .item h4 {
  font-size: 18px;
  color: #333;
  font-family: 'MontserratSemiBold';
  margin-left: 20px;
  line-height: 1.3;
}

.pd_detail_hd .infos .btns {
  margin-top: 50px;
}
.pd_detail_hd .infos .btns .btn {
  display: flex;
  align-items: center;
  height: 48px;
  width: 220px;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: #fff;
  font-weight: bold;
  justify-content: center;
  text-transform: capitalize;
  margin-right: 20px;
  border-radius: 100px;
  font-size: 18px;
}
.pd_detail_hd .infos .btns .btn i {
  color: #fff;
  font-size: 20px;
  margin-left: 8px;
  transition: all 0.3s;
}
.pd_detail_hd .infos .btns .btn2 {
  background: #333;
}
.pd_detail_hd .infos .btns .btn2 i {
}
.pd_detail_hd .infos .btns .btn:hover {
  border-color: var(--theme-color);
  background: var(--theme-color);
  opacity: 0.8;
}
.pd_detail_hd .infos .btns .btn2:hover {
  color: #fff;
}
.pd_detail_hd .infos .btns .btn2:hover i {
  color: #fff;
}
.productshow_recommend .swiper-pagination-bullet {
  border-radius: 0;
  width: 16px;
  height: 3px;
  opacity: 1;
  background: #bbb;
}
.productshow_recommend
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color);
}

.pd_detail_hd .infos .follow_list {
  margin-top: 50px;
  align-items: center;
}
.pd_detail_hd .infos .follow_list .tit {
  color: #333;
  font-family: 'jnm';
  text-transform: uppercase;
  margin-right: 30px;
}

.pd_detail_bd {
  display: flex;
  padding: 50px;
  margin: 60px 0;
  border-radius: 20px;
  border: 1px solid #e9e9e9;
}
.pd_detail_bd .con {
  width: 55%;
}
.pd_detail_bd .con h4 br {
  display: none;
}
.pd_detail_bd .con h4 {
  font-size: 26px;
  color: #333;
  font-family: 'MontserratBold';
}
.pd_detail_bd .con p {
  color: #333;
  margin-top: 10px;
  line-height: 1.8;
}
.pd_detail_bd .imgs {
  flex: 1;
  min-width: 0;
  padding-left: 3%;
  margin-left: 3%;
  border-left: 1px solid #e9e9e9;
}
.pd_detail_bd .imgs h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}
.pd_detail_bd .imgs .img {
  justify-content: space-between;
}

.pd_detail_info {
  margin: 50px 0 0;
}

.pd_detail_info .pddi_hd {
}
.pd_detail_info .pddi_hd .hd {
  display: flex;
  height: 70px;
  font-size: 20px;
  align-items: center;
  background: var(--theme-color);
  position: relative;
}
.pd_detail_info .pddi_hd .hd:before,
.pd_detail_info .pddi_hd .hd:after {
  content: '';
  width: 200%;
  height: 100%;
  background: var(--theme-color);
  display: block;
  position: absolute;
  top: 0;
}
.pd_detail_info .pddi_hd .hd:before {
  left: -200%;
}
.pd_detail_info .pddi_hd .hd:after {
  right: -200%;
}
.pd_detail_info .pddi_hd .hd .item {
  color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  padding: 0 55px;
  font-size: 22px;
  font-weight: bold;
  border-top: 3px solid var(--theme-color);
}
.pd_detail_info .pddi_hd .hd .item.cur {
  border-top-color: var(--subtheme-color);
  color: var(--subtheme-color);
  background: #fff;
}

.pd_detail_info .pddi_hd .bd .bd_item table {
  width: 100% !important;
}
.pd_detail_info .pddi_hd .bd .bd_item tr {
  height: 45px !important;
}
.pd_detail_info .pddi_hd .bd .bd_item tr td {
  border: none !important;
}
.pd_detail_info .pddi_hd .bd .bd_item tr:nth-child(2n-1) {
  background: #f1f1f1;
}
.pd_detail_info .pddi_hd .bd .bd_item tr:first-child {
  background: var(--theme-color);
  height: 50px !important;
  color: #fff;
}

.pd_detail_info .pddi_hd .bd .bd_item .pdf a {
  background: #fff;
  height: 60px;
  align-items: center;
  padding: 0 20px;
  transition: all 0.4s;
}
.pd_detail_info .pddi_hd .bd .bd_item .pdf span {
  height: 26px;
  padding: 0 10px;
  background: var(--subtheme-color);
  color: #fff;
  line-height: 26px;
  border-radius: 3px;
}
.pd_detail_info .pddi_hd .bd .bd_item .pdf h4 {
  flex: 1;
  display: flex;
  font-weight: bold;
  padding-left: 10px;
  font-size: 16px;
}
.pd_detail_info .pddi_hd .bd .bd_item .pdf i {
  font-size: 18px;
}
.pd_detail_info .pddi_hd .bd .bd_item .pdf a:hover {
  background: var(--theme-color);
}
.pd_detail_info .pddi_hd .bd .bd_item .pdf a:hover h4 {
  color: #fff;
}
.pd_detail_info .pddi_hd .bd .bd_item .pdf a:hover i {
  color: #fff;
}

.pd_detail_info .pddi_bd {
  width: 435px;
}
.pd_detail_info .pddi_bd .tit {
  font-size: 24px;
  color: #333;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 10px;
  position: relative;
}
.pd_detail_info .pddi_bd .tit:after {
  content: '';
  display: block;
  width: 20%;
  height: 3px;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.pd_detail_info .pddi_bd .menu {
  margin: 20px -7px;
}
.pd_detail_info .pddi_bd .menu a {
  width: 50%;
  padding: 7px;
}
.pd_detail_info .pddi_bd .menu .img {
  border-radius: 15px;
}
.pd_detail_info .pddi_bd .menu .img img {
  width: 100%;
  height: 140px;
}
.pd_detail_info .pddi_bd .menu h4 {
  text-align: center;
  line-height: 40px;
  color: #333;
}
.pd_detail_info .pddi_bd .menu a:hover h4 {
  color: var(--theme-color);
}
.pd_detail_info .pddi_bd .tel_box {
  border: 1px solid #e4e4e4;
  border-radius: 20px;
  padding: 30px;
}
.pd_detail_info .pddi_bd .tel_box .tel {
  padding-top: 20px;
  align-items: center;
}
.pd_detail_info .pddi_bd .tel_box .tel .con {
  padding-left: 15px;
  color: #333;
}
.pd_detail_info .pddi_bd .tel_box .tel .con p {
  font-size: 26px;
}

.pd_detail_info .pddi_hd .bd {
  padding: 50px 0;
}
.plr60 {
  padding: 0 60px;
}
.pd_detail_info .pddi_hd .bd .tit {
  height: 50px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 0 30px;
  line-height: 50px;
  font-size: 18px;
  font-family: 'MontserratSemiBold';
}
.pd_detail_info .pddi_hd .bd .con {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 30px 10px;
}
.pd_detail_info .pddi_hd .bd .con > p {
  width: 25%;
  padding: 15px 30px;
}
.pd_detail_info .pddi_hd .bd .c {
  padding: 20px 30px;
}
.pd_detail_info .pddi_hd .bd .bd_item {
  display: none;
}
.pd_detail_info .pddi_hd .bd .bd_item:first-child {
  display: block;
}
.pd_detail_info .pddi_hd .bd .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.pd_detail_info .pddi_hd .bd .list .img {
  width: 33.333%;
  padding: 20px;
}
.pd_detail_info .pddi_hd .bd .list .img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.pd_detail_info .pddi_hd .tags {
  border-top: 2px solid #ddd;
  margin: 30px 0 0;
  padding: 30px 0 0;
}

.pd_detail_info .pddi_hd .tags span {
  margin-right: 10px;
}
.pd_detail_info .pddi_hd .tags span i {
  color: #999;
  margin-right: 6px;
}
.pd_detail_info .pddi_hd .tags a {
  background: #f3f4f8;
  height: 28px;
  line-height: 28px;
  padding: 0 20px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 3px;
  font-size: 13px;
  font-family: 'MontserratLight';
}
.pd_detail_info .pddi_hd .tags a:hover {
  background: var(--theme-color);
  color: #fff;
}
.page_product_detail_tit {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.page_product_detail_tit:after {
  content: '';
  width: 140px;
  height: 10px;
  background: url(../images/Line3.svg) no-repeat left;
  display: block;
  margin-top: 5px;
}
.page_product_detail_title {
  font-size: 34px;
  font-weight: bold;
}
.productshow_recommend {
  padding-top: 30px;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.productshow_recommend .item {
  background: #fff;
  padding: 10px;
  margin: 10px;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 0 10px #f5f5f5;
}
.productshow_recommend .item .img {
  width: 280px;
  border-radius: 20px;
}
.productshow_recommend .item .con {
  flex: 1;
  min-width: 0;
  padding-right: 40px;
}
.productshow_recommend .item .con h4 {
  font-size: 22px;
  border-bottom: 1px solid #ddd;
  line-height: 1.2;
  padding-bottom: 15px;
}
.productshow_recommend .item .con p {
  font-size: 16px;
  color: #777;
  padding-top: 30px;
}
.productshow_recommend .item .con .btn {
  height: 35px;
  background: #333;
  border-radius: 100px;
  width: 135px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s;
  margin-top: 30px;
}
.productshow_recommend .item .con .btn i {
  font-size: 12px;
  margin-left: 4px;
}
.productshow_recommend .item:hover .con h4 {
  color: var(--subtheme-color);
}
.productshow_recommend .item:hover .con .btn {
  background: var(--subtheme-color);
}

/* page_quality */

.pq1_info {
}
.pq1_info .desc {
  width: 60%;
  margin: auto;
  text-align: center;
  position: relative;
}
.pq1_info .desc:before,
.pq1_info .desc:after {
  content: '';
  width: 38px;
  height: 31px;
  display: block;
  position: absolute;
}
.pq1_info .desc:before {
  background: url('../images/quality_ico1.png') no-repeat center;
  left: -50px;
  top: -6px;
}
.pq1_info .desc:after {
  background: url('../images/quality_ico2.png') no-repeat center;
  right: -50px;
  bottom: -20px;
}
.pq1_info .list {
  justify-content: center;
  margin: 60px 0;
}
.pq1_info .list .item {
  margin: 0 40px;
}

.pq2_info {
  background: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
}
.pq2_info .pq2_info_con {
  flex: 1;
  min-width: 0;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pq2_info .pq2_info_con .tit {
  color: #161616;
  font-size: 40px;
  font-family: 'jnb';
}
.pq2_info .pq2_info_con .desc {
  color: #666;
  margin-top: 10px;
}
.pq2_info .pq2_info_img {
  width: 50%;
}

/* pq3_info */

.pq3_info {
  overflow: hidden;
  width: 1800px;
  margin: auto;
  position: relative;
  padding: 0 0 80px;
}
.pq3_info_con {
  position: relative;
  width: 1600px;
  margin: auto;
  padding: 20px 0 60px;
}
.pq3_info_con .item .img {
  background: #f8f8f8;
  padding: 25px 36px;
  height: 390px;
}
.pq3_info_con .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.pq3_info_con .item .tit {
  color: #3a3a3a;
  padding: 10px 10px 0;
  font-size: 16px;
  text-align: center;
}

.pq3_info_con .swiper-button-next,
.pq3_info_con .swiper-button-prev {
  width: 70px;
  height: 70px;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  z-index: 40;
  opacity: 1;
  color: #717171;
  top: 40%;
}
.pq3_info_con .swiper-button-next:after,
.pq3_info_con .swiper-button-prev:after {
  font-size: 30px;
}
.pq3_info_con .swiper-button-next:hover,
.pq3_info_con .swiper-button-prev:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}
.pq3_info_con .swiper-button-prev {
  left: -100px;
}
.pq3_info_con .swiper-button-next {
  right: -100px;
}
.pq3_info:before,
.pq3_info:after {
  content: '';
  display: block;
  width: 100px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  z-index: 30;
}
.pq3_info:before {
  left: 0;
}
.pq3_info:after {
  right: 0;
}
.pq3_info_con .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}
.pq3_info_con .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color);
}

/* page_news */

.page_news {
  padding: 50px 0 80px;
}

.page_news_tit {
  border-bottom: 1px solid #e5e5e5;
}
.page_news_tit .tit {
  font-size: 40px;
  color: #333;
  flex: 1;
  font-family: 'MontserratBold';
}
.page_news_tit .menu {
  display: flex;
  align-items: center;
}
.page_news_tit .menu a {
  font-size: 18px;
  display: block;
  font-family: 'MontserratLight';
  margin-left: 100px;
  position: relative;
}

.page_news_tit .menu a:after {
  content: '';
  width: 0;
  height: 2px;
  background: var(--theme-color);
  display: block;
  position: absolute;
  left: 0;
  bottom: -17px;
  transition: all 0.3s;
}
.page_news_tit .menu a.cur,
.page_news_tit .menu a:hover {
  color: var(--theme-color);
}
.page_news_tit .menu a:hover:after,
.page_news_tit .menu a.cur:after {
  width: 100%;
}

.page_news_list {
}
.page_news_list .list {
  margin: -25px -25px 0;
}
.page_news_list .list .item {
  padding: 12px;
  width: 33.33%;
  position: relative;
}

.page_news_list .list .item .img {
  height: 280px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: #f5f5f5;
}
.page_news_list .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_news_list .list .item .con {
  padding: 20px 35px 40px;
  background: #f5f5f5;
  border-radius: 0 0 10px 10px;
}
.page_news_list .list .item .con span {
  color: #999;
}
.page_news_list .list .item .con h4 {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  transition: all 0.3s;
  margin-top: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.page_news_list .list .item .con p {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
}
.page_news_list .list .item .agg {
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}
.page_news_list .list .item .agg .more {
  color: #333;
  font-size: 16px;
  margin-right: 15px;
}
.page_news_list .list .item .agg .more i {
  font-size: 12px;
  margin-left: 5px;
}
.page_news_list .list .item .agg span {
  font-size: 14px;
  margin: 0 4px;
}
.page_news_list .list .item .agg .ico i {
  font-size: 18px;
}
.page_news_list .list .item:hover .con h4 {
  color: var(--theme-color);
}
.page_news_list .list .item:hover:after {
  width: calc(100% - 50px);
}
.page_news_list .list .item:hover .agg .more {
  color: var(--subtheme-color);
}
.page_news_menu {
  width: 340px;
}
.page_news_menu .search {
}
.page_news_menu .search input {
  width: 100%;
  border: none;
  outline: none;
  height: 58px;
  background: #f4f4f4;
  padding: 0 20px;
  font-size: 16px;
}
.page_news_menu .search button {
  background: #224299;
  height: 58px;
  width: 58px;
  cursor: pointer;
  outline: none;
  border: none;
}
.page_news_menu .search button:hover {
  background: var(--theme-color);
}
.page_news_menu .search button i {
  font-size: 20px;
  color: #fff;
}

.page_news_menu .menu {
  background: #f5f5f5;
}
.page_news_menu .menu .tit {
  height: 70px;
  background: #224299;
  margin-top: 30px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.page_news_menu .menu .tit h4 {
  font-size: 24px;
}
.page_news_menu .menu .item {
  height: 60px;
  border-bottom: 1px dashed #ddd;
  line-height: 60px;
  padding: 0 24px;
  font-size: 14px;
  display: flex;
}
.page_news_menu .menu .item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.page_news_menu .menu .item i {
  transform: rotate(180deg);
  display: block;
  font-size: 12px;
}
.page_news_menu .menu .item a:hover,
.page_news_menu .menu .item.cur a {
  color: var(--theme-color);
}
.page_news_menu .menu .item:last-child {
  border-bottom: none;
}

.page_news_menu .hot_pro {
  padding-top: 40px;
}
.page_news_menu .hot_pro .tit {
  font-size: 20px;
  color: #333;
}
.page_news_menu .hot_pro .tit:after {
  content: '';
  width: 60px;
  height: 3px;
  background: #224299;
  display: block;
  margin-top: 6px;
}
.page_news_menu .hot_pro .list a {
  margin-top: 20px;
  align-items: center;
}
.page_news_menu .hot_pro .list a .img {
  width: 110px;
  height: 82px;
  border: 1px solid #e6e6e6;
}
.page_news_menu .hot_pro .list a .info {
  flex: 1;
  padding-left: 24px;
  min-width: 0;
}
.page_news_menu .hot_pro .list a .info p {
  font-size: 14px;
  color: #999;
  font-family: 'MontserratLight';
}

.no_banner_pos {
  padding: 20px 0 0;
}
.no_banner_pos a:last-child {
  color: var(--theme-color);
}

/* page_news_detail */

.page_news_detail {
  padding: 80px 0;
}
.page_news_detail h1 {
  font-size: 38px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.page_news_detail .info {
  margin-top: 30px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
}
.page_news_detail .info .info_hd {
  flex: 1;
}
.page_news_detail .info .info_hd li {
  font-size: 16px;
  color: #333;
  margin-right: 50px;
}
.page_news_detail .info .info_hd li.column {
  background: #f3f3f3;
  padding: 0 18px;
  height: 28px;
  line-height: 28px;
}
.page_news_detail .info .info_bd {
  align-items: center;
}
.page_news_detail .info .info_bd h4 {
  margin-right: 15px;
  padding-top: 3px;
}

.page_news_detail .desc {
  padding: 40px 0 20px;
  min-height: 20vh;
  border-bottom: 1px solid #e7e7e7;
}

.page_news_detail_wrap {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page_cases_show_wrap {
  background: #f5f5f5;
}
.page_case_detail .hd {
  overflow: hidden;
}
.page_case_detail .hd .hd_con {
  flex: 1;
  min-width: 0;
  padding-right: 6%;
}
.page_case_detail .hd .hd_con .desc {
  padding-top: 40px;
  font-size: 18px;
}
.page_case_detail .hd .hd_img {
  width: 48%;
  padding-top: 100px;
}
.page_case_detail .hd .hd_img img {
  border-radius: 30px;
}
.page_case_detail .bd {
  padding-top: 60px;
}
.page_case_detail .bd .tit {
  font-size: 36px;
  font-weight: bold;
}
.page_case_detail .bd .list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
}
.page_case_detail .bd .list .item {
  padding: 10px;
  width: 33.333%;
}
.page_case_detail .bd .list .item .img {
  padding: 8px;
  background: #fff;
  border-radius: 10px;
}
.page_case_detail .bd .list .item img {
  border-radius: 10px;
}
.namess {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}

.page_case_detail .hd .hd_con .img {
  margin-top: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

/* page_contact */

.page_contact_list {
  padding: 20px 0 70px;
  overflow: hidden;
  margin: 0 -30px;
}
.page_contact_list .item_wrap {
  width: 50%;
  padding: 0 30px;
}
.page_contact_list .item_wrap .item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.page_contact_list .item .t {
  align-items: center;
  padding-bottom: 10px;
  cursor: pointer;
}
.page_contact_list .item .t.cur {
  color: var(--theme-color);
}
.page_contact_list .item span {
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--theme-color);
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}
.page_contact_list .item .c_wrap span {
  background: var(--subtheme-color);
}
.page_contact_list .item .con .t h4 {
  font-size: 20px;
  padding: 0 13px;
  flex: 1;
  min-width: 0;
}
.page_contact_list .item .con .t i {
  font-size: 16px;
  transition: all 0.4s;
}
.page_contact_list .item .con .t.cur i {
  transform: rotate(180deg);
}
.page_contact_list .item .con .c_wrap {
  display: none;
}
.page_contact_list .item .con .c p {
  font-size: 16px;
  min-width: 0;
  color: #666;
  line-height: 1.6;
  padding-left: 13px;
  flex: 1;
  min-width: 0;
}

.page_contact1_wrap {
  padding: 80px 0;
}
.page_contact1_map {
  overflow: hidden;
  width: 50%;
  background: #f5f5f5;
}

.page_contact1_con {
  width: 50%;
  padding: 50px;
  overflow: hidden;
  background-size: cover;
  background: url('../images/contact_conbg.jpg') no-repeat center
    var(--theme-color);
}
.page_contact1_con .b_tit {
  color: #fff;
}
.page_contact1_con .b_tit span {
}
.page_contact1_con .b_tit h4 {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  line-height: 1.2;
}
.page_contact1_con .b_tit h4:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.page_contact1_con .b_tit p {
  font-size: 16px;
}

.page_contact1_con .b_list .tit {
  color: var(--theme-color);
  font-size: 20px;
}
.page_contact1_con .b_list .list {
  margin-top: 15px;
}
.page_contact1_con .b_list .list .item {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  color: #333;
}
.page_contact1_con .b_list .list .item i {
  background: #219f46;
  color: #fff;
  border: 4px solid #e8f5ec;
  border-radius: 50%;
  font-size: 12px;
  width: 22px;
  height: 22px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

.page_contact1_con .info {
  display: flex;
  flex-direction: column;
}
.page_contact1_con .info .item {
  display: flex;
  margin-top: 25px;
}
.page_contact1_con .info .item:first-child {
  width: 100%;
}
.page_contact1_con .info .item .ico {
  width: 44px;
  height: 44px;
  background: var(--subtheme-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_contact1_con .info .item .ico i {
  color: #fff;
  font-size: 22px;
}
.page_contact1_con .info .item .con {
  padding-left: 15px;
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 16px;
}
.page_contact1_con .info .item .con h4 {
  line-height: 1;
  font-weight: bold;
}

.page_contact1_con .info .item .con p span {
  display: block;
}
.page_contact1_con .share {
  margin-top: 50px;
}
.page_contact1_con .share .tit {
  text-transform: uppercase;
  font-style: italic;
  color: #333;
  margin-right: 15px;
  font-family: 'MuliLatin';
}
.page_contact1_con .share .tit span {
  color: var(--theme-color);
}
.page_contact_map {
  padding-bottom: 60px;
}

.page_search {
  padding: 150px 0 80px;
}

/* page_contact2 */

.page_contact2 {
  padding-bottom: 100px;
}
.page_contact2_info {
  width: 50%;
  padding-right: 120px;
}
.page_contact2_info .tit {
  padding-top: 20px;
}
.page_contact2_info .tit h4 {
  font-size: 40px;
  color: #333;
  font-family: 'MontserratExtraBold';
}
.page_contact2_info .tit p {
  color: #333;
  line-height: 2;
  margin-top: 20px;
}
.page_contact2_info .con h4 {
  color: #053c8a;
  font-family: 'MontserratSemiBold';
  margin: 30px 0 10px;
  font-size: 20px;
}
.page_contact2_info .con p {
  margin-bottom: 10px;
  display: flex;
  font-family: 'MontserratLight';
  font-size: 14px;
}
.page_contact2_info .con p span {
  background: #053c8a;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 4px solid #e6ebf3;
  margin-right: 10px;
}
.page_contact2_info .con p span i {
  font-size: 10px;
  color: #fff;
}

.page_contact2_form {
  flex: 1;
  min-width: 0;
}
.page_contact2_form .tit h4 {
  font-size: 40px;
  color: #3a3a3a;
  font-family: 'MuliBlackMOD';
}
.page_contact2_form .tit p {
  color: #666;
}
.page_contact2_form .form {
  padding-top: 40px;
}
.page_contact2_form .input_box {
  display: flex;
  margin: 0 -10px;
}
.page_contact2_form .input_box .input {
  margin: 0 0 20px;
  flex: 1;
  padding: 0 10px;
}
.page_contact2_form .input_box .input input,
.page_contact2_form textarea {
  width: 100%;
  border: none;
  outline: none;
  height: 54px;
  padding: 10px 20px;
  line-height: 34px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.page_contact2_form textarea {
  height: 120px;
}
.page_contact2_form .form p {
}
.page_contact2_form .form .button {
  margin-top: 40px;
}
.page_contact2_form .form .button button {
  width: 370px;
  margin: auto;
  height: 60px;
  background: var(--theme-color);
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
}
.page_contact2_form .form .button button i {
  font-size: 22px;
  margin-left: 10px;
}
.page_contact2_form .form .button button:hover {
  background: var(--subtheme-color);
}

/* page_equ_panel1 */

.page_equ_panel1_wrap {
  background: #f5f5f5;
}
.page_equ_panel1 .desc {
  font-size: 18px;
  margin: 35px 0;
}
.page_equ_panel1 .list {
  margin: 0 -34px;
  padding-bottom: 80px;
}
.page_equ_panel1 .list .item {
  flex: 1;
  padding: 0 34px;
}
.page_equ_panel1 .list .item .img img {
  border-radius: 30px;
}
.page_equ_panel1 .list .item .tit {
  font-size: 18px;
  text-align: center;
  padding-top: 15px;
}

.page_equ_panel2_wrap {
  padding-bottom: 80px;
}
.page_equ_panel2_con {
  padding: 40px 0 20px 0;
  position: relative;
}
.page_equ_panel2_con .item img {
  border-radius: 20px;
}

/* return */

.return_page {
  position: relative;
}
.return_page dl {
  justify-content: space-between;
  padding-top: 40px;
  position: relative;
}
.return_page dt {
  width: 44%;
  font-size: 16px;
}
.return_page dt.next {
  text-align: right;
}
.return_page dt.next p {
  color: #717171;
  line-height: 1.2;
}
.return_page dt a {
  display: block;
}
.return_page .p1 {
  padding-bottom: 6px;
}
.return_page .p1 span {
  display: inline-block;
  line-height: 1;
}
.return_page .next .p1 span {
  transform: rotate(180deg);
  margin-left: 4px;
}
.return_page .prev .p1 span {
  margin-right: 4px;
}
.return_page dt a:hover {
  color: var(--theme-color);
}
.return_page .go_back {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
}
.return_page .go_back a {
  width: 110px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #666;
  border-radius: 100px;
  font-size: 16px;
  line-height: 38px;
}
.return_page .go_back a i {
  font-size: 12px;
  margin-left: 3px;
}
.return_page .go_back a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

.ind_pad {
  padding: 80px 0 90px;
}
.info_ly {
  background: #fff;
  padding-left: 4%;
  padding-right: 4%;
  display: flow-root;
}
.info_ly h2 {
  text-align: center;
  margin-bottom: 20px;
}
.info_ly .inp {
  width: 49.3%;
  height: 52px;
  line-height: 52px;
  background: #f6f6f6;
  display: block;
  float: left;
  margin-bottom: 16px;
  text-indent: 22px;
}
.info_ly .inp:nth-child(2n) {
  float: right;
}
.info_ly .inp2 {
  width: 100%;
}
.info_ly textarea {
  height: 150px;
  background: #f6f6f6;
  text-indent: 22px;
  padding-top: 16px;
  width: 100%;
  display: block;
}
.info_ly .sub {
  height: 52px;
  line-height: 52px;
  background: var(--theme-color);
  width: 100%;
  text-align: center;
  color: #fff;
  display: block;
  margin-top: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.productshow_recommend .item .img {
  width: 100%;
  border-radius: 0px;
}
.text-overflow-line2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index-client {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
@media screen and (max-width: 1200px) {
  .index-client {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
  .index-client .sdsds:nth-of-type(10) {
    display: none;
  }
  .productshow_recommend .item {
    display: block;
    width: calc(100% - 20px);
    margin: 0;
    padding: 10px;
    overflow: hidden;
  }
  .news_list_wrap {
    flex-wrap: wrap;
  }
  .news_list_wrap .img_scale {
    flex: 0 0 49%;
  }
  .news_list_wrap .img_scale:nth-of-type(2) {
    margin: 0 0 0 2%;
  }
  .news_list_wrap .news_ul {
    margin-top: 30px;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 0 !important;
  }
  .news_list_wrap .news_ul a:nth-of-type(4) {
    display: grid;
  }
  .news_list_wrap .news_ul .item {
    grid-template-columns: 30% 70%;
  }
}
/* develop */
.aboutSix {
  background: url(../images/aboutSix-bj.jpg) no-repeat center/cover;
  background-attachment: fixed;
  padding: 80px 0;
}
.aboutSix .aboutTle h3 {
  color: #fff;
}
.aboutSix .aboutTle i {
  background: #fff;
}
.abSixSwiper1 {
  padding-top: 80px;
  max-width: 90%;
}
.abSixSwiper1 .box {
  cursor: pointer;
  padding: 20px 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.13);
  opacity: 0.5;
  min-height: 80px;
}
.abSixSwiper1 .box::after {
  content: '';
  position: absolute;
  left: 0;
  height: 0;
  width: 100%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.83);
  z-index: -1;
  transition: 0.5s;
}
.abSixSwiper1 .swiper-wrapper {
  align-items: flex-end;
}
.abSixSwiper1 .con {
  transform: translateY(0);
  transition: 0.6s;
}
.abSixSwiper1 .con h5 {
  font-weight: 400;
  color: #ffffff;
  font-size: 24px;
  position: relative;
  padding-bottom: 4px;
}
.abSixSwiper1 .con h5::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--subtheme-color);
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.abSixSwiper1 .con .text {
  color: #ffffff;
  font-size: var(--font16);
  transition: 0.5s;
  transform: translateY(0);
}
.abSixSwiper1 .con .text span {
  display: block;
}
.abSixSwiper1 .swiper-slide-active .box {
  opacity: 1;
  background: none;
  padding-bottom: 40px;
}
.abSixSwiper1 .swiper-slide-active .box::after {
  height: 150%;
}
.abSixSwiper1 .swiper-slide-active .con {
  margin-top: -32px;
}
.abSixSwiper1 .swiper-slide-active h5 {
  color: #333;
  color: var(--subtheme-color);
}
.abSixSwiper1 .swiper-slide-active h5::after {
  opacity: 1;
  visibility: visible;
}
.abSixSwiper1 .swiper-slide-active .text {
  color: #666666;
  transform: translateY(8px);
  display: block;
}
.aboutSix .swiperBox2 {
  margin-top: 60px;
  position: relative;
}
.aboutSix .swiperBox2 .swiper-pagination {
  top: auto;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #dcdcdc;
  display: none;
}
.swControls {
  display: flex;
  align-items: center;
}
.swControls .swjt {
  position: relative;
  margin: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  left: 0;
}
.swControls .swjt img {
  max-width: 70%;
}
.swControls .swjt.swiper-button-next {
  transform: rotate(180deg);
  right: 0;
}
.swpagnation {
  height: 2px;
  background: #7f8b9a;
  width: 90%;
  margin: auto;
}
.abSixSwiper2 {
  width: 90%;
  transform: translateY(-45px);
  padding-top: 4px;
}
.abSixSwiper2 .swiper-slide {
  text-align: center;
  cursor: pointer;
}
.abSixSwiper2 .swiper-slide i {
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.abSixSwiper2 .swiper-slide i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  left: 0;
}
.abSixSwiper2 h6 {
  color: #fff;
  font-size: 16px;
  margin-top: 12px;
  transition: 0.5s;
}
.abSixSwiper2 .swiper-slide-thumb-active h6 {
  color: var(--subtheme-color);
  font-size: 24px;
  transform: translateY(-4px);
  font-weight: bold;
}

.abSixSwiper2 .swiper-slide-thumb-active i::after {
  background: #e778176e;
  animation: shubiao 1s infinite linear 0.65s;
}
@keyframes shubiao {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(2);
  }
  66% {
    transform: scale(2.5);
  }
  100% {
    transform: scale(1);
  }
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.aboutSix .page_product_detail_tit {
  color: #fff;
  margin-bottom: 10px;
}
.aboutSix .aboutTle h3 {
  color: #fff;
  font-size: 34px;
}
.aboutEnv {
  padding: 80px 0;
  overflow: hidden;
}
.aboutEnv .page_product_detail_tit {
  color: #333;
  margin-bottom: 10px;
}
.aboutEnv .aboutTle h3 {
  color: #333;
  font-size: 34px;
}
.aboutEnv .aboutEnvSwiper {
  margin-top: 40px;
}
.aboutEnv .aboutEnvSwiper .swiper-button-next,
.aboutEnv .aboutEnvSwiper .swiper-button-prev {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 2px #fff solid;
}
.aboutEnv .aboutEnvSwiper .swiper-button-next i,
.aboutEnv .aboutEnvSwiper .swiper-button-prev i {
  color: #fff;
  font-size: 30px;
}
.aboutEnv .aboutEnvSwiper .swiper-button-prev {
  transform: rotate(180deg);
}
.aboutEnv .aboutEnvSwiper .swiper-button-next:hover,
.aboutEnv .aboutEnvSwiper .swiper-button-prev:hover {
  background: var(--subtheme-color);
  border-color: var(--subtheme-color);
}
.aboutEnv .aboutEnvSwiper .swiper-slide .box {
  position: relative;
}
.aboutEnv .aboutEnvSwiper .swiper-slide .box p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 50px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.page_cases_show_wrap {
  padding: 80px 0;
}
.page-one {
  padding: 80px 0;
}
.page_one_title {
  margin-bottom: 20px;
}
.page-one-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding-bottom: 30px;
  height: 100%;
}
.page-one-box-text {
  text-align: center;
  max-width: 96%;
  margin: 0 auto;
}
.page-one-box-text-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--subtheme-color);
  margin: 10px auto;
}
.page-one-box-img img {
  border-radius: 20px 20px 0 0;
}
.page-two-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  align-items: center;
  grid-template-columns: 100px calc(100% - 100px);
  grid-gap: 10px;
  height: 100%;
}
.page-two-box-text-title {
  border-bottom: 1px #e1e1e1 solid;
  margin-bottom: 20px;
}
.page-two-box-text-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--subtheme-color);
  margin: 0;
}
.page-two-box-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-three-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  text-align: center;
  display: grid;
  align-items: center;
  grid-template-columns: 100px calc(100% - 100px);
  grid-gap: 10px;
}
.page-three-box-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-three-box-text {
  text-align: left;
}
.swiperSolution .swiper-button-next,
.swiperSolution .swiper-button-prev {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 2px #fff solid;
}
.swiperSolution .swiper-button-next i,
.swiperSolution .swiper-button-prev i {
  color: #fff;
  font-size: 30px;
}
.swiperSolution .swiper-button-prev {
  transform: rotate(180deg);
}
.swiperSolution .swiper-button-next:hover,
.swiperSolution .swiper-button-prev:hover {
  background: var(--subtheme-color);
  border-color: var(--subtheme-color);
}
.swiperSolution .page_one_box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.swiperSolution .page_one_box span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 50px;
  background: linear-gradient(to right, #e91c20, rgba(0, 0, 0, 0));
  padding-left: 15px;
  color: #fff;
  font-size: 16px;
}
.page_banner {
  height: 650px;
  overflow: hidden;
}
.page_banner .img {
  height: 100%;
}
.page_banner .img img {
  height: 100%;
  object-fit: cover;
}
.page-ptwo-box {
  display: grid;
  align-items: center;
  grid-template-columns: 40% calc(60% - 20px);
  grid-gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.page-ptwo-box-text-title {
  border-bottom: 1px #e1e1e1 solid;
  margin-bottom: 20px;
}
.page-ptwo-box-text-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--subtheme-color);
  margin: 0;
}
.page-ptwo-box-text-desc p {
  display: flex;
}
.page-ptwo-box-text-desc i {
  color: var(--subtheme-color);
  margin-right: 10px;
}
.page-pthree-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  text-align: center;
  display: grid;
  align-items: center;
  grid-template-columns: 100px calc(100% - 100px);
  grid-gap: 10px;
}
.page-pthree-box-img {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-pthree-box-text {
  text-align: left;
}

.index-message {
  background: url(../images/m-bg.png) top center no-repeat;
  background-size: cover;
  width: 100%;
}
.message-contact {
  background: url(../images/m-c.png) top center no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 60px;
  margin-top: -80px;
}
.message-contact p {
  color: #fff;
  padding: 10px 0;
  margin: 0 20px;
  border-bottom: 1px rgba(255, 255, 255, 0.3) dashed;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.message-contact p:last-child {
  border-bottom: 0;
}
.message-contact p span {
  margin-left: 10px;
  font-weight: bold;
}
.message-contact p em {
  font-weight: normal;
  flex: 0 0 60px;
}
.message-form {
  margin-top: 60px;
}
.message-form input::placeholder,
.message-form textarea::placeholder {
  color: #fff;
}
.message-form input {
  border: 1px #fff solid;
  border-radius: 4px;
  background: transparent;
  width: 100%;
  color: #fff;
  padding: 10px 15px;
}
.message-form textarea {
  border: 1px #fff solid;
  border-radius: 4px;
  background: transparent;
  width: 100%;
  color: #fff;
  padding: 10px 15px;
}
.message-form .more-btn-thm .btn_a {
  background: #144aa7;
  border-color: #144aa7;
}
.message-form .more-btn-thm .btn_a:hover {
  color: #fff;
  font-weight: bold;
}
#about5 {
  background: url(../images/about4-four-bj.jpg) top center no-repeat;
  background-size: cover;
}
.page_product_list .list .item .tit h4,
.page_product_list .list .item .tit h6,
.page_product_list .list .item .tit p {
  color: #fff;
}
.page_product_list .list .item .tit h4 {
  font-size: 20px;
  font-weight: bold;
}
.page_product_list .list .item .tit h6 {
  margin-bottom: 20px;
}
.page_product_list .list .item .tit p {
  font-size: 16px;
  display: none;
}
.page_product_list .item {
  position: relative;
}
.page_product_list .item .tit {
  background: rgba(20, 74, 167, 0.9);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_product_list .item .tit span {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 2px #fff solid;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.page_product_list .item:hover .tit {
  background: rgba(20, 74, 167, 0.9);
  height: 100%;
  margin-bottom: 0;
}
.page_product_list .item:hover .tit h4 {
  color: #fff !important;
}
.page_product_list .item:hover .tit span {
  display: flex;
}
.page_product_list .item:hover .tit p {
  display: block;
}
.pdetailSwiper .swiper-button-next,
.pdetailSwiper .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #144aa7;
}
.pdetailSwiper .swiper-button-next i,
.pdetailSwiper .swiper-button-prev i {
  font-size: 24px;
}
