@charset "utf-8";

/* base */
@font-face {
  font-family: 'Akr';
  src: url(../fonts/Akrobat-Black.ttf);
}

*,
*: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%;
  /* font-size: calc(100vw / 7.5); */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0.2s;
  -moz-transition: all 0.2s ease-in-out 0.2s;
  -ms-transition: all 0.2s ease-in-out 0.2s;
  -o-transition: all 0.2s ease-in-out 0.2s;
  transition: all 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: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  color: #337ab7;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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%;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

pre {
  overflow: auto;
}


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;
}

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-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

.visible-xs {
  display: none !important;
}

.container::after,
.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

.container {
  margin: auto;
  min-height: 1px;
  width: 100%;
  max-width: 1200px;
}

.line_clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line_clamp2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
  line-height: 24px;
}

.line_clamp3 {
  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;
}

@media (max-width: 1360px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}

/* base */

/* scrollbar */
@media (min-width: 1024px) {
  ::-webkit-scrollbar-track-piece {
    width: 10px;
    background-color: #ccc;
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 6px
  }

  ::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #666;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #333;
  }

  ::selection {
    background: #ccc;
    color: #fff;
  }
}

/* scrollbar */

/* animation */
/* 
  animation: jump_down 1.8s infinite ease-in-out;
	-moz-animation: jump_down 1.8s infinite ease-in-out;
	-webkit-animation: jump_down 1.8s infinite ease-in-out;
  -o-animation: jump_down 1.8s infinite ease-in-out;
*/

/* quan */
@-webkit-keyframes quan {
  0% {
    -webkit-transform: translateX(0px);
    opacity: 1
  }

  49% {
    -webkit-transform: translateX(28px);
    opacity: 0
  }

  50% {
    -webkit-transform: translateX(-28px);
    opacity: 0
  }

  100% {
    -webkit-transform: translateX(0px);
    opacity: 1
  }
}

@keyframes quan {
  0% {
    transform: rotateZ(360deg);
  }

  100% {
    transform: rotateZ(0);
  }
}
/* quan */

/* icoHover */
@-webkit-keyframes icoHover {
  0% {
    -webkit-transform: rotateZ(360deg);
  }

  100% {
    -webkit-transform: rotateZ(0);
  }
}

@keyframes icoHover {
  0% {
    transform: translateX(0px);
    opacity: 1
  }

  49% {
    transform: translateX(28px);
    opacity: 0
  }

  50% {
    transform: translateX(-28px);
    opacity: 0
  }

  100% {
    transform: translateX(0px);
    opacity: 1
  }
}
/* icoHover */

/* icoHover2 */
@-webkit-keyframes icoHover2 {
  0% {
    -webkit-transform: translateY(0px);
    opacity: 1
  }

  49% {
    -webkit-transform: translateY(-50%);
    opacity: 0
  }

  50% {
    -webkit-transform: translateY(50%);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0px);
    opacity: 1
  }
}

@keyframes icoHover2 {
  0% {
    transform: translateY(0px);
    opacity: 1
  }

  49% {
    transform: translateY(-50%);
    opacity: 0
  }

  50% {
    transform: translateY(50%);
    opacity: 0
  }

  100% {
    transform: translateY(0px);
    opacity: 1
  }
}
/* icoHover2 */

/* icoHover3 */
@-webkit-keyframes icoHover3 {
  0% {
    -webkit-transform: translateY(0px);
    opacity: 1
  }

  49% {
    -webkit-transform: translateY(50%);
    opacity: 0
  }

  50% {
    -webkit-transform: translateY(-50%);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0px);
    opacity: 1
  }
}

@keyframes icoHover3 {
  0% {
    transform: translateY(0px);
    opacity: 1
  }

  49% {
    transform: translateY(50%);
    opacity: 0
  }

  50% {
    transform: translateY(-50%);
    opacity: 0
  }

  100% {
    transform: translateY(0px);
    opacity: 1
  }
}
/* icoHover3 */

/* jump_down */
@keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-moz-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-webkit-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-o-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

/* jump_down */

/* animation */

/* page */
/* 
  <div class="pagination">
    <div class="page_pc hidden-xs clearfix">
      <span><a href="javascript:;">上一页</a></span>
      <span class="page_num current"><a href="javascript:;">1</a></span>
      <span class="page_num"><a href="javascript:;">2</a></span>
      <span class="page_num"><a href="javascript:;">3</a></span>
      <span><a href="javascript:;">下一页</a></span>
      <em>共10页</em>
    </div>
    <a href="javascript:;" class="page_sj visible-xs">加载更多</a>
  </div>
*/
.pagination {
  margin-top: 30px;
}
.page_pc {
  text-align: center;
  line-height: 40px;
  height: 40px;
  font-size: 0;
}

.page_pc a {
  color: #333;
  margin: 0 5px;
  font-family: Arial;
  font-size: 18px;
  color: #37c6c0;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: solid 1px #e0e0e0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  vertical-align: middle;
}

.page_pc a:hover,
.page_pc a.act {
  background: #37c6c0;
  color: #fff;
}

.page_pc em {
  font-style: normal;
  font-size: 12px;
  color: #666;
}

.page_sj {
  width: 100px;
  height: 32px;
  background: #37c6c0;
  color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 32px;
  display: none;
  text-align: center;
}

.pagination .pro1_btn {
  position: relative;
  left: auto!important;
  right: auto!important;
}
.pagination .pro1_btn.prev {
  margin-right: 30px;
}
.pagination .pro1_btn.next {
  margin-left: 30px;
}

/* page */

/* common */
.md {
  position: relative;
  top: -100px;
}
.commonP {
  position: static;
  font-size: 0;
  text-align: center;
}
.commonP .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  background: #f0f0f0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 5px;
  opacity: 1;
  border-radius: 0;
}
.commonP .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #37c6c0;
}

.common_tit h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  color: #333;
  margin-top: 12px;
}
.common_tit h3::after {
  content: '';
  width: 20px;
  height: 2px;
  background-color: #1db0b8;
  display: block;
  margin-top: 16px;
}
.common_tit h5 {
  font-family: Arial;
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
.common_tit.white * {
  color: #fff;
}
.common_tit.white h3::after {
  background: #fff;
}
.common_tit.r * {
  text-align: right;
}
.common_tit.r h3::after {
  margin: 16px 0 auto auto;
}
.common_tit2 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.common_tit2::after {
  content: '';
  display: block;
  margin: 16px auto 0;
  width: 20px;
  height: 2px;
  background-color: #1db0b8;
}
#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_inner .video_inner_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
#video_model .video_inner .video_inner_mask img {
  cursor: pointer;
}
#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;
}
.common_btn span,
.common_btn a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.common_btn span img,
.common_btn a img {
  margin-left: 5px;
}
a:hover .common_btn span,
.common_btn a:hover,
.common_ani:hover {
  -webkit-animation: icoHover .8s linear;
  animation: icoHover .8s linear;
}
.common_ani2:hover {
  -webkit-animation: icoHover2 .8s linear;
  animation: icoHover2 .8s linear;
}
/* common */

