body {
  overflow-x: hidden;
}

.after {
  content: '';
  display: inline-block;
}

.after_a {
  content: '';
  position: absolute;
}

.flex,
.flex_js,
.flex_jc,
.flex_ac,
.flex_js_ac,
.flex_jc_ac,
.flex_js_fe {
  display: flex;
}

.flex_ae {
  justify-content: flex-end;
}

.flex_js,
.flex_js_fe {
  justify-content: space-between;
}

.flex_jc {
  justify-content: center;
}

.flex_ac {
  align-items: center;
}

.flex_js_fe {
  align-items: flex-end;
}

.flex_js_ac {
  justify-content: space-between;
  align-items: center;
}

.flex_jc_ac {
  justify-content: center;
  align-items: center;
}

.flex_row {
  flex-flow: row wrap;
}

:root {
  --ww: 1920 * 100vw;
}

@media (max-width: 1600px) {
  :root {
    --ww: 1600 * 100vw;
  }
}

@media (max-width: 1024px) {
  :root {
    --ww: 1200 * 100vw;
  }
}

@media (max-width: 768px) {
  :root {
    --ww: 1024 * 100vw;
  }
}

@media (max-width: 640px) {
  :root {
    --ww: 600 * 100vw;
  }
}

html {
  font-size: calc(100 / var(--ww));
}

body {
  font-size: 0.16rem;
}

.f14 {
  font-size: 0.14rem;
}

.f16 {
  font-size: 0.16rem;
}

.f17 {
  font-size: 0.17rem;
}

.f18 {
  font-size: 0.18rem;
}

.f20 {
  font-size: 0.2rem;
}

.f22 {
  font-size: 0.22rem;
}

.f24 {
  font-size: 0.24rem;
}

.f26 {
  font-size: 0.26rem;
}

.f28 {
  font-size: 0.28rem;
}

.f30 {
  font-size: 0.3rem;
}

.f32 {
  font-size: 0.32rem;
}

.f34 {
  font-size: 0.34rem;
}

.f36 {
  font-size: 0.36rem;
}

.f38 {
  font-size: 0.38rem;
}

.f40 {
  font-size: 0.4rem;
}

.f42 {
  font-size: 0.42rem;
}

.f44 {
  font-size: 0.44rem;
}

.f46 {
  font-size: 0.46rem;
}

.f48 {
  font-size: 0.48rem;
}

.f50 {
  font-size: 0.5rem;
}

.f52 {
  font-size: 0.52rem;
}

.f54 {
  font-size: 0.54rem;
}

.f56 {
  font-size: 0.56rem;
}

.f58 {
  font-size: 0.58rem;
}

.f60 {
  font-size: 0.6rem;
}

.f62 {
  font-size: 0.62rem;
}

.f64 {
  font-size: 0.64rem;
}

@media (max-width: 640px) {
  body {
    font-size: 0.2rem;
  }

  .f14 {
    font-size: 0.18rem;
  }

  .f16 {
    font-size: 0.2rem;
  }

  .f17 {
    font-size: 0.2rem;
  }

  .f18 {
    font-size: 0.22rem;
  }

  .f20 {
    font-size: 0.22rem;
  }

  .f22 {
    font-size: 0.24rem;
  }
}

.hidden {
  overflow: hidden;
}

.ani {
  transition: all 0.5s;
}

a:hover .ani {
  transform: scale(1.15);
}

.header {
  --header-h: 60px;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  box-sizing: border-box;
}

.header > .flex_js_ac {
  height: 100%;
}

.header .logo {
  max-width: 240px;
  max-height: calc(var(--header-h) - 24px);
  margin: 0 20px 0 50px;
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: calc(var(--header-h) - 24px);
  width: auto;
  max-width: 100%;
}

.header .logo .img1 {
  display: none;
}

.header .left {
  display: inline-flex;
  align-items: center;
}

.header .right {
  display: inline-flex;
}

.header .menuIcon {
  display: none;
}

.header .lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 calc(20 / 1920 * 100vw);
  padding: 0 0.15rem;
}

.header .lang .title {
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header .lang .title::before {
  width: 0.21rem;
  height: 0.21rem;
  display: inline-block;
  content: '';
  background-image: url(../images/lang.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.05rem;
}

.header .lang::before {
  width: 1px;
  height: 0.12rem;
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.06rem;
}

.header .lang::after {
  width: 1px;
  height: 0.6rem;
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.3rem;
}

.header .lang .box {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0.8rem;
  text-align: center;
  padding: 60px 0 10px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  opacity: 0;
  padding-top: 10px;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  -webkit-transform: translate3d(-50%, 10px, 0);
  -moz-transform: translate3d(-50%, 10px, 0);
  -o-transform: translate3d(-50%, 10px, 0);
  -ms-transform: translate3d(-50%, 10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.header .lang .box aside {
  box-shadow: 0 3px 29px -8px rgba(192, 196, 204, 0.7);
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 0px;
  position: relative;
}

.header .lang .box aside::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}

.header .lang .box a {
  color: #999;
  display: block;
  padding: 10px 0;
  transition: all 0.3s;
}

.header .lang .box a:hover {
  background-color: #1d9ee7;
  color: #fff;
}

.header .lang.on .box {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}

.header .search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header .search.search_show .top_search {
  opacity: 1;
  right: 0;
  pointer-events: auto;
}

.header .hotline {
  padding: 0 50px 0 20px;
  color: #fff;
}

.header .hotline span {
  font-size: 12px;
}

.header .hotline p {
  font-size: 18px;
  margin-top: 2px;
}

.header .trialBtn .btn {
  display: block;
  width: calc(150 / 1920 * 100vw);
  line-height: 0.6rem;
  text-align: center;
  background-color: #1d9ee7;
  color: #fff;
  font-size: 0.18rem;
  position: relative;
}

.header .trialBtn .btn::after {
  width: 0.21rem;
  height: 0.21rem;
  content: '';
  background: url(../images/i2.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.18rem;
  top: 0.03rem;
  transition: 0.3s;
}

.header .trialBtn .btn:hover::after {
  transform: rotateY(360deg);
}

.header .open_search {
  width: 0.18rem;
  height: 0.18rem;
  background: url(../images/search.png) no-repeat center;
  display: inline-block;
  background-size: contain;
}

.header .open_search.on {
  background: none;
  position: relative;
}

.header .open_search.on:before,
.header .open_search.on:after {
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  height: 2px;
  top: 50%;
  margin-top: -1.5px;
  background: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.header .open_search.on:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.header .top_search {
  width: 3rem;
  position: absolute;
  right: -100%;
  opacity: 0;
  top: 120%;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  pointer-events: none;
}

.header .top_search .btn {
  background: url(../images/search.png) no-repeat center;
  width: 0.5rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-size: auto;
}

.header .top_search .text {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  background-color: rgba(231, 20, 26, 0.5);
  padding: 0 0.6rem 0 0.1rem;
  border: none;
  color: #fff;
}

.header .navTop .ul {
  width: 100%;
}

.header .navTop li span {
  display: inline-block;
  position: relative;
}

.header .navTop li span a {
  position: relative;
  display: block;
  color: #ffffff;
  line-height: var(--header-h);
  margin: 0 30px;
  font-size: 18px;
}

.header .navTop li span a:after {
  width: 100%;
  height: 0.02rem;
  content: '';
  background-color: #1d9ee7;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.3s;
}

@media (min-width: 1025px) {

  .header .navTop li:hover span a:after,
  .header .navTop li.aon span a:after {
    opacity: 1;
  }
}

.header .navTop li .sub {
  position: absolute;
  width: 100%;
  left: 50%;
  top: var(--header-h);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  -webkit-transform: translate3d(-50%, 10px, 0);
  -moz-transform: translate3d(-50%, 10px, 0);
  -o-transform: translate3d(-50%, 10px, 0);
  -ms-transform: translate3d(-50%, 10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-color: #fff;
}

.header .navTop li .prosub {
  padding: 0.3rem 0.35rem;
}

.header .navTop li .prosub .slick-prev {
  left: 10px;
}

.header .navTop li .prosub .slick-next {
  right: 10px;
}

.header .navTop li .prosub .slick-arrow {
  border-color: #1d9ee7;
}

.header .navTop li .prosub .slick-arrow::before {
  border-color: #1d9ee7;
}

.header .navTop li .prosub .slick-arrow:hover {
  background-color: #1d9ee7;
}

.header .navTop li .prosub .slick-arrow:hover::before {
  border-color: #fff;
}

.header .navTop li .prosub .item {
  width: 12.5%;
  padding: 0.15rem;
  text-align: center;
  transition: 0.3s;
}

.header .navTop li .prosub .item .txt {
  margin-top: 0.1rem;
}

.header .navTop li .prosub .item .txt h5 {
  font-weight: normal;
  font-size: 0.16rem;
  margin-bottom: 0.05rem;
}

.header .navTop li .prosub .item .txt p {
  font-size: 0.14rem;
  color: #999999;
}

.header .navTop li .prosub .item .txt pre {
  text-align: center;
}

.header .navTop li .prosub .item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header .navTop li .prosub .item:hover .txt p {
  color: #1d9ee7;
}

.header .navTop li .subDatl {
  justify-content: left;
}

.header .navTop li .subDatl .desBox {
  width: calc(300 / 1920 * 100vw);
  background: linear-gradient(to bottom, #e0eafa, #fff);
  padding: 0.65rem 0.5rem;
}

.header .navTop li .subDatl .desBox h5 {
  font-weight: normal;
  margin-bottom: 0.1rem;
}

.header .navTop li .subDatl .desBox p {
  line-height: 0.24rem;
}

.header .navTop li .subDatl .subNav {
  margin: 0 1rem;
  flex-wrap: wrap;
  width: calc(800 / 1920 * 100vw);
  padding: 0.6rem 0 0.35rem;
}

.header .navTop li .subDatl .subNav .item {
  width: calc(50% - 1rem);
  margin-right: 1rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.header .navTop li .subDatl .subNav .item a {
  display: block;
  line-height: 0.38rem;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}

.header .navTop li .subDatl .subNav .item a::before {
  width: 50%;
  height: 1px;
  content: '';
  background-color: #1d9ee7;
  position: absolute;
  left: 0;
  bottom: -1px;
  opacity: 0;
  transition: 0.3s;
}

.header .navTop li .subDatl .subNav .item a::after {
  width: 0.06rem;
  height: 0.11rem;
  content: '';
  background-image: url(../images/i1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -0.05rem;
  right: 0.2rem;
}

.header .navTop li .subDatl .subNav .item a:hover::before {
  opacity: 1;
}

.header .navTop li .subDatl .subNav .item a:hover::after {
  background-image: url(../images/i1_a.png);
}

.header .navTop li .subDatl .imgBox {
  padding: 0.5rem 0;
  max-width: calc(320 / 1920 * 100vw);
  overflow: hidden;
}

.header .navTop li.hover .sub {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}

@media screen and (min-width: 1921px) {
  .header .logo img {
    max-width: 240px;
  }

  .header .open_search {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
    background-size: contain;
  }

  .header .lang .title {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
    background-size: contain;
  }

  .header .lang .box {
    padding: calc(60 / 1920 * 100vw) 0 calc(10 / 1920 * 100vw);
    width: calc(80 / 1920 * 100vw);
  }

  .header .lang .box aside {
    padding: 2% 0;
  }

  .header .lang .box aside::before {
    border-width: calc(5 / 1920 * 100vw);
  }

  .header .top_search {
    width: calc(300 / 1920 * 100vw);
  }

  .header .top_search .text {
    height: calc(50 / 1920 * 100vw);
    line-height: calc(50 / 1920 * 100vw);
  }

  .header .top_search .btn {
    width: calc(50 / 1920 * 100vw);
    background-size: 35%;
  }
}

@media (max-width: 1024px) {
  .header {
    --header-h: 50px;
  }

  .header .other {
    z-index: 110;
  }

  .header .menuIcon {
    margin-left: 0.45rem;
  }

  .header .lang {
    line-height: 1;
  }

  .header .lang .box {
    width: 0.7rem;
  }

  .header .menuIcon {
    display: inline-flex;
    align-items: center;
  }

  .header #open_menu {
    z-index: 100;
    width: 0.25rem;
    height: 0.18rem;
    cursor: pointer;
    position: relative;
  }

  .header #open_menu i {
    display: inline-block;
    width: 80%;
    height: 2px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 5px;
  }

  .header #open_menu::before,
  .header #open_menu::after {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
    left: 0;
    content: '';
    position: absolute;
  }

  .header #open_menu::before {
    top: 0;
  }

  .header #open_menu::after {
    bottom: 0;
    top: auto;
  }

  .header #open_menu.open_menu_on i {
    opacity: 0;
  }

  .header #open_menu.open_menu_on:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0.1rem;
  }

  .header #open_menu.open_menu_on:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: auto;
    top: 0.1rem;
  }

  .header .navTop {
    display: none;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: auto;
    visibility: hidden;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    line-height: 40px;
    margin-left: 0;
    display: block;
    padding: 0;
    transition: all 0.5s;
    opacity: 0;
    background-image: none;
    margin-right: 0;
    z-index: 106;
    padding-top: 0.8rem;
  }

  .header .navTop::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 0.8rem);
    background-color: rgba(0, 0, 0, 0.5);
  }

  .header .navTop.show {
    visibility: visible;
    right: 0;
    opacity: 1;
  }

  .header .navTop .ul {
    position: relative;
    height: 100%;
    max-height: 100%;
    width: 200px;
    margin: 0 0 0 auto;
    background-color: #fff;
    margin-right: 0;
    overflow: auto;
    display: block;
  }

  .header .navTop .ul li {
    float: none;
    height: auto;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
    width: 100%;
  }

  .header .navTop .ul li:hover span a,
  .header .navTop .ul li.aon span a {
    color: #333;
  }

  .header .navTop .ul li span {
    display: block;
    line-height: 0.8rem;
    padding: 0 10%;
  }

  .header .navTop .ul li span a {
    padding-bottom: 0;
    display: inline-block;
    line-height: normal;
  }

  .header .navTop .ul li span a::before {
    display: none;
  }

  .header .navTop .ul li .sub {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    color: #999999;
    width: 100%;
    background-color: transparent;
    text-align: left;
    padding: 0 0 0.3rem;
    min-width: auto;
    display: none;
    opacity: 1;
    backface-visibility: hidden;
    pointer-events: auto;
  }

  .header .navTop .ul li .box {
    top: 0;
    box-shadow: none;
    text-align: left;
    padding: 0 0 0 30%;
  }

  .header .navTop .ul li .box::before {
    display: none;
  }

  .header .navTop .ul li .box a {
    margin: 0;
    padding: 0;
    line-height: 0.46rem;
    text-align: left;
  }

  .header .navTop .ul .li_sub span {
    position: relative;
    display: block;
    padding-right: 0.2rem;
  }

  .header .navTop .ul .li_sub .op {
    position: absolute;
    width: 0.14rem;
    height: 0.14rem;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
  }

  .header .navTop .ul .li_sub .op::before,
  .header .navTop .ul .li_sub .op::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }

  .header .navTop .ul .li_sub .op::before {
    width: 100%;
    height: 0.02rem;
  }

  .header .navTop .ul .li_sub .op::after {
    width: 0.02rem;
    height: 100%;
  }

  .header .navTop .ul .li_sub.hover .op::after {
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .header .lang {
    margin: 0 0.3rem;
  }

  .header .search {
    position: static;
    line-height: normal;
  }

  .header .top_search {
    width: 100%;
    top: 100%;
  }
}

