﻿.m_import_product_thumbs .swiper-prev,.m_import_product_thumbs .swiper-next {
  color: #09524a;
  font-size: 24px;
  position: absolute;
  z-index: 9;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1920px) {
  .m_import_product_thumbs .swiper-prev,
  .m_import_product_thumbs .swiper-next {
    height: calc(100 / 1920 * 100vw);
  }
}

@media screen and (max-width: 750px) {
  .m_import_product_thumbs .swiper-prev,
  .m_import_product_thumbs .swiper-next {
    font-size: 0.4rem;
    height: 1rem;
    }
}
.m_import_product_thumbs:hover .swiper-prev,.m_import_product_thumbs:hover .swiper-next {
  opacity: 1;
  visibility: visible;
}
.m_import_product_thumbs .swiper-prev {
  left: 0;
}.m_import_product_thumbs .swiper-next {
  right: 0;
}

.canvas_box {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #093935;
}
.canvas_box .canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.canvas_box #starcanvas {
  z-index: 1;
}
.canvas_box #bgcanvas {
  z-index: 2;
}
.canvas_box #logocanvas {
  z-index: 3;
}
@-webkit-keyframes colorSlide {
  0% {
    height: 0;
  }
  90% {
    height: 40px;
  }
}
@-webkit-keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-8px);
    -webkit-transform: scale(1) translateY(-8px);
    -ms-transform: scale(1) translateY(-8px);
    transform: scale(1) translateY(-8px);
  }
  34% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(4px);
    -webkit-transform: scale(0.9) translateY(4px);
    -ms-transform: scale(0.9) translateY(4px);
    transform: scale(0.9) translateY(4px);
  }
  68% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(16px);
    -webkit-transform: scale(0.4) translateY(16px);
    -ms-transform: scale(0.4) translateY(16px);
    transform: scale(0.4) translateY(16px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-8px);
    -webkit-transform: scale(0.4) translateY(-8px);
    -ms-transform: scale(0.4) translateY(-8px);
    transform: scale(0.4) translateY(-8px);
  }
}
@-webkit-keyframes nudgeMouse {
  0% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
#banner {
  background-color: #093935;
  position: relative;
  z-index: 2;
}
#banner .nextpage {
  position: absolute;
  z-index: 9;
  bottom: 40px;
  right: 160px;
  cursor: pointer;
  color: #fff;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
  width: 23px;
  height: 40px;
  background: url("../images/mouse_ico.png") -23px 0 no-repeat;
  -webkit-animation: nudgeMouse 1.6s linear infinite;
  -ms-animation: nudgeMouse 1.6s linear infinite;
  animation: nudgeMouse 1.6s linear infinite;
}
@media screen and (max-width: 1920px) {
  #banner .nextpage {
    right: calc(160 / 1920 * 100vw);
    bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #banner .nextpage {
    right: 0.4rem;
    bottom: 0.4rem;
  }
}
#banner .nextpage:hover {
  color: #317b7e;
}
#banner .nextpage::after,
#banner .nextpage::before {
  content: "";
  position: absolute;
}
#banner .nextpage::before {
  width: 23px;
  height: 40px;
  background: url("../images/mouse_ico.png") 0 0 no-repeat;
  -webkit-animation: colorSlide 1.6s linear infinite;
  -ms-animation: colorSlide 1.6s linear infinite;
  animation: colorSlide 1.6s linear infinite;
  top: 0;
  left: 0;
}
#banner .nextpage::after {
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  -webkit-animation: trackBallSlide 1.6s linear infinite;
  -ms-animation: trackBallSlide 1.6s linear infinite;
  animation: trackBallSlide 1.6s linear infinite;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#banner .swiper-prev,