/* header */
.headerSJ {
  display: none;
}
.header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header.fixed {
  box-shadow: 0px 0px 5px rgba(7, 7, 7, 0.1);
}
.header.fixed .header_inner {
  height: 70px;
}
.header_inner .logo {
  width: 105px;
}
.header_nav li {
  padding: 0 20px;
  float: left;
}
.header_nav li:last-child {
  margin-right: 0px;
}
.header_nav li > a {
  font-size: 16px;
  display: inline-block;
  height: 42px;
  line-height: 42px;
  color: #333;
  position: relative;
}
.header_nav li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background-color: #37c6c0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header_nav li.active a::after,
.header_nav li a:hover::after {
  width: 10px;
}
.header_inner .lan {
  position: relative;
  height: 100%;
}
.header_inner .lan p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 20px;
  background: url(../images/lan_r.png) center right no-repeat;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  height: 100%;
  cursor: pointer;
}
.header_inner .lan p img {
  margin-right: 6px;
}
.header_inner .lan ul {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  background: #fff;
  display: none;
  width: 140px;
  text-align: right;
}
.header_inner .lan ul li {
}
.header_inner .lan ul li a {
  display: block;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 32px;
  color: #333;
  font-weight: bold;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header_inner .lan ul li a:hover {
  background: #f0f0f0;
}
.header .second_nav {
  height: 60px;
  background: #f5f5f5;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  line-height: 60px;
  display: none;
  font-size: 0;
}
.header.fixed .second_nav {
  top: 70px;
}
.header .second_nav a {
  display: inline-block;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .second_nav a:hover {
  background: #1db0b8;
  color: #fff;
}
/* header */

/* menu */

/* menu */

/* banner */
.banner {
  position: relative;
}
.banner .swiper-slide {
  overflow: hidden;
  position: relative;
}
.banner .banner_pc {
  width: 100%;
  height: 680px;
}
.banner a {
  display: block;
}
.inner_banner a > .banner_pc,
.inner_banner a > img,
.banner a > .banner_pc,
.banner a > 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);
  -webkit-transition: all 1s ease-in-out 0.4s;
  -moz-transition: all 1s ease-in-out 0.4s;
  -ms-transition: all 1s ease-in-out 0.4s;
  -o-transition: all 1s ease-in-out 0.4s;
  transition: all 1s ease-in-out 0.4s;
}
.banner_text_outer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(100% - 310px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.banner_text h5 {
  font-size: 22px;
  line-height: 28px;
  color: #37c6c0;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s ease-in-out 0.2s;
  -moz-transition: all 1s ease-in-out 0.2s;
  -ms-transition: all 1s ease-in-out 0.2s;
  -o-transition: all 1s ease-in-out 0.2s;
  transition: all 1s ease-in-out 0.2s;
}
.banner_text h3 {
  font-size: 38px;
  font-weight: bold;
  line-height: 52px;
  color: #fff;
  margin-top: 8px;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s ease-in-out 0.4s;
  -moz-transition: all 1s ease-in-out 0.4s;
  -ms-transition: all 1s ease-in-out 0.4s;
  -o-transition: all 1s ease-in-out 0.4s;
  transition: all 1s ease-in-out 0.4s;
}
.banner_text h6 {
  font-family: Arial;
  font-size: 12px;
  line-height: 18px;
  color: #ccc;
  margin-top: 32px;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s ease-in-out 0.6s;
  -moz-transition: all 1s ease-in-out 0.6s;
  -ms-transition: all 1s ease-in-out 0.6s;
  -o-transition: all 1s ease-in-out 0.6s;
  transition: all 1s ease-in-out 0.6s;
}
.inner_banner .swiper-slide-active a > .banner_pc,
.inner_banner .swiper-slide-active a > img,
.banner .swiper-slide-active a > .banner_pc,
.banner .swiper-slide-active a > img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.inner_banner .swiper-slide-active .banner_text h3,
.inner_banner .swiper-slide-active .banner_text h5,
.inner_banner .swiper-slide-active .banner_text h6,
.banner .swiper-slide-active .banner_text h3,
.banner .swiper-slide-active .banner_text h5,
.banner .swiper-slide-active .banner_text h6 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.banner_text h6::after {
  content: '';
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin-top: 36px;
  display: block;
}
.banner_b {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
}
.banner_b::after {
  content: '';
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #f9fbfc;
}
.banner_b_l {
  width: 50%;
  float: left;
  min-height: 1px;
  padding: 30px 40px;
  text-align: right;
}
.banner_b_l p {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  color: #fff;
  text-align: center;
  max-width: 300px;
  float: right;
  margin-right: 50px;
  margin-top: 24px;
}
.banner_b_l .common_btn {
  margin-top: 50px;
}
.banner_b_l .common_btn a {
  float: right;
  color: #fff;
}
.banner_b_r {
  width: 50%;
  float: left;
  min-height: 1px;
  padding: 45px 0;
  position: relative;
  background: #f9fbfc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.banner_b_r_l {
  width: calc(100% - 90px);
  min-height: 1px;
}
.banner_b_r_l ul {
  padding: 0 70px 0 40px;
}
.banner_b_r_l li {
  border-bottom: 1px solid #ebebeb;
}
.banner_b_r_l li a {
  display: block;
  line-height: 54px;
  font-size: 14px;
  color: #666;
  padding-left: 15px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.banner_b_r_l li a:hover {
  color: #37c6c0;
}
.banner_b_r_l li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  background-color: #37c6c0;
}
.banner_b_r_r {
  width: 90px;
  min-height: 1px;
}
.banner_b_r_r .common_btn {
  position: absolute;
  right: 0;
  bottom: 45px;
}
.inner_banner .swiper-slide {
  overflow: hidden;
}
.inner_banner a {
  display: block;
}
.inner_banner .banner_pc {
  width: 100%;
  height: 400px;
}
.banner_p {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  font-size: 0;
  z-index: 9;
  text-align: center;
}
.banner_p .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: solid 2px #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  opacity: 1;
  background: transparent;
  margin: 0 7px;
}
.banner_p .swiper-pagination-bullet-active {
  background: #37c6c0;
  border-color: #37c6c0;
}
.inner_banner .banner_text_outer {
  height: 100%;
}
.inner_banner .banner_text_outer h6::after {
  display: none;
}
.inner_banner .banner_text_outer .common_btn {
  margin-top: 28px;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s ease-in-out 0.8s;
  -moz-transition: all 1s ease-in-out 0.8s;
  -ms-transition: all 1s ease-in-out 0.8s;
  -o-transition: all 1s ease-in-out 0.8s;
  transition: all 1s ease-in-out 0.8s;
}
.inner_banner .swiper-slide-active .banner_text_outer .common_btn {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.inner_banner .banner_text_outer .common_btn span {
  color: #fff;
}
/* banner */

/* index */
.wrapper {
  overflow: hidden;
  padding-top: 100px;
}
.inner_con {
  margin: 40px 0 80px;
  padding: 50px 40px 0px;
  background: #fff;
}
.inner_con_nav {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}

.inner_con_t {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner_con_t .tit {
  font-size: 24px;
  color: #333;
}
.inner_con_t .tit::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 4px;
  background: #37c6c0;
  margin-left: 10px;
}
.inner_con_t_nav {
  font-size: 0;
}
.inner_con_t_nav li {
  display: inline-block;
  padding-left: 20px;
  background: url(../images/right.png) center left 6px no-repeat;
}
.inner_con_t_nav li a {
  font-size: 12px;
  line-height: 18px;
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.inner_con_t_nav li a:hover {
  color: #37c6c0;
}
.inner_con_t_nav li:first-child {
  background: url(../images/home_ico.png) center left no-repeat;
}
.inner_con_nav > ul {
  margin-top: 32px;
}
.inner_con_nav > ul > li {
  margin-right: 20px;
  float: left;
  max-width: 140px;
  width: 100%;
}
.inner_con_nav > ul > li:last-child {
  margin-right: 0px;
}
.inner_con_nav > ul > li a {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  color: #333;
  background: #fff url(../images/inner_con_nav_bg.png) center / cover;
  border: solid 1px #ebebeb;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.inner_con_nav > ul > li a:hover,
.inner_con_nav > ul > li.active a {
  background: #37c6c0 url(../images/inner_con_nav_bg.png) center / cover;
  color: #fff;
  border-color: transparent;
}

.ind_sec1 {
  margin: 40px auto;
}
.ind1_inner {
  background: #fff;
}
.ind1_l {
  float: left;
  padding: 30px 40px;
  width: 200px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: #fcfcfc;
  border-right: 1px solid #f2f2f2;
}
.ind1_m {
  float: left;
  padding: 40px;
  width: calc(50% - 100px);
  height: 300px;
}
.ind1_m h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #333;
}
.ind1_m h5 a {
  float: right;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #1a1a1a;
}
.ind1_m h5 a img {
  margin-left: 10px;
}
.ind1_m p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-top: 24px;
}
.ind1_m .common_btn {
  margin-top: 28px;
}
.ind1_m.ind1_r * {
  color: #fff;
}
.ind_sec2 {
  margin: 40px auto;
}
.ind2_inner {
  background: #fff;
}
.ind2_inner ul {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.ind2_inner ul li {
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ind2_inner ul li a {
  padding: 30px 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.ind2_inner ul li:nth-child(2) {
  left: 50%;
}
.ind2_inner ul li:nth-child(3) {
  left: 75%;
}
.ind2_inner.on1 ul li {
  left: 0;
}
.ind2_inner.on1 ul li:nth-child(2) {
  left: 50%;
}
.ind2_inner.on1 ul li:nth-child(3) {
  left: 75%;
}
.ind2_inner.on2 ul li {
  left: 0;
}
.ind2_inner.on2 ul li:nth-child(2) {
  left: 25%;
}
.ind2_inner.on2 ul li:nth-child(3) {
  left: 75%;
}
.ind2_inner.on3 ul li {
  left: 0;
}
.ind2_inner.on3 ul li:nth-child(2) {
  left: 25%;
}
.ind2_inner.on3 ul li:nth-child(3) {
  left: 50%;
}
.ind2_text h5 {
  font-size: 16px;
  line-height: 28px;
  color: #63fef7;
}
.ind2_text h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  color: #fff;
  margin-top: 8px;
}
.ind2_text h6 {
  font-family: Arial;
  font-size: 12px;
  line-height: 18px;
  color: #ccc;
  margin-top: 16px;
}
.ind2_inner ul li .common_btn span {
  color: #fff;
}
/* index */

/* pro */
.pro {
  margin-left: -40px;
  margin-right: -40px;
}
.pro1 {
  padding: 40px 40px 70px;
}
.pro1 p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 24px auto 0;
  width: 100%;
}
.pro1 .play_btn {
  margin: 24px 0 30px;
}
.pro1 .play_btn a {
  font-size: 14px;
  line-height: 24px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  margin: auto;
}
.pro1 .play_btn a img {
  margin-left: 10px;
}
.pro1_s {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.pro1_s .swiper-slide {
  border: 1px solid #f0f0f0;
}
.pro1P {
  position: absolute;
  bottom: -30px;
  z-index: 9;
  left: 0;
  width: 100%;
}
.pro1_btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border: solid 1px #37c6c0;
  border-radius: 15px;
  z-index: 9;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.pro1_btn.prev {
  left: -60px;
}
.pro1_btn.prev img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.pro1_btn.next {
  right: -60px;
}
.pro1_btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro1_btn img:nth-child(2) {
  opacity: 0;
}
.pro1_btn:hover {
  background: #37c6c0; 
}
.pro1_btn:hover img {
  opacity: 0;
}
.pro1_btn:hover img:nth-child(2) {
  opacity: 1;
}
.pro2 {
  padding: 40px;
}
.pro2 .common_tit2 {
  color: #fff;
}
.pro2_nav {
  font-size: 0;
  text-align: center;
  margin: 28px 0 40px;
}
.pro2_nav li {
  padding: 0 20px;
  display: inline-block;
  position: relative;
}
.pro2_nav li::after {
  content: '';
  width: 1px;
  height: 10px;
  background-color: #666;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pro2_nav li a {
  font-size: 16px;
  height: 32px;
  display: block;
  line-height: 32px;
  color: #e0e0e0;
  position: relative;
}
.pro2_nav li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  background: #37c6c0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro2_nav li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 3.5px solid transparent;
  border-top: 4px solid #37c6c0;
  border-bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro2_nav li.active a {
  color: #fff;
}
.pro2_nav li.active a::before,
.pro2_nav li.active a::after {
  opacity: 1;
}
.pro2_s {
  display: none;
}
.pro2_s .swiper-slide {
  border: solid 2px #37c6c0;
}
.pro2P {
  margin-top: 30px;
}
.pro2P .swiper-pagination-bullet {
  background: #f0f0f0;
}
.pro3 {
  background: #ebebeb;
}
.pro3_inner {
  display: none;
  padding: 40px;
}
.pro3_inner p {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  text-align: center;
}
.pro3_inner p span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro3_inner p span::before,
.pro3_inner p span::after {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #37c6c0;
  margin-right: 10px;
}
.pro3_inner p span::after {
  margin-right: 0;
  margin-left: 10px;
}
.pro3_inner ul {
  margin-top: 36px;
}
.pro3_inner ul li {
  width: calc((100% - 64px) / 3);
  margin-right: 32px;
  margin-top: 32px;
  float: left;
}
.pro3_inner ul li:nth-child(3n) {
  margin-right: 0;
}
.pro3_inner ul li:nth-child(3n + 1) {
  clear: both;
}
.pro3_inner ul li:nth-child(-n + 3) {
  margin-top: 0;
}
.pro3_inner ul li .img {
  position: relative;
  overflow: hidden;
}
.pro3_inner ul li .img img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro3_inner ul li a: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);
}
.pro3_inner ul li .text {
  padding: 28px 28px 40px 40px;
  background: #fff;
  position: relative;
}
.pro3_inner ul li .text h3 {
  font-size: 18px;
  line-height: 28px;
  color: #333;
  position: relative;
  z-index: 3;
}
.pro3_inner ul li .text h3::after {
  content: '';
  margin: 12px 0 16px;
  width: 10px;
  height: 2px;
  background: #37c6c0;
  display: block;
}
.pro3_inner ul li .text h5 {
  font-size: 14px;
  line-height: 18px;
  color: #666;
  position: relative;
  z-index: 3;
}
.pro3_inner ul li .text span {
  font-family: Akr;
  font-size: 60px;
  color: #f0f0f0;
  position: absolute;
  right: 28px;
  bottom: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pro3_inner ul li:hover .text span {
  color: #37c6c0;
}
/* pro */

/* industry */
.inner_con.industry {
  padding-bottom: 60px;
}
.indu_list li {
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
}
.indu_list li a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.indu_list li a .img {
  border: solid 2px #1db0b8;
  width: calc(50% - 20px);
  overflow: hidden;
}
.indu_list li a .img img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.indu_list li a: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);
}
.indu_list li a .text {
  width: calc(50% - 20px);
  padding: 40px 0;
}
.indu_list li:nth-child(2n) a .text {
  order: -1;
}
.indu_list li a .text_t {
}
.indu_list li a .text_t span {
  font-family: Akr;
  font-size: 60px;
  color: #f0f0f0;
  float: left;
  line-height: 54px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.indu_list li a:hover .text_t span {
  color: #1db0b8;
}
.indu_list li a .text_t i {
  float: left;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  color: #333;
  margin-left: 20px;
}
.indu_list li a .text_t i::after {
  content: '';
  width: 20px;
  height: 2px;
  background-color: #1db0b8;
  margin-top: 16px;
  display: block;
}
.indu_list li a p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-top: 28px;
}
/* industry */