.header.innerTop {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.innerTop .logo .img1 {
  display: block;
}

.header.innerTop .logo .img2 {
  display: none;
}

.header.innerTop .navTop li span a {
  color: #333;
}

.header.innerTop .open_search {
  background: url(../images/sear_a.png) no-repeat center;
  background-size: contain;
}

.header.innerTop .open_search.on {
  background: none;
}

.header.innerTop .open_search:before,
.header.innerTop .open_search:after {
  background: #333;
}

.header.innerTop .lang::before,
.header.innerTop .lang::after {
  background-color: #3333334d;
}

.header.innerTop .lang .title {
  color: #333;
}

.header.innerTop .lang .title::before {
  background-image: url(../images/lang_a.png);
}

.header.innerTop .hotline {
  color: #333;
}

.header.innerTop #open_menu i,
.header.innerTop #open_menu::before,
.header.innerTop #open_menu::after {
  background-color: #333;
}

.header.oncolor {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.oncolor .logo .img1 {
  display: block;
}

.header.oncolor .logo .img2 {
  display: none;
}

.header.oncolor .navTop li span a {
  color: #333;
}

.header.oncolor .open_search {
  background: url(../images/sear_a.png) no-repeat center;
  background-size: contain;
}

.header.oncolor .open_search.on {
  background: none;
}

.header.oncolor .open_search:before,
.header.oncolor .open_search:after {
  background: #333;
}

.header.oncolor .lang::before,
.header.oncolor .lang::after {
  background-color: #3333334d;
}

.header.oncolor .lang .title {
  color: #333;
}

.header.oncolor .lang .title::before {
  background-image: url(../images/lang_a.png);
}

.header.oncolor .hotline {
  color: #333;
}

.header.oncolor #open_menu i,
.header.oncolor #open_menu::before,
.header.oncolor #open_menu::after {
  background-color: #333;
}

.Hbanner {
  position: relative;
}

@media (max-width: 1024px) {
  .Hbanner {
    margin-top: 50px;
  }
}

.Hbanner .pic {
  position: relative;
  overflow: hidden;
}

.Hbanner .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
  z-index: 4;
}

.Hbanner .pic img {
  width: 100%;
  transition: all 1.5s ease-in-out;
}

.Hbanner .pic video {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  min-width: 100%;
  object-fit: fill;
}

.Hbanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.2rem;
  z-index: 11;
  color: #fff;
}

.Hbanner .textwarp .cn {
  font-family: "Alimamashuhei";
}

.Hbanner .textwarp .des {
  margin-top: 0.3rem;
}

.Hbanner .textwarp .des .desList {
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: none; */
}

.Hbanner .textwarp .des .desList .item {
  /* width: 48%; */
  line-height: 0.6rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 0.35rem;
  position: relative;
  font-size: 0.28rem;
  color: #fff;
}

.Hbanner .textwarp .des .desList .item::before {
  width: 0.17rem;
  height: 0.12rem;
  content: '';
  /* background: url(../images/i3.png) no-repeat; */
  background-size: contain;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.06rem;
}

.Hbanner .textwarp .des .Appbtn {
  margin-top: 0.8rem;
}

.Hbanner .textwarp .des .Appbtn .btn {
  width: 3rem;
  display: block;
  line-height: 0.6rem;
  padding: 0 0.4rem;
  border-radius: 0.6rem;
  position: relative;
  background: #1d9ee7;
  color: #fff;
  font-size: 0.24rem;
  margin: 0 auto;
}