#banner .swiper-next {
  color: #fff;
  font-size: 36px;
  position: absolute;
  z-index: 9;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  opacity: 0.5;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  #banner .swiper-prev,
  #banner .swiper-next {
    width: calc(70 / 1920 * 100vw);
    height: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #banner .swiper-prev,
  #banner .swiper-next {
    width: 1rem;
    height: 1rem;
    display: none;
  }
}
#banner .swiper-prev:hover,
#banner .swiper-next:hover {
  opacity: 1;
}
#banner .swiper-prev.swiper-button-disabled,
#banner .swiper-next.swiper-button-disabled {
  display: none;
}
#banner .swiper-prev {
  left: 25px;
}
@media screen and (max-width: 1920px) {
  #banner .swiper-prev {
    left: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #banner .swiper-prev {
    left: 0.2rem;
  }
}
#banner .swiper-next {
  right: 25px;
}
@media screen and (max-width: 1920px) {
  #banner .swiper-next {
    right: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #banner .swiper-next {
    right: 0.2rem;
  }
}
#banner .swiper-pagination {
  z-index: 9;
  width: auto;
  left: 160px;
  bottom: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1920px) {
  #banner .swiper-pagination {
    left: calc(160 / 1920 * 100vw);
    bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #banner .swiper-pagination {
    left: 0.4rem;
    bottom: 0.4rem;
  }
}
#banner .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  margin: 0 16px 0 0;
}
@media screen and (max-width: 1920px) {
  #banner .swiper-pagination .swiper-pagination-bullet {
    margin: 0 calc(16 / 1920 * 100vw) 0 0;
  }
}
@media screen and (max-width: 750px) {
  #banner .swiper-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    margin: 0 0.16rem 0 0;
  }
}
#banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  border-color: rgba(255,255,255,0.3);
  border-color: #fff;
}
@media screen and (max-width: 750px) {
  #banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.15rem;
    height: 0.15rem;
  }
}
#banner .swiper-pagination .dot {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  margin: 0 16px 0 0;
  position: relative;
}
@media screen and (max-width: 1920px) {
  #banner .swiper-pagination .dot {
    margin: 0 calc(16 / 1920 * 100vw) 0 0;
  }
}
@media screen and (max-width: 750px) {
  #banner .swiper-pagination .dot {
    width: 0.1rem;
    height: 0.1rem;
    margin: 0 0.16rem 0 0;
  }
}
#banner .swiper-pagination .dot svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
#banner .swiper-pagination .dot svg path {
  opacity: 0;
}
#banner .swiper-pagination .dot svg path.path-loop-bg {
  opacity: 0;
}
#banner .swiper-pagination .dot.active {
  width: 13px;
  height: 13px;
  border-color: rgba(255,255,255,0.1);
}
@media screen and (max-width: 750px) {
  #banner .swiper-pagination .dot.active {
    width: 0.15rem;
    height: 0.15rem;
  }
}
#banner .swiper-slide {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
#banner .swiper-slide.swiper-slide-active .bg {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
#banner .swiper-slide.swiper-slide-active .text .title,
#banner .swiper-slide.swiper-slide-active .text .gbtn2 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
#banner .swiper-slide.swiper-slide-prev .bg {
  -webkit-transform: translate3d(80%, 0%, 0px);
  -ms-transform: translate3d(80%, 0%, 0px);
  transform: translate3d(80%, 0%, 0px);
}
#banner .swiper-slide.swiper-slide-next .bg {
  -webkit-transform: translate3d(-80%, 0%, 0px);
  -ms-transform: translate3d(-80%, 0%, 0px);
  transform: translate3d(-80%, 0%, 0px);
}
#banner .bg {
  height: 100%;
  background-color: $purple;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
  position: relative;
}
@media screen and (max-width: 990px) {
  #banner .bg {
    opacity: 0;
  }
}
#banner .bg .imgs {
  position: absolute;
  // top: 50%;
  right: 0;
  bottom: -50px;
  width: calc(1190 / 1920 * 100%);
  max-width: 1190px;
  max-height: 100%;
}
@media screen and (max-width: 750px) {
  #banner .bg .imgs {
    right: 5%;
    width: 90%;
  }
}
#banner .bg img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
#banner .bg img.s1 {
  -webkit-animation: rotateIng 50s linear infinite;
  -ms-animation: rotateIng 50s linear infinite;
  animation: rotateIng 50s linear infinite;
  opacity: 0;
}
#banner .bg .human {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#banner .text {
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .text .title {
  font-size: 72px;
  line-height: 1.25;
  margin-bottom: 70px;
}
@media screen and (max-width: 1920px) {
  #banner .text .title {
    font-size: calc(72 / 1920 * 100vw);
    margin-bottom: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #banner .text .title {
    font-size: 0.48rem;
    margin-bottom: 0.6rem;
  }
}
#banner .text .title,
#banner .text .gbtn2 {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.35s;
}
@-webkit-keyframes rotateIng {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes zoomIng {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.index_about {
  color: #fff;
  padding: 140px 0 110px;
  background-color: #093935;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 1920px) {
  .index_about {
    padding: calc(140 / 1920 * 100vw) 0 calc(110 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .index_about {
    padding: 1rem 0;
  }
}
.index_about .box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 990px) {
  .index_about .box {
    display: block;
  }
}
.index_about .box .left {
  width: 720px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .index_about .box .left {
    width: calc(720 / 1600 * 100%);
  }
}
@media screen and (max-width: 990px) {
  .index_about .box .left {
    width: auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  .index_about .box .left {
    margin-bottom: 0.8rem;
  }
}
.index_about .box .left .leftbox {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 990px) {
  .index_about .box .left .leftbox {
    position: static;
  }
}
.index_about .box .right {
  width: 600px;
}
@media screen and (max-width: 1440px) {
  .index_about .box .right {
    width: calc(600 / 1600 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .index_about .box .right {
    width: auto;
  }
}
.index_about .box .right .gt1 {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 990px) {
  .index_about .box .right .gt1 {
    display: none;
  }
}
.g_text1 {
  font-size: 17px;
  line-height: 2.35;
}
@media screen and (max-width: 1440px) {
  .g_text1 {
    font-size: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .g_text1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .g_text1 {
    font-size: 0.28rem;
    line-height: 1.66;
  }
}
.g_text1 .title {
  font-size: 64px;
  line-height: 1.25;
  margin-bottom: 35px;
}
@media screen and (max-width: 1920px) {
  .g_text1 .title {
    font-size: calc(64 / 1920 * 100vw);
    margin-bottom: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_text1 .title {
    font-size: 0.48rem;
    margin-bottom: 0.3rem;
  }
}
.g_text1 .intro {
  margin-bottom: 80px;
}
@media screen and (max-width: 1920px) {
  .g_text1 .intro {
    margin-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_text1 .intro {
    margin-bottom: 0.4rem;
  }
}
.index_product {
  color: #fff;
  padding: 100px 0;
  background-color: #317b7e;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 1920px) {
  .index_product {
    padding: calc(100 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 990px) {
  .index_product {
    padding: 50px 0;
  }
}
@media screen and (max-width: 750px) {
  .index_product {
    padding: 1rem 0;
    -webkit-background-size: auto 100vh;
    -ms-background-size: auto 100vh;
    background-size: auto 100vh;
  }
}
.index_product .swiper {
  position: relative;
  overflow: visible;
}
.index_product .swiper .swiper-prev,
.index_product .swiper .swiper-next {
  color: #fff;
  position: absolute;
  z-index: 9;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0,0,0,0.3);
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .index_product .swiper .swiper-prev,
  .index_product .swiper .swiper-next {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.index_product .swiper .swiper-prev:hover,
.index_product .swiper .swiper-next:hover {
  background-color: #317b7e;
}
.index_product .swiper .swiper-prev.swiper-button-disabled,
.index_product .swiper .swiper-next.swiper-button-disabled {
  display: none;
}
.index_product .swiper .swiper-prev {
  left: 60px;
}
@media screen and (max-width: 1920px) {
  .index_product .swiper .swiper-prev {
    left: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .index_product .swiper .swiper-prev {
    left: 0;
  }
}
.index_product .swiper .swiper-next {
  right: 60px;
}
@media screen and (max-width: 1920px) {
  .index_product .swiper .swiper-next {
    right: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .index_product .swiper .swiper-next {
    right: 0;
  }
}
.index_product .swiper .swiper-pagination {
  position: static;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1920px) {
  .index_product .swiper .swiper-pagination {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .index_product .swiper .swiper-pagination {
    margin-top: 0.2rem;
  }
}
.index_product .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 36px;
  height: 1px;
  background-color: rgba(255,255,255,0.3);
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  opacity: 1;
  margin: 0 2px;
}
@media screen and (max-width: 1920px) {
  .index_product .swiper .swiper-pagination .swiper-pagination-bullet {
    width: calc(36 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .index_product .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.2rem;
  }
}
.index_product .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 115px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .index_product .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.5rem;
  }
}
.index_news {
  padding: 100px 0;
  background-color: #fff;
}
@media screen and (max-width: 1920px) {
  .index_news {
    padding: calc(100 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 990px) {
  .index_news {
    padding: 50px 0;
  }
}
@media screen and (max-width: 750px) {
  .index_news {
    padding: 1rem 0;
  }
}
.index_news .swiper {
  overflow: visible;
}
.index_news .swiper .swiper-pagination {
  position: static;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1920px) {
  .index_news .swiper .swiper-pagination {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .index_news .swiper .swiper-pagination {
    margin-top: 0.4rem;
  }
}
.index_news .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #ccc;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  margin: 0 10px;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  .index_news .swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .index_news .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    margin: 0 0.1rem;
  }
}
.index_news .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #09524a;
  border-color: #09524a;
}
.index_news_txt {
  font-size: 18px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1920px) {
  .index_news_txt {
    margin-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .index_news_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .index_news_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .index_news_txt {
    font-size: 0.28rem;
    margin-bottom: 0.6rem;
    display: block;
  }
}
.index_news_txt .slogan {
  font-size: 34px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .index_news_txt .slogan {
    font-size: calc(34 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .index_news_txt .slogan {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .index_news_txt .slogan {
    font-size: 0.36rem;
    margin-bottom: 0.2rem;
  }
}
.index_news_txt .btn {
  color: #317b7e;
  line-height: 2;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.index_news_txt .btn::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #317b7e;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.index_news_txt .btn:hover::after {
  width: 100%;
}
.index_news_txt .btn i {
  font-size: 12px;
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .index_news_txt .btn i {
    margin-left: 0.1rem;
    font-size: 0.2rem;
  }
}
.g_list1 .item {
  padding: 40px 0;
  border-top: 3px solid #fff;
}
@media screen and (max-width: 1920px) {
  .g_list1 .item {
    padding: calc(40 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 1280px) {
  .g_list1 .item {
    padding: calc(40 / 1920 * 100vw) 0;
    border-width: 2px;
  }
}
@media screen and (max-width: 750px) {
  .g_list1 .item {
    padding: 0.4rem 0;
    border-width: 1px;
  }
}
.g_list1 .item .tag {
  margin-bottom: 40px;
}
@media screen and (max-width: 1920px) {
  .g_list1 .item .tag {
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_list1 .item .tag {
    margin-bottom: 0.2rem;
  }
}
.g_list1 .item .cont {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
}
.g_list1 .item .icon {
  order: 2;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .g_list1 .item .icon {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.g_list1 .item .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.g_list1 .item .intro {
  order: 1;
}
.g_list1 .item .major {
  font-size: 100px;
  line-height: 1;
}
@media screen and (max-width: 1920px) {
  .g_list1 .item .major {
    font-size: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_list1 .item .major {
    font-size: 0.6rem;
  }
}
.g_list1 .item .major span {
  font-family: 'AnoBold';
}
.g_list1 .item .major sup {
  font-size: 60px;
}
@media screen and (max-width: 1920px) {
  .g_list1 .item .major sup {
    font-size: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_list1 .item .major sup {
    font-size: 0.32rem;
  }
}
.g_list2 {
  padding: 0 200px;
}
@media screen and (max-width: 1920px) {
  .g_list2 {
    padding: 0 calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_list2 {
    padding: 0;
  }
}
.g_list2 .item_con {
  color: #fff;
  display: block;
  position: relative;
}
.g_list2 .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  padding: 0 40px;
  text-align: center;
}
@media screen and (max-width: 1920px) {
  .g_list2 .text {
    top: calc(80 / 1920 * 100vw);
    padding: 0 calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_list2 .text {
    top: 0.8rem;
    padding: 0 0.4rem;
  }
}
.g_list2 .text .tag {
  font-size: 26px;
}
@media screen and (max-width: 1440px) {
  .g_list2 .text .tag {
    font-size: 22px;
  }
}
@media screen and (max-width: 1280px) {
  .g_list2 .text .tag {
    font-size: 18px;
  }
}
@media screen and (max-width: 990px) {
  .g_list2 .text .tag {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .g_list2 .text .tag {
    font-size: 0.32rem;
  }
}
.g_list2 .text .title {
  font-size: 42px;
  font-weight: normal;
  margin-bottom: 15px;
}
@media screen and (max-width: 1920px) {
  .g_list2 .text .title {
    font-size: calc(42 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .g_list2 .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .g_list2 .text .title {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
}
.g_list2 .text .btn {
  font-size: 14px;
  line-height: 2;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .g_list2 .text .btn {
    font-size: 0.28rem;
  }
}
.g_list2 .text .btn::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.g_list2 .text .btn:hover::after {
  width: 100%;
}
.g_list2 .text .btn i {
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .g_list2 .text .btn i {
    margin-left: 0.1rem;
  }
}
.g_list2 .picture {
  height: 0;
  padding-top: calc(220 / 395 * 100%);
  position: relative;
  overflow: hidden;
}
.g_list2 .picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.g_list3 .item {
  width: 450px;
}
@media screen and (max-width: 1920px) {
  .g_list3 .item {
    width: calc(450 / 1920 * 100vw);
    min-width: 400px;
  }
}
@media screen and (max-width: 750px) {
  .g_list3 .item {
    width: calc(100vw - 0.8rem);
    min-width: 0;
  }
}
.g_list3 .item .item_con {
  color: #666;
  background-color: #f6f6f6;
  display: block;
}
.g_list3 .text {
  padding: 30px 35px;
}
@media screen and (max-width: 1920px) {
  .g_list3 .text {
    padding: calc(30 / 1920 * 100vw) calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1280px) {
  .g_list3 .text {
    padding: calc(30 / 1920 * 100vw) 20px;
  }
}
@media screen and (max-width: 750px) {
  .g_list3 .text {
    padding: 0.3rem 0.4rem;
  }
}
.g_list3 .text .info {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1920px) {
  .g_list3 .text .info {
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_list3 .text .info {
    margin-bottom: 0.15rem;
  }
}
.g_list3 .text .info .tag {
  color: #317b7e;
}
.g_list3 .text .title {
  color: #093935;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.667;
  height: calc(1.667em * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 1920px) {
  .g_list3 .text .title {
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .g_list3 .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .g_list3 .text .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 990px) {
  .g_list3 .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .g_list3 .text .title {
    font-size: 0.32rem;
    margin-bottom: 0.4rem;
  }
}
.g_list3 .text .btn {
  font-size: 14px;
  line-height: 2;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: relative;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .g_list3 .text .btn {
    font-size: 0.28rem;
  }
}
.g_list3 .text .btn::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #317b7e;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.g_list3 .text .btn:hover {
  color: #317b7e;
}
.g_list3 .text .btn:hover::after {
  width: 100%;
}
.g_list3 .text .btn i {
  font-size: 12px;
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .g_list3 .text .btn i {
    font-size: 0.2rem;
    margin-left: 0.1rem;
  }
}
.g_list3 .picture {
  height: 0;
  padding-top: calc(240 / 450 * 100%);
  background-color: #ededed;
  position: relative;
  overflow: hidden;
}
.g_list3 .picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* ===================================
****************[内页]**************
====================================*/
#ban {
  color: #fff;
  background-color: #093935;
  position: relative;
}
#ban .bg {
  height: 650px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1920px) {
  #ban .bg {
    height: calc(650 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #ban .bg {
    height: 6rem;
  }
}
#ban .text {
  font-size: 36px;
}
@media screen and (max-width: 1920px) {
  #ban .text {
    font-size: calc(36 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  #ban .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  #ban .text {
    font-size: 0.36rem;
  }
}
#ban .text .title {
  font-size: 46px;
  font-weight: normal;
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  #ban .text .title {
    font-size: calc(46 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #ban .text .title {
    font-size: 0.46rem;
    margin-bottom: 0.1rem;
  }
}
#ban .text .slogan {
  font-weight: 300;
}
#ban .bottom {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 40px;
}
@media screen and (max-width: 1920px) {
  #ban .bottom {
    bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  #ban .bottom {
    bottom: 0.4rem;
  }
}
#ban .breadcrumb {
  font-size: 14px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  #ban .breadcrumb {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  #ban .breadcrumb {
    font-size: 0.24rem;
  }
}
#ban .breadcrumb a {
  color: #fff;
}
#ban .breadcrumb a:hover {
  color: #fff;
}
#snav {
  height: 75px;
  border-bottom: 1px solid #f1f1f1;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  #snav {
    height: calc(75 / 1920 * 100vw);
    min-height: 60px;
  }
}
@media screen and (max-width: 1280px) {
  #snav {
    min-height: 50px;
  }
}
@media screen and (max-width: 750px) {
  #snav {
    height: 1rem;
  }
}
#snav .snav_box.fixed {
  position: fixed;
  z-index: 8;
  top: 80px;
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,0.9);
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 0 10px rgba(0,0,0,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
@media screen and (max-width: 750px) {
  #snav .snav_box.fixed {
    top: 1.2rem;
  }
}
#snav ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
}
#snav ul li {
  position: relative;
}
#snav ul li::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 3px;
  background-color: #09524a;
  display: none;
}
@media screen and (max-width: 750px) {
  #snav ul li::before {
    width: 100%;
  }
}
#snav ul li .s1 {
  color: #333;
  height: 75px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1920px) {
  #snav ul li .s1 {
    height: calc(75 / 1920 * 100vw);
    min-height: 60px;
  }
}
@media screen and (max-width: 1280px) {
  #snav ul li .s1 {
    min-height: 50px;
  }
}
@media screen and (max-width: 750px) {
  #snav ul li .s1 {
    height: 1rem;
  }
}
#snav ul li.active::before {
  display: block;
}
#snav ul li.active .s1 {
  color: #09524a;
}
#snav .swiper {
  overflow: visible;
}
#snav .swiper .swiper-wrapper {
  justify-content: space-between;
}
#snav .swiper .swiper-prev,
#snav .swiper .swiper-next {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  color: $green;
  cursor: pointer;
  padding: 0 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
#snav .swiper .swiper-prev.swiper-button-disabled,
#snav .swiper .swiper-next.swiper-button-disabled {
  display: none;
}
#snav .swiper .swiper-prev {
  left: 0;
}
#snav .swiper .swiper-next {
  right: 0;
}
#snav .swiper .swiper-slide {
  width: auto !important;
  position: relative;
}
#snav .swiper .swiper-slide::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 3px;
  background-color: #09524a;
  display: none;
}
@media screen and (max-width: 750px) {
  #snav .swiper .swiper-slide::before {
    width: 100%;
  }
}
#snav .swiper .swiper-slide .s1 {
  color: #333;
  cursor: pointer;
  height: 75px;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 1920px) {
  #snav .swiper .swiper-slide .s1 {
    height: calc(75 / 1920 * 100vw);
    min-height: 50px;
  }
}
@media screen and (max-width: 750px) {
  #snav .swiper .swiper-slide .s1 {
    height: 1rem;
    font-size: 0.32rem;
  }
}
#snav .swiper .swiper-slide.active::before {
  display: block;
}
#snav .swiper .swiper-slide.active .s1 {
  color: #09524a;
}
.m_row {
  padding: 100px 0;
}
@media screen and (max-width: 1920px) {
  .m_row {
    padding: calc(100 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 990px) {
  .m_row {
    padding: 50px 0;
  }
}
@media screen and (max-width: 750px) {
  .m_row {
    padding: 1rem 0;
  }
}
.m_text1 {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 1920px) {
  .m_text1 {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_text1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_text1 {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_text1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_text1 {
    font-size: 0.28rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
  }
}
.m_text1:last-child {
  margin-bottom: 0;
}
.m_about_row {
  padding: 140px 0;
}
@media screen and (max-width: 1920px) {
  .m_about_row {
    padding: calc(140 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 990px) {
  .m_about_row {
    padding: 50px 0;
  }
}
@media screen and (max-width: 750px) {
  .m_about_row {
    padding: 1rem 0;
  }
}
.m_about_row .st1 {
  text-align: left;
  margin-bottom: 0.2rem;
}
.m_about_intro .box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  background-color: #f6faf9;
  margin-bottom: 20px;
}
@media screen and (max-width: 990px) {
  .m_about_intro .box {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .m_about_intro .box {
    margin-bottom: 0.4rem;
  }
}
.m_about_intro .box .left {
  width: 615px;
  padding: 40px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1920px) {
  .m_about_intro .box .left {
    width: calc(615 / 1920 * 100vw);
    padding: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_about_intro .box .left {
    width: auto;
  }
}
@media screen and (max-width: 750px) {
  .m_about_intro .box .left {
    padding: 0.4rem;
  }
}
.m_about_intro .box .right {
  flex: 1;
  overflow: hidden;
}
.m_about_intro .swiper .swiper-slide {
  height: 490px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 1920px) {
  .m_about_intro .swiper .swiper-slide {
    height: calc(490 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_about_intro .swiper .swiper-slide {
    height: calc(490 / 985 * 7.5rem);
  }
}
.m_about_intro .swiper-btns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 750px) {
  .m_about_intro .swiper-btns {
    justify-content: center;
  }
}
.m_about_intro .swiper-btns .swiper-prev,
.m_about_intro .swiper-btns .swiper-next {
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #000;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  .m_about_intro .swiper-btns .swiper-prev,
  .m_about_intro .swiper-btns .swiper-next {
    width: calc(50 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    min-width: 35px;
    min-height: 35px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_intro .swiper-btns .swiper-prev,
  .m_about_intro .swiper-btns .swiper-next {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.m_about_intro .swiper-btns .swiper-prev:hover,
.m_about_intro .swiper-btns .swiper-next:hover {
  background-color: #09524a;
}
.m_about_intro .swiper-btns .swiper-pagination {
  position: static;
  width: auto;
  margin: 0 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
.m_about_intro .swiper-btns .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: transparent;
  border: 1px solid #dedede;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  margin: 0 5px;
}
@media screen and (max-width: 750px) {
  .m_about_intro .swiper-btns .swiper-pagination .swiper-pagination-bullet {
    width: 0.2rem;
    height: 0.2rem;
    margin: 0 0.1rem;
  }
}
.m_about_intro .swiper-btns .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #09524a;
  border-color: #09524a;
}
.m_list1 .item {
  padding: 30px 0;
  border-bottom: 3px solid rgba(9,82,74,0.2);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1920px) {
  .m_list1 .item {
    padding: calc(30 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 1280px) {
  .m_list1 .item {
    border-width: 2px;
  }
}
@media screen and (max-width: 750px) {
  .m_list1 .item {
    padding: 0.4rem 0;
    border-width: 1px;
  }
}
.m_list1 .item:last-child {
  border: 0;
}
.m_list1 .item .icon {
  order: 2;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .m_list1 .item .icon {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.m_list1 .item .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.m_list1 .item .intro {
  order: 1;
  color: #666;
}
.m_list1 .item .major {
  color: #09524a;
  font-size: 72px;
  line-height: 0.8;
  margin-top: 30px;
}
@media screen and (max-width: 1920px) {
  .m_list1 .item .major {
    font-size: calc(72 / 1920 * 100vw);
    margin-top: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list1 .item .major {
    font-size: 0.6rem;
    margin-top: 0.3rem;
  }
}
.m_list1 .item .major span {
  font-family: 'DIN';
}
.m_list1 .item .major sup {
  font-size: 0.5em;
}
.m_about_culture {
  color: #fff;
  background-color: #093935;
  position: relative;
}
.m_about_culture .about_culture_head {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 140px;
}
@media screen and (max-width: 1920px) {
  .m_about_culture .about_culture_head {
    top: calc(140 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_about_culture .about_culture_head {
    top: 1rem;
  }
}
.m_about_culture .about_culture_bg {
  position: relative;
  z-index: 1;
}
.m_about_culture .about_culture_bg .swiper-slide {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .m_about_culture .about_culture_bg .swiper-slide {
    height: calc(890 / 750 * 100vw);
  }
}
.m_about_culture .about_culture_bg .swiper-slide .bg {
  height: calc(890 / 1920 * 100vw);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .m_about_culture .about_culture_bg .swiper-slide .bg {
    display: none;
  }
}
.m_about_culture .about_culture_text {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
.m_about_culture .about_culture_text .item {
  flex: 1;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.m_about_culture .about_culture_text .item .text {
  height: 30%;
  text-align: center;
  opacity: 0.6;
  -webkit-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
}
.m_about_culture .about_culture_text .item .text .title {
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .m_about_culture .about_culture_text .item .text .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_about_culture .about_culture_text .item .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_about_culture .about_culture_text .item .text .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_culture .about_culture_text .item .text .title {
    font-size: 0.32rem;
  }
}
.m_about_culture .about_culture_text .item .text .slogan {
  font-size: 30px;
  opacity: 0;
  -webkit-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
}
@media screen and (max-width: 1920px) {
  .m_about_culture .about_culture_text .item .text .slogan {
    font-size: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_about_culture .about_culture_text .item .text .slogan {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_culture .about_culture_text .item .text .slogan {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 750px) {
  .m_about_culture .about_culture_text .item .text .slogan i {
    display: block;
  }
}
.m_about_culture .about_culture_text .item.active .text {
  opacity: 1;
}
.m_about_culture .about_culture_text .item.active .text .slogan {
  opacity: 1;
}
.m_list2 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1920px) {
  .m_list2 {
    margin-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_list2 {
    margin-top: 0;
  }
}
.m_list2 .item {
  width: calc((100% - 35px) / 2);
  margin-bottom: 35px;
}
@media screen and (max-width: 1920px) {
  .m_list2 .item {
    margin-bottom: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_list2 .item {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .m_list2 .item {
    margin-bottom: 0.4rem;
  }
}
.m_list2 .item:last-child,
.m_list2 .item:nth-last-child(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 990px) {
  .m_list2 .item:nth-last-child(2) {
    margin-bottom: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list2 .item:nth-last-child(2) {
    margin-bottom: 0.4rem;
  }
}
.m_list2 .item_con {
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  background-color: #f1f1f1;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_list2 .item_con:hover .text .btn {
  color: #09524a;
}
.m_list2 .item_con .left {
  flex: none;
  width: 260px;
}
@media screen and (max-width: 1920px) {
  .m_list2 .item_con .left {
    width: calc(260 / 1920 * 100vw);
    min-width: 200px;
  }
}
@media screen and (max-width: 750px) {
  .m_list2 .item_con .left {
    width: calc(260 / 750 * 100vw);
    min-width: 0;
  }
}
.m_list2 .item_con .picture {
  height: 0;
  padding-top: calc(420 / 260 * 100%);
  background-color: #093935;
  position: relative;
  overflow: hidden;
}
.m_list2 .item_con .picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_list2 .item_con .text {
  color: #666;
  padding: 50px 55px;
  flex: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1920px) {
  .m_list2 .item_con .text {
    padding: calc(50 / 1920 * 100vw) calc(55 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list2 .item_con .text {
    padding: 0.4rem;
  }
}
.m_list2 .item_con .text .name {
  color: #09524a;
  font-size: 36px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .m_list2 .item_con .text .name {
    font-size: calc(36 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_list2 .item_con .text .name {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .m_list2 .item_con .text .name {
    font-size: 0.36rem;
    margin-bottom: 0.2rem;
  }
}
.m_list2 .item_con .text .duty {
  color: #333;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .m_list2 .item_con .text .duty {
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_list2 .item_con .text .duty {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list2 .item_con .text .duty {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_list2 .item_con .text .duty {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list2 .item_con .text .duty {
    font-size: 0.28rem;
    margin-bottom: 0.2rem;
  }
}
.m_list2 .item_con .text .desc {
  line-height: 1.875;
  height: calc(1.875em * 4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-top: 15px;
  border-top: 1px solid #dedede;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .m_list2 .item_con .text .desc {
    margin-bottom: 0.3rem;
    display: none;
  }
}
.m_list2 .item_con .text .btn {
  font-size: 14px;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1280px) {
  .m_list2 .item_con .text .btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  .m_list2 .item_con .text .btn {
    font-size: 0.24rem;
  }
}
.m_list2 .item_con .text .btn i {
  font-size: 10px;
  margin-left: 0.5em;
}
.about_team_detail {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .about_team_detail {
    display: block;
  }
}
.about_team_detail .left {
  flex: none;
  width: 260px;
  margin-right: 55px;
}
@media screen and (max-width: 1920px) {
  .about_team_detail .left {
    width: calc(260 / 1920 * 100vw);
    margin-right: calc(55 / 1920 * 100vw);
    min-width: 200px;
  }
}
@media screen and (max-width: 750px) {
  .about_team_detail .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.about_team_detail .picture {
  height: 0;
  padding-top: calc(420 / 260 * 100%);
  background-color: #093935;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .about_team_detail .picture {
    height: calc(320 / 750 * 100vw);
    padding-top: 0;
    background-color: transparent;
  }
}
.about_team_detail .picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .about_team_detail .picture img {
    position: static;
    width: auto;
    max-width: 100%;
  }
}
.about_team_detail .text {
  color: #666;
  flex: 1;
}
.about_team_detail .text .name {
  color: #09524a;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .about_team_detail .text .name {
    font-size: calc(36 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .about_team_detail .text .name {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .about_team_detail .text .name {
    font-size: 0.36rem;
    margin-bottom: 0.2rem;
  }
}
.about_team_detail .text .duty {
  color: #09524a;
  font-size: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 30px;
}
@media screen and (max-width: 1920px) {
  .about_team_detail .text .duty {
    padding-bottom: calc(30 / 1920 * 100vw);
    margin-bottom: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .about_team_detail .text .duty {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .about_team_detail .text .duty {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .about_team_detail .text .duty {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .about_team_detail .text .duty {
    font-size: 0.28rem;
    padding-bottom: 0.3rem;
    margin-bottom: 0.2rem;
  }
}
.about_team_detail .text .desc {
  line-height: 1.875;
  height: calc(1.875em * 8);
  overflow-y: auto;
  padding-right: 20px;
}
.about_team_detail .text .btn {
  display: none;
}
.fancyBox {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
}
.fancyBox .fancyClose {
  color: #09524a;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  right: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .fancyBox .fancyClose {
    width: calc(60 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    min-width: 40px;
    min-height: 40px;
  }
}
@media screen and (max-width: 750px) {
  .fancyBox .fancyClose {
    right: 0;
    top: 0;
    font-size: 0.4rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.fancyBox .fancyCont {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  background-color: #fff;
  max-height: 90vh;
  overflow-y: auto;
}
#teamPop .fancyCont {
  max-width: 1080px;
  padding: 60px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1920px) {
  #teamPop .fancyCont {
    max-width: calc(1080 / 1920 * 100vw);
    padding: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1024px) {
  #teamPop .fancyCont {
    max-width: 90%;
  }
}
@media screen and (max-width: 750px) {
  #teamPop .fancyCont {
    padding: 0.4rem;
  }
}
.m_about_global {
  color: #fff;
}
.m_about_global .about_global_head {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1920px) {
  .m_about_global .about_global_head {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_about_global .about_global_head {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_about_global .about_global_head {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_about_global .about_global_head {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_head {
    font-size: 0.28rem;
    margin-bottom: 0.5rem;
  }
}
.m_about_global .about_global_head .st1 {
  margin-bottom: 5px;
}
.m_about_global .about_global_mapbox {
  position: relative;
}
.m_about_global .about_global_mapbox .mapbox {
  position: relative;
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_mapbox .mapbox {
    margin: 0 -0.4rem;
  }
}
.m_about_global .about_global_mapbox img {
  display: block;
  width: 100%;
}
.m_about_global .about_global_mapbox .dotlist li {
  color: rgba(255,255,255,0.8);
  line-height: 1;
  position: absolute;
  width: 0;
  height: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
.m_about_global .about_global_mapbox .dotlist li.s1 {
  left: calc(730 / 1600 * 100%);
  top: calc(255 / 700 * 100%);
}
.m_about_global .about_global_mapbox .dotlist li.s2 {
  left: calc(715 / 1600 * 100%);
  top: calc(235 / 700 * 100%);
}
.m_about_global .about_global_mapbox .dotlist li.s3 {
  left: calc(720 / 1600 * 100%);
  top: calc(280 / 700 * 100%);
}
.m_about_global .about_global_mapbox .dotlist li.s4 {
  left: calc(705 / 1600 * 100%);
  top: calc(260 / 700 * 100%);
}
.m_about_global .about_global_mapbox .dotlist li.s4 span {
  position: absolute;
  right: calc(100% + 15px);
  top: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_mapbox .dotlist li.s4 span {
    right: calc(100% + 0.1rem);
  }
}
.m_about_global .about_global_mapbox .dotlist li.s5 {
  left: calc(1090 / 1600 * 100%);
  top: calc(160 / 700 * 100%);
}
.m_about_global .about_global_mapbox .dotlist li.s6 {
  left: calc(710 / 1600 * 100%);
  top: calc(185 / 700 * 100%);
}
.m_about_global .about_global_mapbox .dotlist li span {
  white-space: nowrap;
  position: relative;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1920px) {
  .m_about_global .about_global_mapbox .dotlist li span {
    font-size: calc(16 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_mapbox .dotlist li span {
    margin-left: 0.06rem;
  }
}
.m_about_global .about_global_mapbox .dotlist li .icon-dot {
  flex: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-right: -5px;
}
@media screen and (max-width: 1920px) {
  .m_about_global .about_global_mapbox .dotlist li .icon-dot {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
  }
}
.m_about_global .about_global_mapbox .dotlist li .icon-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (max-width: 1920px) {
  .m_about_global .about_global_mapbox .dotlist li .icon-dot::after {
    width: calc(10 / 1920 * 100vw);
    height: calc(10 / 1920 * 100vw);
  }
}
.m_about_global .about_global_mapbox .dotlist li .icon-map {
  color: #d44330;
  font-size: 22px;
  position: relative;
  -webkit-transform: translate(-50%, -40%);
  -ms-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  margin-right: -5px;
}
@media screen and (max-width: 1920px) {
  .m_about_global .about_global_mapbox .dotlist li .icon-map {
    font-size: calc(22 / 1920 * 100vw);
  }
}
.m_about_global .about_global_mapbox .txtlist {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
}
@media screen and (max-width: 1920px) {
  .m_about_global .about_global_mapbox .txtlist {
    bottom: calc(-40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_about_global .about_global_mapbox .txtlist {
    position: static;
    bottom: 0;
  }
}
.m_about_global .about_global_mapbox .txtlist .list_item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell {
  width: 370px;
  margin: 35px 17px 0;
  padding: 15px 25px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(9,82,74,0.4);
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell {
    width: calc(370 / 1920 * 100vw);
    padding: calc(15 / 1920 * 100vw) calc(25 / 1920 * 100vw);
    margin: calc(35 / 1920 * 100vw) calc(17 / 1920 * 100vw) 0;
    min-width: 250px;
  }
}
@media screen and (max-width: 990px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell {
    min-width: 180px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell {
    width: 100%;
    padding: 0.2rem 0.4rem;
    margin: 0.4rem 0 0;
  }
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell:hover {
  color: #09524a;
  background-color: #fff;
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell:hover .title {
  border-color: rgba(9,82,74,0.1);
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell:hover .title .line {
  background-color: rgba(9,82,74,0.4);
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell:hover .desc li::before {
  background-color: rgba(9,82,74,0.4);
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title {
  font-size: 20px;
  height: 45px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  -webkit-transition: background 0.35s;
  -ms-transition: background 0.35s;
  transition: background 0.35s;
}
@media screen and (max-width: 1440px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title {
    font-size: 0.28rem;
    height: 0.8rem;
    margin-bottom: 0.2rem;
  }
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title .line {
  width: 4px;
  height: 16px;
  -webkit-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.4);
  margin-right: 8px;
}
@media screen and (max-width: 1280px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title .line {
    width: 3px;
    height: 12px;
  }
}
@media screen and (max-width: 990px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title .line {
    width: 2px;
    height: 8px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .title .line {
    width: 0.04rem;
    height: 0.24rem;
    margin-right: 0.16rem;
  }
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .desc {
  opacity: 0.85;
  line-height: 2;
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .desc li {
  padding-left: calc(14 / 16 * 1em);
  position: relative;
}
.m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .desc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: rgba(255,255,255,0.3);
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1440px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .desc li::before {
    width: 5px;
    height: 5px;
  }
}
@media screen and (max-width: 990px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .desc li::before {
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 750px) {
  .m_about_global .about_global_mapbox .txtlist .list_item .list_item_cell .desc li::before {
    width: 0.08rem;
    height: 0.08rem;
  }
}
/* ===================================
****************[产品-仪器产品]**************
====================================*/
.m_product_device_intro .box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 990px) {
  .m_product_device_intro .box {
    display: block;
  }
}
.m_product_device_intro .box .picture {
  flex: none;
  width: 50%;
  padding: 150px 0;
  margin-right: 170px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1920px) {
  .m_product_device_intro .box .picture {
    padding: calc(150 / 1920 * 100vw) 0;
    margin-right: calc(170 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_device_intro .box .picture {
    width: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .m_product_device_intro .box .picture {
    padding: 0.6rem 0;
  }
}
.m_product_device_intro .box .picture img {
  display: block;
  width: 100%;
}
.m_product_device_intro .box .text {
  flex: 1;
  padding: 170px 0 170px 70px;
  background-color: #f6fbfa;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .m_product_device_intro .box .text {
    padding: calc(170 / 1920 * 100vw) 0 calc(170 / 1920 * 100vw) calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_device_intro .box .text {
    width: auto;
    padding: calc(170 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 750px) {
  .m_product_device_intro .box .text {
    padding: 0.6rem 0;
  }
}
.m_product_device_intro .box .text::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 50vw;
  bottom: 0;
  background-color: #f6fbfa;
}
@media screen and (max-width: 990px) {
  .m_product_device_intro .box .text::before {
    width: 100vw;
    left: calc(-160 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_product_device_intro .box .text::before {
    left: -0.4rem;
  }
}
.m_product_device_intro .box .text .title {
  color: #09524a;
  font-size: 36px;
  line-height: 1.4;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(218,218,218,0.7);
  margin-bottom: 25px;
}
@media screen and (max-width: 1920px) {
  .m_product_device_intro .box .text .title {
    font-size: calc(36 / 1920 * 100vw);
    padding-bottom: calc(25 / 1920 * 100vw);
    margin-bottom: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_device_intro .box .text .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_device_intro .box .text .title {
    font-size: 0.36rem;
    padding-bottom: 0.2rem;
    margin-bottom: 0.3rem;
  }
}
.m_product_device_intro .box .text .desc {
  font-size: 18px;
  line-height: 2.2;
}
.m_product_device_intro .box .text .desc h4 {
    color:#09524a;
}
@media screen and (max-width: 1440px) {
  .m_product_device_intro .box .text .desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_product_device_intro .box .text .desc {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 990px) {
  .m_product_device_intro .box .text .desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_device_intro .box .text .desc {
    font-size: 0.28rem;
  }
}
.m_product_device_brief .intro {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 60px;
}
@media screen and (max-width: 1920px) {
  .m_product_device_brief .intro {
    margin-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_product_device_brief .intro {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_product_device_brief .intro {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 990px) {
  .m_product_device_brief .intro {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_device_brief .intro {
    font-size: 0.28rem;
    line-height: 1.75;
    margin-bottom: 0.6rem;
  }
}
.m_list3 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.m_list3 .item {
  width: calc((100% - 40px) / 2);
  margin-bottom: 40px;
}
@media screen and (max-width: 1920px) {
  .m_list3 .item {
    width: calc((100% - calc(40 / 1920 * 100vw)) / 2);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list3 .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.m_list3 .item:last-child,
.m_list3 .item:nth-last-child(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .m_list3 .item:nth-last-child(2) {
    margin-bottom: 0.4rem;
  }
}
.m_list3 .item:hover .picture::after {
  width: 100%;
}
.m_list3 .item .picture {
  height: 0;
  padding-top: calc(480 / 780 * 100%);
  background-color: #fff;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.m_list3 .item .picture::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: #093935;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_list3 .item .picture img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_list4 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.m_list4 .item {
  line-height: 1.875;
  padding: 75px;
  width: calc((100% - 40px) / 2);
  background-color: #fff;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 40px;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  .m_list4 .item {
    padding: calc(75 / 1920 * 100vw);
    width: calc((100% - calc(40 / 1920 * 100vw)) / 2);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list4 .item {
    width: 100%;
    padding: 0.6rem 0.4rem;
    background-color: #f1f3f5;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.m_list4 .item:last-child,
.m_list4 .item:nth-last-child(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .m_list4 .item:nth-last-child(2) {
    margin-bottom: 0.4rem;
  }
}
.m_list4 .item:hover {
  background-color: #f1f3f5;
}
.m_list4 .icon {
  width: 80px;
  height: 80px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 1920px) {
  .m_list4 .icon {
    width: calc(80 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    min-width: 40px;
    min-height: 40px;
    margin-bottom: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list4 .icon {
    width: 0.8rem;
    height: 0.8rem;
    margin-bottom: 0.3rem;
  }
}
.m_list4 .icon img {
  max-width: 100%;
  max-height: 100%;
}
.m_list4 .title {
  color: #09524a;
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(218,218,218,0.7);
  margin-bottom: 15px;
}
@media screen and (max-width: 1920px) {
  .m_list4 .title {
    font-size: calc(30 / 1920 * 100vw);
    padding-bottom: calc(20 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_list4 .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_list4 .title {
    font-size: 0.32rem;
    padding-bottom: 0.3rem;
    margin-bottom: 0.2rem;
  }
}
.m_list4 .slogan {
  font-size: 24px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .m_list4 .slogan {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list4 .slogan {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_list4 .slogan {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list4 .slogan {
    font-size: 0.28rem;
    margin-bottom: 0.1rem;
  }
}
.m_list4 .desc {
  line-height: 1.875;
}
@media screen and (max-width: 1280px) {
  .m_list4 .desc {
    line-height: 1.75;
  }
}
@media screen and (max-width: 990px) {
  .m_list4 .desc {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  .m_list4 .desc {
    font-size: 0.24rem;
  }
}
.m_list5 {
  position: relative;
}
.m_list5 .swiper-prev,
.m_list5 .swiper-next {
  color: #fff;
  position: absolute;
  z-index: 9;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #09524a;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .m_list5 .swiper-prev,
  .m_list5 .swiper-next {
    width: 1rem;
    height: 1rem;
    display: none;
  }
}
.m_list5 .swiper-prev.swiper-button-disabled,
.m_list5 .swiper-next.swiper-button-disabled {
  background-color: rgba(0,0,0,0.5);
}
.m_list5 .swiper-prev {
  left: -70px;
}
@media screen and (max-width: 1920px) {
  .m_list5 .swiper-prev {
    left: calc(-70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list5 .swiper-prev {
    left: 0;
  }
}
.m_list5 .swiper-next {
  right: -70px;
}
@media screen and (max-width: 1920px) {
  .m_list5 .swiper-next {
    right: calc(-70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list5 .swiper-next {
    right: 0;
  }
}
.m_list5 .swiper .swiper-slide {
  width: calc(420 / 1920 * 100vw);
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .m_list5 .swiper .swiper-slide {
    width: auto;
  }
}
.m_list5 .swiper .swiper-slide.swiper-slide-active,
.m_list5 .swiper .swiper-slide:hover {
  width: calc(700 / 1920 * 100vw);
}
@media screen and (max-width: 750px) {
  .m_list5 .swiper .swiper-slide.swiper-slide-active,
  .m_list5 .swiper .swiper-slide:hover {
    width: auto;
  }
}
.m_list5 .swiper .swiper-pagination {
  position: static;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
@media screen and (max-width: 750px) {
  .m_list5 .swiper .swiper-pagination {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-top: 0.4rem;
  }
}
.m_list5 .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: transparent;
  border: 1px solid #093935;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .m_list5 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.15rem;
    height: 0.15rem;
    margin: 0 0.1rem;
  }
}
.m_list5 .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #093935;
}
.m_list5 .item {
  background-color: #fff;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.m_list5 .item .item_con {
  color: #999;
  text-align: center;
  padding: 70px 50px;
  display: block;
}
@media screen and (max-width: 1920px) {
  .m_list5 .item .item_con {
    padding: calc(70 / 1920 * 100vw) calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list5 .item .item_con {
    padding: 0.6rem 0.4rem;
  }
}
.m_list5 .item .item_con:hover .title {
  color: #09524a;
}
.m_list5 .item .item_con:hover .btn {
  color: #fff;
  border-color: #09524a;
  background-color: #09524a;
}
.m_list5 .item .picture {
  height: 230px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 1920px) {
  .m_list5 .item .picture {
    height: calc(230 / 1920 * 100vw);
    margin-bottom: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list5 .item .picture {
    height: 3rem;
    margin-bottom: 0.4rem;
  }
}
.m_list5 .item .picture img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_list5 .item .text .title {
  color: #333;
  font-size: 28px;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .m_list5 .item .text .title {
    font-size: calc(28 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_list5 .item .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_list5 .item .text .title {
    font-size: 0.32rem;
    margin-bottom: 0.3rem;
  }
}
.m_list5 .item .text .btn {
  width: 140px;
  height: 50px;
  border: 1px solid #dedede;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1920px) {
  .m_list5 .item .text .btn {
    width: calc(140 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    min-width: 100px;
    min-height: 35px;
  }
}
@media screen and (max-width: 1440px) {
  .m_list5 .item .text .btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_list5 .item .text .btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  .m_list5 .item .text .btn {
    font-size: 0.24rem;
    width: 2.2rem;
    height: 0.8rem;
  }
}
/* ===================================
****************[产品-试剂与耗材]**************
====================================*/
.m_product_reagent_intro .box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box {
    display: block;
  }
}
.m_product_reagent_intro .box .left,
.m_product_reagent_intro .box .right {
  flex: none;
  width: calc((100% - 80px) / 2);
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box .left,
  .m_product_reagent_intro .box .right {
    width: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_intro .box .left,
  .m_product_reagent_intro .box .right {
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box .left:last-child,
  .m_product_reagent_intro .box .right:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_intro .box .left:last-child,
  .m_product_reagent_intro .box .right:last-child {
    margin-bottom: 0;
  }
}
.m_product_reagent_intro .box .left {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}
.m_product_reagent_intro .box .intro {
  padding: 40px 40px 25px;
}
@media screen and (max-width: 1920px) {
  .m_product_reagent_intro .box .intro {
    padding: calc(40 / 1920 * 100vw) calc(40 / 1920 * 100vw) calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box .intro {
    padding: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_intro .box .intro {
    padding: 0.4rem;
  }
}
.m_product_reagent_intro .box .intro .picture {
  height: 360px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box .intro .picture {
    height: auto;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_intro .box .intro .picture {
    margin-bottom: 0.3rem;
  }
}
.m_product_reagent_intro .box .intro .picture img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.m_product_reagent_intro .box .intro .protit {
  color: #09524a;
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 1920px) {
  .m_product_reagent_intro .box .intro .protit {
    font-size: calc(28 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box .intro .protit {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_intro .box .intro .protit {
    font-size: 0.32rem;
  }
}
.m_product_reagent_intro .box .text .title {
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .m_product_reagent_intro .box .text .title {
    font-size: calc(32 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_intro .box .text .title {
    font-size: 0.32rem;
    margin-bottom: 0.2rem;
  }
}
.m_product_reagent_intro .box .text .desc {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 1440px) {
  .m_product_reagent_intro .box .text .desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_product_reagent_intro .box .text .desc {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_intro .box .text .desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_intro .box .text .desc {
    font-size: 0.28rem;
  }
}
.m_product_reagent_search .box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 990px) {
  .m_product_reagent_search .box {
    display: block;
  }
}
.m_product_reagent_search .box .left {
  flex: 1;
  background-color: #f4f4f4;
  border: 1px solid #dedede;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .m_product_reagent_search .box .left {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_search .box .left {
    margin-bottom: 0.2rem;
  }
}
.m_product_reagent_search .box .right {
  width: 580px;
  margin-left: 15px;
  color: #fff;
  background-color: #093935;
}
@media screen and (max-width: 1920px) {
  .m_product_reagent_search .box .right {
    width: calc(580 / 1920 * 100vw);
    min-width: 360px;
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_search .box .right {
    width: auto;
    margin-left: 0;
  }
}
.m_product_reagent_search .form {
  width: 100%;
  padding: 30px 40px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 1920px) {
  .m_product_reagent_search .form {
    padding: 30px calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_search .form {
    padding: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_search .form {
    padding: 0.4rem 0.2rem;
  }
}
.m_product_reagent_search .form .inp_box {
  flex: 1;
  color: #999;
  padding: 0 20px;
  background-color: #fff;
  border: 1px solid #dedede;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .m_product_reagent_search .form .inp_box {
    padding: 0 0.2rem;
  }
}
.m_product_reagent_search .form .inp_box .inp {
  flex: 1;
  margin-left: 10px;
}
.m_product_reagent_search .form .btn {
  color: #fff;
  width: 120px;
  height: 50px;
  background-color: #093935;
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .m_product_reagent_search .form .btn {
    width: 6em;
    height: 0.8rem;
    margin-left: 0.1rem;
  }
}
.m_product_reagent_search .text {
  text-align: center;
  padding: 30px 40px;
}
@media screen and (max-width: 1920px) {
  .m_product_reagent_search .text {
    padding: 30px calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_search .text {
    padding: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_search .text {
    padding: 0.6rem 0.4rem;
  }
}
.m_product_reagent_search .text .intro {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .m_product_reagent_search .text .intro {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_product_reagent_search .text .intro {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_product_reagent_search .text .intro {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_product_reagent_search .text .intro {
    font-size: 0.28rem;
    margin-bottom: 0.2rem;
  }
}
.m_list6 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.m_list6 .item {
  min-height: 100px;
  width: calc((100% - 60px) / 6);
  border: 1px solid #09524a;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 12px;
  margin-bottom: 20px;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .m_list6 .item {
    width: calc((100% - 48px) / 5);
  }
}
@media screen and (max-width: 1280px) {
  .m_list6 .item {
    width: calc((100% - 36px) / 4);
  }
}
@media screen and (max-width: 990px) {
  .m_list6 .item {
    width: calc((100% - 24px) / 3);
  }
}
@media screen and (max-width: 750px) {
  .m_list6 .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
}
.m_list6 .item:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .m_list6 .item:nth-child(6n) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 750px) {
  .m_list6 .item:nth-child(6n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1440px) {
  .m_list6 .item:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1280px) {
  .m_list6 .item:nth-child(5n) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 750px) {
  .m_list6 .item:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1280px) {
  .m_list6 .item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 990px) {
  .m_list6 .item:nth-child(4n) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 750px) {
  .m_list6 .item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 990px) {
  .m_list6 .item:nth-child(3n) {
    margin-right: 0;
  }
}
.m_list6 .item:hover {
  background-color: #09524a;
}
.m_list6 .item:hover .item_con {
  color: #fff;
}
.m_list6 .item .item_con {
  color: #074942;
  font-size: 18px;
  text-align: center;
  line-height: 1.778;
  padding: 20px 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
@media screen and (max-width: 1440px) {
  .m_list6 .item .item_con {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list6 .item .item_con {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_list6 .item .item_con {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list6 .item .item_con {
    font-size: 0.28rem;
  }
}
/* ===================================
****************[产品-医学检验服务]**************
====================================*/
.m_text2 {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 1920px) {
  .m_text2 {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_text2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_text2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_text2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_text2 {
    font-size: 0.28rem;
    line-height: 1.75;
    margin-bottom: 0.4rem;
  }
}
.m_text2:last-child {
  margin-bottom: 0;
}
.m_text2 h4 {
  color: #09524a;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .m_text2 h4 {
    margin-top: 0.2rem;
  }
}
.m_text2 h4:last-child {
  margin-top: 0;
}
.m_text2 h4 + ul {
  margin-top: 0;
}
.m_text2 ul {
  color: #09524a;
  margin-top: 15px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1920px) {
  .m_text2 ul {
    margin-bottom: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_text2 ul {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
  }
}
.m_text2 ul:last-child {
  margin-bottom: 0;
}
.m_text2 ul li {
  padding-left: 15px;
  position: relative;
}
.m_text2 ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #09524a;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .m_text2 ul li::before {
    top: 0.85em;
  }
}
.m_list7 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.m_list7 .item {
  width: 410px;
  padding: 30px 0;
  border-bottom: 2px solid #093935;
}
@media screen and (max-width: 1920px) {
  .m_list7 .item {
    width: calc(410 / 1920 * 100vw);
    padding: calc(30 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 750px) {
  .m_list7 .item {
    width: 100%;
    padding: 0.4rem 0;
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 750px) {
  .m_list7 .item:last-child {
    margin-bottom: 0;
  }
}
.m_list7 .item .top {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (max-width: 1920px) {
  .m_list7 .item .top {
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list7 .item .top {
    margin-bottom: 0.2rem;
  }
}
.m_list7 .item .icon {
  order: 2;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .m_list7 .item .icon {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list7 .item .icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 750px) {
  .m_list7 .item .icon {
    width: 0.4rem;
    height: 0.4rem;
    margin-bottom: 0.2rem;
  }
}
.m_list7 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.m_list7 .item .major {
  order: 1;
  color: #09524a;
  font-size: 18px;
  line-height: 0.8;
}
@media screen and (max-width: 1440px) {
  .m_list7 .item .major {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list7 .item .major {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_list7 .item .major {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list7 .item .major {
    font-size: 0.28rem;
  }
}
.m_list7 .item .major span {
  font-size: 100px;
  font-family: 'DIN';
}
@media screen and (max-width: 1920px) {
  .m_list7 .item .major span {
    font-size: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list7 .item .major span {
    font-size: 0.8rem;
  }
}
.gtab1 {
  margin-bottom: 35px;
}
@media screen and (max-width: 1920px) {
  .gtab1 {
    margin-bottom: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .gtab1 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
  .gtab1 {
    margin-bottom: 0.4rem;
  }
}
.gtab1 ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: flex-end;
}
.gtab1 ul li {
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  margin-right: 55px;
}
@media screen and (max-width: 1920px) {
  .gtab1 ul li {
    margin-right: calc(55 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .gtab1 ul li {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .gtab1 ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .gtab1 ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .gtab1 ul li {
    font-size: 0.28rem;
    margin-right: 0.6rem;
  }
}
.gtab1 ul li:last-child {
  margin-right: 0;
}
.gtab1 ul li.active {
  color: #09524a;
  font-size: 32px;
}
@media screen and (max-width: 1920px) {
  .gtab1 ul li.active {
    font-size: calc(32 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .gtab1 ul li.active {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .gtab1 ul li.active {
    font-size: 0.36rem;
  }
}
.m_list8.m_list8_flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.m_list8.m_list8_flex .item {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .m_list8.m_list8_flex .item {
    width: calc((100% - 40px) / 3);
    flex: none;
  }
}
@media screen and (max-width: 990px) {
  .m_list8.m_list8_flex .item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 750px) {
  .m_list8.m_list8_flex .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.m_list8.m_list8_flex .item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .m_list8.m_list8_flex .item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1280px) {
  .m_list8.m_list8_flex .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 990px) {
  .m_list8.m_list8_flex .item:nth-child(3n) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_list8.m_list8_flex .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 990px) {
  .m_list8.m_list8_flex .item:nth-child(2n) {
    margin-right: 0;
  }
}
.m_list8 .tabbox_item {
  height: 0;
  overflow: hidden;
}
.m_list8 .tabbox_item.active {
  height: auto;
  overflow: visible;
}
.m_list8 .swiper {
  overflow: visible;
}
.m_list8 .swiper .swiper-slide .desc {
  min-height: calc(1.875em * 8);
}
.m_list8 .swiper .swiper-pagination {
  position: static;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  margin-top: 40px;
}
@media screen and (max-width: 1920px) {
  .m_list8 .swiper .swiper-pagination {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list8 .swiper .swiper-pagination {
    margin-top: 0.4rem;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
}
.m_list8 .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #09524a;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  margin: 0 5px;
}
@media screen and (max-width: 750px) {
  .m_list8 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    margin: 0 0.1rem;
  }
}
.m_list8 .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #09524a;
}
.m_list8 .item {
  padding: 35px 35px 50px;
  background-color: #f1f3f5;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 1920px) {
  .m_list8 .item {
    padding: 35px calc(35 / 1920 * 100vw) calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list8 .item {
    padding: 0.6rem 0.4rem 0.4rem;
  }
}
.m_list8 .item .icon {
  width: 70px;
  height: 70px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .m_list8 .item .icon {
    width: calc(70 / 1920 * 100vw);
    height: calc(70 / 1920 * 100vw);
    min-width: 35px;
    min-height: 35px;
  }
}
@media screen and (max-width: 750px) {
  .m_list8 .item .icon {
    width: 0.7rem;
    height: 0.7rem;
    margin-bottom: 0.2rem;
  }
}
.m_list8 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.m_list8 .item .title {
  color: #09524a;
  font-size: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .m_list8 .item .title {
    padding-bottom: calc(20 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_list8 .item .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list8 .item .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 990px) {
  .m_list8 .item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_list8 .item .title {
    font-size: 0.32rem;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
.m_list8 .item .desc {
  color: #666;
  line-height: 1.875;
}
/* ===================================
****************[加入我们-凯莱谱人的故事]**************
====================================*/
.m_list9 .item {
  overflow: hidden;
  margin-bottom: 60px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item {
    margin-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item {
    margin-bottom: 0.4rem;
  }
}
.m_list9 .item {
  color: #666;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 0 100px 10px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item {
    padding: 0 calc(100 / 1920 * 100vw) 10px;
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item {
    padding: 0 0.4rem;
    display: block;
  }
}
.m_list9 .item:hover {
  color: #fff;
}
.m_list9 .item:hover .text::before {
  background-color: #093935;
}
.m_list9 .item:hover .text .slogan h3 {
  color: #fff;
}
.m_list9 .item:hover .text .top {
  color: #fff;
}
.m_list9 .item:hover .text .duty {
  border-color: rgba(255,255,255,0.2);
}
.m_list9 .item:hover .text .gbtn2 {
  color: #fff;
  background-color: #317b7e;
}
.m_list9 .item .right {
  order: 2;
  flex: none;
  margin-left: 95px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item .right {
    margin-left: calc(95 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item .right {
    margin-left: 0;
  }
}
.m_list9 .item .left {
  flex: 1;
}
.m_list9 .item .picture {
  width: 400px;
  height: 400px;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.1);
  -ms-box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.1);
  margin-top: 50px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item .picture {
    width: calc(400 / 1920 * 100vw);
    height: calc(400 / 1920 * 100vw);
    padding: calc(20 / 1920 * 100vw);
    margin-top: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item .picture {
    width: 50vw;
    height: 50vw;
    padding: 0.2rem;
    margin: 0 auto -0.4rem;
  }
}
.m_list9 .item .picture img {
  display: block;
  width: 100%;
  height: 100%;
}
.m_list9 .item .text {
  font-size: 18px;
  line-height: 2;
  padding: 40px 0 50px;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item .text {
    padding: calc(40 / 1920 * 100vw) 0 calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_list9 .item .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list9 .item .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_list9 .item .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item .text {
    font-size: 0.28rem;
    line-height: 1.75;
    padding: 0.8rem 0 0.6rem;
  }
}
.m_list9 .item .text::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -100px;
  top: 0;
  bottom: 0;
  width: 100vw;
  background-color: #f6f6f6;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .m_list9 .item .text::before {
    left: -0.4rem;
  }
}
.m_list9 .item .text .top {
  color: #333;
}
.m_list9 .item .text .slogan {
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item .text .slogan {
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item .text .slogan {
    margin-bottom: 0.1rem;
  }
}
.m_list9 .item .text .slogan h3 {
  color: #09524a;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item .text .slogan h3 {
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_list9 .item .text .slogan h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list9 .item .text .slogan h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 990px) {
  .m_list9 .item .text .slogan h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item .text .slogan h3 {
    font-size: 0.32rem;
    margin-bottom: 0.1rem;
  }
}
.m_list9 .item .text .duty {
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item .text .duty {
    padding-bottom: calc(20 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item .text .duty {
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
.m_list9 .item .text .desc {
  height: 4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 1920px) {
  .m_list9 .item .text .desc {
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list9 .item .text .desc {
    height: calc(1.75em * 2);
    margin-bottom: 0.3rem;
  }
}
.m_list9 .item .text .gbtn2 {
  color: #09524a;
  border: 1px solid #09524a;
  background-color: transparent;
}
.g_page {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .g_page {
    display: block;
  }
}
.g_page li,
.g_page .inp,
.g_page .btn {
  width: 40px;
  height: 40px;
  background-color: #f1f1f1;
  -webkit-border-radius: 10px 0 10px 0;
  -ms-border-radius: 10px 0 10px 0;
  border-radius: 10px 0 10px 0;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  margin: 0 4px;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .g_page li,
  .g_page .inp,
  .g_page .btn {
    width: 0.7rem;
    height: 0.7rem;
    margin: 0 0.05rem;
  }
}
.g_page li:hover,
.g_page .inp:hover,
.g_page .btn:hover {
  color: #333;
}
.g_page ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
}
.g_page ul li.ellipsis {
  background: none;
  cursor: default;
}
.g_page ul li.current {
  color: #fff;
  background-color: #09524a;
}
.g_page ul li.current:hover {
  color: #fff;
}
.g_page ul li i {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .g_page ul li i {
    font-size: 0.2rem;
  }
}
.g_page .form {
  background-color: #f1f1f1;
  -webkit-border-radius: 10px 0 10px 0;
  -ms-border-radius: 10px 0 10px 0;
  border-radius: 10px 0 10px 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .g_page .form {
    width: 1.5rem;
    margin: 0.4rem auto;
  }
}
.g_page .form .inp,
.g_page .form .btn {
  background: none;
}
.g_page .form .inp {
  cursor: text;
  text-align: center;
}
.g_page .form .inp:hover {
  color: #333;
}
/* ===================================
****************[加入我们-组织人才与发展]**************
====================================*/
.dev_box {
  color: #fff;
  padding: 40px 25px;
  background-color: #317b7e;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  margin: 35px 0;
}
@media screen and (max-width: 1920px) {
  .dev_box {
    padding: calc(40 / 1920 * 100vw) calc(25 / 1920 * 100vw);
    margin: calc(35 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 990px) {
  .dev_box {
    margin: 20px 0;
  }
}
@media screen and (max-width: 750px) {
  .dev_box {
    padding: 0.4rem 0.2rem;
    margin: 0.2rem 0;
  }
}
.m_txt_slogan {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1920px) {
  .m_txt_slogan {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_txt_slogan {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_txt_slogan {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
}
.m_txt_slogan:last-child {
  margin-bottom: 0;
  margin-top: 15px;
}
@media screen and (max-width: 1920px) {
  .m_txt_slogan:last-child {
    margin-top: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_txt_slogan:last-child {
    margin-top: 0.2rem;
  }
}
.m_list10 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.m_list10 .item {
  width: calc((100% - 45px) / 4);
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1920px) {
  .m_list10 .item {
    width: calc((100% - calc(45 / 1920 * 100vw)) / 4);
    margin-right: calc(15 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1200px) {
  .m_list10 .item {
    width: calc((100% - calc(30 / 1920 * 100vw)) / 2);
  }
}
@media screen and (max-width: 750px) {
  .m_list10 .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
}
.m_list10 .item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .m_list10 .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .m_list10 .item:last-child {
    margin-bottom: 0;
  }
}
.m_list10 .item:hover .picture::after {
  opacity: 0.9;
  visibility: visible;
}
.m_list10 .item:hover .text {
  top: 0;
  padding: 50px 30px;
}
@media screen and (max-width: 1920px) {
  .m_list10 .item:hover .text {
    padding: calc(50 / 1920 * 100vw) calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list10 .item:hover .text {
    padding: 0.6rem 0.3rem;
  }
}
.m_list10 .item:hover .text .desc {
  display: block;
}
.m_list10 .item .picture {
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .m_list10 .item .picture {
    height: calc(450 / 1920 * 100vw);
    min-height: 200px;
  }
}
@media screen and (max-width: 750px) {
  .m_list10 .item .picture {
    min-height: 0;
    height: 0;
    padding-top: calc(450 / 360 * 100%);
  }
}
.m_list10 .item .picture::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
}
@media screen and (max-width: 750px) {
  .m_list10 .item .picture::before {
    height: 50%;
  }
}
.m_list10 .item .picture::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #09524a;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_list10 .item .text {
  position: absolute;
  left: 0;
  top: calc(100% - 110px);
  right: 0;
  bottom: 0;
  padding: 30px;
  color: #fff;
  line-height: 2;
  text-align: center;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  .m_list10 .item .text {
    padding: calc(30 / 1920 * 100vw);
    top: calc(100% - calc(110 / 1920 * 100vw));
  }
}
@media screen and (max-width: 750px) {
  .m_list10 .item .text {
    top: calc(100% - 2rem);
    padding: 0.3rem;
  }
}
.m_list10 .item .text .title {
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .m_list10 .item .text .title {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_list10 .item .text .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list10 .item .text .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 990px) {
  .m_list10 .item .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_list10 .item .text .title {
    font-size: 0.36rem;
    margin-bottom: 0.3rem;
  }
}
.m_list10 .item .text .desc {
  display: none;
}
.m_develop_row {
  background-repeat: no-repeat;
  background-position: center bottom;
  -webkit-background-size: 100% auto;
  -ms-background-size: 100% auto;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  .m_list11 {
    overflow-x: auto;
    margin: 0 -0.4rem;
  }
}
.m_list11 ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 750px) {
  .m_list11 ul {
    width: 280vw;
  }
}
.m_list11 ul::before {
  content: '';
  position: absolute;
  left: calc(100% / 7 / 2);
  right: calc(100% / 7 / 2);
  bottom: 10px;
  height: 305px;
  background: url("../images/line.png") no-repeat center bottom;
  -webkit-background-size: 100% 100%;
  -ms-background-size: 100% 100%;
  background-size: 100% 100%;
}
@media screen and (max-width: 1920px) {
  .m_list11 ul::before {
    height: calc(305 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul::before {
    bottom: 0.16rem;
    height: calc(6 * 0.4rem);
  }
}
.m_list11 ul li {
  flex: 1;
  color: #09524a;
  text-align: center;
}
.m_list11 ul li:last-child .circle::after {
  display: none;
}
.m_list11 ul li:nth-child(2) .item {
  padding-bottom: calc(1 * 50px);
}
@media screen and (max-width: 1920px) {
  .m_list11 ul li:nth-child(2) .item {
    padding-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul li:nth-child(2) .item {
    padding-bottom: 0.4rem;
  }
}
.m_list11 ul li:nth-child(3) .item {
  padding-bottom: calc(2 * 50px);
}
@media screen and (max-width: 1920px) {
  .m_list11 ul li:nth-child(3) .item {
    padding-bottom: calc(2 * 50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul li:nth-child(3) .item {
    padding-bottom: calc(2 * 0.4rem);
  }
}
.m_list11 ul li:nth-child(4) .item {
  padding-bottom: calc(3 * 50px);
}
@media screen and (max-width: 1920px) {
  .m_list11 ul li:nth-child(4) .item {
    padding-bottom: calc(3 * 50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul li:nth-child(4) .item {
    padding-bottom: calc(3 * 0.4rem);
  }
}
.m_list11 ul li:nth-child(5) .item {
  padding-bottom: calc(4 * 50px);
}
@media screen and (max-width: 1920px) {
  .m_list11 ul li:nth-child(5) .item {
    padding-bottom: calc(4 * 50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul li:nth-child(5) .item {
    padding-bottom: calc(4 * 0.4rem);
  }
}
.m_list11 ul li:nth-child(6) .item {
  padding-bottom: calc(5 * 50px);
}
@media screen and (max-width: 1920px) {
  .m_list11 ul li:nth-child(6) .item {
    padding-bottom: calc(5 * 50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul li:nth-child(6) .item {
    padding-bottom: calc(5 * 0.4rem);
  }
}
.m_list11 ul li:nth-child(7) .item {
  padding-bottom: calc(6 * 50px);
}
@media screen and (max-width: 1920px) {
  .m_list11 ul li:nth-child(7) .item {
    padding-bottom: calc(6 * 50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul li:nth-child(7) .item {
    padding-bottom: calc(6 * 0.4rem);
  }
}
.m_list11 ul li .item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.m_list11 ul li .level {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 1440px) {
  .m_list11 ul li .level {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list11 ul li .level {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_list11 ul li .level {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list11 ul li .level {
    font-size: 0.32rem;
  }
}
.m_list11 ul li .duty {
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .m_list11 ul li .duty {
    margin-bottom: 0.1rem;
  }
}
.m_list11 ul li .dot {
  width: 8px;
  height: 8px;
  border: 2px solid #317b7e;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .m_list11 ul li .dot {
    width: 0.1rem;
    height: 0.1rem;
  }
}
.m_list11 ul li .line {
  width: 2px;
  height: 60px;
  background-color: #317b7e;
  opacity: 0.4;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .m_list11 ul li .line {
    height: 0.6rem;
  }
}
.m_list11 ul li .circle {
  width: 14px;
  height: 14px;
  background-color: #093935;
  border: 6px solid #317b7e;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .m_list11 ul li .circle {
    width: 0.2rem;
    height: 0.2rem;
    border-width: 0.06rem;
  }
}
.m_list12 {
  padding: 0 40px;
}
@media screen and (max-width: 1920px) {
  .m_list12 {
    padding: 0 calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list12 {
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .m_list12 .swiper {
    overflow: visible;
  }
}
.m_list12 .swiper-btns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc((100% - 80px) / 3);
  margin: 40px auto 0;
}
@media screen and (max-width: 1920px) {
  .m_list12 .swiper-btns {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list12 .swiper-btns {
    margin-top: 0.4rem;
    width: auto;
  }
}
.m_list12 .swiper-btns .swiper-prev,
.m_list12 .swiper-btns .swiper-next {
  color: #fff;
  cursor: pointer;
  flex: none;
  width: 50px;
  height: 50px;
  background-color: #000;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  .m_list12 .swiper-btns .swiper-prev,
  .m_list12 .swiper-btns .swiper-next {
    width: calc(50 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    min-width: 35px;
    min-height: 35px;
  }
}
@media screen and (max-width: 750px) {
  .m_list12 .swiper-btns .swiper-prev,
  .m_list12 .swiper-btns .swiper-next {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.m_list12 .swiper-btns .swiper-prev:hover,
.m_list12 .swiper-btns .swiper-next:hover {
  background-color: #09524a;
}
.m_list12 .swiper-btns .swiper-pagination {
  color: #999;
  position: static;
}
.m_list12 .swiper-btns .swiper-pagination .swiper-pagination-current {
  color: #09524a;
  font-size: 22px;
}
@media screen and (max-width: 1440px) {
  .m_list12 .swiper-btns .swiper-pagination .swiper-pagination-current {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list12 .swiper-btns .swiper-pagination .swiper-pagination-current {
    font-size: 18px;
  }
}
@media screen and (max-width: 990px) {
  .m_list12 .swiper-btns .swiper-pagination .swiper-pagination-current {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_list12 .swiper-btns .swiper-pagination .swiper-pagination-current {
    font-size: 0.36rem;
  }
}
.m_list12 .item {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
}
.m_list12 .item:nth-child(3n) {
  margin-right: 0;
}
.m_list12 .picture {
  height: 0;
  padding-top: calc(350 / 480 * 100%);
  background-color: #ccc;
  position: relative;
  overflow: hidden;
}
.m_list12 .picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
/* ===================================
****************[加入我们-学习与成长]**************
====================================*/
.gtab2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1920px) {
  .gtab2 {
    font-size: calc(32 / 1920 * 100vw);
    margin-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .gtab2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .gtab2 {
    font-size: 0.36rem;
    margin-bottom: 0.6rem;
  }
}
.gtab2 ul {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
}
.gtab2 ul li {
  color: #333;
  margin: 0 30px;
}
@media screen and (max-width: 1920px) {
  .gtab2 ul li {
    margin: 0 calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .gtab2 ul li {
    margin: 0 0.3rem;
  }
}
.gtab2 ul li a {
  color: #333;
  display: block;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}
@media screen and (max-width: 750px) {
  .gtab2 ul li a {
    padding: 0.1rem 0;
    border-width: 2px;
  }
}
.gtab2 ul li.active {
  color: #09524a;
}
.gtab2 ul li.active a {
  color: #09524a;
  border-color: #09524a;
}
.m_list13 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.m_list13 .item {
  width: calc((100% - 180px) / 4);
  margin-right: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1920px) {
  .m_list13 .item {
    width: calc((100% - calc(180 / 1920 * 100vw)) / 4);
    margin-right: calc(60 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_list13 .item {
    width: calc((100% - calc(60 / 1920 * 100vw)) / 2);
  }
}
@media screen and (max-width: 750px) {
  .m_list13 .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.m_list13 .item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 990px) {
  .m_list13 .item:nth-child(2n) {
    margin-right: 0;
  }
}
.m_list13 .item:hover .picture::after {
  opacity: 0.6;
  visibility: visible;
}
.m_list13 .item:hover .title {
  color: #09524a;
  font-weight: bold;
}
.m_list13 .item .picture {
  height: 0;
  padding-top: calc(475 / 355 * 100%);
  background-color: #093935;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 1920px) {
  .m_list13 .item .picture {
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_list13 .item .picture {
    margin-bottom: 0.2rem;
  }
}
.m_list13 .item .picture::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #09524a;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_list13 .item .picture img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.m_list13 .item .picture i {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 50px;
}
@media screen and (max-width: 1920px) {
  .m_list13 .item .picture i {
    font-size: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_list13 .item .picture i {
    font-size: 30px;
  }
}
@media screen and (max-width: 750px) {
  .m_list13 .item .picture i {
    font-size: 1rem;
  }
}
.m_list13 .item .title {
  color: #333;
  font-size: 18px;
  text-align: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1440px) {
  .m_list13 .item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list13 .item .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_list13 .item .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list13 .item .title {
    font-size: 0.32rem;
  }
}
.g_page2 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .g_page2 {
    display: block;
  }
}
.g_page2 ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
}
.g_page2 ul li {
  width: 58px;
  height: 58px;
  background-color: #fff;
  border: 1px solid #dedede;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  margin: 0 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1920px) {
  .g_page2 ul li {
    width: calc(58 / 1920 * 100vw);
    height: calc(58 / 1920 * 100vw);
    min-width: 40px;
    min-height: 40px;
    margin: 0 calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_page2 ul li {
    width: 0.7rem;
    height: 0.7rem;
    margin: 0 0.05rem;
  }
}
.g_page2 ul li.current {
  color: #fff;
  background-color: #09524a;
}
.g_page2 ul li.current:hover {
  color: #fff;
  background-color: #093935;
}
.g_page2 ul li:hover {
  color: #09524a;
  border-color: #09524a;
}
.g_page2 .form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 60px;
}
@media screen and (max-width: 1920px) {
  .g_page2 .form {
    margin-left: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .g_page2 .form {
    width: 1.5rem;
    margin: 0.3rem auto 0;
  }
}
.g_page2 .form .inp,
.g_page2 .form .btn {
  flex: none;
  width: 58px;
  height: 58px;
  background-color: #fff;
  border: 1px solid #dedede;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (max-width: 1920px) {
  .g_page2 .form .inp,
  .g_page2 .form .btn {
    width: calc(58 / 1920 * 100vw);
    height: calc(58 / 1920 * 100vw);
    min-width: 36px;
    min-height: 36px;
  }
}
@media screen and (max-width: 750px) {
  .g_page2 .form .inp,
  .g_page2 .form .btn {
    width: 0.7rem;
    height: 0.7rem;
    margin: 0 0.05rem;
  }
}
.g_page2 .form .inp:focus,
.g_page2 .form .btn:focus {
  border-color: #09524a;
}
.g_page2 .form .inp {
  text-align: center;
}
.g_page2 .form .btn {
  cursor: pointer;
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .g_page2 .form .btn {
    width: 0.7rem;
    height: 0.7rem;
    margin-left: 0.1rem;
  }
}
/* ===================================
****************[加入我们-加入凯莱谱]**************
====================================*/
.m_job_list .list .list_item {
  background-color: #f9f9f9;
}
.m_job_list .head ul,
.m_job_list .hd ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .m_job_list .head ul,
  .m_job_list .hd ul {
    min-height: 0.7rem;
  }
}
.m_job_list .head ul li,
.m_job_list .hd ul li {
  padding: 0 10px;
  width: calc(100% / 5);
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .m_job_list .head ul li.action,
  .m_job_list .hd ul li.action {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .head ul li.name,
  .m_job_list .hd ul li.name,
  .m_job_list .head ul li.date,
  .m_job_list .hd ul li.date {
    width: 30%;
  }
}
.m_job_list .head ul li.name,
.m_job_list .hd ul li.name {
  padding-left: 35px;
  text-align: left;
}
@media screen and (max-width: 1920px) {
  .m_job_list .head ul li.name,
  .m_job_list .hd ul li.name {
    padding-left: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .head ul li.name,
  .m_job_list .hd ul li.name {
    padding-left: 0.3rem;
  }
}
.m_job_list .head {
  color: #fff;
  font-weight: bold;
  background-color: #09524a;
}
.m_job_list .head ul {
  height: 55px;
}
@media screen and (max-width: 750px) {
  .m_job_list .head ul {
    height: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .head ul span {
    display: none;
  }
}
.m_job_list .hd {
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 1920px) {
  .m_job_list .hd {
    padding: calc(25 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .hd {
    padding: 0.2rem 0 0.3rem;
  }
}
.m_job_list .hd .name {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .m_job_list .hd .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_job_list .hd .name {
    font-size: 15px;
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .hd .name {
    font-size: 0.3rem;
  }
}
.m_job_list .hd .btn {
  color: #317b7e;
  font-size: 14px;
  width: 170px;
  height: 50px;
  border: 1px solid #317b7e;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
  cursor: pointer;
}
@media screen and (max-width: 1920px) {
  .m_job_list .hd .btn {
  }
}
@media screen and (max-width: 1280px) {
  .m_job_list .hd .btn {
    width: calc(170 / 1440 * 100vw);
    height: calc(50 / 1440 * 100vw);
    min-width: 90px;
    min-height: 35px;
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .hd .btn {
    width: 2.1rem;
    height: 0.7rem;
    display: none;
  }
}
.m_job_list .hd .btn:hover {
  color: #fff;
  background-color: #317b7e;
}
.m_job_list .hd .btn i {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  display: inline-block;
  margin-left: 0.5em;
}
.m_job_list .hd .mbtn {
  color: #09524a;
  font-size: 0.2rem;
  text-align: right;
  line-height: 2;
  padding: 0 0.2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
@media screen and (max-width: 750px) {
  .m_job_list .hd .mbtn {
    display: block;
  }
}
.m_job_list .bd {
  display: none;
  padding: 30px 45px 40px;
  background-color: #fff;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 1920px) {
  .m_job_list .bd {
    padding: 30px calc(45 / 1920 * 100vw) 40px;
  }
}
@media screen and (max-width: 990px) {
  .m_job_list .bd {
    padding: 20px 30px 30px;
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .bd {
    padding: 0.3rem 0.4rem 0.5rem;
  }
}
.m_job_list .bd .detail {
  line-height: 1.875;
  margin-bottom: 1.875em;
}
@media screen and (max-width: 750px) {
  .m_job_list .bd .detail {
    line-height: 1.75;
    margin-bottom: 1.75em;
  }
}
.m_job_list .bd .detail h4 {
  color: #09524a;
  font-size: 1em;
}
.m_job_list .bd .btn {
  color: #fff;
  padding: 15px 25px;
  background-color: #09524a;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .m_job_list .bd .btn {
    margin-right: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_job_list .bd .btn {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_job_list .bd .btn {
    padding: 0.1rem 0.25rem;
    margin-right: 0.1rem;
    margin-bottom: 0.1rem;
  }
}
.m_job_list .bd .btn:last-child {
  margin-right: 0;
}
/* ===================================
****************[加入我们-联系我们]**************
====================================*/
.m_contact_form .caption {
  font-size: 18px;
  line-height: 1.78;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1920px) {
  .m_contact_form .caption {
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_contact_form .caption {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_contact_form .caption {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_contact_form .caption {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_contact_form .caption {
    font-size: 0.28rem;
    line-height: 1.75;
    margin-bottom: 0.4rem;
  }
}
.m_contact_form .caption .slogan {
  font-size: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .m_contact_form .caption .slogan {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_contact_form .caption .slogan {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_contact_form .caption .slogan {
    font-size: 0.4rem;
  }
}
.m_contact_form .form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.m_contact_form .form .form_item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  align-items: center;
  width: calc((100% - 80px) / 3);
  border-bottom: 1px solid #dedede;
  margin-right: 40px;
  margin-bottom: 30px;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 1920px) {
  .m_contact_form .form .form_item {
    width: calc((100% - calc(80 / 1920 * 100vw)) / 3);
    margin-right: calc(40 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_contact_form .form .form_item {
    width: calc((100% - calc(40 / 1920 * 100vw)) / 2);
  }
}
@media screen and (max-width: 750px) {
  .m_contact_form .form .form_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
}
.m_contact_form .form .form_item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 990px) {
  .m_contact_form .form .form_item:nth-child(3n) {
    margin-right: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_contact_form .form .form_item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 990px) {
  .m_contact_form .form .form_item:nth-child(2n) {
    margin-right: 0;
  }
}
.m_contact_form .form .form_item:last-child {
  margin-bottom: 20px;
}
.m_contact_form .form .form_item.form_item_full {
  width: 100%;
  margin-right: 0;
  display: block;
}
.m_contact_form .form .form_item.form_item_flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 750px) {
  .m_contact_form .form .form_item.form_item_flex {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .m_contact_form .form .form_item.form_item_flex .inp {
    padding: 0;
  }
}
.m_contact_form .form .form_item:hover {
  border-color: #09524a;
}
.m_contact_form .form .form_item .inp {
  flex: 1;
  width: 100%;
  padding: 0 10px;
  display: block;
  height: 60px;
  background: none;
}
@media screen and (max-width: 990px) {
  .m_contact_form .form .form_item .inp {
    height: 50px;
  }
}
@media screen and (max-width: 750px) {
  .m_contact_form .form .form_item .inp {
    height: 1rem;
  }
}
.m_contact_form .form .form_item .inp_area {
  padding: 0;
  height: 80px;
  resize: none;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .m_contact_form .form .form_item .inp_area {
    height: 1.2rem;
  }
}
.m_contact_form .label {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  align-items: center;
}
.m_contact_form .label .checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #09524a;
  background-color: transparent;
  position: relative;
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  .m_contact_form .label .checkbox {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.1rem;
  }
}
.m_contact_form .label .checkbox::after {
  color: transparent;
  content: '\e82b';
  font-family: 'iconfont';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.m_contact_form .label .checkbox:checked::after {
  color: #fff;
  background-color: #09524a;
}
.m_contact_form .foot {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .m_contact_form .foot {
    margin-top: 0.4rem;
  }
}
.m_contact_form .foot .submit {
  color: #fff;
  width: 180px;
  height: 50px;
  background-color: #09524a;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
@media screen and (max-width: 750px) {
  .m_contact_form .foot .submit {
    width: 2.4rem;
    height: 0.8rem;
  }
}
.m_contact_info {
  padding: 150px 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  min-height: 860px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1920px) {
  .m_contact_info {
    padding: calc(150 / 1920 * 100vw) 0;
    min-height: calc(860 / 1920 * 100vw);
  }
}
@media screen and (max-width: 750px) {
  .m_contact_info {
    padding: 1rem 0;
  }
}
.m_contact_info .box {
  width: 400px;
}
@media screen and (max-width: 750px) {
  .m_contact_info .box {
    width: auto;
  }
}
.st3 {
  font-size: 40px;
}
@media screen and (max-width: 1920px) {
  .st3 {
    font-size: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .st3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .st3 {
    font-size: 0.4rem;
  }
}
.m_list14 .item {
  font-size: 18px;
  line-height: 2;
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 1440px) {
  .m_list14 .item {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_list14 .item {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_list14 .item {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_list14 .item {
    font-size: 0.28rem;
  }
}
.m_list14 .item:last-child {
  border: 0;
}
.m_list14 .item .title {
  color: #09524a;
}
/* ===================================
****************[新闻与媒体-详情]**************
====================================*/
.m_breadcrumb {
  font-size: 14px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1920px) {
  .m_breadcrumb {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1280px) {
  .m_breadcrumb {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  .m_breadcrumb {
    font-size: 0.24rem;
    margin-bottom: 0.5rem;
  }
}
.m_breadcrumb a {
  color: #333;
}
.m_breadcrumb_title {
  color: #09524a;
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1920px) {
  .m_breadcrumb_title {
    margin: calc(30 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 1440px) {
  .m_breadcrumb_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .m_breadcrumb_title {
    font-size: 18px;
  }
}
@media screen and (max-width: 990px) {
  .m_breadcrumb_title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_breadcrumb_title {
    font-size: 0.32rem;
    margin-bottom: 0.4rem;
  }
}
.m_article {max-width: 900px; margin:0 auto;}
.m_article .share {
  font-size: 36px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 750px) {
  .m_article .share {
    font-size: 0.5rem;
  }
}
.m_article .share a {
  color: #dedede;
  -webkit-transition: 0.35s;
  -ms-transition: 0.35s;
  transition: 0.35s;
}
.m_article .share a:hover {
  color: #09524a;
}
.m_article .hd {
  padding-bottom: 20px;
  padding-right: 80px;
  border-bottom: 1px solid #dedede;
  position: relative;
}
@media screen and (max-width: 750px) {
  .m_article .hd {
    padding-bottom: 0.4rem;
    padding-right: 1.6rem;
  }
}
.m_article .hd h1 {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 1920px) {
  .m_article .hd h1 {
    font-size: calc(36 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_article .hd h1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .m_article .hd h1 {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
}
.m_article .hd .date {
  color: #666;
  font-size: 18px;
}
@media screen and (max-width: 1440px) {
  .m_article .hd .date {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_article .hd .date {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_article .hd .date {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_article .hd .date {
    font-size: 0.28rem;
  }
}
.m_article .bd {
  font-size: 20px;
  line-height: 2;
  padding: 60px 0;
  border-bottom: 1px solid #dedede;
  margin-bottom: 20px;
}
@media screen and (max-width: 1920px) {
  .m_article .bd {
    padding: calc(60 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 1440px) {
  .m_article .bd {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_article .bd {
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  .m_article .bd {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_article .bd {
    font-size: 0.28rem;
    line-height: 1.75;
    padding: 0.4rem 0;
    margin-bottom: 0.3rem;
  }
}
.m_article .bd img {
  max-width: 100%;
}
.m_article .fd {
  padding-left: 20px;
  padding-right: 80px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .m_article .fd {
    padding-left: 0;
    padding-right: 1.6rem;
  }
}
.m_article .fd li {
  margin-bottom: 5px;
}
.m_article .fd li a {
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.m_article .fd li a:hover {
  color: #09524a;
}
.gt_bline {
  border-bottom: 1px solid #dedede;
}
.m_tech_textinfo {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 1440px) {
  .m_tech_textinfo {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .m_tech_textinfo {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .m_tech_textinfo {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .m_tech_textinfo {
    font-size: 0.28rem;
    line-height: 1.75;
  }
}
.m_tech_textinfo .caption {
  color: #09524a;
  font-size: 36px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1920px) {
  .m_tech_textinfo .caption {
    font-size: calc(36 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 990px) {
  .m_tech_textinfo .caption {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .m_tech_textinfo .caption {
    font-size: 0.4rem;
    margin-bottom: 0.4rem;
  }
}
.m_tech_textinfo .item {
  padding: 30px 0;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 1920px) {
  .m_tech_textinfo .item {
    padding: calc(30 / 1920 * 100vw) 0;
  }
}
@media screen and (max-width: 990px) {
  .m_tech_textinfo .item {
    padding: 15px 0;
  }
}
@media screen and (max-width: 750px) {
  .m_tech_textinfo .item {
    padding: 0.4rem 0;
  }
}
.m_tech_textinfo h4 {
  color: #09524a;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .m_tech_textinfo h4 {
    padding-bottom: calc(10 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .m_tech_textinfo h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .m_tech_textinfo h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .m_tech_textinfo h4 {
    font-size: 0.32rem;
    padding-bottom: 5px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 750px) {
  .m_tech_textinfo h4 {
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
.m_tech_textinfo h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2em;
  border-bottom: 1px solid #09524a;
}
.m_tech_textinfo img {
  max-width: 100%;
}
@-moz-keyframes colorSlide {
  0% {
    height: 0;
  }
  90% {
    height: 40px;
  }
}
@-webkit-keyframes colorSlide {
  0% {
    height: 0;
  }
  90% {
    height: 40px;
  }
}
@-o-keyframes colorSlide {
  0% {
    height: 0;
  }
  90% {
    height: 40px;
  }
}
@keyframes colorSlide {
  0% {
    height: 0;
  }
  90% {
    height: 40px;
  }
}
@-moz-keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-8px);
    -webkit-transform: scale(1) translateY(-8px);
    -ms-transform: scale(1) translateY(-8px);
    transform: scale(1) translateY(-8px);
  }
  34% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(4px);
    -webkit-transform: scale(0.9) translateY(4px);
    -ms-transform: scale(0.9) translateY(4px);
    transform: scale(0.9) translateY(4px);
  }
  68% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(16px);
    -webkit-transform: scale(0.4) translateY(16px);
    -ms-transform: scale(0.4) translateY(16px);
    transform: scale(0.4) translateY(16px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-8px);
    -webkit-transform: scale(0.4) translateY(-8px);
    -ms-transform: scale(0.4) translateY(-8px);
    transform: scale(0.4) translateY(-8px);
  }
}
@-webkit-keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-8px);
    -webkit-transform: scale(1) translateY(-8px);
    -ms-transform: scale(1) translateY(-8px);
    transform: scale(1) translateY(-8px);
  }
  34% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(4px);
    -webkit-transform: scale(0.9) translateY(4px);
    -ms-transform: scale(0.9) translateY(4px);
    transform: scale(0.9) translateY(4px);
  }
  68% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(16px);
    -webkit-transform: scale(0.4) translateY(16px);
    -ms-transform: scale(0.4) translateY(16px);
    transform: scale(0.4) translateY(16px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-8px);
    -webkit-transform: scale(0.4) translateY(-8px);
    -ms-transform: scale(0.4) translateY(-8px);
    transform: scale(0.4) translateY(-8px);
  }
}
@-o-keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-8px);
    -webkit-transform: scale(1) translateY(-8px);
    -ms-transform: scale(1) translateY(-8px);
    transform: scale(1) translateY(-8px);
  }
  34% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(4px);
    -webkit-transform: scale(0.9) translateY(4px);
    -ms-transform: scale(0.9) translateY(4px);
    transform: scale(0.9) translateY(4px);
  }
  68% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(16px);
    -webkit-transform: scale(0.4) translateY(16px);
    -ms-transform: scale(0.4) translateY(16px);
    transform: scale(0.4) translateY(16px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-8px);
    -webkit-transform: scale(0.4) translateY(-8px);
    -ms-transform: scale(0.4) translateY(-8px);
    transform: scale(0.4) translateY(-8px);
  }
}
@keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-8px);
    -webkit-transform: scale(1) translateY(-8px);
    -ms-transform: scale(1) translateY(-8px);
    transform: scale(1) translateY(-8px);
  }
  34% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(4px);
    -webkit-transform: scale(0.9) translateY(4px);
    -ms-transform: scale(0.9) translateY(4px);
    transform: scale(0.9) translateY(4px);
  }
  68% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(16px);
    -webkit-transform: scale(0.4) translateY(16px);
    -ms-transform: scale(0.4) translateY(16px);
    transform: scale(0.4) translateY(16px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-8px);
    -webkit-transform: scale(0.4) translateY(-8px);
    -ms-transform: scale(0.4) translateY(-8px);
    transform: scale(0.4) translateY(-8px);
  }
}
@-moz-keyframes nudgeMouse {
  0% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes nudgeMouse {
  0% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes nudgeMouse {
  0% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes nudgeMouse {
  0% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes rotateIng {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateIng {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotateIng {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateIng {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes zoomIng {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoomIng {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes zoomIng {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomIng {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}





.g_page .fy span {color: #fff !important;
    background-color: #09524a;
    width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.1);
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  margin: 0 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}
.g_page .fy a { width: 40px;
  height: 40px;
  color:#404040;
  border: 0px solid rgba(0,0,0,0.1);

  cursor: pointer;
  margin: 0 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  background-color: #f1f1f1;
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
  }
.g_page .fy a:hover { color: #fff;
    background-color: #09524a;}



.g_page2 .fy span {color: #fff !important;
    background-color: #09524a;
    width: calc(58 / 1920 * 100vw);
    height: calc(58 / 1920 * 100vw);
    min-width: 40px;
    min-height: 40px;
    margin: 0 calc(10 / 1920 * 100vw);
  border: 1px solid rgba(0,0,0,0.1);
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
  cursor: pointer;
  margin: 0 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}
.g_page2 .fy a { 
    
    width: calc(58 / 1920 * 100vw);
    height: calc(58 / 1920 * 100vw);
    min-width: 40px;
    min-height: 40px;
    margin: 0 calc(10 / 1920 * 100vw);
    
    

  color:#404040;
  border: 0px solid rgba(0,0,0,0.1);

  cursor: pointer;
  margin: 0 10px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  background-color: #f1f1f1;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
  }
.g_page2 .fy a:hover { color: #fff;
    background-color: #09524a;}