/* process */
.process1 {
  padding: 40px;
}
.process1 .text {
  width: 100%;
  margin: 40px auto;
  max-width: 800px;
}
.process1 .text p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  text-align: center;
}
.process1 .img {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  border: solid 1px #f0f0f0;
}
.process2 {
  padding: 40px 100px;
  margin: 0 -40px;
}
.process2 .common_tit2 {
  color: #fff;
}
.process2 p {
  font-size: 14px;
  line-height: 24px;
  color: #ebebeb;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 28px auto 0;
}
.process2 .swiper-slide h5 {
  background: #fff;
  font-size: 14px;
  height: 60px;
  line-height: 60px;
  padding: 0px 5px;
  color: #333333;
  text-align: center;
  border-top: 1px solid #1db0b8;
}
.proc_s {
  margin-top: 40px;
  position: relative;
  padding-bottom: 30px;
}
.procP {
  margin-top: 30px;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}
.proc_btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 15px;
  z-index: 9;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.proc_btn.prev {
  left: -60px;
}
.proc_btn.prev img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.proc_btn.next {
  right: -60px;
}
.proc_btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.proc_btn img:nth-child(2) {
  opacity: 0;
}
.proc_btn:hover {
  background: #1db0b8;
}
.proc_btn:hover img {
  opacity: 0;
}
.proc_btn:hover img:nth-child(2) {
  opacity: 1;
}
/* process */

