@charset "utf-8";
.prod_color1 {
  color: #2ccaff;
}

.prod_color2 {
  color: #d61424;
}

.prod_color3 {
  color: #0cad6b;
}

.prod_color4 {
  color: #da8a3e;
}

.prod_color1_bg {
  background: #2ccaff;
}

.prod_color2_bg {
  background: #d61424;
}

.prod_color3_bg {
  background: #0cad6b;
}

.prod_color4_bg {
  background: #da8a3e;
}

/* base */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html.act {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

body {
  margin: 0;
  font-family: Arial,"Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out 0.2s;
  -moz-transition: opacity 0.2s ease-in-out 0.2s;
  -ms-transition: opacity 0.2s ease-in-out 0.2s;
  -o-transition: opacity 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s;
}


article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -moz-outline-style: none;
}

a:active, a:hover {
  outline: 0;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
  
b, strong {
  font-weight: bold;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

dl, dd, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-weight: normal;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  outline: none;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
  outline: none;
}

input[type="checkbox"], input[type="radio"] {
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td, th {
  padding: 0;
}

.img_h {
  position: relative;
  cursor: pointer;
}

.img_h img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.img_h img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.img_h.img_ha:hover img {
  opacity: 1;
}

.img_h.img_ha:hover img:nth-child(2) {
  opacity: 0;
}

a:hover .img_h.img_ha img, .img_h:hover img {
  opacity: 0;
}

a:hover .img_h.img_ha img:nth-child(2), .img_h:hover img:nth-child(2) {
  opacity: 1;
}

.visible-xs {
  display: none !important;
}

.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

.container {
  margin: 0 auto;
  min-height: 1px;
  width: 90%;
  max-width: 1600px;
}

.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
  line-height: 24px;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 72px;
  line-height: 24px;
}

.o_fit video, .o_fit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

[dis-select] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[dis-drag] {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-dr {
  /*水平*/
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.f-dc {
  /*垂直*/
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-1 > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block;
  /* IE10失效的解决办法 */
}

.f-as {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.f-ac {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-ae {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.f-js {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f-jc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-je {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.f-jsb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-warp {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}

/* base */
/* scrollbar */
@media (min-width: 1024px) {
  ::-webkit-scrollbar-track-piece {
    background-color: #ccc;
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 2px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #666;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
}

/* scrollbar */
/* page */
/*
  <div class="pagination">
    <div class="page_pc hidden-xs clearfix">
      <a href="javascript:;">上一页</a>
      <a href="javascript:;" class="page_num act">1</a>
      <a href="javascript:;" class="page_num">2</a>
      <a href="javascript:;" class="page_num">3</a>
      <a href="javascript:;">下一页</a>
      <em>共10页</em>
    </div>
    <a href="javascript:;" class="page_sj visible-xs">加载更多</a>
  </div>
*/
.pagination {
  margin: 50px auto 0;
}

.page_pc {
  text-align: center;
  line-height: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_pc a {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #dddddd;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  font-family: Arial;
  font-size: 14px;
  color: #666666;
}

.page_pc a.disabled {
  pointer-events: none;
  opacity: .8;
}

.page_pc a.prev img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.page_pc a:hover, .page_pc a.act {
  border: solid 1px #044eb5;
  color: #044eb5;
}

.page_pc em {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #999999;
  margin: 0 12px;
  font-style: normal;
}

.page_pc em.ml20 {
  margin-left: 20px;
}

.page_pc input {
  width: 50px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #dddddd;
  text-align: center;
}

.page_pc .go {
  width: 46px;
}

.page_sj {
  width: 120px;
  height: 42px;
  color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 40px;
  display: none;
  text-align: center;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #dddddd;
  text-align: center;
  color: #666;
}

/* page */
/* common */
.md {
  position: relative;
  top: -100px;
}

.commonP {
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.commonP .swiper-pagination-bullet {
}

.commonP .swiper-pagination-bullet.swiper-pagination-bullet-active {
}

.common_tit {
  text-align: center;
}

.common_tit h4 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333333;
}

.common_tit h4 span {
  font-family: "DIN Alternate";
  font-size: 52px;
  letter-spacing: 1px;
  color: #00cdff;
}

.common_tit h6 {
  margin-top: 16px;
  font-size: 20px;
  line-height: 32px;
  color: #666666;
  font-weight: 100;
}

.layui-form-select dl dd.layui-this {
  background-color: #044eb5;
  color: #fff;
}

#video_model {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}

#video_model .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}

#video_model .video {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: 80%;
  max-width: 960px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  background: #252525;
}

#video_model .video .close {
  position: absolute;
  right: -50px;
  top: 0;
  width: 40px;
  z-index: 99999;
  cursor: pointer;
}

#video_model .video_inner {
  width: 100%;
  padding: 10px;
  overflow: hidden;
  position: relative;
}

#video_model .video_inner video {
  display: block;
  width: 100%;
  outline: none;
}

#video_model .video .text {
  padding: 16px 10px 30px;
}

#video_model .video .text h6 {
  font-size: 16px;
  color: #fff;
}

#video_model .video .text p {
  font-size: 12px;
  margin-top: 12px;
  color: #666;
}

/*
<!-- video_model -->
<div id="video_model">
  <div class="mask"></div>
  <div class="video">
    <div class="close"><img src="images/close.png" alt=""></div>
    <div class="video_inner"><video src="" autoplay controls x5-playsinline playsinline webkit-playsinline></video></div>
    <div class="text">
      <h6></h6>
      <p></p>
    </div>
  </div>
</div>
<!-- video_model -->
*/
.nextButton {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper {
  position: relative;
}

.swiper .prevButton {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.swiper .nextButton {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.i1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #1e5bfc;
  z-index: 999;
}

.i1 .i1_c1 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.i1 .i1_c1 .img0 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 22%;
  z-index: 4;
}

.i1 .i1_c1 .img0 img {
  display: block;
  margin: 0 auto;
}

.i1 .i1_c1 .yuan {
  display: block;
  width: 24%;
  padding-top: 24%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.i1 .i1_c1 .yuan s {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 50%;
  background: #3584fd;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.i1 .i1_c1 .yuan s:nth-child(2) {
  background: rgba(10, 65, 251, 0.5);
}

.i1 .i1_c1 .yuan s:nth-child(3) {
  background: rgba(9, 59, 251, 0.5);
}

.i1 .i1_c1.act .yuan s {
  transform: scale(9);
  -webkit-transform: scale(9);
  -webkit-transition: all 2s linear;
  -moz-transition: all 2s linear;
  transition: all 2s linear;
  opacity: 0;
}

.i1 .i1_c1.act .yuan s:nth-child(2) {
  transition-delay: .5s;
  -webkit-transition-delay: .5s;
  opacity: 0;
}

.i1 .i1_c1.act .yuan s:nth-child(3) {
  transition-delay: 1s;
  -webkit-transition-delay: 1s;
  opacity: 0;
}

.i1 .i1_c1.act .img0 {
  opacity: 0;
  transition-delay: 1.5s;
  -webkit-transition-delay: 1.5s;
}

.i1 .i1_c1 .img1 {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: center
}

.i1 .i1_c1 .img1 img {
  opacity: 0;
  width: 4.29%;
  max-width: 80px;
}

.i1 .i1_c1.act .img1 img:nth-child(1) {
  opacity: 1;
  transition-delay: 1.8s;
  -webkit-transition-delay: 1.8s;
}

.i1 .i1_c1.act .img1 img:nth-child(2) {
  opacity: 1;
  transition-delay: 1.9s;
  -webkit-transition-delay: 1.9s;
}

.i1 .i1_c1.act .img1 img:nth-child(3) {
  opacity: 1;
  transition-delay: 2s;
  -webkit-transition-delay: 2s;
}

.i1 .i1_c1.act .img1 img:nth-child(4) {
  opacity: 1;
  transition-delay: 2.1s;
  -webkit-transition-delay: 2.1s;
}

.i1 .i1_c1.act .img1 img:nth-child(5) {
  opacity: 1;
  transition-delay: 2.2s;
  -webkit-transition-delay: 2.2s;
}

.i1 .i1_c1.act .img1 img:nth-child(6) {
  opacity: 1;
  transition-delay: 2.3s;
  -webkit-transition-delay: 2.3s;
}

.i1 .i1_c1.act .img1 img:nth-child(7) {
  opacity: 1;
  transition-delay: 2.4s;
  -webkit-transition-delay: 2.4s;
}

.i1 .i1_c1.act .img1 img:nth-child(8) {
  opacity: 1;
  transition-delay: 2.5s;
  -webkit-transition-delay: 2.5s;
}

.i1 .i1_c1.act .img1 img:nth-child(9) {
  opacity: 1;
  transition-delay: 2.6s;
  -webkit-transition-delay: 2.6s;
}

.i1 .i1_c1.act .img1 img:nth-child(10) {
  opacity: 1;
  transition-delay: 2.7s;
  -webkit-transition-delay: 2.7s;
}

.alltime, .alltime * {
  -webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
  -moz-transition: all .5s cubic-bezier(.4, 0, .2, 1);
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 1800px) {
  .in1 {
    width: 100%;
  }
}

@media (min-width: 1950px) {
  .in1 {
    width: 100%;
  }
}

/* 弹窗 */
.z_tanchuang {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  z-index: 10;
}

.z_tanchuang .tbox {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

/* 弹窗内容 */
.z_tanchuang .tbox .modal {
  background: white;
  padding: 50px;
  display: block;
  border-radius: 5px;
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff url(../images/out.png) center no-repeat;
  background-size: 20px;
  color: #000;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  top: 0;
  right: -50px;
  cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
  background: #fff url(../images/out2.png) center no-repeat;
  background-size: 20px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
  padding: 20px;
}

.z_tanchuang .tbox .modal .img {
  max-width: 1200px;
}

/* 弹窗选中 */
.z_tanchuang.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scaleY(0.01) scaleX(0);
  -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(0);
  -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(1);
  -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */
@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@-webkit-keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}

/* common */
/* header */
.headerSJ {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid #e3e2e1;
}

.header_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.header.active .header_nav {
  height: 80px;
}

.header_nav li {
  margin-left: 42px;
}

.header_nav li > a {
  font-size: 16px;
  line-height: 96px;
  display: block;
  letter-spacing: 1px;
  color: #333333;
  position: relative;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.header.active .header_nav li > a {
  line-height: 80px;
}

.header_nav li > a:hover,
.header_nav li.on > a,
.header_nav li.active > a {
  color: #044eb5;
}

.header_nav li > a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #044eb5;
  opacity: 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.header_nav li > a:hover::after,
.header_nav li.on > a::after,
.header_nav li.active > a::after {
  opacity: 1;
}

.header_nav li .header_nav2 {
  display: none;
  position: fixed;
  top: 97px;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff url(../images/menu_bg.png) left bottom no-repeat;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.header.active .header_nav li .header_nav2 {
  top: 81px;
}

.header_nav li .header_nav2 .container {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

.header_nav li .header_nav2 .left {
}
.header_nav li .header_nav2 .left h4 {
  font-size: 40px;
  font-weight: bold;
  line-height: 42px;
  color: #666666;
}

.header_nav li .header_nav2 .left h6 {
  font-size: 20px;
  font-weight: 100;
  color: #666666;
  opacity: 0.4;
  margin-top: 20px;
}

.header_nav li .header_nav2 .center {
  flex: 1;
  max-width: 400px;
  margin: 0 40px;
}

.header_nav li .header_nav2 .center .h6 {
  font-size: 18px;
  font-weight: 100;
  line-height: 56px;
  color: #666666;
  border-bottom: 1px solid #eeeeee;
  display: block;
  position: relative;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.header_nav li .header_nav2 .center .h6::after {
  content: '';
  border: 2px solid #044eb5;
  border-left: 0;
  border-top: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 8px;
  height: 8px;
  margin: auto;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
}

.header_nav li .header_nav2 .center .h6:hover::after {
  opacity: 1;
}

.header_nav li .header_nav2 .center .h6:hover {
  color: #044eb5;
}

.header_nav li .header_nav2 .right {
  max-width: 42%;
}

.header_nav li .header_nav2 .right img {max-width: 520px;
}
.headeri {
  position: relative;
  padding-right: 108px;
}
.header_search {
  position: absolute;
  right: 48px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  top: 28px;
  background: transparent;
  border-radius: 20px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.header.active .header_search {
  top: 20px;
}
.header_search:hover {
  background: #044eb5;
}
.header_search input {
  background: transparent;
  padding: 0px;
  height: 40px;
  border: 0;
  font-size: 16px;
  color: #fff;
  width: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.header_search:hover input {
  width: 260px;
  padding: 0 20px;
}
.header_search .img_h {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 17px;
}
.header_lang {
  width: 58px;
  text-align: center;
  position: absolute;
  right: 0;
  font-size: 16px;
  line-height: 96px;
  display: block;
  letter-spacing: 1px;
  color: #333333;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  font-family: Arial;
}
.header.active .header_lang {
  line-height: 80px;
}
.header_lang:hover {
  color: #044eb5;
}
/* header */
/* menu */
/* menu */
/* banner */
.banner {
  position: relative;
}
.banner .img_pc {
  width: 100%;
  padding-top: 44.5%;
}
.banner .img_m {
  width: 100%;
  padding-top: 114%;
}

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

.banner .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner .text h4 {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;text-indent: 50px;
}

.banner .text h6 {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;text-indent: 50px;
}

.banner .text a {
  width: 160px;
  height: 48px;
  background-color: #044eb5;
  border-radius: 24px;
  border: solid 1px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 32px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.banner .text a img {
  margin-left: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.banner .text a:hover {
  border-color: #044eb5;
}
.banner .text a:hover img {
  margin-left: 20px;
}

.banner .swiper-slide {
  overflow: hidden;
  position: relative;
}

.banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.banner .swiper-pagination-bullet-active {
  background: #044eb5;
}

.banner2 {
  position: relative;
  overflow: hidden;
}

.banner2_i {
  height: 400px;
  width: 100%;
  position: relative;
  top: 0;
  /*background-attachment: fixed !important;*/
}

.banner2_text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: all .6s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all .6s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all .6s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all .6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner2_text.active {
  top: -100px;
  opacity: 0;
}

.banner2_text h4 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;
}

.banner2_text h6 {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  font-weight: 100;
  margin-top: 10px;
}

.banner2_text a {
  width: 160px;
  height: 48px;
  border-radius: 24px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #044eb5;
  border-radius: 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.banner2_text a img {
  margin-left: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.banner2_text a:hover {
}
.banner2_text a:hover img {
  margin-left: 20px;
}

/* banner */
/* index */
.wrapper {
  overflow: hidden;
  padding-top: 80px;
}

/* index */
/* about */
.about_wrap .about_tit h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 2px;
  color: #333333;
}

.about_wrap .about_tit h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #666666;
  margin-top: 20px;
}








.page1 {
  background: #f7f8fa;
  padding: 120px 0;
}

.page1 .content {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  margin-top: 80px;
}

.page1 .content .img {
  height: 100%;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.page1 .content .text {
  width: 100%;
  padding: 5%;
}

.page1 .content .text img {
}

.page1 .content .text h4 {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin-top: 50px;
}

.page1 .content .text ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.page1 .content .text ul li {
  width: 194px;
  display: flex;
  align-items: center;
  border-right: 1px solid #ddd;
  margin-top: 24px;
  margin-right: 20px;
}

.page1 .content .text ul li:last-child {
  border-right: 0;
  margin-right: 0;
}

.page1 .content .text ul li img {
}

.page1 .content .text ul li h6 {
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  margin-left: 15px;
}























.about1 {
  background: #f7f8fa;
  padding: 120px 0;
}

.about1 .content {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  margin-top: 80px;
}

.about1 .content .img {
  height: 100%;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.about1 .content .text {
  width: 50%;
  padding: 5%;
  padding-top: 0%;
  margin-left: 50%;
}

.about1 .content .text img {
}

.about1 .content .text h4 {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin-top: 0px;
}

.about1 .content .text ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.about1 .content .text ul li {
  width: 194px;
  display: flex;
  align-items: center;
  border-right: 1px solid #ddd;
  margin-top: 24px;
  margin-right: 20px;
}

.about1 .content .text ul li:last-child {
  border-right: 0;
  margin-right: 0;
}

.about1 .content .text ul li img {
}

.about1 .content .text ul li h6 {
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  margin-left: 15px;
}

.about2 {
  padding: 120px 0;
}

.about2 ul {
  margin-top: 2%;
  max-width: 1100px;
}

.about2 ul li {
  margin-bottom: 30px;
}

.about2 ul li h4 {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333333;
}

.about2 ul li h4 img {
  margin-right: 8px;
}

.about2 ul li h6 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #333333;
  margin-top: 10px;
  font-weight: 100;
}

.about3 {
  padding: 50px 0 120px;
}

.about3 ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
}

.about3 ul li {
  flex: 1;
}

.about3 ul li h4 {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: -2px;
  color: #044eb5;
  line-height: 74px;
  text-align: center;
  position: relative;
  font-family: "DIN Alternate";
}

.about3 ul li h4 span {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #333333;
  background: #fff;
  line-height: 32px;
  padding: 0 6px;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.about3 ul li h6 {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #666666;
  text-align: center;
  width: 90%;
  margin: 30px auto 0;
}

.about3 ul li.about3_1 {
}

@keyframes ab3_1Rotate {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

.about3 ul li.about3_1 .box {
  position: relative;
  max-width: 338px;
  margin: 50px auto 0;
  /*animation: ab3_1Rotate 40s infinite linear;*/
}

.about3 ul li.about3_1 .box img {
  display: block;
}

.about3 ul li.about3_1 .box .text {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  width: 48px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: -24px;
  margin-left: -24px;
  /*animation: ab3_1Rotate 40s reverse linear;*/
}

.about3 ul li.about3_1 .box .text1 {
  left: 36%;
  top: 20%;
}

.about3 ul li.about3_1 .box .text2 {
  left: 76%;
  top: 26%;
}

.about3 ul li.about3_1 .box .text3 {
  left: 84%;
  top: 66%;
}

.about3 ul li.about3_1 .box .text4 {
  left: 48%;
  top: 88%;
}

.about3 ul li.about3_1 .box .text5 {
  left: 18%;
  top: 56%;
}

.about3 ul li.about3_2 {
}

.about3 ul li.about3_2 .box {
  position: relative;
  max-width: 428px;
  margin: 50px auto 0;
}

.about3 ul li.about3_2 .box img:nth-child(1) {
}

@keyframes ab3_2Rotate {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  60% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

.about3 ul li.about3_2 .box img:nth-child(2), .about3 ul li.about3_2 .box img:nth-child(3) {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  animation: ab3_2Rotate 2s infinite linear .4s;
}

.about3 ul li.about3_2 .box img:nth-child(3) {
  animation: ab3_2Rotate 2s infinite linear;
}

.about3 ul li.about3_3 {
}

.about3 ul li.about3_3 .box {
  margin-top: 50px;
}

.about3 ul li.about3_3 .box .box_inner {
  width: 90%;
  padding-top: 90%;
  margin: 0 auto;
  position: relative;
}

.about3 ul li.about3_3 .box .big_circle {
  width: 80%;
  max-width: 310px;
  height: 80%;
  max-height: 310px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: solid 56px rgba(4, 78, 181, 0.1);
}

.about3 ul li.about3_3 .box .small_circle {
  width: 56%;
  height: 56%;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 1px;
  color: #ffffff;
  background: #044eb5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
  margin-left: -28%;
  margin-top: -28%;
}

.about3 ul li.about3_3 .box .small_circle1 {
  left: 0%;
  top: 0%;
}

.about3 ul li.about3_3 .box .small_circle2 {
  left: 100%;
  top: 0%;
}

.about3 ul li.about3_3 .box .small_circle3 {
  left: 110%;
  top: 72%;
}

.about3 ul li.about3_3 .box .small_circle4 {
  left: 50%;
  top: 112%;
}

.about3 ul li.about3_3 .box .small_circle5 {
  left: -8%;
  top: 72%;
}

.about4 {
  padding: 140px 0;
}

.about4 .common_tit h4 {
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  font-size: 30px;
}

.about4 .common_tit h4 img {
  margin-right: 12px;
}

.about4 .common_tit h6 {
  color: #fff;
}

.about5 {
  padding: 120px 0 100px;
}

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

.about5 .content .left {
  width: 40%;
}

.about5 .content .left ul {
  display: flex;
  flex-wrap: wrap;
}

.about5 .content .left ul li {
  min-width: 50%;
  margin-top: 50px;
}

.about5 .content .left ul li h4 {
  font-size: 18px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #333333;
}

.about5 .content .left ul li h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 1px;
  color: #044eb5;
}

.about5 .content .left ul li h6 span {
  font-family: "DIN Alternate";
  font-size: 80px;
  line-height: 80px;
}

.about5 .content .right {
  width: 50%;
  padding-bottom: 50%;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #ffffff 0%, #f2f2f2 100%);
  box-shadow: -20px 0px 40px 0px rgba(15, 41, 76, 0.02);
  position: relative;
}

.about5 .content .right .text0 {
  position: absolute;
  width: 58%;
  height: 58%;
  right: 7%;
  top: 21%;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #ffffff 0%, #f2f2f2 100%);
  box-shadow: -20px 0px 40px 0px rgba(15, 41, 76, 0.02);
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}

.about5 .content .right .text1 {
  position: absolute;
  top: 32%;
  left: -30%;
  width: 56%;
  height: 32%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}

.about5 .content .right .text1 h4 {
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #ffffff;
}

.about5 .content .right .text1 h4 span {
  font-size: 40px;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 2px;
}

.about5 .content .right .text2 {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 10px 20px 0px rgba(15, 41, 76, 0.05);
  border-radius: 8px;
  padding: 28px;
  left: 20%;
  top: 10%;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}

.about5 .content .right .text2 h4 {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #333333;
}

.about5 .content .right .text2 h6 {
  background-image: linear-gradient(90deg, #00cdff 0%, #0055cb 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 28px;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 1px;
}

.about5 .content .right .text3 {
  left: 42%;
  top: 40%;
}

.about5 .content .right .text4 {
  left: 20%;
  top: 74%;
}

.about5 .content .right .text5 {
  left: -12%;
  top: 64%;
}


.about5 .content .right .text6 {
  left: 72%;
  top: 64%;
}


.about5 .content .right .text7 {
  left: 1%;
  top: 36%;
}



/* about */
/* contact */
.contact_wrap .banner2_text {
  margin-top: -70px;
}

.contact1 {
  max-width: 1600px;
  width: 90%;
  margin: -150px auto 0;
  height: 460px;
  position: relative;
  z-index: 9;
  border-radius: 8px;
  overflow: hidden;
}

.contact1 .left {
  width: 47.5%;
  min-width: 620px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(4, 78, 181, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4%;
}

.contact1 .left2 {
  width: 47.5%;
  min-width: 620px;
  height: 100%;
  position: absolute;
  right: 144px;
  top: 0;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4%;
}

.contact1 .left ul {
  display: flex;
  flex-wrap: wrap;
}

.contact1 .left ul li {
  width: 50%;
}

.contact1 .left ul li h4 {
  font-size: 16px;
  font-weight: 100;
  line-height: 32px;
  letter-spacing: 1px;
  color: #ffffff;
}

.contact1 .left ul li h6 {
  font-family: Arial;
  font-size: 30px;
  font-weight: bold;
  line-height: 32px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-top: 10px;
}

.contact1 .left h5 {
  font-size: 16px;
  font-weight: 100;
  line-height: 50px;
  letter-spacing: 1px;
  color: #ffffff;
}

.contact2 {
  max-width: 1600px;
  width: 90%;
  margin: 80px auto;
}

.contact2 h4 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333333;
}

.contact2 .layui-form {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

.contact2 .layui-form .layui-form-text {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e1e7f0;
  padding: 10px 0;
  margin-right: 50px;
  width: calc(33.3% - 33.3px);
}

.contact2 .layui-form .layui-form-text:nth-child(3n) {
  margin-right: 0;
}

.contact2 .layui-form .layui-form-text .layui-form-label {
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 1px;
  color: #666666;
  padding: 0;
  width: auto;
  border-right: 1px solid #e1e7f0;
  padding-right: 18px;
}

.contact2 .layui-form .layui-input-inline {
  margin: 0;
  display: flex;
  align-items: center;
  width: auto;
}

.contact2 .layui-form .layui-input-inline input[type="text"] {
  border: 0;
  padding: 0 20px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #666666;
}

.contact2 .layui-form .layui-form-radios {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact2 .layui-form .layui-form-radios .layui-form-label {
  font-size: 16px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #666666;
  width: auto;
  padding: 0;
}

.contact2 .layui-form .layui-form-radios {
  margin: 0;
  padding: 0;
}

.contact2 .layui-form .layui-input-inline input[type="radio"] {
  display: block;
}

.contact2 .layui-form .layui-input-inline .layui-icon {
  display: none;
}

.contact2 .layui-form .layui-input-inline .layui-form-radio {
  font-size: 16px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 40px 0 10px;
  padding: 0;
}

.contact2 .layui-form .layui-input-inline .layui-form-radio:hover *, .contact2 .layui-form .layui-input-inline .layui-form-radioed {
  color: #666666;
}

.contact2 .layui-form .layui-form-button {
  width: 100%;
  margin-top: 60px;
}

.contact2 .layui-form .layui-form-button .layui-btn {
  width: 380px;
  height: 56px;
  background-color: #044eb5;
  border-radius: 28px;
  margin: 0 auto;
  display: block;
}

/* contact */
.cooperation1 {
  margin: 120px auto;
}

.cooperation1 h3 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  text-align: center;
  color: #333333;
  max-width: 1100px;
  margin: 40px auto 0;
}

.cooperation1 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.cooperation1 ul li {
  margin: 0 40px;
}

.cooperation1 ul li h4 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #333333;
}

.cooperation1 ul li h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: #666666;
  margin-top: 20px;
}

.cooperation1 ul li h6 span {
  font-size: 50px;
}

.cooperation2 {
  padding: 120px 0;
  background: #f7f8fa;
}

.cooperation2 h3 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #333333;
  text-align: center;
  margin-top: 40px;
}

.cooperation2 h5 {
  margin-top: 20px;
}

.cooperation2 h5 a {
  line-height: 30px;
  color: #00cdff;
  text-decoration: underline;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.cooperation2 h5 a {
  opacity: .8;
}

.cooperation2 h5 img {
  margin-right: 6px;
}

.cooperation2 ul {
  margin-top: 60px;
  position: relative;
}

.cooperation2 ul li {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cooperation2 ul li:nth-of-type(1) {
  left: 8%;
  top: 36%;
}

.cooperation2 ul li:nth-of-type(2) {
  left: 20%;
  top: 70%;
}

.cooperation2 ul li:nth-of-type(3) {
  left: 32%;
  top: 70%;
}

.cooperation2 ul li:nth-of-type(4) {
  left: 44%;
  top: 46%;
}

.cooperation2 ul li:nth-of-type(5) {
  left: 56%;
  top: 22%;
}

.cooperation2 ul li:nth-of-type(6) {
  left: 68%;
  top: 10%;
}

.cooperation2 ul li:nth-of-type(7) {
  left: 80%;
  top: 14%;
}

.cooperation2 ul li:nth-of-type(8) {
  left: 92%;
  top: 44%;
}

.cooperation2 ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cooperation2 ul li h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  color: #666666;
  padding-top: 28px;
  position: relative;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.cooperation2 ul li h4::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #e5e5e5;
  border: solid 2px #999999;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.cooperation2 ul li a:hover h4 {
  color: #044eb5;
}

.cooperation2 ul li a:hover h4::before {
  background-color: #cddcf0;
  border: solid 2px #044eb5;
}

.cooperation3 {
  margin: 120px auto;
}

.cooperation3 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  background-color: #ffffff;
  box-shadow: 5px 9px 30px 0px rgba(51, 51, 51, 0.05);
  border-radius: 8px;
  border: solid 1px #e6ecf2;
  padding: 5%;
}

.cooperation3 .left {
  width: 60%;
  padding-right: 6%;
}

.cooperation3 .left .text {
}

.cooperation3 .left .text .inner {
  display: none;
}

.cooperation3 .left .text .inner h4 {
  font-size: 28px;
  font-weight: bold;
  line-height: 30px;
  color: #333333;
  padding-right: 100px;
  position: relative;
}
.cooperation3 .left .text .inner h4 a {
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.cooperation3 .left .text .inner h4 .a {
  font-size: 16px;
  font-weight: 100;
  color: #666666;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
}
.cooperation3 .left .text .inner h4 .a:hover {
  text-decoration: underline;
}
.cooperation3 .left .text .inner h4 .a img {
  margin-left: 8px;
}

.cooperation3 .left .text .inner h5 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #333333;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.cooperation3 .left .text .inner h5 img {
  margin-right: 8px;
}

.cooperation3 .left .text .inner h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #333333;
  margin-top: 24px;
}

.cooperation3 .left .btns_wrap {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cooperation3 .left .btns {
  display: flex;
}

.cooperation3 .left .btns .nextButton {
  margin-left: 20px;
  transform: rotateZ(180deg);
}
.cooperation3 .left .img {
  margin-left: 20px;
}

.cooperation3 .right {
  width: 40%;
}

.cooperation3 .right .swiper-slide {
  position: relative;
  padding: 20px 20px 0 0;
}

.cooperation3 .right .swiper-slide::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background-color: #044eb5;
  border-radius: 8px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

.cooperation3 .right .swiper-slide img {
  border-radius: 8px;
  position: relative;
  -webkit-transition: all .3s ease .3s;
  -moz-transition: all .3s ease .3s;
  -ms-transition: all .3s ease .3s;
  -o-transition: all .3s ease .3s;
  transition: all .3s ease .3s;
  -webkit-transform: translate(20px, -20px);
  -moz-transform: translate(20px, -20px);
  -ms-transform: translate(20px, -20px);
  -o-transform: translate(20px, -20px);
  transform: translate(20px, -20px);
}

.cooperation3 .right .swiper-slide-active img {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.cooperation4 {
  margin: 120px auto;
  padding: 120px 0;
  height: 1050px;
  background-color: #f7f8fa;
}

.cooperation4 .content {
  background: url(../images/coop4.png) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 120px 30px 90px;
  border-radius: 8px;
  margin-top: 40px;
}

.cooperation4 .content .left {
  font-size: 28px;
  line-height: 58px;
  color: #ffffff;
}

.cooperation4 .content .left span {
  color: #00ccff;
}

.cooperation4 .content .left em {
  width: 40px;
  height: 3px;
  background-color: #ffffff;
  display: block;
}

.cooperation4 .content .right {
}

.cooperation4 .content .right .ewm {
  position: relative;
}

.cooperation4 .content .right .ewm img:nth-child(1) {
}

.cooperation4 .content .right .ewm img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 104px;
}

.cooperation4 .content .right h6 {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  margin-top: 12px;
}

.cooperation5 {
  margin: -550px auto 120px;
}

.cooperation5 .container {
  border-radius: 8px;
  box-shadow: 5px 9px 30px 0px rgba(51, 51, 51, 0.05);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.cooperation5 .left {
  width: 470px;
  height: 570px;
  background: url(../images/coop5.png) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 50px;
}

.cooperation5 .left .inner {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
}

.cooperation5 .left h5 {
  font-size: 24px;
  font-weight: bold;
  line-height: 26px;
  letter-spacing: 1px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.cooperation5 .left h5 img {
  margin-right: 8px;
}

.cooperation5 .left h6 {
  font-family: Arial;
  font-size: 54px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
}

.cooperation5 .right {
  padding: 36px 70px;
  flex: 1;
}

.cooperation5 .right h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 50px;
  letter-spacing: 1px;
  color: #333333;
  text-align: center;
}

.cooperation5 .right .layui-form {
  margin-top: 40px;
}

.cooperation5 .right .layui-form .layui-form-wrap {
  display: flex;
  flex-wrap: wrap;
}

.cooperation5 .right .layui-form .layui-form-item {
  margin: 0;
  display: flex;
}

.cooperation5 .right .layui-form .layui-form-w24 {
  width: 24%;
  margin-right: 2%;
  height: 58px;
  border-bottom: 1px solid #e1e7f0;
  align-items: center;
}

.cooperation5 .right .layui-form .layui-form-w48 {
  width: 48%;
  height: 58px;
  border-bottom: 1px solid #e1e7f0;
  align-items: center;
}

.cooperation5 .right .layui-form .layui-form-w100 {
  width: 100%;
}

.cooperation5 .right .layui-form .layui-form-label {
}

.cooperation5 .right .layui-form .layui-form-label .required {
  color: #e60000;
  width: 8px;
  min-height: 1px;
}

.cooperation5 .right .layui-form .layui-form-w24 .layui-form-label, .cooperation5 .right .layui-form .layui-form-w48 .layui-form-label {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #666666;
  width: 66px;
  display: flex;
  align-items: center;
  height: 18px;
  border-right: 1px solid #e1e7f0;
  padding: 0;
}

.cooperation5 .right .layui-form .layui-form-w24 .layui-input-inline, .cooperation5 .right .layui-form .layui-form-w48 .layui-input-inline {
  flex: 1;
}

.cooperation5 .right .layui-form .layui-form-w24 .layui-input-inline input[type="text"], .cooperation5 .right .layui-form .layui-form-w48 .layui-input-inline input[type="text"] {
  border: 0;
  padding: 0 20px;
}

.cooperation5 .right .layui-form .layui-form-w24 .layui-input-inline input[type="text"]::placeholder, .cooperation5 .right .layui-form .layui-form-w48 .layui-input-inline input[type="text"]::placeholder {
  color: #999;
}

.cooperation5 .right .layui-form .layui-form-w48 .line {
  width: 1px;
  height: 18px;
  background: #e1e7f0;
}

.cooperation5 .right .layui-form .layui-form-textarea {
  margin-top: 40px;
}

.cooperation5 .right .layui-form .layui-form-textarea .layui-form-label {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #666666;
  width: 66px;
  display: flex;
  align-items: center;
  height: 18px;
  padding: 0;
  margin-top: 20px;
}

.cooperation5 .right .layui-form .layui-form-textarea .layui-input-inline {
  margin: 0;
  flex: 1;
}

.cooperation5 .right .layui-form .layui-form-textarea .layui-input-inline textarea {
  padding: 20px;
  height: 120px;
  resize: none;
}

.cooperation5 .right .layui-form .layui-form-textarea .layui-input-inline textarea::placeholder {
  color: #999;
}

.cooperation5 .right .layui-form .layui-form-radios {
  margin: 0;
  padding: 0;
  margin-top: 40px;
}

.cooperation5 .right .layui-form .layui-form-radios .layui-input-inline {
  margin: 0;
  flex: 1;
}

.cooperation5 .right .layui-form .layui-form-radios .layui-input-inline .radio-group {
  width: 100%;
  display: flex;
  align-items: center;
}

.cooperation5 .right .layui-form .layui-form-radios .layui-input-inline h6 {
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #666666;
}

.cooperation5 .right .layui-form .layui-input-inline input[type="radio"] {
  display: block;
}

.cooperation5 .right .layui-form .layui-input-inline .layui-icon {
  display: none;
}

.cooperation5 .right .layui-form .layui-input-inline .layui-form-radio {
  font-size: 16px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 40px 0 10px;
  padding: 0;
}

.cooperation5 .right .layui-form .layui-input-inline .layui-form-radio:hover *, .cooperation5 .right .layui-form .layui-input-inline .layui-form-radioed {
  color: #666666;
}

.cooperation5 .right .layui-form .layui-btn {
  width: 380px;
  height: 56px;
  background-color: #044eb5;
  border-radius: 28px;
  margin: 18px auto 0;
  display: block;
}

#formModal .cooperation5 {
  margin: 0;
  max-width: 580px;
  width: 90vw;
}

#formModal .cooperation5 .right .layui-form .layui-form-w24, #formModal .cooperation5 .right .layui-form .layui-form-w48 {
  margin: 0;
  width: 100%;
}

#formModal .cooperation5 .right .layui-form .layui-form-radios .layui-form-label {
  display: none;
}

.dealer1 {
  margin: 120px 0;
}

.dealer1 .content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 180px;
}

.dealer1 .img {
  width: 22%;
  max-width: 380px;
  position: relative;
  z-index: 3;
}

.dealer1 .img2 {
  z-index: 1;
  margin-left: -5.6%;
}

.dealer1 .img img {
  animation: ab3_1Rotate 40s infinite linear;
}

.dealer1 .img2 img {
  animation: ab3_1Rotate 40s infinite linear;
}

.dealer1 .img .text {
  width: 64%;
  height: 64%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #044eb5;
  font-size: 22px;
  font-weight: bold;
  line-height: 36px;
  color: #ffffff;
  padding: 28px;
  text-align: center;
  z-index: 9;
}

.dealer1 .img2 .text {
  background-color: #00cdff;
  font-size: 28px;
  line-height: 48px;
  letter-spacing: 1px;
  word-break: keep-all;
}

.dealer1 .img .block {
  position: absolute;
  width: 480px;
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dealer1 .img .block .line_1 {
  width: 44px;
  height: 1px;
  background: #044eb5;
  right: 0;
  top: 30px;
  position: absolute;
  z-index: 5;
}

.dealer1 .img .block .line_2 {
  position: absolute;
  background-color: #044eb5;
  height: 1px;
  top: 30px;
  right: auto;
  left: 100%;
  transform-origin: top left;
}

.dealer1 #dealer1Content .img .block .line_1 {
  width: 0%;
  -webkit-transition: width .3s linear 1.5s;
  -moz-transition: width .3s linear 1.5s;
  -ms-transition: width .3s linear 1.5s;
  -o-transition: width .3s linear 1.5s;
  transition: width .3s linear 1.5s;
}

.dealer1 #dealer1Content .img .block .line_2 {
  opacity: 0;
  -webkit-transition: opacity .3s linear 1s;
  -moz-transition: opacity .3s linear 1s;
  -ms-transition: opacity .3s linear 1s;
  -o-transition: opacity .3s linear 1s;
  transition: opacity .3s linear 1s;
}

.dealer1 #dealer1Content .img .block .num,
.dealer1 #dealer1Content .img .block .name,
.dealer1 #dealer1Content .img .block .desc {
  opacity: 0;
  -webkit-transition: opacity .3s ease 2s;
  -moz-transition: opacity .3s ease 2s;
  -ms-transition: opacity .3s ease 2s;
  -o-transition: opacity .3s ease 2s;
  transition: opacity .3s ease 2s;
}

.dealer1 #dealer1Content.active .img .block .line_1 {
  width: 44px;
}

.dealer1 #dealer1Content.active .img .block .line_2,
.dealer1 #dealer1Content.active .img .block .num,
.dealer1 #dealer1Content.active .img .block .name,
.dealer1 #dealer1Content.active .img .block .desc {
  opacity: 1;
}

.dealer1 .img .block .num {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #044eb5;
  border: solid 4px #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 52px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;
  z-index: 3;
  right: 40px;
  top: -1px;
}

.dealer1 .img .block .name {
  height: 46px;
  background-color: #044eb5;
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 1px;
  color: #ffffff;
  border-radius: 4px;
  padding: 0 42px 0 30px;
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  transform: skewX(20deg);
}

.dealer1 .img .block .name em {
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
  font-style: normal;
  display: block;
}

.dealer1 .img .block .desc {
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #044eb5;
  padding: 30px;
  width: 410px;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin-top: 3px;
}

.dealer1 .img .block1 {
  right: 100%;
  top: -10%;
}

.dealer1 .img .block1 .line_2 {
  width: 250px;
  -webkit-transform: rotate(50deg);
  -moz-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  -o-transform: rotate(50deg);
  transform: rotate(50deg);
}

.dealer1 .img .block2 {
  right: 100%;
  top: 50%;
}

.dealer1 .img .block2 .line_2 {
  width: 90px;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

.dealer1 .img .block3 {
  right: 100%;
  top: 110%;
}

.dealer1 .img .block3 .line_2 {
  width: 140px;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.dealer1 .img .block4 {
  right: auto;
  left: 100%;
  top: -10%;
  padding-left: 70px;
  padding-right: 0px;
  align-items: flex-start;
}

.dealer1 .img .block4 .line_1 {
  right: auto;
  left: 0;
  background-color: #00cdff;
}

.dealer1 .img .block4 .line_2 {
  width: 280px;
  right: 100%;
  left: auto;
  background-color: #00cdff;
  transform-origin: top right;
  -webkit-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.dealer1 .img .block4 .num {
  background: #00cdff;
  left: 40px;
  right: auto;
}

.dealer1 .img .block4 .name {
  background-color: #00cdff;
  padding: 0 30px 0 42px;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.dealer1 .img .block4 .name em {
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  transform: skewX(20deg);
}

.dealer1 .img .block4 .desc {
  border-color: #00cdff;
}
.dealer1 .img .block5 {
  top: 70%;
}

.dealer1 .img .block5 .line_2 {
  width: 130px;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.dealer1 .img .block6 {
  top: 145%;
}

.dealer1 .img .block6 .line_2 {
  width: 240px;
  -webkit-transform: rotate(50deg);
  -moz-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  -o-transform: rotate(50deg);
  transform: rotate(50deg);
}

.dealer2 {
  margin: 320px 0 120px;
}

.dealer2 ul {
}

.dealer2 ul > li {
  margin: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealer2 .text {
  width: 50%;
  position: relative;
  z-index: 3;
  padding-left: 120px;
}

.dealer2 .text h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  letter-spacing: 1px;
  color: #386cbf;
  margin-top: 40px;
}

.dealer2 .text h3 {
  font-family: Arial;
  font-size: 120px;
  font-weight: bold;
  letter-spacing: -5px;
  color: #044eb5;
  margin-left: -120px;
}

.dealer2 .text h3::after {
  content: '';
  background: #044eb5;
  opacity: .2;
  height: 1px;
  width: 240px;
  display: block;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
  margin: 20px 0;
}

.dealer2 .text h4 {
  font-size: 50px;
  letter-spacing: 2px;
  color: #333333;
}

.dealer2 .text h6 {
  font-size: 20px;
  font-weight: 100;
  color: #333333;
  opacity: 0.4;
  margin-top: 10px;
}

.dealer2 .text h5 {
  font-size: 16px;
  font-weight: 100;
  line-height: 32px;
  color: #333333;
  margin-top: 40px;
}

.dealer2 .text h5 span {
  font-size: 18px;
  font-weight: bold;
  color: #044eb5;
}

.dealer2 .text ol {
  margin-top: 10px;
}

.dealer2 .text ol li {
  font-size: 16px;
  font-weight: 100;
  line-height: 40px;
  color: #333333;
}

.dealer2 .img {
  width: 50%;
  -webkit-transform: translateX(calc(50vw - 100%));
  -moz-transform: translateX(calc(50vw - 100%));
  -ms-transform: translateX(calc(50vw - 100%));
  -o-transform: translateX(calc(50vw - 100%));
  transform: translateX(calc(50vw - 100%));
}

.dealer2 ul > li:nth-child(2n) .img {
  order: -1;
  -webkit-transform: translateX(calc(100% - 50vw));
  -moz-transform: translateX(calc(100% - 50vw));
  -ms-transform: translateX(calc(100% - 50vw));
  -o-transform: translateX(calc(100% - 50vw));
  transform: translateX(calc(100% - 50vw));
}

.dealer3 {
  background: #f7f8fa;
  padding: 120px 0;
}

.dealer4 {
  margin: 120px 0;
}

.dealer4 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.dealer4 .left {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.dealer4 .right {
  margin-left: 50%;
  width: 50%;
  padding: 80px 100px;
}

.dealer4 .right ul {
}

.dealer4 .right ul li {
  font-size: 20px;
  line-height: 34px;
  color: #333333;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.dealer4 .right ul li:first-child {
  margin-top: 0;
}

.dealer4 .right ul li img {
  margin-right: 14px;
}

.dealer5 {
  padding: 120px 0;
  height: 1074px;
  background-color: #f7f8fa;
}

.dealer5 .container {
  margin-top: 50px;
}

.dealer5 .container ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dealer5 .container ul li:nth-child(2n + 1) {
  position: relative;
  width: 220px;
  height: 300px;
  padding-top: 70px;
  background-color: #ffffff;
  border-radius: 8px;
  border: solid 1px #e6ecf2;
}

.dealer5 .container ul li:nth-child(2n) {
  width: 20px;
  margin: 0 16px;
}
.dealer5 .container ul li:last-child {
  display: none;
}

.dealer5 .container ul li:nth-child(2n + 1) img:nth-child(1) {
  position: absolute;
  top: 20px;
  left: -8px;
}

.dealer5 .container ul li:nth-child(2n + 1) img:nth-child(2) {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.dealer5 .container ul li:nth-child(2n + 1):hover img:nth-child(2) {
  -webkit-transform: scale(1.02) rotate(6deg);
  -moz-transform: scale(1.02) rotate(6deg);
  -ms-transform: scale(1.02) rotate(6deg);
  -o-transform: scale(1.02) rotate(6deg);
  transform: scale(1.02) rotate(6deg);
}

.dealer5 .container ul li span {
  position: absolute;
  top: 20px;
  left: 0;
  padding-left: 4px;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.dealer5 .container ul li h6 {
  margin-top: 30px;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.dealer5 .container ul li:nth-child(2n + 1):hover h6 {
  color: #044eb5;
}

.dealer6 {
  margin-top: -400px;
}

.join1 {
  margin: 100px auto 48px;
}

.join1 .container {
  display: flex;
  position: relative;
  padding: 72px 0;
  margin-top: 20px;
}

.join1 .container .item {
  position: relative;
}

.join1 .container .item::before {
  content: '';
  border-top: 1px dashed #044eb5;
  top: 50%;
  left: 113%;
  width: 20%;
  position: absolute;
}

.join1 .container .item:nth-child(2) {
  margin-top: 28%;
}

.join1 .container .item h4 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333333;
}

.join1 .container .item h5 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #333333;
  margin-top: 40px;
}

.join1 .container .item h6 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
}

.join1 .container .item img {
  margin-top: 20px;
}

.join1 .left {
  padding-right: 12.5%;
  width: 50%;
}

.join1 .right {
  padding-left: 12.5%;
  width: 50%;
}

.join1 .right .item::before {
  right: 113%;
  left: auto;
}

.join1 .line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  border-left: 1px dashed #044eb5;
}

.join1 .line::before {
  content: '';
  width: 24px;
  height: 24px;
  background-color: #044eb5;
  opacity: 0.2;
  position: absolute;
  left: -12px;
  top: -5px;
  border-radius: 50%;
}

.join1 .line::after {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #044eb5;
  position: absolute;
  left: -7px;
  top: 0;
  border-radius: 50%;
}

.join2 .container {
  margin-top: 40px;
}

.join2 .swiper {
  margin: 80px auto 120px;
}

.join2 .swiper-container {
  width: 80%;
}

.join3 {
  padding: 80px 0;
}

.join3 h4 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #ffffff;
  max-width: 750px;
}

.join4 {
  margin: 100px auto;
}

.join4 .product_nav {
  margin-top: 30px;
}

.join4 .top {
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 80px;
}

.join4 .top .left {
  width: 46%;
  padding-right: 40px;
}

.join4 .top .left h4 {
  font-size: 30px;
  font-weight: bold;
  color: #333333;
}

.join4 .top .left h6 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
}

.join4 .top .right {
  width: 54%;
  height: 260px;
  border-radius: 8px;
}

.join4 .bot {
  margin-top: 40px;
}

.join4 .bot .item {
  padding: 40px 28px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.join4 .bot .item:hover {
  background: url(../images/join4_bg.png) right bottom / contain no-repeat;
  box-shadow: 0px 4px 20px 0px rgba(15, 41, 76, 0.06);
}

.join4 .bot .item .left {
  flex: 1;
}
.join4 .bot .item .left h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: #333333;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.join4 .bot .item:hover .left h4 {
  color: #044eb5;
}

.join4 .bot .item .left h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  margin-top: 20px;
}

.join4 .bot .item .right {
  text-align: right;
  width: 180px;
}

.join4 .bot .item .right h5 {
  font-size: 16px;
  font-weight: 100;
  line-height: 40px;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.join4 .bot .item .right h5 img {
  margin-right: 8px;
}

.join_detail_top ._top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.join_detail_top .left {
}

.join_detail_top .left .tit {
  text-align: left;
}

.join_detail_top .left .items {
  display: flex;
  margin-top: 10px;
}

.join_detail_top .left .items span {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  display: flex;
  align-items: center;
  margin-right: 26px;
}

.join_detail_top .left .items span img {
}

.join_detail_top .right {
}

.join_detail_top .right a {
  display: block;
  width: 160px;
  height: 48px;
  border-radius: 24px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #044eb5;
  border-radius: 24px;
}

.join_detail_top .right .time {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #999999;
  margin-top: 20px;
  text-align: right;
}

.join_detail_top ._bot {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.join_detail_top ._bot span {
  font-size: 16px;
  font-weight: 100;
  line-height: 28px;
  color: #044eb5;
  height: 28px;
  background-color: rgba(4, 78, 181, 0.1);
  padding: 0 10px;
  margin-top: 10px;
  margin-right: 10px;
}

.join_detail .content h4 {
  font-size: 22px;
  font-weight: bold;
  line-height: 26px;
  letter-spacing: 1px;
  color: #333333;
  margin-bottom: 24px;
}

.marketing1 {
  margin: 100px auto;
}

.marketing1 .layui-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.marketing1 .layui-form .line {
  width: 1px;
  height: 18px;
  background: #e1e7f0;
}

.marketing1 .layui-form .layui-form-item {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e1e7f0;
  height: 48px;
}

.marketing1 .layui-form .layui-form-label {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #666666;
  width: 66px;
  display: flex;
  align-items: center;
  height: 18px;
  border-right: 1px solid #e1e7f0;
  padding: 0;
}

.marketing1 .layui-form .layui-input-inline {
  flex: 1;
}

.marketing1 .layui-form .layui-input-inline input[type="text"] {
  border: 0;
  padding: 0 20px;
}

.marketing1 .layui-form .layui-input-inline input[type="text"]::placeholder {
  color: #999;
}

.marketing1 .layui-form .layui-btn {
  width: 150px;
  height: 48px;
  background-color: #044eb5;
  border-radius: 24px;
  margin-left: 50px;
}

.marketing1 .layui-form .layui-btn img {
  width: 16px;
  margin-right: 4px;
}

.marketing1 .content {
  border-top: 1px solid #e1e7f0;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.marketing1 .content a {
  background-color: #ffffff;
  border-radius: 8px;
  border: solid 1px #e6ecf2;
  margin-right: 3.5%;
  margin-top: 3.5%;
  width: 31%;
  padding: 2% 3%;
  position: relative;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.marketing1 .content a:hover {
  box-shadow: 5px 9px 30px 0px rgba(51, 51, 51, 0.05);
}

.marketing1 .content a:nth-child(3n) {
  margin-right: 0;
}

.marketing1 .content a h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 50px;
  color: #333333;
  margin-bottom: 10px;
}

.marketing1 .content a h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #333333;
  position: relative;
  padding-left: 60px;
}

.marketing1 .content a h6 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  text-align: justify;
}

.marketing1 .content a h6::before {
  content: '：';
  position: absolute;
  top: 0;
  left: 48px;
}

.marketing1 .content a h6 span::after {
  content: '';
  width: 100%;
  display: inline-block;
}

.marketing1 .content a em {
  font-style: normal;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #044eb5;
  position: absolute;
  right: 10%;
  bottom: 5%;
  display: flex;
  align-items: center;
}

.marketing1 .content a em img {
  margin-left: 6px;
}

.marketing2 {
  padding: 100px 0;
  background: #f7f8fa url(../images/market2_bg.png) left bottom / contain no-repeat;
}

.marketing2 .common_tit h6 {
  font-size: 32px;
}

.marketing2 .content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.marketing2 .content .left {
  width: 50%;
  padding-left: 10%;
  padding-right: 40px;
  margin: -80px 0;
}

.marketing2 .content .left .item {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #ffffff;
  height: 90px;
  margin: 80px 0;
  display: flex;
  align-items: center;
  padding-left: 70px;
  padding-right: 20px;
  position: relative;
  height: 70px;
  background-image: linear-gradient(-90deg, #044eb5 0%, #0095ff 100%);
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.marketing2 .content .left .item > * {
  -webkit-transform: skewX(15deg);
  -moz-transform: skewX(15deg);
  -ms-transform: skewX(15deg);
  -o-transform: skewX(15deg);
  transform: skewX(15deg);
}

.marketing2 .content .left .item em {
  width: 120px;
  height: 120px;
  background: #f7f8fa;
  border-radius: 50%;
  left: -70px;
  bottom: -10px;
  position: absolute;
}
.marketing2 .content .left .item .img {
  width: 100px;
  height: 100px;
  background: #fff;
  box-shadow: 4px 7px 20px 0px rgba(15, 41, 76, 0.1), inset 1px 2px 0px 0px #ffffff;
  border-radius: 50%;
  position: absolute;
  left: -60px;
  bottom: 0;
}

.marketing2 .content .right {
  width: 50%;
  padding-left: 40px;
}

.marketing2 .content .right h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  color: #333333;
}

.marketing2 .content .right h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #666666;
  margin-top: 20px;
}

.marketing3 {
  margin: 120px auto;
}

.marketing3 .container {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketing3 .container .item {
  height: 320px;
  border-radius: 8px;
  width: 46%;
  padding: 40px;
}

.marketing3 .container .item h4 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;
}

.marketing3 .container .item h6 {
  font-size: 18px;
  font-weight: 100;
  color: #ffffff;
  margin-top: 20px;
  line-height: 30px;
  height: 30px;
}

.marketing3 .container .item .as {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.marketing3 .container .item .as a {
  width: 110px;
  height: 110px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.marketing3 .container .item .as a:hover {
  -webkit-transform: scale(1.18);
  -moz-transform: scale(1.18);
  -ms-transform: scale(1.18);
  -o-transform: scale(1.18);
  transform: scale(1.18);
}

.marketing3 .container .item .as a img {
  max-width: 138px;
  margin-left: -14px;
  margin-top: -10px;
  display: block;
}

.marketing4 {
  padding: 0px 0;
  background1: rgba(255, 255, 255, 0.5);
  
}

.marketing4 .content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.marketing4 .content .item {
  margin-right: 3.5%;
  width: 31%;
  margin-top: 20px;
  background-color: rgba(1, 71, 166, 1);
    border-radius: 60px 0px 60px 0px;
}
.marketing4 .content .item:hover {
  background-color: #E50012;

}

.marketing4 .content .item:nth-child(3n) {
  margin-right: 0;
}

.marketing4 .content .item .img {
  overflow: hidden;
  border-radius: 8px;
}

.marketing4 .content .item .img .inner {
  padding-top: 62.5%;
  margin: 0 auto;
    width: 90%;
    text-align: center;
    margin-top: 40px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.marketing4 .content .item .img:hover1 .inner {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.marketing4 .content .item .text {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing4 .content .item .text h6 {
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
  color: #fff;
  text-align: center;
}

.marketing5 {
  margin: 100px auto;
}

.marketing5 .container {
}

.marketing5 .container h4 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  text-align: center;
  margin-top: 50px;
}

.marketing5 .container h4 span {
  font-family: "DIN Alternate";
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  color: #00cdff;
}

.marketing5 .container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.marketing5 .container ul li {
  text-align: center;
  margin: 0 40px;
}

.marketing5 .container ul li h5 {
  font-family: "DIN Alternate";
  font-size: 40px;
  font-weight: bold;
  line-height: 30px;
  color: #666666;
}

.marketing5 .container ul li h5 span {
  font-size: 80px;
}

.marketing5 .container ul li h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  margin-top: 10px;
}

.marketing5 .content {
  display: flex;
  flex-wrap: wrap;
}

.marketing5 .content .swiper-wrapper {
  flex-wrap: wrap;
}

.marketing5 .content .item {
  border-radius: 4px;
  border: solid 1px #eeeeee;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  background: #fff;
  margin-top: 40px;
  width: 14%;
  margin-right: 3.2%;
}

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

.marketing5 .content .item:hover {
  box-shadow: 2px 4px 30px 0px rgba(15, 41, 76, 0.1);
}

.news {
  margin: 80px auto;
}

.news .content {
  display: flex;
  flex-wrap: wrap;
}

.news .content a {
  margin-right: 39px;
  margin-top: 40px;
  width: calc(33.33% - 26px);
  background: #f7f8fa;
  overflow: hidden;
  border-radius: 8px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.news .content a:hover {
  background: #044eb5;
}

.news .content a:nth-child(-n + 3) {
  margin-top: 0;
}

.news .content a:nth-child(3n) {
  margin-right: 0;
}

.news .content a .img_wrap {
  overflow: hidden;
}

.news .content a .img {
  width: 100%;
  padding-top: 54%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.news .content a:hover .img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.news .content a .text {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  justify-content: space-between;
}

.news .content a .text .left {
  width: calc(100% - 128px);
  padding-right: 20px;
}

.news .content a .text h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 1px;
  color: #333333;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.news .content a .text h6 {
  font-size: 16px;
  line-height: 32px;
  color: #333333;
  opacity: 0.6;
  margin-top: 12px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.news .content a .text .right {
  display: flex;
  align-items: center;
  color: #666666;
  opacity: 0.6;
  width: 128px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.news .content a .text .right .dd {
  font-family: Arial;
  font-size: 46px;
  line-height: 36px;
  letter-spacing: 1px;
  border-right: 1px solid #666;
  padding-right: 8px;
  margin-right: 8px;
}

.news .content a .text .right .yyyy-mm {
  font-size: 16px;
  line-height: 18px;
}

.news .content a:hover .text h4, .news .content a:hover .text h6, .news .content a:hover .text .right {
  color: #fff;
}

.bread {
  display: flex;
  align-items: center;
  margin: 50px auto 0;
  width: 90%;
  max-width: 1600px;
}

.bread a {
  font-size: 16px;
  font-weight: 100;
  color: #044eb5;
}

.bread a.index, .bread a[href="javascript:;"] {
  color: #666666;
}

.bread a.underline {
  text-decoration: underline;
}

.bread img {
  margin: 0 10px;
}

.detail_wrap {
}

.detail {
  width: 98%;
  max-width: 1500px;
  margin: 80px auto;
}

.detail .tit {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333333;
  text-align: center;
}

.detail .desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #999999;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

.detail .desc img {
  margin: 0 6px 0 18px;
}

.detail .content {
  padding: 10px 0;
  margin: 15px 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.detail .content p {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #333333;
  margin: 10px 0;
}

.detail .content img {
}

.detail .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.detail .bottom .left {
  display: flex;
  flex-direction: column;
}

.detail .bottom .left a {
  font-size: 16px;
  font-weight: 100;
  line-height: 40px;
  letter-spacing: 1px;
  color: #333333;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.detail .bottom .left a:hover {
  color: #044eb5;
}

.detail .bottom .right {
  width: 150px;
  height: 48px;
  background-color: #044eb5;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #ffffff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.detail .bottom .right:hover {
  opacity: .8;
}

.detail .bottom .right img {
  margin-right: 6px;
}

/* product */
.product_nav {
  height: 60px;
}

.product_nav_inner {
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  top: 81px;
  left: 0;
  width: 100%;
  z-index: 55;
}

.product_nav.fixed .product_nav_inner {
  position: fixed;
}

.product_nav_item {
  font-size: 16px;
  color: #666666;
  margin: 0 40px;
  line-height: 60px;
  position: relative;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.product_nav.fixed .product_nav_item {
  line-height: 50px;
}

.product_nav_item::after {
  content: '';
  width: 0%;
  height: 2px;
  background-color: #044eb5;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.product_nav_item:hover,
.product_nav_item.active {
  color: #044eb5;
}

.product_nav_item.active::after {
  width: 100%;
}

.product_item {
  position: relative;
}

.prod_md {
  position: absolute;
  top: -156px;
}

.product_item {
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_item .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_item1 {
  background: url(../images/prod_1_bg.png) right top / 25% no-repeat;
}

.product_item2 {
  background: url(../images/prod_2_bg.png) left top / 25% no-repeat;
}

.product_item3 {
  background: url(../images/prod_3_bg.png) right top / 25% no-repeat;
}

.product_item4 {
  background: url(../images/prod_4_bg.png) left top / 25% no-repeat;
}

.product_item .img {
  width: 50%;
  padding-top: 50px;
  padding-right: 8%;
}

.product_item1 .img, .product_item3 .img {
  order: 1;
  padding-right: 0%;
  padding-left: 8%;
}

.product_item .text {
  width: 50%;
}

.product_item .text_t {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}

.product_item .text_tl {
}

.product_item .text_tl h4 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #333333;
}

.product_item .text_tl h4 span {
  font-size: 60px;
}

.product_item .text_tl h6 {
  font-size: 30px;
  color: #333333;
}

.product_item .text_t a {
  width: 160px;
  height: 48px;
  border-radius: 24px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.product_item .text_t a img {
  margin-left: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.product_item .text_t a:hover {
  border: 1px solid transparent;
}
.product_item .text_t a:hover img {
  margin-left: 20px;
}

.product_item .text_b {
}

.product_item .text_b h4 {
  font-size: 20px;
  line-height: 32px;
  color: #333333;
  margin-top: 32px;
}

.product_item .text_b h4 span {
  font-size: 30px;
  font-weight: bold;
}

.product_item .text_b ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.product_item .text_b ul li {
  position: relative;
  flex: 1;
  margin-right: 12px;
  overflow: hidden;
  border-radius: 8px;
}

.product_item .text_b ul li:last-child {
  margin-right: 0;
}

.product_item .text_b ul li .img {
  width: 100%;
  padding-top: 68.25%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.product_item .text_b ul li:hover .img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.product_item .text_b ul li .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-image: linear-gradient(0deg, rgba(9, 10, 13, 0.8), rgba(9, 10, 13, 0));
  opacity: 0.7;
}

.product_item .text_b ul li h6 {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  padding: 0 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.product_info_wrap {
}

.product_info1_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}

.product_info1_1 .img {
  width: 50%;
  padding-right: 8%;
}

.product_info1_1 .text {
  width: 50%;
  padding-right: calc(50vw - 800px);
}

.product_info1_1 .text_t {
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 32px;
}

.product_info1_1 .text_t h4 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #333333;
}

.product_info1_1 .text_t h4 span {
  font-size: 60px;
}

.product_info1_1 .text_t h6 {
  font-size: 30px;
  color: #333333;
}

.product_info1_1 .text_b {
  font-size: 20px;
  line-height: 40px;
  color: #222222;
}

.product_info1_1 .text_b span {
  text-decoration: underline;
}

.product_info1_2 {
  padding: 100px 0;
  background: #f7f8fa;
}

.product_info1_2 .content {
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
  margin-top: 50px;
}

.product_info1_2 .content li {
  width: 20%;
  padding: 50px 2% 0;
  text-align: center;
  min-height: 250px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  position: relative;
  cursor: pointer;
  color: #333333;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.product_info1_2 .content li:nth-child(5n) {
  border-right: 0;
}

.product_info1_2 .content li:nth-child(5n)::after {
  content: '';
  width: 50px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 1;
}

.product_info1_2 .content li:nth-child(5n + 1)::after {
  content: '';
  width: 50px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
}

.product_info1_2 .content li:nth-child(-n + 5) {
  border-top: 0;
  padding-top: 0;
}

.product_info1_2 .content li img {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.product_info1_2 .content li:hover {
  color: #044eb5;
}

.product_info1_2 .content li:hover img {
  -webkit-transform: scale(1.02) rotate(6deg);
  -moz-transform: scale(1.02) rotate(6deg);
  -ms-transform: scale(1.02) rotate(6deg);
  -o-transform: scale(1.02) rotate(6deg);
  transform: scale(1.02) rotate(6deg);
}

.product_info1_2 .content li h5 {
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
  margin-top: 20px;
}

.product_info1_2 .content li h6 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 100;
  margin-top: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.product_info1_3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 20%;
}

.product_info1_3 .img {
  width: 40%;
}

.product_info1_3 .text {
  width: 50%;
}

.product_info1_3 .text h4 {
  font-size: 56px;
  color: #333333;
  margin-bottom: 30px;
}

.product_info1_3 .text h4 span {
  font-weight: bold;
  font-size: 50px;
  background: linear-gradient(to top, #044eb5, #0f8cd7);
  -webkit-background-clip: text;
  color: transparent;
}

.product_info1_3 .text h5 {
  font-size: 20px;
  font-weight: 100;
  line-height: 40px;
  color: #333333;
}

.product_info1_3 .text h6 {
  font-size: 30px;
  font-weight: 100;
  line-height: 40px;
  color: #333333;
  margin-top: 50px;
}

.product_info1_3 .text h6 span {
  font-family: Arial;
  font-size: 56px;
  color: #044eb5;
  font-weight: 400;
}

.product_info4_3 {
  padding: 0 0 0 20%;
  align-items: flex-end;
}

.product_info4_3 .text {
  padding: 10% 0;
}

.product_info4_3 .img {
  width: 48%;
}

.product_info1_4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 14%;
  background: #e3e7ed;
}

.product_info1_4 .img {
  width: 45%;
  padding-right: 11%;
}

.product_info1_4 .text {
  width: 55%;
}

.product_info1_4 .text h4 {
  font-weight: bold;
  font-size: 50px;
  background: linear-gradient(to top, #044eb5, #0f8cd7);
  -webkit-background-clip: text;
  color: transparent;
}

.product_info1_4 .text h4 span {
  font-size: 40px;
}

.product_info1_4 .text h5 {
  font-size: 56px;
  font-weight: 100;
  line-height: 80px;
  color: #333333;
}

.product_info1_4 .text h6 {
  font-size: 20px;
  font-weight: 100;
  line-height: 40px;
  color: #333333;
}

.product_info1_4 .text .tip {
  margin: 40px 0 70px;
}

.product_info1_4 .text .tip h6 {
  padding-left: 20px;
  position: relative;
}

.product_info1_4 .text .tip h6::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #044eb5;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 16px;
}

.product_info1_5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 20% 80px;
}

.product_info1_5 .img {
  width: 40%;
}

.product_info1_5 .text {
  width: 50%;
}

.product_info1_5 .text h4 {
  font-size: 56px;
  color: #333333;
  margin-bottom: 30px;
}

.product_info1_5 .text h4 span {
  font-weight: bold;
  font-size: 50px;
  background: linear-gradient(to top, #044eb5, #0f8cd7);
  -webkit-background-clip: text;
  color: transparent;
}

.product_info1_5 .text h6 {
  font-size: 20px;
  font-weight: 100;
  line-height: 40px;
  color: #333333;
  margin-top: 40px;
}

.product_info1_6 {
  padding: 80px 0 120px;
}

.product_info1_6 .swiper {
  padding: 0 80px;
  margin-top: 40px;
}

.product_info1_6 .swiper .swiper-slide h6 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 26px;
  color: #333333;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.product_info1_6 .swiper .swiper-slide .img {
  overflow: hidden;
  border-radius: 8px;
}

.product_info1_6 .swiper .swiper-slide .img img {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.product_info1_6 .swiper .swiper-slide:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.product_info1_6 .swiper .swiper-slide:hover h6 {
  color: #044eb5;
}

.product_info1_6 .swiper .prevButton {
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -o-transform: translateY(-25px);
  transform: translateY(-25px);
}

.product_info1_6 .swiper .nextButton {
  -webkit-transform: rotate(180deg) translateY(25px);
  -moz-transform: rotate(180deg) translateY(25px);
  -ms-transform: rotate(180deg) translateY(25px);
  -o-transform: rotate(180deg) translateY(25px);
  transform: rotate(180deg) translateY(25px);
}

/* product */
.research_wrap {
}

.research1 {
  padding: 100px 0 120px;
}

.research1 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.research1 .left {
  width: calc(100% - 500px);
}

.research1 .left h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  color: #333333;
}

.research1 .left ul {
  display: flex;
  align-items: center;
  margin-top: 100px;
}

.research1 .left ul li {
  margin-right: 5%;
}

.research1 .left ul li h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
}

.research1 .left ul li h6 span {
  font-size: 80px;
  font-weight: bold;
  font-family: "DIN Alternate";
}

.research1 .left h5 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  margin-top: 80px;
  max-width: 780px;
  width: 90%;
}

.research1 .left h5 span {
  font-family: "DIN Alternate";
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  color: #00cdff;
}

.research1 .right {
  width: 500px;
  position: relative;
}

.research1 .right img {
  width: 84.2%;
  margin-left: 9.4%;
}

.research1 .right .text1 {
  position: absolute;
  left: 53%;
  top: 53%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.research1 .right .text1 h6 {
  font-size: 20px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  text-align: center;
}

.research1 .right .text1 h6 span {
  font-size: 80px;
  font-weight: bold;
  color: #333;
  font-family: "DIN Alternate";
}

.research1 .right .text2 {
  background: #044eb5;
  position: absolute;
  left: 14%;
  top: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.research1 .right .text2 h6 {
  font-size: 14px;
  font-weight: 100;
  line-height: 22px;
  color: #ffffff;
  text-align: center;
}

.research1 .right .text2 h6 span {
  font-size: 50px;
  font-weight: bold;
  font-family: "DIN Alternate";
}

.research1 .right .text3 {
  width: 150px;
  height: 150px;
  left: 85%;
  top: 82%;
}

.research1 .right .text4 {
  background: #00cdff;
  width: 140px;
  height: 140px;
  left: 80%;
  top: 18%;
}

.research2 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.research2 .container .item {
  width: 25%;
  padding: 0 5% 0 2.5%;
  color: #ffffff;
  overflow: hidden;
  border-right: 1px solid rgba(253, 253, 253, 0.4);
}

.research2 .container .item:last-child {
  border-right: 0;
}

.research2 .container .item h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 42px;
}

.research2 .container .item h5 {
  font-family: Arial;
  font-size: 16px;
  line-height: 30px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.2);
}

.research2 .container .item h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  height: 180px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  margin-top: 10px;
  opacity: 0;
}

.research2 .container .item span {
  width: 140px;
  height: 42px;
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #044eb5;
  opacity: 0;
}

.research2 .container .item span img {
  margin-left: 24px;
}

.research2 .container .item > * {
  position: relative;
  top: 260px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.research2 .container .item:hover > * {
  top: 0;
  opacity: 1;
}

.research3 {
  padding: 100px 0 80px;
  margin: 100px auto;
  background: #f7f8fa;
}

.research3 .content {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.research3 h4 {
  max-width: 1100px;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  margin: 0 auto;
  text-align: center;
}

.research3 .content .left {
  width: 464px;
}

.research3 .content .right {
  width: calc(100% - 464px);
}

.research3 .content .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.research3 .content .right li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  height: 60px;
  color: #666666;
  margin-top: 18px;
  padding-left: 142px;
  padding-right: 160px;
  min-width: 690px;
  position: relative;
  background: url(../images/research3_bg1.png) left top no-repeat, url(../images/research3_bg3.png) right top no-repeat;
}

.research3 .content .right li::before {
  content: '';
  background: #fff;
  height: 60px;
  position: absolute;
  left: 174px;
  right: 516px;
}

.research3 .content .right li:nth-child(1) {
  margin-top: 0;
  margin-left: -240px;
}

.research3 .content .right li:nth-child(2) {
  margin-left: -195px;
}

.research3 .content .right li:nth-child(3) {
  margin-left: -150px;
}

.research3 .content .right li:nth-child(4) {
  margin-left: -105px;
}

.research3 .content .right li:nth-child(5) {
  margin-left: -60px;
}

.research3 .content .right li span {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  word-break: keep-all;
}

.research3 .content .right li img {
  margin: 0 30px;
  position: relative;
}

.research3 .content .right li em {
  font-style: normal;
  position: relative;
}

.research4 {
  padding: 100px 0;
}

.research4 .swiper {
  padding: 0 90px;
  margin-top: 50px;
}

.research4 .swiper .swiper-container {
  padding: 10px 0 20px;
}

.research4 .swiper .swiper-slide {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.research4 .swiper .swiper-slide:hover {
  box-shadow: 4px 7px 20px 0px rgba(15, 41, 76, 0.1);
}

.research4 .swiper .swiper-slide h6 {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  text-align: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.research4 .swiper .swiper-slide:hover h6 {
  color: #044eb5;
}

.research4 .swiper .prevButton {
  -webkit-transform: translateY(-48px);
  -moz-transform: translateY(-48px);
  -ms-transform: translateY(-48px);
  -o-transform: translateY(-48px);
  transform: translateY(-48px);
}

.research4 .swiper .nextButton {
  -webkit-transform: rotate(180deg) translateY(48px);
  -moz-transform: rotate(180deg) translateY(48px);
  -ms-transform: rotate(180deg) translateY(48px);
  -o-transform: rotate(180deg) translateY(48px);
  transform: rotate(180deg) translateY(48px);
}

.research5 {
  padding: 100px 0;
  background: #f7f8fa;
}

.research5 h5 {
  width: 90%;
  margin: 50px auto 0;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  text-align: center;
}

.research5 h5.mw600 {
  max-width: 600px;
  margin-top: 30px;
}

.research5 h5.mw1100 {
  max-width: 1100px;
}

.research5 img {
  display: block;
  margin: 50px auto 0;
  max-width: 90%;
}

.research6 {
  padding: 100px 0;
}

.research6 h5 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: #333333;
  margin: 50px auto;
}

.research6 .content {
  display: flex;
  flex-wrap: wrap;
}

.research6 .content a {
  margin-right: 39px;
  margin-top: 40px;
  width: calc(33.33% - 26px);
  background: #f7f8fa;
  overflow: hidden;
  border-radius: 8px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.research6 .content a:hover {
  background: #044eb5;
}

.research6 .content a:nth-child(-n + 3) {
  margin-top: 0;
}

.research6 .content a:nth-child(3n) {
  margin-right: 0;
}

.research6 .content a .img_wrap {
  overflow: hidden;
}

.research6 .content a .img {
  width: 100%;
  padding-top: 62.5%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.research6 .content a:hover .img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.research6 .content a .text {
  text-align: center;
  padding: 0px 28px;
  font-size: 20px;
  font-weight: bold;
  line-height: 70px;
  color: #333333;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.research6 .content a:hover .text {
  color: #fff;
}

.result_wrap {
}

.result1 {
  background-color: #f7f8fa;
}

.result1 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 200px;
}

.result1 .left {
  font-size: 36px;
  font-weight: 100;
  color: #000000;
}

.result1 .right {
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.result1 .right input {
  width: 500px;
  height: 55px;
  background-color: #ffffff;
  border: solid 1px #e1e4e5;
  padding: 0 20px;
  font-size: 20px;
  color: #333333;
}

.result1 .right a {
  width: 100px;
  height: 55px;
  background-color: #044eb5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result1 .right a img {
}

.result2 {
  margin: 50px auto 100px;
}

.result2 h5 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #4a4a4a;
}

.result2 h5 span {
  font-family: Arial;
  font-size: 20px;
  font-weight: bold;
  color: #044eb5;
}

.result2 .content {
}

.result2 .content a {
  margin-top: 72px;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.result2 .content a:hover {
  opacity: .6;
}

.result2 .content a h4 {
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 1px;
  color: #333333;
}

.result2 .content a h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  letter-spacing: 1px;
  color: #4a4a4a;
  margin-top: 20px;
}

.index1 {
  padding: 100px 0 136px;
}

.index1 .container h5 {
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  color: #666666;
  max-width: 1100px;
  text-align: center;
  margin: 40px auto 0;
}

.index1 .content {
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 4px 7px 20px 0px rgba(15, 41, 76, 0.1);
}

.index1 .content .left {
  width: 50%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index1 .content .left img {
}

.index1 .content .right {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.index1 .content .right .item {
  background: #fff;
  width: 50%;
  height: 300px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 5%;
}

.index1 .content .right .item1 {
}

.index1 .content .right .item2 {
}

.index1 .content .right .item3 {
  color: #fff;
}

.index1 .content .right .item4 {
  color: #fff;
}

.index1 .content .right .item h4 {
  font-size: 30px;
  font-weight: bold;
  font-family: "DIN Alternate";
}

.index1 .content .right .item h4 span {
  font-size: 80px;
}

.index1 .content .right .item h4 span.f50 {
  font-size: 50px;
}

.index1 .content .right .item h5 {
  font-size: 26px;
  line-height: 29px;
  letter-spacing: 1px;
  color: inherit;
  text-align: left;
  margin: 20px 0 0;
}

.index1 .content .right .item h6 {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 100;
  line-height: 28px;
  height: 56px;
}

.index2 {
  background: #f4f5f7;
  padding: 100px 0 66px;
}

.index2 .common_tit h6 {
  font-size: 32px;
  font-weight: 100;
  letter-spacing: 2px;
  color: #666666;
}

.index2 .content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
}

.index2 .content .item {
  width: 20%;
  height: 600px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4% 2%;
  position: relative;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index2 .content .item.active {
  width: 50%;
  padding: 4% 3%;
}

.index2 .content .item.unactive {
  width: 12.5%;
  padding: 4% 1%;
}

.index2 .content .item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index2 .content .item.active .bg {
  opacity: 1;
}

.index2 .content .item .img_h {
  position: relative;
}

.index2 .content .item h4 {
  position: relative;
  z-index: 3;
  font-size: 22px;
  line-height: 32px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index2 .content .item.active h4 {
  font-size: 24px;
  font-weight: bold;
}

.index2 .content .item h4::before {
  content: '';
  display: block;
  margin: 20px 0;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}

.index2 .content .item h6 {
  position: relative;
  z-index: 3;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
  height: 60px;
  margin-top: 10px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all .3s ease .3s;
  -moz-transition: all .3s ease .3s;
  -ms-transition: all .3s ease .3s;
  -o-transition: all .3s ease .3s;
  transition: all .3s ease .3s;
}

.index2 .content .item.active h6 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.index2 .content .item.active .img_h.img_ha img {
  opacity: 0;
}

.index2 .content .item.active .img_h.img_ha img:nth-child(2) {
  opacity: 1;
}

.index2 .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.index2 .bottom .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 124px;
}

.index2 .bottom .left .prevButton {
}

.index2 .bottom .left .nextButton {
}

.index2 .bottom .right {
  flex: 1;
  margin-left: 78px;
  margin-right: 64px;
  height: 1px;
  background: #dddddd;
  position: relative;
}

.index2 .bottom .right span {
  width: 0%;
  height: 3px;
  background-color: #36bdea;
  display: block;
  position: relative;
  top: -1px;
}
.index2 .bottom .right.active span {
  width: 100%;
  -webkit-transition: all 4.8s linear .2s;
  -moz-transition: all 4.8s linear .2s;
  -ms-transition: all 4.8s linear .2s;
  -o-transition: all 4.8s linear .2s;
  transition: all 4.8s linear .2s;
}

.index2 .bottom a {
  text-decoration: underline;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.index2 .bottom a:hover {
  color: #044eb5;
}

.index3 {
  margin-top: 100px;
}

.index3 .content {
  margin-top: 54px;
  position: relative;
  padding: 1% 0 5%;
}

.index3 .content .index3_img1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25%;
  transform-origin: left bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .8s ease 1s;
  -moz-transition: all .8s ease 1s;
  -ms-transition: all .8s ease 1s;
  -o-transition: all .8s ease 1s;
  transition: all .8s ease 1s;
}

.index3 .content .index3_img2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 33%;
  transform-origin: right top;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .8s ease 1s;
  -moz-transition: all .8s ease 1s;
  -ms-transition: all .8s ease 1s;
  -o-transition: all .8s ease 1s;
  transition: all .8s ease 1s;
}

.index3 #index3Content.active .index3_img1,
.index3 #index3Content.active .index3_img2 {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.index3 .content .product_item {
  padding: 0 100px;
}

.index3 .content .product_item .text_tl h4, .index3 .content .product_item .text_tl h6, .index3 .content .product_item .text_b h4 {
  color: #fff;
}
.index3 .content .product_item .text_t a {
  border-color: transparent;
}
.index3 .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
}

.index3 .bottom .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 124px;
}

.index3 .bottom .left .prevButton {
}

.index3 .bottom .left .nextButton {
}

.index3 .bottom .right {
  flex: 1;
  margin-left: 60px;
  margin-right: 32px;
  height: 1px;
  background: rgba(221, 221, 221, 0.3);
  position: relative;
}

.index3 .bottom .right span {
  width: 0%;
  height: 3px;
  background-color: #36bdea;
  display: block;
  position: relative;
  top: -1px;
}
.index3 .bottom .right.active span {
  width: 100%;
  -webkit-transition: all 4.8s linear .2s;
  -moz-transition: all 4.8s linear .2s;
  -ms-transition: all 4.8s linear .2s;
  -o-transition: all 4.8s linear .2s;
  transition: all 4.8s linear .2s;
}

.index3 .bottom .names {
  height: 30px;
  position: relative;
}

/*.index3 .bottom .names::before {*/
/*  content: '“';*/
/*  font-size: 24px;*/
/*  line-height: 30px;*/
/*  color: #fff;*/
/*}*/

.index3 .bottom .names span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  color: #fff;
  opacity: 0;
  white-space: nowrap;
  word-break: keep-all;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}
.index3 .bottom .names span:nth-child(1) {
  position: relative;
}

.index3 .bottom .names span.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index4 {
  background: #f7f8fa;
  padding: 100px 0;
}

.index4 .top {
  margin-top: 30px;
  position: relative;
}

.index4 .top .more {
  text-decoration: underline;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  position: absolute;
  right: 0;
  top: 15px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index4 .product_nav {
  overflow: auto hidden;
  width: calc(100% - 140px);
}
.index4 .product_nav .product_nav_inner {
  background: transparent;
  justify-content: flex-start;
  white-space: nowrap;
}

.index4 .product_nav .product_nav_inner .product_nav_item {
  margin-left: 0;
}

.index4 .swiperBtn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 55;
  width: 68.4%;
  margin: -26px auto 0;
}

.index4 .swiperBtn .prevButton {
  left: 0;
  top: 0;
  background: #fff;
}

.index4 .swiperBtn .nextButton {
  right: 0;
  top: 0;
  background: #fff;
}

.index4 .swiper {
  margin: 34px -3% 0;
}

.index4 .swiper .swiper-slide .img {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index4 .swiper .swiper-slide .img img {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index4 .swiper .swiper-slide .img::after {
  content: '';
  background: #fff;
  opacity: .5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.index4 .swiper .swiper-slide-prev-prev .img,
.index4 .swiper .swiper-slide-next-next .img {
  -webkit-transform: scale(0.84);
  -moz-transform: scale(0.84);
  -ms-transform: scale(0.84);
  -o-transform: scale(0.84);
  transform: scale(0.84);
}

.index4 .swiper .swiper-slide-prev-prev .img::after,
.index4 .swiper .swiper-slide-next-next .img::after{
  opacity: .5;
}

.index4 .swiper .swiper-slide-next-next .img {
  transform-origin: right center;
}

.index4 .swiper .swiper-slide-prev-prev .img {
  transform-origin: left center;
}

.index4 .swiper .swiper-slide .img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.index4 .swiper h6 {
  font-size: 20px;
  line-height: 30px;
  color: #666666;
  text-align: center;
  margin-top: 10px;
}

.index4 {

}

.index5 {
  margin: 100px auto;
}

.index5 .top {
  margin-top: 30px;
  position: relative;
}

.index5 .top .more {
  text-decoration: underline;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  position: absolute;
  right: 0;
  top: 15px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .product_nav .product_nav_inner {
  background: transparent;
  justify-content: flex-start;
}

.index5 .product_nav .product_nav_inner .product_nav_item {
  margin-left: 0;
}

.index5 .content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.index5 .left {
  width: 49%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.index5 .left a {
  background: #044eb5;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  height: 100%;
  padding-bottom: 116px;
}

.index5 .left a .img_wrap {
  overflow: hidden;
  height: 100%;
}

.index5 .left a .img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .left a:hover .img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.index5 .left a .text {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.index5 .left a .text .left {
  width: calc(100% - 128px);
  padding-right: 20px;
  position: static;
}

.index5 .left a .text h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .left a .text h6 {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  opacity: 0.6;
  margin-top: 12px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .left a .text .right {
  display: flex;
  align-items: center;
  color: #fff;
  opacity: 0.6;
  width: 128px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
}

.index5 .left a .text .right .dd {
  font-family: Arial;
  font-size: 46px;
  line-height: 36px;
  letter-spacing: 1px;
  border-right: 1px solid #fff;
  padding-right: 8px;
  margin-right: 8px;
}

.index5 .left a .text .right .yyyy-mm {
  font-size: 16px;
  line-height: 18px;
}

.index5 .right {
  width: 49%;
  margin-left: 51%;
}

.index5 .right .top {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index5 .right .top a {
  width: 48%;
  background: #044eb5;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
}

.index5 .right .top a .img_wrap {
  overflow: hidden;
}

.index5 .right .top a .img {
  width: 100%;
  padding-top: 62.5%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .right .top a:hover .img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.index5 .right .top a .text {
  padding: 20px 28px;
}

.index5 .right .top a .text h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .right .top a .text h6 {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  opacity: 0.6;
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.index5 .right .top a .text h6 img {
  margin-right: 4px;
}

.index5 .right .bottom {
  margin-top: 30px;
}

.index5 .right .bottom a {
  display: block;
  background: #fff url(../images/index5_bg.png) right bottom no-repeat;
  border-radius: 8px;
  border: solid 1px #eeeeee;
  padding: 20px 28px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .right .bottom a:hover {
  background: #044eb5 url(../images/index5_bg.png) right bottom no-repeat;
}

.index5 .right .bottom a .text_t {
}

.index5 .right .bottom a .text_t h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 1px;
  color: #333;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .right .bottom a .text_t h6 {
  font-size: 16px;
  line-height: 32px;
  color: #666;
  opacity: 0.6;
  margin-top: 12px;
  height: 64px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .right .bottom a .text_b {
  border-top: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
}

.index5 .right .bottom a .text_b .l {
}

.index5 .right .bottom a .text_b .l h6 {
  font-size: 16px;
  line-height: 32px;
  color: #999;
  display: flex;
  align-items: center;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.index5 .right .bottom a .text_b .l h6 img {
  margin-right: 4px;
}

.index5 .right .bottom a .text_b .r {
  font-size: 16px;
  line-height: 32px;
  color: #666;
  display: flex;
  align-items: center;
}

.index5 .right .bottom a .text_b .r img {
  margin-left: 4px;
}

.index5 .right .bottom a:hover .text_t h4,
.index5 .right .bottom a:hover .text_t h6,
.index5 .right .bottom a:hover .text_b .l h6,
.index5 .right .bottom a:hover .text_b .r {
  color: #fff;
}
.index4 .top .more:hover,
.index5 .top .more:hover {
  color: #044eb5;
}

/* footer */
.footer {
  background-color: #044eb5;
  color: #fff;
}

.footer a {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  color: #fff;
}

.footer .a:hover {
  color: #fff;
}

.footer .top {
  display: flex;
  justify-content: center;
  padding: 100px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.footer .top .left {
  display: flex;
  flex: 1;
}

.footer .top .left .item {
  flex: 1;
  padding-right: 10px;
}

.footer .top .left .item .h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 2px;
}

.footer .top .left .item .h6 {
  font-size: 16px;
  font-weight: 100;
  line-height: 22px;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 16px;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.footer .top .left .item .h5:hover {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
}

.footer .top .left .item .h6:hover {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
}

.footer .top .left .item .line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.06);
  margin: 30px 0;
  position: relative;
}

.footer .top .left .item .line::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0;
  top: 0;
}

.footer .top .right {
}

.footer .top .right .ewm_wrap {
  display: flex;
}

.footer .top .right .ewm_wrap .ewm {
  position: relative;
  margin-left: 30px;
}

.footer .top .right .ewm_wrap .ewm img:nth-child(1) {
}

.footer .top .right .ewm_wrap .ewm img:nth-child(2) {
  position: absolute;
  left: 10px;
  top: 10px;
}

.footer .top .right .ewm_wrap .ewm h6 {
  text-align: center;
  margin-top: 10px;
  font-weight: 100;
  font-size: 16px;
}

.footer .top .right .contact_item {
  font-size: 14px;
  margin-left: 30px;
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.footer .top .right .contact_item img {
  margin-right: 12px;
}

.footer .top .right .contact_item span {
}

.footer .bottom {
  padding: 24px 0 50px;
}

.footer .bottom h5 {
  font-size: 16px;
}

.footer .bottom h5 a {
  opacity: .6;
}

.footer .bottom h5 a:hover {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
}

.footer .bottom h6 {
  font-size: 14px;
  margin-top: 24px;
  font-weight: 100;
}

.footer .bottom h6 span {
  margin-left: 40px;
}

.footer .bottom h6 span a {
}

.footer .bottom h6 span a:hover {
  color: #fff;
  text-decoration: underline;
}

/* footer */
@media (max-width: 1780px) {
  .product_info1_1 .text {
    padding-right: 5%;
  }
  .product_info4_3 {
    padding-left: 10%;
  }
  .product_info1_4 {
    padding: 120px 10%;
  }
  .product_info1_5 {
    padding: 120px 10% 80px;
  }
  .research1 .left ul li {
    margin-right: 3%;
  }
}
@media (max-width: 1600px) {
  .footer .top .left .item .h5 {
    font-size: 16px;
  }
  .footer .top .left .item .h6 {
    font-size: 14px;
  }
  .about1 .content .text ul li {
    margin-right: 10px;
  }
  .about1 .content .text ul li h6 {
    font-size: 15px;
  }
  .product_info1_3 .text h4 {
    font-size: 48px;
  }
  .product_info1_3 .text h4 span {
    font-size: 42px;
  }
  .product_info1_4 .text h5 {
    font-size: 48px;
  }
  .product_info1_5 .text h4 {
    font-size: 48px;
  }
  .product_info1_5 .text h4 span {
    font-size: 42px;
  }
  .dealer1 .img .text {
    font-size: 20px;
  }
  .dealer1 .img2 .text {
    font-size: 24px;
    line-height: 40px;
  }
  .dealer1 .img .block .desc {
    width: 340px;
    padding: 20px;
  }
  .research1 .left ul {
    flex-wrap: wrap;
  }
  .research1 .left ul li {
    width: 33%;
    margin-right: 0;
    margin-top: 30px;
  }
  .research2 .container .item h4 {
    font-size: 26px;
  }
}

@media (max-width: 1440px) {
  .index1 .content .left {
    height: 520px;
  }
  .index1 .content .right .item {
    height: 260px;
  }
  .index1 .content .right .item h4 span {
    font-size: 60px;
  }
  .index1 .content .right .item h4 span.f50 {
    font-size: 40px;
  }
  .index1 .content .right .item h5 {
    font-size: 22px;
    margin-top: 10px;
  }
  .index1 .content .right .item h6 {
    margin-top: 20px;
  }
  .index2 .content .item h4 {
    font-size: 18px;
  }
  .index2 .content .item.active h4 {
    font-size: 20px;
  }
  .header_nav li {
    margin-left: 30px;
  }
  .about1 .content .text {
    padding: 3%;
  }
  .about5 .content .left ul li h6 span {
    font-size: 60px;
  }
  .product_info4_3 {
    padding-left: 5%;
  }
  .product_info1_4 {
    padding: 120px 5%;
  }
  .product_info1_5 {
    padding: 120px 5% 80px;
  }
  .dealer2 .text h3 {
    font-size: 100px;
  }
  .cooperation5 .left {
    padding: 20px;
    width: 280px;
    height: 630px;
  }
  .cooperation5 .left h5 {
    font-size: 20px;
  }
  .cooperation5 .left h6 {
    font-size: 32px;
  }
  .research2 .container .item h4 {
    font-size: 22px;
  }
  .research3 .content .right li {
    padding-left: 60px;
  }
}

@media (max-width: 1360px) {
  .common_tit h4 {
    font-size: 32px;
  }
  .common_tit h4 span {
    font-size: 38px;
  }
  .footer .top .right {
    display: none;
  }
  .index2 .content .item.active {
    width: 40%;
  }
  .index2 .content .item.unactive {
    width: 15%;
  }
  .product_item {
    padding: 80px 5%;
  }
  .product_info1_3 .text h4 {
    font-size: 42px;
  }
  .product_info1_3 .text h4 span {
    font-size: 36px;
  }
  .product_info1_4 .text h5 {
    font-size: 42px;
  }
  .product_info1_5 .text h4 {
    font-size: 42px;
  }
  .product_info1_5 .text h4 span {
    font-size: 36px;
  }
  .product_info1_1 .text_t h4 {
    font-size: 32px;
  }
  .product_info1_1 .text_t h4 span {
    font-size: 50px;
  }
  .product_info1_1 .text_t h6 {
    font-size: 24px;
  }
  .product_info1_1 .text_b {
    font-size: 18px;
  }
  .product_info1_3 .text h5 {
    font-size: 18px;
  }
  .product_info1_4 .text h6 {
    font-size: 18px;
  }
  .product_info1_6 .swiper .swiper-slide h6 {
    font-size: 20px;
  }
  .product_info1_1 .text_t {
    padding-bottom: 20px;
    margin-bottom: 22px;
  }
  .dealer5 .container ul li h6 {
    font-size: 18px;
  }
  .dealer4 .right {
    padding: 40px;
  }
  .dealer4 .right ul li {
    font-size: 18px;
  }
  .dealer1 .img .block .name {
    height: 36px;
    font-size: 18px;
    line-height: 36px;
  }
  .dealer1 .img .block .desc {
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
    width: 300px;
  }
  .dealer1 .img .block .num {
    width: 50px;
    height: 50px;
    line-height: 42px;
    font-size: 20px;
  }
  .dealer1 .img .text {
    font-size: 18px;
  }
  .dealer1 .img2 .text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 1280px) {
  .header_nav li {
    margin-left: 14px;
  }
  .headeri {
    padding-right: 0;
  }
  .header_lang,
  .header_search {
    display: none;
  }
  .index1 .content .left {
    height: 480px;
  }
  .index1 .content .right .item {
    height: 240px;
  }
  .index1 .content .right .item h4 {
    font-size: 24px;
  }
  .index1 .content .right .item h4 span {
    font-size: 50px;
  }
  .index1 .content .right .item h4 span.f50 {
    font-size: 32px;
  }
  .index1 .content .right .item h5 {
    font-size: 20px;
  }
  .about1 .content .text ul {
    flex-wrap: wrap;
  }
  .about1 .content .text ul li {
    width: 45%;
    margin-right: 5%;
    margin-top: 10px;
  }
  .about1 .content .text ul li:nth-child(2) {
    border-right: 0;
  }
  .about3 ul li.about3_3 .box .small_circle {
    font-size: 15px;
  }
  .about5 .content .right .text1 h4 {
    font-size: 18px;
  }
  .about5 .content .right .text1 h4 span {
    font-size: 28px;
  }
  .product_nav_item {
    margin: 0 20px;
  }
  .product_info1_3 .text h4 {
    font-size: 36px;
  }
  .product_info1_3 .text h4 span {
    font-size: 32px;
  }
  .product_info1_4 .text h5 {
    font-size: 36px;
  }
  .product_info1_5 .text h4 {
    font-size: 36px;
  }
  .product_info1_5 .text h4 span {
    font-size: 32px;
  }
  .dealer5 .container ul li h6 {
    font-size: 16px;
  }
  .cooperation5 .right .layui-form .layui-form-w24 {
    width: 48%;
    margin-right: 0;
  }
  .cooperation5 .right .layui-form .layui-form-w24:first-child {
    margin-right: 4%;
  }
  .cooperation5 .right .layui-form .layui-form-w48 {
    width: 100%;
  }
  .dealer1 .img .text {
    width: 72%;
    height: 72%;
  }
  .dealer1 #dealer1Content.active .img .block .line_1 {
    width: 20px;
  }
  .dealer1 .img .block .num {
    right: 16px;
  }
  .dealer1 .img .block {
    padding-right: 40px;
  }
  .dealer1 .img .block4 .num {
    left: 16px;
  }
  .dealer1 .img .block4 {
    padding-left: 40px;
  }
  .dealer1 .img .block .desc {
    width: 260px;
  }
  .dealer1 .img .text {
    font-size: 16px;
    line-height: 24px;
    padding: 16px;
  }
  .cooperation5 .right .layui-form .layui-form-label {
    display: none;
  }
  .cooperation2 ul li h4 {
    font-size: 16px;
  }
  .marketing3 .container .item {
    width: 49%;
  }
  .marketing3 .container .item .as a {
    width: 100px;
    height: 100px;
  }
  .marketing3 .container .item .as a img {
    margin-left: -19px;
    margin-top: -15px;
  }
  .marketing5 .container ul li h5 span {
    font-size: 60px;
  }
  .marketing4 .content .item .text h6 {
    font-size: 18px;
  }
  .marketing1 .content a em {
    font-size: 0;
  }
  .index2 .common_tit h6,
  .marketing2 .common_tit h6 {
    font-size: 22px;
  }
  .research1 .right .text1 h6 span,
  .research1 .left ul li h6 span {
    font-size: 60px;
  }
  .research1 .right .text2 h6 span {
    font-size: 40px;
  }
  .research1 .right {
    width: 400px;
  }
  .research2 .container .item h4 {
    font-size: 18px;
  }
  .research2 .container .item h5 {
    font-size: 15px;
    line-height: 24px;
  }
  .research2 .container .item h6 {
    font-size: 14px;
    line-height: 20px;
    height: 120px;
  }
  .research3 .content .right li {
    font-size: 14px;
    line-height: 20px;
  }
  .research3 .content .right li span {
    font-size: 22px;
  }
  .research3 .content .right li img {
    margin: 0 16px;
  }
}

@media (max-width: 1100px) {
}

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

  .headerSJ {
    display: block;
    position: fixed;
    left: 0px;
    top: 0px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    width: 100%;
    background-color: #fff;
    padding: 0px 0px;
  }

  .headerSJ .headerSC {
    padding: 0px 5%;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .headerSJ .logo img {
    height: 44px;
  }

  .headerSJ .navbar {
    position: relative;
    padding: 7px 10px;
    margin-right: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #044eb5;
    border-radius: 4px;
    outline: none;
  }

  .headerSJ .navbar .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #044eb5;
  }

  .headerSJ .navbar .icon-bar + .icon-bar {
    margin-top: 4px;
  }

  .headerSJ .navwrap {
    position: fixed;
    top: 0px;
    left: -50%;
    width: 50%;
    height: 100%;
    z-index: 1100;
    background-color: #000;
    opacity: 0;
  }

  .headerSJ .navwrap .nav {
    padding: 10px 5% 0px 5%;
  }

  .headerSJ .navwrap .nav li {
    line-height: 42px;
    border-bottom: 1px solid #232530;
    padding: 0px 5%;
  }

  .headerSJ .navwrap .nav li a {
    display: block;
    color: #fff;
    font-size: 16px;
  }

  .headerSJ .navbg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
  }

  .headerSJ .navbg .closeSJ {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .headerSJ .navwrap .nav .SJbod {
    display: none;
  }

  .headerSJ .navwrap .nav .SJbod dd a {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .headerSJ .navwrap .nav .plus a {
    background: url(../images/plus.png) right center no-repeat;
  }

  .headerSJ .navwrap .nav .minus a {
    background: url(../images/minus.jpg) right center no-repeat;
  }

  .headerSJ .navwrap .nav .lan .SJtit a {
    display: inline-block;
  }

  .headerSJ .navwrap .nav .lan .SJtit span {
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding: 0px 5px;
  }

  .wrapper {
    padding-top: 60px;
  }
  .product_nav.fixed .product_nav_inner {
    position: static;
  }
  .product_item {
    padding: 80px 5%;
  }
}

@media (max-width: 768px) {
  #video_model .video .close {
    right: 0px;
    top: -50px;
  }

  .pagination {
    margin-top: 20px;
  }

  .banner .text h4 {
    font-size: 30px;
  }

  .banner .text h6 {
    margin-top: 6px;
    font-size: 16px;
  }

  .banner .text a {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 20px;
  }
  .common_tit h4 {
    font-size: 22px;
  }
  .common_tit h4 span {
    font-size: 24px;
  }
  .common_tit h6 {
    margin-top: 6px;
    font-size: 16px;
    line-height: 24px;
  }
  .index2 .common_tit h6, .marketing2 .common_tit h6 {
    font-size: 18px;
  }
  .index1 {
    padding: 80px 0 40px;
  }
  .index1 .container h5 {
    margin-top: 20px;
  }
  .index1 .content {
    margin-top: 40px;
    flex-direction: column;
  }
  .index1 .content .left {
    width: 100%;
    height: 200px;
  }
  .index1 .content .left a {
    width: 80px;
    height: 80px;
  }
  .index1 .content .right {
    width: 100%;
  }
  .index1 .content .right .item {
    height: 280px;
  }
  .index1 .content .right .item h4 {
    font-size: 20px;
  }
  .index1 .content .right .item h4 span {
    font-size: 40px;
  }
  .index1 .content .right .item h4 span.f50 {
    font-size: 30px;
  }
  .index1 .content .right .item h5 {
    font-size: 18px;
    margin-top: 0;
  }
  .index1 .content .right .item h6 {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
  }
  .index2 {
    padding: 80px 0;
  }
  .index2 .content {
    display: block;
    margin-top: 0;
  }
  .index2 .content > div {
    margin-top: 20px;
  }
  .index2 .content .item,
  .index2 .content .item.active,
  .index2 .content .item.unactive {
    width: 100%;
    padding: 5%;
    height: 300px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
  }
  .index2 .content .item .bg {
    opacity: 1;
  }
  .index2 .content .item h6 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 20px;
    height: auto;
    overflow: visible;
    opacity: 1;
    display: block;
  }
  .index2 .content .item .img_h.img_ha img {
    opacity: 0;
  }

  .index2 .content .item .img_h.img_ha img:nth-child(2) {
    opacity: 1;
  }
  .index2 .content .item h4 {
    font-size: 20px;
    font-weight: bold;
  }
  .index2 .bottom {
  }
  .index3 {
    margin-top: 80px;
  }
  .index3 .product_item {
    flex-direction: column;
  }
  .product_item .container {
    flex-direction: column;
  }
  .product_item .img {
    order: 0;
    padding: 0;
    width: 100%;
  }
  .product_item .text {
    width: 100%;
  }
  .product_item .text_t {
    padding-bottom: 20px;
  }
  .product_item .text_tl h4 {
    font-size: 28px;
  }
  .product_item .text_tl h4 span {
    font-size: 32px;
  }
  .product_item .text_tl h6 {
    font-size: 20px;
  }
  .product_item .text_b h4 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
  }
  .product_item .text_b h4 span {
    font-size: 22px;
  }
  .product_item .text_b ul li {
    margin-right: 4px;
  }
  .product_item .text_b ul li h6 {
    padding: 0 10px;
    font-size: 14px;
  }
  .index3 .bottom .right {
    display: none;
  }
  .index3 .bottom {
    margin-top: 40px;
  }
  .index3 .bottom .names {
  }
  .index3 .bottom .names span {
    font-size: 18px;
  }
  .index4 {
    padding: 80px 0;
  }
  .index4 .swiper {
    margin: 20px 10% 0;
  }
  .index4 .swiper .swiper-slide-active .img, .index4 .swiper .swiper-slide-duplicate-prev .img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  .index4 .swiper .swiper-slide-active .img::after, .index4 .swiper .swiper-slide-duplicate-prev .img::after {
    display: none;
  }
  .index4 .top .more {
    display: none;
  }
  .product_nav {
    overflow: auto hidden;
  }
  .product_nav .product_nav_inner {
    white-space: nowrap;
  }
  .index4 .swiperBtn {
    width: 115%;
    left: -7.5%;
  }
  .index4 .swiper h6 {
    font-size: 16px;
  }
  .index5 {
    margin: 80px auto;
  }
  .index5 .top .more {
    display: none;
  }
  .index5 .content {
    margin-top: 20px;
    flex-direction: column;
  }
  .index5 .content .left {
    width: 100%;
    position: relative;
    display: none;
  }
  .index5 .left a .img {
    padding-top: 62.5%;
  }
  .index5 .content .right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .index5 .right .top {
  }
  .index5 .right .top a {
    width: 100%;
    margin-bottom: 20px;
  }
  .index5 .right .top a .text h4 {
    font-size: 18px;
  }
  .index5 .right .top a .text h6 {
    margin-top: 0;
  }
  .index5 .right .top a .text {
    padding: 20px 16px;
  }
  .index5 .right .bottom {
    display: none;
  }
  .footer .top .left {
    display: none;
  }
  .footer .top .right {
    display: block;
    margin-left: -30px;
  }
  .footer .top {
    padding: 40px 0;
  }
  .footer .bottom h5 {
    font-size: 14px;
    text-align: center;
  }
  .footer .bottom {
    padding: 10px 0;
  }
  .footer .bottom h6 {
    margin-top: 10px;
    text-align: center;
  }
  .footer .bottom h6 span {
    margin-left: 0;
  }
  .banner2_i {
    height: 240px;
  }
  .banner2_text h4 {
    font-size: 24px;
  }
  .banner2_text h6 {
    font-size: 16px;
    margin-top: 0;
  }
  .banner2_text a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin-top: 10px;
  }
  .about1 {
    padding: 80px 0;
  }
  .about1 .content {
    margin-top: 40px;
    flex-direction: column;
  }
  .about1 .content .img {
    position: relative;
    width: 100%;
    height: 200px;
  }
  .about1 .content .text {
    width: 100%;
    margin: 0;
    padding: 20px 5%;
  }
  .about1 .content .text > img {
    width: 50%;
  }
  .about1 .content .text h4 {
    margin-top: 20px;
  }
  .about1 .content .text ul li {
    width: 100%;
    margin-right: 0;
    border-right: 0;
  }
  .about2 {
    padding: 80px 0;
  }
  .about2 ul {
    margin-top: 40px;
  }
  .about2 ul li {
    margin-bottom: 30px;
  }
  .about2 ul li h4 {
    font-size: 24px;
  }
  .about2 ul li h6 {
    font-size: 18px;
  }
  .about_wrap .about_tit h4 {
    font-size: 24px;
  }
  .about3 {
    padding-bottom: 80px;
  }
  .about3 ul {
    flex-direction: column;
    margin: 0;
  }
  .about3 ul li {
    margin-top: 20px;
  }
  .about3 ul li.about3_1 .box {
    margin-top: 20px;
  }
  .about3 ul li.about3_2 .box {
    margin-top: 20px;
  }
  .about3 ul li.about3_3 .box {
    margin-top: 20px;
  }
  .about4 {
    padding: 80px 0;
  }
  .about4 .common_tit h4 {
    font-size: 24px;
  }
  .about5 {
    padding: 80px 0;
  }
  .about5 .content {
    flex-direction: column;
  }
  .about5 .content .left {
    width: 100%;
    margin-top: 20px;
  }
  .about5 .content .right {
    width: 100%;
  }
  .about5 .content .left ul li {
    width: 33%;
    min-width: 33%;
    margin-top: 20px;
  }
  .about5 .content .left ul li h4 {
    font-size: 16px;
  }
  .about5 .content .left ul li h6 {
    font-size: 16px;
  }
  .about5 .content .left ul li h6 span {
    font-size: 40px;
    line-height: 40px;
  }
  .about_wrap .about_tit h4 {
    font-size: 18px;
  }
  .about_wrap .about_tit h6 {
    margin-top: 10px;
  }
  .about5 .content .right {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }
  .about5 .content .right .text0 {
    display: none;
  }
  .about5 .content .right .text1,
  .about5 .content .right .text2 {
    width: 100%;
    -webkit-transform: translate(0, 0) !important;
    -moz-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    position: static;
  }
  .about5 .content .right .text1 {
    height: 220px;
  }
  .about5 .content .right .text2 {
    background: #fff !important;
    margin-top: 10px;
    padding: 20px;
  }
  .about5 .content .right .text2 h6 {
    font-size: 22px;
  }
  .product_wrap .product_nav {
    width: 90%;
    margin: 0 auto;
    padding: 0 1px;
  }
  .product_nav .product_nav_inner {
    justify-content: flex-start;
  }
  .product_wrap .product_nav .product_nav_inner a {
    margin-left: 0;
  }
  .product_wrap .product_item {
    padding: 40px 0;
  }
  .product_item .text_t a {
    width: 120px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .product_info1_1 {
    padding: 80px 0;
    flex-direction: column;
  }
  .product_info1_1 .img {
    width: 100%;
  }
  .product_info1_1 .text {
    width: 100%;
    margin-top: 20px;
    padding: 0 5%;
  }
  .product_info1_1 .text_t {
    margin-bottom: 20px;
  }
  .product_info1_1 .text_t h4 {
    font-size: 28px;
  }
  .product_info1_1 .text_t h4 span {
    font-size: 32px;
  }
  .product_info1_1 .text_t h6 {
    font-size: 20px;
  }
  .product_info1_1 .text_b {
    font-size: 16px;
    line-height: 30px;
  }
  .product_info1_2 {
    padding: 80px 0;
  }
  .product_info1_2 .content {
    margin: 20px auto 0;
    padding: 20px 0;
  }
  .product_info1_2 .content li {
    width: 50%;
    padding: 20px 2% 0;
  }

  .product_info1_2 .content li:nth-child(5n) {
    border-right: 1px solid #ddd;
  }

  .product_info1_2 .content li:nth-child(2n) {
    border-right: 0;
  }

  .product_info1_2 .content li:nth-child(5n)::after {
    display: none;
  }

  .product_info1_2 .content li:nth-child(5n + 1)::after {
    display: none;
  }

  .product_info1_2 .content li:nth-child(-n + 5) {
    border-top: 1px solid #ddd;
    padding: 20px 2% 0;
  }
  .product_info1_2 .content li:nth-child(-n + 2) {
    border-top: 0;
    padding-top: 0;
  }
  .product_info1_2 .content li h5 {
    font-size: 18px;
  }
  .product_info1_2 .content li h6 {
    font-size: 15px;
    line-height: 24px;
  }
  .product_info1_3 {
    padding: 80px 5%;
    flex-direction: column;
  }
  .product_info1_3 .text {
    width: 100%;
    margin-top: 20px;
  }
  .product_info1_3 .img {
    width: 100%;
    order: -1;
  }
  .product_info1_3 .text h4 {
    font-size: 28px;
  }
  .product_info1_3 .text h4 span {
    font-size: 24px;
  }
  .product_info1_3 .text h5 {
    font-size: 16px;
    line-height: 28px;
  }
  .product_info1_3 .text h6 {
    font-size: 24px;
    margin-top: 20px;
  }
  .product_info1_3 .text h6 span {
    font-size: 36px;
  }
  .product_info1_4 {
    padding: 80px 5%;
    flex-direction: column;
  }
  .product_info1_4 .text {
    width: 100%;
    margin-top: 20px;
  }
  .product_info1_4 .img {
    width: 60%;
    order: -1;
  }
  .product_info1_4 .text h4 {
    font-size: 32px;
  }
  .product_info1_4 .text h4 span {
    font-size: 22px;
  }
  .product_info1_4 .text h5 {
    font-size: 22px;
    line-height: 36px;
  }
  .product_info1_4 .text .tip {
    margin: 20px 0 30px;
  }
  .product_info1_4 .text .tip h6 {
    font-size: 16px;
    line-height: 30px;
  }
  .product_info1_4 .text h6 {
    font-size: 16px;
    line-height: 30px;
  }
  .product_info1_5 {
    padding: 0px 5%;
    flex-direction: column;
    margin: 80px auto;
  }
  .product_info1_5 .text {
    width: 100%;
    margin-top: 20px;
  }
  .product_info1_5 .img {
    width: 100%;
    order: -1;
  }
  .product_info1_5 .text h4 {
    font-size: 24px;
  }
  .product_info1_5 .text h4 span {
    font-size: 22px;
  }
  .product_info1_5 .text h6 {
    margin-top: 20px;
    font-size: 16px;
    line-height: 30px;
  }
  .product_info1_6 {
    padding: 0px;
    flex-direction: column;
    margin: 80px auto;
  }
  .product_info1_6 .swiper {
    padding: 0 50px;
    margin-top: 20px;
  }
  .product_info1_6 .swiper .swiper-slide h6 {
    font-size: 16px;
    margin-top: 10px;
  }
  .product_info4_5 {
    padding: 80px 5%;
    margin: 0px auto;
  }
  .dealer1 {
    margin: 80px auto;
  }
  .dealer1 .content {
    display: block;
    margin-top: 240px;
  }
  .dealer1 .img {
    width: 40%;
    margin-left: 5%;
  }
  .dealer1 .img2 {
    margin-top: 580px;
  }
  .dealer1 .img .block .line_1 {
    display: none;
  }
  .dealer1 .img .block .line_2 {
    display: none;
  }
  .dealer1 .img .block1 {
    right: auto;
    left: 0%;
  }
  .dealer1 .img .block2 {
    right: auto;
    left: 0%;
  }
  .dealer1 .img .block3 {
    right: auto;
    left: 0%;
  }
  .dealer1 .img .block4 {
    top: -140%;
  }
  .dealer1 .img .block5 {
    top: 50%;
  }
  .dealer1 .img .block6 {
    top: 226%;
  }
  .dealer1 .img .text {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
  }
  .dealer1 .img .block1 {
    top: -80%;
  }
  .dealer1 .img .block3 {
    top: 180%;
  }
  .dealer1 .img .block1,
  .dealer1 .img .block2,
  .dealer1 .img .block3,
  .dealer1 .img .block4 {
    left: 80%;
    align-items: flex-start;
    padding-left: 40px;
    padding-right: 0;
  }

  .dealer1 .img .block1 .num,
  .dealer1 .img .block2 .num,
  .dealer1 .img .block3 .num {
    left: 16px;
    right: auto;
  }

  .dealer1 .img .block1 .name,
  .dealer1 .img .block2 .name,
  .dealer1 .img .block4 .name {
    padding: 0 30px 0 42px;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }

  .dealer1 .img .block1 .name em,
  .dealer1 .img .block2 .name em,
  .dealer1 .img .block4 .name em {
    -webkit-transform: skewX(20deg);
    -moz-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    -o-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  .dealer1 .img .block .desc {
    width: 180px;
  }
  .dealer2 {
    margin: 320px auto 80px;
  }
  .dealer2 ul > li {
    flex-direction: column;
    margin: 40px 0;
  }
  .dealer2 .text {
    width: 100%;
    padding-left: 0;
  }
  .dealer2 .text h3 {
    font-size: 50px;
    margin: 0;
  }
  .dealer2 .text h3::after {
    display: none;
  }
  .dealer2 .text h4 {
    font-size: 20px;
  }
  .dealer2 .text h5 {
    margin-top: 20px;
    font-size: 15px;
    line-height: 30px;
  }
  .dealer2 .text h5 span {
    font-size: 16px;
  }
  .dealer2 .text h2 {
    font-size: 20px;
  }
  .dealer2 .text ol li {
    font-size: 15px;
    line-height: 30px;
  }
  .dealer2 .img,
  .dealer2 ul > li:nth-child(2n) .img {
    width: 100%;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    order: 1;
    margin-top: 10px;
  }
  .dealer3 {
    margin: 80px 0;
    padding: 80px 0;
  }
  .cooperation3 .container {
    margin-top: 20px;
    flex-direction: column;
    padding: 40px 5%;
  }
  .cooperation3 .left {
    width: 100%;
    padding: 0;
  }
  .cooperation3 .left .text .inner h4 {
    font-size: 20px;
  }
  .cooperation3 .left .img {
    width: 50%;
  }
  .cooperation3 .left .btns_wrap {
    margin-top: 20px;
  }
  .cooperation3 .left .btns .prevButton,
  .cooperation3 .left .btns .nextButton {
    width: 40px;
    height: 40px;
  }
  .cooperation3 .right {
    width: 100%;
    margin-top: 20px;
  }
  .cooperation3 .right .swiper-slide {
  }
  .dealer4 {
    margin: 80px 0;
  }
  .dealer4 .container {
    flex-direction: column;
  }
  .dealer4 .left {
    position: static;
    width: 100%;
    height: 200px;
  }
  .dealer4 .right {
    width: 100%;
    margin: 0;
    padding: 40px 5%;
  }
  .dealer4 .right ul li {
    font-size: 16px;
    margin-top: 10px;
  }
  .dealer5 {
    padding: 80px 0;
    height: auto;
  }
  .dealer5 .container {
    margin-top: 20px;
  }
  .dealer5 .container ul {
    flex-wrap: wrap;
  }
  .dealer5 .container ul li {
    margin-top: 20px;
  }
  .dealer5 .container ul li:nth-child(2n) {
    width: 8%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dealer5 .container ul li:nth-child(2n) img {
    width: 50%;
  }
  .dealer5 .container ul li:nth-child(2n + 1) {
    width: 28%;
    padding-top: 50px;
    height: 200px;
  }
  .dealer5 .container ul li:nth-child(6n) {
    display: none;
  }
  .dealer5 .container ul li:nth-child(2n + 1) img:nth-child(1) {
    width: 64px;
    top: 10px;
  }
  .dealer5 .container ul li:nth-child(2n + 1) img:nth-child(2) {
    width: 60%;
  }
  .dealer5 .container ul li span {
    font-size: 16px;
    line-height: 26px;
    padding-left: 0;
    top: 10px;
  }
  .dealer5 .container ul li h6 {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
  }
  .dealer6 {
    margin: 80px 0;
  }
  .cooperation5 .container {
    flex-direction: column;
  }
  .cooperation5 .left {
    width: 100%;
    height: 340px;
  }
  .cooperation5 .right {
    padding: 32px 5%;
    width: 100%;
  }
  .cooperation5 .right h4 {
    font-size: 20px;
    line-height: 30px;
  }
  .cooperation5 .right .layui-form {
    margin-top: 20px;
  }
  .cooperation5 .right .layui-form .layui-form-w24 {
    width: 100%;
    margin: 0!important;
    height: 50px;
  }
  .cooperation5 .right .layui-form .layui-form-w48 {
    height: 50px;
  }
  .cooperation5 .right .layui-form .layui-form-textarea {
    margin-top: 20px;
  }
  .layui-form-item .layui-input-inline {
    margin: 0;
  }
  .cooperation5 .right .layui-form .layui-form-radios .layui-input-inline .radio-group {
    flex-wrap: wrap;
  }
  .cooperation5 .right .layui-form .layui-input-inline .layui-form-radio {
    margin-right: 0;
    width: calc(100% - 23px);
    justify-content: flex-start;
    height: 40px;
  }
  .cooperation5 .right .layui-form .layui-btn {
    width: 100%;
    height: 40px;
  }
  .cooperation1 {
    margin: 80px auto;
  }
  .cooperation1 ul {
    margin-top: 20px;
  }
  .cooperation1 ul li {
    margin: 0 20px;
  }
  .cooperation1 ul li h6 span {
    font-size: 40px;
  }
  .cooperation2 {
    padding: 80px 0;
  }
  .cooperation2 ul {
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
  }
  .cooperation2 ul > img {
    display: none;
  }
  .cooperation2 ul li {
    position: static;
    width: 25%;
    margin-top: 20px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .cooperation2 ul li h4 {
    padding-top: 0;
  }
  .cooperation2 ul li h4::before {
    display: none;
  }
  .cooperation3 {
    margin: 80px auto;
  }
  .cooperation4 {
    margin: 80px auto;
    padding: 80px 0;
    height: auto;
  }
  .cooperation4 .content {
    padding: 40px 5%;
    flex-direction: column;
  }
  .cooperation4 .content .left {
    font-size: 20px;
  }
  .cooperation5 {
    margin: 80px 0;
  }
  .marketing1 {
    margin: 80px auto;
  }
  .marketing1 .layui-form {
    margin-top: 20px;
  }
  .marketing1 .layui-form .layui-form-label {
    display: none;
  }
  .marketing1 .layui-form .layui-btn {
    width: 120px;
    height: 40px;
    margin-left: 20px;
  }
  .marketing1 .content {
    margin-top: 20px;
  }
  .marketing1 .content a {
    margin-right: 0;
    width: 100%;
    margin-top: 10px;
  }
  .marketing1 .content a em {
    font-size: 14px;
  }
  .marketing2 {
    padding: 80px 0;
  }
  .marketing2 .content {
    margin-top: 20px;
    flex-direction: column;
  }
  .marketing2 .content .left {
    width: 100%;
    margin: -20px 0;
    font-size: 14px;
    line-height: 22px;
  }
  .marketing2 .content .left .item {
    margin: 40px 0;
    padding: 0 30px 0 55px;
    font-size: 15px;
    line-height: 24px;
    height: 70px;
  }
  .marketing2 .content .left .item .img {
    width: 80px;
    height: 80px;
    left: -45px;
  }

  .marketing2 .content .left .item em {
    width: 100px;
    height: 100px;
    left: -55px;
  }
  .marketing2 .content .right {
    width: 100%;
    padding-left: 0;
    padding-top: 40px;
  }
  .marketing2 .content .right h4 {
    font-size: 20px;
  }
  .marketing3 {
    margin: 80px auto;
  }
  .marketing3 .container {
    margin-top: 10px;
    flex-direction: column;
  }
  .marketing3 .container .item {
    width: 100%;
    padding: 40px 5%;
    margin-top: 10px;
    height: auto;
  }
  .marketing3 .container .item h4 {
    font-size: 24px;
  }
  .marketing3 .container .item h6 {
    font-size: 16px;
    margin-top: 0px;
  }
  .marketing3 .container .item .as {
    margin-top: 10px;
  }
  .marketing3 .container .item .as a {
    width: 80px;
    height: 80px;
  }
  .marketing3 .container .item .as a img {
    margin-left: -29px;
    margin-top: -25px;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
  }
  .marketing4 {
    padding: 80px 0;
  }
  .marketing4 .content .item {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
  .marketing4 .content .item .text {
    height: 60px;
  }
  .marketing4 .content .item .text h6 {
    font-size: 16px;
  }
  .marketing5 {
    margin: 80px auto;
  }
  .marketing5 .container h4 {
    margin-top: 20px;
  }
  .marketing5 .container ul {
    margin-top: 0px;
    flex-wrap: wrap;
  }
  .marketing5 .container ul li {
    margin: 20px 0 0;
    width: 50%;
    padding: 0 10px;
  }
  .marketing5 .container ul li h5 {
    font-size: 20px;
  }
  .marketing5 .container ul li h5 span {
    font-size: 50px;
  }
  .marketing5 .content {
    display: block;
    margin-top: 20px;
  }
  .marketing5 .content .swiper-wrapper {
    flex-wrap: nowrap;
  }
  .marketing5 .content .item {
    width: 49%;
    margin-right: 2%;
    margin-top: 2%;
  }
  .marketing5 .content .item:nth-child(2n) {
    margin-right: 0;
  }
  .news .content a {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
  .news .content a:nth-child(-n + 3) {
    margin-top: 10px;
  }
  .news .content a .text .left {
    width: calc(100% - 108px);
    padding-right: 10px;
  }
  .news .content a .text .right {
    width: 108px;
  }
  .news .content a .text {
    padding: 20px 5%;
  }
  .news .content a .text h4 {
    font-size: 18px;
  }
  .news .content a .text h6 {
    font-size: 14px;
    margin-top: 0px;
  }
  .news .content a .text .right .dd {
    font-size: 36px;
  }
  .news .content a .text .right .yyyy-mm {
    font-size: 14px;
  }
  .bread {
    display: none;
  }
  .detail .content {
    padding: 20px 0;
    margin: 20px 0;
  }
  .detail .tit {
    font-size: 24px;
  }
  .detail .desc {
    font-size: 14px;
  }
  .detail .bottom .left a {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .detail .bottom .right {
    display: none;
  }
  .join1 {
    margin: 80px auto;
  }
  .join1 .line {
    display: none;
  }
  .join1 .container {
    padding: 0;
    flex-direction: column;
  }
  .join1 .left,
  .join1 .right {
    padding: 0;
    width: 100%;
    margin-top: 20px;
  }
  .join1 .container .item h4 {
    font-size: 22px;
  }
  .join1 .container .item:nth-child(2) {
    margin-top: 20px;
  }
  .swiper .prevButton,
  .swiper .nextButton {
    width: 40px;
    height: 40px;
  }
  .join2 .swiper {
    margin: 20px auto 80px;
    padding: 0 50px;
  }
  .join2 .swiper-container {
    width: 100%;
  }
  .join4 {
    margin: 80px auto;
  }
  .join4 .top {
    margin-top: 20px;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .join4 .top .left {
    width: 100%;
    padding-right: 0px;
    margin-top: 20px;
  }
  .join4 .top .left h4 {
    font-size: 22px;
  }
  .join4 .top .right {
    width: 100%;
    margin-top: 20px;
    height: 200px;
  }
  .join4 .bot {
    margin-top: 20px;
  }
  .join4 .bot .item {
    padding: 20px 5%;
    flex-direction: column;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-top: 10px;
  }
  .join4 .bot .item .left {
    width: 100%;
  }
  .join4 .bot .item .right {
    width: 100%;
    text-align: left;
  }
  .join4 .bot .item .right h5 {
    justify-content: flex-start;
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }
  .join4 .bot .item .left h4 {
    font-size: 20px;
  }
  .join4 .bot .item .left h6 {
    font-size: 14px;
    line-height: 20px;
  }
  .join_detail_top ._top {
    flex-direction: column;
  }
  .join_detail_top .right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
  }
  .join_detail_top .right a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    order: 1;
    font-size: 14px;
  }
  .join_detail_top .right .time {
    text-align: left;
    margin: 0;
  }
  .join_detail_top ._bot span {
    font-size: 14px;
    padding: 0 8px;
  }
  .contact_wrap .banner2_text {
    margin-top: 0;
  }
  .contact1 {
    height: auto;
    background: transparent !important;
    margin-top: 80px;
  }
  .contact1 .left {
    width: 100%;
    padding: 40px 5%;
    position: static;
    background-color: #044EB5;
    min-width: auto;
  }
  
  .contact1 .left2 {
  display:none;
  }
  .contact1 .left ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact1 .left ul li h6 {
    font-size: 20px;
    margin-top: 0;
  }
  .contact1 .left h5 {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .contact1 .left h5 span {
    display: block;
    margin-top: 10px;
  }
  .contact1 .img {
    overflow: hidden;
  }
  .contact1 .img img {
    margin-left: -160%;
    max-width: 1600px;
    width: 1000px;
  }
  .contact2 h4 {
    font-size: 22px;
  }
  .contact2 .layui-form .layui-form-text {
    margin-right: 0;
    width: 100%;
    padding: 0;
  }
  .contact2 .layui-form .layui-form-radios {
    flex-direction: column;
  }
  .contact2 .layui-form .layui-form-radios .layui-form-label {
    width: 100%;
    text-align: left;
  }
  .contact2 .layui-form .layui-form-item.layui-form-radios .layui-input-inline {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .contact2 .layui-form .layui-input-inline .layui-form-radio {
    margin: 0 30px 0 8px;
  }
  .contact2 .layui-form .layui-form-button {
    margin-top: 40px;
  }
  .contact2 .layui-form .layui-form-button .layui-btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
  }
  .research1 {
    padding: 80px 0;
  }
  .research1 .container {
    flex-direction: column;
    margin-top: 40px;
  }
  .research1 .left h4 {
    font-size: 22px;
  }
  .research1 .left {
    width: 100%;
  }
  .research1 .right {
    width: 90%;
    margin-top: 40px;
  }
  .research1 .left ul {
    margin-top: 20px;
  }
  .research1 .right .text1 h6 span, .research1 .left ul li h6 span {
    font-size: 50px;
  }
  .research1 .left ul li h6 {
    font-size: 15px;
    line-height: 24px;
  }
  .research1 .left h5 {
    width: 100%;
    margin-top: 20px;
  }
  .research1 .right .text2 {
    width: 120px;
    height: 120px;
  }
  .research2 {
  }
  .research2 .container {
    flex-direction: column;
    background: transparent !important;
    padding: 0;
  }
  .research2 .container .item {
    width: 100%;
    padding: 40px 5%;
    color: #333;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-top: 10px;
  }
  .research2 .container .item > * {
    position: static;
  }
  .research2 .container .item h4 {
    line-height: 24px;
  }
  .research2 .container .item h5 {
    color: #333;
  }
  .research2 .container .item h6 {
    opacity: 1;
    color: #666;
    -webkit-line-clamp: 3;
    height: 60px;
  }
  .research2 .container .item span {
    background: #044EB5;
    opacity: 1;
    color: #fff;
    font-size: 14px;
    width: 120px;
    height: 40px;
    line-height: 40px;
  }
  .research2 .container .item span img {
    margin-left: 0px;
  }
  .research3 {
    margin: 80px 0 0;
    padding: 80px 0;
  }
  .research3 .content {
    margin-top: 20px;
  }
  .research3 .content .left {
    display: none;
  }
  .research3 .content .right {
    width: 100%;
  }
  .research3 .content .right li:nth-child(1),
  .research3 .content .right li:nth-child(2),
  .research3 .content .right li:nth-child(3),
  .research3 .content .right li:nth-child(4),
  .research3 .content .right li:nth-child(5) {
    margin-left: 0;
    padding: 10px;
    min-width: auto;
    background: #fff;
    width: 100%;
    height: auto;
    min-height: 60px;
    border-radius: 8px;
  }
  .research3 .content .right li::before {
    display: none;
  }
  .research3 .content .right li span {
    font-size: 20px;
    width: 60px;
    text-align: right;
  }
  .research3 .content .right li em {
    flex: 1;
  }
  .research4 {
    padding: 80px 0;
  }
  .research4 .swiper {
    padding: 0 50px;
  }
  .research5 {
    padding: 80px 0;
  }
  .research5 img {
    margin-top: 20px;
  }
  .research6 {
    padding: 80px 0;
  }
  .research6 h5 {
    font-size: 16px;
    margin: 20px auto;
  }
  .research6 .content a {
    margin-top: 10px;
    width: 100%;
    margin-right: 0;
  }
  .research6 .content a:nth-child(-n + 3) {
    margin-top: 10px;
  }
  .research6 .content a .text {
    font-size: 18px;
  }
  .result1 .container {
    flex-direction: column;
    justify-content: center;
  }
  .result1 .container .left {
    width: 100%;
    font-size: 22px;
    font-weight: bold;
  }
  .result1 .container .right {
    width: 100%;
    margin-top: 20px;
  }
  .result1 .right input {
    height: 40px;
  }
  .result1 .right a {
    height: 40px;
  }
  .result2 .content a {
    margin-top: 40px;
  }
  .result2 .content a h4 {
    font-size: 18px;
    line-height: 30px;
  }

  .result2 .content a h6 {
    margin-top: 10px;
  }

  .index3 .content .product_item {
    padding: 0;
  }
  .index4 .product_nav {
    width: 100%;
  }
  .index3 .bottom .left {
    width: 90px;
  }
  .index3 .bottom .left .prevButton,
  .index3 .bottom .left .nextButton {
    width: 40px;
    height: 40px;
  }
  .index2 .bottom .left {
    width: 90px;
  }
  .index2 .bottom .left .prevButton,
  .index2 .bottom .left .nextButton {
    width: 40px;
    height: 40px;
  }
  .index2 .bottom .right {
    margin-left: 20px;
    margin-right: 20px;
  }

  .swiper .swiper-pagination  {
    text-align: center;
    position: relative;
    margin-top: 20px;
  }
  .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #044eb5;
  }
  .index2 .content .item .img_h {
    width: 69px;
    margin: 0 auto;
  }
  .index2 .content .item h4 {
    text-align: center;
  }
  .index2 .content .item h4::before {
    margin: 20px auto;
  }
  .z_tanchuang .tbox .modal {
    padding: 10px;
  }
  .z_tanchuang .tbox .modal .out {
    top: -50px;
    right: 0;
  }

  .index3 .swiper-pagination  {
    text-align: center;
    position: relative;
    margin-top: 20px;
  }
  .index3 .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #fff;
    opacity: 1;
  }
  .index3 .swiper-pagination .swiper-pagination-bullet-active {
    background: #044eb5;
  }
  .banner .text {
    align-items: flex-start;
    padding-top: 20px;
  }
}



.product-des{margin-bottom:70px;border-bottom:1px #dcdcdc solid;padding:0 0 90px;}
.product-des .img{float:left;width:50%;}
.product-des .img img{max-width:98%;}
.product-des .txt{float:right;width:47%;}
.product-des .txt .tit{margin-bottom:50px;}
.product-des .txt .tit li{font-size: 18px;font-weight: normal;float:left;width:33.333333%;margin-right:-1px;text-align:center;border:1px #86878a solid;padding:13px 0;cursor:pointer;box-sizing:border-box;}
.product-des .txt .tit .cu{color:#fff;background:#044eb5;}
.product-des .txt .tab{min-height1:500px;color:#111;}
.product-des .txt .con{display:none;height:350px;margin-bottom:60px;line-height:1.8;overflow-y1:auto;}
.product-des .txt .con:first-child{display:block;}
.product-des .txt .con p{margin:0 0 1.5em;}
.product-des .txt .con p:last-child{margin:0;}
.product-des .txt .down{position:relative;padding-right:65px;transition:all .5s linear;}
.product-des .txt .down:before{content:'';position:absolute;top:22px;right:0;display:inline-block;width:22px;height:2px;background:#86878a;opacity:.68}
.product-des .txt .down:after{content:'';position:absolute;top:1px;right:0;display:inline-block;width:22px;height:21px;background:url(../images/icon_down.png) no-repeat;}
.product-des .txt .down:hover:after{transition:all .6s ease-in-out;animation:adown 1.2s infinite;}

#equipment li{width:30%;margin:1%;float:left;display:block}
#equipment h6{text-align:center;font-size:18px;padding-top:8px}


@media screen and (max-width: 880px) {
    .product-focus dd, .product-focus dd:nth-child(even), .product-des .img {
        float: none;
        width: 100%;
        text-align: center;
    }
	#equipment li{width:100%}
}

@media screen and (max-width: 880px) {
    .product-des .txt, .product-list li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
}



#product_nav .h6{font-size: 12px;}