.Hbanner .textwarp .des .Appbtn .btn::before {
  width: 0.17rem;
  height: 0.12rem;
  content: '';
  background: url(../images/i3.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.65rem;
  top: 50%;
  margin-top: -0.06rem;
  transition: 0.3s;
}

.Hbanner .textwarp .des .Appbtn .btn:hover::before {
  right: 0.55rem;
}

.Hbanner .animate {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translateY(20px);
}

.Hbanner .animate:nth-child(2) {
  transition-delay: 0.2s;
}

.Hbanner .ani_show .animate {
  opacity: 1;
  transform: translateY(0);
}

.Hbanner .slick-dots {
  bottom: calc(50 / 1920 * 100vw);
}

.Hbanner .slick-dots li {
  width: 0.3rem;
  height: 0.3rem;
  margin: 0 15px;
  border-radius: 100%;
  transition: 0.3s;
  background-image: url(../images/i4.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: inherit;
}

.Hbanner .slick-dots li.slick-active {
  background-image: url(../images/i4_a.png);
}

.Hbanner .slick-arrow {
  border: none;
  background-color: transparent;
  width: 30px;
}

.Hbanner .slick-arrow::before {
  width: 20px;
  height: 20px;
  border-color: #fff;
  border-width: 3px 3px 0 0;
}

.Hbanner .slick-prev {
  left: 0.7rem;
}

.Hbanner .slick-next {
  right: 0.7rem;
}

@media (max-width: 640px) {
  .Hbanner .textwarp {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@-webkit-keyframes picImg {
  0% {
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes picImg {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.poImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}

.NYbanner {
  position: relative;
}

.NYbanner .img {
  width: 100%;
}

.NYbanner .playBtn {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  background: url(../images/play.png) no-repeat;
  background-size: contain;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.25rem;
  margin-left: -0.25rem;
}

.NYbanner .playBtn:hover {
  transform: translateY(-0.05rem);
}

.NYbanner .videoBox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}

.NYbanner .videoBox .closBtn {
  width: 0.3rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0.7rem;
  right: 25px;
  background: url(../images/clobtn.png) no-repeat;
  background-size: contain;
  z-index: 99;
  transition: 0.3s;
}

.NYbanner .videoBox .closBtn:hover {
  transform: rotate(90deg);
}

.NYbanner .videoBox video {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.NYmenu {
  border-bottom: 1px solid #eeeeee;
  line-height: 0.54rem;
}

.NYmenu .nav .ul {
  display: flex;
}

.NYmenu .nav li:not(:last-child) {
  margin-right: 0.6rem;
}

.NYmenu .nav li.aon a {
  color: #1d9ee7;
}

.NYmenu .nav li.aon a::after {
  width: 100%;
}

.NYmenu .nav a {
  display: block;
  position: relative;
  color: #333;
}

.NYmenu .nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  height: 2px;
  background-color: #1d9ee7;
}

.NYmenu .nav a:hover {
  color: #1d9ee7;
}

.NYmenu .nav a:hover::after {
  width: 100%;
}

.NYmenu .current {
  display: inline-flex;
  flex-flow: row wrap;
  color: #999999;
  align-items: center;
  padding-left: 25px;
  background: url(../images/home.png) no-repeat left 47%;
}

.NYmenu .current a {
  color: #999999;
}

.NYmenu .current a:hover {
  color: #1d9ee7;
}

.NYmenu .current span {
  color: #333;
}

.NYmenu .current i {
  display: inline-block;
  margin: 0 10px;
  font-style: normal;
  font-family: serif;
}

@media screen and (max-width: 768px) {
  .NYmenu .current {
    display: none;
  }

  .NYmenu .nav .ul {
    flex-wrap: wrap;
  }

  .NYmenu .nav li:not(:last-child) {
    margin-right: 0.3rem;
  }

  .NYmenu .nav a {
    line-height: 0.5rem;
    padding: 0;
  }
}

.SingleBox {
  color: #666666;
  line-height: calc(30 / 16);
}

.SingleBox p,
.SingleBox h1,
.SingleBox h2,
.SingleBox h3,
.SingleBox h4,
.SingleBox h5,
.SingleBox h6 {
  margin: 2em 0;
}

.Htitle {
  padding: 0.6rem 0 0.3rem;
  text-align: center;
  font-size: 0.48rem;
}

.HomeTechno {
  background-color: #f8fafd;
  padding: 0.2rem 0 0.8rem;
}

.HomeTechno .techList ul {
  display: flex;
  flex-wrap: wrap;
}

.HomeTechno .techList li {
  width: 23.85%;
  margin-right: 1.53%;
  margin-bottom: 1.53%;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}

.HomeTechno .techList li::before {
  width: 100%;
  height: 0.1rem;
  content: '';
  background-color: #1d9ee7;
  bottom: -0.12rem;
  left: 0;
  transition: 0.3s;
  position: absolute;
}

.HomeTechno .techList li .imgBox {
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
}

.HomeTechno .techList li .imgBox .fbBox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.HomeTechno .techList li .imgBox .fbBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.HomeTechno .techList li .txtBox {
  padding: 0.45rem 0.22rem 0.4rem;
}

.HomeTechno .techList li .txtBox h5 {
  font-size: 0.3rem;
  font-weight: normal;
  padding-bottom: 0.2rem;
  position: relative;
  margin-bottom: 0.2rem;
  color: #333;
}

.HomeTechno .techList li .txtBox h5::before {
  width: 0.3rem;
  height: 0.02rem;
  content: '';
  background-color: #1d9ee7;
  position: absolute;
  left: 0;
  bottom: 0;
}

.HomeTechno .techList li .txtBox .des {
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #555555;
  min-height: 1.5rem;
}

.HomeTechno .techList li .txtBox .des p {
  /* padding-left: 0.15rem; */
  position: relative;
}

.HomeTechno .techList li .txtBox .des p::before {
  width: 0.04rem;
  height: 0.04rem;
  /* content: ''; */
  background-color: #999999;
  position: absolute;
  left: 0;
  top: 0.13rem;
}

.HomeTechno .techList li .txtBox .des span {
  font-size: 0.24rem;
  color: #333;
}

.HomeTechno .techList li .txtBox .more {
  display: block;
  width: 1.5rem;
  line-height: 0.4rem;
  padding-left: 0.2rem;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 0.2rem;
  border-radius: 0.4rem;
  /* opacity: 0; */
  transition: 0.3s;
}

.HomeTechno .techList li .txtBox .more::before {
  width: 0.1rem;
  height: 0.1rem;
  content: '';
  background: url(../images/i5.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.35rem;
  top: 50%;
  margin-top: -0.05rem;
}

.HomeTechno .techList li:nth-child(4n) {
  margin-right: 0;
}

.HomeTechno .techList li:hover::before {
  bottom: 0;
}

.Homeprod {
  background: url(../images/hprobg2.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 0.8rem;
}

.Homeprod .slider {
  margin: 0.4rem calc(-230 / 1920 * 100vw) 0;
}

.Homeprod .slider li {
  transform: scale(0.75);
  margin: 0 calc(100 / 1920 * 100vw);
  transition: 0.3s;
}

.Homeprod .slider li .imgBox {
  overflow: hidden;
  position: relative;
  padding-bottom: 79.5%;
}

.Homeprod .slider li .imgBox .fbBox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.Homeprod .slider li .imgBox .fbBox img {
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
  height: auto !important;
}

.Homeprod .slider li .txtBox {
  text-align: center;
  margin-top: 0.2rem;
  opacity: 0;
  transition: 0.3s;
}

.Homeprod .slider li .txtBox h5 {
  font-size: 0.3rem;
  font-weight: normal;
  margin-bottom: 0.1rem;
}

.Homeprod .slider li .txtBox .use {
  display: block;
  width: 2.2rem;
  line-height: 0.36rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.36rem;
  margin: 0 auto 0.12rem;
}

.Homeprod .slider li .txtBox .des span {
  font-size: 0.18rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.15rem;
}

.Homeprod .slider li.slick-current {
  transform: scale(1);
}

.Homeprod .slider li.slick-current .txtBox {
  opacity: 1;
}

.Homeprod .slider .slick-dots {
  position: static;
  margin-top: 0.5rem;
}

.Homeprod .slider .slick-dots li {
  margin: 0;
  transform: scale(1);
  width: 0.4rem;
  height: 0.02rem;
  background-color: #b9c5d4;
}

.Homeprod .slider .slick-dots li.slick-active {
  background-color: #1d9ee7;
}

.Homeprod .slider .slick-arrow {
  bottom: -0.2rem;
  border-radius: 50%;
  transform: translateY(0);
  top: auto;
  background-color: rgba(50, 51, 61, 0.2);
  border: none;
}

.Homeprod .slider .slick-arrow::before {
  border-color: #fff;
}

.Homeprod .slider .slick-arrow.slick-prev {
  left: 42%;
}

.Homeprod .slider .slick-arrow.slick-next {
  right: 42%;
  transform: translateY(0) rotate(180deg);
}

.Homeprod .slider .slick-arrow:hover {
  background-color: #1d9ee7;
}

.HomeIntropro {
  padding: 0.2rem 0;
}

.HomeIntropro .itemBox {
  margin-bottom: 0.3rem;
}

.HomeIntropro .itemBox li {
  float: left;
  width: calc(400 / 1920 * 100vw);
  margin-right: calc(26 / 1920 * 100vw);
  border-radius: 0.05rem;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.HomeIntropro .itemBox li:nth-child(4n) {
  margin-right: 0;
}

.HomeIntropro .itemBox li .imgBox {
  position: relative;
  height: 2.8rem;
  overflow: hidden;
}

.HomeIntropro .itemBox li .imgBox img {
  transition: 0.3s;
  width: 100%;
}

.HomeIntropro .itemBox li .imgBox .desBox {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.8rem 0.3rem 0;
  background-color: rgba(0, 0, 0, 0.7);
  top: 100%;
  left: 0;
  color: #fff;
  transition: 0.3s;
}

.HomeIntropro .itemBox li .imgBox .desBox p {
  font-size: 0.18rem;
  margin-bottom: 0.2rem;
}

.HomeIntropro .itemBox li h5 {
  text-align: center;
  line-height: 0.6rem;
  background-color: #eeeeee;
  font-size: 0.24rem;
  font-weight: normal;
  transition: 0.3s;
}

.HomeIntropro .itemBox li:hover .imgBox img {
  filter: blur(5px);
}

.HomeIntropro .itemBox li:hover .imgBox .desBox {
  top: 0;
}

.HomeIntropro .itemBox li:hover h5 {
  color: #fff;
  background-color: #1d9ee7;
}

.HomeIntropro .itemBox .tit {
  text-align: center;
  font-size: 0.48rem;
}

.HomeIntropro .itemBox .tit span {
  font-size: 0.48rem;
}

.HomeIntropro .scenBox {
  display: flex;
  border-top: 1px solid #dddddd;
  display: none;
}

.HomeIntropro .scenBox .itemBox {
  padding-top: 0.4rem;
}

.HomeIntropro .scenBox .itemBox:last-child {
  width: calc(815 / 1920 * 100vw);
  border-left: 1px solid #dddddd;
}

.HomeIntropro .scenBox .itemBox:last-child li {
  width: calc(100% - 0.26rem);
  margin: 0 0 0.3rem 0.26rem;
}

.HomePartner {
  padding: 0.2rem 0 1rem;
  background-color: #f8fafc;
}

.HomePartner .listBox .list {
  margin: 0.1rem 0;
}

.HomePartner .listBox .item {
  width: 2.2rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 0 0.1rem;
  vertical-align: middle;
}

.HomePartner .listBox .item img {
  max-height: 90%;
  max-width: 90% !important;
}

.HomeNews {
  padding: 0.2rem 0 1rem;
}

.HomeNews .leftBox {
  float: left;
  width: 47.5%;
}

.HomeNews .leftBox .ul .slick-list {
  padding-bottom: 0.15rem;
}

.HomeNews .leftBox li {
  padding-bottom: 0.8rem;
  position: relative;
}

.HomeNews .leftBox li .imgBox {
  height: 5.34rem;
  overflow: hidden;
}

.HomeNews .leftBox li .txtBox {
  width: 80%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.3rem 0.35rem 0.2rem;
  background: linear-gradient(to bottom, #ebeef6, #fff);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.HomeNews .leftBox li .txtBox h5 {
  font-size: 0.24rem;
  font-weight: normal;
  line-height: 0.3rem;
  min-height: 0.6rem;
}

.HomeNews .leftBox li .txtBox time {
  display: block;
  color: #999999;
  margin-top: 0.1rem;
}

.HomeNews .leftBox .slick-dots {
  position: absolute;
  bottom: 0.45rem;
  right: 0.4rem;
  width: auto;
  text-align: right;
}

.HomeNews .leftBox .slick-dots li {
  padding-bottom: 0;
}

.HomeNews .rightBox {
  float: right;
  width: 47.5%;
  border-top: 1px solid #ebebeb;
}

.HomeNews .rightBox li {
  padding: 0.4rem 0.3rem;
  border-bottom: 1px solid #ebebeb;
  transition: 0.3s;
}

.HomeNews .rightBox li a {
  display: flex;
  justify-content: space-between;
}

.HomeNews .rightBox li a .timeBox {
  width: 1.05rem;
  color: #999999;
}

.HomeNews .rightBox li a .timeBox .d {
  font-size: 0.5rem;
  margin-bottom: 0.05rem;
  display: block;
}

.HomeNews .rightBox li a .timeBox .ym {
  font-size: 0.14rem;
}

.HomeNews .rightBox li a .textBox {
  width: calc(100% - 1.05rem);
  padding-top: 0.1rem;
  position: relative;
}

.HomeNews .rightBox li a .textBox::before {
  width: 0.15rem;
  height: 0.02rem;
  content: '';
  background-color: #1d9ee7;
  left: 0;
  top: -0.41rem;
  position: absolute;
}

.HomeNews .rightBox li a .textBox .tit {
  position: relative;
  margin-bottom: 0.2rem;
}

.HomeNews .rightBox li a .textBox .tit h5 {
  font-size: 0.18rem;
  font-weight: normal;
}

.HomeNews .rightBox li a .textBox .tit .code {
  position: absolute;
  width: 1.15rem;
  bottom: 0;
  right: 0.2rem;
  opacity: 0;
  transition: 0.3s;
}

.HomeNews .rightBox li a .textBox .tit .code .img {
  margin-left: 0.06rem;
  width: 1.09rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0.1rem 0.1rem 0.05rem;
  text-align: center;
}

.HomeNews .rightBox li a .textBox .tit .code .img p {
  font-size: 0.14rem;
  color: #999999;
  margin-top: 0.05rem;
}

.HomeNews .rightBox li a .textBox .tit .code .label {
  text-align: center;
  line-height: 0.3rem;
  background: url(../images/i6.png) no-repeat;
  background-size: contain;
  color: #fff;
  margin-top: 0.08rem;
}

.HomeNews .rightBox li a .textBox .des {
  color: #888888;
}

.HomeNews .rightBox li:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.HomeNews .rightBox li:hover a .textBox .tit .code {
  opacity: 1;
}

.HomeNews .rightBox .more {
  display: block;
  width: 1.5rem;
  line-height: 0.4rem;
  padding-left: 0.3rem;
  position: relative;
  color: #fff;
  background-color: #1d9ee7;
  border-radius: 0.4rem;
  margin-top: 0.4rem;
}

.HomeNews .rightBox .more::before {
  width: 0.1rem;
  height: 0.1rem;
  content: '';
  background: url(../images/i5_w.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.35rem;
  top: 50%;
  margin-top: -0.05rem;
  transition: 0.3s;
}

.HomeNews .rightBox .more:hover::before {
  transform: rotate(180deg);
}

.bottom {
  background: url(../images/bombg.jpg) no-repeat;
  background-position: left center;
  background-size: cover;
}

.bottom .w1680 {
  padding-top: 1rem;
  position: relative;
}

.bottom .w1680 .goTop {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: url(../images/gotop.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: -0.2rem;
  transition: 0.3s;
}

.bottom .w1680 .goTop:hover {
  transform: translateY(-0.05rem);
}

.bottom .bomLeft {
  float: left;
  width: 17%;
}

.bottom .bomLeft .bomLogo {
  margin-bottom: 0.3rem;
}

.bottom .bomLeft .catDes p {
  padding-left: 0.34rem;
  position: relative;
  color: #7a7e87;
  margin-bottom: 0.05rem;
}

.bottom .bomLeft .catDes p::before {
  width: 0.2rem;
  height: 0.2rem;
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

.bottom .bomLeft .catDes p.pho {
  font-size: 0.3rem;
  color: #1d9ee7;
}

.bottom .bomLeft .catDes p.pho::before {
  background-image: url(../images/pho.png);
  top: 0.1rem;
}

.bottom .bomLeft .catDes p.mal::before {
  background-image: url(../images/mal.png);
}

.bottom .bomLeft .catDes p.add::before {
  background-image: url(../images/add.png);
}

.bottom .bomLeft .bomShare {
  text-align: right;
  margin-top: 0.3rem;
}

.bottom .bomLeft .bomShare a {
  display: inline-block;
  vertical-align: middle;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(82, 84, 90, 0.2);
  margin-left: 0.25rem;
}

.bottom .bomLeft .bomShare a.wx {
  background-image: url(../images/wx.png);
}

.bottom .bomLeft .bomShare a.wb {
  background-image: url(../images/wb.png);
}

.bottom .bomLeft .bomShare a.dy {
  background-image: url(../images/dy.png);
}

.bottom .bomLeft .bomShare a.bl {
  background-image: url(../images/bl.png);
}

.bottom .bomLeft .bomShare a:hover {
  background-color: rgba(82, 84, 90, 0.5);
}

.bottom .bomLeft .bomQR {
  display: flex;
  gap: 20px;
  margin-top: 0.3rem;
}

.bottom .bomLeft .bomQR-item {
  text-align: center;
}

.bottom .bomLeft .bomQR-item img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: block;
  margin-bottom: 6px;
  object-fit: contain;
  background: #fff;
}

.bottom .bomLeft .bomQR-item span {
  font-size: 12px;
  color: #7a7e87;
  line-height: 1;
}

.bottom .bomRight {
  float: right;
  width: 60%;
}

.bottom .bomRight .bomNav {
  display: flex;
  justify-content: right;
}

.bottom .bomRight .bomNav .dl {
  margin-left: 0.75rem;
}

.bottom .bomRight .bomNav .dl dt {
  margin-bottom: 0.2rem;
}

.bottom .bomRight .bomNav .dl dt a {
  color: #fff;
}

.bottom .bomRight .bomNav .dl dt a:hover {
  color: #1d9ee7;
}

.bottom .bomRight .bomNav .dl dd a {
  display: block;
  line-height: 0.3rem;
  color: #fff;
  opacity: 0.5;
}

.bottom .bomRight .bomNav .dl dd a:hover {
  opacity: 1;
}

.bottom .bomRight .bomBom {
  margin-top: 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0;
  text-align: right;
}

.bottom .bomRight .bomBom .copy {
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.2);
}

.bottom .bomRight .bomBom .copy a {
  color: rgba(255, 255, 255, 0.2);
}

.bottom .bomRight .bomBom .copy a:hover {
  color: #1d9ee7;
}

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

.formFix .contBox {
  max-width: 7.4rem;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.formFix .contBox .formBox {
  background-color: #fff;
  padding: 0.45rem 8% 0.75rem;
  border-radius: 0.1rem;
}

.formFix .contBox .formBox .item {
  position: relative;
  margin-bottom: 0.15rem;
}

.formFix .contBox .formBox .item input {
  font-size: 0.16rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #e4e4e4;
  line-height: 0.5rem;
  height: 0.5rem;
}

.formFix .contBox .formBox .item.req::before {
  content: '*';
  font-size: 0.2rem;
  color: #1d9ee7;
  position: absolute;
  left: -0.12rem;
  top: 0;
  line-height: 0.5rem;
}

.formFix .contBox .formBox .item .sendBtn {
  position: absolute;
  color: #1d9ee7;
  line-height: 0.5rem;
  top: 0;
  right: 0;
}

.formFix .contBox .formBox .subBtn {
  display: block;
  width: 100%;
  border: 0px;
  line-height: 0.6rem;
  margin-top: 0.6rem;
  border-radius: 0.6rem;
  text-align: center;
  background-color: #1d9ee7;
  color: #fff;
  font-size: 0.2rem;
  transition: 0.3s;
}

.formFix .contBox .formBox .subBtn:hover {
  transform: translateY(-0.05rem);
}

.formFix .contBox .cloBtn {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: url(../images/clobtn.png) no-repeat;
  background-size: contain;
  margin: 0.3rem auto 0;
  transition: 0.3s;
}

.formFix .contBox .cloBtn:hover {
  transform: translateY(-0.05rem);
}

.prodWarp {
  padding: 0.2rem 0 0.6rem;
  background-color: #f8fafd;
}

.prodWarp .proMenu {
  text-align: center;
  margin-bottom: 0.7rem;
}

.prodWarp .proMenu a {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.4rem;
  line-height: 0.45rem;
  border-radius: 0.45rem;
  background-color: #fff;
  font-size: 0.18rem;
  color: #666666;
  transition: 0.3s;
  margin: 0 0.05rem 0.2rem 0.05rem;
}

.prodWarp .proMenu a:hover,
.prodWarp .proMenu a.on {
  background-color: #1d9ee7;
  color: #fff;
}

.prodWarp .techList li .txtBox {
  padding-bottom: 0.2rem;
}

.prodWarp .techList li .txtBox .des {
  min-height: 1.2rem;
}

.proinnerBan {
  margin-top: 0.6rem;
  background: url(../images/prolbg.jpg) no-repeat #fff;
  background-position: center center;
  background-size: cover;
  padding: 0.6rem 0;
}

.proinnerBan li {
  text-align: center;
}

.proinnerBan li .imgBox {
  height: 4.8rem;
  overflow: hidden;
}

.proinnerBan li .imgBox img {
  height: 100%;
}

.procointent {
  text-align: left;
  line-height: 2;
  font-size: 18px;
  padding-bottom: 60px;
}

.proinnerBan li .txtBox {
  margin-top: 0.3rem;
}

.proinnerBan li .txtBox h5 {
  font-size: 0.3rem;
  font-weight: normal;
  margin-bottom: 0.1rem;
}

.proinnerBan li .txtBox .use {
  padding: 0 0.35rem;
  background-color: #1d9ee7;
  line-height: 0.3rem;
  border-radius: 0.3rem;
  color: #fff;
  margin-bottom: 0.1rem;
  display: inline-block;
}

.proinnerBan li .txtBox .des {
  font-size: 0.18rem;
}

.proinnerBan .slick-dots {
  position: static;
  margin-top: 0.3rem;
}

.proinnerBan .slick-dots li {
  width: 0.3rem;
  height: 0.04rem;
  border-radius: 0;
  transition: 0.3s;
}

.proinnerBan .slick-dots li.slick-active {
  width: 1rem;
}

.proinnerBan .slick-arrow {
  border: none;
}

.proinnerBan .slick-arrow::before {
  width: 0.25rem;
  height: 0.25rem;
  border-color: #dddddd;
  border-width: 3px 3px 0 0;
}

.proinnerBan .slick-arrow:hover {
  background: none;
}

.proinnerBan .slick-arrow:hover::before {
  border-color: #1d9ee7;
}

.proinF1 {
  padding: 0.9rem 0 0.2rem;
  background-color: #f8fafd;
  text-align: center;
}

.proinF1 .tit {
  font-size: 0.36rem;
}

.proinF1 .tit span {
  color: #1d9ee7;
  font-size: 0.48rem;
}

.proinF1 .des {
  font-size: 0.18rem;
  color: #666666;
  margin: 0.2rem 0 0.4rem;
  overflow-x: auto;
}

.proinF1 .des pre {
  text-align: center !important;
}

.proinF1 .img img {
  display: block;
  margin: 0 auto 0.2rem;
}

.proinF1 .video {
  width: 100%;
}

.proinF1 .video video {
  width: 100%;
}

.proinF2 {
  padding: 0.9rem 0;
  text-align: center;
}

.proinF2 .tit {
  font-size: 0.36rem;
}

.proinF2 .des {
  font-size: 0.18rem;
  color: #666666;
  margin: 0.2rem 0 0.4rem;
}

.proinF3 {
  /*background: url(../images/proinf3bg.jpg) no-repeat;background-size: cover;background-position: center bottom;*/
  padding: 1rem 0 1.2rem;
}

.proinF3 .txtList {
  float: left;
  width: 33.4%;
}

.proinF3 .txtList li {
  cursor: pointer;
  padding: 0.25rem 0;
  border-bottom: 1px solid #dddddd;
  transition: 0.3s;
}

.proinF3 .txtList li h5 {
  color: #666666;
  font-size: 0.16rem;
  font-weight: normal;
}

.proinF3 .txtList li .des {
  font-size: 0.14rem;
  margin-top: 0.1rem;
  display: none;
}

.proinF3 .txtList li.on {
  padding: 0.25rem 0.4rem;
  border-color: #1d9ee7;
  position: relative;
}

.proinF3 .txtList li.on h5 {
  font-size: 0.2rem;
  color: #1d9ee7;
}

.proinF3 .txtList li.on .des {
  display: block;
}

.proinF3 .txtList li.on::before {
  width: 0.11rem;
  height: 0.16rem;
  content: '';
  background: url(../images/i7.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0.3rem;
}

.proinF3 .imgList {
  float: left;
  width: 66.6%;
}

.proinF3 .imgList .itemBox {
  display: none;
}

.proinF3 .imgList .itemBox.on {
  display: block;
}

.proDetail {
  padding-bottom: 0.2rem;
}

.proDetail-item {
  margin-bottom: 0.5rem;
}

.proDetail-tit {
  font-size: 0.28rem;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  padding-left: 0.12rem;
  border-left: 0.04rem solid #1ba3eb;
  margin-bottom: 0.3rem;
  text-align: left;
}

.proDetail-row {
  position: relative;
  margin-bottom: 0.1rem;
  padding-left: calc(50% + 0.1rem);
  min-height: 0;
}

.proDetail-row .proDetail-img {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50% - 0.1rem);
  height: 100%;
  padding-right: 0;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proDetail-row .proDetail-txt {
  float: none;
  width: 100%;
  padding-left: 0;
  box-sizing: border-box;
}

.proDetail-row.reverse {
  padding-left: 0;
  padding-right: calc(50% + 0.1rem);
}

.proDetail-row.reverse .proDetail-img {
  left: auto;
  right: 0;
  padding-left: 0;
  padding-right: 0;
}

.proDetail-row.reverse .proDetail-txt {
  float: none;
  padding-right: 0;
}

.proDetail-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.proDetail-list {
  text-align: left;
}

.proDetail-list li {
  position: relative;
  padding-left: 0.18rem;
  margin-bottom: 0.14rem;
  line-height: 1.8;
  font-size: 0.2rem;
  color: #333;
}

.proDetail-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
}

.proDetail-desc {
  text-align: left;
  font-size: 0.2rem;
  line-height: 1.8;
  color: #333;
}

.proDetail-adv {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
}

.proDetail-adv li {
  width: 25%;
  padding: 0 0.1rem;
  box-sizing: border-box;
  text-align: center;
}

.proDetail-adv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 auto 0.18rem;
  border-radius: 50%;
}

.proDetail-adv-icon svg {
  width: 0.5rem;
  height: 0.5rem;
}

.proDetail-adv-icon.adv5 {
  background-color: #1ba3eb;
}

.proDetail-adv-icon.adv2 {
  background-color: #f5a623;
}

.proDetail-adv-icon.adv3 {
  background-color: #3cb878;
}

.proDetail-adv-icon.adv4 {
  background-color: #5bc0de;
}

.proDetail-adv li p {
  font-size: 0.2rem;
  color: #333;
}

.proDetail-industry {
  display: flex;
  border: 1px solid #ddd;
}

.proDetail-industry li {
  flex: 1;
  text-align: center;
  padding: 0.22rem 0.1rem;
  font-size: 0.2rem;
  color: #333;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
}

.proDetail-industry li:last-child {
  border-right: none;
}

.innerTit {
  padding: 0.9rem 0 0.4rem;
  text-align: center;
  font-size: 0.36rem;
}

.caseF1 {
  background: linear-gradient(to bottom, #fff, #f8fafd);
  padding-bottom: 1rem;
}

.caseF1 li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.caseF1 li .imgBox {
  height: 2.26rem;
  overflow: hidden;
  text-align: center;
  line-height: 2.26rem;
}

.caseF1 li .txtBox {
  padding: 0.25rem 0.3rem 0.4rem;
}

.caseF1 li .txtBox h5 {
  font-size: 0.18rem;
  font-weight: normal;
  position: relative;
  padding-bottom: 0.15rem;
  margin-bottom: 0.1rem;
}

.caseF1 li .txtBox h5::before {
  width: 0.3rem;
  height: 0.02rem;
  content: '';
  background-color: #1d9ee7;
  position: absolute;
  left: 0;
  bottom: 0;
}

.caseF1 li .txtBox .des {
  line-height: 0.3rem;
  min-height: 1.2rem;
}

.caseF1 li:nth-child(4n) {
  margin-right: 0;
}

.caseF1 .seekBtn {
  display: block;
  width: 2.4rem;
  line-height: 0.6rem;
  border-radius: 0.6rem;
  background-color: #1d9ee7;
  color: #fff;
  padding-left: 0.6rem;
  position: relative;
  font-size: 0.2rem;
  margin: 0.2rem auto 0;
}

.caseF1 .seekBtn::before {
  width: 0.17rem;
  height: 0.12rem;
  content: '';
  background: url(../images/i3.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  margin-top: -0.06rem;
  transition: 0.3s;
}

.caseF1 .seekBtn:hover::before {
  right: 0.55rem;
}

.caseF2 {
  padding-bottom: 0.9rem;
}

.caseF2 .ul {
  /*display: flex;justify-content: space-between;*/
  margin: 0 -0.15rem;
}

.caseF2 li {
  width: 23.5%;
  margin-bottom: 2%;
  text-align: center;
  margin: 0 0.15rem;
}

.caseF2 li .imgBox {
  /*height: 2.9rem;*/
  overflow: hidden;
}

.caseF2 li .txtBox {
  font-size: 0.18rem;
  margin-top: 0.4rem;
  min-height: 0.6rem;
  line-height: 0.3rem;
}

.caseF3 {
  background: linear-gradient(to bottom, #f8fafd, #fff);
  padding-bottom: 0.1rem;
}

.caseF3 .imgBox {
  text-align: center;
  margin-bottom: 0.6rem;
}

.caseSucc {
  background: url(../images/proinf3bg.jpg) no-repeat;
  background-position: center bottom;
  padding-bottom: 1rem;
  background-size: cover;
}

.caseSucc .slider {
  margin: 0 -0.15rem;
}

.caseSucc .slider li {
  margin: 0 0.15rem;
  background-color: #fff;
}

.caseSucc .slider li .imgBox {
  height: 3.06rem;
  padding: 20px;
  overflow: hidden;
}

.caseSucc .slider li .txtBox {
  padding: 0.3rem 0.25rem;
}

.caseSucc .slider li .txtBox h5 {
  font-size: 0.18rem;
  margin-bottom: 0.15rem;
}

.caseSucc .slider li .txtBox .des {
  color: #333;
  line-height: 0.24rem;
}

.caseSucc .slider .slick-arrow {
  border-radius: 50%;
  background-color: #d0d2d7;
  border: none;
}

.caseSucc .slider .slick-arrow::before {
  border-color: #fff;
}

.caseSucc .slider .slick-arrow:hover {
  background-color: #1d9ee7;
}

.caseParn {
  padding-bottom: 0.7rem;
}

.caseParn .slider .item {
  width: calc(220 / 1920 * 100vw);
  height: 1rem;
  float: left;
  margin-right: calc(23 / 1920 * 100vw);
  border: 1px solid #f8f8f8;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-align: center;
}

.caseParn .slider .item:nth-child(6n) {
  margin-right: 0;
}

.caseParn .slider .item img {
  height: 1rem;
  object-fit: contain;
}

.caseParn .slider .slick-list {
  padding-bottom: 1px;
}

.caseParn .slider .slick-dots {
  position: static;
}

.caseParn .slider .slick-dots li {
  margin: 0 0.08rem;
}

.caseF4 {
  background: linear-gradient(to bottom, #f8fafd, #fff);
  padding-bottom: 0.9rem;
}

.caseF4 .innerTit {
  padding-bottom: 0.2rem;
}

.caseF4 .innerDes {
  font-size: 0.18rem;
  text-align: center;
  margin-bottom: 0.4rem;
}

.caseF4 .slider .itemBox .proserList {
  margin-bottom: 0.6rem;
  line-height: 2;
  font-size: 16px;
  /*display: flex;justify-content: space-between;*/
}

.caseF4 .slider .itemBox .proserList .item {
  width: calc(460 / 1920 * 100vw);
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.25rem 0.3rem 0.4rem;
}

.caseF4 .slider .itemBox .proserList .item .imgBox {
  width: calc(200 / 1920 * 100vw);
}

.caseF4 .slider .itemBox .proserList .item .txtBox {
  width: calc(160 / 1920 * 100vw);
}

.caseF4 .slider .itemBox .proserList .item .txtBox h5 {
  font-size: 0.24rem;
  font-weight: normal;
  padding-bottom: 0.1rem;
  position: relative;
  margin-bottom: 0.15rem;
}

.caseF4 .slider .itemBox .proserList .item .txtBox h5::before {
  width: 0.45rem;
  height: 0.02rem;
  content: '';
  background: #1d9ee7;
  position: absolute;
  left: 0;
  bottom: 0;
}

.caseF4 .slider .itemBox .proserList .item .txtBox .des p {
  padding-left: 0.12rem;
  position: relative;
  line-height: 0.3rem;
}

.caseF4 .slider .itemBox .proserList .item .txtBox .des p::before {
  width: 0.04rem;
  height: 0.04rem;
  content: '';
  border-radius: 50%;
  background-color: #999999;
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.caseF4 .slider .itemBox .imgList {
  margin-bottom: 0.9rem;
  display: flex;
  justify-content: center;
}

.caseF4 .slider .itemBox .imgList .item {
  margin: 0 0.15rem;
  text-align: center;
  width: calc(245 / 1920 * 100vw);
}

.caseF4 .slider .itemBox .imgList .item .imgBox {
  overflow: hidden;
  border-radius: 0.1rem;
}

.caseF4 .slider .itemBox .imgList .item h5 {
  font-size: 0.18rem;
  font-weight: normal;
  margin-top: 0.2rem;
}

.caseF4 .slider .slick-arrow {
  border-radius: 50%;
  background-color: #d0d2d7;
  border: none;
  top: 25%;
}

.caseF4 .slider .slick-arrow::before {
  border-color: #fff;
}

.caseF4 .slider .slick-arrow:hover {
  background-color: #1d9ee7;
}

.deploySer {
  background: linear-gradient(to bottom, #fff, #f8fafd);
  padding-bottom: 1rem;
}

.deploySer li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
  border-radius: 0.05rem;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 2%;
}

.deploySer li .imgBox {
  height: 2.23rem;
  overflow: hidden;
}

.deploySer li .txtBox {
  padding: 0.25rem 0.25rem 0.4rem;
}

.deploySer li .txtBox h5 {
  font-size: 0.24rem;
  font-weight: normal;
  margin-bottom: 0.15rem;
}

.deploySer li .txtBox p {
  font-size: 0.18rem;
  color: #555555;
  line-height: 0.3rem;
  min-height: 0.9rem;
}

.deploySer li:nth-child(4n) {
  margin-right: 0;
}

.operScope {
  background: linear-gradient(to bottom, #fff, #f8fafd);
  padding-bottom: 1rem;
}

.operScope .w1440 {
  position: relative;
}

.operScope .txtBox {
  width: calc(510 / 1920 * 100vw);
  float: right;
  background-color: #f2f6f9;
  padding: 0.2rem 0.4rem 0.6rem;
  position: relative;
}

.operScope .txtBox .topDes {
  font-size: 0.18rem;
  line-height: 0.36rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #dddddd;
}

.operScope .txtBox .topDes .act {
  font-size: 0.2rem;
  color: #1d9ee7;
}

.operScope .txtBox .bomDes {
  line-height: 0.36rem;
  margin-top: 0.3rem;
}

.operScope .mapImg {
  position: absolute;
  top: 50%;
  transform: translateY(-25%);
  left: -1.2rem;
  width: calc(1130 / 1920 * 100vw);
}

.downList {
  max-width: 1000px;
  margin: 0 auto;
}

.downList .downSear {
  width: calc(800 / 1920 * 100vw);
  display: flex;
  line-height: 0.6rem;
  border-radius: 0.6rem;
  background-color: #fff;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto 0.7rem;
}

.downList .downSear .seleBox {
  width: calc(120 / 1920 * 100vw);
  position: relative;
  padding: 0 0.3rem;
}

.downList .downSear .seleBox select {
  font-size: 0.16rem;
  width: 100%;
  border: none;
  line-height: 0.6rem;
  height: 0.6rem;
}

.downList .downSear .seleBox::before {
  width: 1px;
  height: 0.3rem;
  content: '';
  background-color: #dddddd;
  right: 0;
  top: 50%;
  margin-top: -0.15rem;
  position: absolute;
}

.downList .downSear .inptBox {
  position: relative;
  width: 100%;
}

.downList .downSear .inptBox form {
  display: flex;
}

.downList .downSear .inptBox input {
  font-size: 0.16rem;
  width: 100%;
  border: none;
  padding: 0 0.6rem 0 0.2rem;
  line-height: 0.6rem;
  height: 0.6rem;
}

.downList .downSear .inptBox .goSear {
  display: block;
  width: 0.22rem;
  height: 0.22rem;
  background: url(../images/sear_a.png) no-repeat;
  background-size: contain;
  border: 0px;
  cursor: pointer;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -0.11rem;
  transition: 0.3s;
}

.downList .downSear .inptBox .goSear:hover {
  transform: translateY(-0.05rem);
}

.downList .ul li {
  line-height: 0.7rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.downList .ul li h5 {
  padding-right: 0.3rem;
  font-size: 0.18rem;
  font-weight: normal;
}

.downList .ul li::before {
  width: 0.2rem;
  height: 0.18rem;
  content: '';
  background: url(../images/down.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.09rem;
  transition: 0.3s;
}

.downList .ul li:hover::before {
  transform: translateY(0.05rem);
}

.aboutUs {
  padding: 6% 0;
  background: linear-gradient(to bottom, #fff, #f8fafd);
}

.aboutUs .txtBox {
  float: right;
  width: 44.5%;
  padding-top: 0.2rem;
}

.aboutUs .txtBox h5 {
  font-size: 0.36rem;
  font-weight: normal;
  margin-bottom: 0.3rem;
}

.aboutUs .txtBox p {
  color: #666;
  line-height: 0.4rem;
}

.aboutUs .imgBox {
  position: relative;
  float: left;
  width: 50%;
  overflow: hidden;
}

.aboutUs .imgBox .playBtn {
  width: 0.62rem;
  height: 0.62rem;
  display: block;
  background: url(../images/play2.png) no-repeat;
  background-size: contain;
  transition: 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.aboutUs .imgBox .playBtn:hover {
  top: 48%;
}

.aboutUs .imgBox .videoBox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}

.aboutUs .imgBox .videoBox .closBtn {
  width: 0.3rem;
  height: 0.3rem;
  display: block;
  position: absolute;
  top: 0.25rem;
  right: 25px;
  background: url(../images/clobtn.png) no-repeat;
  background-size: contain;
  z-index: 99;
  transition: 0.3s;
}

.aboutUs .imgBox .videoBox .closBtn:hover {
  transform: rotate(90deg);
}

.aboutUs .imgBox .videoBox video {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.teamIntro {
  background: url(../images/teambg.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-bottom: 1rem;
}

.teamIntro .innerDes {
  text-align: center;
  margin-bottom: 0.3rem;
  font-size: 0.18rem;
  line-height: 0.4rem;
}

.teamIntro .numBox {
  display: flex;
  justify-content: center;
}

.teamIntro .numBox .item {
  margin: 0 0.6rem;
}

.teamIntro .numBox .item .num {
  font-size: 0.3rem;
  color: #1d9ee7;
  text-align: center;
}

.teamIntro .numBox .item .num .count {
  font-size: 0.6rem;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;
}

.teamIntro .numBox .item .des {
  color: #666666;
  margin-top: 0.1rem;
}

.teamIntro .teamList .slick-list {
  padding-top: 1.6rem;
}

.teamIntro .teamList .item {
  background-color: #f8fafd;
  padding: 0.6rem 0.7rem 0.9rem calc(510 / 1920 * 100vw);
  position: relative;
}

.teamIntro .teamList .item .imgBox {
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  width: calc(300 / 1920 * 100vw);
}

.teamIntro .teamList .item .txtBox .np {
  font-size: 0.18rem;
  color: #666666;
}

.teamIntro .teamList .item .txtBox .np .name {
  font-size: 0.26rem;
}

.teamIntro .teamList .item .txtBox .np .pos {
  display: inline-block;
  margin: 0 0.2rem;
}

.teamIntro .teamList .item .txtBox .des {
  line-height: 0.3rem;
  color: #666;
  margin-top: 0.2rem;
}

.teamIntro .teamList .slick-arrow {
  border-radius: 50%;
  background-color: #d0d2d7;
  border: none;
  top: 70%;
}

.teamIntro .teamList .slick-arrow::before {
  border-color: #fff;
}

.teamIntro .teamList .slick-arrow:hover {
  background-color: #1d9ee7;
}

.honerList {
  padding-bottom: 0.9rem;
  background-color: #f8fafd;
}

.honerList .ul {
  margin: 0 -0.15rem;
}

.honerList .ul li {
  margin: 0 0.15rem;
}

.honerList .ul li .imgBox {
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.honerList .ul li .imgBox img {
  max-width: 85%;
  display: block;
}

.honerList .ul li .txtBox {
  text-align: center;
}

.honerList .ul li .txtBox h5 {
  font-size: 0.18rem;
  font-weight: normal;
  margin-bottom: 0.1rem;
}

.honerList .ul li .txtBox p {
  font-size: 0.14rem;
  color: #666666;
}

.honerList .ul .slick-arrow {
  border-radius: 50%;
  background-color: #d0d2d7;
  border: none;
}

.honerList .ul .slick-arrow::before {
  border-color: #fff;
}

.honerList .ul .slick-arrow:hover {
  background-color: #1d9ee7;
}

.historyList {
  padding-bottom: 6%;
  background: url(../images/hisbg.jpg) no-repeat;
  background-position: center bottom;
}

.historyList .slider {
  position: relative;
}

.historyList .slider .slick-list {
  padding-left: 25%;
}

.historyList .slider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(170, 170, 170, 0.3);
}

.historyList .slider .item {
  height: 5rem;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.historyList .slider .item .box {
  padding: 0.2rem 0;
  height: 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-left: 0.45rem;
  width: 200%;
  margin-left: -60%;
}

.historyList .slider .item .box::before {
  content: '';
  position: absolute;
  left: 0.26rem;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(231, 20, 26, 0.3);
}

.historyList .slider .item .box::after {
  width: 0.21rem;
  height: 0.21rem;
  content: '';
  background: url(../images/i8.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.105rem;
  left: 0.16rem;
}

.historyList .slider .item:nth-child(2n) {
  align-items: flex-start;
}

.historyList .slider .item:nth-child(2n) .box {
  align-items: flex-start;
}

.historyList .slider .item:nth-child(2n) .box::after {
  top: auto;
  bottom: -0.105rem;
}

.historyList .slider .item .con {
  display: flex;
}

.historyList .slider .item .con .imgBox {
  width: calc(300 / 1920 * 100vw);
}

.historyList .slider .item .con .txtBox {
  padding: 0 0.25rem;
}

.historyList .slider .item .con .txtBox time {
  font-size: 0.3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.1rem;
}

.historyList .slider .item .con .txtBox .des {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666;
  max-height: 1.5rem;
  overflow-y: auto;
}

.historyList .slider .slick-arrow {
  border-radius: 50%;
  background-color: #d0d2d7;
  border: none;
}

.historyList .slider .slick-arrow::before {
  border-color: #fff;
}

.historyList .slider .slick-arrow:hover {
  background-color: #1d9ee7;
}

.caseList {
  background: linear-gradient(to bottom, #fff, #f8fafd);
  padding-bottom: 1rem;
}

.caseList .seleBox {
  display: flex;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.caseList .seleBox select {
  width: calc(350 / 1920 * 100vw);
  line-height: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 0 0.2rem;
  font-size: 0.16rem;
  border: none;
  margin: 0 0.05rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.caseList .caseTop {
  margin-bottom: 0.65rem;
}

.caseList .caseTop li {
  background-color: #fff;
}

.caseList .caseTop li a {
  display: flex;
  align-items: center;
}

.caseList .caseTop li a .imgBox {
  width: calc(796 / 1920 * 100vw);
}

.caseList .caseTop li a .txtBox {
  width: calc(454 / 1920 * 100vw);
  padding: 0 0.4rem;
  opacity: 0;
}

.caseList .caseTop li a .txtBox h5 {
  font-size: 0.24rem;
  font-weight: normal;
  margin-bottom: 0.2rem;
}

.caseList .caseTop li a .txtBox p {
  line-height: 0.3rem;
  color: #666666;
}

.caseList .caseTop li a .txtBox .more {
  display: block;
  width: 1.5rem;
  line-height: 0.4rem;
  padding-left: 0.3rem;
  position: relative;
  color: #fff;
  background-color: #1d9ee7;
  border-radius: 0.4rem;
  margin-top: 0.4rem;
}

.caseList .caseTop li a .txtBox .more::before {
  width: 0.1rem;
  height: 0.1rem;
  content: '';
  background: url(../images/i5_w.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.35rem;
  top: 50%;
  margin-top: -0.05rem;
  transition: 0.3s;
}

.caseList .caseTop li a .txtBox .more:hover::before {
  transform: rotate(180deg);
}

.caseList .caseTop li.swiper-slide-active a .txtBox {
  opacity: 1;
}

.caseList .caseTop .swiper-button-prev,
.caseList .caseTop .swiper-button-next {
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  z-index: 10;
  cursor: pointer;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  background-color: #d0d2d7;
}

.caseList .caseTop .swiper-button-prev::after,
.caseList .caseTop .swiper-button-next::after {
  font-size: 0.16rem;
  color: #fff;
}

.caseList .caseTop .swiper-button-prev:hover,
.caseList .caseTop .swiper-button-next:hover {
  background-color: #1d9ee7;
}

.caseList .caseBom li {
  float: left;
  width: 30.5%;
  margin-right: 4.25%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  margin-bottom: 2%;
}

.caseList .caseBom li .imgBox {
  height: 2.92rem;
  overflow: hidden;
}

.caseList .caseBom li .txtBox {
  padding: 0.25rem 0.25rem 0.4rem;
  background-color: #fff;
}

.caseList .caseBom li .txtBox h5 {
  font-size: 0.2rem;
  font-weight: normal;
  margin-bottom: 0.15rem;
}

.caseList .caseBom li .txtBox p {
  line-height: 0.3rem;
  color: #999999;
  min-height: 0.6rem;
}

.caseList .caseBom li:nth-child(3n) {
  margin-right: 0;
}

.caseList .caseBom li:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.mediaNews {
  background: linear-gradient(to bottom, #fff, #f8fafd);
  padding-bottom: 1rem;
}

.mediaNews .newTop {
  margin-bottom: 0.65rem;
}

.mediaNews .newTop li {
  background-color: #fff;
}

.mediaNews .newTop li a {
  display: flex;
  align-items: center;
}

.mediaNews .newTop li a .imgBox {
  width: calc(796 / 1920 * 100vw);
}

.mediaNews .newTop li a .txtBox {
  width: calc(454 / 1920 * 100vw);
  padding: 0 0.4rem;
  opacity: 0;
}

.mediaNews .newTop li a .txtBox h5 {
  font-size: 0.24rem;
  font-weight: normal;
  margin-bottom: 0.2rem;
}

.mediaNews .newTop li a .txtBox p {
  line-height: 0.3rem;
  color: #666666;
}

.mediaNews .newTop li a .txtBox time {
  color: #666;
  display: block;
  margin-bottom: 0.12rem;
}

.mediaNews .newTop li a .txtBox .more {
  display: block;
  width: 1.5rem;
  line-height: 0.4rem;
  padding-left: 0.3rem;
  position: relative;
  color: #fff;
  background-color: #1d9ee7;
  border-radius: 0.4rem;
  margin-top: 0.4rem;
}

.mediaNews .newTop li a .txtBox .more::before {
  width: 0.1rem;
  height: 0.1rem;
  content: '';
  background: url(../images/i5_w.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.35rem;
  top: 50%;
  margin-top: -0.05rem;
  transition: 0.3s;
}

.mediaNews .newTop li a .txtBox .more:hover::before {
  transform: rotate(180deg);
}

.mediaNews .newTop li.swiper-slide-active a .txtBox {
  opacity: 1;
}

.mediaNews .newTop .swiper-button-prev,
.mediaNews .newTop .swiper-button-next {
  width: 0.5rem;
  height: 0.5rem;
  top: auto;
  transition: all 0.5s;
  z-index: 10;
  cursor: pointer;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  background-color: #d0d2d7;
  bottom: 0.4rem;
}

.mediaNews .newTop .swiper-button-prev::after,
.mediaNews .newTop .swiper-button-next::after {
  font-size: 0.16rem;
  color: #fff;
}

.mediaNews .newTop .swiper-button-prev:hover,
.mediaNews .newTop .swiper-button-next:hover {
  background-color: #1d9ee7;
}

.mediaNews .newTop .swiper-button-prev {
  right: calc(12% + 0.7rem);
  left: auto;
}

.mediaNews .newTop .swiper-button-next {
  right: 12%;
}

.mediaNews .newBom li {
  float: left;
  width: 30.5%;
  margin-right: 4.25%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  margin-bottom: 2%;
}

.mediaNews .newBom li .imgBox {
  height: 2.92rem;
  overflow: hidden;
}

.mediaNews .newBom li .txtBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}

.mediaNews .newBom li .txtBox h5 {
  padding: 0 0.25rem;
  width: calc(100% - 1.1rem);
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-weight: normal;
  min-height: 0.64rem;
}

.mediaNews .newBom li .txtBox .date {
  width: 1.1rem;
  border-left: 1px solid #dddddd;
  text-align: center;
  color: #999999;
}

.mediaNews .newBom li .txtBox .date .d {
  display: block;
  font-size: 0.48rem;
  line-height: 1;
}

.mediaNews .newBom li .txtBox .date .ym {
  font-size: 0.14rem;
  margin-top: 0.05rem;
}

.mediaNews .newBom li:nth-child(3n) {
  margin-right: 0;
}

.mediaNews .newBom li:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.newsInfo {
  padding-bottom: 1rem;
}

.newsInfo .titBox {
  padding: 0.7rem 0 0.35rem;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 0.6rem;
  text-align: center;
}

.newsInfo .titBox h1 {
  font-size: 0.3rem;
  font-weight: normal;
}

.newsInfo .titBox .lab {
  margin-top: 0.15rem;
  color: #999999;
}

.newsInfo .titBox .lab time {
  margin: 0 0.25rem;
}

.newsInfo .conBox {
  max-width: 100%;
  margin: 0 auto;
  font-size: 0.18rem;
  line-height: 2;
}

.newsInfo .conBox .imgBox {
  text-align: center;
  margin: 0.3rem 0;
}

.newsInfo .pnBox {
  margin-top: 0.8rem;
}

.newsInfo .pnBox .retBtn {
  display: block;
  width: 1.8rem;
  line-height: 0.5rem;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #1d9ee7;
  color: #fff;
  margin: 0 auto;
}

.newsInfo .pnBox .pene {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  margin-top: 0.8rem;
  padding: 0 0.2rem;
}

.newsInfo .pnBox .pene span {
  display: block;
  width: 48%;
  line-height: 0.6rem;
}

.newsInfo .pnBox .pene span:nth-child(2n) {
  text-align: right;
}

.recruitJob {
  background: linear-gradient(to bottom, #fff, #f8fafd);
  padding-bottom: 0.9rem;
}

.recruitJob .searBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruitJob .searBox .sele {
  width: calc(320 / 1920 * 100vw);
}

.recruitJob .searBox .sele select {
  width: 100%;
  line-height: 0.6rem;
  border-radius: 0.6rem;
  background-color: #fff;
  height: 0.6rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: none;
  padding: 0 0.3rem;
  font-size: 0.18rem;
}

.recruitJob .searBox .inpt {
  width: calc(520 / 1920 * 100vw);
}

.recruitJob .searBox .inpt input {
  width: 100%;
  line-height: 0.6rem;
  border-radius: 0.6rem;
  background-color: #fff;
  height: 0.6rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: none;
  padding: 0 0.3rem;
  font-size: 0.18rem;
}

.recruitJob .searBox .goSeat {
  display: block;
  width: calc(220 / 1920 * 100vw);
  line-height: 0.6rem;
  border-radius: 0.6rem;
  background-color: #1d9ee7;
  color: #fff;
  padding-left: 1.05rem;
  font-size: 0.18rem;
  position: relative;
}

.recruitJob .searBox .goSeat::before {
  width: 0.2rem;
  height: 0.2rem;
  content: '';
  background: url(../images/search.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0.8rem;
  top: 50%;
  margin-top: -0.1rem;
}

.recruitJob .job_list {
  color: #333;
  margin-top: 0.45rem;
}

.recruitJob .job_list .list {
  background-color: #fafafb;
}

.recruitJob .job_list .title {
  display: flex;
  width: 100%;
  padding: 0.2rem 0.4rem;
  border-bottom: 1px solid #eeeeee;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  background-color: #fff;
  color: #666666;
}

.recruitJob .job_list .title li {
  width: 100%;
}

.recruitJob .job_list .title .name {
  flex: 0 0 auto;
}

.recruitJob .job_list .title .icon {
  width: 0.15rem;
  display: inline-block;
  height: 0.15rem;
  position: relative;
  margin-left: 0.1rem;
}

.recruitJob .job_list .title .icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.08rem;
  height: 0.08rem;
  border: solid #999999;
  border-width: 2px 2px 0 0;
}

.recruitJob .job_list .title .name {
  width: 26%;
}

.recruitJob .job_list .title .time {
  display: flex;
  align-items: center;
  width: 1.2rem;
  flex: 0 0 auto;
}

.recruitJob .job_list .title .des {
  color: #999999;
}

.recruitJob .job_list .top {
  color: #fff;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  background-color: #1d9ee7;
}

.recruitJob .job_list .content {
  display: none;
}

.recruitJob .job_list .con {
  line-height: calc(36 / 16);
  color: #555;
  position: relative;
  padding: 0.25rem 0.8rem 0.5rem 0.6rem;
  padding-right: 2rem;
  background-color: #f2f6fb;
}

.recruitJob .job_list .con .titBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.1rem;
}

.recruitJob .job_list .con .titBox h3 {
  font-size: 0.24rem;
  font-weight: normal;
}

.recruitJob .job_list .con .titBox p {
  font-size: 0.18rem;
  color: #1d9ee7;
}

.recruitJob .job_list .con .add {
  color: #555555;
}

.recruitJob .job_list .btn {
  width: 2rem;
  line-height: 0.5rem;
  text-align: center;
  background: #1d9ee7;
  border-radius: 0.5rem;
  color: #fff;
  display: block;
  margin-top: 0.25rem;
}

.recruitJob .job_list .selected .title {
  color: #303030;
  background-color: transparent;
  border-color: #dddddd;
}

.recruitJob .job_list .selected .icon::before {
  transform: translate(-50%, -50%) rotate(135deg);
  border-color: #303030;
}

@media (max-width: 640px) {
  .recruitJob .job_list .title {
    padding: calc(20 / 16 * 1em) calc(20 / 16 * 1em);
    padding-right: 0;
  }

  .recruitJob .job_list .title .work,
  .recruitJob .job_list .title .num,
  .recruitJob .job_list .title .experience,
  .recruitJob .job_list .title .edu,
  .recruitJob .job_list .title .salary {
    display: none;
  }

  .recruitJob .job_list .title .time {
    width: 1.4rem;
  }

  .recruitJob .job_list .title .name {
    width: calc(100% - 1.4rem);
  }

  .recruitJob .job_list .con {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .recruitJob .job_list .btn {
    position: relative;
    display: block;
    bottom: auto;
    margin-top: 0.5rem;
  }
}

.welfareList {
  padding-bottom: 1.3rem;
}

.welfareList li {
  position: relative;
  margin-bottom: 0.8rem;
}

.welfareList li .imgBox {
  width: calc(290 / 1920 * 100vw);
  position: absolute;
  bottom: -0.6rem;
  left: 0;
}

.welfareList li .conBox {
  max-width: 830px;
  margin: 0 auto;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #dddddd;
}

.welfareList li .conBox .num {
  float: left;
  font-family: 'Times New Roman';
  font-size: 0.36rem;
  color: #1d9ee7;
  width: calc(200 / 1920 * 100vw);
}

.welfareList li .conBox .des {
  float: right;
  width: calc(600 / 1920 * 100vw);
}

.welfareList li .conBox .des h5 {
  font-size: 0.2rem;
  font-weight: normal;
  margin-bottom: 0.1rem;
}

.welfareList li .conBox .des p {
  line-height: 0.28rem;
}

.welfareList li:nth-child(2n) .imgBox {
  left: auto;
  right: 0;
}

.welfareList li:nth-child(2n) .conBox .num {
  float: right;
  text-align: right;
}

.welfareList li:nth-child(2n) .conBox .des {
  float: left;
}

.contactUs {
  background: linear-gradient(to bottom, #fff, #f8fafd);
  padding-bottom: 1.2rem;
}

.contactUs .contactBox {
  background-color: #fff;
  padding: 0.5rem 0.6rem;
}

.contactUs .contactBox .comDes {
  display: flex;
}

.contactUs .contactBox .comDes .icon {
  width: 0.9rem;
}

.contactUs .contactBox .comDes .text {
  width: calc(100% - 0.9rem);
  padding-left: 0.3rem;
}

.contactUs .contactBox .comDes .text h5 {
  font-size: 0.18rem;
  font-weight: normal;
  padding-bottom: 0.15rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.contactUs .contactBox .comDes .text h5::before {
  width: 0.4rem;
  height: 0.02rem;
  content: '';
  background-color: #1d9ee7;
  position: absolute;
  left: 0;
  bottom: 0;
}

.contactUs .contactBox .comDes .text .des {
  line-height: 0.4rem;
  color: #666666;
}

.contactUs .contactBox .tactTop {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eeeeee;
  display: flex;
}

.contactUs .contactBox .tactTop .comDes {
  width: 50%;
}

.contactUs .contactBox .tactTop .codeList {
  width: 50%;
  display: flex;
  justify-content: right;
  padding-right: 0.9rem;
  padding-top: 0.35rem;
}

.contactUs .contactBox .tactTop .codeList .item {
  width: calc(160 / 1920 * 100vw);
  text-align: center;
  margin-left: 0.4rem;
}

.contactUs .contactBox .tactTop .codeList .item p {
  margin-top: 0.1rem;
}

.contactUs .contactBox .tactBom {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.contactUs .contactBox .tactBom .comDes {
  width: 31%;
}

@media screen and (max-width: 1680px) {
  .bottom .bomLeft .bomShare a {
    margin-left: 0.15rem;
  }

  .HomeTechno .techList li .txtBox {
    padding: 0.3rem 0.2rem;
  }

  .operScope .mapImg {
    left: 0;
  }

  .downList .downSear .seleBox {
    width: calc(180 / 1920 * 100vw);
  }
}

@media (max-width: 1024px) {
  .header .hotline {
    display: none;
  }

  .header .navTop li span a {
    color: #333;
  }

  .header .logo {
    margin-left: 0;
  }

  .header {
    padding: 0 20px;
  }

  .header .navTop li .prosub {
    padding: 0.1rem 0.2rem;
    display: block;
  }

  .header .navTop li .prosub .item {
    width: 100%;
    padding: 0;
  }

  .header .navTop li .prosub .item .img {
    display: none;
  }

  .header .navTop li .prosub .item .txt {
    display: flex;
    align-items: center;
  }

  .header .navTop li .prosub .item .txt h5 {
    line-height: 0.3rem;
    text-align: left;
    margin-right: 0.05rem;
    margin-bottom: 0;
  }

  .header .navTop li .prosub .item .txt p {
    line-height: 1;
  }

  .header .navTop .ul li .sub {
    padding-bottom: 0.1rem;
  }

  .header .navTop li .subDatl .desBox {
    display: none;
  }

  .header .navTop li .subDatl .imgBox {
    display: none;
  }

  .header .navTop li .subDatl .subNav {
    width: 100%;
    padding: 0.1rem;
    margin: 0;
    display: block;
  }

  .header .navTop li .subDatl .subNav .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.05rem;
  }

  .HomeTechno .techList li .txtBox {
    padding: 0.2rem;
  }

  .Htitle {
    font-size: 0.36rem;
    padding: 0.3rem 0 0.2rem;
  }

  .HomeTechno .techList li .imgBox {
    height: 1.2rem;
  }

  .HomeTechno .techList li .imgBox img {
    height: 100%;
    object-fit: cover;
  }

  .HomeTechno .techList li .txtBox h5 {
    font-size: 0.26rem;
    margin-bottom: 0.1rem;
    padding-bottom: 0.1rem;
  }

  .HomeTechno .techList li {
    width: 49%;
    margin-right: 2%;
  }

  .HomeTechno .techList li:nth-child(2n) {
    margin-right: 0;
  }

  .HomeIntropro .itemBox li .imgBox {
    height: auto;
  }

  .HomeIntropro .itemBox li h5 {
    font-size: 0.2rem;
    line-height: 0.4rem;
  }

  .HomeIntropro .itemBox .tit {
    font-size: 0.26rem;
  }

  .HomeIntropro .itemBox .tit span {
    font-size: 0.3rem;
  }

  .HomeIntropro .itemBox li {
    width: 49%;
    margin-right: 2%;
  }

  .HomeIntropro .itemBox li:nth-child(2n) {
    margin-right: 0;
  }

  .HomeIntropro .scenBox {
    display: block;
  }

  .HomeIntropro .scenBox .itemBox:last-child {
    width: 100%;
    border-left: none;
    border-top: 1px solid #dddddd;
  }

  .HomeNews .leftBox li .imgBox {
    height: auto;
  }

  .bottom .bomLeft {
    width: 22%;
  }

  .Homeprod .slider .slick-arrow.slick-prev {
    left: 20%;
  }

  .Homeprod .slider .slick-arrow.slick-next {
    right: 20%;
  }

  .prodWarp .proMenu a {
    margin-bottom: 0.1rem;
  }

  .prodWarp .proMenu {
    margin-bottom: 0.4rem;
  }

  .proinnerBan li .imgBox {
    max-width: 70%;
    margin: 0 auto;
  }

  .proinF1 .tit,
  .proinF2 .tit {
    font-size: 0.28rem;
  }

  .proDetail-row,
  .proDetail-row.reverse {
    padding-left: 0;
    padding-right: 0;
  }

  .proDetail-row .proDetail-img,
  .proDetail-row.reverse .proDetail-img {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 0.2rem;
    display: block;
  }

  .proDetail-row .proDetail-txt,
  .proDetail-row.reverse .proDetail-txt {
    width: 100%;
    padding: 0;
  }

  .proDetail-img img {
    width: 100%;
    max-height: none;
    height: auto;
  }

  .proDetail-adv li {
    width: 50%;
    margin-bottom: 0.25rem;
  }

  .proDetail-industry {
    flex-wrap: wrap;
  }

  .proDetail-industry li {
    flex: 0 0 33.333%;
    border-bottom: 1px solid #ddd;
  }

  .proDetail-industry li:nth-child(3n) {
    border-right: none;
  }

  .caseF1 li .imgBox,
  .caseSucc .slider li .imgBox,
  .caseF2 li .imgBox,
  .caseParn .slider .item,
  .deploySer li .imgBox,
  .caseList .caseBom li .imgBox,
  .mediaNews .newBom li .imgBox {
    height: auto;
  }

  .innerTit {
    padding: 0.6rem 0 0.3rem;
    font-size: 0.28rem;
  }

  .caseF1 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }

  .caseF1 li:nth-child(2n) {
    margin-right: 0;
  }

  .caseF4 .slider .itemBox .proserList .item {
    display: block;
  }

  .caseF4 .slider .itemBox .proserList .item .imgBox {
    width: 100%;
    text-align: center;
  }

  .caseF4 .slider .itemBox .proserList .item .txtBox {
    width: 100%;
    margin-top: 0.1rem;
  }

  .caseF1 li .txtBox .des {
    max-height: 1.2rem;
    overflow: hidden;
  }

  .deploySer li {
    width: 49%;
    margin-right: 2%;
  }

  .deploySer li:nth-child(2n) {
    margin-right: 0;
  }

  .operScope .txtBox {
    width: 40%;
  }

  .aboutUs .txtBox h5 {
    font-size: 0.28rem;
    margin-bottom: 0.15rem;
  }

  .aboutUs .txtBox p {
    line-height: 0.28rem;
  }

  .historyList .slider .slick-list {
    padding-left: 0;
  }

  .historyList .slider .item {
    height: auto;
    align-items: flex-start !important;
  }

  .historyList .slider .item .box {
    margin-left: 0;
    width: 100%;
  }

  .caseList .seleBox select {
    width: 45%;
  }

  .caseList .caseTop li a,
  .mediaNews .newTop li a {
    display: block;
  }

  .caseList .caseTop li a .imgBox,
  .mediaNews .newTop li a .imgBox {
    width: 100%;
    text-align: center;
  }

  .caseList .caseTop li a .txtBox,
  .mediaNews .newTop li a .txtBox {
    width: 100%;
    margin-top: 0.15rem;
    padding: 0 0.2rem;
  }

  .caseList .caseBom li,
  .mediaNews .newBom li {
    width: 49%;
    margin-right: 2%;
  }

  .caseList .caseBom li:nth-child(3n),
  .mediaNews .newBom li:nth-child(3n) {
    margin-right: 2%;
  }

  .caseList .caseBom li:nth-child(2n),
  .mediaNews .newBom li:nth-child(2n) {
    margin-right: 0;
  }

  .caseList .caseBom li .txtBox {
    padding: 0.15rem 0.15rem 0.2rem;
  }

  .newsInfo .pnBox .pene {
    display: block;
  }

  .newsInfo .pnBox .pene span {
    width: 100%;
    text-align: left !important;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .recruitJob .searBox {
    flex-wrap: wrap;
  }

  .recruitJob .searBox .sele {
    width: 48%;
    margin-bottom: 0.15rem;
  }

  .recruitJob .searBox .inpt {
    width: 76%;
  }

  .recruitJob .searBox .goSeat {
    width: 20%;
  }

  .welfareList li .imgBox {
    position: static;
    margin-bottom: 0.15rem;
    width: 100%;
  }

  .welfareList li .conBox .num {
    float: none !important;
    width: 100%;
    text-align: left !important;
  }

  .welfareList li .conBox .des {
    float: none !important;
    width: 100%;
    margin-top: 0.15rem;
  }
}

@media (max-width: 768px) {
  .header .menuIcon {
    margin-left: 0.1rem;
  }

  .header .logo {
    width: 80%;
  }

  .header .trialBtn .btn {
    width: 1.2rem;
  }

  .Hbanner .textwarp .cn {
    font-size: 0.32rem;
  }

  .Hbanner .textwarp .des .desList .item {
    line-height: 0.3rem;
    font-size: 0.18rem;
    padding: 0 0.15rem;
  }

  .Hbanner .textwarp .des .Appbtn {
    display: none;
  }

  .Hbanner .textwarp {
    padding-top: 0.8rem;
  }

  .Hbanner .textwarp .des {
    margin-top: 0.15rem;
  }

  .Hbanner .slick-dots li {
    margin: 0 0.05rem;
  }

  .HomeTechno .techList li .txtBox .des {
    font-size: 0.16rem;
  }

  .Htitle {
    font-size: 0.32rem;
  }

  .HomeNews .leftBox {
    float: none;
    width: 100%;
  }

  .HomeNews .rightBox {
    float: none;
    width: 100%;
  }

  .bottom .w1680 {
    padding-top: 0.5rem;
  }

  .bottom .bomRight .bomNav {
    display: none;
  }

  .bottom .bomLeft {
    width: 100%;
    float: none;
  }

  .bottom .bomRight {
    width: 100%;
    float: none;
  }

  .bottom .bomRight .bomBom {
    text-align: center;
  }

  .HomeNews .rightBox .more {
    width: 1.6rem;
  }

  .formFix .contBox {
    width: 96%;
  }

  .HomeTechno .techList li .txtBox .des p {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .bottom .bomLeft .bomLogo {
    max-width: 50%;
  }

  .proinF3 .txtList {
    float: none;
    width: 100%;
  }

  .proinF3 .imgList {
    float: none;
    width: 100%;
    margin-top: 0.2rem;
  }

  .caseF4 .slider .itemBox .proserList .item {
    width: 32%;
  }

  .caseF4 .slider .itemBox .imgList .item {
    width: 23.5%;
    margin: 0 0.05rem;
  }

  .operScope .txtBox {
    width: 100%;
  }

  .operScope .mapImg {
    position: static;
    width: 100%;
    text-align: center;
    transform: translateY(0);
    margin-bottom: 0.2rem;
  }

  .downList .downSear {
    width: 80%;
  }

  .downList .downSear .seleBox {
    width: 30%;
    padding: 0 0.2rem;
  }

  .downList .downSear .inptBox {
    width: 70%;
  }

  .teamIntro .teamList .slick-list {
    padding-top: 0.3rem;
  }

  .teamIntro .teamList .item {
    padding: 0.4rem 0.3rem;
  }

  .teamIntro .teamList .item .imgBox {
    position: static;
    margin-bottom: 0.15rem;
  }

  .historyList .slider .item .con {
    display: block;
  }

  .historyList .slider .item .con .imgBox {
    width: 100%;
    text-align: center;
    margin-bottom: 0.15rem;
  }

  .aboutUs .txtBox {
    float: none;
    width: 100%;
  }

  .aboutUs .imgBox {
    float: none;
    width: 100%;
    margin-top: 0.15rem;
  }

  .caseList .caseTop li a .txtBox .more,
  .mediaNews .newTop li a .txtBox .more {
    margin-top: 0.2rem;
    width: 1.6rem;
  }

  .mediaNews .newTop .swiper-button-next {
    right: 0;
  }

  .mediaNews .newTop .swiper-button-prev {
    left: 0;
  }

  .mediaNews .newBom li .txtBox h5 {
    padding: 0 0.15rem;
  }

  .welfareList li .imgBox {
    width: 50%;
  }

  .recruitJob .searBox .inpt {
    width: 56%;
  }

  .recruitJob .searBox .goSeat {
    width: 40%;
  }

  .contactUs .contactBox {
    padding: 0.5rem 0.3rem;
  }

  .contactUs .contactBox .tactTop {
    display: block;
  }

  .contactUs .contactBox .tactTop .comDes {
    width: 100%;
  }

  .contactUs .contactBox .tactTop .codeList {
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }

  .contactUs .contactBox .tactTop .codeList .item {
    margin-left: 0;
    width: 40%;
    margin: 0 0.15rem;
  }

  .contactUs .contactBox .tactBom {
    display: block;
  }

  .contactUs .contactBox .tactBom .comDes {
    width: 100%;
    margin-bottom: 0.15rem;
  }

  .HomeNews,
  .proinF3,
  .welfareList {
    padding-bottom: 0.6rem;
  }
}