/* reclaim */
.recl {
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
}
.recl .img {
  margin-top: 30px;
}
.recl2 {
  padding-bottom: 60px;
}
.reclain_s {
  max-width: 800px;
  width: 100%;
  margin: 30px auto 0;
  padding-bottom: 0;
}
.reclain_s .swiper-slide img {
  display: block;
  margin: auto;
}
.recl2 .csd {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: auto;
}
.recl2 .csd .lun {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 80%;
  -webkit-animation: quan 4s infinite linear;
  animation: quan 4s infinite linear;
}
.recl2 .csd .lun1 {
  left: 1%;
}
.recl2 .csd .lun2 {
  right: 1%;
}
.recl3 {
  border-bottom: 0;
  padding-bottom: 60px;
}
.recl3_list {
  margin-top: 30px;
}
.recl3_list li {
  width: 25%;
  float: left;
  border: 1px solid #f0f0f0;
  border-right-width: 0;
  border-top-width: 0;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  filter: grayscale(100%);
}
.recl3_list li:hover {
  filter: grayscale(0%);
}
.recl3_list li:nth-child(4n) {
  border-right-width: 1px;
}
.recl3_list li:nth-child(-n + 4) {
  border-top-width: 1px;
}
.recl3_list li:nth-child(4n + 1) {
  clear: both;
}
.recl3_list li img {
}
/* reclaim */

