* {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 1px;
  box-sizing: border-box !important;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: none;
}

li {
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1400px;
  }
}
.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.ml-10 {
  margin-left: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 1600px) {
  .pb-30 {
    padding-bottom: 26px;
  }
  .p40 {
    padding: 36px;
  }
  .pt-70 {
    padding-top: 66px;
  }
  .pb-70 {
    padding-bottom: 66px;
  }
  .ml-10 {
    margin-left: 8px;
  }
  .mt-15 {
    margin-top: 13px;
  }
  .mb-15 {
    margin-bottom: 13px;
  }
  .mb-50 {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1440px) {
  .pb-30 {
    padding-bottom: 24px;
  }
  .p40 {
    padding: 34px;
  }
  .pt-70 {
    padding-top: 50px;
  }
  .pb-70 {
    padding-bottom: 50px;
  }
  .ml-10 {
    margin-left: 6px;
  }
  .mt-15 {
    margin-top: 10px;
  }
  .mb-15 {
    margin-bottom: 10px;
  }
  .mb-50 {
    margin-bottom: 42px;
  }
  .f14 {
    font-size: 14px;
  }
  .f34 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1280px) {
  .pb-30 {
    padding-bottom: 22px;
  }
  .p40 {
    padding: 32px;
  }
  .pt-70 {
    padding-top: 60px;
  }
  .pb-70 {
    padding-bottom: 60px;
  }
  .ml-10 {
    margin-left: 5px;
  }
  .mt-15 {
    margin-top: 8px;
  }
  .mb-15 {
    margin-bottom: 8px;
  }
  .mb-50 {
    margin-bottom: 40px;
  }
  .f14 {
    font-size: 12px;
  }
  .f34 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .pb-30 {
    padding-bottom: 18px;
  }
  .p40 {
    padding: 28px;
  }
  .pt-70 {
    padding-top: 55px;
  }
  .pb-70 {
    padding-bottom: 55px;
  }
  .ml-10 {
    margin-left: 5px;
  }
  .mt-15 {
    margin-top: 8px;
  }
  .mb-15 {
    margin-bottom: 8px;
  }
  .mb-50 {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 750px) {
  .p40 {
    padding: 20px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .mb-50 {
    margin-bottom: 20px;
  }
  .f34 {
    font-size: 16px;
  }
}
nav {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo img {
  height: 50px;
}
nav .navbar ul {
  display: flex;
}
nav .navbar ul li {
  position: relative;
}
nav .navbar ul li a {
  line-height: 70px;
  padding: 0 10px;
  display: block;
  position: relative;
  font-size: 15px;
}
nav .navbar ul li a::after {
  position: absolute;
  content: "";
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #14629f;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
nav .navbar ul li a:hover::after {
  transform: scaleX(0.5);
}
nav .navbar ul li .navSub {
  position: absolute;
  z-index: 2;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  background-color: #fff;
  display: none;
}
nav .navbar ul li .navSub ul {
  flex-direction: column;
  align-items: center;
}
nav .navbar ul li .navSub ul li a {
  line-height: 50px;
  border-bottom: 1px solid #eee;
}

footer .topImg {
  width: 100%;
  position: relative;
}
footer .topImg img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .topImg .box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
footer .topImg .box .title {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
footer .topImg .box .btn {
  margin-top: 24px;
  font-size: 16px;
  color: #fff;
  background: #00a0ea;
  padding: 10px 40px;
  border-radius: 24px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
footer .foot {
  height: 420px;
  display: flex;
}
footer .foot .left {
  background-color: #0e203e;
  width: 36.4%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
footer .foot .left > a {
  width: 100%;
  display: flex;
  min-height: 50px;
  height: 50%;
  align-items: center;
  justify-content: center;
}
footer .foot .left > a img {
  width: 30px;
  margin-right: 20px;
}
footer .foot .left > a span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
footer .foot .right {
  display: flex;
  flex: 1;
  position: relative;
  z-index: 1;
  height: 110%;
  margin-top: -42px;
  background-color: #fff;
  padding: 40px;
}
footer .foot .right .lx {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
footer .foot .right .lx h3 {
  font-weight: bold;
  margin-bottom: 14px;
}
footer .foot .right .lx p {
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
footer .foot .right .lx .min {
  font-size: 12px;
}
footer .foot .right .er {
  width: 30%;
}
footer .foot .right .er h3 {
  font-weight: bold;
}
footer .foot .right .er .imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 80%;
}
footer .foot .right .er .imgs a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 50%;
  aspect-ratio: 1/1;
}
footer .foot .right .er .imgs a img {
  height: 80%;
  display: block;
  margin-right: auto;
}

.mySwiperBanner .swiper-button-next:after,
.mySwiperBanner .swiper-button-prev:after {
  background-color: rgba(255, 255, 255, 0.5333333333);
  border-radius: 6px;
  font-size: 32px;
  padding: 12px 6px;
  color: #fff;
}
.mySwiperBanner .swiper-button-next,
.mySwiperBanner .swiper-rtl .swiper-button-prev {
  right: 5vw;
}
.mySwiperBanner .swiper-button-prev,
.mySwiperBanner .swiper-rtl .swiper-button-next {
  left: 5vw;
}
.mySwiperBanner .swiper-pagination-bullet {
  background: #fff;
  width: 10px;
  height: 10px;
}
.mySwiperBanner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.mySwiperBanner img {
  width: 100%;
  /*max-height: 600px;*/
  -o-object-fit: cover;
     object-fit: cover;
}

.product .container {
  padding-bottom: 0;
}
.product .container > .title span {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}
.product .container > .title p {
  font-size: 18px;
  font-weight: bold;
  color: #888888;
  margin-bottom: 40px;
}
.product .container .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product .container .list > .item img{
  top: 0px;
  transition: 0.3s;
  position: relative;
}
.product .container .list > .item:hover img {
  top: -10px;
  z-index: 2;
}
.product .container .list > .item a {
  padding: 8px;
  display: block;
  width: 100%;
  height: 100%;
}
.product .container .list > .item a img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.product .container .list .w66 {
  width: 66.66%;
  aspect-ratio: 2/1;
}
.product .container .list .w33 {
  width: 33.33%;
  aspect-ratio: 1/1;
}

.scheme {
  background-color: #d5effb;
}
.scheme .container {
  padding: 80px 0;
}
.scheme .container > .title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}
.scheme .container .list {
  display: flex;
  justify-content: space-between;
}
.scheme .container .list a {
  width: 49%;
  display: block;
  background-color: #fff;
  border-radius: 8px;
}
.scheme .container .list a span {
  display: block;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
}
.scheme .container .list a img {
  aspect-ratio: 5/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.about .container {
  padding: 150px 0;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
}
.about .container .left {
  width: 50%;
  padding-right: 20px;
}
.about .container .left .title {
  color: #2d67bb;
}
.about .container .left .title h3 {
  font-size: 42px;
}
.about .container .left .title h2 {
  font-size: 72px;
  margin-bottom: 20px;
}
.about .container .left .info {
  letter-spacing: 2px;
  line-height: 2;
  font-weight: bold;
  color: #666;
  padding-bottom: 35px;
  max-height: 220px;
      overflow-y: auto;
    margin-bottom: 20px;
}
.about .container .left .go {
  color: #2d67bb;
  font-weight: bold;
}
.about .container .logo {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}
.about .container .logo:hover span {
  background-position: center;
}
.about .container .logo span {
  font-size: 7.8vw;
  font-weight: 900;
  color: transparent;
  background-image: url("/static/upload/image/20240809/1723196881488326.jpg");
  background-clip: text;
  -webkit-background-clip: text;
  background-origin: content-box;
  background-size: cover;
  background-position: 10% 10%;
  transition: 0.8s;
}
.about .container .type {
  width: 100%;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}
.about .container .type .item {
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .container .type .item img {
  width: 60px;
}
.about .container .type .item .text {
  padding-left: 20px;
}
.about .container .type .item .text span {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.about .container .type .item .text p {
  font-size: 14px;
  color: #666;
  padding-left: 4px;
}

.about_12534 {
  background: url("/static/upload/image/20240815/1723712723499565.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.about_12534 .container .left {
  width: 50%;
}
.about_12534 .container .left .title {
  color: #2d67bb;
}
.about_12534 .container .left .title h3 {
  font-size: 52px;
  font-weight: bold;
}
.about_12534 .container .left .title h2 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about_12534 .container .left .info {
  color: #2d67bb;
}
.about_12534 .container .logo {
  width: 50%;
  font-size: 16px;
  display: block;
}
.about_12534 .container .type {
  background-color: #fff;
  padding-bottom: 30px;
  border-radius: 10px;
}

.advantage > .title {
  text-align: center;
  padding: 50px 0;
  font-size: 42px;
  font-weight: bold;
  color: #2d67bb;
}
.advantage .containerbox {
  display: flex;
  flex-wrap: wrap;
}
.advantage .containerbox > .img {
  width: 50%;
}
.advantage .containerbox > .img img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.advantage .containerbox .dom {
  width: 50%;
  background-color: #14629f;
  color: #fff;
  padding-left: 5%;
  padding-right: 10%;
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  height: 600px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.advantage .containerbox .dom .item {
  display: flex;
  padding: 25px 0;
}
.advantage .containerbox .dom .item .img {
  width: 32px;
}
.advantage .containerbox .dom .item .img img {
  width: 100%;
  aspect-ratio: 1/1;
}
.advantage .containerbox .dom .item .text {
  flex: 1;
  padding-left: 25px;
}
.advantage .containerbox .dom .item .text .title {
  display: flex;
  padding-bottom: 15px;
  justify-content: space-between;
  font-weight: bold;
}
.advantage .containerbox .dom .item .text .title div {
  font-size: 17px;
}
.advantage .containerbox .dom .item .text .title span {
  position: relative;
  line-height: 1.9;
}
.advantage .containerbox .dom .item .text .title span::before {
  content: "";
  position: absolute;
  right: 150%;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 1px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.advantage .containerbox .dom .item .text .desc {
  font-size: 13px;
  font-weight: 100;
  color: #fff;
  opacity: 0.8;
}

.box_342534 {
  padding: 50px 0;
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/common.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/keyframes.css */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/media.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/swiper2.css */
}
.box_342534 .box_3423 {
  text-align: center;
}
.box_342534 .indNews .container {
  margin: auto;
  padding: 0 10px;
}
.box_342534 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_342534 img {
  border: 0 none;
}
.box_342534 ul,
.box_342534 li {
  list-style: none;
}
.box_342534 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_342534 img {
  border: 0 none;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.box_342534 a img {
  border: 0 none;
}
.box_342534 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_342534 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_342534 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_342534 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_342534 .pb-20 {
  padding-bottom: 20px;
}
.box_342534 .p40 {
  padding: 40px;
}
.box_342534 .pb-70 {
  padding-bottom: 70px;
}
.box_342534 .mr-10 {
  margin-right: 10px;
}
.box_342534 .mt-15 {
  margin-top: 15px;
}
.box_342534 .mb-30 {
  margin-bottom: 30px;
}
.box_342534 .mt-50 {
  margin-top: 50px;
}
.box_342534 .f14 {
  font-size: 14px;
}
.box_342534 .f22 {
  font-size: 22px;
}
.box_342534 .f24 {
  font-size: 24px;
}
.box_342534 .f46 {
  font-size: 46px;
}
.box_342534 .color-white {
  color: white;
}
.box_342534 .color-666 {
  color: #666;
}
.box_342534 .color-888 {
  color: #888;
}
.box_342534 .dis-flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box_342534 .dis-flex-center {
  display: flex;
  align-items: center;
}
.box_342534 .dis-flex-between {
  display: flex;
  justify-content: space-between;
}
.box_342534 .dis-flex {
  display: flex;
}
.box_342534 .flex-column {
  flex-direction: column;
}
.box_342534 .position-relative {
  position: relative;
}
.box_342534 .flex-column {
  flex-direction: column;
}
.box_342534 .hmax {
  height: 100%;
}
.box_342534 .w50 {
  width: 50%;
}
.box_342534 .w48 {
  width: 48%;
}
.box_342534 .img {
  position: relative;
  overflow: hidden;
}
.box_342534 .line-height {
  line-height: 2;
}
.box_342534 .line-clamp {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box_342534 .line-clamp2 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .box_342534 .w50,
  .box_342534 .w48 {
    width: 100%;
  }
}
.box_342534 .position-relative {
  position: relative;
}
.box_342534 .mask-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transition: transform 0.6s;
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.box_342534 .inner {
  width: 80%;
  margin: 0 auto;
}
.box_342534 .ptb-70 {
  padding: 70px 0;
}
.box_342534 .indNews {
  /*background: url(http://www.hfhmdz.cn/static/home/images/bg4.png) no-repeat left top;*/
  background-size: 100% auto;
}
.box_342534 .indNews .left .img .newsimg {
  width: 100%;
  height: 565px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_342534 .indNews .left .img .txt {
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.box_342534 .indNews .left .img .txt .line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.24);
}
.box_342534 .indNews .left .img .txt .line::after {
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
  display: block;
  content: "";
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.box_342534 .indNews .left .img:hover .txt .line::after {
  width: 100%;
}
.box_342534 .indNews .left .img:hover .newsimg {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.box_342534 .indNews .left .img:hover {
  box-shadow: 0 0 10px rgba(0, 91, 172, 0.4);
}
.box_342534 .indNews .right .img img {
  width: 265px;
  height: 163px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_342534 .indNews .right .txt {
  width: calc(100% - 280px);
}
.box_342534 .indNews .right .txt .line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.box_342534 .indNews .right .txt .line::after {
  width: 0;
  height: 100%;
  background-color: #14629f;
  transition: all 0.3s;
  display: block;
  content: "";
  -webkit-transition: all 1s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.box_342534 .indNews .right li:hover .txt .line::after {
  width: 100%;
}
.box_342534 .indNews .right li:hover {
  color: #14629f;
}
.box_342534 .indNews .right li:hover .img {
  box-shadow: 0 0 10px rgba(0, 91, 172, 0.4);
}
.box_342534 .indNews .right li:hover .img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.box_342534 .flex-column {
  flex-direction: column;
}
@media screen and (max-width: 1600px) {
  .box_342534 .pb-20 {
    padding-bottom: 16px;
  }
  .box_342534 .p40 {
    padding: 36px;
  }
  .box_342534 .pb-70 {
    padding-bottom: 66px;
  }
  .box_342534 .mr-10 {
    margin-right: 8px;
  }
  .box_342534 .mt-15 {
    margin-top: 13px;
  }
  .box_342534 .mb-30 {
    margin-bottom: 26px;
  }
  .box_342534 .mt-50 {
    margin-top: 45px;
  }
}
@media screen and (max-width: 1440px) {
  .box_342534 .pb-20 {
    padding-bottom: 15px;
  }
  .box_342534 .p40 {
    padding: 34px;
  }
  .box_342534 .pb-70 {
    padding-bottom: 50px;
  }
  .box_342534 .mr-10 {
    margin-right: 6px;
  }
  .box_342534 .mt-15 {
    margin-top: 10px;
  }
  .box_342534 .mb-30 {
    margin-bottom: 24px;
  }
  .box_342534 .mt-50 {
    margin-top: 42px;
  }
}
@media screen and (max-width: 1200px) {
  .box_342534 .pb-20 {
    padding-bottom: 12px;
  }
  .box_342534 .p40 {
    padding: 32px;
  }
  .box_342534 .pb-70 {
    padding-bottom: 60px;
  }
  .box_342534 .mr-10 {
    margin-right: 5px;
  }
  .box_342534 .mt-15 {
    margin-top: 8px;
  }
  .box_342534 .mb-30 {
    margin-bottom: 22px;
  }
  .box_342534 .mt-50 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .box_342534 .pb-20 {
    padding-bottom: 15px;
  }
  .box_342534 .p40 {
    padding: 28px;
  }
  .box_342534 .pb-70 {
    padding-bottom: 55px;
  }
  .box_342534 .mr-10 {
    margin-right: 5px;
  }
  .box_342534 .mt-15 {
    margin-top: 8px;
  }
  .box_342534 .mb-30 {
    margin-bottom: 18px;
  }
  .box_342534 .mt-50 {
    margin-top: 35px;
  }
}
@media screen and (max-width: 750px) {
  .box_342534 .p40 {
    padding: 20px;
  }
  .box_342534 .pb-70 {
    padding-bottom: 20px;
  }
  .box_342534 .mt-50 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .box_342534 .inner {
    width: 86%;
    margin: 0 auto;
  }
  .box_342534 .ptb-70 {
    padding: 55px 0;
  }
  .box_342534 .f14 {
    font-size: 14px;
  }
  .box_342534 .f22 {
    font-size: 20px;
  }
  .box_342534 .f24 {
    font-size: 20px;
  }
  .box_342534 .f46 {
    font-size: 40px;
  }
  .box_342534 .indNews .left .img .newsimg {
    height: 500px;
  }
  .box_342534 .indNews .right .img img {
    height: 155px;
  }
}
@media screen and (max-width: 1240px) {
  .box_342534 .ptb-70 {
    padding: 50px 0;
  }
  .box_342534 .f14 {
    font-size: 14px;
  }
  .box_342534 .f22 {
    font-size: 20px;
  }
  .box_342534 .f24 {
    font-size: 20px;
  }
  .box_342534 .f46 {
    font-size: 32px;
  }
  .box_342534 .inner {
    width: 90%;
    margin: 0 auto;
  }
  .box_342534 .indNews .left .img .newsimg {
    height: 450px;
  }
  .box_342534 .indNews .right .img img {
    height: 135px;
    width: 200px;
  }
  .box_342534 .indNews .right .txt {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 1000px) {
  .box_342534 .ptb-70 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 750px) {
  .box_342534 .f14 {
    font-size: 12px;
  }
  .box_342534 .f22 {
    font-size: 16px;
  }
  .box_342534 .f24 {
    font-size: 16px;
  }
  .box_342534 .f46 {
    font-size: 20px;
  }
  .box_342534 .ptb-70 {
    padding: 20px 0;
  }
  .box_342534 .inner {
    width: 100%;
    padding: 0 20px;
  }
  .box_342534 .indNews .inner > .dis-flex-between {
    flex-direction: column;
  }
  .box_342534 .indNews .left .img .newsimg {
    height: 250px;
  }
  .box_342534 .indNews .left {
    margin-bottom: 20px;
  }
  .box_342534 .indNews .right li {
    margin-bottom: 15px;
  }
  .box_342534 .indNews .right .img img {
    width: 120px;
    height: 90px;
  }
  .box_342534 .indNews .right .txt {
    width: calc(100% - 140px);
  }
  .box_342534 .indNews .right .txt .color-666 {
    display: none;
  }
}

.box_42564536 {
  position: relative;
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/common.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/swiper2.css */
}
.box_42564536 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_42564536 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_42564536 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_42564536 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_42564536 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_42564536 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_42564536 .inner {
  width: 80%;
  margin: 0 auto;
}
.box_42564536 .proNav {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}
.box_42564536 .proNav .inner {
    display: flex;
    justify-content: center;
}
.box_42564536 .proNav a {
  line-height: 100px;
  text-align: center;
  font-size: 18px;
  white-space: nowrap;
  padding: 0 30px;
  position: relative;
}
.box_42564536 .proNav a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 35%;
  width: 1px;
  height: 30%;
  background-color: rgba(51, 51, 51, 0.5058823529);
}
.box_42564536 .proNav a:last-child::after {
  display: none;
}
.box_42564536 .proNav a:hover {
  color: #fff;
  background-color: #14629f;
}
.box_42564536 .proNav a.on {
  color: #fff;
  background-color: #14629f;
}
@media screen and (max-width: 1440px) {
  .box_42564536 .proNav a {
    line-height: 90px;
  }
}
@media screen and (max-width: 1280px) {
  .box_42564536 .proNav a {
    line-height: 80px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1040px) {
  .box_42564536 .proNav a {
    line-height: 70px;
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .box_42564536 .proNav .inner {
    width: 100%;
    padding: 0;
    overflow-x: scroll;
  }
  .box_42564536 .proNav .inner::-webkit-scrollbar {
    height: 2px;
  }
  .box_42564536 .proNav .inner::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    height: 2px;
  }
  .box_42564536 .proNav .inner::-webkit-scrollbar-track {
    background: #f1f1f1;
    height: 2px;
  }
  .box_42564536 .proNav .inner a {
    padding: 0 20px;
    line-height: 50px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1440px) {
  .box_42564536 .inner {
    width: 86%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1240px) {
  .box_42564536 .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .box_42564536 .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.pic img {
  width: 100%;
}

.box_3487959 {
  background-color: #2d3446;
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/common.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/media.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/swiper2.css */
  /*! CSS Used fontfaces */
}
.box_3487959 .container {
  margin: auto;
}
.box_3487959 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_3487959 ul,
.box_3487959 li {
  list-style: none;
}
.box_3487959 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_3487959 i {
  font-style: normal;
}
.box_3487959 h3 {
  font-weight: normal;
}
.box_3487959 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_3487959 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_3487959 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_3487959 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_3487959 .mt-10 {
  margin-top: 10px;
}
.box_3487959 .mb-60 {
  margin-bottom: 60px;
}
.box_3487959 .f46 {
  font-size: 46px;
}
.box_3487959 .f18 {
  font-size: 18px;
}
.box_3487959 .color-999 {
  color: #999;
}
.box_3487959 .text-uppercase {
  text-transform: uppercase;
}
.box_3487959 .DIN {
  font-family: "DIN";
}
.box_3487959 .inner {
  width: 80%;
  margin: 0 auto;
}
.box_3487959 .ptb-70 {
  padding: 70px 0;
}
.box_3487959 .white {
  color: #fff;
}
.box_3487959 .whlist {
  font-size: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
.box_3487959 .whlist li {
  display: inline-block;
  width: 32%;
  position: relative;
  margin-right: 1.5%;
  border: 1px solid #ddd;
  overflow: hidden;
  background-color: #fff;
}
.box_3487959 .whlist li:last-child {
  margin-right: 0;
}
.box_3487959 .whlist li:hover {
  box-shadow: 1px 1px 10px 1px rgb(210, 210, 210);
  border-radius: 10px;
}
.box_3487959 .whlist li .lin {
  border-radius: 10px;
}
.box_3487959 .whlist li {
  position: relative;
}
.box_3487959 .whlist li a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px 30px 35px 30px;
}
.box_3487959 .whlist li:hover a {
  border-color: #14629f;
}
.box_3487959 .whlist i {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: 20px 20px;
  opacity: 0;
  transition: 0.6s;
}
.box_3487959 .whlist i.bg1 {
  background-image: linear-gradient(45deg, #14629f 50%, transparent 0);
  transform: translate(-20%, 0%);
}
.box_3487959 .whlist i.bg2 {
  background-image: linear-gradient(45deg, transparent 50%, #14629f 0);
  transform: translate(20%, 0%);
}
.box_3487959 .whlist li:hover i.bg1,
.box_3487959 .whlist li:hover i.bg2 {
  transform: translate(0, 0);
  opacity: 1;
}
.box_3487959 .whlist .tupian {
  width: 100%;
  height: 222px;
  position: relative;
  background: url("http://www.hfhmdz.cn/static/home/images/zuan1.png") bottom no-repeat;
  transition: 0.5s;
}
.box_3487959 .whlist li:hover .tupian {
  background-image: url("http://www.hfhmdz.cn/static/home/images/zuan11.png");
}
.box_3487959 .whlist .hex {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 114px;
  height: 113px;
  transition: 2s;
  background: url("http://www.hfhmdz.cn/static/home/images/hex1.png") center no-repeat;
  margin-left: -57px;
  margin-top: -57px;
}
.box_3487959 .whlist li:hover .hex {
  background-image: url("http://www.hfhmdz.cn/static/home/images/hex11.png");
  transform: rotate(330deg);
}
.box_3487959 .whlist .pic {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
}
.box_3487959 .whlist .pic .fig {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.box_3487959 .whlist .i1 .p1 .fig {
  background: url("http://www.hfhmdz.cn/static/home/images/wh1.png") center no-repeat;
}
.box_3487959 .whlist .i1 .p2 .fig {
  background: url("http://www.hfhmdz.cn/static/home/images/wh11.png") center no-repeat;
}
.box_3487959 .whlist .i2 .p1 .fig {
  background: url("http://www.hfhmdz.cn/static/home/images/wh2.png") center no-repeat;
}
.box_3487959 .whlist .i2 .p2 .fig {
  background: url("http://www.hfhmdz.cn/static/home/images/wh22.png") center no-repeat;
}
.box_3487959 .whlist .i3 .p1 .fig {
  background: url("http://www.hfhmdz.cn/static/home/images/wh3.png") center no-repeat;
}
.box_3487959 .whlist .i3 .p2 .fig {
  background: url("http://www.hfhmdz.cn/static/home/images/wh33.png") center no-repeat;
}
.box_3487959 .rollover {
  transform-style: preserve-3d;
  position: relative;
  overflow: visible !important;
  transition: 1s;
}
.box_3487959 .rollover .p1,
.box_3487959 .rollover .p2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.box_3487959 .rollover .p2 {
  transform: rotateY(180deg);
}
.box_3487959 li:hover .rollover {
  transform: rotateY(180deg);
}
.box_3487959 .whlist li .wz {
  position: relative;
  z-index: 3;
}
.box_3487959 .whlist li h3 {
  font-size: 22px;
  color: #14629f;
  overflow: hidden;
  transition: 0.5s;
  margin-bottom: 15px;
  margin-top: 20px;
  min-height: auto;
}
.box_3487959 .whlist li .txt {
  font-size: 16px;
  color: #666;
  line-height: 30px;
  max-width: 240px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  transition: 0.5s;
}
.box_3487959 .whlist li:hover h3 {
  color: #fff;
}
.box_3487959 .whlist li:hover .txt {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .box_3487959 .whlist li {
    width: 100%;
    margin-top: 12px;
    margin-right: 0;
  }
  .box_3487959 .whlist .tupian {
    height: 160px;
  }
  .box_3487959 .whlist li .wz {
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .box_3487959 .whlist li h3 {
    font-size: 16px;
    line-height: 28px;
    height: 30px;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .box_3487959 .whlist li .txt {
    font-size: 12px;
    line-height: 20px;
    height: auto;
  }
  .box_3487959 .whlist li a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    padding: 0px 30px 15px 30px;
  }
}
@media screen and (max-width: 1600px) {
  .box_3487959 .mt-10 {
    margin-top: 8px;
  }
  .box_3487959 .mb-60 {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 1440px) {
  .box_3487959 .mt-10 {
    margin-top: 6px;
  }
  .box_3487959 .mb-60 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .box_3487959 .mt-10 {
    margin-top: 5px;
  }
  .box_3487959 .mb-60 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .box_3487959 .mt-10 {
    margin-top: 5px;
  }
  .box_3487959 .mb-60 {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 750px) {
  .box_3487959 .mb-60 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .box_3487959 .inner {
    width: 86%;
    margin: 0 auto;
  }
  .box_3487959 .ptb-70 {
    padding: 55px 0;
  }
  .box_3487959 .f46 {
    font-size: 40px;
  }
  .box_3487959 .f18 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1240px) {
  .box_3487959 .ptb-70 {
    padding: 50px 0;
  }
  .box_3487959 .f46 {
    font-size: 32px;
  }
  .box_3487959 .f18 {
    font-size: 16px;
  }
  .box_3487959 .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  .box_3487959 .ptb-70 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 750px) {
  .box_3487959 .f46 {
    font-size: 20px;
  }
  .box_3487959 .f18 {
    font-size: 14px;
  }
  .box_3487959 .ptb-70 {
    padding: 20px 0;
  }
  .box_3487959 .inner {
    width: 100%;
    padding: 0 20px;
  }
}
@font-face {
  font-family: "DIN";
  src: url("http://www.hfhmdz.cn/static/home/font/DIN-Medium.eot");
  src: url("http://www.hfhmdz.cn/static/home/font/DIN-Medium.eot?#iefix") format("embedded-opentype"), url("http://www.hfhmdz.cn/static/home/font/DIN-Medium.woff") format("woff"), url("http://www.hfhmdz.cn/static/home/font/DIN-Medium.ttf") format("truetype"), url("http://www.hfhmdz.cn/static/home/font/DIN-Medium.svg#DIN-Medium") format("svg");
  font-style: normal;
  font-weight: normal;
}

.culture {
  padding: 80px 0;
}
.culture .container > .title {
  text-align: center;
}
.culture .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.culture .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  width: 40%;
  margin: 0 15px;
  margin-bottom: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.culture .list .item .ico {
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 30px;
  margin-bottom: 10px;
  background-color: #122b88;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.culture .list .item .ico img {
  width: 100%;
}
.culture .list .item span {
  font-size: 18px;
  color: #333;
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
}
.culture .list .item p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  display: block;
  text-align: center;
}

.imgBox {
  width: 100%;
}
.imgBox img {
  width: 100%;
}

.productList {
  padding: 80px 0;
}
.productList .container .row {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
}
.productList .container .row li {
  margin-bottom: 20px;
}
.productList .container .row li a {
  display: block;
  width: 100%;
  border: 1px solid #eee;
  position: relative;
  transition: .3s;
  top: -0px;
}
.productList .container .row li a:hover{
  top: -15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.productList .container .row li a img {
  width: 100%;
}
.productList .container .fl-builder-pagination {
  padding-top: 30px;
}

.kbgs {
  padding: 80px 0;
  padding-top: 20px;
}
.kbgs .title {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
  -webkit-background-clip: text;
  color: transparent;
}
.kbgs .container .row a {
  display: block;box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; border-radius: 10px;
}
.kbgs .container .row a img {
  width: 100%;
  border-radius: 10px;
}

.mes {
  padding: 50px;
}
.mes .title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
.mes .title span {
  font-size: 42px;
}
.mes .title p {
  font-size: 20px;
}
.mes .box .form {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}
.mes .box .form input {
  display: block;
  width: 100%;
  border: 1px solid #eee;
  padding: 10px;
  margin-bottom: 20px;
}
.mes .box .form textarea {
  display: block;
  width: 100%;
  border: 1px solid #eee;
  padding: 10px;
  margin-bottom: 20px;
}
.mes .box .btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.mes .box .btn button {
  display: block;
  padding: 7px;
  background-color: #2a97d0;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  width: 120px;
  margin: 0 10px;
}

.casetype {
  background-color: #f4f4f4;
}
.casetype .container {
  padding: 50px 0;
  display: flex;
  justify-content: space-evenly;
}
.casetype .container div {
  border: 1px solid #dfdfdf;
  margin: 0 20px;
  height: 65px;
  width: 19.5%;
  border-radius: 2px;
}
.casetype .container div.active {
  background-color: #fff;
}
.casetype .container div a {
  height: 65px;
  width: 100%;
}
.casetype .container div span {
  font-size: 16px;
  font-weight: bold;
  color: #14629f;
}

.caseTypelist {
  padding-bottom: 50px;
  background-color: #f4f4f4;
}
.caseTypelist .video ul li {
  display: block;
  padding: 10px;
}
.caseTypelist .video ul li video {
  width: 100%;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  background-color: #eee;
  margin-bottom: 20px;
}
.caseTypelist .pdf ul {
  display: flex;
  flex-wrap: wrap;
}
.caseTypelist .pdf ul li {
  width: 49%;
  display: block;
  padding: 10px;
}
.caseTypelist .pdf ul li a {
  border: 1px solid #eee;
  background-color: #fff;
  display: flex;
  padding: 10px;
  border-radius: 10px;
}
.caseTypelist .pdf ul li a img {
  width: 50%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
.caseTypelist .pdf ul li a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.caseTypelist .pdf ul li a .text span {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  display: block;
  margin-top: 5%;
}
.caseTypelist .pdf ul li a .text div {
  text-align: right;
}
.caseTypelist .pdf ul li a .text div .btn {
  width: 180px;
  border: 1px solid #eee;
  color: #fff !important;
  background-color: #14629f !important;
}

.ppsl1 {
  padding: 80px 0;
  background-color: #e4eef7;
}
.ppsl1 .container .title {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
  -webkit-background-clip: text;
  color: transparent;
}
.ppsl1 .container .row > div {
  aspect-ratio: 10/17;
  background-image: url("/static/upload/image/20240819/1724056658644985.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.ppsl1 .container .row > div .text {
  position: absolute;
  top: 53%;
  font-size: 18px;
  width: 58%;
  left: 22%;
}

.dlzc {
  padding: 80px 0;
}
.dlzc .container .title {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
  -webkit-background-clip: text;
  color: transparent;
}
.dlzc .container .row {
  justify-content: center;
}
.dlzc .container .row > div > div {
  height: 100%;
  border-radius: 11px;
  border: 1px solid #eee;
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
}
.dlzc .container .row > div > div > div {
  background-color: #e4eef7;
  font-size: 20px;
  display: block;
  line-height: 50px;
  border-radius: 10px;
  text-align: center;
}
.dlzc .container .row > div > div > div span {
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}
.dlzc .container .row > div > div p {
  color: #fff;
  padding: 40px;
}

.yyfw {
  padding: 50px 0;
  background-color: #e4eef7;
}
.yyfw .container .title {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
  -webkit-background-clip: text;
  color: transparent;
}
.yyfw .container .mySwiper3 img {
  width: 100%;
}
.yyfw .container .mySwiper3 .swiper-button-next:after,
.yyfw .container .mySwiper3 .swiper-button-prev:after {
  background-color: rgba(255, 255, 255, 0.8156862745);
  border-radius: 6px;
  font-size: 32px;
  padding: 12px 6px;
  color: #1163a1;
}
.yyfw .container .mySwiper3 .swiper-button-next,
.yyfw .container .mySwiper3 .swiper-rtl .swiper-button-prev {
  right: 1vw;
}
.yyfw .container .mySwiper3 .swiper-button-prev,
.yyfw .container .mySwiper3 .swiper-rtl .swiper-button-next {
  left: 1vw;
}
.yyfw .container .mySwiper3 .swiper-pagination-bullet {
  background: #ffffff;
  width: 10px;
  height: 10px;
}
.yyfw .container .mySwiper3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
}

.lxfs {
  padding-bottom: 50px;
  padding-top: 50px;
}
.lxfs .container {
  display: flex;
}
.lxfs .container .mapBox {
  padding: 0px;
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}
.lxfs .container > div {
  width: 50%;
  padding: 0 50px;
}
.lxfs .container > div .left {
  width: 100%;
}
.lxfs .container > div .left .item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.lxfs .container > div .left .item img {
  width: 32px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lxfs .container > div .r {
  margin-top: 40px;
  flex: 1;
  display: flex;
  justify-content: center;
}
.lxfs .container > div .r .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}
.lxfs .container > div .r .item span {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.lxfs .container > div .r .item .img {
  width: 120px;
  height: 120px;
  padding: 10px;
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
  border-radius: 20px;
}
.lxfs .container > div .r .item .img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.rcfz {
  padding: 40px 0;
}
.rcfz .container .row {
  justify-content: center;
}
.rcfz .container .row .title {
  background-color: #e4eef7;
  font-size: 20px;
  display: block;
  line-height: 50px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.rcfz .container .row .title span {
  background: linear-gradient(180deg, #2f9dd4, #1163a1);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
}
.rcfz .container .row img {
  width: 100%;
  margin-top: -10px;
}

.fldy {
  padding: 50px 0;
  background-color: #f9fafc;
}
.fldy .row .col-md-3 {
  margin-top: 1rem;
}
.fldy .row > div > div {
  padding: 20px;
  background-color: #fff;
  height: 100%;
}
.fldy .row > div > div sub {
  color: #999;
}
.fldy .row > div > div .img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fldy .row > div > div .img img {
  width: 40%;
}
.fldy .row > div > div span {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.fldy .row > div > div p {
  color: #999;
  margin: 0;
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.8;
}

.box_2784365 {
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/aos.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/nav.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/qa.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/qaH5.css */
  /*! CSS Used from: https://www.qiansafety.com/static/libs/layui/css/layui.css */
  /*! CSS Used keyframes */
}
.box_2784365 body[aos-duration="1200"] [aos] {
  transition-duration: 1.2s;
}
.box_2784365 [aos^=fade][aos^=fade] {
  opacity: 0;
  transition-property: all;
}
.box_2784365 [aos^=fade][aos^=fade].aos-animate {
  opacity: 1;
}
.box_2784365 [aos=fade-up] {
  transform: translate(0, 100px);
}
.box_2784365 [aos=fade-up].aos-animate {
  transform: translate(0, 0);
}
.box_2784365 ul,
.box_2784365 li {
  list-style: none;
  text-decoration: none;
}
.box_2784365 * {
  margin: 0;
  padding: 0;
}
.box_2784365 img {
  display: block;
}
.box_2784365 ul,
.box_2784365 li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.box_2784365 .center {
  width: 1400px;
  margin: auto;
}
.box_2784365 .public-title h5 {
  font-size: 30px;
  font-weight: 400;
  color: #cbcbcd;
  font-family: Montserrat;
  line-height: 1;
  text-align: center;
}
.box_2784365 .public-title h3 {
  font-size: 44px;
  font-weight: bold;
  color: #000920;
  font-family: Source Han Sans CN;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
}
.box_2784365 .i10-indexBox {
  width: 100%;
  background-color: #ffffff;
}
.box_2784365 .i10-indexBox .i10-indexInnerBox {
  margin: 0 auto;
  padding: 80px 0;
}
.box_2784365 .i10-indexBox .container .container {
  width: 100%;
  height: 620px;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 0 !important;
}
.box_2784365 .i10-indexBox .container .left {
  width: 240px;
  height: 100%;
  border-radius: 6px;
  background: url("/static/upload/image/20240910/1725950533756859.jpg") no-repeat center/cover;
}
.box_2784365 .i10-indexBox .container .left .public-title {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  width: 100%;
  height: 100%;
}
.box_2784365 .i10-indexBox .container .left .public-title h3 {
  writing-mode: vertical-rl;
  text-align: left;
  margin-top: 0px;
  color: #ffffff;
}
.box_2784365 .i10-indexBox .container .left .public-title h5 {
  writing-mode: vertical-rl;
  text-align: left;
  margin-right: 30px;
  color: #7a92cd;
}
.box_2784365 .i10-indexBox .container ul {
  width: calc(100% - 240px - 20px);
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.box_2784365 .i10-indexBox .container ul li {
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100% - 20px) / 2);
  height: calc((100% - 20px) / 2);
  border-radius: 6px;
  background-color: #f7f7f7;
  position: relative;
}
.box_2784365 .i10-indexBox .container ul li:nth-of-type(2n) {
  margin-right: 0px;
}
.box_2784365 .i10-indexBox .container ul li:nth-of-type(3) {
  margin-right: 0px;
  width: 100%;
  background: url("https://www.qiansafety.com/static/addons/cms/images/i10-5.png") no-repeat center/cover;
}
.box_2784365 .i10-indexBox .container ul li .text {
  position: absolute;
  left: 50px;
  top: 60px;
}
.box_2784365 .i10-indexBox .container ul li .text h3 {
  font-size: 38px;
  color: #14629f;
  font-family: Montserrat;
  font-weight: bold;
}
.box_2784365 .i10-indexBox .container ul li .text h5 {
  font-size: 24px;
  color: #333333;
  font-family: Source Han Sans CN;
  font-weight: 400;
  margin: 45px 0 10px 0;
}
.box_2784365 .i10-indexBox .container ul li .text h6 {
  font-size: 18px;
  color: #727070;
  font-family: Source Han Sans CN;
  font-weight: 400;
}
.box_2784365 .i10-indexBox .container ul li img {
  position: absolute;
  right: 40px;
  top: 40px;
  animation: wh 4s linear infinite;
}
.box_2784365 .i10-indexBox .container ul li .nums {
  font-size: 110px;
  color: #e8ecf8;
  font-family: Montserrat;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 8px;
}
@media only screen and (max-width: 1560px) {
  .box_2784365 .public-title h5 {
    font-size: 20px;
  }
  .box_2784365 .public-title h3 {
    font-size: 34px;
  }
  .box_2784365 .i10-indexBox .container .left {
    width: 180px;
  }
  .box_2784365 .i10-indexBox .container ul {
    width: calc(100% - 180px - 20px);
  }
  .box_2784365 .i10-indexBox .container ul li img {
    height: 90px;
  }
  .box_2784365 .i10-indexBox .container ul li .text h3 {
    font-size: 32px;
  }
  .box_2784365 .i10-indexBox .container ul li .text h5 {
    font-size: 20px;
  }
  .box_2784365 .i10-indexBox .container ul li .text h6 {
    font-size: 16px;
  }
  .box_2784365 .i10-indexBox .container ul li .nums {
    font-size: 80px;
  }
  .box_2784365 .i10-indexBox .container ul li .text {
    top: 35px;
  }
}
@media only screen and (max-width: 760px) {
  .box_2784365 .center {
    width: 100%;
  }
  .box_2784365 .public-title h5 {
    font-size: 12px;
  }
  .box_2784365 .public-title h3 {
    font-size: 16px;
    margin-top: 5px;
  }
  .box_2784365 .i10-indexBox .i10-indexInnerBox {
    width: 95%;
    padding: 20px 0;
  }
  .box_2784365 .i10-indexBox .container {
    height: auto;
    flex-direction: column;
  }
  .box_2784365 .i10-indexBox .container .left {
    width: 100%;
    padding: 20px 0;
  }
  .box_2784365 .i10-indexBox .container .left .public-title h5 {
    writing-mode: unset;
    text-align: center;
    margin-right: 0px;
  }
  .box_2784365 .i10-indexBox .container .left .public-title h3 {
    writing-mode: unset;
    text-align: center;
    margin-top: 5px;
  }
  .box_2784365 .i10-indexBox .container .left .public-title {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
  }
  .box_2784365 .i10-indexBox .container ul {
    width: 100%;
  }
  .box_2784365 .i10-indexBox .container ul li {
    width: 100%;
    height: 110px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  .box_2784365 .i10-indexBox .container ul li .nums {
    font-size: 30px;
  }
  .box_2784365 .i10-indexBox .container ul li .text h3 {
    font-size: 14px;
  }
  .box_2784365 .i10-indexBox .container ul li .text {
    top: 18px;
    left: 27px;
  }
  .box_2784365 .i10-indexBox .container ul li .text h5 {
    font-size: 16px;
    margin: 10px 0 3px 0;
  }
  .box_2784365 .i10-indexBox .container ul li .text h6 {
    font-size: 12px;
  }
  .box_2784365 .i10-indexBox .container ul li img {
    top: 20px;
    right: 30px;
    height: 50px;
    animation: none;
  }
  .box_2784365 .i10-indexBox .container ul li:nth-of-type(3) img {
    right: 23px;
  }
}
.box_2784365 div,
.box_2784365 h3,
.box_2784365 h5,
.box_2784365 h6,
.box_2784365 li,
.box_2784365 ul {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.box_2784365 img {
  display: inline-block;
  border: none;
  vertical-align: middle;
}
.box_2784365 li {
  list-style: none;
}
.box_2784365 h3 {
  font-weight: 700;
}
.box_2784365 h5,
.box_2784365 h6 {
  font-weight: 500;
  font-size: 100%;
}
@keyframes wh {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.box_2398175498 {
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/font-awesome-4.7.0/css/font-awesome.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/aos.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/nav.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/qa.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/qaH5.css */
  /*! CSS Used from: https://www.qiansafety.com/static/libs/layui/css/layui.css */
}
.box_2398175498 .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_2398175498 .fa-long-arrow-right:before {
  content: "\f178";
}
.box_2398175498 body[aos-duration="1200"] [aos] {
  transition-duration: 1.2s;
}
.box_2398175498 [aos^=fade][aos^=fade] {
  opacity: 0;
  transition-property: all;
}
.box_2398175498 [aos^=fade][aos^=fade].aos-animate {
  opacity: 1;
}
.box_2398175498 [aos=fade-up] {
  transform: translate(0, 100px);
}
.box_2398175498 [aos=fade-up].aos-animate {
  transform: translate(0, 0);
}
.box_2398175498 [aos=fade-down] {
  transform: translate(0, -100px);
}
.box_2398175498 [aos=fade-down].aos-animate {
  transform: translate(0, 0);
}
.box_2398175498 a {
  list-style: none;
  text-decoration: none;
}
.box_2398175498 * {
  margin: 0;
  padding: 0;
}
.box_2398175498 img {
  display: block;
}
.box_2398175498 a {
  color: #333;
  text-decoration: none;
}
.box_2398175498 .center {
  width: 1400px;
}
.box_2398175498 .public-title h5 {
  font-size: 30px;
  font-weight: 400;
  color: #cbcbcd;
  font-family: Montserrat;
  line-height: 1;
  text-align: center;
}
.box_2398175498 .public-title h3 {
  font-size: 44px;
  font-weight: bold;
  color: #000920;
  font-family: Source Han Sans CN;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
}
.box_2398175498 .i2-indexBox {
  width: 100%;
  background-color: #f2f2f2;
}
.box_2398175498 .i2-indexBox .i2-indexInnerBox {
  margin: 0 auto;
  padding: 100px 0;
}
.box_2398175498 .i2-indexInnerBox > .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.box_2398175498 .i2-indexInnerBox .container {
  margin-top: 50px;
}
.box_2398175498 .i2-indexInnerBox .container .row {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 360px;
  width: 100%;
}
.box_2398175498 .i2-indexInnerBox .container .row:not(:first-of-type) {
  margin-top: 16px;
}
.box_2398175498 .i2-indexInnerBox .container .row .public {
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.box_2398175498 .i2-indexInnerBox .container .row .public img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_2398175498 .i2-indexInnerBox .container .row .left {
  width: calc(70% - 8px);
}
.box_2398175498 .i2-indexInnerBox .container .row .right {
  width: calc(30% - 8px);
}
.box_2398175498 .i2-indexInnerBox .container .row .public .flow-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0px;
  background: linear-gradient(to right, #14629f, rgba(20, 99, 159, 0.5137254902), rgba(15, 65, 154, 0.1));
  transition: 0.3s;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .title {
  position: absolute;
  top: 30px;
  left: 40px;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .title h3 {
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  font-family: Source Han Sans CN;
  transition: 0.3s;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .title .line {
  width: 40px;
  background: #ffffff;
  border-radius: 1px;
  height: 2px;
  margin-top: 15px;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .content {
  position: absolute;
  left: 40px;
  top: 100%;
  transition: 0.3s;
  opacity: 0;
}
.box_2398175498 .i2-indexInnerBox .container .row .public:hover .flow-bg {
  top: 0px;
}
.box_2398175498 .i2-indexInnerBox .container .row .public:hover .content {
  top: 110px;
  opacity: 1;
}
.box_2398175498 .i2-indexInnerBox .container .row .public:hover .title h3 {
  color: #14629f;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .content h6 {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 32px;
  font-family: Source Han Sans CN;
  width: 350px;
  word-break: break-all;
  text-align: justify;
}
.box_2398175498 .i2-indexInnerBox .container .row .left .content h6 {
  width: 520px;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .content a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-top: 40px;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .content a span {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  font-family: Source Han Sans CN;
  line-height: 1;
}
.box_2398175498 .i2-indexInnerBox .container .row .public .content a i {
  color: #ffffff;
  font-size: 18px;
  margin-left: 10px;
}
@media only screen and (max-width: 1560px) {
  .box_2398175498 .public-title h5 {
    font-size: 20px;
  }
  .box_2398175498 .public-title h3 {
    font-size: 34px;
  }
  .box_2398175498 .i2-indexBox .i2-indexInnerBox {
    padding: 80px 0;
  }
  .box_2398175498 .i2-indexInnerBox .container .row {
    height: 280px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content {
    left: 20px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .title h3 {
    font-size: 20px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .title {
    left: 20px;
    top: 15px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content h6 {
    width: 255px;
    font-size: 14px;
    line-height: 24px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .left .content h6 {
    width: 350px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content a {
    margin-top: 25px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content a span {
    font-size: 14px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public:hover .content {
    top: 75px;
    opacity: 1;
  }
}
@media only screen and (max-width: 760px) {
  .box_2398175498 .center {
    width: 100%;
  }
  .box_2398175498 .public-title h5 {
    font-size: 12px;
  }
  .box_2398175498 .public-title h3 {
    font-size: 16px;
    margin-top: 5px;
  }
  .box_2398175498 .i2-indexBox .i2-indexInnerBox {
    padding: 20px 0;
    width: 95%;
  }
  .box_2398175498 .i2-indexInnerBox .container {
    margin-top: 20px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row {
    flex-direction: column;
    height: auto;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .left {
    width: 100%;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .right {
    width: 100%;
  }
  .box_2398175498 .i2-indexInnerBox .container .row:not(:first-of-type) {
    margin-top: 0px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public {
    margin-top: 10px;
    height: 200px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row:first-of-type .public:first-of-type {
    margin-top: 0px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .title h3 {
    font-size: 14px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .title {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .title .line {
    margin-top: 7px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content {
    transition: none;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public:hover .content {
    left: 50%;
    top: 55px;
    width: 95%;
    transform: translateX(-50%);
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content h6 {
    width: 100%;
    font-size: 12px;
    line-height: 24px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content a {
    margin-top: 15px;
    width: -moz-max-content;
    width: max-content;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content a span {
    font-size: 12px;
  }
  .box_2398175498 .i2-indexInnerBox .container .row .public .content a i {
    font-size: 16px;
  }
  .box_2398175498 .i2-pc {
    display: none;
  }
}
.box_2398175498 div,
.box_2398175498 h3,
.box_2398175498 h5,
.box_2398175498 h6,
.box_2398175498 p {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.box_2398175498 a:active,
.box_2398175498 a:hover {
  outline: 0;
}
.box_2398175498 img {
  display: inline-block;
  border: none;
  vertical-align: middle;
}
.box_2398175498 h3 {
  font-weight: 700;
}
.box_2398175498 h5,
.box_2398175498 h6 {
  font-weight: 500;
  font-size: 100%;
}
.box_2398175498 a {
  color: #333;
  text-decoration: none;
}
.box_2398175498 a:hover {
  color: #777;
}

.box_13425523 {
  margin-bottom: 50px;
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/common.css?v=0.0.0 */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/swiper.css */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/mobile.css */
}
.box_13425523 > .container {
  padding: 0 !important;
}
.box_13425523 * {
  box-sizing: border-box;
  outline: none;
}
.box_13425523 ul,
.box_13425523 li {
  list-style: none;
}
.box_13425523 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_13425523 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_13425523 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_13425523 .pr-30 {
  padding-right: 30px;
}
.box_13425523 .pt-70 {
  padding-top: 70px;
}
.box_13425523 .p70 {
  padding: 70px;
}
.box_13425523 .mt-50 {
  margin-top: 50px;
}
.box_13425523 .mt-70 {
  margin-top: 70px;
}
.box_13425523 .f26 {
  font-size: 26px;
}
.box_13425523 .f30 {
  font-size: 30px;
}
.box_13425523 .f50 {
  font-size: 50px;
}
.box_13425523 .color-blue {
  color: #14629f;
}
.box_13425523 .color-white {
  color: white;
}
.box_13425523 .color-white4 {
  color: rgba(255, 255, 255, 0.4);
}
.box_13425523 .color-666 {
  color: #666;
}
.box_13425523 .bg-f9 {
  background-color: #f9fafc;
}
.box_13425523 .flex-between {
  display: flex;
  justify-content: space-between;
}
.box_13425523 .text-justify {
  text-align: justify;
}
.box_13425523 .text-right {
  text-align: right;
}
.box_13425523 .font-weight {
  font-weight: bold;
}
.box_13425523 .line-height2-4 {
  line-height: 2.4;
}
.box_13425523 .line-height1-6 {
  line-height: 1.6;
}
.box_13425523 .radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .box_13425523 .wapFlex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .box_13425523 .line-height2-4 {
    line-height: 2;
  }
}
@media screen and (max-width: 1600px) {
  .box_13425523 .pr-30 {
    padding-right: 26px;
  }
  .box_13425523 .pt-70 {
    padding-top: 66px;
  }
  .box_13425523 .p70 {
    padding: 66px;
  }
  .box_13425523 .mt-50 {
    margin-top: 45px;
  }
  .box_13425523 .mt-70 {
    margin-top: 66px;
  }
}
@media screen and (max-width: 1440px) {
  .box_13425523 .pr-30 {
    padding-right: 24px;
  }
  .box_13425523 .pt-70 {
    padding-top: 50px;
  }
  .box_13425523 .p70 {
    padding: 50px;
  }
  .box_13425523 .mt-50 {
    margin-top: 42px;
  }
  .box_13425523 .mt-70 {
    margin-top: 50px;
  }
  .box_13425523 .f26 {
    font-size: 22px;
  }
  .box_13425523 .f30 {
    font-size: 26px;
  }
  .box_13425523 .f50 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .box_13425523 .pr-30 {
    padding-right: 22px;
  }
  .box_13425523 .pt-70 {
    padding-top: 60px;
  }
  .box_13425523 .p70 {
    padding: 60px;
  }
  .box_13425523 .mt-50 {
    margin-top: 40px;
  }
  .box_13425523 .mt-70 {
    margin-top: 60px;
  }
  .box_13425523 .f26 {
    font-size: 16px;
  }
  .box_13425523 .f30 {
    font-size: 18px;
  }
  .box_13425523 .f50 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .box_13425523 .pr-30 {
    padding-right: 18px;
  }
  .box_13425523 .pt-70 {
    padding-top: 55px;
  }
  .box_13425523 .p70 {
    padding: 55px;
  }
  .box_13425523 .mt-50 {
    margin-top: 35px;
  }
  .box_13425523 .mt-70 {
    margin-top: 55px;
  }
}
@media screen and (max-width: 750px) {
  .box_13425523 .pt-70 {
    padding-top: 20px;
  }
  .box_13425523 .p70 {
    padding: 20px;
  }
  .box_13425523 .mt-50 {
    margin-top: 20px;
  }
  .box_13425523 .mt-70 {
    margin-top: 20px;
  }
  .box_13425523 .f26 {
    font-size: 14px;
  }
  .box_13425523 .f30 {
    font-size: 16px;
  }
  .box_13425523 .f50 {
    font-size: 20px;
  }
}
.box_13425523 .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.box_13425523 .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.box_13425523 .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.box_13425523 .swiper-container-pointer-events {
  touch-action: pan-y;
}
.box_13425523 .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.box_13425523 .swiper-container-autoheight,
.box_13425523 .swiper-container-autoheight .swiper-slide {
  height: auto;
}
.box_13425523 .swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.box_13425523 .swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.box_13425523 .history .left {
  width: 28.8%;
  background: url(http://www.panhuikj.com/static/home/images/historyBg.png) no-repeat right top #14629f;
}
.box_13425523 .history .left ul li {
  cursor: pointer;
}
.box_13425523 .history .left ul li:hover {
  color: #fff;
}
.box_13425523 .history .left ul .on {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.box_13425523 .history .right {
  width: 71.2%;
}
.box_13425523 .history .right .swiper-container .swiper-slide {
  padding: 0 1px;
}
.box_13425523 .historycon {
  max-height: 460px;
  overflow-y: scroll;
}
.box_13425523 .historycon::-webkit-scrollbar {
  width: 2px;
}
.box_13425523 .historycon::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--green);
  width: 2px;
}
.box_13425523 .historycon::-webkit-scrollbar-track {
  border-radius: 3px;
  background: #e0eaf4;
  width: 2px;
}
@media screen and (max-width: 1440px) {
  .box_13425523 .historycon {
    max-height: 380px;
  }
}
@media screen and (max-width: 750px) {
  .box_13425523 .history .left,
  .box_13425523 .history .right {
    width: 100%;
  }
  .box_13425523 .historyTab {
    margin-top: 0;
  }
  .box_13425523 .historycon {
    max-height: 280px;
  }
}

.box_56325465 {
  /*! CSS Used from: https://www.tecmen.cn/static/modules/cms/css/style.css */
  /*! CSS Used from: https://www.tecmen.cn/static/modules/cms/css/common.css */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used keyframes */
}
.box_56325465 * {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}
.box_56325465 img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
.box_56325465 li {
  list-style: none;
}
.box_56325465 h2 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
.box_56325465 .container {
  margin: 0 auto;
  /*width: 84.077%;*/
  /*max-width: 1600px;*/
}
/*@media (max-width: 1580px) {*/
/*  .box_56325465 .container {*/
/*    width: 84%;*/
/*  }*/
/*}*/
/*@media (max-width: 1260px) {*/
/*  .box_56325465 .container {*/
/*    width: 90%;*/
/*  }*/
/*}*/
.box_56325465 img {
  width: 100%;
  height: 100%;
  border: 0;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_56325465 p,
.box_56325465 li {
  text-decoration: none;
}
.box_56325465 p {
  margin: 0;
}
.box_56325465 *:focus {
  outline: none !important;
  box-shadow: none !important;
}
.box_56325465 *::after,
.box_56325465 *::before {
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.box_56325465 .font14 {
  font-size: 14px;
}
.box_56325465 .font20 {
  font-size: 20px;
}
@media (max-width: 1580px) {
  .box_56325465 .font14 {
    font-size: 12px;
  }
  .box_56325465 .font20 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .box_56325465 .g_map_box {
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 767px) {
  .box_56325465 .g_map_box {
    overflow-x: auto;
    width: 100%;
  }
}
.box_56325465 .g_map_box .g_map {
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .box_56325465 .g_map_box .g_map {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .box_56325465 .g_map_box .g_map {
    width: 500px;
    height: 100%;
  }
}
.box_56325465 .g_map_box .g_map .core {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 0 0.29rem rgba(0, 0, 0, 0.17);
  position: absolute;
  left: 76.2%;
  top: 46%;
  z-index: 10;
}
@media (max-width: 991px) {
  .box_56325465 .g_map_box .g_map .core {
    width: 28px;
    height: 28px;
    left: 74.2%;
    top: 42%;
  }
}
.box_56325465 .g_map_box .g_map .core img {
  width: 50%;
  height: auto;
}
.box_56325465 .g_map_box .g_map .country li {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 10;
}
.box_56325465 .g_map_box .g_map .country li img {
  width: 13px;
  height: auto;
  background: #fff;
}
.box_56325465 .g_map_box .g_map .country li p {
  margin-left: 6px;
  white-space: nowrap;
  font-weight: bold;
}
.box_56325465 .g_map_box .g_map .country .cou1 {
  left: 75%;
  top: 20%;
}
.box_56325465 .g_map_box .g_map .country .cou2 {
  left: 81.5%;
  top: 39%;
}
.box_56325465 .g_map_box .g_map .country .cou3 {
  left: 84%;
  top: 42%;
}
.box_56325465 .g_map_box .g_map .country .cou4 {
  left: 94%;
  top: 88%;
}
.box_56325465 .g_map_box .g_map .country .cou5 {
  left: 80%;
  top: 53%;
}
.box_56325465 .g_map_box .g_map .country .cou6 {
  left: 84%;
  top: 76%;
}
.box_56325465 .g_map_box .g_map .country .cou7 {
  left: 76%;
  top: 57%;
}
.box_56325465 .g_map_box .g_map .country .cou8 {
  left: 53%;
  top: 79%;
}
.box_56325465 .g_map_box .g_map .country .cou9 {
  left: 28%;
  top: 83%;
}
.box_56325465 .g_map_box .g_map .country .cou10 {
  left: 34%;
  top: 68%;
}
.box_56325465 .g_map_box .g_map .country .cou11 {
  left: 18%;
  top: 40%;
}
.box_56325465 .g_map_box .g_map .country .cou12 {
  left: 17%;
  top: 26%;
}
.box_56325465 .g_map_box .g_map .country .cou14 {
  left: 52%;
  top: 18%;
}
.box_56325465 .g_map_box .g_map .country .cou15 {
  left: 50%;
  top: 31%;
}
.box_56325465 .g_map_box .g_map .country .cou16 {
  left: 59%;
  top: 50%;
}
.box_56325465 .g_map_box .g_map .country .cou17 {
  left: 75%;
  top: 62%;
}
.box_56325465 .g_map_box .g_map .country .cou18 {
  left: 18%;
  top: 49%;
}
.box_56325465 .g_map_box .g_map .country .cou20 {
  left: 41.5%;
  top: 20%;
}
.box_56325465 .g_line {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.box_56325465 .g_line svg {
  width: 100%;
  height: 100%;
}
.box_56325465 .g_line svg .st91 {
  z-index: 1;
  fill: none;
  stroke: #14629f;
  stroke-width: 1;
  stroke-miterlimit: 10;
  stroke-dashoffset: 800;
  stroke-dasharray: 800;
  animation: animation-line 8.5s ease-in forwards infinite;
}
.box_56325465 .sub_h2 {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .box_56325465 .sub_h2 {
    font-size: 28px;
  }
}
.box_56325465 .about_tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.box_56325465 .about_tit span {
  color: #999;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .box_56325465 .about_tit span {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.box_56325465 .about_tit h2 {
  text-align: center;
  line-height: 1.2;
}
.box_56325465 .about_cj .ahout_map .g_map_box .core::after {
  animation: moveh 3s infinite linear;
  -webkit-animation: moveh 3s infinite linear;
}
.box_56325465 .about_cj .ahout_map .g_map_box .core::before {
  animation: moveh 3s infinite linear;
  -webkit-animation: moveh 3s infinite linear;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.box_56325465 .about_cj .ahout_map {
  margin-top: 55px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .box_56325465 .about_cj .ahout_map {
    flex-direction: column;
  }
}
.box_56325465 .about_cj .ahout_map .g_map_box {
  width: 100%;
}
@media (max-width: 1580px) {
  .box_56325465 .about_cj .ahout_map .g_map_box {
    margin-left: 0;
  }
}
.box_56325465 .about_cj .ahout_map .g_map_box .img {
  width: 100%;
}
.box_56325465 .about_cj .ahout_map .g_map_box .core .core_box {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}
.box_56325465 .about_cj .ahout_map .g_map_box .core:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  background: rgba(20, 99, 159, 0.6980392157);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10;
}
.box_56325465 .about_cj .ahout_map .g_map_box .core:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  background: rgba(20, 99, 159, 0.3098039216);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10;
}
.box_56325465 .about_cj .ahout_map .about_cj_r {
  z-index: 10;
  margin-right: 0.22rem;
  width: 3.5rem;
  box-shadow: 8px 8px 50px 0px rgba(0, 0, 0, 0.07);
  background: #fff;
  padding: 0.3rem 0.25rem 0.52rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .box_56325465 .about_cj .ahout_map .about_cj_r {
    width: 100%;
  }
}
.box_56325465 .about_cj .ahout_map .about_cj_r > img {
  height: 2rem;
  margin-bottom: 0.29rem;
}
@media (max-width: 991px) {
  .box_56325465 .about_cj .ahout_map .about_cj_r > img {
    height: auto;
  }
}
.box_56325465 .about_cj .ahout_map .about_cj_r .add {
  display: flex;
  align-items: center;
  margin-bottom: 0.12rem;
}
.box_56325465 .about_cj .ahout_map .about_cj_r .add svg {
  width: 23px;
  height: 23px;
  margin-right: 0.14rem;
}
@media (max-width: 1260px) {
  .box_56325465 .about_cj .ahout_map .about_cj_r .add svg {
    width: 18px;
    height: 18px;
  }
}
.box_56325465 .about_cj .ahout_map .about_cj_r .add svg path {
  fill: #333;
}
.box_56325465 .about_cj .ahout_map .about_cj_r .g_p {
  padding-right: 0.1rem;
}
.box_56325465 .about_cj .ahout_map .about_cj_r .g_p p {
  line-height: 1.9;
  color: #666;
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill: #858585;
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill: #333;
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill: #292929;
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
@media all {
  .box_56325465 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
@keyframes animation-line {
  0% {
    stroke-dashoffset: 800;
  }
  25% {
    stroke-dashoffset: 0px;
  }
  50% {
    stroke-dashoffset: 0px;
  }
  75% {
    stroke-dashoffset: -800;
  }
  100% {
    stroke-dashoffset: -800;
  }
}
@keyframes moveh {
  0% {
    bottom: 0.5rem;
  }
  50% {
    bottom: 0.3rem;
  }
  100% {
    bottom: 0.5rem;
  }
}
@keyframes moveh {
  0% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    -webkit-transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.box_2352152 {
  /*! CSS Used from: https://www.pisengroup.com/Themes/css/base.css */
  /*! CSS Used from: https://www.pisengroup.com/Themes/css/page.css?v=2.0 */
}
.box_2352152 a {
  background: 0 0;
}
.box_2352152 a:active,
.box_2352152 a:hover {
  outline: 0;
}
.box_2352152 img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}
.box_2352152 * {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
.box_2352152 a {
  cursor: pointer;
  text-decoration: none;
}
.box_2352152 a {
  cursor: pointer;
}
.box_2352152 .cf:before,
.box_2352152 .cf:after {
  display: table;
  content: " ";
}
.box_2352152 .cf:after {
  clear: both;
}
.box_2352152 .frec-tit {
  padding: 20px 0;
  color: #333;
  font-size: 24px;
  text-align: center;
}
.box_2352152 .frec-cont {
  padding-top: 20px;
}
.box_2352152 .frec-cont .tl {
  display: inline-block;
  float: left;
  width: 49%;
}
.box_2352152 .frec-cont .tr {
  display: inline-block;
  float: right;
  width: 49%;
}
.box_2352152 .frec-cont {
  text-align: center;
}
.box_2352152 .frec-cont a {
  position: relative;
  top: 0;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  transition: all 0.2s ease-in;
}
.box_2352152 .frec-cont a img {
  width: 100%;
}
.box_2352152 .frec-cont a:hover {
  top: -5px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}
.box_2352152 .frec-cont span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  margin-top: -50px;
  display: none;
  width: 100%;
  height: 100px;
  padding-top: 70px;
  background-image: url(https://www.pisengroup.com/Themes/images/zoom.png);
  background-repeat: no-repeat;
  background-position: top center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}
.box_2352152 .frec-cont a:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.box_2352152 .frec-cont a:hover:after {
  display: block;
}
.box_2352152 .frec-cont a:hover span {
  display: block;
}
.box_2352152 .frec-tit {
  position: relative;
}

.box_79124852 {
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/common.css?v=0.0.0 */
  /*! @import http://www.panhuikj.com/static/home/font/iconfont.css */
  /*! end @import */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/mobile.css */
  /*! CSS Used fontfaces */
}
.box_79124852 .container {
  margin: 0 auto;
}
.box_79124852 .iconfont {
  font-family: "iconfont" !important;
  font-size: 20px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_79124852 .icon-arrow-right2-copy:before {
  content: "\ee4b";
}
.box_79124852 .iconfont {
  font-size: 20px;
}
.box_79124852 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_79124852 img {
  border: 0 none;
}
.box_79124852 ul,
.box_79124852 li {
  list-style: none;
}
.box_79124852 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_79124852 img {
  border: 0 none;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.box_79124852 a img {
  border: 0 none;
}
.box_79124852 i {
  font-style: normal;
}
.box_79124852 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_79124852 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_79124852 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_79124852 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_79124852 .p5 {
  padding: 5px;
}
.box_79124852 .pb-30 {
  padding-bottom: 30px;
}
.box_79124852 .p40 {
  padding: 40px;
}
.box_79124852 .pt-70 {
  padding-top: 70px;
}
.box_79124852 .pb-70 {
  padding-bottom: 70px;
}
.box_79124852 .ml-10 {
  margin-left: 10px;
}
.box_79124852 .mt-15 {
  margin-top: 15px;
}
.box_79124852 .mb-15 {
  margin-bottom: 15px;
}
.box_79124852 .mb-50 {
  margin-bottom: 50px;
}
.box_79124852 .f14 {
  font-size: 14px;
}
.box_79124852 .f34 {
  font-size: 34px;
}
.box_79124852 .color-blue {
  color: #14629f;
}
.box_79124852 .color-white {
  color: white;
}
.box_79124852 .color-666 {
  color: #666;
}
.box_79124852 .bg-f9 {
  background-color: #f9fafc;
}
.box_79124852 .bg-blue {
  background-color: #14629f;
}
.box_79124852 .flex-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box_79124852 .flex-center {
  display: flex;
  align-items: center;
}
.box_79124852 .flex {
  display: flex;
}
.box_79124852 .flex-wrap {
  flex-wrap: wrap;
}
.box_79124852 .img {
  position: relative;
  overflow: hidden;
}
.box_79124852 .transition {
  transition: all 0.36s;
}
.box_79124852 .line-height {
  line-height: 2;
}
.box_79124852 .line-clamp {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box_79124852 .line-clamp2 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box_79124852 .radius50 {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.box_79124852 .w82 {
  width: 82%;
  margin: 0 auto;
}
.box_79124852 .linka a:hover {
  color: #14629f;
}
.box_79124852 .solutionList li {
  width: 48.5%;
  margin-right: 3%;
}
.box_79124852 .solutionList li:nth-child(2n) {
  margin-right: 0;
}
.box_79124852 .solutionList li .more .radius50 {
  width: 20px;
  height: 20px;
}
.box_79124852 .solutionList .logo-div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 33;
}
.box_79124852 .solutionList .img img {
  aspect-ratio: 5/3;
  border: 0 none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_79124852 .solutionList .logo-topdiv {
  position: absolute;
  top: 0;
  height: 0;
  bottom: 50%;
  background: #14629f;
  right: 0;
  left: 0;
  transition: all .5s;
  opacity: 0.8;
}
.box_79124852 .solutionList .logo-bottomdiv {
  position: absolute;
  height: 0;
  bottom: 0;
  background: #14629f;
  right: 0;
  left: 0;
  transition: all .5s;
  opacity: 0.8;
}
.box_79124852 .solutionList .logo-div img {
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 33;
  transition: all 0.6s;
  opacity: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 50% !important;
  height: auto !important;
}
.box_79124852 .solutionList li:hover .logo-topdiv,
.box_79124852 .solutionList li:hover .logo-bottomdiv {
  height: 50%;
}
.box_79124852 .solutionList li:hover .logo-div img {
  opacity: 1;
  transition-delay: 0.4s;
}
.box_79124852 .solutionList li:hover .img > img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.box_79124852 .solutionList li:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 10px rgba(16, 51, 115, 0.2);
  -webkit-transform: translateY(-12px);
  -moz-transform: translateY(-12px);
  -ms-transform: translateY(-12px);
  -o-transform: translateY(-12px);
}
.box_79124852 .solutionList li .tit span {
  background-image: linear-gradient(currentColor 0, currentColor 0);
  background-image: linear-gradient(currentColor 0 0);
  background-position: 0 calc(100% - 1px);
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
  -webkit-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
  -moz-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
  -ms-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
  -o-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
}
.box_79124852 .solutionList li:hover .tit span {
  background-position: 100% calc(100% - 1px);
  background-size: 100% 1px;
}
@media screen and (max-width: 1440px) {
  .box_79124852 .w82 {
    width: 90%;
  }
}
@media screen and (max-width: 1040px) {
  .box_79124852 .w82 {
    width: 96%;
  }
}
@media screen and (max-width: 750px) {
  .box_79124852 .w82 {
    width: 100%;
    padding: 0 20px;
  }
  .box_79124852 .iconfont {
    font-size: 14px;
  }
  .box_79124852 .solutionList li {
    width: 100%;
    margin-right: 0%;
  }
}
@font-face {
  font-family: "iconfont";
  src: url("http://www.panhuikj.com/static/home/font/iconfont.woff2?t=1695353212471") format("woff2"), url("http://www.panhuikj.com/static/home/font/iconfont.woff?t=1695353212471") format("woff"), url("http://www.panhuikj.com/static/home/font/iconfont.ttf?t=1695353212471") format("truetype");
}

.box_325432 {
  /*! CSS Used from: https://www.battsysbattery.cn/css/layout.css */
  /*! CSS Used from: https://www.battsysbattery.cn/css/layoutmin.css */
}
.box_325432 div,
.box_325432 p,
.box_325432 dl,
.box_325432 dt,
.box_325432 dd,
.box_325432 img {
  margin: 0;
  padding: 0;
}
.box_325432 strong {
  padding: 0;
  margin: 0;
}
.box_325432 img {
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_325432 .document_width {
  width: 1540px;
  box-sizing: border-box;
  margin: auto;
  box-sizing: border-box;
}
.box_325432 .nytt {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 25px;
  text-align: center;
}
.box_325432 .nytt strong {
  width: 100%;
  height: auto;
  line-height: 46px;
  font-size: 42px;
  color: #333;
  font-weight: bold;
  float: left;
}
.box_325432 .aboutdiv4 {
  width: 100%;
  height: auto;
  float: left;
  padding: 80px 0;
  background: #fff;
}
.box_325432 .aboutdiv4 dl {
  width: 20%;
  height: auto;
  float: left;
  background: #f2f4f9;
  border-radius: 170px;
  border: 1px solid #fff;
  box-sizing: border-box;
  overflow: hidden;
}
.box_325432 .aboutdiv4 dl dd {
  width: 100%;
  height: 360px;
  float: left;
  padding: 60px 50px 0 50px;
  text-align: center;
  box-sizing: border-box;
  /*overflow: hidden;*/
}
.box_325432 .aboutdiv4 dl dd strong {
  width: 100%;
  height: auto;
  float: left;
  font-size: 22px;
  line-height: 26px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}
.box_325432 .aboutdiv4 dl dd img {
  width: 48px;
  height: auto;
  margin: 15px auto;
  display: block;
}
.box_325432 .aboutdiv4 dl dd p {
    position: relative;
  width: 100%;
  height: auto;
  float: left;
  font-size: 15px;
  line-height: 24px;
  color: #777;
  text-align: left;
  background: url(https://www.battsysbattery.cn/images/lyd.png) left 11px no-repeat;
  padding-left: 8px;
  background-size: 4px auto !important;
  box-sizing: border-box;
}
.box_325432 .aboutdiv4 dl dt {
  width: 100%;
  height: 360px;
  float: left;
}
.box_325432 .aboutdiv4 dl {
  position: relative;
  top: 0;
  transition: 0.3s;
}
.box_325432 .aboutdiv4 dl:hover {
  top: -10px;
}
.box_325432 .aboutdiv4 dl dt img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
@media only screen and (max-width: 1650px) {
  .box_325432 .document_width {
    width: 1380px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1480px) {
  .box_325432 .document_width {
    width: 1200px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432 .nytt strong {
    font-size: 36px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 1270px) {
  .box_325432 .document_width {
    width: 750px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432 .nytt strong {
    font-size: 26px;
    line-height: 32px;
  }
  .box_325432 .aboutdiv4 dl {
    width: 50%;
  }
}
@media only screen and (max-width: 800px) {
  .box_325432 .document_width {
    width: 92%;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 650px) {
  .box_325432 .nytt strong {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 560px) {
  .box_325432 .document_width {
    width: 95%;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432 .aboutdiv4 {
    padding: 40px 0;
  }
  .box_325432 .aboutdiv4 dl {
    width: 50%;
    border-radius: 15px;
    background: #fff;
  }
  .box_325432 .aboutdiv4 dl dt {
    height: 300px;
  }
  .box_325432 .aboutdiv4 dl dd {
    background: #f2f4f9;
    padding: 20px;
    height: 300px;
  }
  .box_325432 .aboutdiv4 dl dd strong {
    font-size: 20px;
  }
  .box_325432 .aboutdiv4 dl dd img {
    margin: 10px auto;
  }
}
@media only screen and (max-width: 460px) {
  .box_325432 .nytt strong {
    font-size: 22px;
    line-height: 26px;
  }
  .box_325432 .aboutdiv4 dl dd {
    padding: 10px;
  }
  .box_325432 .aboutdiv4 dl dd strong {
    font-size: 18px;
  }
  .box_325432 .aboutdiv4 dl dd img {
    width: 40px;
    margin: 8px auto;
  }
  .box_325432 .aboutdiv4 dl dd p {
    font-size: 14px;
    line-height: 22px;
  }
}

.box_146358435432 {
  /*! CSS Used from: https://www.battsysbattery.cn/css/layout.css */
  /*! CSS Used from: https://www.battsysbattery.cn/css/layoutmin.css */
}
.box_146358435432 div,
.box_146358435432 p,
.box_146358435432 dl,
.box_146358435432 dt,
.box_146358435432 dd,
.box_146358435432 img {
  margin: 0;
  padding: 0;
}
.box_146358435432 strong {
  padding: 0;
  margin: 0;
}
.box_146358435432 img {
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_146358435432 .document_width1 {
  width: 1400px;
  box-sizing: border-box;
  margin: auto;
  box-sizing: border-box;
}
.box_146358435432 .nytt {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 25px;
  text-align: center;
}
.box_146358435432 .nytt strong {
  width: 100%;
  height: auto;
  line-height: 46px;
  font-size: 42px;
  color: #333;
  font-weight: bold;
  float: left;
}
.box_146358435432 .oemdiv1 {
  width: 100%;
  height: auto;
  padding: 60px 0;
  background: #f9fafc;
  overflow: hidden;
}
.box_146358435432 .oemdiv1 dl.d1 {
  width: 100%;
  height: auto;
  float: left;
}
.box_146358435432 .oemdiv1 dl.d1 dt {
  width: 50%;
  height: auto;
  float: left;
}
.box_146358435432 .oemdiv1 dl.d1 dt img {
  width: 100%;
  height: 440px;
  display: block;
}
.box_146358435432 .oemdiv1 dl.d1 dd {
  width: 50%;
  height: 440px;
  float: left;
  padding: 0 60px;
  box-sizing: border-box;
  background: #fff;
}
.box_146358435432 .oemdiv1 dl.d1 dd .divz {
  width: 100%;
  height: auto;
  margin: 0;
  float: left;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box_146358435432 .oemdiv1 dl.d1 dd strong {
  width: 100%;
  height: auto;
  float: left;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #14629f;
}
.box_146358435432 .oemdiv1 dl.d1 .ddtxt {
  width: 100%;
  height: auto;
  padding-right: 15px;
  box-sizing: border-box;
  float: left;
  overflow: auto;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #777;
  margin-top: 15px;
}
.box_146358435432 .ddtxt::-webkit-scrollbar {
  width: 2px;
  height: 5px;
}
.box_146358435432 .ddtxt::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #ededed;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.box_146358435432 .ddtxt::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #14629f;
}
.box_146358435432 .oemdiv1 dl.d1.d1s dt {
  float: right;
}
@media only screen and (max-width: 1650px) {
  .box_146358435432 .document_width1 {
    width: 1200px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1480px) {
  .box_146358435432 .document_width1 {
    width: 1200px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_146358435432 .nytt strong {
    font-size: 36px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 1270px) {
  .box_146358435432 .document_width1 {
    width: 750px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_146358435432 .nytt strong {
    font-size: 26px;
    line-height: 32px;
  }
  .box_146358435432 .oemdiv1 dl.d1 {
    margin-bottom: 15px;
  }
  .box_146358435432 .oemdiv1 dl.d1 dt {
    width: 100%;
  }
  .box_146358435432 .oemdiv1 dl.d1 dt img {
    height: 300px;
  }
  .box_146358435432 .oemdiv1 dl.d1 dd {
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .box_146358435432 .oemdiv1 dl.d1 .ddtxt {
    height: auto;
  }
  .box_146358435432 .oemdiv1 dl.d1 dd .divz {
    top: auto;
    bottom: auto;
    transform: none;
    position: static;
  }
}
@media only screen and (max-width: 800px) {
  .box_146358435432 .document_width1 {
    width: 92%;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 650px) {
  .box_146358435432 .nytt strong {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 560px) {
  .box_146358435432 .document_width1 {
    width: 95%;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_146358435432 .oemdiv1 {
    padding: 30px 0;
  }
  .box_146358435432 .oemdiv1 dl.d1 dt img {
    height: 36vw;
  }
  .box_146358435432 .oemdiv1 dl.d1 dd strong {
    font-size: 18px;
    line-height: 26px;
  }
  .box_146358435432 .oemdiv1 dl.d1 .ddtxt {
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 460px) {
  .box_146358435432 .nytt strong {
    font-size: 22px;
    line-height: 26px;
  }
  .box_146358435432 .oemdiv1 dl.d1 dd {
    padding: 20px 10px;
  }
}

.box_325432532 {
  /*! CSS Used from: https://www.battsysbattery.cn/css/layout.css */
  /*! CSS Used from: https://www.battsysbattery.cn/css/layoutmin.css */
}
.box_325432532 div,
.box_325432532 span,
.box_325432532 dl,
.box_325432532 dt,
.box_325432532 dd,
.box_325432532 img {
  margin: 0;
  padding: 0;
}
.box_325432532 strong {
  padding: 0;
  margin: 0;
}
.box_325432532 img {
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_325432532 .document_width1 {
  width: 1400px;
  box-sizing: border-box;
  margin: auto;
  box-sizing: border-box;
}
.box_325432532 .nytt {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 25px;
  text-align: center;
}
.box_325432532 .nytt strong {
  width: 100%;
  height: auto;
  line-height: 46px;
  font-size: 42px;
  color: #333;
  font-weight: bold;
  float: left;
}
.box_325432532 .oemdiv3 {
  width: 100%;
  height: auto;
  padding: 80px 0;
  background: #f9fafc;
  overflow: hidden;
  padding-bottom: 30px;
}
.box_325432532 .oemdiv3 dl.d1 {
  width: 100%;
  height: auto;
  float: left;
  margin: 8px;
}
.box_325432532 .oemdiv3 dl.d1 dt {
  width: 100%;
  height: 90px;
  padding: 20px 120px 0 20px;
  box-sizing: border-box;
  float: left;
  background: #14629f;
}
.box_325432532 .oemdiv3 dl.d1 dt strong {
  width: 100%;
  height: 50px;
  float: left;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 25px;
  overflow: hidden;
}
.box_325432532 .oemdiv3 dl.d1 dt img {
  width: 85px;
  height: 85px;
  float: right;
  border-radius: 20px;
  margin-right: -80px;
  margin-top: -45px;
  position: relative;
  z-index: 11;
}
.box_325432532 .oemdiv3 dl.d1 dd {
  width: 100%;
  height: 201px;
  /*overflow: auto;*/
  float: left;
  padding: 30px;
  color: #777;
  box-sizing: border-box;
  background: url(https://www.battsysbattery.cn/images/oem_tb.png) 10px 30px no-repeat #fff;
  background-size: 15px auto;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}
.box_325432532 .oemdiv3cz {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
}
.box_325432532 .oemdiv3c {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  overflow: hidden;
}
.box_325432532 .oemdiv3clist {
  width: 20000px;
  height: auto !important;
  overflow: hidden;
  float: left;
  position: relative;
  transition: transform 600ms;
}
.box_325432532 .oemjtl {
  width: 60px;
  height: 60px;
  position: absolute;
  left: -70px;
  top: 38%;
  float: left;
  background: url(https://www.battsysbattery.cn/images/jtl.png) center center no-repeat;
  cursor: pointer;
  background-size: 50px 50px !important;
  display: block;
}
.box_325432532 .oemjtr {
  width: 60px;
  height: 60px;
  position: absolute;
  right: -70px;
  top: 38%;
  float: right;
  background: url(https://www.battsysbattery.cn/images/jtr.png) center center no-repeat;
  cursor: pointer;
  background-size: 50px 50px !important;
  display: block;
}
.box_325432532 .oemjtl:hover {
  background: url(https://www.battsysbattery.cn/images/jtlh.png) center center no-repeat;
}
.box_325432532 .oemjtr:hover {
  background: url(https://www.battsysbattery.cn/images/jtrh.png) center center no-repeat;
}
.box_325432532 .oemspan {
  margin: 0px;
  padding: 0px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  text-align: center;
  z-index: 886;
}
.box_325432532 .oemspan span {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #ccc;
  cursor: pointer;
  margin: 0 5px;
  box-sizing: border-box;
}
.box_325432532 .oemspan span.cur {
  background: #14629f;
}
@media only screen and (max-width: 1650px) {
  .box_325432532 .document_width1 {
    width: 1200px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432532 .oemdiv3 dl.d1 {
    width: 100%;
  }
}
@media only screen and (max-width: 1480px) {
  .box_325432532 .document_width1 {
    width: 1200px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432532 .nytt strong {
    font-size: 36px;
    line-height: 42px;
  }
  .box_325432532 .oemjtl {
    width: 50px;
    height: 50px;
    left: 0;
  }
  .box_325432532 .oemjtr {
    width: 50px;
    height: 50px;
    right: 0;
  }
}
@media only screen and (max-width: 1270px) {
  .box_325432532 .document_width1 {
    width: 750px;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432532 .nytt strong {
    font-size: 26px;
    line-height: 32px;
  }
  .box_325432532 .oemdiv3 {
    padding: 60px 0;
  }
  .box_325432532 .oemdiv3 dl.d1 {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .box_325432532 .document_width1 {
    width: 92%;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432532 .oemjtl,
  .box_325432532 .oemjtr {
    background-size: 40px 40px !important;
  }
  .box_325432532 .oemdiv3 dl.d1 {
    width: 100%;
    margin: 1vw;
  }
}
@media only screen and (max-width: 650px) {
  .box_325432532 .nytt strong {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 560px) {
  .box_325432532 .document_width1 {
    width: 95%;
    box-sizing: border-box;
    margin: auto;
    box-sizing: border-box;
  }
  .box_325432532 .oemdiv3 {
    padding: 30px 0;
  }
  .box_325432532 .oemdiv3 dl.d1 {
    width: 100%;
  }
}
@media only screen and (max-width: 460px) {
  .box_325432532 .nytt strong {
    font-size: 22px;
    line-height: 26px;
  }
}

.box_1235234 .swiper-slide {
  position: relative;
}
.box_1235234 .swiper-slide img {
  width: 100%;
    aspect-ratio: 1/1;
  object-fit: cover;
}
.box_1235234 .swiper-slide span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 2px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  color: #fff;

}

.box_1235234 .swiper-slide span p{
    margin: 0;
    font-size: 10px;
    font-weight: 100;
}

.box_327647972 {
  /*! CSS Used from: Embedded */
  /*! CSS Used from: https://www.transsion.com/_next/static/css/60e8615e2b8fb22e4063.css */
  /*! CSS Used from: https://www.transsion.com/_next/static/css/48ddbc34ec3b17c70c98.css */
  /*! CSS Used from: https://www.transsion.com/_next/static/css/4fdfc92c22fb4f62a5b6.css */
  /*! CSS Used keyframes */
  /*! CSS Used fontfaces */
}
.box_327647972 .anticon {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_327647972 .anticon > * {
  line-height: 1;
}
.box_327647972 .anticon svg {
  display: inline-block;
}
.box_327647972 .anticon::before {
  display: none;
}
.box_327647972 div,
.box_327647972 h5,
.box_327647972 h6,
.box_327647972 img,
.box_327647972 li,
.box_327647972 p,
.box_327647972 span,
.box_327647972 ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  list-style: none;
  font-family: SourceHanSansCN, SourceHanSansCN-Regular;
  box-sizing: border-box;
}
.box_327647972 img:not(p img) {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.box_327647972 ::-webkit-scrollbar {
  width: 0.03125rem;
}
.box_327647972 ::-webkit-scrollbar-track {
  border-radius: 0.05208rem;
}
.box_327647972 ::-webkit-scrollbar-thumb {
  border-radius: 0.05208rem;
  background: rgba(0, 0, 0, 0.1);
}
.box_327647972 *,
.box_327647972 :after,
.box_327647972 :before {
  box-sizing: border-box;
}
.box_327647972 h5,
.box_327647972 h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.box_327647972 p {
  margin-top: 0;
  margin-bottom: 1em;
}
.box_327647972 ul {
  margin-top: 0;
  margin-bottom: 1em;
}
.box_327647972 img {
  vertical-align: middle;
  border-style: none;
}
.box_327647972 svg:not(:root) {
  overflow: hidden;
}
.box_327647972 ::-moz-selection {
  color: #fff;
  background: #1890ff;
}
.box_327647972 ::selection {
  color: #fff;
  background: #1890ff;
}
.box_327647972 .anticon {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_327647972 .anticon > * {
  line-height: 1;
}
.box_327647972 .anticon svg {
  display: inline-block;
}
.box_327647972 .anticon:before {
  display: none;
}
.box_327647972 .animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
@media (prefers-reduced-motion: reduce), print {
  .box_327647972 .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
.box_327647972 .animate__fadeInDown {
  animation-name: fadeInDown;
}
.box_327647972 [data-aos][data-aos][data-aos-delay="300"] {
  transition-delay: 0;
}
.box_327647972 [data-aos][data-aos][data-aos-delay="300"].aos-animate {
  transition-delay: 0.3s;
}
.box_327647972 [data-aos][data-aos][data-aos-duration="400"] {
  transition-duration: 0.4s;
}
.box_327647972 body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}
.box_327647972 body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}
.box_327647972 body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}
.box_327647972 [data-aos][data-aos][data-aos-easing=ease] {
  transition-timing-function: ease;
}
.box_327647972 body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}
.box_327647972 [data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}
.box_327647972 [data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
.box_327647972 [data-aos=fade-up] {
  transform: translate3d(0, 0.52083rem, 0);
}
.box_327647972 img {
  border-style: none;
}
.box_327647972 svg:not(:root) {
  overflow: hidden;
}
.box_327647972 *,
.box_327647972 :after,
.box_327647972 :before {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.box_327647972 :focus {
  outline: none;
}
.box_327647972 .index_aheadPc__10S4m {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.box_327647972 .index_aheadPc__10S4m img {
  width: 100% !important;
  height: 100%;
}
.box_327647972 .index_aheadPc__10S4m ul {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.box_327647972 .index_aheadPc__10S4m ul li {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 16.7%;
  border-right: 1px solid #b9c4d3;
  transition: 0.8s;
  cursor: pointer;
}
.box_327647972 .index_aheadPc__10S4m ul li.on {
  width: 8%;
}
.box_327647972 .index_aheadPc__10S4m ul li.w {
  flex: 1;
}
.box_327647972 .index_aheadPc__10S4m ul li.w .index_current_con__20Elb {
  box-sizing: border-box;
  padding-left: 70px;
  padding-right: 120px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.box_327647972 .index_aheadPc__10S4m ul li.w .index_current_con__20Elb .index_in_current_con__1seVo {
  transition: 0.8s;
  margin-top: 0;
}
.box_327647972 .index_aheadPc__10S4m ul li.w .index_current_con__20Elb .index_in_current_con__1seVo {
  margin-top: 15%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
  opacity: 1;
  position: relative;
}
.box_327647972 .index_aheadPc__10S4m ul li .index_current_con__20Elb h4 {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  line-height: 2;
  margin: 0 auto;
  transition: 0.8s;
}
.box_327647972 .index_aheadPc__10S4m ul li.w .index_current_con__20Elb h4 {
  margin: 0;
  margin-top: 10px;
  font-size: 42px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
}
.box_327647972 .index_aheadPc__10S4m ul li .index_current_con__20Elb h5 {
  display: none;
}
.box_327647972 .index_aheadPc__10S4m ul li.w .index_current_con__20Elb h5 {
  display: block;
  opacity: 1;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.box_327647972 .index_aheadPc__10S4m ul li div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.box_327647972 .index_aheadPc__10S4m ul li div > span {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  line-height: 2;
  margin: 0 auto;
}
.box_327647972 .index_aheadMb__rdoLy {
  display: none;
}
.box_327647972 .index_mobile_img_contain__SRK6P {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #ccc;
}
.box_327647972 .index_mobile_img_contain__SRK6P li {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.7s ease-in;
}
.box_327647972 .index_mobile_img_contain__SRK6P li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_327647972 .index_mobile_img_contain__SRK6P.index_mobile_img_contain_default__3L8Pt {
  background-repeat: no-repeat;
  background-size: 100% auto !important;
}
@media screen and (max-width: 960px) {
  .box_327647972 .index_aheadPc__10S4m {
    display: none !important;
  }
  .box_327647972 .index_aheadPc__10S4m img {
    height: auto;
  }
  .box_327647972 .index_aheadMb__rdoLy {
    display: block;
    margin-top: 1.066667rem;
    width: 100%;
    overflow: hidden;
  }
  .box_327647972 .index_aheadMb__rdoLy ul {
    overflow: hidden;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li {
    box-sizing: border-box;
    width: 100%;
    border-bottom: 1px solid #b9c4d3;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li > div {
    height: 1.733333rem;
    transition: height 0.7s;
    padding: 0 0.533333rem;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li > div .index_aheadMbHeader__g65Yw {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #fff;
    font-size: 0.48rem;
    height: 1.733333rem;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li > div .index_aheadMbHeader__g65Yw > h5 {
    color: #fff;
    margin-bottom: 0;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li > div .index_aheadMbHeader__g65Yw .index_icon__3KVGY {
    display: block;
    text-align: center;
    padding: 0.2667rem;
    margin-right: -0.2667rem;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li > div .index_content__2g80_ {
    opacity: 0;
    transition: all 0.1s ease-in;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li > div .index_content__2g80_ h6 {
    margin-bottom: 0.48rem;
    font-size: 0.426667rem;
    font-weight: 400;
    color: #fff;
    line-height: 0.693333rem;
    font-family: SourceHanSansCN, SourceHanSansCN-Regular;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li > div .index_content__2g80_ p {
    font-size: 0.346667rem;
    font-weight: 400;
    line-height: 0.56rem;
    letter-spacing: 0;
    color: #fff;
    font-family: SourceHanSansCN, SourceHanSansCN-Regular;
  }
  .box_327647972 .index_aheadMb__rdoLy ul li:last-child {
    border-bottom: none;
  }
}
.box_327647972 .index_concern__3CXh8 img {
  -o-object-fit: cover;
     object-fit: cover;
}
.box_327647972 .index_concern__3CXh8 .index_introduce__WzJWo {
  box-sizing: border-box;
  width: 1400px;
  padding: 0 0.41667rem 0.41667rem;
}
@media screen and (max-width: 960px) {
  .box_327647972 .index_concern__3CXh8 .index_introduce__WzJWo {
    padding: 0 0.4rem 1.053333rem;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@font-face {
  font-family: SourceHanSansCN-Regular;
  src: url(https://www.transsion.com/_next/static/media/SourceHanSansCN-Regular.subset.d4dd933c87b6ff6ae8f953cf48b2bf86.otf);
  font-weight: 400;
  font-style: normal;
}

.box_8973456345 {
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/common.css?v=0.0.0 */
  /*! @import http://www.panhuikj.com/static/home/font/iconfont.css */
  /*! end @import */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/mobile.css */
  /*! CSS Used fontfaces */
}
.box_8973456345 .iconfont {
  font-family: "iconfont" !important;
  font-size: 20px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_8973456345 .icon-arrow-down-bold:before {
  content: "\e689";
}
.box_8973456345 .iconfont {
  font-size: 20px;
}
.box_8973456345 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_8973456345 img {
  border: 0 none;
}
.box_8973456345 ul,
.box_8973456345 li {
  list-style: none;
}
.box_8973456345 img {
  border: 0 none;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.box_8973456345 i {
  font-style: normal;
}
.box_8973456345 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_8973456345 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_8973456345 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_8973456345 .pl-25 {
  padding-left: 25px;
}
.box_8973456345 .pr-25 {
  padding-right: 25px;
}
.box_8973456345 .pl-30 {
  padding-left: 30px;
}
.box_8973456345 .p30 {
  padding: 30px;
}
.box_8973456345 .pt-70 {
  padding-top: 70px;
}
.box_8973456345 .pl-70 {
  padding-left: 70px;
}
.box_8973456345 .pb-70 {
  padding-bottom: 70px;
}
.box_8973456345 .mt-10 {
  margin-top: 10px;
}
.box_8973456345 .mt-25 {
  margin-top: 25px;
}
.box_8973456345 .ml-40 {
  margin-left: 40px;
}
.box_8973456345 .mr-40 {
  margin-right: 40px;
}
.box_8973456345 .mb-40 {
  margin-bottom: 40px;
}
.box_8973456345 .f18 {
  font-size: 18px;
}
.box_8973456345 .f30 {
  font-size: 30px;
}
.box_8973456345 .color-white {
  color: white;
}
.box_8973456345 .color-black {
  color: #1a1a1a;
}
.box_8973456345 .color-666 {
  color: #666;
}
.box_8973456345 .color-888 {
  color: #888;
}
.box_8973456345 .bg-blue {
  background-color: #14629f;
}
.box_8973456345 .bg-white {
  background-color: white;
}
.box_8973456345 .flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box_8973456345 .flex-center {
  display: flex;
  align-items: center;
}
.box_8973456345 .flex {
  display: flex;
}
.box_8973456345 .block {
  display: block;
}
.box_8973456345 .transition {
  transition: all 0.36s;
}
.box_8973456345 .text-right {
  text-align: right;
}
.box_8973456345 .cursor {
  cursor: pointer;
}
.box_8973456345 .border {
  border: 1px solid #e5e5e5;
}
.box_8973456345 .border-top {
  border-top: 1px solid #e5e5e5;
}
.box_8973456345 .radius50 {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .box_8973456345 .wapFlex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1600px) {
  .box_8973456345 .pl-25 {
    padding-left: 20px;
  }
  .box_8973456345 .pr-25 {
    padding-right: 20px;
  }
  .box_8973456345 .pl-30 {
    padding-left: 26px;
  }
  .box_8973456345 .p30 {
    padding: 26px;
  }
  .box_8973456345 .pt-70 {
    padding-top: 66px;
  }
  .box_8973456345 .pl-70 {
    padding-left: 66px;
  }
  .box_8973456345 .pb-70 {
    padding-bottom: 66px;
  }
  .box_8973456345 .mt-10 {
    margin-top: 8px;
  }
  .box_8973456345 .mt-25 {
    margin-top: 20px;
  }
  .box_8973456345 .ml-40 {
    margin-left: 36px;
  }
  .box_8973456345 .mr-40 {
    margin-right: 36px;
  }
  .box_8973456345 .mb-40 {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 1440px) {
  .box_8973456345 .pl-25 {
    padding-left: 18px;
  }
  .box_8973456345 .pr-25 {
    padding-right: 18px;
  }
  .box_8973456345 .pl-30 {
    padding-left: 24px;
  }
  .box_8973456345 .p30 {
    padding: 24px;
  }
  .box_8973456345 .pt-70 {
    padding-top: 50px;
  }
  .box_8973456345 .pl-70 {
    padding-left: 50px;
  }
  .box_8973456345 .pb-70 {
    padding-bottom: 50px;
  }
  .box_8973456345 .mt-10 {
    margin-top: 6px;
  }
  .box_8973456345 .mt-25 {
    margin-top: 18px;
  }
  .box_8973456345 .ml-40 {
    margin-left: 34px;
  }
  .box_8973456345 .mr-40 {
    margin-right: 34px;
  }
  .box_8973456345 .mb-40 {
    margin-bottom: 34px;
  }
  .box_8973456345 .f18 {
    font-size: 16px;
  }
  .box_8973456345 .f30 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1280px) {
  .box_8973456345 .pl-25 {
    padding-left: 16px;
  }
  .box_8973456345 .pr-25 {
    padding-right: 16px;
  }
  .box_8973456345 .pl-30 {
    padding-left: 22px;
  }
  .box_8973456345 .p30 {
    padding: 22px;
  }
  .box_8973456345 .pt-70 {
    padding-top: 60px;
  }
  .box_8973456345 .pl-70 {
    padding-left: 60px;
  }
  .box_8973456345 .pb-70 {
    padding-bottom: 60px;
  }
  .box_8973456345 .mt-10 {
    margin-top: 5px;
  }
  .box_8973456345 .mt-25 {
    margin-top: 16px;
  }
  .box_8973456345 .ml-40 {
    margin-left: 32px;
  }
  .box_8973456345 .mr-40 {
    margin-right: 32px;
  }
  .box_8973456345 .mb-40 {
    margin-bottom: 32px;
  }
  .box_8973456345 .f18 {
    font-size: 14px;
  }
  .box_8973456345 .f30 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .box_8973456345 .pl-25 {
    padding-left: 15px;
  }
  .box_8973456345 .pr-25 {
    padding-right: 15px;
  }
  .box_8973456345 .pl-30 {
    padding-left: 18px;
  }
  .box_8973456345 .p30 {
    padding: 18px;
  }
  .box_8973456345 .pt-70 {
    padding-top: 55px;
  }
  .box_8973456345 .pl-70 {
    padding-left: 55px;
  }
  .box_8973456345 .pb-70 {
    padding-bottom: 55px;
  }
  .box_8973456345 .mt-10 {
    margin-top: 5px;
  }
  .box_8973456345 .mt-25 {
    margin-top: 15px;
  }
  .box_8973456345 .ml-40 {
    margin-left: 28px;
  }
  .box_8973456345 .mr-40 {
    margin-right: 28px;
  }
  .box_8973456345 .mb-40 {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 750px) {
  .box_8973456345 .pt-70 {
    padding-top: 20px;
  }
  .box_8973456345 .pl-70 {
    padding-left: 20px;
  }
  .box_8973456345 .pb-70 {
    padding-bottom: 20px;
  }
  .box_8973456345 .ml-40 {
    margin-left: 20px;
  }
  .box_8973456345 .mr-40 {
    margin-right: 20px;
  }
  .box_8973456345 .mb-40 {
    margin-bottom: 20px;
  }
  .box_8973456345 .f18 {
    font-size: 13px;
  }
  .box_8973456345 .f30 {
    font-size: 16px;
  }
}
.box_8973456345 .w82 {
  width: 82%;
  margin: 0 auto;
}
.box_8973456345 .joblist .jobIcon {
  box-shadow: 0 0 15px rgba(0, 92, 78, 0.25);
}
.box_8973456345 .joblist li .top .btn {
  width: 150px;
  height: 50px;
}
.box_8973456345 .joblist li .bottom {
  line-height: 40px;
  display: none;
}
.box_8973456345 .joblist li .bottom .left {
  width: 15%;
}
.box_8973456345 .joblist li .bottom .right {
  width: 80%;
}
.box_8973456345 .joblist li .close1243 {
  display: none;
}
.box_8973456345 .joblist li.on .icon-arrow-down-bold {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.box_8973456345 .joblist li.on .btn {
  background-color: var(--green);
}
.box_8973456345 .joblist li.on .close1243 {
  display: block;
}
.box_8973456345 .joblist li.on .open {
  display: none;
}
@media screen and (max-width: 1440px) {
  .box_8973456345 .w82 {
    width: 90%;
  }
  .box_8973456345 .joblist .jobIcon {
    width: 60px;
  }
  .box_8973456345 .joblist li .top .btn {
    width: 130px;
  }
}
@media screen and (max-width: 1040px) {
  .box_8973456345 .w82 {
    width: 96%;
  }
}
@media screen and (max-width: 750px) {
  .box_8973456345 .w82 {
    width: 100%;
    padding: 0 20px;
  }
  .box_8973456345 .iconfont {
    font-size: 14px;
  }
  .box_8973456345 .joblist li .top .text {
    padding-left: 0;
    line-height: 2;
  }
  .box_8973456345 .joblist .jobIcon {
    display: none;
  }
  .box_8973456345 .joblist li .top .btn {
    width: 100px;
    height: 38px;
    margin-top: 8px;
    margin-left: calc(100% - 100px);
  }
  .box_8973456345 .joblist li .bottom {
    line-height: 2;
  }
  .box_8973456345 .joblist li .bottom .left {
    width: 100%;
    text-align: left;
  }
  .box_8973456345 .joblist li .bottom .right {
    width: 100%;
    padding-left: 0;
  }
}
@font-face {
  font-family: "iconfont";
  src: url("http://www.panhuikj.com/static/home/font/iconfont.woff2?t=1695353212471") format("woff2"), url("http://www.panhuikj.com/static/home/font/iconfont.woff?t=1695353212471") format("woff"), url("http://www.panhuikj.com/static/home/font/iconfont.ttf?t=1695353212471") format("truetype");
}

.box_8923423 {
  padding: 50px 0;
  /*! CSS Used from: https://www.tecmen.cn/static/modules/cms/css/style.css */
  /*! CSS Used from: https://www.tecmen.cn/static/modules/cms/css/common.css */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
  /*! CSS Used from: Embedded ; media=all */
}
.box_8923423 * {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}
.box_8923423 img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
.box_8923423 h2,
.box_8923423 h3 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
.box_8923423 a,
.box_8923423 a:hover,
.box_8923423 a:focus {
  text-decoration: none;
}
.box_8923423 a {
  text-decoration: none;
}
.box_8923423 a:hover {
  text-decoration: none;
}
.box_8923423 img {
  width: 100%;
  height: 100%;
  border: 0;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_8923423 a,
.box_8923423 p {
  text-decoration: none;
}
.box_8923423 a {
  color: #333;
}
.box_8923423 p {
  margin: 0;
}
.box_8923423 a:hover {
  text-decoration: none;
}
.box_8923423 *:focus {
  outline: none !important;
  box-shadow: none !important;
}
.box_8923423 *::after,
.box_8923423 *::before {
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.box_8923423 .font14 {
  font-size: 14px;
}
.box_8923423 .font24 {
  font-size: 24px;
}
@media (max-width: 1580px) {
  .box_8923423 .font14 {
    font-size: 12px;
  }
  .box_8923423 .font24 {
    font-size: 22px;
  }
}
@media (max-width: 1460px) {
  .box_8923423 .font24 {
    font-size: 20px;
  }
}
.box_8923423 .sup_h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .box_8923423 .sup_h2 {
    font-size: 50px;
    line-height: 1;
  }
}
.box_8923423 .container {
  margin: auto;
}
@media (max-width: 767px) {
  .box_8923423 .sup_rm {
    padding-top: 0px;
  }
  .box_8923423{
      padding: 20px;
  }
}
.box_8923423 .sup_rm .box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .box_8923423 .sup_rm .box {
    flex-direction: column;
  }
}
.box_8923423 .sup_rm .box .list {
  padding: 60px 50px 55px;
  background: #f5f5f5;
  width: calc((100% - 100px) / 3);
  border-radius: 10px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  position: relative;
  top: 0;
}
.box_8923423 .sup_rm .box .list:hover {
  top: -10px;
}
@media (max-width: 991px) {
  .box_8923423 .sup_rm .box .list {
    height: auto;
  }
}
@media (max-width: 767px) {
  .box_8923423 .sup_rm .box .list {
    width: 100%;
    margin-bottom: 30px;
  }
}
.box_8923423 .sup_rm .box .list .g_a {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.box_8923423 .sup_rm .box .list .g_a:hover p {
  color: #14629f;
}
.box_8923423 .sup_rm .box .list .g_a p {
  color: #666;
}
.box_8923423 .sup_rm .box .list .g_a svg {
  width: 6px;
  height: auto;
  margin-left: 9px;
}
@media (max-width: 767px) {
  .box_8923423 .sup_rm .box .list .g_a svg {
    width: 5px;
    margin-left: 15px;
  }
}
.box_8923423 .sup_rm .box .list .g_a svg path {
  fill: #14629f;
}
.box_8923423 .sup_rm .box .list .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .box_8923423 .sup_rm .box .list .top {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .box_8923423 .sup_rm .box .list .top {
    flex-direction: row;
  }
}
.box_8923423 .sup_rm .box .list .top .t_l h3 {
  font-weight: bold;
  margin-bottom: 12px;
}
.box_8923423 .sup_rm .box .list .top .t_l p {
  color: #666;
}
.box_8923423 .sup_rm .box .list .top img {
  width: auto;
  height: 62px;
}
@media (max-width: 991px) {
  .box_8923423 .sup_rm .box .list .top img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .box_8923423 .sup_rm .box .list .top img {
    height: 80px;
  }
}
.box_8923423 .sup_rm .box .list .list_ba {
  display: flex;
  flex-wrap: wrap;
}
.box_8923423 .sup_h2_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.box_8923423 .sup_h2_box h2 {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .box_8923423 .sup_h2_box h2 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 26px;
  }
}
.box_8923423 .sup_h2_box span {
  text-align: center;
  color: #747474;
}
@media (max-width: 767px) {
  .box_8923423 .sup_h2_box span {
    font-size: 28px;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill: #858585;
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill: #292929;
    fill-rule: evenodd;
  }
}
@media all {
  .box_8923423 .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
}
.box_8923423 .cls-1 {
  fill: #fff;
  fill-rule: evenodd;
}

.product_12312 .container {
  max-width: 1200px;
}
.product_12312 .container .dp a {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.product_12312 .container .dp a .btn {
  border-radius: 8px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 8px 12px;
}
.product_12312 .container .dp a .btn img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 4px;
}
.product_12312 .container .fw {
  display: flex;
  align-items: center;
}
.product_12312 .container .fw img {
  margin: 0 4px;
  height: 20px;
}
.product_12312 .container .fw img.p-1 {
  padding: 2px !important;
}
.product_12312 .content {
  margin-top: 50px;
}
.product_12312 .content img {
  width: 100%;
  display: block;
}
.product_12312 .content p {
  display: block;
}

.box_613285 {
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/common.css?v=0.0.0 */
  /*! @import http://www.hfhmdz.cn/static/home/font/iconfont.css */
  /*! end @import */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/media.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/swiper2.css */
  /*! CSS Used fontfaces */
}
.box_613285 .iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_613285 .icon-zuojiantou2:before {
  content: "\e65a";
}
.box_613285 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_613285 img {
  border: 0 none;
}
.box_613285 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_613285 img {
  border: 0 none;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.box_613285 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_613285 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_613285 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_613285 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_613285 .pb-30 {
  padding-bottom: 30px;
}
.box_613285 .ml-15 {
  margin-left: 15px;
}
.box_613285 .mr-15 {
  margin-right: 15px;
}
.box_613285 .mt-20 {
  margin-top: 20px;
}
.box_613285 .mr-20 {
  margin-right: 20px;
}
.box_613285 .mt-30 {
  margin-top: 30px;
}
.box_613285 .f18 {
  font-size: 18px;
}
.box_613285 .f28 {
  font-size: 28px;
}
.box_613285 .color-666 {
  color: #666;
}
.box_613285 .color-888 {
  color: #888;
}
.box_613285 .dis-flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box_613285 .dis-flex-center {
  display: flex;
  align-items: center;
}
.box_613285 .line-height {
  line-height: 2;
}
.box_613285 .inner {
  width: 80%;
  margin: 0 auto;
}
.box_613285 .ptb-70 {
  padding: 70px 0;
}
.box_613285 .proInfoTop {
  background-image: linear-gradient(to right, #e2e3e8, #eaebef);
}
.box_613285 .location > a:hover {
  color: #14629f;
}
@media screen and (max-width: 1600px) {
  .box_613285 .pb-30 {
    padding-bottom: 26px;
  }
  .box_613285 .ml-15 {
    margin-left: 13px;
  }
  .box_613285 .mr-15 {
    margin-right: 13px;
  }
  .box_613285 .mt-20 {
    margin-top: 16px;
  }
  .box_613285 .mr-20 {
    margin-right: 16px;
  }
  .box_613285 .mt-30 {
    margin-top: 26px;
  }
}
@media screen and (max-width: 1440px) {
  .box_613285 .pb-30 {
    padding-bottom: 24px;
  }
  .box_613285 .ml-15 {
    margin-left: 10px;
  }
  .box_613285 .mr-15 {
    margin-right: 10px;
  }
  .box_613285 .mt-20 {
    margin-top: 15px;
  }
  .box_613285 .mr-20 {
    margin-right: 15px;
  }
  .box_613285 .mt-30 {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .box_613285 .pb-30 {
    padding-bottom: 22px;
  }
  .box_613285 .ml-15 {
    margin-left: 8px;
  }
  .box_613285 .mr-15 {
    margin-right: 8px;
  }
  .box_613285 .mt-20 {
    margin-top: 12px;
  }
  .box_613285 .mr-20 {
    margin-right: 12px;
  }
  .box_613285 .mt-30 {
    margin-top: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .box_613285 .pb-30 {
    padding-bottom: 18px;
  }
  .box_613285 .ml-15 {
    margin-left: 8px;
  }
  .box_613285 .mr-15 {
    margin-right: 8px;
  }
  .box_613285 .mt-20 {
    margin-top: 15px;
  }
  .box_613285 .mr-20 {
    margin-right: 15px;
  }
  .box_613285 .mt-30 {
    margin-top: 18px;
  }
}
@media screen and (max-width: 1440px) {
  .box_613285 .inner {
    width: 86%;
    margin: 0 auto;
  }
  .box_613285 .ptb-70 {
    padding: 55px 0;
  }
  .box_613285 .f18 {
    font-size: 16px;
  }
  .box_613285 .f28 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1240px) {
  .box_613285 .ptb-70 {
    padding: 50px 0;
  }
  .box_613285 .f18 {
    font-size: 16px;
  }
  .box_613285 .f28 {
    font-size: 22px;
  }
  .box_613285 .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  .box_613285 .ptb-70 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 750px) {
  .box_613285 .f18 {
    font-size: 14px;
  }
  .box_613285 .f28 {
    font-size: 16px;
  }
  .box_613285 .ptb-70 {
    padding: 20px 0;
  }
  .box_613285 .inner {
    width: 100%;
    padding: 0 20px;
  }
  .box_613285 .proInfoTop {
    margin-top: 60px;
  }
  .box_613285 .location .left {
    display: none;
  }
}
@font-face {
  font-family: "iconfont";
  src: url("http://www.hfhmdz.cn/static/home/font/iconfont.woff2?t=1657700623607") format("woff2"), url("http://www.hfhmdz.cn/static/home/font/iconfont.woff?t=1657700623607") format("woff"), url("http://www.hfhmdz.cn/static/home/font/iconfont.ttf?t=1657700623607") format("truetype");
}

.box_23748923 {
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/common.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/media.css?v=0.0.0 */
  /*! CSS Used from: http://www.hfhmdz.cn/static/home/css/swiper2.css */
}
.box_23748923 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_23748923 img {
  border: 0 none;
}
.box_23748923 ul,
.box_23748923 li {
  list-style: none;
}
.box_23748923 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_23748923 img {
  border: 0 none;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.box_23748923 a img {
  border: 0 none;
}
.box_23748923 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_23748923 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_23748923 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_23748923 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_23748923 .pb-10 {
  padding-bottom: 10px;
}
.box_23748923 .pt-30 {
  padding-top: 30px;
}
.box_23748923 .mt-30 {
  margin-top: 30px;
}
.box_23748923 .mb-30 {
  margin-bottom: 30px;
}
.box_23748923 .mb-40 {
  margin-bottom: 40px;
}
.box_23748923 .f20 {
  font-size: 20px;
}
.box_23748923 .color-blue {
  color: #14629f;
}
.box_23748923 .color-666 {
  color: #666;
}
.box_23748923 .dis-flex-between {
  display: flex;
  justify-content: space-between;
}
.box_23748923 .flex-column {
  flex-direction: column;
}
.box_23748923 .flex-column {
  flex-direction: column;
}
.box_23748923 .img {
  position: relative;
  overflow: hidden;
}
.box_23748923 .line-height {
  line-height: 2;
}
.box_23748923 .text-right {
  text-align: right;
}
.box_23748923 .line-clamp {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box_23748923 .line-clamp2 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box_23748923 .line-height2-4 {
  line-height: 2.4;
}
.box_23748923 .opacity8 {
  opacity: 0.8;
}
.box_23748923 .opacity6 {
  opacity: 0.6;
}
@media screen and (max-width: 750px) {
  .box_23748923 .line-height2-4 {
    line-height: 2;
  }
  .box_23748923 .infoImg img {
    height: auto !important;
  }
}
.box_23748923 .inner {
  width: 80%;
  margin: 0 auto;
}
.box_23748923 .ptb-70 {
  padding: 70px 0;
}
.box_23748923 .flex-column {
  flex-direction: column;
}
.box_23748923 .newsleft {
  width: 66%;
}
.box_23748923 .newsright {
  width: 27%;
}
.box_23748923 .newspage {
  border-top: 1px solid #e5e5e5;
  line-height: 3;
}
.box_23748923 .newspage a {
  width: 48%;
}
.box_23748923 .newspage a:hover {
  color: #14629f;
}
.box_23748923 .tjTit {
  border-left: 4px solid #14629f;
  padding-left: 30px;
  line-height: 1;
}
.box_23748923 .newsright .img {
  width: 37%;
  height: 115px;
}
.box_23748923 .newsright .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_23748923 .newsright .txt {
  width: 60%;
}
.box_23748923 .newsright li:hover .img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
@media screen and (max-width: 1600px) {
  .box_23748923 .pb-10 {
    padding-bottom: 8px;
  }
  .box_23748923 .pt-30 {
    padding-top: 26px;
  }
  .box_23748923 .mt-30 {
    margin-top: 26px;
  }
  .box_23748923 .mb-30 {
    margin-bottom: 26px;
  }
  .box_23748923 .mb-40 {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 1440px) {
  .box_23748923 .pb-10 {
    padding-bottom: 6px;
  }
  .box_23748923 .pt-30 {
    padding-top: 24px;
  }
  .box_23748923 .mt-30 {
    margin-top: 24px;
  }
  .box_23748923 .mb-30 {
    margin-bottom: 24px;
  }
  .box_23748923 .mb-40 {
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 1200px) {
  .box_23748923 .pb-10 {
    padding-bottom: 5px;
  }
  .box_23748923 .pt-30 {
    padding-top: 22px;
  }
  .box_23748923 .mt-30 {
    margin-top: 22px;
  }
  .box_23748923 .mb-30 {
    margin-bottom: 22px;
  }
  .box_23748923 .mb-40 {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .box_23748923 .pb-10 {
    padding-bottom: 5px;
  }
  .box_23748923 .pt-30 {
    padding-top: 18px;
  }
  .box_23748923 .mt-30 {
    margin-top: 18px;
  }
  .box_23748923 .mb-30 {
    margin-bottom: 18px;
  }
  .box_23748923 .mb-40 {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 750px) {
  .box_23748923 .mb-40 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .box_23748923 .inner {
    width: 86%;
    margin: 0 auto;
  }
  .box_23748923 .ptb-70 {
    padding: 55px 0;
  }
  .box_23748923 .f20 {
    font-size: 18px;
  }
  .box_23748923 .newsright .img {
    height: 96px;
  }
}
@media screen and (max-width: 1240px) {
  .box_23748923 .ptb-70 {
    padding: 50px 0;
  }
  .box_23748923 .f20 {
    font-size: 16px;
  }
  .box_23748923 .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  .box_23748923 .ptb-70 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 750px) {
  .box_23748923 .f20 {
    font-size: 14px;
  }
  .box_23748923 .ptb-70 {
    padding: 20px 0;
  }
  .box_23748923 .inner {
    width: 100%;
    padding: 0 20px;
  }
  .box_23748923 .newsright {
    display: none;
  }
  .box_23748923 .newsleft {
    width: 100%;
  }
  .box_23748923 .newspage {
    line-height: 2;
  }
}

.box_2648597649 {
  /*! CSS Used from: https://www.battsysbattery.cn/css/layout.css */
  /*! CSS Used from: https://www.battsysbattery.cn/css/layoutmin.css */
}
.box_2648597649 div,
.box_2648597649 p,
.box_2648597649 ul,
.box_2648597649 li,
.box_2648597649 a,
.box_2648597649 img {
  margin: 0;
  padding: 0;
}
.box_2648597649 a {
  text-decoration: none;
  color: #333;
}
.box_2648597649 a:hover {
  color: #14629f;
}
.box_2648597649 img {
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.box_2648597649 .float_r {
  width: 50px;
  height: auto;
  float: left;
  position: fixed;
  right: 0px;
  bottom: 160px;
  z-index: 9999;
}
.box_2648597649 .float_r ul {
  width: 100%;
  height: auto;
  float: left;
  list-style: none;
}
.box_2648597649 .float_r ul li {
  width: 100%;
  height: 50px;
  float: left;
  background-size: 35px auto !important;
  position: relative;
  margin-bottom: 1px;
  box-sizing: border-box;
}
.box_2648597649 .float_r ul li a {
  width: 100%;
  height: 50px;
  float: left;
  box-sizing: border-box;
  border: 1px solid #ededed;
}
.box_2648597649 .float_r ul li.l1 a {
  background: url(/static/float_tb1.png) center center no-repeat #fff;
}
.box_2648597649 .float_r ul li.l1:hover a {
  background: url(https://www.battsysbattery.cn/images/float_tb1h.png) center center no-repeat #14629f;
  border: 1px solid #14629f;
}
.box_2648597649 .float_r ul li.l2 a {
  background: url(/static/float_tb2.png) center center no-repeat #fff;
}
.box_2648597649 .float_r ul li.l2:hover a {
  background: url(https://www.battsysbattery.cn/images/float_tb2h.png) center center no-repeat #14629f;
  border: 1px solid #14629f;
}
.box_2648597649 .float_r ul li.l2 p {
  width: 200px;
  display: none;
  color: #fff;
  box-shadow: 2px 0 4px #ededed;
  height: 50px;
  line-height: 50px;
  position: absolute;
  z-index: 222;
  right: 0px;
  top: 0px;
  font-size: 16px;
  font-weight: bold;
  padding-left: 50px;
  box-sizing: border-box;
  background: url(https://www.battsysbattery.cn/images/float_tb2h.png) 10px center no-repeat #14629f;
  background-size: 34px auto;
}
.box_2648597649 .float_r ul li.l2:hover p {
  display: block;
}
.box_2648597649 .float_r ul li.l3 a {
  background: url(/static/float_tb3.png) center center no-repeat #fff;
}
.box_2648597649 .float_r ul li.l3:hover a {
  background: url(https://www.battsysbattery.cn/images/float_tb3h.png) center center no-repeat #14629f;
  border: 1px solid #14629f;
  position: relative;
}
.box_2648597649 .float_r ul li.l3 img {
  width: 160px;
  /*height: 120px;*/
  display: none;
  position: absolute;
  right: 55px;
  top: -60px;
}
.box_2648597649 .float_r ul li.l3:hover img {
  display: block;
}
.box_2648597649 .float_r ul li.l4 a {
  background: url(/static/float_tb4.png) center center no-repeat #fff;
}
.box_2648597649 .float_r ul li.l4:hover a {
  background: url(https://www.battsysbattery.cn/images/float_tb4h.png) center center no-repeat #14629f;
  border: 1px solid #14629f;
}
.box_2648597649 .float_r ul li.l4 p {
  width: 280px;
  display: none;
  color: #fff;
  box-shadow: 2px 0 4px #ededed;
  height: 50px;
  line-height: 50px;
  position: absolute;
  z-index: 222;
  right: 0px;
  top: 0px;
  font-size: 16px;
  font-weight: bold;
  padding-left: 50px;
  box-sizing: border-box;
  background: url(https://www.battsysbattery.cn/images/float_tb4h.png) 10px center no-repeat #14629f;
  background-size: 34px auto;
}
.box_2648597649 .float_r ul li.l4:hover p {
  display: block;
}
.box_2648597649 .float_r ul li.l5 a {
  background: url(/static/float_tb5.png) center center no-repeat #fff;
  margin-top: 5px;
}
.box_2648597649 .float_r ul li.l5:hover a {
  background: url(https://www.battsysbattery.cn/images/float_tb5h.png) center center no-repeat #14629f;
  border: 1px solid #14629f;
}
@media only screen and (max-width: 560px) {
  
}

.box_739485 {
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/aos.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/nav.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/qa.css */
  /*! CSS Used from: https://www.qiansafety.com/static/addons/cms/css/qaH5.css */
  /*! CSS Used from: https://www.qiansafety.com/static/libs/layui/css/layui.css */
}
.box_739485 body[aos-duration="1200"] [aos] {
  transition-duration: 1.2s;
}
.box_739485 [aos^=fade][aos^=fade] {
  opacity: 0;
  transition-property: all;
}
.box_739485 [aos^=fade][aos^=fade].aos-animate {
  opacity: 1;
}
.box_739485 [aos=fade-up] {
  transform: translate(0, 100px);
}
.box_739485 [aos=fade-up].aos-animate {
  transform: translate(0, 0);
}
.box_739485 [aos=fade-down] {
  transform: translate(0, -100px);
}
.box_739485 [aos=fade-down].aos-animate {
  transform: translate(0, 0);
}
.box_739485 a {
  list-style: none;
  text-decoration: none;
}
.box_739485 * {
  margin: 0;
  padding: 0;
}
.box_739485 a {
  color: #333;
  text-decoration: none;
}
.box_739485 .center {
  width: 1400px;
}
.box_739485 .i1-indexBox {
  width: 100%;
  background: url("/static/upload/image/20241011/1728643413448945.jpg") no-repeat center/cover;
}
.box_739485 .i1-indexBox .i1-indexInnerBox {
  margin: 0 auto;
  padding: 120px 0;
}
.box_739485 .i1-indexInnerBox .more {
  font-size: 24px;
  font-weight: 400;
  color: #14629f;
  font-family: Source Han Sans CN;
  margin: 20px 0 50px 0;
  display: block;
}
.box_739485 .public-title h5 {
  font-size: 30px;
  font-weight: 400;
  color: #cbcbcd;
  font-family: Montserrat;
  line-height: 1;
  text-align: center;
}
.box_739485 .public-title h3 {
  font-size: 43px;
  font-weight: bold;
  color: #000920;
  font-family: Source Han Sans CN;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
}
.box_739485 .i1-indexInnerBox .public-title h3,
.box_739485 .i1-indexInnerBox .public-title h5 {
  text-align: left;
}
.box_739485 .i1-indexInnerBox .container {
  width: 790px;
}
.box_739485 .i1-indexInnerBox h6 {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 36px;
  font-family: Source Han Sans CN;
}
.box_739485 .i1-indexInnerBox .numContent {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 100%;
  margin: 70px 0;
}
.box_739485 .i1-indexInnerBox .numContent .num-b {
  cursor: pointer;
      flex: 1;
}
.box_739485 .i1-indexInnerBox .numContent .num-b:hover > .text {
  color: #14629f;
}
.box_739485 .i1-indexInnerBox .numContent .numText {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.box_739485 .i1-indexInnerBox .numContent .numText .num {
  font-size: 48px;
  font-family: Montserrat;
  font-weight: 400;
  color: #14629f;
  line-height: 1;
}
.box_739485 .i1-indexInnerBox .numContent span {
  font-size: 40px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #14629f;
  line-height: 1;
}
.box_739485 .i1-indexInnerBox .numContent .text {
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666666;
  transition: 0.3s;
}
.box_739485 .button--nina {
  overflow: hidden;
  transition: background-color 0.3s;
  position: relative;
  z-index: 1;
}
.box_739485 .button--nina > span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  color: #ffffff;
  letter-spacing: -2.5px;
}
.box_739485 .button--nina::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.box_739485 .button--nina:hover {
  background-color: #1f5fff !important;
}
.box_739485 .button--nina:hover::before {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}
.box_739485 .button--nina:hover > span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.box_739485 .button--nina:hover > span:nth-child(1) {
  transition-delay: 0.045s;
}
.box_739485 .button--nina:hover > span:nth-child(2) {
  transition-delay: 0.09s;
}
.box_739485 .button--nina:hover > span:nth-child(3) {
  transition-delay: 0.135s;
}
.box_739485 .button--nina:hover > span:nth-child(4) {
  transition-delay: 0.18s;
}
.box_739485 .i1-indexInnerBox .more-box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.box_739485 .i1-indexInnerBox .more-box a {
  width: 180px;
  height: 54px;
  border: 2px solid #1f5fff;
  border-radius: 27px;
  font-size: 18px;
  font-weight: 400;
  color: #1f5fff;
  font-family: Source Han Sans CN;
  line-height: 54px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
}
.box_739485 .i1-indexInnerBox .more-box a:hover {
  color: #ffffff;
}
.box_739485 .i1-indexInnerBox .more-box a:last-of-type {
  margin-left: 20px;
}
@media only screen and (max-width: 1560px) {
  .box_739485 .center {
    width: 1000px;
  }
  .box_739485 .i1-indexInnerBox .container {
    width: 600px;
  }
  .box_739485 .public-title h5 {
    font-size: 20px;
  }
  .box_739485 .public-title h3 {
    font-size: 32.5px;
  }
  .box_739485 .i1-indexInnerBox .more {
    font-size: 18px;
    margin: 10px 0 30px 0;
  }
  .box_739485 .i1-indexInnerBox h6 {
    font-size: 16px;
    line-height: 28px;
  }
  .box_739485 .i1-indexInnerBox .numContent {
    margin: 45px 0;
  }
  .box_739485 .i1-indexInnerBox .numContent .numText .num {
    font-size: 38px;
  }
  .box_739485 .i1-indexInnerBox .numContent span {
    font-size: 38px;
  }
  .box_739485 .i1-indexInnerBox .numContent .text {
    font-size: 14px;
  }
  .box_739485 .i1-indexInnerBox .more-box a {
    width: 150px;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
  }
  .box_739485 .i1-indexBox .i1-indexInnerBox {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 760px) {
  .box_739485 .center {
    width: 100%;
  }
  .box_739485 .i1-indexBox {
    background: none;
  }
  .box_739485 .i1-indexBox .i1-indexInnerBox {
    padding: 20px 0;
    width: 95%;
  }
  .box_739485 .i1-indexInnerBox .container {
    width: 100%;
  }
  .box_739485 .i1-indexInnerBox .more-box a:last-of-type {
    margin-left: 0px;
  }
  .box_739485 .public-title h5 {
    font-size: 12px;
  }
  .box_739485 .public-title h3 {
    font-size: 16px;
    margin-top: 5px;
  }
  .box_739485 .i1-indexInnerBox .public-title h3,
  .box_739485 .i1-indexInnerBox .public-title h5 {
    text-align: center;
  }
  .box_739485 .i1-indexInnerBox .more {
    font-size: 12px;
    margin: 10px 0;
    text-align: center;
  }
  .box_739485 .i1-indexInnerBox h6 {
    font-size: 12px;
    line-height: 22px;
  }
  .box_739485 .i1-indexInnerBox .numContent .num-b {
    width: 25%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
  }
  .box_739485 .i1-indexInnerBox .numContent .numText .num {
    font-size: 20px;
  }
  .box_739485 .i1-indexInnerBox .numContent span {
    font-size: 14px;
  }
  .box_739485 .i1-indexInnerBox .numContent .text {
    font-size: 12px;
    text-align: center;
    margin-top: 2px;
    width: 50%;
  }
  .box_739485 .i1-indexInnerBox .numContent {
    margin: 20px 0;
  }
  .box_739485 .i1-indexInnerBox .more-box {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .box_739485 .i1-indexInnerBox .more-box a {
    width: 100px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    border: 1px solid #1f5fff;
  }
}
.box_739485 div,
.box_739485 h3,
.box_739485 h5,
.box_739485 h6,
.box_739485 p {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.box_739485 a:active,
.box_739485 a:hover {
  outline: 0;
}
.box_739485 h3 {
  font-weight: 700;
}
.box_739485 h5,
.box_739485 h6 {
  font-weight: 500;
  font-size: 100%;
}
.box_739485 a {
  color: #333;
  text-decoration: none;
}
.box_739485 a:hover {
  color: #777;
}

.box_q3454325 {
  /*! CSS Used from: https://image.casarte.com/images/hopeui.min.css */
  /*! CSS Used from: https://image.casarte.com/images/iconfont.css?v=1724808164176 */
  /*! CSS Used from: https://image.casarte.com/images/common.css?v=1724808164176 */
  /*! CSS Used from: https://c.haier.com/js/animate.min.css?v=17222516869422 */
  /*! CSS Used from: https://image.casarte.com/images/swiper.min.css */
  /*! CSS Used from: https://image.casarte.com/images/casarte2023_member.css?v=17222516869422 */
  /*! CSS Used fontfaces */
}
.box_q3454325 img {
  display: inline-block;
  vertical-align: middle;
}
.box_q3454325 div,
.box_q3454325 p {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.box_q3454325 a:active,
.box_q3454325 a:hover {
  outline: 0;
}
.box_q3454325 img {
  border: none;
}
.box_q3454325 i {
  font-style: normal;
}
.box_q3454325 a {
  color: #333;
  text-decoration: none;
}
.box_q3454325 .iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_q3454325 .icon-zuojian:before {
  content: "\e71c";
}
.box_q3454325 a {
  outline: 0;
}
.box_q3454325 .main_content_area {
  box-sizing: border-box;
  width: 83.33%;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .box_q3454325 .main_content_area {
    width: 100%;
    padding: 0 30px;
  }
}
.box_q3454325 .media_picture {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.box_q3454325 .media_picture .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.box_q3454325 .bigtxtbox {
  text-align: center;
}
.box_q3454325 .bigtxtbox .bigtxt {
  display: inline-block;
  margin: 0 auto;
  color: transparent;
  font-size: 60px;
  line-height: 1;
  background-image: linear-gradient(90deg, transparent, var(--color2) var(--per1), var(--color1) var(--per2), var(--color1) var(--per3), var(--color2) var(--per4), transparent);
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 750px) {
  .box_q3454325 .bigtxtbox .bigtxt {
    font-size: 60px;
    background-image: linear-gradient(90deg, transparent, #a0a0a0 0, #fff 25%, #fff 75%, #a0a0a0 100%, transparent);
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.8s ease-in-out;
  }
}
@media (max-width: 750px) {
  .box_q3454325 .bigtxtbox .bigtxt.show {
    transform: translateY(0);
    opacity: 1;
  }
}
.box_q3454325 .toTop1 {
  transform: translateY(50px);
  opacity: 0;
  transition: all 1.8s ease-in-out 0.1s;
}
.box_q3454325 .toTop1.end {
  transform: translateY(0);
  opacity: 1;
}
.box_q3454325 .delay25 {
  transition-delay: 2.5s;
}
.box_q3454325 .animate__delay-0 {
  animation-delay: 0.25s;
}
.box_q3454325 .animate__delay-1 {
  animation-delay: 0.5s;
}
.box_q3454325 .animate__delay-2 {
  animation-delay: 0.75s;
}
.box_q3454325 .animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.box_q3454325 .animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}
@media print {
  .box_q3454325 .animate__animated {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
.box_q3454325 .animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
.box_q3454325 .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.box_q3454325 .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
      justify-content: space-around;
}
.box_q3454325 .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}
.box_q3454325 .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.box_q3454325 .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.box_q3454325 .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.box_q3454325 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
.box_q3454325 .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.box_q3454325 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.box_q3454325 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.box_q3454325 .swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.box_q3454325 .equity {
  padding: 60px 0 120px;
}
.box_q3454325 .equity .bigtxt {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.box_q3454325 .equity .bigtxt.delay.show {
  animation: change2 1.8s ease-in-out 1.8s forwards;
}
.box_q3454325 .equity .small_title {
  margin-top: 17px;
  margin-left: 18px;
  color: #ddd;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 18px;
  text-align: center;
}
.box_q3454325 .equity .equity_swiper {
  margin-top: 76px;
}
.box_q3454325 .equity .equity_swiper a {
  display: block;
  overflow: hidden;
  position: relative;
}
.box_q3454325 .equity .equity_swiper a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.5s;
}
@media (min-width: 750px) {
  .box_q3454325 .equity .equity_swiper a:hover::after {
    opacity: 1;
  }
  .box_q3454325 .equity .equity_swiper a:hover .link {
    transform: scale(1.25);
  }
  .box_q3454325 .equity .equity_swiper a:hover .link span {
    font-weight: 700;
  }
  .box_q3454325 .equity .equity_swiper a:hover .link i {
    font-weight: 700;
    animation: spin 0.8s linear infinite;
    animation-delay: 0.2s;
  }
}
.box_q3454325 .equity .equity_swiper .media_picture {
  padding-top: 155.844%;
}
.box_q3454325 .equity .equity_swiper .media_picture img {
  transition: all 1s;
}
.box_q3454325 .equity .equity_swiper .content {
  position: absolute;
  top: 80px;
  right: 60px;
  bottom: 60px;
  left: 60px;
  z-index: 1;
}
.box_q3454325 .equity .equity_swiper .title {
  color: #ddd;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}
.box_q3454325 .equity .equity_swiper .desc {
  margin-top: 12px;
  color: #ddd;
  font-size: 18px;
  line-height: 36px;
}
.box_q3454325 .equity .equity_swiper .link {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.box_q3454325 .equity .equity_swiper .link span {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transition: all 0.5s;
}
.box_q3454325 .equity .equity_swiper .link i {
  margin-left: 7.5px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transition: all 0.5s;
}
.box_q3454325 .equity .equity_swiper .swiper-pagination {
  display: none;
}
.box_q3454325 .equity .swiper-slide {
  opacity: 0;
  
    width: 24% !important;
}
@media (max-width: 750px) {
  .box_q3454325 .equity {
    padding: 100px 0 60px;
  }
  .box_q3454325 .equity .main_content_area {
    padding: 0;
  }
  .box_q3454325 .equity .bigtxt.delay.show {
    transition: all 1.8s 1.8s ease-in-out;
  }
  .box_q3454325 .equity .small_title {
    margin-top: 26px;
    margin-left: 24px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 24px;
  }
  .box_q3454325 .equity .equity_swiper {
    margin-top: 78px;
    padding: 0 40px;
  }
  .box_q3454325 .equity .equity_swiper .swiper-slide {
    width: 385px;
  }
  .box_q3454325 .equity .equity_swiper .title {
    font-size: 36px;
  }
  .box_q3454325 .equity .equity_swiper .desc {
    margin-top: 12px;
  }
  .box_q3454325 .equity .equity_swiper .link i {
    margin-left: 7.5px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
  }
  .box_q3454325 .equity .equity_swiper .swiper-pagination {
    position: relative;
    bottom: 0;
    display: block;
    margin-top: 40px;
    font-size: 0;
  }
  .box_q3454325 .equity .equity_swiper .swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 1px;
    margin: 0;
    vertical-align: middle;
    background-color: #8445c8;
    border-radius: 0;
    opacity: 0.3;
  }
  .box_q3454325 .equity .equity_swiper .swiper-pagination .swiper-pagination-bullet-active {
    height: 3px;
    opacity: 1;
  }
}
@font-face {
  font-family: "iconfont";
  src: url("https://image.casarte.com/images/iconfont.woff2?t=1724327006070") format("woff2"), url("https://image.casarte.com/images/iconfont.woff?t=1724327006070") format("woff"), url("https://image.casarte.com/images/iconfont.ttf?t=1724327006070") format("truetype");
}

.box_734598734895 {
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/common.css?v=0.0.0 */
  /*! @import http://www.panhuikj.com/static/home/font/iconfont.css */
  /*! end @import */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/mobile.css */
  /*! CSS Used fontfaces */
}
.box_734598734895 .iconfont {
  font-family: "iconfont" !important;
  font-size: 20px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.box_734598734895 .icon-direction-right:before {
  content: "\e66f";
}
.box_734598734895 .iconfont {
  font-size: 20px;
}
.box_734598734895 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_734598734895 img {
  border: 0 none;
}
.box_734598734895 dl {
  list-style: none;
}
.box_734598734895 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_734598734895 img {
  border: 0 none;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.box_734598734895 a img {
  border: 0 none;
}
.box_734598734895 i {
  font-style: normal;
}
.box_734598734895 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_734598734895 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_734598734895 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_734598734895 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_734598734895 .pt-30 {
  padding-top: 30px;
}
.box_734598734895 .pb-30 {
  padding-bottom: 30px;
}
.box_734598734895 .pt-70 {
  padding-top: 70px;
}
.box_734598734895 .pr-70 {
  padding-right: 70px;
}
.box_734598734895 .pb-70 {
  padding-bottom: 70px;
}
.box_734598734895 .mr-15 {
  margin-right: 15px;
}
.box_734598734895 .f14 {
  font-size: 14px;
}
.box_734598734895 .f24 {
  font-size: 24px;
}
.box_734598734895 .color-white {
  color: white;
}
.box_734598734895 .color-white4 {
  color: rgba(255, 255, 255, 0.4);
}
.box_734598734895 .bg-blue {
  background-color: #14629f;
}
.box_734598734895 .flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box_734598734895 .flex-center {
  display: flex;
  align-items: center;
}
.box_734598734895 .flex-between {
  display: flex;
  justify-content: space-between;
}
.box_734598734895 .flex-column {
  flex-direction: column;
}
.box_734598734895 .transition {
  transition: all 0.36s;
}
.box_734598734895 .line-height {
  line-height: 2;
}
.box_734598734895 .text-nowrap {
  white-space: nowrap;
}
.box_734598734895 .line-height2-4 {
  line-height: 2.4;
}
@media screen and (max-width: 750px) {
  .box_734598734895 .wapFlex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .box_734598734895 .line-height2-4 {
    line-height: 2;
  }
}
@media screen and (max-width: 1600px) {
  .box_734598734895 .pt-30 {
    padding-top: 26px;
  }
  .box_734598734895 .pb-30 {
    padding-bottom: 26px;
  }
  .box_734598734895 .pt-70 {
    padding-top: 66px;
  }
  .box_734598734895 .pr-70 {
    padding-right: 66px;
  }
  .box_734598734895 .pb-70 {
    padding-bottom: 66px;
  }
  .box_734598734895 .mr-15 {
    margin-right: 13px;
  }
}
@media screen and (max-width: 1440px) {
  .box_734598734895 .pt-30 {
    padding-top: 24px;
  }
  .box_734598734895 .pb-30 {
    padding-bottom: 24px;
  }
  .box_734598734895 .pt-70 {
    padding-top: 50px;
  }
  .box_734598734895 .pr-70 {
    padding-right: 50px;
  }
  .box_734598734895 .pb-70 {
    padding-bottom: 50px;
  }
  .box_734598734895 .mr-15 {
    margin-right: 10px;
  }
  .box_734598734895 .f14 {
    font-size: 14px;
  }
  .box_734598734895 .f24 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .box_734598734895 .pt-30 {
    padding-top: 22px;
  }
  .box_734598734895 .pb-30 {
    padding-bottom: 22px;
  }
  .box_734598734895 .pt-70 {
    padding-top: 60px;
  }
  .box_734598734895 .pr-70 {
    padding-right: 60px;
  }
  .box_734598734895 .pb-70 {
    padding-bottom: 60px;
  }
  .box_734598734895 .mr-15 {
    margin-right: 8px;
  }
  .box_734598734895 .f14 {
    font-size: 12px;
  }
  .box_734598734895 .f24 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .box_734598734895 .pt-30 {
    padding-top: 18px;
  }
  .box_734598734895 .pb-30 {
    padding-bottom: 18px;
  }
  .box_734598734895 .pt-70 {
    padding-top: 55px;
  }
  .box_734598734895 .pr-70 {
    padding-right: 55px;
  }
  .box_734598734895 .pb-70 {
    padding-bottom: 55px;
  }
  .box_734598734895 .mr-15 {
    margin-right: 8px;
  }
}
@media screen and (max-width: 750px) {
  .box_734598734895 .pt-70 {
    padding-top: 20px;
  }
  .box_734598734895 .pr-70 {
    padding-right: 20px;
  }
  .box_734598734895 .pb-70 {
    padding-bottom: 20px;
  }
  .box_734598734895 .f24 {
    font-size: 14px;
  }
}
.box_734598734895 footer .left {
  background-color: #0e203e;
  width: 36.4%;
}
.box_734598734895 footer .left a {
  min-height: 50px;
  padding-left: 9vw;
  height: 50%;
}
.box_734598734895 footer .left a:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.box_734598734895 footer .left a:hover {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
}
.box_734598734895 footer .right {
  width: 63.6%;
}
.box_734598734895 footer .right .top {
  padding-left: 9vw;
  padding-right: 9vw;
}
.box_734598734895 footer .right dd {
  line-height: 3.7;
}
.box_734598734895 .footContact .tip {
  width: 6em;
}
.box_734598734895 footer .right .bottom {
  padding-left: 9vw;
  padding-right: 9vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.box_734598734895 footer a:hover {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .box_734598734895 footer .right .bottom {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .box_734598734895 footer .left a {
    padding-left: 5vw;
  }
  .box_734598734895 footer .right .top {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 1280px) {
  .box_734598734895 .footContact .tip {
    width: 4em;
  }
}
@media screen and (max-width: 1040px) {
  .box_734598734895 footer .right .bottom {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .box_734598734895 footer .left a {
    padding-left: 2vw;
  }
  .box_734598734895 footer .right .top {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 750px) {
  .box_734598734895 .iconfont {
    font-size: 14px;
  }
  .box_734598734895 footer .left {
    width: 100%;
  }
  .box_734598734895 .footIcon {
    max-height: 20px;
    max-width: 20px;
  }
  .box_734598734895 footer .right {
    width: 100%;
  }
  .box_734598734895 footer .right .top dl {
    display: none;
  }
  .box_734598734895 footer .left a {
    padding: 0 20px;
  }
  .box_734598734895 .footContact {
    line-height: 2.4;
  }
  .box_734598734895 footer .right .top {
    padding: 20px;
  }
  .box_734598734895 footer .right .bottom {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@font-face {
  font-family: "iconfont";
  src: url("http://www.panhuikj.com/static/home/font/iconfont.woff2?t=1695353212471") format("woff2"), url("http://www.panhuikj.com/static/home/font/iconfont.woff?t=1695353212471") format("woff"), url("http://www.panhuikj.com/static/home/font/iconfont.ttf?t=1695353212471") format("truetype");
}

.box_6347856345 {
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/common.css?v=0.0.0 */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/style.css?v=0.0.0 */
  /*! CSS Used from: http://www.panhuikj.com/static/home/css/mobile.css */
}
.box_6347856345 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
.box_6347856345 img {
  border: 0 none;
}
.box_6347856345 a {
  color: #333;
  text-decoration: none;
  border: 0 none;
}
.box_6347856345 img {
  border: 0 none;
  max-width: 100%;
  vertical-align: middle;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.box_6347856345 a img {
  border: 0 none;
}
.box_6347856345 a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
.box_6347856345 ::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.box_6347856345 ::-webkit-scrollbar-track {
  border-radius: 5px;
}
.box_6347856345 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #14629f;
}
.box_6347856345 .pt-15 {
  padding-top: 15px;
}
.box_6347856345 .pb-15 {
  padding-bottom: 15px;
}
.box_6347856345 .pl-40 {
  padding-left: 40px;
}
.box_6347856345 .pr-40 {
  padding-right: 40px;
}
.box_6347856345 .pt-50 {
  padding-top: 50px;
}
.box_6347856345 .pb-50 {
  padding-bottom: 50px;
}
.box_6347856345 .pt-70 {
  padding-top: 70px;
}
.box_6347856345 .pb-70 {
  padding-bottom: 70px;
}
.box_6347856345 .ml-15 {
  margin-left: 15px;
}
.box_6347856345 .mb-50 {
  margin-bottom: 50px;
}
.box_6347856345 .f50 {
  font-size: 50px;
}
.box_6347856345 .hidden {
  overflow: hidden;
}
.box_6347856345 .color-white {
  color: white;
}
.box_6347856345 .flex-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box_6347856345 .iflex {
  display: inline-flex;
}
.box_6347856345 .posi {
  position: relative;
}
.box_6347856345 .z10 {
  position: relative;
  z-index: 10;
}
.box_6347856345 .transition {
  transition: all 0.36s;
}
.box_6347856345 .font-weight {
  font-weight: bold;
}
.box_6347856345 .border {
  border: 1px solid #e5e5e5;
}
.box_6347856345 .radius40 {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
@media screen and (max-width: 750px) {
  .box_6347856345 .bg-scoll {
    background-attachment: scroll !important;
  }
}
@media screen and (max-width: 1600px) {
  .box_6347856345 .pt-15 {
    padding-top: 13px;
  }
  .box_6347856345 .pb-15 {
    padding-bottom: 13px;
  }
  .box_6347856345 .pl-40 {
    padding-left: 36px;
  }
  .box_6347856345 .pr-40 {
    padding-right: 36px;
  }
  .box_6347856345 .pt-50 {
    padding-top: 45px;
  }
  .box_6347856345 .pb-50 {
    padding-bottom: 45px;
  }
  .box_6347856345 .pt-70 {
    padding-top: 66px;
  }
  .box_6347856345 .pb-70 {
    padding-bottom: 66px;
  }
  .box_6347856345 .ml-15 {
    margin-left: 13px;
  }
  .box_6347856345 .mb-50 {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1440px) {
  .box_6347856345 .pt-15 {
    padding-top: 10px;
  }
  .box_6347856345 .pb-15 {
    padding-bottom: 10px;
  }
  .box_6347856345 .pl-40 {
    padding-left: 34px;
  }
  .box_6347856345 .pr-40 {
    padding-right: 34px;
  }
  .box_6347856345 .pt-50 {
    padding-top: 42px;
  }
  .box_6347856345 .pb-50 {
    padding-bottom: 42px;
  }
  .box_6347856345 .pt-70 {
    padding-top: 50px;
  }
  .box_6347856345 .pb-70 {
    padding-bottom: 50px;
  }
  .box_6347856345 .ml-15 {
    margin-left: 10px;
  }
  .box_6347856345 .mb-50 {
    margin-bottom: 42px;
  }
  .box_6347856345 .f50 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .box_6347856345 .pt-15 {
    padding-top: 8px;
  }
  .box_6347856345 .pb-15 {
    padding-bottom: 8px;
  }
  .box_6347856345 .pl-40 {
    padding-left: 32px;
  }
  .box_6347856345 .pr-40 {
    padding-right: 32px;
  }
  .box_6347856345 .pt-50 {
    padding-top: 40px;
  }
  .box_6347856345 .pb-50 {
    padding-bottom: 40px;
  }
  .box_6347856345 .pt-70 {
    padding-top: 60px;
  }
  .box_6347856345 .pb-70 {
    padding-bottom: 60px;
  }
  .box_6347856345 .ml-15 {
    margin-left: 8px;
  }
  .box_6347856345 .mb-50 {
    margin-bottom: 40px;
  }
  .box_6347856345 .f50 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .box_6347856345 .pt-15 {
    padding-top: 8px;
  }
  .box_6347856345 .pb-15 {
    padding-bottom: 8px;
  }
  .box_6347856345 .pl-40 {
    padding-left: 28px;
  }
  .box_6347856345 .pr-40 {
    padding-right: 28px;
  }
  .box_6347856345 .pt-50 {
    padding-top: 35px;
  }
  .box_6347856345 .pb-50 {
    padding-bottom: 35px;
  }
  .box_6347856345 .pt-70 {
    padding-top: 55px;
  }
  .box_6347856345 .pb-70 {
    padding-bottom: 55px;
  }
  .box_6347856345 .ml-15 {
    margin-left: 8px;
  }
  .box_6347856345 .mb-50 {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 750px) {
  .box_6347856345 .pl-40 {
    padding-left: 20px;
  }
  .box_6347856345 .pr-40 {
    padding-right: 20px;
  }
  .box_6347856345 .pt-50 {
    padding-top: 20px;
  }
  .box_6347856345 .pb-50 {
    padding-bottom: 20px;
  }
  .box_6347856345 .pt-70 {
    padding-top: 20px;
  }
  .box_6347856345 .pb-70 {
    padding-bottom: 20px;
  }
  .box_6347856345 .mb-50 {
    margin-bottom: 20px;
  }
  .box_6347856345 .f50 {
    font-size: 20px;
  }
}
.box_6347856345 .w82 {
  width: 82%;
  margin: 0 auto;
}
.box_6347856345 .idxAdvice {
  background: url(/static/upload/image/20241011/1728630180447139.jpg) no-repeat center center;
  background-size: cover;
  /*background-attachment: fixed;*/
}
.box_6347856345 .idxAdvice .mb-50{
    opacity: 0;
}
.box_6347856345 .idxAdvice::after {
  width: 63.6%;
  height: 70px;
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #14629f;
}
.box_6347856345 .idxAdvice .more::after {
  width: 0;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #14629f;
  transition: all 0.36s;
  -webkit-transition: all 0.36s;
  -moz-transition: all 0.36s;
  -ms-transition: all 0.36s;
  -o-transition: all 0.36s;
}
.box_6347856345 .idxAdvice .more:hover::after {
  width: 100%;
}
.box_6347856345 .idxAdvice .more:hover {
  border-color: #14629f;
  transform: scale(0.95);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
}
@media screen and (max-width: 1440px) {
  .box_6347856345 .w82 {
    width: 90%;
  }
  .box_6347856345 .idxAdvice::after {
    height: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .box_6347856345 .idxAdvice::after {
    height: 60px;
  }
}
@media screen and (max-width: 1040px) {
  .box_6347856345 .w82 {
    width: 96%;
  }
}
@media screen and (max-width: 750px) {
  .box_6347856345 .w82 {
    width: 100%;
    padding: 0 20px;
  }
  .box_6347856345 .idxAdvice::after {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */









.fldy .row .col-md-3 {
  position: relative;
  transition: .3s;
  top: -0px;
}
.fldy .row .col-md-3:hover{
  top: -15px;
  /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*/
}.kbgs .container .row a {
  position: relative;
  transition: .3s;
  top: -0px;
}
.kbgs .container .row a:hover{
  top: -15px;
  /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*/
}
.box_q3454325 .equity .equity_swiper a {
  position: relative;
  transition: .3s;
  top: -0px;
}
.box_q3454325 .equity .equity_swiper a:hover{
  top: -15px;
}
.imgBox img {
  position: relative;
  transition: .3s;
  top: -0px;
}
.imgBox img:hover{
  top: -15px;
}
.box_146358435432 .oemdiv1 dl.d1 dt img {
  position: relative;
  transition: .3s;
  top: -0px;
}
.box_146358435432 .oemdiv1 dl.d1 dt img:hover{
  top: -15px;
}
.box_1235234 .swiper-slide img{
  position: relative;
  transition: .3s;
  top: -0px;
}
.box_1235234 .swiper-slide:hover img{
  top: -15px;
}
.product_12312 h1.mb-5{
    font-weight: bold;
}
.box_6873534 .container{
    position: relative;
}
.box_6873534 .swiper-slide img{
  position: relative;
  transition: .3s;
  top: -0px;
}
.box_6873534 .swiper-slide:hover img{
  top: -15px;
}
.box_325432532 .swiper-slide img{
  position: relative;
  transition: .3s;
  top: -0px;
}
.box_325432532 .swiper-slide:hover img{
  top: -15px;
}
.box_794856 .swiper-slide img {
  position: relative;
  transition: .3s;
  top: -0px;
}
.box_794856 .swiper-slide:hover img{
  top: -15px;
}
.title {
    opacity: 0.8;
    letter-spacing: 3px;
}