@charset "UTF-8";
.w1520 {
  max-width: 94%;
  width: 15.2rem;
  margin: 0 auto;
}

video {
  width: 60%;
}

@media (max-width: 900px) {
  video {
    width: 80%;
  }
}
/*视频容器样式*/
.v-a {
  position: fixed;
  left: 0;
  top: 120%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999999999;
  transition: top 0.5s ease-in-out;
}

.v-a.show {
  top: 0;
}

.v-a.show .v-e {
  visibility: visible;
}

.v-a.show .v-f {
  display: block;
}

.v-b {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.v-c {
  display: block;
  width: 60px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 10000;
}

.v-e {
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0px;
  bottom: 0px;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.v-f {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 800px;
  max-height: calc(100% - 80px);
  transform: translate(-50%, -50%);
}

.searchBox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}
.searchBox .ipt {
  width: 100%;
  height: 2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchBox .ipt .inpZ {
  width: 6rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(94, 94, 94, 0.261);
  padding: 0.5rem 0;
  padding: 0.1rem 0;
  justify-content: center;
}
.searchBox .ipt .inpZ input {
  width: 5rem;
  border: none;
}
.searchBox .ipt .inpZ .submit {
  width: 30px;
  height: 30px;
  background-image: url(../images/search1.png);
  background-size: 100% 100%;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
header .layout {
  height: 1rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  display: block;
  width: auto;
  height: 58%;
}
header .logo img {
  width: auto;
  height: 100%;
}
header .nav {
  display: flex;
  align-items: center;
  height: 100%;
}
header .nav .tag {
  line-height: 1rem;
  padding: 0 0.3rem;
  position: relative;
}
header .nav .tag .tag_a {
  position: relative;
  transition: all 0.3s;
}
header .nav .tag .tag_a::after {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #00a0e4;
  transition: all 0.3s;
}
header .nav .tag .tag_a:hover {
  color: #00a0e4;
}
header .nav .tag .tag_a:hover::after {
  width: 100%;
}
header .nav .tag .child {
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 30px));
  transition: all 0.3s;
  padding: 5px 0;
}
header .nav .tag .child::after {
  content: "";
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #fff;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -90%);
}
header .nav .tag .child_a {
  width: auto;
  display: block;
  line-height: 1;
  padding: 15px 30px;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s;
  text-align: center;
}
header .nav .tag .child_a::after {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #00a0e4;
  transition: all 0.3s;
}
header .nav .tag .child_a:hover {
  color: #00a0e4;
}
header .nav .tag .child_a:hover::after {
  width: calc(100% - 60px);
}
header .nav .tag:hover .child {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 100%);
}
header .nav .search {
  margin-left: 0.7rem;
  cursor: pointer;
}
header .nav .search img {
  width: 18px;
}
header .nav .close {
  width: 28px;
  z-index: 12;
  margin-left: 0.5rem;
  display: none;
}
header .nav .close span {
  display: block;
  height: 2px;
  background: #222222;
  margin-bottom: 8px;
  border-radius: 2px;
  transform-origin: right center;
  transition: all 0.3s;
  width: 100%;
}
header .nav .close span:nth-child(3) {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  header .nav .close {
    display: block !important;
  }
}
header .nav .open span {
  background: #222222;
}
header .nav .open span:nth-of-type(1) {
  transform: rotate(-45deg);
}
header .nav .open span:nth-of-type(2) {
  width: 0;
}
header .nav .open span:nth-of-type(3) {
  transform: rotate(45deg);
}
@media (max-width: 1100px) {
  header .nav .tag {
    display: none;
  }
}
header .h-nav {
  display: block;
  position: fixed;
  height: calc(100vh - 60px);
  width: 100%;
  background-color: #ffffff;
  top: 60px;
  right: -100%;
  transition: all 0.5s;
  color: #000000;
  z-index: 20;
  background-color: #336bb8;
}
header .h-nav .HnavBox {
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header .h-nav .HnavBox .onc {
  padding: 0 0.5rem;
  width: 100%;
  line-height: 40px;
  display: block;
  color: #fff;
  background-color: #336bb8;
}
header .h-nav .HnavBox .onc:hover {
  background-color: #5e8fd4;
  color: #fff;
}
header .h-nav .active {
  background-color: #f2cb1e;
}
header .h-nav .hideBox {
  position: relative;
}
header .h-nav .hideBox .Aicon {
  display: flex;
}
header .h-nav .hideBox .Aicon:hover {
  background-color: #c9bda6;
  color: #ffffff;
}
header .h-nav .hideBox .Aicon .onc:hover {
  background-color: rgba(0, 0, 0, 0);
}
header .h-nav .hideBox .Aicon .span1 {
  font-size: 26px;
  padding-right: 0.5rem;
  cursor: pointer;
}
header .h-nav .hideBox .Aicon .span2 {
  font-size: 26px;
  padding-right: 0.5rem;
  cursor: pointer;
  display: none;
}
header .h-nav .hideBox .hide {
  display: none;
}
header .h-nav .hideBox .hide li {
  padding: 0 0.7rem;
  line-height: 40px;
}
header .h-nav .hideBox .hide li:hover {
  background-color: #c9bda6;
  color: #ffffff;
}
header .h-nav .k .Aicon .span1 {
  display: none;
}
header .h-nav .k .Aicon .span2 {
  display: block;
}

footer {
  background-image: url(../images/footer.jpg);
  padding-bottom: 0.95rem;
}
footer .title {
  display: flex;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
footer .title .logo {
  width: 1.7rem;
  height: auto;
}
footer .title .iconBox {
  display: flex;
  align-items: flex-end;
}
footer .title .iconBox .icon {
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  border-radius: 50%;
  background-color: #48556a;
  margin-left: 0.1rem;
}
footer .title .iconBox .icon:nth-child(1) {
  margin-left: 0;
}
footer .title .iconBox .icon:hover {
  background-color: #00a0e4;
}
footer .title .iconBox .icon img {
  display: inline-block;
  height: auto;
}
footer .content {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
footer .content .left {
  color: #ffffff;
  width: 4.5rem;
}
footer .content .left .h1 {
  display: block;
  margin-bottom: 0.3rem;
}
footer .content .left .p1 {
  display: block;
  line-height: 2.25em;
}
footer .content .left .p1 span {
  font-weight: bold;
}
footer .content .right {
  display: flex;
}
footer .content .right .tag {
  color: #ffffff;
  margin-left: 0.85rem;
}
footer .content .right .tag:nth-child(1) {
  margin-left: 0;
}
footer .content .right .tag .h1 {
  margin-bottom: 0.3rem;
}
footer .content .right .tag .p1 {
  display: block;
  line-height: 2.125em;
  color: rgba(255, 255, 255, 0.5);
}
footer .content .right .tag .p1:hover {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  footer .content .left {
    width: 100%;
  }
  footer .content .right {
    display: none;
  }
}
footer .source {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.4;
}

.page1 .mySwiper1 {
  position: relative;
  overflow: hidden;
}
.page1 .mySwiper1 .swiper-slide {
  position: relative;
}
.page1 .mySwiper1 .swiper-slide .banner {
  width: 100%;
  height: auto;
  transform: scale3d(1.2, 1.2, 1);
  transition: all 5s cubic-bezier(0.04, 0.79, 1, 1);
}
.page1 .mySwiper1 .swiper-slide .text {
  position: absolute;
  left: 10.4166666667%;
  top: 50%;
  transform: translateY(calc(-50% + 30px));
  color: #ffffff;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: 0.8s;
}
.page1 .mySwiper1 .swiper-slide .text .h1 {
  font-weight: bold;
}
.page1 .mySwiper1 .swiper-slide .text .p1 {
  font-weight: bold;
  margin-top: 0.2rem;
}
.page1 .mySwiper1 .swiper-slide .text .btnBox {
  padding: 0.06rem;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  display: inline-block;
  width: auto;
  margin-top: 0.4rem;
}
.page1 .mySwiper1 .swiper-slide .text .btnBox .btn {
  padding: 0.17rem 0.3rem;
  background-color: #ffffff;
  border-radius: 25px;
  color: #444444;
  display: flex;
  align-items: center;
}
.page1 .mySwiper1 .swiper-slide .text .btnBox .btn img {
  width: 0.26rem;
  height: auto;
  margin-left: 0.28rem;
  display: block;
}
@media (max-width: 700px) {
  .page1 .mySwiper1 .swiper-slide .text .h1 {
    font-size: 18px;
  }
  .page1 .mySwiper1 .swiper-slide .text .p1 {
    font-size: 14px;
  }
  .page1 .mySwiper1 .swiper-slide .text .btnBox {
    margin-top: 10px;
  }
  .page1 .mySwiper1 .swiper-slide .text .btnBox .btn span {
    font-size: 12px;
  }
}
.page1 .mySwiper1 .swiper-slide .mask {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: black;
  background: linear-gradient(to right, rgba(0, 160, 228, 0.94), rgba(0, 160, 228, 0.2), rgba(0, 160, 228, 0));
}
.page1 .mySwiper1 .swiper-slide-active .banner {
  transform: scale3d(1, 1, 1);
  transition: all 5s cubic-bezier(0.04, 0.79, 1, 1);
}
.page1 .mySwiper1 .swiper-slide-active .text {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(-50%);
  transition: 1s ease-in-out;
}
.page1 .mySwiper1 .swiper-pagination {
  left: 10.4166666667%;
  bottom: 5.8139534884%;
  width: auto;
  display: flex;
  align-items: center;
}
.page1 .mySwiper1 .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  min-width: 5px;
  min-height: 5px;
  margin: 0 0.12rem;
  background-color: #ffffff;
  opacity: 1;
}
.page1 .mySwiper1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.28rem;
  min-width: 14px;
  height: 0.3rem;
  min-width: 15px;
  background-image: url(../images/icon.jpg);
  background-size: 100% 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
}
.page1 .mySwiper1 .swiper-num {
  position: absolute;
  right: 10.4166666667%;
  bottom: 6.511627907%;
  color: #ffffff;
  z-index: 2;
  font-weight: bold;
}
.page1 .manufacturing {
  background-color: #f1f9fe;
  padding-top: 0.9rem;
  padding-bottom: 1.1rem;
}
.page1 .manufacturing .title {
  display: flex;
  justify-content: space-between;
}
.page1 .manufacturing .title .text .p1 {
  font-weight: bold;
}
.page1 .manufacturing .title .text .p2 {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.page1 .manufacturing .title .text .p2 img {
  width: 0.3rem;
  height: auto;
  margin-right: 0.05rem;
}
.page1 .manufacturing .title .btn {
  display: flex;
  align-items: flex-end;
}
.page1 .manufacturing .title .btn .swiper_btn {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.1rem;
}
.page1 .manufacturing .title .btn .swiper_btn img {
  width: 26%;
  height: auto;
}
.page1 .manufacturing .title .btn .swiper_btn .img2 {
  display: none;
}
.page1 .manufacturing .title .btn .swiper_btn:hover {
  background-color: #00a0e4;
}
.page1 .manufacturing .title .btn .swiper_btn:hover .img1 {
  display: none;
}
.page1 .manufacturing .title .btn .swiper_btn:hover .img2 {
  display: block;
}
.page1 .manufacturing .mySwiper2 {
  position: relative;
  overflow: hidden;
  margin-top: 0.4rem;
  padding-bottom: 0.35rem;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 4.1666666667%;
  padding-bottom: 12.5%;
  position: relative;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .img .banner {
  width: 100%;
  height: auto;
  transition: all 0.5s;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .img:hover .banner {
  transform: scale(1.3);
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .img .icon {
  width: 20.4545454545%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .img .sum {
  position: absolute;
  bottom: 0;
  left: 2.7272727273%;
  z-index: 1;
  color: rgba(0, 0, 0, 0.15);
  font-weight: bold;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .text {
  padding: 0 4.5454545455%;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .text .p1 {
  color: #222222;
  margin-top: 0.45rem;
}
.page1 .manufacturing .mySwiper2 .swiper-slide .box .text .p2 {
  color: #666666;
  line-height: 1.875em;
  margin-top: 0.15rem;
}
.page1 .manufacturing .mySwiper2 .swiper-scrollbar {
  width: 100%;
  left: 0;
}
.page1 .manufacturing .mySwiper2 .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #00a0e4;
}
.page1 .product {
  background-color: #ebf5fb;
  padding-top: 0.65rem;
  padding-bottom: 1.1rem;
  background-image: url(../images/banner6.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.page1 .product .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 2rem;
}
.page1 .product .title .text .p1 {
  font-weight: bold;
}
.page1 .product .title .text .p2 {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.page1 .product .title .text .p2 img {
  width: 0.3rem;
  height: auto;
  margin-right: 0.05rem;
}
.page1 .product .title .btnBox {
  padding: 0.07rem;
  border: 1px dashed rgba(0, 160, 228, 0.3);
  border-radius: 31px;
}
.page1 .product .title .btnBox .btn {
  padding: 0.17rem 0.3rem;
  background-color: #00a0e4;
  border-radius: 25px;
  color: #fff;
  display: flex;
  align-items: center;
}
.page1 .product .title .btnBox .btn img {
  width: 0.27rem;
  margin-left: 0.28rem;
}
.page1 .product .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.page1 .product .content .left {
  width: 39.5833333333%;
  z-index: 10;
  padding-left: 10.4166666667%;
}
.page1 .product .content .left .p1 {
  line-height: 1.75em;
  color: #222222;
}
.page1 .product .content .left .list {
  margin-top: 0.55rem;
}
.page1 .product .content .left .list .item {
  width: 100%;
  border: solid 1px rgba(51, 66, 89, 0.12);
  border-radius: 10px;
  padding: 0.33rem 8.9285714286%;
  padding-right: 7.1428571429%;
  margin-top: 0.2rem;
  position: relative;
}
.page1 .product .content .left .list .item .t1 {
  color: #222222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page1 .product .content .left .list .item .t1 img {
  width: 7px;
}
.page1 .product .content .left .list .item .t2 {
  color: #666666;
  line-height: 1.875em;
  margin-top: 0.2rem;
  display: none;
}
.page1 .product .content .left .list .item .btn {
  display: none;
  width: 0.5rem;
  height: 0.5rem;
  justify-content: center;
  align-items: center;
  background-color: #00a0e4;
  border-radius: 0.25rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.page1 .product .content .left .list .item .btn img {
  width: 26%;
}
.page1 .product .content .left .list .onItem {
  background-color: #ffffff;
  padding-right: 12.5%;
}
.page1 .product .content .left .list .onItem .t1 img {
  display: none;
}
.page1 .product .content .left .list .onItem .t2 {
  display: -webkit-box;
}
.page1 .product .content .left .list .onItem .btn {
  display: flex;
}
.page1 .product .content .right {
  margin-left: 4.1666666667%;
  width: 56.25%;
  padding-right: 10.4166666667%;
  overflow: hidden;
}
.page1 .product .content .right .mySwiper3 {
  width: 100%;
  height: 100%;
}
.page1 .product .content .right .mySwiper3 .swiper-slide {
  opacity: 0.1;
  transition: all 0.5s;
}
.page1 .product .content .right .mySwiper3 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.page1 .product .content .right .mySwiper3 .swiper-slide-active {
  opacity: 1;
}
@media (max-width: 700px) {
  .page1 .product .content .left {
    width: 100%;
  }
  .page1 .product .content .left .list .item .btn {
    display: none;
  }
  .page1 .product .content .right {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
@media (max-width: 900px) {
  .page1 .product .title {
    max-width: 94%;
    width: 15.2rem;
    margin: 0 auto;
    padding: 0;
  }
  .page1 .product .content {
    max-width: 94%;
    width: 15.2rem;
    margin: 0 auto;
    margin-top: 0.4rem;
  }
  .page1 .product .content .left {
    padding-left: 0;
  }
  .page1 .product .content .right {
    padding-right: 0;
  }
}
.page1 .about {
  display: flex;
  flex-wrap: wrap;
}
.page1 .about .left {
  width: 27.7604166667%;
  padding-left: 10.4166666667%;
  padding-top: 0.95rem;
  padding-bottom: 1rem;
  background-image: url(../images/banner8.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page1 .about .left .h1 {
  font-weight: bold;
  color: #ffffff;
}
.page1 .about .left .h2 {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-top: 0.15rem;
  color: #ffffff;
}
.page1 .about .left .h2 img {
  width: 0.3rem;
  height: auto;
  margin-right: 0.05rem;
}
.page1 .about .left .data {
  margin-top: 1.4rem;
}
.page1 .about .left .data .item {
  margin-top: 0.6rem;
}
.page1 .about .left .data .top {
  display: flex;
  align-items: flex-end;
  color: #ffffff;
}
.page1 .about .left .data .top .t1 {
  font-weight: bold;
}
.page1 .about .left .data .top .t2 {
  margin-bottom: 0.1rem;
  margin-left: 0.06rem;
}
.page1 .about .left .data .top .t3 {
  position: relative;
  margin-left: 0.19rem;
  min-width: 1em;
  min-height: 1em;
}
.page1 .about .left .data .top .t3::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  font-weight: bold;
  transform: translate(-1em, -1em);
}
.page1 .about .left .data .bottom {
  color: #ffffff;
  margin-top: 0.1rem;
}
.page1 .about .right {
  flex: 1;
}
.page1 .about .right .top {
  width: 100%;
  height: 68.1818181818%;
  position: relative;
}
.page1 .about .right .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page1 .about .right .top .play {
  width: 1.22rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page1 .about .right .bottom {
  width: 100%;
  height: 31.8181818182%;
  padding: 0.5rem 0;
  padding-left: 7.2098053353%;
  padding-right: 14.4196106705%;
  display: flex;
  align-items: center;
  line-height: 1.875em;
  color: #444444;
}
@media (max-width: 900px) {
  .page1 .about .left {
    width: 100%;
    padding: 0 5%;
    padding-top: 0.95rem;
    padding-bottom: 1rem;
  }
  .page1 .about .left .data {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
  .page1 .about .right {
    width: 100%;
  }
  .page1 .about .right .top {
    height: auto;
  }
  .page1 .about .right .bottom {
    padding: 5%;
    height: auto;
  }
}
.page1 .news {
  background-color: #ebf5fb;
  padding-top: 0.95rem;
  padding-bottom: 1.1rem;
  background-image: url(../images/banner9.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page1 .news .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 2rem;
}
.page1 .news .title .text .p1 {
  font-weight: bold;
}
.page1 .news .title .text .p2 {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.page1 .news .title .text .p2 img {
  width: 0.3rem;
  height: auto;
  margin-right: 0.05rem;
}
.page1 .news .title .btnBox {
  padding: 0.07rem;
  border: 1px dashed rgba(0, 160, 228, 0.3);
  border-radius: 31px;
}
.page1 .news .title .btnBox .btn {
  padding: 0.17rem 0.3rem;
  background-color: #00a0e4;
  border-radius: 25px;
  color: #fff;
  display: flex;
  align-items: center;
}
.page1 .news .title .btnBox .btn img {
  width: 0.27rem;
  margin-left: 0.28rem;
}
@media (max-width: 900px) {
  .page1 .news .title {
    max-width: 94%;
    width: 15.2rem;
    margin: 0 auto;
    padding: 0;
  }
}
.page1 .news .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page1 .news .content .left {
  width: 41.4473684211%;
  margin-top: 0.35rem;
  display: block;
}
.page1 .news .content .left .banner {
  width: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.page1 .news .content .left .banner img {
  width: 100%;
  transition: all 0.5s;
}
.page1 .news .content .left .p1 {
  margin-top: 0.35rem;
}
.page1 .news .content .left .time {
  display: flex;
  align-items: center;
  color: #999999;
  margin-top: 0.2rem;
}
.page1 .news .content .left .time img {
  width: 14px;
  margin-right: 0.1rem;
}
.page1 .news .content .left:hover .banner img {
  transform: scale(1.3);
}
.page1 .news .content .left:hover .p1 {
  color: #00a0e4;
}
.page1 .news .content .right {
  width: 56.0526315789%;
  display: flex;
  justify-content: space-between;
}
.page1 .news .content .right .item {
  width: 47.6525821596%;
  border-radius: 0.1rem;
  overflow: hidden;
  margin-top: 0.35rem;
  background-color: #00a0e4;
}
.page1 .news .content .right .item .banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.page1 .news .content .right .item .banner img {
  width: 100%;
  transition: all 0.5s;
}
.page1 .news .content .right .item .banner .time {
  position: absolute;
  color: #ffffff;
  top: 7.3891625616%;
  right: 7.3891625616%;
  text-align: center;
}
.page1 .news .content .right .item .banner .time .b1 {
  font-weight: bold;
}
.page1 .news .content .right .item:hover .banner img {
  transform: scale(1.3);
}
.page1 .news .content .right .item .text {
  padding: 9.8522167488%;
}
.page1 .news .content .right .item .text .t1 {
  line-height: 1.6363636364em;
  color: #ffffff;
}
.page1 .news .content .right .item .text .t2 {
  margin-top: 0.07rem;
  line-height: 1.75em;
  color: rgba(255, 255, 255, 0.8);
}
.page1 .news .content .right .item .text .icon {
  width: 13px;
  margin-top: 0.3rem;
}
.page1 .news .content .right .list {
  width: 47.6525821596%;
  margin-top: 0.35rem;
}
.page1 .news .content .right .list .list_i {
  width: 100%;
  height: 31.0954063604%;
  margin-top: 4.6798029557%;
  background-color: #ffffff;
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0 9.8522167488%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page1 .news .content .right .list .list_i:nth-child(1) {
  margin-top: 0;
}
.page1 .news .content .right .list .list_i:hover .i1 {
  color: #00a0e4;
}
.page1 .news .content .right .list .list_i .i1 {
  line-height: 154.5454545455%;
  color: #333333;
}
.page1 .news .content .right .list .list_i .time {
  display: flex;
  align-items: center;
  color: #999999;
  margin-top: 0.1rem;
}
.page1 .news .content .right .list .list_i .time img {
  width: 14px;
  margin-right: 0.1rem;
}
@media (max-width: 900px) {
  .page1 .news .content .left,
.page1 .news .content .right {
    width: 100%;
  }
}

.com-tt.tt-c {
  text-align: center;
}
.com-tt .tt1 {
  font-weight: 600;
  color: #222;
}
.com-tt .tt2 {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  color: #444;
  margin-top: 0.14rem;
}
.com-tt .tt2 img {
  margin-right: 0.05rem;
}

.com-banner {
  position: relative;
}
.com-banner .cb_ban {
  position: relative;
}
.com-banner .cb_bg {
  position: relative;
  padding-top: 26.0416666667%;
  overflow: hidden;
}
.com-banner .cb_bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.com-banner .cb_text {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  font-weight: bold;
}
.com-banner .cb_text .cbp2 {
  margin-top: 0.14rem;
}
.com-banner .video video {
  width: 100%;
}
.com-banner .cb_nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  line-height: 1;
  color: #fff;
}
.com-banner .cb_nav .home {
  display: inline-flex;
  align-items: center;
}
.com-banner .cb_nav span {
  margin: 0 0.2rem;
}
.com-banner .cb_nav a:hover {
  color: #00a0e4;
}

.com-breadnav {
  min-height: 0.9rem;
}
.com-breadnav.white {
  background-color: #fff;
}
.com-breadnav .bn_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.com-breadnav .bread_nav {
  display: flex;
  align-items: center;
}
.com-breadnav .bn_a {
  line-height: 0.9rem;
  padding: 0 0.3rem;
  position: relative;
  transition: color 0.3s;
}
.com-breadnav .bn_a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.5rem;
  pointer-events: none;
  background-image: url(../images/icon-00.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top;
  display: none;
  z-index: 30;
}
.com-breadnav .bn_a:last-child {
  margin-right: 0;
}
.com-breadnav .bn_a.on {
  color: #fff !important;
  background-color: #00a0e4;
}
.com-breadnav .bn_a.on::before {
  display: block;
}
.com-breadnav .bn_a:hover {
  color: #00a0e4;
  transition: color 0.3s;
}
.com-breadnav .zone_nav {
  display: flex;
  align-items: center;
  line-height: 0.9rem;
}
.com-breadnav .icon {
  margin-right: 0.1rem;
}
.com-breadnav .sp1 {
  margin: 0 4px;
}
.com-breadnav .z_a {
  white-space: nowrap;
  position: relative;
  transition: all 0.3s;
  color: #444;
}
.com-breadnav .z_a.on, .com-breadnav .z_a:hover {
  color: #00a0e4;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .com-breadnav .bread_nav {
    max-width: 100%;
  }
  .com-breadnav .zone_nav {
    display: none;
  }
}
@media (max-width: 500px) {
  .com-breadnav .bn_a {
    padding: 0 5px;
  }
}

.com-pag {
  display: flex;
  justify-content: center;
}
.com-pag.bgfff .p_a {
  background-color: #fff;
}
.com-pag .p_a {
  width: 0.48rem;
  height: 0.48rem;
  min-width: 36px;
  min-height: 36px;
  margin-right: 0.08rem;
  border-radius: 50%;
  line-height: 1;
  color: #666;
}
.com-pag .p_a:last-child {
  margin-right: 0;
}
.com-pag .btn {
  transition: all 0.3s;
  background-size: 20% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.com-pag .btn span {
  display: block;
  text-align: center;
}
.com-pag .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.com-pag .num:hover, .com-pag .num.on {
  color: #fff;
  background-color: #00a0e4;
  transition: all 0.3s;
}
.com-pag .prev {
  background-image: url(../images/icon-p11.png);
}
.com-pag .prev:hover {
  background-image: url(../images/icon-p12.png);
}
.com-pag .next {
  background-image: url(../images/icon-p21.png);
}
.com-pag .next:hover {
  background-image: url(../images/icon-p22.png);
}
.com-pag .te {
  width: auto;
  padding: 0 0.2rem;
}

.c-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}

.ctc-1 {
  padding-bottom: 1rem;
  background-image: url(../images/ctc1_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ctc-1 .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ctc-1 .le {
  width: 27.6315789474%;
}
.ctc-1 .li {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}
.ctc-1 .li:last-child {
  margin-bottom: 0;
}
.ctc-1 .li .icon {
  width: 1rem;
  flex-shrink: 0;
  margin-right: 0.18rem;
}
.ctc-1 .p1 {
  font-weight: 500;
}
.ctc-1 .p2 {
  line-height: 1.6666666667;
  margin-top: 0.15rem;
}
.ctc-1 .maps {
  width: 66.7105263158%;
}
.ctc-1 .map {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 900px) {
  .ctc-1 .le {
    width: 100%;
  }
  .ctc-1 .maps {
    width: 100%;
    margin-top: 20px;
  }
  .ctc-1 .map {
    height: 5rem;
  }
}

.ctc-2 {
  padding-top: 0.98rem;
  padding-bottom: 1.16rem;
  background-image: url(../images/ctc2_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ctc-2 .f_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.38rem;
}
.ctc-2 .f_le {
  width: 48.0263157895%;
}
.ctc-2 .ta {
  width: 48.0263157895%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 0.2rem;
}
.ctc-2 .inp {
  position: relative;
  margin-bottom: 0.2rem;
}
.ctc-2 .inp:last-child {
  margin-bottom: 0;
}
.ctc-2 .inp input {
  width: 100%;
  height: 0.5rem;
  min-height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 0 0.2rem;
}
.ctc-2 .inp input::-webkit-input-placeholder, .ctc-2 .inp input::-moz-placeholder, .ctc-2 .inp input::-moz-placeholder, .ctc-2 .inp input::-ms-input-placeholder {
  color: #999;
}
.ctc-2 .inp .code {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.ctc-2 .f_btn {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
.ctc-2 .btn {
  height: 0.5rem;
  min-height: 40px;
  padding: 0 0.93rem;
  background-color: #00a0e4;
  color: #fff;
  border-radius: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.ctc-2 .btn:hover {
  box-shadow: 0 -2px 0 0 #00a0e4 inset, 0 2px 0.1rem #00a0e4;
  transform: translateY(-3px);
  transition: all 0.3s;
}
@media (max-width: 500px) {
  .ctc-2 .f_le {
    width: 100%;
  }
  .ctc-2 .ta {
    width: 100%;
    min-height: 200px;
  }
  .ctc-2 .inp {
    width: 100%;
    margin-bottom: 20px !important;
  }
}

.md-recruit .cont {
  padding-bottom: 0.7rem;
}

.rec2_list {
  margin-bottom: 0.7rem;
}
.rec2_list .r_i {
  background-color: #eef7fc;
  padding: 0 1rem;
  margin-bottom: 0.05rem;
  box-shadow: 0px 8px 0.3rem 0px rgba(0, 0, 0, 0.04);
}
.rec2_list .r_i.on {
  background-color: #fff;
}
.rec2_list .r_i.on .hd::before {
  background-image: url(../images/icon-13.png);
  transition: all 0.3s;
}
.rec2_list .r_i.on .icon {
  transform: rotate(180deg);
  transition: all 0.3s;
}
.rec2_list .ri1 {
  background-color: #334259;
  border-radius: 0.16rem 0.16rem 0px 0px;
  overflow: hidden;
}
.rec2_list .ri1 .hd {
  color: #fff;
  border-bottom: none;
}
.rec2_list .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.35rem 0;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}
.rec2_list .hi {
  width: 15%;
  text-align: center;
}
.rec2_list .hi:first-child {
  text-align: left;
}
.rec2_list .hi:last-child {
  width: 2em;
  flex-shrink: 0;
}
.rec2_list .bd {
  display: none;
  padding-top: 0.4rem;
  padding-bottom: 0.8rem;
}
.rec2_list .mb {
  display: none;
  margin-bottom: 0.2rem;
}
.rec2_list .mi {
  margin-right: 3em;
}
.rec2_list .te {
  line-height: 1.75;
  color: #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.rec2_list .ti {
  width: 48.3333333333%;
}
.rec2_list .p1 {
  font-weight: 500;
  color: #000;
}
.rec2_list .p2 {
  line-height: 1.875;
  font-weight: 300;
  margin-top: 0.2rem;
}
.rec2_list .icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 8px;
  background-image: url(../images/icon-14.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
.rec2_list .more {
  display: inline-flex;
  align-items: center;
  border-radius: 1rem;
  line-height: 1;
  color: #fff;
  background-color: #00a0e4;
  padding: 0.16rem 0.45rem;
  margin-top: 0.3rem;
  transition: all 0.3s;
}
.rec2_list .more:hover {
  box-shadow: 0 -2px 0 0 #00a0e4 inset, 0 2px 0.1rem #00a0e4;
  transition: all 0.3s;
}
.rec2_list .more img {
  margin-left: 0.1rem;
}
@media (max-width: 900px) {
  .rec2_list .r_i {
    padding: 0 20px;
  }
  .rec2_list .hi {
    width: 40%;
  }
  .rec2_list .hi:nth-child(2), .rec2_list .hi:nth-child(4) {
    display: none;
  }
  .rec2_list .ti {
    width: 100%;
  }
  .rec2_list .mb {
    display: block;
  }
}

.md-news .cont1 {
  padding-bottom: 0.7rem;
  background-image: url(../images/new_bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10%;
}
.md-news .cont2 {
  padding-bottom: 0.7rem;
  background-image: url(../images/new_bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10%;
}

.news_big {
  position: relative;
  margin-top: 1rem;
}
.news_big .swiper {
  overflow: hidden;
  border-radius: 0.1rem;
}
.news_big .sw {
  display: flex;
  align-items: center;
  background-color: #fff;
}
.news_big .sw:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.news_big .sw:hover .p1 {
  color: #00a0e4;
  transition: all 0.3s;
}
.news_big .sw:hover .d3 {
  box-shadow: 0 -2px 0 0 #00a0e4 inset, 0 2px 0.1rem #00a0e4;
  transition: all 0.3s;
}
.news_big .imgs {
  width: 37.5%;
}
.news_big .img {
  position: relative;
  padding-top: 75.0877192982%;
  overflow: hidden;
}
.news_big .text {
  width: 62.5%;
  padding: 0.2rem 0.85rem;
}
.news_big .time {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #999;
}
.news_big .time img {
  margin-right: 0.1rem;
}
.news_big .p1 {
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  margin-top: 0.16rem;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news_big .p2 {
  line-height: 1.875;
  color: #666;
  margin-top: 0.14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news_big .d3 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  background-color: #00a0e4;
  color: #fff;
  border-radius: 1rem;
  padding: 0.15rem 0.26rem;
  margin-top: 0.5rem;
  transition: all 0.3s;
}
.news_big .d3 img {
  margin-left: 0.28rem;
}
.news_big .btn {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 30;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26% auto;
  cursor: pointer;
}
.news_big .btn:hover {
  background-color: #00a0e4;
}
.news_big .prev {
  left: 0;
  transform: translate(-50%, -50%);
  background-image: url(../images/icon-b11.png);
}
.news_big .prev:hover {
  background-image: url(../images/icon-b12.png);
}
.news_big .next {
  right: 0;
  transform: translate(50%, -50%);
  background-image: url(../images/icon-b21.png);
}
.news_big .next:hover {
  background-image: url(../images/icon-b22.png);
}
@media (max-width: 900px) {
  .news_big .sw {
    flex-wrap: wrap;
  }
  .news_big .imgs {
    width: 100%;
  }
  .news_big .text {
    width: 100%;
    padding: 20px;
  }
}

.news_list {
  margin-top: 0.1rem;
  margin-bottom: 0.7rem;
}
.news_list .n_li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #eee;
}
.news_list .n_a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_list .n_a:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.news_list .n_a:hover .p1 {
  color: #00a0e4;
  transition: all 0.3s;
}
.news_list .n_a:hover .d3 {
  color: #00a0e4;
  transition: all 0.3s;
}
.news_list .te {
  width: 69.7368421053%;
  padding-top: 0.08rem;
}
.news_list .time {
  display: inline-flex;
  align-items: center;
  color: #999;
  line-height: 1;
}
.news_list .time img {
  margin-right: 0.1rem;
}
.news_list .p1 {
  margin-top: 0.32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  transition: all 0.3s;
}
.news_list .p2 {
  color: #666;
  line-height: 1.875;
  margin-top: 0.2rem;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.news_list .d3 {
  color: #666;
  margin-top: 0.55rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: all 0.3s;
}
.news_list .d3 img {
  margin-left: 0.1rem;
}
.news_list .imgs {
  position: relative;
  width: 24.3421052632%;
}
.news_list .img {
  position: relative;
  padding-top: 74.8648648649%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.com-pages {
  padding-top: 0.93rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.com-pages .com-le {
  width: 77.3026315789%;
}
.com-pages .com-ri {
  width: 16.4473684211%;
}
@media (max-width: 900px) {
  .com-pages .com-le {
    width: 100%;
  }
  .com-pages .com-ri {
    width: 100%;
    margin-top: 40px;
  }
}

.cr_t {
  font-weight: 600;
  color: #000d1e;
}

.cr_list {
  margin-top: 0.33rem;
}
.cr_list .cr_a {
  background-color: #fff;
  margin-bottom: 0.3rem;
  display: block;
  border-radius: 0.1rem;
  overflow: hidden;
}
.cr_list .cr_a:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.cr_list .cr_a:hover .p1 {
  color: #00a0e4;
  transition: all 0.3s;
}
.cr_list .img {
  position: relative;
  padding-top: 74.8%;
  overflow: hidden;
}
.cr_list .text {
  padding: 0.23rem 0.3rem;
  padding-bottom: 0.26rem;
}
.cr_list .p1 {
  line-height: 1.75;
  font-weight: 500;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cr_list .d2 {
  margin-top: 0.13rem;
  color: #666;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.cr_list .d2 img {
  margin-right: 0.05rem;
}
@media (max-width: 900px) {
  .cr_list {
    display: flex;
    justify-content: space-between;
  }
  .cr_list .cr_a {
    width: 48%;
  }
}

.det_top .h1 {
  font-weight: 600;
  line-height: 1.3333333333;
}
.det_top .dt_2 {
  display: flex;
  justify-content: space-between;
  margin-top: 0.38rem;
}
.det_top .le {
  color: #999;
}
.det_top .ll1 {
  margin-right: 0.65rem;
}
.det_top .share {
  display: inline-flex;
  align-items: center;
}
.det_top .share span {
  margin-right: 0.2rem;
}
.det_top .share a {
  margin-right: 0.28rem;
}
.det_top .share a:last-child {
  margin-right: 0;
}
.det_top .back {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  color: #000d1e;
}
.det_top .back:hover {
  color: #00a0e4;
}
.det_top .back img {
  margin-left: 0.1rem;
}

.det_cen {
  line-height: 1.875;
  color: #666;
  border-top: 1px solid rgba(140, 140, 140, 0.2);
  border-bottom: 1px solid rgba(140, 140, 140, 0.2);
  padding-top: 0.42rem;
  padding-bottom: 0.54rem;
  margin-top: 0.2rem;
}

.det_bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
  padding-bottom: 0.28rem;
}
.det_bot .det_pag {
  padding-right: 0.5rem;
}
.det_bot .det_pag li {
  margin-bottom: 0.18rem;
}
.det_bot .det_pag li:last-child {
  margin-bottom: 0;
}
.det_bot .det_pag a {
  color: #333;
}
.det_bot .det_pag a:hover {
  color: #00a0e4;
}
.det_bot .db_btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.16rem 0.24rem;
  border-radius: 1rem;
  color: #fff;
  background-color: #00a0e4;
  line-height: 1;
  transition: all 0.3s;
}
.det_bot .db_btn:hover {
  transform: translateY(6px);
  transition: all 0.3s;
}
.det_bot .db_btn img {
  margin-left: 0.5rem;
}

.ab-1 {
  position: relative;
  padding-top: 0.99rem;
  padding-bottom: 1rem;
  background-image: url(../images/ab1_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ab-1 .box {
  position: relative;
}
.ab-1 .ab11 {
  width: 7.2rem;
}
.ab-1 .imgs {
  position: absolute;
  top: 0;
  right: 0;
  width: 7rem;
}
.ab-1 .imgs .ib {
  position: relative;
  padding-top: 64.2857142857%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ab-1 .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.22rem;
  height: 1.22rem;
  background-image: url(../images/icon-10.png);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.ab-1 .te {
  line-height: 1.875;
  color: #444;
  margin-top: 0.28rem;
}
.ab-1 .ab12 {
  background-image: url(../images/ab1_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0.62rem;
}
.ab-1 .ab12b {
  display: flex;
  width: 8.2rem;
}
.ab-1 .li {
  width: 25%;
  color: #fff;
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
  line-height: 1;
  text-align: center;
}
.ab-1 .d1 {
  font-size: 0;
}
.ab-1 .d11 {
  display: inline-block;
  position: relative;
}
.ab-1 .d11 .sp2 {
  position: absolute;
  left: 100%;
  top: 0;
}
.ab-1 .d12 {
  display: inline-block;
}
.ab-1 .d2 {
  margin-top: 0.08rem;
}
@media (max-width: 900px) {
  .ab-1 .ab11 {
    width: 100%;
  }
  .ab-1 .imgs {
    position: relative;
    width: 100%;
  }
  .ab-1 .ab12b {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .ab-1 .li {
    width: 50%;
  }
}

.ab-2 {
  position: relative;
  background-image: url(../images/ab2_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0.95rem;
  padding-bottom: 1rem;
}
.ab-2 .tt1,
.ab-2 .tt2 {
  color: #fff;
}
.ab-2 .img {
  text-align: center;
}
.ab-2 .img img {
  width: 10.29rem;
}

.ab-3 {
  padding-top: 0.98rem;
  padding-bottom: 1rem;
  background-image: url(../images/ab3_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.ab-3 .list {
  display: flex;
  margin-top: 0.38rem;
}
.ab-3 .li {
  width: 26.6447368421%;
  margin-right: 2.6973684211%;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  transition: width 0.3s;
}
.ab-3 .li:last-child {
  margin-right: 0;
}
.ab-3 .li.on {
  width: 41.4473684211%;
  transition: width 0.3s;
}
.ab-3 .li.on .te {
  background-color: #00a0e4;
  color: #fff;
}
.ab-3 .li.on .sp1 {
  font-size: 1.5em;
}
.ab-3 .li.on .btn {
  background-image: url(../images/icon-32.png);
}
.ab-3 .swiper {
  margin-top: 0.38rem;
}
.ab-3 .sw {
  position: relative;
}
.ab-3 .sw:hover .te {
  background-color: #00a0e4;
  color: #fff;
}
.ab-3 .sw:hover .sp1 {
  font-size: 1.5em;
}
.ab-3 .sw:hover .btn {
  background-image: url(../images/icon-32.png);
}
.ab-3 .img {
  position: relative;
  height: 4rem;
}
.ab-3 .te {
  width: calc(100% - 0.5rem);
  background-color: #fff;
  border-radius: 0px 0.1rem 0px 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.2rem 0.36rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ab-3 .btn {
  width: 0.16rem;
  height: 0.16rem;
  background-image: url(../images/icon-31.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 900px) {
  .ab-3 .list {
    flex-wrap: wrap;
  }
  .ab-3 .li {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .ab-3 .te {
    background-color: #00a0e4;
    color: #fff;
  }
  .ab-3 .sp1 {
    font-size: 1em !important;
  }
  .ab-3 .btn {
    background-image: url(../images/icon-32.png);
  }
}

.ab-4 {
  background-image: url(../images/ab4_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0.98rem;
  padding-bottom: 0.96rem;
  position: relative;
}
.ab-4 .top {
  display: flex;
  justify-content: space-between;
}
.ab-4 .swipers {
  position: relative;
  margin-top: 0.4rem;
}
.ab-4 .swipers::before {
  content: "";
  position: absolute;
  top: 3.43rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15.2rem;
  height: 1.11rem;
  background-image: url(../images/icon-12.png);
  background-size: 100% 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ab-4 .swiper {
  overflow: hidden;
}
.ab-4 .img {
  height: 3.43rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
}
.ab-4 .i_box {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: flex-end;
}
.ab-4 .i_box::before {
  content: "";
  width: 0.18rem;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background-image: url(../images/icon-11.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.ab-4 .i_box img {
  width: auto;
  max-height: 100%;
}
.ab-4 .te {
  text-align: center;
  margin-top: 0.4rem;
  color: #353535;
}
.ab-4 .btns {
  display: flex;
}
.ab-4 .btn {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 30px;
  min-height: 30px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 0.1rem;
  z-index: 30;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32% auto;
  cursor: pointer;
}
.ab-4 .btn:hover {
  background-color: #00a0e4;
}
.ab-4 .prev {
  background-image: url(../images/icon-b11.png);
}
.ab-4 .prev:hover {
  background-image: url(../images/icon-b12.png);
}
.ab-4 .next {
  background-image: url(../images/icon-b21.png);
}
.ab-4 .next:hover {
  background-image: url(../images/icon-b22.png);
}
@media (max-width: 900px) {
  .ab-4 {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.md-md {
  position: absolute;
  top: -0.9rem;
}

.md-product .cont1 {
  background-image: url(../images/pro_bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.md-product .cont2 {
  background-image: url(../images/pro_bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  overflow: hidden;
}

.pro-page {
  position: relative;
  overflow: hidden;
  padding-top: 1.77rem;
}
.pro-page .pc_bg img {
  width: 100%;
}

.pro-pc {
  position: relative;
}
.pro-pc .swiper1 {
  position: absolute;
  left: 0;
  bottom: 0.97rem;
  width: 100%;
}
.pro-pc .sw {
  text-align: center;
  font-size: 0;
  padding: 0 0.3rem;
  transition: all 0.2s;
}
.pro-pc .img {
  display: inline-block;
  max-width: 1.56rem;
  padding: 0.16rem;
  margin: 0 auto;
  border-radius: 2rem;
  background-color: rgba(0, 160, 228, 0.1);
}
.pro-pc .img img {
  border-radius: 2rem;
  width: 100%;
}
.pro-pc .p1 {
  margin-top: 0.18rem;
}
.pro-pc .btn {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 30;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  background-position: center;
  background-size: 26% auto;
  cursor: pointer;
}
.pro-pc .btn:hover {
  background-color: #00a0e4;
}
.pro-pc .prev {
  left: 0;
  background-image: url(../images/icon-b11.png);
}
.pro-pc .prev:hover {
  background-image: url(../images/icon-b12.png);
}
.pro-pc .next {
  right: 0;
  background-image: url(../images/icon-b21.png);
}
.pro-pc .next:hover {
  background-image: url(../images/icon-b22.png);
}
.pro-pc .swiper-wrapper {
  align-items: flex-end;
}
.pro-pc .swiper-slide-active + a {
  padding-bottom: 1.5rem;
}
.pro-pc .swiper-slide-active + a + a {
  padding-bottom: 2.7rem;
}
.pro-pc .swiper-slide-active + a + a + a {
  padding-bottom: 2.7rem;
}
.pro-pc .swiper-slide-active + a + a + a + a {
  padding-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .pro-pc {
    position: absolute;
    left: -200vw;
    opacity: 0;
  }
}

.pro-mob {
  padding-bottom: 40px;
}
.pro-mob .list {
  display: flex;
  flex-wrap: wrap;
}
.pro-mob .li {
  width: 30%;
  margin-right: 5%;
  text-align: center;
  margin-bottom: 5%;
  padding: 0 1%;
}
.pro-mob .li:nth-child(3n) {
  margin-right: 0;
}
.pro-mob .img {
  display: inline-block;
  max-width: 1.56rem;
  padding: 0.16rem;
  margin: 0 auto;
  border-radius: 2rem;
  background-color: rgba(0, 160, 228, 0.1);
}
.pro-mob .img img {
  border-radius: 2rem;
  width: 100%;
}
.pro-mob .p1 {
  margin-top: 10px;
}
@media (min-width: 900px) {
  .pro-mob {
    position: absolute;
    left: -200vw;
  }
}

.pro-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.pro-1 .le {
  width: 6rem;
}
.pro-1 .swiper1 {
  position: relative;
}
.pro-1 .swp1 {
  border-radius: 0.1rem;
  overflow: hidden;
}
.pro-1 .sw1 {
  position: relative;
}
.pro-1 .sw1 .img {
  position: relative;
  padding-top: 83.3333333333%;
}
.pro-1 .btn {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 30;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26% auto;
  cursor: pointer;
}
.pro-1 .btn:hover {
  background-color: #00a0e4;
}
.pro-1 .prev {
  left: 0;
  transform: translate(-50%, -50%);
  background-image: url(../images/icon-b11.png);
}
.pro-1 .prev:hover {
  background-image: url(../images/icon-b12.png);
}
.pro-1 .next {
  right: 0;
  transform: translate(50%, -50%);
  background-image: url(../images/icon-b21.png);
}
.pro-1 .next:hover {
  background-image: url(../images/icon-b22.png);
}
.pro-1 .swp2 {
  margin-top: 0.2rem;
  overflow: hidden;
}
.pro-1 .sw2 {
  cursor: pointer;
}
.pro-1 .sw2 .img {
  position: relative;
  padding-top: 84.5454545455%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.pro-1 .thumb-active .img::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border: 2px solid #00a0e4;
}
.pro-1 .ri {
  width: 7.9rem;
}
.pro-1 .h1 {
  font-weight: 800;
  color: #111;
}
.pro-1 .line {
  height: 1px;
  background-color: #2257a8;
  opacity: 0.1;
  margin-top: 0.34rem;
  margin-bottom: 0.6rem;
}
.pro-1 .d2 {
  line-height: 1.875;
  color: #444;
}
.pro-1 .a3 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-top: 0.74rem;
  padding: 0.15rem 0.26rem;
  border-radius: 1rem;
  background-color: #00a0e4;
  color: #fff;
  transition: all 0.3s;
}
.pro-1 .a3:hover {
  box-shadow: 0 -2px 0 0 #00a0e4 inset, 0 2px 0.1rem #00a0e4;
  transform: translateY(-3px);
  transition: all 0.3s;
}
.pro-1 .a3 img {
  margin-left: 0.4rem;
}
@media (max-width: 900px) {
  .pro-1 .le {
    width: 100%;
  }
  .pro-1 .ri {
    width: 100%;
    margin-top: 20px;
  }
}

.pro-2 {
  padding-bottom: 1rem;
}
.pro-2 .tit {
  position: relative;
  padding-left: 0.12rem;
  line-height: 1;
}
.pro-2 .tit::before {
  content: "";
  width: 4px;
  height: 1em;
  background-image: url(../images/icon-23.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pro-2 .swiper {
  margin-top: 0.28rem;
}
.pro-2 .sw3 {
  background-color: #fff;
  border-radius: 0.1rem;
}
.pro-2 .sw3:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.pro-2 .sw3:hover .d1 {
  color: #00a0e4;
  transition: color 0.3s;
}
.pro-2 .img {
  position: relative;
  padding-top: 75.1428571429%;
  overflow: hidden;
}
.pro-2 .te {
  display: flex;
}
.pro-2 .d1 {
  width: calc(100% - 0.6rem);
  padding: 0.24rem 0.27rem;
  transition: color 0.3s;
}
.pro-2 .d1 span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.pro-2 .btn {
  width: 0.6rem;
  border-left: 1px solid #eee;
  background-image: url(../images/icon-21.png);
  background-repeat: no-repeat;
  background-size: 21.6666666667% auto;
  background-position: center;
}
.pro-2 .swiper-pagination {
  position: relative;
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pro-2 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.09rem;
  width: 0.06rem;
  height: 0.06rem;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.pro-2 .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.1rem;
  height: 0.1rem;
  background-color: #00a0e4;
}

.md-manufacture .cont1 {
  background-image: url(../images/ims_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 1rem;
}
.md-manufacture .cont2 {
  padding-bottom: 0.7rem;
  background-image: url(../images/ims_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.ims1-list {
  margin-top: 0.1rem;
}
.ims1-list .li {
  display: flex;
  position: relative;
  margin-bottom: 0.42rem;
}
.ims1-list .li:hover .img img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.ims1-list .le {
  width: 42.7631578947%;
  padding-bottom: 0.36rem;
  position: relative;
}
.ims1-list .le::before {
  content: "";
  width: 1rem;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0rem;
  top: 0;
}
.ims1-list .ri {
  width: 57.2368421053%;
  margin-top: 0.36rem;
  background-color: #fff;
  padding: 1.16rem 1.4rem;
  padding-bottom: 0.4rem;
}
.ims1-list .img {
  position: relative;
  padding-top: 68.2515337423%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ims1-list .p1 {
  color: #000d1e;
}
.ims1-list .p2 {
  color: #999;
  line-height: 1.875;
  margin-top: 0.34rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ims1-list .a3 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0.15rem 0.26rem;
  border-radius: 1rem;
  background-color: #00a0e4;
  color: #fff;
  margin-top: 0.52rem;
  transition: all 0.3s;
}
.ims1-list .a3:hover {
  box-shadow: 0 -2px 0 0 #00a0e4 inset, 0 2px 0.1rem #00a0e4;
  transform: translateY(-3px);
  transition: all 0.3s;
}
.ims1-list .a3 img {
  margin-left: 0.27rem;
}
@media (max-width: 900px) {
  .ims1-list .li {
    flex-wrap: wrap;
  }
  .ims1-list .le {
    width: 100%;
    padding-bottom: 0;
  }
  .ims1-list .ri {
    width: 100%;
    margin-top: 0;
    padding: 20px;
  }
}

.ims2-list {
  margin-bottom: 0.67rem;
}
.ims2-list .i_li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 0.4rem;
}
.ims2-list .i_li:last-child {
  margin-bottom: 0;
}
.ims2-list .imgs {
  width: 42.8947368421%;
}
.ims2-list .img {
  position: relative;
  padding-top: 68.2515337423%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ims2-list .text {
  width: 50.6578947368%;
}
.ims2-list .num {
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
}
.ims2-list .p1 {
  color: #000d1e;
  margin-top: 0.28rem;
  font-weight: 600;
}
.ims2-list .p2 {
  color: #999;
  line-height: 1.875;
  margin-top: 0.33rem;
}
.ims2-list .a3 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #444;
  margin-top: 0.65rem;
  transition: all 0.3s;
  cursor: pointer;
}
.ims2-list .a3:hover {
  transform: translateY(-3px);
  transition: all 0.3s;
}
.ims2-list .a3 img {
  margin-left: 0.13rem;
}
@media (max-width: 900px) {
  .ims2-list .li {
    flex-wrap: wrap;
  }
  .ims2-list .imgs {
    width: 100%;
    order: 1;
  }
  .ims2-list .text {
    width: 100%;
    order: 2;
    padding: 20px;
  }
}

.ims-tags {
  position: absolute;
  left: 0;
  top: 1.5rem;
	transform-origin: left;
}
.ims-tags.fixed {
  position: fixed;
}
.ims-tags .btns {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.ims-tags .btns .btn {
  margin-bottom: 20px;
  cursor: pointer;
}
.ims-tags .btns .btn:last-child {
  margin-bottom: 0;
}
.ims-tags .img {
  display: inline-block;
  border-radius: 10rem;
}
.ims-tags .t_list {
  position: absolute;
  top: 0;
  left: 0;
  color: #000d1e;
  padding-top: 25px;
  padding-left: 24px;
  white-space: nowrap;
}
.ims-tags .t_list {
  display: inline-block;
}
.ims-tags .y_i {
  display: flex;
  align-items: center;
  margin-bottom: 52px;
}
.ims-tags .y_i.on {
  color: #00a0e4;
}
.ims-tags .y_i.on .yuan {
  border: solid 1px #00a0e4;
}
.ims-tags .y_i.on .yuan::before {
  display: block;
}
.ims-tags .y_i:nth-child(2) {
  margin-left: 33px;
}
.ims-tags .y_i:nth-child(3) {
  margin-left: 43px;
}
.ims-tags .y_i:nth-child(4) {
  margin-left: 33px;
}
.ims-tags .yuan {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: solid 1px #ddd;
  margin-right: 10px;
  position: relative;
}
.ims-tags .yuan::before {
  display: none;
  content: "";
  width: 9px;
  height: 9px;
  background-color: #00a0e4;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
}
@media (max-width: 900px) {
  .ims-tags {
    display: none;
  }
}

.md-sideNav {
  position: fixed;
  top: 50%;
  right: 0.3rem;
  transform: translateY(-50%);
  z-index: 60;
}
.md-sideNav .sn_i {
  margin-bottom: 0.1rem;
  position: relative;
}
.md-sideNav .sn_i:hover .hd {
  background-color: #00a0e4;
}
.md-sideNav .sn_i:hover .i1 {
  display: none;
}
.md-sideNav .sn_i:hover .i2 {
  display: block;
}
.md-sideNav .sn_i:hover .bd {
  transform: scale(1);
  transition: all 0.3s;
}
.md-sideNav .hd {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 0.56rem;
  min-width: 40px;
  height: 0.56rem;
  min-height: 40px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 0.1rem;
}
.md-sideNav .i2 {
  display: none;
}
.md-sideNav .bd {
  position: absolute;
  right: 100%;
  top: 0;
  padding-right: 0.1rem;
  transform: scale(0);
  transform-origin: right top;
  transition: all 0.3s;
}
.md-sideNav .b_box {
  background-color: #fff;
  padding: 0.15rem;
  white-space: nowrap;
  border-radius: 0.1rem;
}
.md-sideNav .pi {
  display: block;
  margin: 5px 0;
}
.md-sideNav .pi:hover {
  color: #00a0e4;
}
.md-sideNav .wx {
  width: 1rem;
  max-width: none;
  display: block;
}
.md-sideNav #goTop {
  display: none;
}
.md-sideNav #goTop.show {
  display: block;
}
@media (max-width: 900px) {
  .md-sideNav {
    display: none;
  }
}