/* responsibility */
.cont1 {
  padding: 40px 0 0;
  margin-left: -40px;
  margin-right: -40px;
}
.cont1 .img {
  margin-top: 30px;
}
.resp {
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
}
.resp1_con {
  margin-top: 30px;
}
.resp1_l {
  float: left;
  width: calc(60% - 50px);
  margin-right: 50px;
}
.resp1_l p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  padding: 30px 0 0;
}
.resp1_l ul {
}
.resp1_l ul li {
  float: left;
  width: calc(50% - 40px);
  margin-right: 40px;
  margin-top: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #fafafa;
  overflow: hidden;
  height: 60px;
  padding: 0 20px 0 74px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resp1_l ul li i {
  width: 60px;
  height: 60px;
  background: #fff;
  border: solid 1px #f0f0f0;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
.resp1_l ul li i img {
}
.resp1_l ul li span {
  font-family: Akr;
  font-size: 30px;
  color: #1db0b8;
}
.resp1_r {
  float: left;
  width: 40%;
}
.resp1_r .img {
  float: left;
  width: calc(50% - 4px);
  margin-right: 8px;
  margin-top: 8px;
}
.resp1_r .img:nth-child(-n + 2) {
  margin-top: 0;
}
.resp1_r .img:nth-child(2n) {
  margin-right: 0;
}
.resp1_r .img:nth-child(2n + 1) {
  clear: both;
}
.resp1_r .img img {
}
.resp2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resp2 .inner {
  width: 260px;
  cursor: pointer;
}
.resp2 .inner:nth-child(2) {
  margin-top: 54px;
}
.resp2 .inner .common_tit2 {
  text-align: left;
}
.resp2 .inner .common_tit2:after {
  margin-left: 0;
}
.resp2 .inner p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.resp2 .inner .img {
  margin-top: 30px;
}
.resp2 .inner .img img {
}
.resp2_l {
}
.resp2_m {
  width: 400px;
}
.resp2_m_t {
  width: 400px;
  height: 400px;
  border: solid 1px #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.resp2_m_t .img {
}
.resp2_m_t span {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border: solid 1px #f0f0f0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  font-family: Akr;
  font-size: 30px;
  color: #1db0b8;
  -webkit-transition: all 0.4s ease-in-out 0.4s;
  -moz-transition: all 0.4s ease-in-out 0.4s;
  -ms-transition: all 0.4s ease-in-out 0.4s;
  -o-transition: all 0.4s ease-in-out 0.4s;
  transition: all 0.4s ease-in-out 0.4s;
}
.resp2_m_t span.active {
  color: #fff;
  background: #1db0b8;
}
.resp2_m_t span:nth-of-type(1) {
  left: 7%;
  top: 7%;
}
.resp2_m_t span:nth-of-type(2) {
  right: 7%;
  top: 7%;
}
.resp2_m_t span:nth-of-type(3) {
  right: 7%;
  bottom: 7%;
}
.resp2_m_t span:nth-of-type(4) {
  left: 7%;
  bottom: 7%;
}
.resp2_m_t span::before {
  content: '';
  height: 1px;
  width: 0px;
  background: #1db0b8;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 3;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.resp2_m_t span.active::before {
  width: 100px;
}
.resp2_m_t span::after {
  content: '';
  height: 1px;
  width: 100px;
  background: #f0f0f0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.resp2_m_t span:nth-of-type(1)::before,
.resp2_m_t span:nth-of-type(4)::before,
.resp2_m_t span:nth-of-type(1)::after,
.resp2_m_t span:nth-of-type(4)::after {
  content: '';
  left: -100px;
}
.resp2_m_t span:nth-of-type(2)::before,
.resp2_m_t span:nth-of-type(3)::before,
.resp2_m_t span:nth-of-type(2)::after,
.resp2_m_t span:nth-of-type(3)::after {
  content: '';
  right: -100px;
}
.resp2_m_b {
  margin-top: 40px;
  text-align: center;
}
.resp2_m_b h3 {
  font-size: 20px;
  font-weight: bold;
  color: #37c6c0;
}
.resp2_m_b h5 {
  font-size: 18px;
  margin-top: 8px;
  color: #e0e0e0;
}
.resp2_r {
}
.resp2_r .inner {
}
.resp2_r .inner .common_tit2 {
  text-align: right;
}
.resp2_r .inner .common_tit2:after {
  margin-left: auto;
  margin-right: 0;
}
.resp2_r .inner p {
  text-align: right;
}
.resp2_r .inner .img {
}
.resp2_r .inner .img img {
}
.resp2_r p {
}
.resp3 {
  border-bottom: 0;
}
.resp3 > p {
  margin: 30px 0;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
/* responsibility */

/* contact */
.inner_con.contact {
  padding-bottom: 60px;
}
.my-map {
  margin: 40px auto;
  width: 100%;
  height: 360px;
  position: relative;
}
.my-map .icon {
  background: url(http://lbs.amap.com/console/public/show/marker.png) no-repeat;
}
.my-map .icon-cir {
  height: 31px;
  width: 28px;
}
.my-map .icon-cir-red {
  background-position: -11px -5px;
}
.amap-container {
  height: 100%;
}
.my-map .text {
  left: 50%;
  width: 400px;
  position: absolute;
  top: 0%;
  height: 100%;
  display: flex;
  align-items: center;
}
.my-map .text ul {
  background: #fff;
  width: 100%;
  padding: 40px;
}
.my-map .text ul li {
  margin-top: 30px;
}
.contact ul li.flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact ul li.flex > div:nth-child(2) {
  margin-left: 36px;
}
.my-map .text ul li:first-child {
  margin-top: 0;
}
.contact ul li h4 {
  font-size: 14px;
  color: #999999;
}
.contact ul li h4 span {
  color: #37c6c0;
}
.contact ul li h6 {
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #333333;
}
.contact ul li h6 span {
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #333333;
}
.contact .form {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 60px;
}
.contact .form ul {}
.contact .form ul li {
  margin-bottom: 20px;
}
.contact .form ul li:last-child {
  margin-bottom: 0px;
}
.contact .form ul li::after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}
.contact .form ul li label {
  display: block;
  width: calc(50% - 20px);
  margin-right: 40px;
  float: left;
}
.contact .form ul li label:nth-child(2n) {
  margin-right: 0;
}
.contact .form ul li.textarea label {
  width: 100%;
  margin-right: 0;
}
.contact .form ul li.submit a {
  font-size: 14px;
  display: block;
  text-align: center;
  margin: auto;
  line-height: 30px;
  color: #ffffff;
  width: 116px;
  height: 30px;
  background-color: #37c6c0;
  border-radius: 15px;
}
.contact .form ul li label h4 {}
.contact .form ul li label input,
.contact .form ul li label textarea {
  height: 44px;
  border: solid 2px #e0e0e0;
  width: 100%;
  padding-left: 20px;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contact .form ul li label input:focus,
.contact .form ul li label textarea:focus {
  border-color: #37c6c0;
}
.contact .form ul li label input::placeholder,
.contact .form ul li label textarea:placeholder {
  color: #b3b3b3;
}
.contact .form ul li label textarea {
  height: 180px;
  padding: 20px;
  resize: none;
}
.contact_b {
  background: #f7f7f7;
  padding: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_b .contact_tit {
  position: absolute;
  top: 40px;
}
.contact_b .contact_tit h3 {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
}
.contact_b .contact_tit h5 {
  font-family: Arial;
  font-size: 12px;
  line-height: 16px;
  color: #e0e0e0;
  margin-top: 8px;
}
.contact_b_l {
  padding-top: 20px;
  position: relative;
}
.contact_b_l .map_tip {
  position: absolute;
  bottom: 0;
  left: 0;
}
.contact_b_l .map_tip ul {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 30px;
}
.contact_b_l .map_tip ul:nth-child(2) {}
.contact_b_l .map_tip ul li {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  line-height: 36px;
  color: #666666;
}
.contact_b_l .map_tip ul li span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border: solid 1px #37c6c0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.contact_b_l .map_tip ul li span::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #37c6c0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.contact_b_l .dot {
  width: 16px;
  height: 16px;
  background: #00d7e1;
  border: 3px solid #fff;
  position: absolute;
  z-index: 3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.contact_b_l .dot::after {
  content: '';
  height: 2px;
  background-color: #e10015;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  max-width: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contact_b_l .dot.active {
  background: #e10015;
}
.contact_b_l .dot.active::after {
  max-width: 280px;
}
.contact_b_l .dot1 {
  top: 345px;
  left: 512px;
}
.contact_b_l .dot1::after {
  width: 155px;
}
.contact_b_l .dot2 {
  top: 335px;
  left: 425px;
}
.contact_b_l .dot2::after {
  width: 242px;
}
.contact_b_l .dot3 {
  top: 235px;
  left: 405px;
}
.contact_b_l .dot3::after {
  width: 262px;
}
.contact_b_r {
  width: 360px;
}
.contact_b_r .swiper-slide {}
.contact_b_r .swiper-slide .inner {
  background: #fff;
  padding: 30px 40px 50px;
}
.contact_b_r .swiper-slide .inner ul {
  margin-top: 30px;
}
.contact_b_r .swiper-slide .inner ul li {
  margin-top: 24px;
}
.contact_b_r .swiper-slide .inner ul li:first-child {
  margin-top: 0;
}
/* contact */

/* honer */
.honer_con {
  padding-bottom: 60px;
}
.honer_con .common_tit2 {
  color: #333;
}
.honer_con p {
  color: #666;
}
.honer_con .swiper-slide {
  border: 1px solid #f0f0f0;
}
/* honer */

/* devlopment */
.devlop_con {
  padding: 40px 0 60px;
}
.devlop_box {
  margin-top: 30px;
  position: relative;
}
.devlop_box .tree {
  display: block;
  margin: auto;
}
.devlop_box .inner {
  font-family: Akr;
  font-size: 24px;
  color: #ffffff;
  width: 68px;
  height: 68px;
  line-height: 60px;
  text-align: center;
  background: #1db0b8;
  border: solid 4px #f0f0f0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: auto;
}
.devlop_box .inner.inner_a {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.devlop_box .inner.inner_a .text {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  padding-top: 28px;
  width: 200px;
  position: absolute;
  top: 50%;
  font-family: Arial;
  text-align: left;
  border-top: 1px solid #f0f0f0;
}
.devlop_box .inner.inner_a:nth-child(2n + 1) {
  -webkit-transform: translateX(-133px);
  -moz-transform: translateX(-133px);
  -ms-transform: translateX(-133px);
  -o-transform: translateX(-133px);
  transform: translateX(-133px);
}
.devlop_box .inner.inner_a:nth-child(2n + 1) .text {
  right: 100%;
}
.devlop_box .inner.inner_a:nth-child(2n) {
  -webkit-transform: translateX(133px);
  -moz-transform: translateX(133px);
  -ms-transform: translateX(133px);
  -o-transform: translateX(133px);
  transform: translateX(133px);
}
.devlop_box .inner.inner_a:nth-child(2n) .text {
  left: 100%;
}
.devlop_box .inner.inner_a1 {
  top: 18.5%;
}
.devlop_box .inner.inner_a2 {
  top: 28%;
}
.devlop_box .inner.inner_a3 {
  top: 38%;
}
.devlop_box .inner.inner_a4 {
  top: 48%;
}

.devlop_box .inner.inner_a5 {
  top: 57%;
}

.devlop_box .inner.inner_a6 {
  top: 67%;
}



.devlop_box .inner.inner_a7 {
  top: 77%;
}



/* devlopment */

/* culture */
.inner_con.culture {
  padding-bottom: 60px;
}
.culture_list {
  margin-top: 40px;
}
.culture_list ul {}
.culture_list ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fafafa;
  margin: 30px 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.culture_list ul li .img {
  border: solid 2px #1db0b8;
  width: 46%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.culture_list ul li .img img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.culture_list ul li: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);
}
.culture_list ul li .text {
  padding: 50px 40px;
  width: 54%;
  position: relative;
}
.culture_list ul li .text_t {
  position: relative;
  z-index: 3;
}
.culture_list ul li .text_t span {
  font-family: Akr;
  font-size: 60px;
  color: #37c6c0;
  float: left;
  line-height: 54px;
}
.culture_list ul li .text_t i {
  float: left;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  color: #333;
  margin-left: 20px;
}
.culture_list ul li .text_t i::after {
  content: '';
  width: 20px;
  height: 2px;
  background-color: #1db0b8;
  margin-top: 16px;
  display: block;
}
.culture_list ul li h5 {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin-top: 32px;
  position: relative;
  z-index: 3;
}
.culture_list ul li h3 {
  font-family: Akr;
  font-size: 40px;
  color: #e6e6e6;
  position: absolute;
  right: 75px;
  top: 65px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.culture_list ul li:hover h3 {
  -webkit-transform: scale(2) rotateZ(12deg);
  -moz-transform: scale(2) rotateZ(12deg);
  -ms-transform: scale(2) rotateZ(12deg);
  -o-transform: scale(2) rotateZ(12deg);
  transform: scale(2) rotateZ(12deg);
  opacity: 0.5;
}
/* culture */

/* news */
.news {
  padding-bottom: 60px;
  min-height: calc(100vh - 560px);
}
.news_list {
  margin-top: 10px;
}
.news_list li {}
.news_list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
}
.news_list li a .img {
  border: solid 2px #37c6c0;
  margin-right: 40px;
  width: 32%;
  overflow: hidden;
}
.news_list li a .img img {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news_list li a: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);
}
.news_list li a .text {
  width: calc(68% - 40px);
  padding-right: 160px;
  position: relative;
}
.news_list li a .text h4 {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news_list li a:hover .text h4 {
  color: #37c6c0;
}
.news_list li a .text h4::after {
  content: '';
  background: #f0f0f0;
  height: 1px;
  width: 100%;
  margin: 16px 0;
  display: block;
}
.news_list li a .text p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}
.news_list li a .text .common_btn {
  margin-top: 20px;
}
.news_list li a .text .time {
  width: 80px;
  height: 80px;
  border: solid 1px #f0f0f0;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
}
.news_list li a .text .time .date {
  font-family: Akr;
  font-size: 46px;
  line-height: 54px;
  color: #37c6c0;
}
.news_list li a .text .time h5 {
  font-family: Akr;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
}
.news_detail_t {
  padding: 40px 0 16px;
}
.news_detail_t h1 {
  font-size: 20px;
  color: #333333;
  padding-right: 100px;
  font-weight: bold;
  position: relative;
}
.news_detail_t h1 span {
  font-family: Akr;
  font-size: 18px;
  color: #37c6c0;
  position: absolute;
  top: 0;
  right: 0;
}
.news_detail_t h6 {
  font-size: 14px;
  line-height: 24px;
  margin-top: 8px;
  color: #666666;
}
.news_detail_box {
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
}
.news_detail_box p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}
.news_detail_b {
  padding: 30px 0 60px;
  position: relative;
}
.news_detail_b a {
  display: inline-block;
  position: relative;
}
.news_detail_b a.prev {
  float: left;
  padding-right: 0;
  padding-left: 30px;
}
.news_detail_b a.next {
  float: right;
}
.news_detail_b a.back {
  margin: auto;
  left: 0;
  right: 0;
  position: absolute;
  height: 30px;
  width: 116px;
}
.news_btn {
  background: #f7f7f7;
  border-radius: 15px;
  position: relative;
  padding-right: 30px;
  text-align: center;
  max-width: 0;
  height: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.news_detail_b a .text {
  width: 70px;
  display: block;
}
.news_detail_b a:hover {
  max-width: 100px;
}
.news_detail_b a.back .text {
  width: 86px;
}
.news_detail_b a.back:hover {
  max-width: 116px;
}
.news_btn .img {
  width: 30px;
  height: 30px;
  border: solid 1px #e0e0e0;
  border-radius: 15px;
  z-index: 9;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  background: #f7f7f7;
}
.news_btn.prev .img {
  right: auto;
  left: 0;
}
.news_btn.prev .img img {
  -webkit-transform: rotateZ(180deg);
  -moz-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.news_btn .img img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.news_btn .img img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.news_btn:hover .img {
  background: #37c6c0;
  border-color: #37c6c0;
}
.news_btn:hover .img img {
  opacity: 0;
}
.news_btn:hover .img img:nth-child(2) {
  opacity: 1;
}
.news_detail_con {
  width: 100%;
  margin: auto;
  max-width: 800px;
}
.news_btn .text {
  font-size: 14px;
  line-height: 30px;
  color: #666666;
}
/* news */

/* result */
.result_list li a {
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
}
.result_list li a h4 {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
.result_list li a p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}
/* result */

/* about */
.abo_con {
  margin-top: 40px;
  padding-bottom: 60px;
}
.abo_l {
  width: calc(360 / 1120 * 100%);
  float: left;
  text-align: center;
}
.abo_l .common_tit2 {
  margin-top: 36px;
  display: inline-block;
}
.abo_l .common_tit2::after {
  margin-left: 0;
}
.abo_r {
  width: calc(760 / 1120 * 100%);
  float: left;
}
.abo_r .img {
  border: solid 2px #1db0b8;
}
.abo_r p {
  margin-top: 32px;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}
.inner_con.care {
  padding-bottom: 60px;
}
/* about */

/* join */
.join_list {
  max-width: 800px;
  width: 100%;
  margin: auto;
  padding: 40px 0 60px;
}
.join_list > p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  margin-top: 30px;
  text-align: center;
}
.join_list ul {
  margin-top: 30px;
}
.join_list ul li {
  border-top: 1px solid #f0f0f0;
}
.join_list ul li:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.join_list ul li h3 {
  height: 60px;
  line-height: 60px;
  padding-right: 100px;
  position: relative;
  cursor: pointer;
}
.join_list ul li h3 span {
  font-size: 18px;
  color: #333333;
  padding-right: 18px;
  position: relative;
}
.join_list ul li h3 span::after {
  content: '';
  width: 10px;
  height: 2px;
  background-color: #37c6c0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.join_list ul li h3 em {
  font-style: normal;
  position: absolute;
  right: 0;
  font-size: 12px;
  height: 32px;
  line-height: 32px;
  color: #b3b3b3;
  margin: auto;
  top: 0;
  bottom: 0;
  padding-right: 16px;
}
.join_list ul li h3 em::after {
  content: '';
  border: 5.5px solid transparent;
  border-top: 6px solid #1db0b8;
  border-bottom: 0;
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.join_list ul li.active h3 em::after {
  -webkit-transform: rotateZ(-180deg);
  -moz-transform: rotateZ(-180deg);
  -ms-transform: rotateZ(-180deg);
  -o-transform: rotateZ(-180deg);
  transform: rotateZ(-180deg);
}
.join_list ul li .con {
  display: none;
  padding-bottom: 40px;
}
.join_list ul li .con h5 {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}
.join_list ul li .con h5:nth-of-type(2) {
  margin-top: 32px;
}
.join_list ul li .con p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}
.join_list ul li .con h4 {
  margin-top: 32px;
  font-size: 16px;
  color: #333333;
}
.join_list .common_btn {
  text-align: center;
  margin: 30px auto 0;
  width: 72px;
}
.join_list .common_btn img {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.join_list .common_btn a:hover {
  -webkit-animation: icoHover3 .8s linear;
  animation: icoHover3 .8s linear;
}

/* join */

/* footer */
.footer {
  background: #fff;
  margin-top: 60px;
}
.footer_t {
  position: relative;
  padding-right: 40px;
}
.footer_t::before {
  content: '';
  height: 1px;
  width: 100%;
  background: #f0f0f0;
  position: absolute;
  top: 80px;
  left: 0;
}
.footer_nav li {
  margin-right: 40px;
  float: left;
  width: 80px;
}
.footer_nav li:first-child {
  width: auto;
}
.footer_nav li:last-child {
  margin-right: 0px;
}
.footer_nav li > a {
  font-size: 16px;
  display: inline-block;
  height: 80px;
  line-height: 80px;
  color: #333;
  position: relative;
}
.footer_nav li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #1db0b8;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_nav .second_nav {
  display: none;
  padding: 20px 0;
}
.footer_nav .second_nav a {
  display: block;
  font-size: 14px;
  line-height: 32px;
  color: #666;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  word-break: keep-all;
}
.footer_nav .second_nav a:hover {
  color: #1db0b8;
}
.footer_nav li.active a::after,
.footer_nav li:hover a::after {
  width: 100%;
}
.footer_t_r {
  padding-right: 16px;
  position: absolute;
  top: 32px;
  right: 0;
  font-size: 12px;
  color: #b3b3b3;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_t_r:hover {
  color: #1db0b8;
}
.footer_t_r::after {
  content: '';
  border: 5.5px solid transparent;
  border-top: 6px solid #1db0b8;
  border-bottom: 0;
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_t_r.on::after {
  -webkit-transform: rotateZ(-180deg);
  -moz-transform: rotateZ(-180deg);
  -ms-transform: rotateZ(-180deg);
  -o-transform: rotateZ(-180deg);
  transform: rotateZ(-180deg);
}
.footer_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}
.footer_b_l p {
  font-size: 14px;
  line-height: 28px;
  color: #999;
}
.footer_b_l p a {
  color: inherit;
}
.footer_b_l ul {
  font-size: 0;
  letter-spacing: 0;
  margin-top: 32px;
}
.footer_b_l ul li {
  display: inline-block;
  margin-right: 36px;
}
.footer_b_l ul li:last-child {
  margin-right: 0;
}
.footer_b_l ul li a {
  display: block;
  position: relative;
}
.footer_b_l ul li a .img {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}
.footer_b_l ul li a .img img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_b_l ul li a .img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.footer_b_l ul li a:hover .img img {
  opacity: 0;
}
.footer_b_l ul li a:hover .img img:nth-child(2) {
  opacity: 1;
}
.footer_b_l ul li a .ewm {
  display: none;
  position: absolute;
  bottom: 100%;
  left: -36px;
  width: 120px;
}
.footer_b_l ul li a:hover .ewm {
  display: block;
}
.footer_b_r {
}
.footer_b_r .inp {
  position: relative;
}
.footer_b_r .inp input {
  width: 260px;
  height: 36px;
  background-color: #f0f0f0;
  border-radius: 18px;
  border: 0;
  display: block;
  padding-left: 36px;
  border: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_b_r .inp input::placeholder {
  color: #999;
}
.footer_b_r .inp .img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  margin: auto;
  width: 16px;
  height: 16px;
}
.footer_b_r .inp .img img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_b_r .inp .img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.footer_b_r .inp input:focus {
  border-color: #009fa8;
}
.footer_b_r .inp input:focus + .img img {
  opacity: 0;
}
.footer_b_r .inp input:focus + .img img:nth-child(2) {
  opacity: 1;
}
.footer_b_r .inp .ss_text {
  color: #009fa8;
  font-size: 14px;
  position: absolute;
  z-index: 9;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 24px;
  line-height: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer_b_r .inp input:focus ~ .ss_text {
  opacity: 1;
  visibility: visible;
}
.back_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 50px;
  bottom: 25%;
  z-index: 999;
}
.back_top a {
  display: block;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.back_top a img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.back_top a img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.back_top a:hover {
  background: #009fa8;
}
.back_top a:hover img {
  opacity: 0;
}
.back_top a:hover img:nth-child(2) {
  opacity: 1;
}
/* footer */

@media (max-width: 1366px) {
  .header_inner {
    height: 80px;
  }

  .header .second_nav {
    top: 80px;
  }

  .header_inner .logo {
    width: 90px;
  }

  .header .second_nav a,
  .header_nav li {
    padding: 0 16px;
  }
  .back_top {
    right: 30px;
  }

  .wrapper {
    padding-top: 80px;
  }
}
@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: 9999;
    width: 100%;
    background-color: #fff;
    padding: 0px 0px;
  }

  .headerSJ .headerSC {
    padding: 0px 12px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .headerSJ .logo img {
    height: 44px;
  }

  .headerSJ .navbar {
    position: relative;
    padding: 12px 8px;
    margin-right: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #333;
    outline: none;
    border: solid 1px #ebebeb;
  }

  .headerSJ .navbar .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #37c7c1;
  }

  .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;
  }
  .back_top {
    right: 10px;
  }
  .wrapper {
    padding-top: 60px;
  }
  .banner_b_l {
    padding: 20px;
  }
  .banner_b_l p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 12px;
  }
  .banner_b_l .common_btn {
    margin-top: 20px;
  }
  .banner_b_r {
    padding: 40px 0;
  }
  .banner_b_r_l ul {
    padding: 0 20px 0 20px;
  }
  .banner_b_r_l li a {
    line-height: 36px;
  }
  .ind2_inner ul li:nth-child(2) {
    left: 33.3% !important;
  }
  .ind2_inner ul li:nth-child(3) {
    left: 66.7% !important;
  }
  .pro3_inner ul li .text {
    padding: 20px 20px 32px;
  }
  .pro3_inner ul li {
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
    margin-top: 16px;
  }
  .indu_list li a {
    align-items: center;
  }
  .indu_list li a .text {
    width: calc(50% - 20px);
    padding: 0;
  }
  .resp1_con {
    display: flex;
    align-items: center;
  }
  .resp1_l p {
    padding: 0;
  }
  .resp1_l ul li {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-top: 10px;
  }
  .resp1_l ul li:nth-child(2n) {
    margin-right: 0;
  }
  .resp2 .inner {
    width: 200px;
  }
  .resp2_m {
    width: 284px;
  }
  .resp2_m_t {
    width: 284px;
    height: 284px;
  }
  .resp2_m_t span:nth-of-type(1)::before,
  .resp2_m_t span:nth-of-type(4)::before,
  .resp2_m_t span:nth-of-type(1)::after,
  .resp2_m_t span:nth-of-type(4)::after {
    left: -70px;
  }
  .resp2_m_t span:nth-of-type(2)::before,
  .resp2_m_t span:nth-of-type(3)::before,
  .resp2_m_t span:nth-of-type(2)::after,
  .resp2_m_t span:nth-of-type(3)::after {
    right: -70px;
  }
  .resp2_m_t span::after {
    width: 70px;
  }
  .resp2_m_t span.active::before {
    width: 70px;
  }
  .contact_b .contact_tit {
    position: static;
  }
  .contact_b_l {
    display: none;
  }
  .contact_b {
    flex-direction: column;
    background: transparent;
    padding: 40px 0;
  }
  .contact_b_r {
    width: 100%;
    margin-top: 20px;
  }
  .contact_b_r .swiper-slide .inner ul {
    font-size: 0;
  }
  .contact_b_r .swiper-slide .inner ul li:not(.flex) {
    width: 50%;
    display: inline-block;
  }
  .contact_b_r .swiper-slide .inner ul li.flex > div {
    width: 50%;
    margin: 0;
  }
  .contact_b_r .swiper-slide .inner {
    padding: 0;
  }
  .contactP {
    display: block!important;
    margin-top: 40px;
  }
  .join .inner_con_nav > ul > li,
  .honer .inner_con_nav > ul > li,
  .care .inner_con_nav > ul > li,
  .devlopment .inner_con_nav > ul > li,
  .culture .inner_con_nav > ul > li,
  .about .inner_con_nav > ul > li {
    width: calc((100% - 100px) / 6);
  }
  .culture_list ul li {
    align-items: center;
  }
  .culture_list ul li .text {
    padding: 20px;
  }
  .culture_list ul li h5 br {
    display: none;
  }
  .culture_list ul li h3 {
    right: 20px;
    top: 32px;
  }
  .footer_nav li {
    margin-right: 18px;
  }
}
@media (max-width: 768px) {
  #video_model .video {
    width: 94%;
  }
  #video_model .video .text {
    padding: 8px 10px 8px;
  }
  #video_model .video .close {
    right: 0;
    top: -50px;
  }
  .banner_b {
    position: static;
  }
  .banner_b .container {
    padding: 0;
  }
  .banner_text_outer {
    height: 100% !important;
  }
  .banner_text h5 {
    font-size: 16px;
    line-height: 22px;
    color: #37c6c0;
  }
  .banner_text h3 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 8px;
  }
  .banner_text h6 {
    margin-top: 18px;
  }
  .banner_text h6::after {
    margin-top: 12px;
  }
  .banner_b::after {
    display: none;
  }
  .banner_b_l {
    width: 100%;
    float: none;
    margin-top: 40px;
    padding: 30px 20px;
    height: auto!important;
  }
  .common_tit.r * {
    text-align: left;
  }
  .common_tit.r h3::after {
    margin: 16px 0 0;
  }
  .banner_b_l p {
    font-size: 16px;
    line-height: 24px;
    max-width: inherit;
    float: none;
    margin-right: 0px;
    margin-top: 16px;
  }
  .banner_b_l .common_btn {
    margin-top: 20px;
    text-align: center;
  }
  .banner_b_l .common_btn a {
    float: none;
    display: inline-block;
  }
  .banner_b_r {
    width: 100%;
    float: none;
    padding: 40px 20px;
    position: relative;
    background: #f9fbfc;
    flex-direction: column;
  }
  .banner_b_r_l {
    width: 100%;
    margin-top: 20px;
  }
  .banner_b_r_l ul {
    padding: 0;
  }
  .banner_b_r_r {
    width: 100%;
    order: -1;
    position: relative;
  }
  .banner_b_r_r .common_btn {
    bottom: 0px;
  }
  .banner_p {
    bottom: 10px!important;
  }
  .ind1_l {
    width: 100%;
    height: auto;
    float: none;
    padding: 30px 20px;
    position: relative;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
  }
  .ind1_m {
    width: 100%;
    float: none;
    height: auto;
    padding: 30px 20px;
  }
  .ind2_inner {
    background: transparent;
  }
  .ind2_inner ul {
    height: auto;
  }
  .ind2_inner ul li {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 10px;
  }
  .ind2_inner ul li a {
    padding: 30px 20px;
  }
  .footer {
    margin-top: 0;
  }
  .footer_b {
    flex-direction: column;
    padding: 40px 0 20px;
    align-items: flex-start;
  }
  .footer_b_l {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .footer_b_l ul {
    margin-top: 12px;
  }
  .footer_b_r {
    order: -1;
    width: 100%;
    text-align: center;
  }
  .footer_b_r .inp {
    display: inline-block;
  }
  .footer_b_l p {
    line-height: 22px;
  }
  .inner_banner .banner_p {
    bottom: 10px;
  }
  .inner_banner .banner_text_outer .common_btn {
    margin-top: 5px;
  }
  .wrapper > .container {
    padding: 0;
  }
  .inner_con {
    margin: 0;
    padding-left: 3%;
    padding-right: 3%;
  }
  .pro {
    margin: 0 -3%;
    padding: 40px 3% !important;
  }
  .pro1 {
    padding: 40px 0 70px;
  }
  .pro2_nav {
    margin-bottom: 20px;
  }
  .pro2_nav li a {
    font-size: 14px;
  }
  .pro2_nav li::after {
    display: none;
  }
  .pro3_inner {
    padding: 0;
  }
  .pro3_inner ul li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-top: 10px;
  }
  .pro3_inner ul li:nth-child(3n) {
    margin-right: 10px;
  }
  .pro3_inner ul li:nth-child(2n) {
    margin-right: 0;
  }
  .pro3_inner ul li:nth-child(3n + 1) {
    clear: none;
  }
  .pro3_inner ul li:nth-child(2n + 1) {
    clear: both;
  }
  .pro3_inner ul li:nth-child(-n + 3) {
    margin-top: 10px;
  }
  .pro3_inner ul li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .pro3_inner p {
    font-size: 14px;
  }
  .pro3_inner p span::before,
  .pro3_inner p span::after {
    display: none;
  }
  .pro3_inner ul li .text {
    padding: 16px;
  }
  .pro3_inner ul li .text h5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 36px;
  }
  .pro3_inner ul li .text span {
    top: 8px;
    right: 16px;
    bottom: auto;
  }
  .indu_list li a {
    flex-direction: column;
  }
  .indu_list li a .img {
    width: 100%;
    order: -1!important;
  }
  .indu_list li a .text {
    width: 100%;
    margin-top: 20px;
  }
  .indu_list li a p {
    margin-top: 12px;
  }
  .process1 {
    padding: 40px 0;
  }
  .process1 .text {
    margin: 20px 0;
  }
  .process2 {
    padding: 40px 3%;
    margin: 0 -3%;
  }
  .recl3 {
    padding-bottom: 0;
  }
  .recl3_list li {
    width: 50%;
    filter: grayscale(0%);
  }
  .recl3_list li:nth-child(4n) {
    border-right-width: 0px;
  }
  .recl3_list li:nth-child(2n) {
    border-right-width: 1px;
  }
  .recl3_list li:nth-child(-n + 4) {
    border-top-width: 0px;
  }
  .recl3_list li:nth-child(-n + 2) {
    border-top-width: 1px;
  }
  .recl3_list li:nth-child(4n + 1) {
    clear: none;
  }
  .recl3_list li:nth-child(2n + 1) {
    clear: both;
  }
  .resp1_con {
    flex-direction: column;
  }
  .resp1_l {
    float: none;
    width: 100%;
    margin-right: 0px;
  }
  .resp1_r {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .resp2 {
    flex-direction: column;
  }
  .resp2_m {
    width: 100%;
    float: none;
  }
  .resp2_m_b {
    margin-top: 0;
  }
  .resp2_l {
    width: 100%;
    float: none;
  }
  .resp2_r {
    width: 100%;
    float: none;
  }
  .resp2 .inner {
    width: 100%;
    margin-top: 20px;
  }
  .resp2_l .inner .common_tit2,
  .resp2_r .inner .common_tit2,
  .resp2_l .inner p,
  .resp2_r .inner p {
    text-align: center;
  }
  .resp2_l .inner .common_tit2:after,
  .resp2_r .inner .common_tit2:after {
    margin: 16px auto 0;
  }
  .resp2 .inner .img {
    text-align: center;
  }
  .cont1 {
    margin-left: -3%;
    margin-right: -3%;
  }
  .join .inner_con_nav > ul > li,
  .honer .inner_con_nav > ul > li,
  .care .inner_con_nav > ul > li,
  .devlopment .inner_con_nav > ul > li,
  .culture .inner_con_nav > ul > li,
  .about .inner_con_nav > ul > li {
    width: calc((100% - 40px) / 3);
    margin-top: 10px;
  }
  .join .inner_con_nav > ul > li:nth-child(3n),
  .honer .inner_con_nav > ul > li:nth-child(3n),
  .care .inner_con_nav > ul > li:nth-child(3n),
  .devlopment .inner_con_nav > ul > li:nth-child(3n),
  .culture .inner_con_nav > ul > li:nth-child(3n),
  .about .inner_con_nav > ul > li:nth-child(3n) {
    margin-right: 0;
  }
  .join .inner_con_nav > ul > li:nth-child(-n + 3),
  .honer .inner_con_nav > ul > li:nth-child(-n + 3),
  .care .inner_con_nav > ul > li:nth-child(-n + 3),
  .devlopment .inner_con_nav > ul > li:nth-child(-n + 3),
  .culture .inner_con_nav > ul > li:nth-child(-n + 3),
  .about .inner_con_nav > ul > li:nth-child(-n + 3) {
    margin-top: 0;
  }
  .abo_l {
    width: 100%;
    float: none;
  }
  .abo_l .common_tit2::after {
    margin-left: auto;
  }
  .abo_r {
    width: 100%;
    float: none;
    margin-top: 20px;
  }
  .abo_con {
    padding-bottom: 0;
  }
  .culture_list ul li {
    flex-direction: column;
  }
  .culture_list ul li .img {
    width: 100%;
  }
  .culture_list ul li .text {
    width: 100%;
  }
  .devlopment .devlop_box .inner.inner_a {
    position: static;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

    font-size: 24px;
    color: #333;
    width: auto;
    height: auto;
    line-height: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    border-radius: 0%;
    margin: 0 0 20px;
  }
  .devlop_box .inner.inner_a .text {
    position: static;
    padding-top: 0px;
    width: 100%;
    border-top: 0;
  }
  .my-map .text {
    width: 100%;
    position: static;
    height: auto;
  }
  .my-map {
    height: auto;
  }
  #mapContainer {
    height: 320px;
  }
  .my-map .text ul {
    padding: 40px 0;
  }
  .contact .form ul li label {
    width: 100%;
    margin-right: 0px;
    float: none;
    margin-bottom: 20px;
  }
  .contact_b_r .swiper-slide .inner ul li:not(.flex) {
    width: 100%;
    margin-top: 12px;
  }
  .contact_b_r .swiper-slide .inner ul li.flex {
    flex-direction: column;
    margin-top: 0px;
  }
  .contact_b_r .swiper-slide .inner ul li.flex > div {
    width: 100%;
    margin-top: 12px;
  }
  .news_list li a {
    flex-direction: column;
  }
  .news_list li a .img {
    margin-right: 0px;
    width: 100%;
  }
  .news_list li a .text {
    width: 100%;
    padding-right: 100px;
    margin-top: 10px;
  }
  .news_list li a .text h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news_list li a .text h4::after {
    display: none;
  }
  .news_list li a .text .common_btn {
    margin-top: 10px;
  }
  .news_detail_t h1 {
    font-size: 16px;
    padding-right: 0px;
  }
  .news_detail_t h1 span {
    font-size: 16px;
    margin-top: 10px;
    position: static;
    display: block;
  }
  .news_detail_t h6 span {
    margin-left: 20px;
  }
  .news_detail_b {
    padding: 30px 0 30px;
  }
  .inner_con.contact {
    padding-bottom: 0;
  }
  .inner_con.industry {
    padding-bottom: 0px;
  }
  .inner_con.culture {
    padding-bottom: 0px;
  }
  .inner_con.care {
    padding-bottom: 0px;
  }
}