@charset "UTF-8";
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
  --fontSize-72: calc(72 / 1920 * 100vw);
  --fontSize-48: calc(48 / 1920 * 100vw);
  --fontSize-42: calc(42 / 1920 * 100vw);
  --fontSize-30: calc(30 / 1920 * 100vw);
  --fontSize-24: calc(24 / 1920 * 100vw);
}
@media screen and (max-width: 750px) {
  :root {
    --fontSize-72: 26px;
    --fontSize-48: 22px;
    --fontSize-42: 20px;
    --fontSize-30: 18px;
    --fontSize-24: 16px;
  }
}

/* swiper prev next 全局样式 */
.global-swiper-buttons {
  margin-top: 30px;
}

.global-swiper-button-next,
.global-swiper-button-prev {
  margin: 0 8px;
  position: static;
  width: 60px;
  height: 60px;
  background-color: #fff;
  background-image: none;
  border-radius: 50%;
  line-height: 60px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
}
.global-swiper-button-next:hover,
.global-swiper-button-prev:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #09847e;
  color: #fff;
}
.global-swiper-button-next.swiper-button-disabled,
.global-swiper-button-prev.swiper-button-disabled {
  background-color: #09847e;
  -webkit-filter: grayscale(100%) opacity(0.5);
  filter: grayscale(100%) opacity(0.5);
}

@media screen and (max-width: 750px) {
  .global-swiper-button-next,
  .global-swiper-button-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
/* global  Pagination */
.pagination .prve, .pagination .next {
  background: #f7f7f7;
  color: #333333;
  padding: 0px 40px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 36px;
  overflow: hidden;
  cursor: pointer;
}
.pagination .prve:hover, .pagination .next:hover {
  background-color: #09847e;
  color: #fff;
}
.pagination .prve.active, .pagination .active.next {
  background-color: #09847e;
  color: #fff;
}
.pagination ul {
  margin: 0 20px;
}
.pagination ul li {
  cursor: pointer;
  margin: 0 10px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: #f7f7f7;
  color: #333333;
  border-radius: 50%;
  overflow: hidden;
}
.pagination ul li:hover {
  background-color: #09847e;
  color: #fff;
}
.pagination ul li.active {
  background-color: #09847e;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .pagination .prve, .pagination .next {
    padding: 0px 20px;
    height: 30px;
    text-align: center;
    line-height: 30px;
  }
  .pagination ul li {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
  }
}

[data-ani] {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ani[data-ani=fade-up] {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.ani[data-ani=fade-left] {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.ani[data-ani=fade-right] {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.ani[data-ani=fade-up-big] {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

.header {
  height: 89px;
  z-index: 12;
  position: fixed;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
}
.header .wrapper .logo {
  padding-top: 30px;
  height: 100%;
}
.header .wrapper .logo img {
  width: 100%;
  display: block;
}
.header .marks {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}
.header.over {
  background-color: rgba(76, 76, 76, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.news-header:not(.over) {
  border-color: #f4f4f4;
}
.header.news-header:not(.over) .menu {
  color: #333333;
}
.header.news-header:not(.over) .header-options {
  color: #333333;
}
.header.news-header:not(.over) .header-options .lang .global {
  background-image: url("../images/global-back.png");
}
.header.news-header:not(.over) .nav-btn-icon span {
  background-color: #333;
}

/* menu */
.menu {
  margin-left: 216px;
  color: #fff;
}
.menu ul {
  height: 100%;
}
.menu ul li {
  height: 100%;
  padding: 0 28px;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  overflow: visible;
}
:lang(en) .menu ul li {
  padding: 0 20px;
}
.menu ul li span i {
  display: none;
}
.menu ul li::after {
  content: "";
  width: 0px;
  height: 4px;
  position: absolute;
  bottom: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  background-color: #09847e;
}
.menu ul li:hover::after {
  width: 100%;
}
.menu ul li.active::after {
  width: 100%;
  background-color: #09847e;
}
.menu ul li .sub-menu {
  padding: 10px 0;
  z-index: 10;
  border-radius: 4px;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #fff;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.16);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translate(-50%, 20px);
  -ms-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu ul li .sub-menu--item {
  padding: 0px 10px;
  color: #333;
  font-size: 14px;
  border-top: 1px solid #ddd;
  height: 40px;
  line-height: 40px;
}
.menu ul li .sub-menu--item:first-child {
  border: none;
}
@media screen and (min-width: 1200px) {
  .menu ul li .sub-menu--item:hover {
    background-color: #09847e;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .menu ul li .sub-menu {
    position: static;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 100%;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    background-color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .menu ul li:hover .sub-menu {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1200px) {
  .menu ul li span {
    font-size: 16px;
  }
  .menu ul li span a {
    display: block;
  }
  .menu ul li span i {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 24px;
    text-align: center;
  }
  .menu ul li .sub-menu {
    display: none;
  }
  .menu ul li .sub-menu--item {
    font-size: 14px;
    font-weight: normal;
    padding: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  }
  .menu ul li .sub-menu--item:last-child {
    border: none;
  }
  .menu ul li .sub-menu.show {
    display: block;
  }
  .menu ul li.open-sub-menu {
    color: #0a837d;
  }
  .menu ul li.open-sub-menu span i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 750px) {
  .menu ul li .sub-menu {
    display: none;
  }
  .menu ul li .sub-menu--item {
    line-height: normal;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-top: none;
  }
  .menu ul li .sub-menu--item:last-child {
    border-bottom: none;
  }
  .menu ul li .sub-menu--item:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .menu ul li .sub-menu.show {
    display: block;
  }
}

/* header-options */
.header-options {
  color: #fff;
}
.header-options .phone {
  margin-right: 20px;
}
.header-options .phone span {
  margin-left: 10px;
}
.header-options .search {
  cursor: pointer;
}
.header-options .lang {
  cursor: pointer;
  margin-left: 30px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  position: relative;
}
.header-options .lang .global {
  background-image: url("../images/global.png");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 29px;
  width: 18px;
  height: 18px;
}
.header-options .lang .h-lang__bd {
  position: absolute;
  top: 100%;
  display: none;
  left: 0;
  width: 100%;
  border-radius: 4px;
}
.header-options .lang .h-lang__bd .h-lang__opt {
  position: relative;
  padding-top: 5px;
}
.header-options .lang .h-lang__bd .h-lang__opt ul {
  background: #ffffff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.header-options .lang .h-lang__bd .h-lang__opt ul li {
  font-size: 14px;
  color: #333;
  text-align: center;
  white-space: nowrap;
  list-style: none;
  padding: 8px 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .header-options .lang .h-lang__bd .h-lang__opt ul li:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: rgba(76, 76, 76, 0.8);
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .header-options .lang .h-lang__bd .h-lang__opt ul li {
    padding: 5px;
  }
}
.header-options .lang .h-lang__bd .h-lang__opt .arrow {
  width: 10px;
  height: 10px;
  z-index: -1;
  top: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
}
.header-options .lang .h-lang__bd .h-lang__opt .arrow::before {
  border-bottom-color: transparent !important;
  border-right-color: transparent !important;
  border: 1px solid var(--el-border-color-light);
  background: var(--el-bg-color-overlay);
  right: 0;
  width: 10px;
  height: 10px;
  z-index: -1;
  content: " ";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  box-sizing: border-box;
  background: #fff;
}

/* 内页banner */
.content-banner {
  width: 100%;
  height: 700px;
  position: relative;
}
.content-banner .desc {
  position: absolute;
  top: 50%;
  width: 96%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .content-banner .desc {
    -webkit-transform: translate(-50%, -20%);
    -ms-transform: translate(-50%, -20%);
    transform: translate(-50%, -20%);
  }
}
.content-banner .desc .sub-title {
  line-height: 40px;
}
@media screen and (max-width: 1200px) {
  .content-banner .desc .sub-title {
    line-height: 25px;
  }
}

/* 搜索 */
.md-search .main {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  width: 100%;
  background: #fff;
  padding: 40px 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.md-search .form {
  width: 600px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
}

.md-search .form .ipt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  border: none;
  font-size: inherit;
}

.md-search .form .btn {
  border: none;
  background: #00aace;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
}

.md-search .form .btn img {
  width: 23px;
  min-width: 20px;
  margin: auto;
}

.md-search.show .main {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 750px) {
  .md-search .form {
    width: 90%;
  }
  .md-search .form .btn {
    width: 35px;
    height: 35px;
  }
}
.global-mask {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: none;
}
.global-mask.active {
  display: block;
}

.nav-btn {
  cursor: pointer;
  margin-left: 10px;
  margin-top: 10px;
}
.nav-btn-icon span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  margin-bottom: 6px;
}
.nav-btn.open .nav-btn-icon span {
  background-color: #000;
}
.nav-btn.open .nav-btn-icon span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-btn.open .nav-btn-icon span:nth-of-type(2) {
  width: 0;
}
.nav-btn.open .nav-btn-icon span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1618px) {
  .menu {
    margin-left: 35px;
  }
  .menu ul li {
    padding: 0 23px;
  }
}
@media screen and (max-width: 1440px) {
  .header {
    height: 70px;
  }
  .header .wrapper .logo {
    padding-top: 23px;
  }
  .header .wrapper .logo img {
    width: 85%;
  }
  .menu {
    margin-left: 0px;
  }
  .menu ul li {
    padding: 0 18px;
    font-size: 14px;
  }
  :lang(en) .menu ul li {
    padding: 0 10px;
  }
  .header-options .lang span {
    font-size: 14px;
  }
  .header-options .phone {
    font-size: 14px;
  }
  .header-options .search {
    font-size: 14px;
  }
  .content-banner {
    height: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .menu {
    position: fixed;
    right: 0px;
    margin-left: 0px;
    width: 300px;
    top: 0;
    height: 100vh;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu ul {
    background-color: #fff;
    padding-top: 55px;
  }
  .menu ul li {
    padding: 0 25px;
    font-weight: bold;
    display: block;
    color: #333;
    height: auto;
    padding: 10px 20px 10px 20px;
    text-align: left;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  }
  .menu ul li::after {
    display: none;
  }
  .menu ul li:first-child {
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
  }
  .content-banner {
    height: 380px;
  }
}
@media screen and (max-width: 750px) {
  .header {
    height: 60px;
  }
  .header .wrapper .logo {
    padding-top: 20px;
    width: 135px;
  }
  .header .wrapper .logo img {
    width: 100%;
  }
  .header-options .phone {
    font-size: 14px;
  }
  .header-options .phone span {
    display: none;
  }
  .header-options .lang {
    margin-left: 10px;
    padding: 5px 5px;
  }
  .content-banner {
    height: 320px;
  }
}
.w1600 {
  width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 1618px) {
  .w1600 {
    width: 1440px;
  }
}
@media screen and (max-width: 1460px) {
  .w1600 {
    width: 1200px;
  }
}
@media screen and (max-width: 1220px) {
  .w1600 {
    width: 100%;
    padding: 0 2%;
  }
}
.page-back {
  height: 35px;
  line-height: 35px;
  background: #09847e;
  color: #fff;
  border-radius: 36px;
  padding: 0 20px;
  cursor: pointer;
}
.page-back span {
  margin-right: 22px;
}
@media screen and (max-width: 1220px) {
  .page-back {
    font-size: 14px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .page-back span {
    margin-right: 10px;
  }
}

.bread-crumb {
  border-bottom: 1px solid #f3f3f3;
  min-height: 60px;
  line-height: 60px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .bread-crumb {
    margin-top: 10px;
  }
}
.bread-crumb--item {
  background-image: url("../images/home_icon.png");
  background-repeat: no-repeat;
  font-size: 16px;
  color: #666666;
  padding-left: 32px;
  background-position: left center;
}
@media screen and (max-width: 1220px) {
  .bread-crumb--item {
    line-height: 30px;
    margin-top: 5px;
  }
}
.bread-crumb .bread-nav {
  overflow: hidden;
  margin-right: 35px;
}
.bread-crumb .bread-nav .no-swiper-wrapper .swiper-slide {
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .bread-crumb .bread-nav .no-swiper-wrapper .swiper-slide {
    padding: 0 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 750px) {
  .bread-crumb .bread-nav .no-swiper-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .bread-crumb .bread-nav .no-swiper-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.bread-crumb .bread-nav .swiper-slide {
  width: auto;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.bread-crumb .bread-nav .swiper-slide::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 3px;
  background-color: transparent;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bread-crumb .bread-nav .swiper-slide.active {
  color: #09847e;
}
.bread-crumb .bread-nav .swiper-slide.active::after {
  background-color: #09847e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  .bread-crumb .bread-nav .swiper-slide {
    background-color: #369a95;
    color: #fff;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
  .bread-crumb .bread-nav .swiper-slide::after {
    display: none;
  }
  .bread-crumb .bread-nav .swiper-slide.active {
    color: #369a95;
    background-color: #fff;
    border: 1px solid #369a95;
  }
  .bread-crumb .bread-nav {
    margin-right: 0;
    border: 1px solid #f3f3f3;
  }
}
@media screen and (max-width: 750px) {
  .bread-crumb .bread-nav {
    display: none;
  }
  .bread-crumb .bread-nav.product-bread-nav {
    display: block;
  }
}
.bread-crumb--line {
  position: absolute;
  height: 3px;
  background-color: #09847e;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* 我们的服务 */
.service {
  width: 100%;
  position: relative;
}
.service--list {
  width: 440px;
  background-color: #09847e;
  padding: 205px 58px;
}
.service--list .title {
  color: #fff;
}
.service--list ul {
  margin-top: 52px;
}
.service--list ul li {
  cursor: pointer;
  margin-top: 20px;
  background-color: #369a95;
  color: #fff;
  text-align: center;
  padding: 22px;
  border: 1px solid #53a9a5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
}
.service--list ul li.on {
  background-color: #fff;
  color: #333333;
}
.service--list ul li:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
  color: #333333;
}
.service--info {
  padding-top: 95px;
  width: 68.75vw;
  margin-left: 23px;
  margin-bottom: 90px;
  overflow: hidden;
}
.service--info .title {
  color: #222222;
  text-align: center;
}
.service--info .service-type {
  margin-top: 53px;
  position: relative;
}
.service--info .swiper-options {
  overflow: hidden;
  padding: 20px 0;
  margin-top: 2px;
}
.service--info .swiper-options .progress {
  margin-right: 50px;
}
.service--info .swiper-options .swiper-btn .service-button {
  margin: 0 10px;
}
@media screen and (max-width: 1618px) {
  .service--list {
    width: 350px;
    padding: 135px 38px;
  }
}
@media screen and (max-width: 1440px) {
  .service--list {
    width: 300px;
    padding: 95px 38px;
  }
  .service--list ul li {
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .service--list {
    background-color: transparent;
    width: 100%;
    padding: 0px;
    padding-top: 20px;
  }
  .service--list .title {
    text-align: center;
    color: #333;
  }
  .service--list ul {
    margin-top: 20px;
  }
  .service--list ul li {
    margin: 0;
    font-size: 14px;
  }
  .service--info {
    padding-top: 25px;
    width: 96%;
    margin: 0 2%;
  }
  .service--info .service-type {
    margin-top: 20px;
  }
  .service--info .swiper-options {
    width: 100%;
    overflow: hidden;
    margin-top: 0px;
  }
  .service--info .swiper-options .progress {
    margin-right: 30px;
  }
}
@media screen and (max-width: 750px) {
  .service--list {
    display: none;
  }
  .service--info {
    padding-top: 0;
  }
  .service--info .swiper-options .progress {
    margin-right: 0;
  }
}

.service-pic-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.service-pic-item img {
  display: block;
  width: 100%;
}
.service-pic-item .item-info {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  bottom: -100%;
  left: 0;
  bottom: -90px;
}
@media screen and (max-width: 1460px) {
  .service-pic-item .item-info {
    bottom: -50px;
  }
}
.service-pic-item .item-info .sub-title {
  color: #fff;
}
.service-pic-item .item-info .sub-desc {
  color: #fff;
  margin-top: 15px;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.service-pic-item .item-info .view {
  background: #fff;
  padding: 13px 34px;
  color: #333333;
  border-radius: 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 25px;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .service-pic-item .item-info .view:hover {
    background-color: #09847e;
    color: #fff;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1460px) {
  .service-pic-item .item-info .view {
    padding: 5px 10px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .service-pic-item .item-info {
    position: relative;
    bottom: 0px;
  }
  .service-pic-item .item-info .sub-title {
    color: #333;
    text-align: center;
    margin: 10px auto;
  }
  .service-pic-item .item-info .sub-desc {
    margin-top: 5px;
    color: #333;
    overflow: hidden;
    display: none;
    line-height: 25px;
  }
  .service-pic-item .item-info .view {
    background-color: #09847e;
    color: #fff;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .service-pic-item:hover .item-info {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    bottom: 0px;
    background-image: -webkit-linear-gradient(top, transparent, rgba(9, 132, 126, 0.6), #09847e);
    background-image: linear-gradient(to bottom, transparent, rgba(9, 132, 126, 0.6), #09847e);
  }
  .service-pic-item:hover .item-info .sub-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

#service-pagination {
  height: 3px;
  width: 100%;
  position: relative;
  background-color: #cccccc;
}
#service-pagination .swiper-pagination-progressbar-fill {
  background-color: #09847e !important;
}

#service-button-prev, #service-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f7f7f7;
  color: #09847e;
  cursor: pointer;
  background-image: url("../images/home-row-left.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #09847e;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#service-button-prev.swiper-button-disabled, .swiper-button-disabled#service-button-next {
  background-color: #0eb8ca;
  -webkit-filter: grayscale(100%) opacity(0.5);
  filter: grayscale(100%) opacity(0.5);
}
#service-button-prev:hover, #service-button-next:hover {
  background-color: #0eb8ca;
  color: #fff;
}
@media screen and (max-width: 750px) {
  #service-button-prev, #service-button-next {
    width: 35px;
    height: 35px;
    background-color: #09847e;
    color: #f7f7f7;
    margin: 10px;
    background-size: 20px;
  }
}

#service-button-next {
  background-image: url("../images/home-row-right.png");
}

/* page-footer */
.page-footer {
  padding-top: 90px;
  background-color: #222222;
}
.page-footer .ft-wrapper {
  color: #bcbcbc;
}
.page-footer .ft-wrapper .ft-nav {
  color: #fff;
  font-size: 14px;
}
.page-footer .ft-wrapper .ft-nav .nav-item--title {
  font-size: 16px;
  margin-bottom: 20px;
}
.page-footer .ft-wrapper .ft-nav .nav-item ul li {
  margin-bottom: 18px;
  color: #bcbcbc;
}
@media (min-width: 1000px) {
  .page-footer .ft-wrapper .ft-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 40px;
  }
}
@media (max-width: 750px) {
  .page-footer .ft-wrapper .ft-nav {
    display: none;
  }
}
.page-footer .ft-wrapper .ft-info .company-info {
  margin-top: 45px;
}
.page-footer .ft-wrapper .ft-info .company-info .tel {
  font-size: 24px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
}
.page-footer .ft-wrapper .ft-info .company-info p {
  margin-bottom: 10px;
  font-size: 14px;
}
.page-footer .ft-wrapper .ft-info .share {
  margin-top: 25px;
}
.page-footer .ft-wrapper .ft-info .share a {
  font-size: 24px;
  margin-right: 20px;
}
.page-footer .ft-wrapper .ft-info .share i {
  font-size: 24px;
  margin-right: 20px;
}
.page-footer .ft-wrapper .ft-info .share i:hover {
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .page-footer .ft-wrapper .ft-info .share {
    margin-top: 15px;
  }
}
.page-footer .copy-right {
  margin-top: 60px;
  color: #bcbcbc;
  padding: 32px 0;
  border-top: 1px solid #393939;
}
@media screen and (max-width: 750px) {
  .page-footer .copy-right {
    margin-top: 10px;
    padding: 10px 10px 60px 10px;
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 1220px) {
  .page-footer {
    padding-top: 60px;
  }
}
@media screen and (max-width: 750px) {
  .page-footer {
    padding-top: 30px;
  }
  .page-footer .ft-info .ft-logo {
    width: 75%;
  }
  .page-footer .ft-info .ft-logo img {
    width: 100%;
  }
}

/* service-detail */
.service-detail-item {
  padding: 30px 0;
  border-bottom: 1px solid #f3f3f3;
}
.service-detail-item .title {
  font-size: var(--fontSize-30);
  color: #333333;
}
.service-detail-item .desc {
  margin-top: 20px;
  font-size: var(--fontSize-20);
  color: #666666;
}
.service-detail-item .deal-item {
  font-size: var(--fontSize-20);
  color: #666;
}
.service-detail-item .deal-item ul {
  margin-top: 20px;
}
.service-detail-item .deal-item ul li {
  font-size: 24px;
  background-image: url("../images/ser-detail-li.png");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 28px;
  margin-bottom: 28px;
}
.service-detail-item .deal-item ul li span {
  color: #333333;
}
.service-detail-item .deal-item ul li span p {
  color: #666666;
}
.service-detail-item .deal-item ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1460px) {
  .service-detail-item .desc {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .service-detail-item {
    padding: 20px 0;
  }
  .service-detail-item .desc {
    margin-top: 20px;
  }
  .service-detail-item .deal-item ul {
    margin-top: 20px;
  }
  .service-detail-item .deal-item ul li {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.core {
  margin-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #f3f3f3;
}
.core .text {
  padding-top: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.core .text .title {
  font-size: var(--fontSize-30);
  color: #333333;
  padding-bottom: 35px;
}
.core .text .desc {
  font-size: 18px;
  color: #09847e;
}
.core .text .desc p {
  margin-bottom: 20px;
}
.core .text .desc ul li {
  background-image: url(../images/ser-detail-li.png);
  background-position: left 10px;
  background-repeat: no-repeat;
  margin: 20px 0;
  padding-left: 28px;
  line-height: 30px;
}
.core .pic {
  width: 40%;
  margin-left: 20px;
}
.core .s-table {
  border: 1px solid #f3f3f3;
}
.core .s-table ul li {
  color: #666666;
  position: relative;
  font-size: 18px;
  padding: 38px 70px;
}
.core .s-table ul li span {
  color: #333333;
  font-weight: 600;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 1200px) {
  .core .s-table ul li:nth-child(4n+3) {
    background-color: #f7f7f7;
    border-top: 1px solid #f3f3f3;
  }
  .core .s-table ul li:nth-child(4n+4) {
    background-color: #f7f7f7;
    border-top: 1px solid #f3f3f3;
  }
}
@media screen and (max-width: 1200px) {
  .core .s-table ul li:nth-child(2n) {
    background-color: #f7f7f7;
    border-top: 1px solid #f3f3f3;
  }
}
@media screen and (max-width: 1620px) {
  .core .s-table ul li {
    padding: 38px 15px;
  }
}
.core .s-table ul li .sub-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.core .s-table ul li .sub-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #09847e;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
@media screen and (max-width: 1460px) {
  .core {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .core .text .title {
    padding-bottom: 20px;
  }
  .core .text .desc {
    font-size: 16px;
  }
  .core .text .desc p {
    margin-bottom: 15px;
  }
  .core .s-table ul li {
    padding: 20px 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .core {
    margin-top: 30px;
    padding-bottom: 20px;
  }
  .core .text .title {
    padding-bottom: 20px;
  }
  .core .text .desc {
    font-size: 16px;
  }
  .core .text .desc p {
    margin-bottom: 15px;
  }
  .core .pic {
    margin-left: 0;
    width: 100%;
    max-width: 600px;
  }
  .core .pic img {
    width: 100%;
  }
  .core .s-table ul li {
    padding: 10px 10px;
  }
  .core .s-table ul li .sub-title {
    margin-bottom: 10px;
  }
}

.service-swiper-module {
  background: #f7f7f7;
}
.service-swiper-module .title {
  font-size: var(--fontSize-42);
  color: #333333;
  text-align: center;
}
.service-swiper-module .prod-list {
  padding: 50px 0;
}
@media screen and (max-width: 1460px) {
  .service-swiper-module .prod-list {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1200px) {
  .service-swiper-module .prod-list {
    padding: 20px 0;
  }
}

.un-prod {
  padding: 30px 10px !important;
  position: relative;
}
.un-prod .swiper-wrapper {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.un-prod .swiper-slide {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background-image: url(../images/home-pd-bg2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}
.un-prod .swiper-slide .pic img {
  aspect-ratio: 1;
  object-fit: contain;
}
.un-prod .swiper-slide .name {
  margin: 50px 0;
  padding: 0 10px;
  font-size: 18px;
  color: #333333;
  text-align: center;
}
.un-prod .swiper-slide .view {
  display: none;
  position: absolute;
  width: 140px;
  padding: 17px 0;
  background-color: #09847e;
  color: #fff;
  border-radius: 36px;
  text-align: center;
  cursor: pointer;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .un-prod .swiper-slide:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
  }
  .un-prod .swiper-slide:hover .view {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .un-prod .swiper-slide .name {
    font-size: 16px;
  }
  .un-prod .swiper-slide .view {
    display: block;
    width: 100px;
    padding: 10px 0;
    font-size: 14px;
  }
}

.other {
  padding-bottom: 100px;
}
@media screen and (max-width: 1460px) {
  .other {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .other {
    padding-bottom: 20px;
  }
}

.other-list {
  overflow: hidden;
  margin-top: 58px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .other-list {
    margin-top: 20px;
  }
}

/* 案例list */
.case-list {
  padding: 100px 0;
}
.case-list .title {
  font-size: var(--fontSize-48);
  color: #222222;
  margin-bottom: 55px;
  text-align: center;
}
@media screen and (max-width: 1460px) {
  .case-list {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1200px) {
  .case-list {
    padding: 30px 0;
  }
  .case-list .title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
  .case-list {
    padding: 20px 0;
  }
}

.list-wrapper {
  margin-bottom: 2.5vw;
}
.list-wrapper--item .info {
  padding: 26px 12px;
}
.list-wrapper--item .info .sub-title {
  color: #333333;
  font-size: 20px;
}
.list-wrapper--item .info .sub-title .text {
  font-weight: bold;
}
.list-wrapper--item .info .sub-desc {
  font-size: 14px;
  color: #666666;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  .list-wrapper--item .info {
    padding: 10px;
  }
  .list-wrapper--item .info .sub-title .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .list-wrapper--item .info .sub-title .text {
    font-size: 16px;
    margin-right: 5px;
  }
}
.list-wrapper--item .pic {
  overflow: hidden;
}
.list-wrapper--item .pic img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
.list-wrapper--item .to-view {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  background-color: #09847e;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .list-wrapper--item .to-view {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    visibility: visible;
  }
}
.list-wrapper--item:hover .pic img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.list-wrapper--item:hover .to-view {
  visibility: visible;
}

/* 案例detail */
.customer-back {
  background: -webkit-linear-gradient(#e7f3f2, #f1f8f7, #ffffff);
  background: linear-gradient(#e7f3f2, #f1f8f7, #ffffff);
  padding: 2.6041666667vw 0;
}
.customer-back .cb-wrapper {
  height: 100%;
}
.customer-back .title {
  font-size: var(--fontSize-42);
}
.customer-back .desc {
  margin-top: 30px;
  font-size: var(--fontSize-24);
  color: #333333;
}
.customer-back .desc em {
  color: #999999;
}
@media screen and (max-width: 1200px) {
  .customer-back {
    min-height: auto;
    padding: 30px 0;
  }
}
@media screen and (max-width: 750px) {
  .customer-back {
    min-height: auto;
    padding: 20px 0;
  }
  .customer-back .desc {
    margin-top: 20px;
  }
}

.customer-need {
  background: #f7f7f7;
  padding: 2.6041666667vw 0;
}
.customer-need .need-title {
  font-size: var(--fontSize-42);
}
@media screen and (max-width: 1200px) {
  .customer-need {
    padding: 30px 0;
  }
}

.need-list {
  margin-top: 30px;
}
.need-list .swiper-slide {
  background-color: #ffffff;
}
.need-list .swiper-slide .slide-box {
  padding: 30px;
}
.need-list .swiper-slide .slide-box .number-bg {
  color: #09847e;
  font-size: 30px;
  font-weight: bolder;
  width: 88px;
  height: 86px;
  line-height: 86px;
  text-align: center;
  margin: 0 auto;
  background-image: url("../images/case-detail-icon_bg.png");
}
.need-list .swiper-slide .slide-box .desc {
  margin-top: 34px;
  font-size: 1.25vw;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .need-list .swiper-slide .slide-box {
    min-height: auto;
  }
  .need-list .swiper-slide .slide-box .number-bg {
    width: 68px;
    height: 66px;
    line-height: 66px;
  }
  .need-list .swiper-slide .slide-box .desc {
    font-size: 16px;
    margin-top: 20px;
  }
  .need-list {
    margin-top: 20px;
  }
}

.case-photo {
  margin-top: 50px;
}
.case-photo .swiper-slide img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .case-photo {
    margin: 30px 0;
  }
}

.ab-case-list {
  padding: 2.6041666667vw 0;
}
.ab-case-list .need-title {
  font-size: var(--fontSize-42);
}
@media screen and (max-width: 1200px) {
  .ab-case-list {
    padding: 20px 0;
  }
}

.case-swiper {
  margin-top: 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .case-swiper {
    margin-top: 32px;
  }
}

/* 产品 */
.prod-list {
  background: #f7f7f7;
  padding: 95px 0;
}
.prod-list .prod-title {
  font-size: var(--fontSize-42);
  color: #333333;
}
.prod-list .prod-box {
  margin-top: 53px;
  margin-bottom: 70px;
}
.prod-list .prod-box li {
  background-color: #fff;
}
.prod-list .prod-box li .info {
  padding: 65px 0 65px 50px;
}
.prod-list .prod-box li .info .name {
  color: #333333;
  font-size: 24px;
}
.prod-list .prod-box li .info .line {
  margin-top: 17px;
  background-color: #f3f3f3;
  height: 2px;
  position: relative;
  width: 100%;
}
.prod-list .prod-box li .info .line::before {
  content: "";
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #0eb8ca;
}
.prod-list .prod-box li .info .desc {
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  margin-top: 26px;
  margin-bottom: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.prod-list .prod-box li .info .view {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  border-radius: 36px;
  color: #333333;
  font-size: 16px;
  background-color: #f3f3f3;
}
.prod-list .prod-box li .info .view i {
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
  color: #09847e;
  margin-left: 15px;
}
.prod-list .prod-box li .pic {
  display: block;
  width: 340px;
}
.prod-list .prod-box li .pic img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .prod-list .prod-box li:hover .info .line::before {
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
    width: 100%;
  }
  .prod-list .prod-box li:hover .info .view {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #09847e;
    color: #fff;
  }
  .prod-list .prod-box li:hover .info .view i {
    color: #fff;
  }
}
@media screen and (max-width: 1440px) {
  .prod-list .prod-box li .pic {
    width: 280px;
  }
  .prod-list .prod-box li .info {
    padding: 35px 0 35px 20px;
  }
  .prod-list .prod-box li .info .name {
    font-size: 22px;
  }
  .prod-list .prod-box li .info .view {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 1200px) {
  .prod-list .prod-box li .pic {
    width: 100%;
  }
  .prod-list .prod-box li .info {
    padding: 10px;
  }
  .prod-list .prod-box li .info .name {
    font-size: 15px;
  }
  .prod-list .prod-box li .info .desc {
    margin: 10px 0;
    line-height: 1.2;
  }
  .prod-list .prod-box li .info .view {
    padding: 6px 10px;
    font-size: 14px;
  }
  .prod-list .prod-box {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .prod-list {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1200px) {
  .prod-list {
    padding: 30px 0;
  }
}

.sub-search {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 36px;
  overflow: hidden;
}
.sub-search form {
  display: block;
  font-size: 16px;
}
.sub-search input::-webkit-input-placeholder {
  font-size: 16px;
}
.sub-search input::-moz-placeholder {
  font-size: 16px;
}
.sub-search input:-ms-input-placeholder {
  font-size: 16px;
}
.sub-search input::placeholder {
  font-size: 16px;
}
.sub-search button {
  font-size: 20px;
  color: #09847e;
}
@media screen and (max-width: 1200px) {
  .sub-search {
    margin-top: 10px;
    padding: 10px;
  }
  .sub-search form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-search input {
    display: block;
    margin-right: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

/* 产品详情 */
.prod-detail-px {
  padding: 30px 0;
}
@media screen and (max-width: 1440px) {
  .prod-detail-px {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .prod-detail-px {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .prod-detail-px {
    padding-top: 30px;
  }
}

.prod-template--two .title {
  color: #333;
  font-size: var(--fontSize-42);
}
.prod-template--two .desc {
  margin-top: 45px;
}
.prod-template--two .desc li {
  margin-bottom: 27px;
  font-size: 20px;
  color: #666666;
}
.prod-template--two .desc li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #09847e;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  .prod-template--two .desc {
    margin-top: 30px;
  }
  .prod-template--two .desc li {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.prod-template--three .title {
  color: #333;
  font-size: var(--fontSize-42);
}
.prod-template--three .deal-item {
  margin-top: 20px;
  color: #333333;
  font-size: 20px;
}
.prod-template--three .deal-item li {
  margin-bottom: 25px;
}
.prod-template--three .deal-item li em {
  color: #666666;
}
@media screen and (max-width: 1200px) {
  .prod-template--three .deal-item {
    margin-top: 30px;
  }
  .prod-template--three .deal-item li {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.prod-template--four .title {
  font-size: var(--fontSize-42);
}
.prod-template--four .app-playground {
  margin-top: 45px;
}
.prod-template--four .app-playground li {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.prod-template--four .app-playground li .text {
  position: absolute;
  height: 120px;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 24px;
  background: -webkit-linear-gradient(transparent, rgba(9, 132, 126, 0.8));
  background: linear-gradient(transparent, rgba(9, 132, 126, 0.8));
}
@media screen and (max-width: 1200px) {
  .prod-template--four .app-playground li .text {
    height: 80px;
  }
}
@media screen and (max-width: 750px) {
  .prod-template--four .app-playground li .text {
    height: 40px;
    font-size: 16px;
  }
}
.prod-template--four .app-playground li img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  display: block;
}
.prod-template--four .app-playground li:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1200px) {
  .prod-template--four .app-playground {
    margin-top: 25px;
  }
}

.prod-template--five {
  background-color: #f7f7f7;
}
.prod-template--five .title {
  font-size: var(--fontSize-42);
}

.prod-main {
  padding: 60px 0;
  background-color: #f7f7f7;
}
.prod-main .info {
  width: 646px;
}
.prod-main .info .name {
  font-size: var(--fontSize-42);
  padding-bottom: 42px;
}
.prod-main .info .desc {
  margin-top: 45px;
}
.prod-main .info .desc li {
  margin-bottom: 20px;
  font-size: 20px;
  color: #666666;
}
.prod-main .info .desc li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #0eb8ca;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  .prod-main .info .desc {
    margin-top: 30px;
  }
  .prod-main .info .desc li {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.prod-main .info .view {
  margin-top: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 25px;
  border-radius: 36px;
  color: #333333;
  font-size: 16px;
  background-color: #f3f3f3;
}
.prod-main .info .view i {
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
  color: #09847e;
  margin-left: 15px;
}
@media screen and (min-width: 1200px) {
  .prod-main .info .view:hover {
    background-color: #09847e;
    color: #fff;
  }
  .prod-main .info .view:hover i {
    color: #fff;
  }
}
.prod-main .pic-list .main-pic {
  margin-right: 70px;
}
.prod-main .pic-list .dos {
  margin-top: 90px;
}
.prod-main .pic-list .dos--item {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  overflow: hidden;
  border-radius: 2px solid #fff;
  cursor: pointer;
  margin-bottom: 15px;
}
.prod-main .pic-list .dos--item.active {
  border: 2px solid #09847e;
}

@media screen and (max-width: 1460px) {
  .prod-main {
    padding: 30px 0;
  }
  .prod-main .info .view {
    margin-top: 10px;
  }
  .prod-main .pic-list .dos {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .prod-main {
    padding: 20px 0;
  }
  .prod-main .pic-list .main-pic {
    margin-right: 0;
  }
  .prod-main .pic-list .dos {
    margin: 20px 0;
  }
}
@media screen and (max-width: 750px) {
  .prod-main .info {
    width: 100%;
  }
  .prod-main .info .name {
    padding-bottom: 20px;
  }
  .prod-main .info .view {
    border: 2px solid #09847e;
    padding: 5px 10px;
    font-size: 16px;
  }
  .prod-main .pic-list .main-pic {
    width: 100%;
    margin-right: 0;
  }
  .prod-main .pic-list .main-pic img {
    width: 100%;
  }
  .prod-main .pic-list .dos {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0;
  }
  .prod-main .pic-list .dos--item {
    width: 80px;
    height: 80px;
  }
}
/* about us */
.brief .pic img {
  width: 100%;
  display: none;
}
.brief .pic .pic-bg {
  width: 100%;
  height: 100%;
}
.brief .text {
  background-image: url("../images/about_us_info_bg.png");
  padding-left: 160px;
}
.brief .text .title {
  font-size: var(--fontSize-48);
}
.brief .text .article {
  margin-right: 60px;
  overflow: hidden;
}
.brief .text .article .swiper-slide {
  height: auto;
  padding-right: 55px;
  color: #333333;
}
.brief .text .article .swiper-slide span {
  font-size: var(--fontSize-24);
  display: block;
}
@media screen and (max-width: 1440px) {
  .brief .text {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .brief .pic img {
    display: none;
  }
  .brief .pic .pic-bg {
    display: none;
  }
  .brief .text {
    padding: 10px;
    box-sizing: border-box;
  }
  .brief .text .article {
    margin-right: 0;
  }
  .brief .text .article .swiper-slide {
    padding-right: 20px;
  }
}

.swiper-article {
  width: 100%;
  height: 470px;
}
@media screen and (max-width: 750px) {
  .swiper-article {
    height: 300px;
  }
}

.scroll-num {
  padding: 80px 0;
  background-color: #09847e;
}
.scroll-num--item {
  text-align: center;
  color: #fff;
}
.scroll-num--item .box span {
  font-size: 60px;
  font-weight: bold;
}
.scroll-num--item .box sub {
  font-size: 30px;
  vertical-align: super;
}
.scroll-num--item .desc {
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .scroll-num {
    padding: 40px 0;
  }
  .scroll-num--item .box span {
    font-size: 40px;
  }
  .scroll-num--item .box sub {
    font-size: 22px;
  }
}
@media screen and (max-width: 750px) {
  .scroll-num {
    padding: 20px 0;
  }
  .scroll-num--item .box span {
    font-size: 30px;
  }
  .scroll-num--item .box sub {
    font-size: 20px;
  }
}

.advantage {
  background-color: #f7f7f7;
}
.advantage .title {
  font-size: var(--fontSize-48);
  text-align: center;
}
.advantage .desc {
  color: #666666;
  font-size: 24px;
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 1200px) {
  .advantage .desc {
    font-size: 20px;
    margin-top: 15px;
  }
}
.advantage ul {
  margin-top: 54px;
}
.advantage ul li {
  min-height: 480px;
  background-color: #ffffff;
  padding: 93px 67px 0 67px;
}
.advantage ul li .icon {
  width: 79px;
  height: 79px;
  margin: 0 auto;
}
.advantage ul li .name {
  font-size: 30px;
  color: #333333;
  text-align: center;
  margin: 35px 0;
}
.advantage ul li .name::after {
  content: "";
  width: 40px;
  height: 4px;
  background-color: #0eb8ca;
  display: block;
  margin: 30px auto 0 auto;
}
.advantage ul li .context {
  font-size: 20px;
  color: #666666;
  line-height: 30px;
  text-align: center;
}
.advantage ul li:nth-child(1) .icon {
  background-image: url("../images/advpic-1.png");
}
.advantage ul li:nth-child(2) .icon {
  background-image: url("../images/advpic-2.png");
}
.advantage ul li:nth-child(3) .icon {
  background-image: url("../images/advpic-3.png");
}
.advantage ul li:nth-child(4) .icon {
  background-image: url("../images/advpic-4.png");
}
.advantage ul li:nth-child(5) .icon {
  background-image: url("../images/advpic-5.png");
}
@media screen and (min-width: 1200px) {
  .advantage ul li:hover {
    background-color: #09847e;
  }
  .advantage ul li:hover .name {
    color: #fff;
  }
  .advantage ul li:hover .context {
    color: #fff;
  }
  .advantage ul li:hover:nth-child(1) .icon {
    background-image: url("../images/advpic-1-hover.png");
  }
  .advantage ul li:hover:nth-child(2) .icon {
    background-image: url("../images/advpic-2-hover.png");
  }
  .advantage ul li:hover:nth-child(3) .icon {
    background-image: url("../images/advpic-3-hover.png");
  }
  .advantage ul li:hover:nth-child(4) .icon {
    background-image: url("../images/advpic-4-hover.png");
  }
  .advantage ul li:hover:nth-child(5) .icon {
    background-image: url("../images/advpic-5-hover.png");
  }
}
@media screen and (max-width: 1460px) {
  .advantage ul {
    margin-top: 35px;
  }
  .advantage ul li .icon {
    width: 45px;
    height: 45px;
  }
  .advantage ul li .name {
    font-size: 24px;
    margin: 25px 0;
  }
  .advantage ul li .name::after {
    margin: 20px auto 0 auto;
  }
  .advantage ul li .context {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .advantage ul {
    margin-top: 35px;
  }
  .advantage ul li {
    padding: 20px;
  }
  .advantage ul li .icon {
    width: 35px;
    height: 35px;
  }
  .advantage ul li .name {
    font-size: 22px;
    margin: 20px 0;
  }
  .advantage ul li .name::after {
    margin: 20px auto 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .advantage ul li {
    min-height: 300px;
  }
  .advantage ul li .name {
    font-size: 20px;
  }
  .advantage {
    display: none;
  }
}

.technology .pic {
  width: 100%;
}
.technology .pic img {
  width: 100%;
}
.technology .info {
  padding-left: 117px;
}
.technology .info p {
  font-size: 36px;
  color: #333333;
}
.technology .info .view {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  border-radius: 36px;
  color: #333333;
  font-size: 16px;
  background-color: #f3f3f3;
}
.technology .info .view i {
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
  color: #09847e;
  margin-left: 15px;
}
@media screen and (min-width: 1200px) {
  .technology .info .view:hover {
    background-color: #09847e;
    color: #fff;
  }
  .technology .info .view:hover i {
    color: #fff;
  }
}
@media screen and (max-width: 1611px) {
  .technology .info {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1460px) {
  .technology .info p {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .technology .info {
    padding-left: 20px;
  }
  .technology .info p {
    font-size: 18px;
  }
  .technology .info .view {
    margin-top: 20px;
    padding: 10px;
  }
}
@media screen and (max-width: 750px) {
  .technology .info {
    padding-left: 0;
    margin-top: 20px;
  }
}

.culture {
  background-image: url("../images/about-us-c-bg.png");
  height: 860px;
}
.culture .content {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}
.culture .content .title {
  font-size: var(--fontSize-48);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.culture .content .four-rows {
  position: absolute;
  top: 0;
  left: 0;
}
.culture .content .four-rows--item {
  position: relative;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}
.culture .content .four-rows--item:nth-child(1) .icon {
  width: 81px;
  height: 81px;
  background-image: url("../images/about-us-cl1.png");
}
.culture .content .four-rows--item .sub-title {
  color: #ffffff;
  font-size: var(--fontSize-30);
  text-align: center;
  margin-top: 10px;
}
.culture .content .four-rows--item .sub-desc {
  position: absolute;
  bottom: 45px;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  padding: 0 52px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.culture .content .four-rows--item .sub-desc p {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
@media screen and (min-width: 1200px) {
  .culture .content .four-rows--item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .culture .content .four-rows--item:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: -webkit-linear-gradient(top, transparent, transparent, #0a837d);
    background: linear-gradient(to bottom, transparent, transparent, #0a837d);
  }
  .culture .content .four-rows--item:hover .sub-desc {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    bottom: 65px;
  }
}
@media screen and (max-width: 1460px) {
  .culture .content .four-rows--item .sub-desc {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .culture .content .four-rows--item .sub-desc {
    position: static;
    bottom: auto;
    opacity: 1;
    margin-top: 20px;
    font-size: 14px;
  }
}
.culture .content .four-rows--item {
  position: relative;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}
.culture .content .four-rows--item:nth-child(2) .icon {
  width: 81px;
  height: 81px;
  background-image: url("../images/about-us-cl2.png");
}
.culture .content .four-rows--item .sub-title {
  color: #ffffff;
  font-size: var(--fontSize-30);
  text-align: center;
  margin-top: 10px;
}
.culture .content .four-rows--item .sub-desc {
  position: absolute;
  bottom: 45px;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  padding: 0 52px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.culture .content .four-rows--item .sub-desc p {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
@media screen and (min-width: 1200px) {
  .culture .content .four-rows--item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .culture .content .four-rows--item:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: -webkit-linear-gradient(top, transparent, transparent, #0a837d);
    background: linear-gradient(to bottom, transparent, transparent, #0a837d);
  }
  .culture .content .four-rows--item:hover .sub-desc {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    bottom: 65px;
  }
}
@media screen and (max-width: 1460px) {
  .culture .content .four-rows--item .sub-desc {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .culture .content .four-rows--item .sub-desc {
    position: static;
    bottom: auto;
    opacity: 1;
    margin-top: 20px;
    font-size: 14px;
  }
}
.culture .content .four-rows--item {
  position: relative;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}
.culture .content .four-rows--item:nth-child(3) .icon {
  width: 81px;
  height: 81px;
  background-image: url("../images/about-us-cl3.png");
}
.culture .content .four-rows--item .sub-title {
  color: #ffffff;
  font-size: var(--fontSize-30);
  text-align: center;
  margin-top: 10px;
}
.culture .content .four-rows--item .sub-desc {
  position: absolute;
  bottom: 45px;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  padding: 0 52px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.culture .content .four-rows--item .sub-desc p {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
@media screen and (min-width: 1200px) {
  .culture .content .four-rows--item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .culture .content .four-rows--item:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: -webkit-linear-gradient(top, transparent, transparent, #0a837d);
    background: linear-gradient(to bottom, transparent, transparent, #0a837d);
  }
  .culture .content .four-rows--item:hover .sub-desc {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    bottom: 65px;
  }
}
@media screen and (max-width: 1460px) {
  .culture .content .four-rows--item .sub-desc {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .culture .content .four-rows--item .sub-desc {
    position: static;
    bottom: auto;
    opacity: 1;
    margin-top: 20px;
    font-size: 14px;
  }
}
.culture .content .four-rows--item {
  position: relative;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}
.culture .content .four-rows--item:nth-child(4) .icon {
  width: 81px;
  height: 81px;
  background-image: url("../images/about-us-cl4.png");
}
.culture .content .four-rows--item .sub-title {
  color: #ffffff;
  font-size: var(--fontSize-30);
  text-align: center;
  margin-top: 10px;
}
.culture .content .four-rows--item .sub-desc {
  position: absolute;
  bottom: 45px;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  padding: 0 52px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.culture .content .four-rows--item .sub-desc p {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
@media screen and (min-width: 1200px) {
  .culture .content .four-rows--item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .culture .content .four-rows--item:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: -webkit-linear-gradient(top, transparent, transparent, #0a837d);
    background: linear-gradient(to bottom, transparent, transparent, #0a837d);
  }
  .culture .content .four-rows--item:hover .sub-desc {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    bottom: 65px;
  }
}
@media screen and (max-width: 1460px) {
  .culture .content .four-rows--item .sub-desc {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .culture .content .four-rows--item .sub-desc {
    position: static;
    bottom: auto;
    opacity: 1;
    margin-top: 20px;
    font-size: 14px;
  }
}
.culture .content .four-rows--item {
  position: relative;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}
.culture .content .four-rows--item:nth-child(5) .icon {
  width: 81px;
  height: 81px;
  background-image: url("../images/about-us-cl5.png");
}
.culture .content .four-rows--item .sub-title {
  color: #ffffff;
  font-size: var(--fontSize-30);
  text-align: center;
  margin-top: 10px;
}
.culture .content .four-rows--item .sub-desc {
  position: absolute;
  bottom: 45px;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
  padding: 0 52px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
.culture .content .four-rows--item .sub-desc p {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
@media screen and (min-width: 1200px) {
  .culture .content .four-rows--item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .culture .content .four-rows--item:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: -webkit-linear-gradient(top, transparent, transparent, #0a837d);
    background: linear-gradient(to bottom, transparent, transparent, #0a837d);
  }
  .culture .content .four-rows--item:hover .sub-desc {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    bottom: 65px;
  }
}
@media screen and (max-width: 1460px) {
  .culture .content .four-rows--item .sub-desc {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .culture .content .four-rows--item .sub-desc {
    position: static;
    bottom: auto;
    opacity: 1;
    margin-top: 20px;
    font-size: 14px;
  }
  .culture {
    height: 600px;
  }
  .culture .content {
    padding-top: 50px;
  }
}
@media screen and (max-width: 750px) {
  .culture {
    height: auto;
    display: none;
  }
  .culture .content {
    padding: 30px 0;
  }
  .culture .content .four-rows {
    position: static;
  }
}

.history {
  background-color: #f7f7f7;
}
.history .title {
  font-size: var(--fontSize-48);
  text-align: center;
  color: #222222;
}
@media screen and (max-width: 750px) {
  .history {
    display: none;
  }
}

.big-swiper {
  margin-top: 56px;
  overflow: hidden;
}
.big-swiper .swiper-slide {
  height: 400px;
  width: 1200px;
  overflow: hidden;
  opacity: 0.5;
}
.big-swiper .swiper-slide-active {
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .big-swiper .swiper-slide {
    width: 800px;
  }
}
@media screen and (max-width: 1200px) {
  .big-swiper .swiper-slide {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 750px) {
  .big-swiper .swiper-slide {
    width: 100%;
    height: auto;
  }
}
.big-swiper .slide-box {
  overflow: hidden;
}
.big-swiper .slide-box .info {
  width: 600px;
  background: #fff;
}
.big-swiper .slide-box .info .info-box {
  width: 520px;
  padding-top: 40px;
  padding-left: 60px;
}
.big-swiper .slide-box .info .info-box .name {
  font-size: 60px;
  color: #09847e;
  font-weight: bold;
}
.big-swiper .slide-box .info .info-box .sub-name {
  font-size: var(--fontSize-24);
  margin: 25px 0;
}
.big-swiper .slide-box .info .info-box p {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
}
@media screen and (max-width: 1440px) {
  .big-swiper .slide-box .info {
    width: 400px;
  }
  .big-swiper .slide-box .info .info-box {
    width: auto;
    padding: 20px;
  }
  .big-swiper .slide-box .info .info-box .name {
    font-size: 30px;
  }
  .big-swiper .slide-box .info .info-box .sub-name {
    margin: 10px 0;
  }
}
@media screen and (max-width: 1200px) {
  .big-swiper .slide-box .info {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media screen and (max-width: 750px) {
  .big-swiper .slide-box .info .info-box {
    padding: 10px;
  }
}
.big-swiper .slide-box .pic {
  height: 400px;
  width: 600px;
}
@media screen and (max-width: 1200px) {
  .big-swiper .slide-box .pic {
    height: 300px;
    width: 400px;
  }
}
@media screen and (max-width: 750px) {
  .big-swiper .slide-box .pic {
    width: 100%;
  }
  .big-swiper {
    margin-top: 30px;
  }
}

.year-scroll {
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .year-scroll {
    margin-top: 20px;
  }
}

.year-swiper {
  margin: 0 20px 0 20px;
  border-bottom: 1px solid #dbdbdb;
}
.year-swiper .swiper-slide {
  text-align: center;
  cursor: pointer;
  color: #999999;
  font-size: 18px;
}
.year-swiper .swiper-slide.active {
  color: #09847e;
}
.year-swiper .swiper-slide.active::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 3px;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #09847e;
}
.year-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 3px;
  bottom: 0px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .year-swiper {
    margin: 0 10px 0 10px;
  }
}

.honner {
  background-image: url("../images/honner-bg.jpg");
}
.honner .head .title {
  font-size: var(--fontSize-48);
}
@media screen and (max-width: 750px) {
  .honner {
    display: none;
  }
}

.honner-swiper {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.honner-swiper .swiper-wrapper {
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}
.honner-swiper .swiper-slide {
  background-image: url("../images/honner-item-bg.png");
  background-size: 335px 100px;
}
.honner-swiper .swiper-slide .box {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.honner-swiper .swiper-slide .box img {
  width: 100%;
}
.honner-swiper .swiper-slide .name {
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .honner-swiper .swiper-slide {
    background-size: 165px 80px;
  }
  .honner-swiper .swiper-slide .name {
    margin-top: 25px;
    font-size: 16px;
    text-align: center;
  }
  .honner-swiper {
    margin-top: 30px;
  }
}

.honner-swiper-button-prev {
  position: absolute;
  left: 0;
  top: 35%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 9;
}

.honner-swiper-button-next {
  position: absolute;
  right: 0;
  top: 35%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 9;
}

.new-module {
  background-color: #f7f7f7;
}

.news {
  width: 83.3333333333vw;
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 1200px) {
  .news {
    margin: 0 auto 30px auto;
    width: 96%;
  }
}

.big-news {
  position: relative;
}
.big-news .pic img {
  width: 100%;
}
.big-news .info {
  position: absolute;
  width: 100%;
  bottom: 0px;
  padding: 50px 40px;
  background: -webkit-linear-gradient(top, transparent, transparent, rgba(0, 0, 0, 0.5));
  background: linear-gradient(to bottom, transparent, transparent, rgba(0, 0, 0, 0.5));
}
.big-news .info .text .sub-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.big-news .info .text .title {
  font-size: var(--fontSize-24);
  color: #ffffff;
  margin-top: 18px;
}
.big-news .info .to-view {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #09847e;
  color: #fff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .big-news .info .to-view:hover {
    background-color: #fff;
    color: #09847e;
  }
}
@media screen and (max-width: 750px) {
  .big-news .info .to-view {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .big-news .info {
    padding: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .big-news .info {
    padding: 10px;
  }
}

.na-news {
  background-color: #fff;
}
.na-news .info {
  background-color: #fff;
  padding: 38px 36px;
  box-sizing: border-box;
}
.na-news .info .sub-title {
  color: #666666;
  font-size: 16px;
}
.na-news .info .title {
  font-size: var(--fontSize-24);
  color: #333333;
  margin-top: 15px;
}
.na-news .info .info-footer span {
  color: #666666;
  font-size: 16px;
}
.na-news .info .info-footer .to-view {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #d0d0d0;
  color: #fff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  color: #d0d0d0;
}
.na-news .info .info-footer .to-view i {
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
}
@media screen and (max-width: 750px) {
  .na-news .info .info-footer .to-view {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .na-news .info:hover {
    background-color: #09847e;
    color: #fff;
  }
  .na-news .info:hover .title {
    color: #fff;
  }
  .na-news .info:hover .sub-title {
    color: #fff;
  }
  .na-news .info:hover .info-footer span {
    color: #fff;
  }
  .na-news .info:hover .info-footer .to-view {
    background-color: #fff;
    color: #09847e;
  }
  .na-news .info:hover .info-footer .to-view i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 1440px) {
  .na-news .info {
    padding: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .na-news .info {
    padding: 10px;
  }
  .na-news .info .title {
    margin: 10px 0;
  }
}
.na-news .pic {
  width: 100%;
}
.na-news .pic img {
  width: 100%;
}
.na-news:not(.sub-news) .info .info-head {
  min-height: 110px;
}
@media screen and (max-width: 1200px) {
  .na-news:not(.sub-news) .info .info-head {
    min-height: auto;
  }
}
.na-news a {
  height: 100%;
}

.news-detail {
  padding-top: 89px;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .news-detail {
    padding-top: 69px;
  }
}

.n-detail-wrapper .detail {
  width: 1190px;
  box-sizing: border-box;
  padding: 60px 80px 120px 0;
  border-right: 1px solid #f3f3f3;
}
.n-detail-wrapper .detail .content .sub-option {
  margin-top: 25px;
  padding: 29px 0;
  border-bottom: 1px solid #f3f3f3;
}
@media screen and (max-width: 1200px) {
  .n-detail-wrapper .detail .content .sub-option {
    margin-top: 10px;
    padding: 10px 0;
  }
}
.n-detail-wrapper .detail .content .title {
  font-size: var(--fontSize-48);
  color: #333333;
}
.n-detail-wrapper .detail .content .time-uv {
  font-size: 16px;
  color: #666666;
}
@media screen and (max-width: 1200px) {
  .n-detail-wrapper .detail .content .time-uv {
    margin: 10px 0;
  }
}
.n-detail-wrapper .detail .content .share i {
  margin: 0 5px;
  color: #adadad;
  cursor: pointer;
}
.n-detail-wrapper .detail .content .share i:hover {
  color: #333;
}
.n-detail-wrapper .detail .content .editor {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .n-detail-wrapper .detail .content .editor {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .n-detail-wrapper .detail {
    width: 100%;
    padding: 30px 0 50px 0;
    border-right: none;
  }
}
.n-detail-wrapper .hot-news {
  padding-top: 90px;
  padding-left: 90px;
  width: 400px;
  box-sizing: border-box;
}
.n-detail-wrapper .hot-news .title {
  font-size: var(--fontSize-30);
  color: #333333;
}
.n-detail-wrapper .hot-news ul li {
  cursor: pointer;
  margin-top: 35px;
}
.n-detail-wrapper .hot-news ul li .time {
  margin: 15px 0;
  font-size: 14px;
  color: #666666;
}
.n-detail-wrapper .hot-news ul li .sub-title {
  font-size: 18px;
  color: #333333;
}
.n-detail-wrapper .hot-news ul li:hover .sub-title {
  color: #09847e;
}
@media screen and (max-width: 1200px) {
  .n-detail-wrapper .hot-news {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }
  .n-detail-wrapper .hot-news ul li {
    margin-top: 20px;
  }
  .n-detail-wrapper .hot-news ul li img {
    width: 100%;
  }
  .n-detail-wrapper .hot-news ul li .sub-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .n-detail-wrapper .hot-news {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
  .n-detail-wrapper .hot-news ul li {
    margin-top: 20px;
  }
}

.news-detail-nav {
  margin-top: 50px;
  padding: 20px 30px;
  background-color: #f7f7f7;
}
.news-detail-nav .btn {
  cursor: pointer;
}
.news-detail-nav .btn i {
  margin: 0 10px;
}
.news-detail-nav .btn:hover {
  color: #0a837d;
}
@media screen and (max-width: 750px) {
  .news-detail-nav {
    margin-top: 30px;
    padding: 10px 10px;
    font-size: 14px;
  }
}

/* search  */
.page-search {
  padding-top: 89px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 750px) {
  .page-search {
    padding-top: 60px;
  }
}

.search-box {
  padding: 36px 83px;
}
.search-box .title {
  font-size: var(--fontSize-48);
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .search-box {
    padding: 36px 0;
  }
}
@media screen and (max-width: 750px) {
  .search-box {
    padding: 20px 0;
  }
}

.search-form {
  margin: 76px auto 0 auto;
  width: 740px;
}
@media screen and (max-width: 1200px) {
  .search-form {
    margin: 30px auto 0 auto;
    width: 100%;
  }
}
.search-form input {
  padding: 0 0 0 32px;
  height: 50px;
  line-height: 50px;
}
.search-form button {
  padding: 0 20px;
  background: #fff;
  display: block;
}
.search-form button:hover {
  background: #0a837d;
  color: #fff;
}

.search-list {
  border-bottom: 2px solid #e6e6e6;
  margin-top: 86px;
}
@media screen and (max-width: 1200px) {
  .search-list {
    margin-top: 36px;
  }
}
@media screen and (max-width: 750px) {
  .search-list {
    margin-top: 0;
  }
}
.search-list li {
  cursor: pointer;
  position: relative;
  font-size: var(--fontSize-24);
  color: #999999;
  margin-right: 50px;
  padding-bottom: 20px;
}
.search-list li::after {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: transparent;
}
.search-list li:hover {
  color: #09847e;
}
.search-list li:hover::after {
  background-color: #09847e;
}
.search-list li.active {
  color: #09847e;
}
.search-list li.active::after {
  background-color: #09847e;
}

/* 联系我们 */
.contact-info {
  background-image: url("../images/about_us_info_bg.png");
}
.contact-info .info .title {
  font-size: var(--fontSize-48);
  color: #222222;
}
@media screen and (max-width: 1220px) {
  .contact-info .info .title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 750px) {
  .contact-info .info .title {
    margin-top: 0;
  }
}
.contact-info .info .name {
  font-size: var(--fontSize-30);
  color: #333333;
  margin: 30px auto;
}
@media screen and (max-width: 1220px) {
  .contact-info .info .name {
    margin: 10px auto;
  }
}
.contact-info .info ul {
  margin-top: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f3f3f3;
}
.contact-info .info ul li {
  font-size: 18px;
  padding-left: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .contact-info .info ul li {
    margin-bottom: 10p;
    font-size: 16px;
  }
}
.contact-info .info ul li span {
  color: #666666;
}
.contact-info .info ul li.phone {
  background-image: url("../images/c-phone.png");
}
.contact-info .info ul li.mail {
  background-image: url("../images/c-mail.png");
}
.contact-info .info ul li.address {
  background-image: url("../images/c-coordinate.png");
}
.contact-info .info ul li.chat {
  background-image: url("../images/c-wechat.png");
}
@media screen and (max-width: 1220px) {
  .contact-info .info ul {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.contact-info .info ul:last-child {
  border-bottom: none;
}
.contact-info .pic {
  height: 520px;
}
@media screen and (max-width: 750px) {
  .contact-info .pic {
    height: 300px;
    display: none;
  }
}

.company-list {
  position: relative;
}
.company-list .contact-swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 72px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 5;
}
.company-list .contact-swiper-button-next {
  position: absolute;
  top: 50%;
  right: 72px;
  z-index: 5;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 1460px) {
  .company-list .contact-swiper-button-prev {
    left: 10px;
  }
  .company-list .contact-swiper-button-next {
    right: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .company-list .contact-swiper-button-prev {
    display: none;
  }
  .company-list .contact-swiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .company-list {
    display: none;
  }
}

.contact-swiper {
  width: 83.3333333333vw;
  margin: auto;
  overflow: hidden;
}
.contact-swiper .swiper-slide .pic img {
  width: 100%;
}
.contact-swiper .swiper-slide .text {
  background-color: #f7f7f7;
  padding: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .contact-swiper .swiper-slide .text {
    padding: 10px;
  }
}
.contact-swiper .swiper-slide .text .title {
  font-size: var(--fontSize-24);
  color: #333333;
}
.contact-swiper .swiper-slide .text i {
  margin: 30px 0;
  position: relative;
  display: block;
  width: 100px;
  height: 2px;
  background-color: #e7e7e7;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .contact-swiper .swiper-slide .text i {
    margin: 10px 0;
  }
}
.contact-swiper .swiper-slide .text i::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #0eb8ca;
}
.contact-swiper .swiper-slide .text .desc {
  font-size: 18px;
  color: #666666;
}
@media screen and (max-width: 1200px) {
  .contact-swiper .swiper-slide .text .desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 1460px) {
  .contact-swiper {
    width: 96%;
    padding: 0 2%;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
}

.contact-form {
  background-image: url("../images/contact-form-bg.jpg");
  height: 800px;
  margin: 100px auto;
}
@media screen and (max-width: 1460px) {
  .contact-form {
    margin: 50px auto;
  }
}
@media screen and (max-width: 1200px) {
  .contact-form {
    height: 700px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 750px) {
  .contact-form {
    height: auto;
  }
}
.contact-form .title {
  font-size: var(--fontSize-48);
}
.contact-form .desc {
  font-size: 18px;
  color: #333333;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .contact-form .desc {
    margin-top: 15px;
    font-size: 16px;
  }
}
.contact-form form {
  display: block;
  margin-top: 50px;
  width: 740px;
}
@media screen and (max-width: 1200px) {
  .contact-form form {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .contact-form form {
    margin-top: 20px;
  }
}
.contact-form form .form-item {
  padding: 10px 20px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .contact-form form .form-item {
    margin-top: 10px;
  }
}
.contact-form form .form-item input {
  display: block;
  height: 30px;
  line-height: 30px;
  width: 100%;
}
.contact-form form .form-item textarea {
  display: block;
  width: 100%;
}
.contact-form form .tips {
  margin-top: 20px;
  color: #999999;
  font-size: 14px;
}
.contact-form form .view {
  overflow: hidden;
  margin-top: 30px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  border-radius: 36px;
  color: #fff;
  font-size: 16px;
  background-color: #09847e;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0, 0.22, 0.3, 1);
  transition: all 0.3s cubic-bezier(0, 0.22, 0.3, 1);
}
.contact-form form .view i {
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
  color: #fff;
  margin-left: 5px;
}
@media screen and (max-width: 750px) {
  .contact-form form .view {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.join-us .title {
  font-size: var(--fontSize-48);
}
.join-us .join-table {
  margin-top: 55px;
  margin-bottom: 55px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .join-us .join-table {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.table--item .table-head {
  padding: 20px 0;
  background-color: #e4e4e4;
}
.table--item .table-head > div {
  font-size: 18px;
}
.table--item .table-head > div:first-child {
  padding-left: 105px;
}
@media screen and (max-width: 1200px) {
  .table--item .table-head > div:first-child {
    padding-left: 30px;
  }
}
@media screen and (max-width: 750px) {
  .table--item .table-head > div:first-child {
    padding-left: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .table--item .table-head > div {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .table--item .table-head > div {
    font-size: 12px;
    text-align: center;
  }
  .table--item .table-head > div:nth-child(3) {
    display: none;
  }
}
.table--item .table-head .name {
  position: relative;
}
.table--item .table-head .name::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  background-color: #0eb8ca;
  left: 80px;
  top: 5px;
}
@media screen and (max-width: 1200px) {
  .table--item .table-head .name::before {
    left: 10px;
  }
}
@media screen and (max-width: 750px) {
  .table--item .table-head .name::before {
    display: none;
  }
}
.table--item .table-head .options {
  padding-right: 60px;
}
.table--item .table-head .options i {
  font-size: 20px;
  cursor: pointer;
}
.table--item .table-head .options i.fa-minus {
  display: none;
}
@media screen and (max-width: 750px) {
  .table--item .table-head .options {
    padding-right: 10px;
  }
}
.table--item.content {
  border: 1px solid #f3f3f3;
  background-color: #fff;
}
.table--item.content .table-head {
  background-color: #fff;
}
.table--item.content .context {
  display: none;
  padding: 55px 96px;
}
@media screen and (max-width: 1200px) {
  .table--item.content .context {
    padding: 20px;
  }
}
.table--item.content .context .wrapper .info {
  font-size: 18px;
}
.table--item.content .context .wrapper .info p {
  margin-top: 14px;
  font-size: 16px;
  color: #666666;
}
@media screen and (max-width: 750px) {
  .table--item.content .context .wrapper .info {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .table--item.content .context .wrapper .info p {
    font-size: 12px;
  }
}
.table--item.content .context .view {
  overflow: hidden;
  margin-top: 30px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  border-radius: 36px;
  color: #fff;
  font-size: 16px;
  background-color: #09847e;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0, 0.22, 0.3, 1);
  transition: all 0.3s cubic-bezier(0, 0.22, 0.3, 1);
}
.table--item.content .context .view i {
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
  color: #fff;
  margin-left: 5px;
}
@media screen and (max-width: 750px) {
  .table--item.content .context .view {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.table--item.active {
  border: 1px solid #0a837d;
}
.table--item.active .table-head {
  background-color: #09847e;
  color: #fff;
}
.table--item.active .table-head .name::before {
  background-color: #fff;
}
.table--item.active .table-head .options i {
  display: none;
}
.table--item.active .table-head .options i.fa-minus {
  display: block;
}

.main-banner {
  height: 960px;
}
.main-banner .text {
  color: #fff;
  text-align: center;
}
.main-banner .text .title {
  font-size: var(--fontSize-72);
}
.main-banner .text .title::after {
  width: 42px;
  height: 2px;
  background-color: #fff;
  content: "";
  display: block;
  margin: 40px auto;
}
@media screen and (max-width: 750px) {
  .main-banner .text .title::after {
    margin: 10px auto;
  }
}
.main-banner .text .sub-title {
  font-size: var(--fontSize-48);
}
@media screen and (max-width: 1460px) {
  .main-banner {
    height: 860px;
  }
}
@media screen and (max-width: 1200px) {
  .main-banner {
    height: 560px;
  }
}
@media screen and (max-width: 750px) {
  .main-banner {
    height: 250px;
  }
}

.swiper-pagination-banner {
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 99;
}
.swiper-pagination-banner .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 1;
}
.swiper-pagination-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 7px;
}

.home-module-title, .gas-title, .news-title, .case-title, .pd-title, .au-title, .bs-title {
  width: 21.3541666667vw;
  height: 7.8125vw;
}
@media screen and (max-width: 750px) {
  .home-module-title, .gas-title, .news-title, .case-title, .pd-title, .au-title, .bs-title {
    width: 200px;
    height: 74px;
  }
}

.bs-title {
  background-image: url("../images/home-title-bs.png");
}

.business {
  padding-top: 40px;
  background-position: top right;
  background-image: url("../images/business_bg.png");
}
@media screen and (max-width: 750px) {
  .business {
    padding-top: 30px;
  }
}
.business .wrapper {
  margin-top: 30px;
  padding-bottom: 75px;
  width: 91.6666666667vw;
  background-image: url("../images/home-bs-bg.jpg");
  background-position: left top;
}
@media screen and (max-width: 1200px) {
  .business .wrapper {
    width: 100%;
    padding: 0 2%;
    box-sizing: border-box;
    background: none;
    margin-top: 20px;
    padding-bottom: 30px;
  }
}
.business .wrapper .wrapper-content {
  overflow: hidden;
  margin-left: 8.4375vw;
  padding-top: 80px;
}
.business .wrapper .wrapper-content .nav {
  width: 17.1875vw;
}
.business .wrapper .wrapper-content .nav .nav--sub-title {
  font-size: 36px;
  color: #fff;
}
@media screen and (max-width: 1660px) {
  .business .wrapper .wrapper-content .nav .nav--sub-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1460px) {
  .business .wrapper .wrapper-content .nav .nav--sub-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .nav .nav--sub-title {
    font-size: 24px;
    color: #333;
  }
}
@media screen and (max-width: 750px) {
  .business .wrapper .wrapper-content .nav .nav--sub-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
  }
}
.business .wrapper .wrapper-content .nav .no-swiper-wrapper {
  margin-top: 35px;
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .nav .no-swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px;
  }
}
.business .wrapper .wrapper-content .nav .no-swiper-wrapper .swiper-slide {
  overflow: hidden;
  cursor: pointer;
  padding: 13px 0;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  background-color: #369b97;
  border: 1px solid #53aaa6;
  margin-bottom: 10px;
  border-radius: 10px;
}
.business .wrapper .wrapper-content .nav .no-swiper-wrapper .swiper-slide.active {
  background-color: #09847e;
  border: 1px solid #53aaa6;
  color: #fff;
}
@media screen and (max-width: 1460px) {
  .business .wrapper .wrapper-content .nav .no-swiper-wrapper .swiper-slide {
    font-size: 18px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .nav .no-swiper-wrapper .swiper-slide {
    font-size: 16px;
    padding: 10px 0;
    width: 48%;
    margin: 5px 1%;
  }
}
@media screen and (min-width: 1200px) {
  .business .wrapper .wrapper-content .nav .no-swiper-wrapper .swiper-slide:hover {
    background-color: #09847e;
    border: 1px solid #53aaa6;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .nav .no-swiper-wrapper {
    margin-top: 20px;
  }
  .business .wrapper .wrapper-content .nav {
    width: 100%;
  }
}
.business .wrapper .wrapper-content .pic-list {
  width: 62.5vw;
  margin-left: 4.0625vw;
  display: none;
}
.business .wrapper .wrapper-content .pic-list.on {
  display: block;
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide {
  color: #ffffff;
  overflow: hidden;
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .pic {
  height: 294px;
}
@media screen and (max-width: 1460px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .pic {
    height: 240px;
  }
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .pic {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .pic {
    height: 145px;
  }
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide img {
  display: none;
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide img {
    width: 100%;
    display: block;
  }
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  background-color: rgba(14, 185, 202, 0.8);
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 35px;
  box-sizing: border-box;
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .item-title {
  font-size: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 1600px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .item-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1460px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .item-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .item-title {
    margin-top: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .item-title {
    margin-top: 0;
    font-size: 16px;
  }
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .desc {
  margin-top: 18px;
  font-size: 16px;
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .view {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 10px 25px;
  border-radius: 36px;
  color: #09847e;
  font-size: 16px;
  background-color: #f3f3f3;
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .view i {
  color: #09847e;
  margin-left: 15px;
}
@media screen and (max-width: 750px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .view {
    display: none;
  }
}
@media screen and (max-width: 1600px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .desc {
    margin-top: 10px;
  }
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .view {
    margin-top: 10px;
    font-size: 14px;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text {
    position: static;
    padding: 10px;
    height: auto;
  }
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .view {
    padding: 5px 10px;
    font-size: 14px;
  }
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .view i {
    margin-left: 0;
  }
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text .desc {
    display: none;
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .text {
    background-color: #14bbb3;
  }
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .business-title {
  position: absolute;
  font-size: 24px;
  bottom: 30px;
  left: 30px;
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .business-title .icon {
  margin-bottom: 20px;
}
@media screen and (max-width: 1460px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .business-title {
    font-size: 18px;
    bottom: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide .business-title {
    display: none;
  }
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide:hover .text {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 0px;
}
.business .wrapper .wrapper-content .pic-list .no-swiper-wrapper .swiper-slide:hover .business-title {
  display: none;
}
@media screen and (max-width: 1200px) {
  .business .wrapper .wrapper-content .pic-list {
    width: 100%;
    margin-left: 0px;
  }
  .business .wrapper .wrapper-content {
    padding-top: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 750px) {
  .business-swiper {
    display: none;
  }
}

.home-about-us {
  position: relative;
  padding: 3.125vw 0 0;
}
@media screen and (max-width: 750px) {
  .home-about-us {
    display: none;
  }
}
.home-about-us .pic img {
  width: 100%;
}
.home-about-us .bg-vw-size {
  position: absolute;
  top: 0;
  left: 0%;
  margin: 0 auto;
  width: 83.3333333333vw;
  right: 0;
  padding: 4.1666666667vw 0 0 0;
}
@media screen and (max-width: 1200px) {
  .home-about-us .bg-vw-size {
    width: 100%;
    padding: 4.1666666667vw 2% 0 2%;
  }
}
@media screen and (max-width: 900px) {
  .home-about-us .bg-vw-size {
    position: static;
  }
}
.home-about-us .content {
  width: 42.7083333333vw;
  margin-top: 2.0833333333vw;
  font-size: 0.9375vw;
  color: #333333;
  line-height: 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .home-about-us .content {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 900px) {
  .home-about-us .content {
    font-size: 16px;
    width: 100%;
    line-height: 30px;
  }
}
.home-about-us .about-honer {
  width: 42.7083333333vw;
}
@media screen and (max-width: 900px) {
  .home-about-us .about-honer {
    width: 100%;
  }
}
.home-about-us .about-honer--item {
  font-size: 0;
}
.home-about-us .about-honer--item .num {
  color: #09847e;
  font-size: 3.125vw;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .home-about-us .about-honer--item .num {
    font-size: 30px;
  }
}
.home-about-us .about-honer--item .num sub {
  font-size: 1.5625vw;
  vertical-align: middle;
  font-weight: normal;
  margin-left: -0.78125vw;
}
@media screen and (max-width: 900px) {
  .home-about-us .about-honer--item .num sub {
    font-size: 20px;
  }
}
.home-about-us .about-honer--item .num span {
  vertical-align: middle;
}
.home-about-us .about-honer--item .desc {
  font-size: 0.8333333333vw;
  color: #333333;
}
@media screen and (max-width: 900px) {
  .home-about-us .about-honer--item .desc {
    font-size: 16px;
  }
}
.home-about-us .view {
  margin-top: 2.6041666667vw;
  display: block;
  width: 10.4166666667vw;
  height: 3.125vw;
  line-height: 3.125vw;
  text-align: center;
  color: #fff;
  background-color: #09847e;
  border-radius: 36px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0.9375vw;
}
.home-about-us .view i {
  margin-left: 0.5208333333vw;
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
}
.home-about-us .view:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #0eb8ca;
}
@media screen and (max-width: 900px) {
  .home-about-us .view {
    margin-top: 20px;
    width: 110px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.home-about-us .honer-list-info {
  margin-top: 3.125vw;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .home-about-us .honer-list-info {
    margin-top: 1.5625vw;
    display: none;
  }
}
.home-about-us .honer-list-info .item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1.0416666667vw 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item {
    padding: 0.5208333333vw;
  }
}
.home-about-us .honer-list-info .item:nth-child(1) .icon {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #0eb8ca;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("../images/ta-pic-1.png");
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item:nth-child(1) .icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(1) .icon {
    width: 40px;
    height: 40px;
  }
}
.home-about-us .honer-list-info .item:nth-child(1) .text {
  margin-left: 1.0416666667vw;
}
.home-about-us .honer-list-info .item:nth-child(1) .text .title {
  font-size: 1.25vw;
  color: #333333;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(1) .text .title {
    font-size: 16px;
  }
}
.home-about-us .honer-list-info .item:nth-child(1) .text .sub-title {
  font-size: 0.8333333333vw;
  color: #666666;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(1) .text .sub-title {
    font-size: 12px;
  }
  .home-about-us .honer-list-info .item:nth-child(1) .text {
    margin-left: 10px;
  }
}
.home-about-us .honer-list-info .item:nth-child(1):hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #09847e;
}
.home-about-us .honer-list-info .item:nth-child(1):hover .icon {
  border: 1px solid #09847e;
  background-color: #fff;
  background-image: url("../images/ta-pic-1-hover.png");
}
.home-about-us .honer-list-info .item:nth-child(1):hover .text .title {
  color: #fff;
}
.home-about-us .honer-list-info .item:nth-child(1):hover .text .sub-title {
  color: #fff;
}
.home-about-us .honer-list-info .item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1.0416666667vw 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item {
    padding: 0.5208333333vw;
  }
}
.home-about-us .honer-list-info .item:nth-child(2) .icon {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #0eb8ca;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("../images/ta-pic-2.png");
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item:nth-child(2) .icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(2) .icon {
    width: 40px;
    height: 40px;
  }
}
.home-about-us .honer-list-info .item:nth-child(2) .text {
  margin-left: 1.0416666667vw;
}
.home-about-us .honer-list-info .item:nth-child(2) .text .title {
  font-size: 1.25vw;
  color: #333333;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(2) .text .title {
    font-size: 16px;
  }
}
.home-about-us .honer-list-info .item:nth-child(2) .text .sub-title {
  font-size: 0.8333333333vw;
  color: #666666;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(2) .text .sub-title {
    font-size: 12px;
  }
  .home-about-us .honer-list-info .item:nth-child(2) .text {
    margin-left: 10px;
  }
}
.home-about-us .honer-list-info .item:nth-child(2):hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #09847e;
}
.home-about-us .honer-list-info .item:nth-child(2):hover .icon {
  border: 1px solid #09847e;
  background-color: #fff;
  background-image: url("../images/ta-pic-2-hover.png");
}
.home-about-us .honer-list-info .item:nth-child(2):hover .text .title {
  color: #fff;
}
.home-about-us .honer-list-info .item:nth-child(2):hover .text .sub-title {
  color: #fff;
}
.home-about-us .honer-list-info .item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1.0416666667vw 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item {
    padding: 0.5208333333vw;
  }
}
.home-about-us .honer-list-info .item:nth-child(3) .icon {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #0eb8ca;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("../images/ta-pic-3.png");
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item:nth-child(3) .icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(3) .icon {
    width: 40px;
    height: 40px;
  }
}
.home-about-us .honer-list-info .item:nth-child(3) .text {
  margin-left: 1.0416666667vw;
}
.home-about-us .honer-list-info .item:nth-child(3) .text .title {
  font-size: 1.25vw;
  color: #333333;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(3) .text .title {
    font-size: 16px;
  }
}
.home-about-us .honer-list-info .item:nth-child(3) .text .sub-title {
  font-size: 0.8333333333vw;
  color: #666666;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(3) .text .sub-title {
    font-size: 12px;
  }
  .home-about-us .honer-list-info .item:nth-child(3) .text {
    margin-left: 10px;
  }
}
.home-about-us .honer-list-info .item:nth-child(3):hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #09847e;
}
.home-about-us .honer-list-info .item:nth-child(3):hover .icon {
  border: 1px solid #09847e;
  background-color: #fff;
  background-image: url("../images/ta-pic-3-hover.png");
}
.home-about-us .honer-list-info .item:nth-child(3):hover .text .title {
  color: #fff;
}
.home-about-us .honer-list-info .item:nth-child(3):hover .text .sub-title {
  color: #fff;
}
.home-about-us .honer-list-info .item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1.0416666667vw 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item {
    padding: 0.5208333333vw;
  }
}
.home-about-us .honer-list-info .item:nth-child(4) .icon {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #0eb8ca;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-image: url("../images/ta-pic-4.png");
}
@media screen and (max-width: 1200px) {
  .home-about-us .honer-list-info .item:nth-child(4) .icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(4) .icon {
    width: 40px;
    height: 40px;
  }
}
.home-about-us .honer-list-info .item:nth-child(4) .text {
  margin-left: 1.0416666667vw;
}
.home-about-us .honer-list-info .item:nth-child(4) .text .title {
  font-size: 1.25vw;
  color: #333333;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(4) .text .title {
    font-size: 16px;
  }
}
.home-about-us .honer-list-info .item:nth-child(4) .text .sub-title {
  font-size: 0.8333333333vw;
  color: #666666;
}
@media screen and (max-width: 900px) {
  .home-about-us .honer-list-info .item:nth-child(4) .text .sub-title {
    font-size: 12px;
  }
  .home-about-us .honer-list-info .item:nth-child(4) .text {
    margin-left: 10px;
  }
}
.home-about-us .honer-list-info .item:nth-child(4):hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #09847e;
}
.home-about-us .honer-list-info .item:nth-child(4):hover .icon {
  border: 1px solid #09847e;
  background-color: #fff;
  background-image: url("../images/ta-pic-4-hover.png");
}
.home-about-us .honer-list-info .item:nth-child(4):hover .text .title {
  color: #fff;
}
.home-about-us .honer-list-info .item:nth-child(4):hover .text .sub-title {
  color: #fff;
}

.au-title {
  background-image: url("../images/home-title-ab.png");
}

.pd-title {
  background-image: url("../images/home-title-pd.png");
}

.home-pd-center {
  padding: 40px 0 0;
}
@media screen and (max-width: 750px) {
  .home-pd-center {
    padding: 0px 0 0px 0;
  }
}

.pad-nav-swiper {
  padding: 0 30px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .pad-nav-swiper {
    margin-top: 20px;
    padding: 0;
    display: none;
  }
}

.pd-swiper .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin: 0 5px;
}
.pd-swiper .swiper-slide .text {
  font-size: 16px;
  color: #ffffff;
  height: 55px;
  background: #0eb8ca;
  -webkit-transform: skew(-28deg);
  -ms-transform: skew(-28deg);
  transform: skew(-28deg);
  border-radius: 15px;
  display: block;
  padding: 0 10px;
  line-height: 55px;
  text-align: center;
}
@media screen and (max-width: 1460px) {
  .pd-swiper .swiper-slide .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .pd-swiper .swiper-slide .text {
    height: 40px;
    line-height: 40px;
  }
}
.pd-swiper .swiper-slide .text span {
  -webkit-transform: skew(28deg);
  -ms-transform: skew(28deg);
  transform: skew(28deg);
  display: block;
}
.pd-swiper .swiper-slide:hover .text {
  background-color: #09847e;
}
.pd-swiper .swiper-slide.active .text {
  background-color: #09847e;
}
@media screen and (max-width: 920px) {
  .pd-swiper .swiper-slide {
    margin: 0 1%;
    margin-bottom: 10px;
    width: 31%;
  }
}
@media screen and (max-width: 720px) {
  .pd-swiper .swiper-slide {
    width: 48%;
  }
}

.home-pd-list {
  margin: 0 auto;
  margin-top: 30px;
  width: 1600px;
  overflow: hidden;
}
.home-pd-list .swiper-wrapper {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.home-pd-list .swiper-wrapper .swiper-slide {
  background-image: url("../images/home-pd-bg2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 380px;
  padding-bottom: 20px;
}
.home-pd-list .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
}
.home-pd-list .swiper-wrapper .swiper-slide .text {
  text-align: center;
  font-size: 18px;
  color: #333333;
  height: 50px;
}
.home-pd-list .swiper-wrapper .swiper-slide .view {
  width: 140px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin: 0 auto;
  background-color: #0a837d;
  display: none;
  border-radius: 36px;
}
@media screen and (min-width: 1200px) {
  .home-pd-list .swiper-wrapper .swiper-slide:hover .text {
    display: none;
  }
  .home-pd-list .swiper-wrapper .swiper-slide:hover .view {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .home-pd-list .swiper-wrapper .swiper-slide .text {
    font-size: 16px;
    height: auto;
    margin: 20px 0;
  }
  .home-pd-list .swiper-wrapper .swiper-slide .view {
    display: block;
    width: 100px;
    height: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 750px) {
  .home-pd-list .swiper-wrapper .swiper-slide {
    height: auto;
  }
  .home-pd-list .swiper-wrapper .swiper-slide .view {
    display: none;
  }
  .home-pd-list .swiper-wrapper .swiper-slide .text {
    margin: 0;
  }
}
@media screen and (max-width: 1660px) {
  .home-pd-list {
    width: 1440px;
  }
}
@media screen and (max-width: 1460px) {
  .home-pd-list {
    width: 1185px;
  }
}
@media screen and (max-width: 1200px) {
  .home-pd-list {
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
  }
}

.pd-row-list {
  position: relative;
  display: none;
}
.pd-row-list.on {
  display: block;
}
.pd-row-list.mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pd-row-list {
    width: 100%;
    padding: 0 3%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 750px) {
  .pd-row-list.mobile {
    display: block;
  }
  .pd-row-list.on {
    display: none;
  }
}

.home-swiper-button-prev, .home-swiper-button-next {
  background-image: url("../images/home-row-left.png");
  width: 74px;
  height: 74px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 45px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #0eb8ca;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1660px) {
  .home-swiper-button-prev, .home-swiper-button-next {
    left: 60px;
  }
}
@media screen and (max-width: 1460px) {
  .home-swiper-button-prev, .home-swiper-button-next {
    left: 35px;
    width: 54px;
    height: 54px;
  }
}
@media screen and (max-width: 1200px) {
  .home-swiper-button-prev, .home-swiper-button-next {
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .home-swiper-button-prev, .home-swiper-button-next {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .home-swiper-button-prev:hover, .home-swiper-button-next:hover {
    background-color: #09847e;
  }
}
.home-swiper-button-prev.swiper-button-disabled, .swiper-button-disabled.home-swiper-button-next {
  -webkit-filter: grayscale(100%) opacity(0.5);
  filter: grayscale(100%) opacity(0.5);
}

.home-swiper-button-next {
  background-image: url("../images/home-row-right.png");
  left: auto;
  right: 40px;
}
@media screen and (max-width: 1660px) {
  .home-swiper-button-next {
    right: 60px;
  }
}
@media screen and (max-width: 1460px) {
  .home-swiper-button-next {
    left: auto;
    right: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .home-swiper-button-next {
    left: auto;
    right: 0;
  }
}

.case-title {
  background-image: url("../images/home-title-ca.png");
}

.home-case-list {
  position: relative;
  margin-top: 30px;
  display: none;
}
.home-case-list.on {
  display: block;
}
.home-case-list.mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .home-case-list {
    width: 96%;
    margin: 30px 2%;
  }
}
@media screen and (max-width: 750px) {
  .home-case-list {
    display: none;
  }
  .home-case-list.on {
    display: block;
  }
  .home-case-list.mobile {
    display: block;
  }
  .home-case-list .case-prev {
    display: none;
  }
  .home-case-list .case-next {
    display: none;
  }
}

.home-case-center {
  margin-bottom: 2.0833333333vw;
}

.case-swiper-list {
  overflow: hidden;
  width: 1600px;
  margin: 0 auto;
}
.case-swiper-list .swiper-wrapper {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.case-swiper-list .swiper-slide {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.case-swiper-list .swiper-slide .pic {
  overflow: hidden;
  position: relative;
}
.case-swiper-list .swiper-slide .pic img {
  width: 100%;
}
.case-swiper-list .swiper-slide .text {
  line-height: 65px;
  font-size: 20px;
  color: #333;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .case-swiper-list .swiper-slide .text {
    line-height: normal;
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .case-swiper-list .swiper-slide .text {
    line-height: normal;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.case-swiper-list .swiper-slide .info {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: -100%;
  position: absolute;
  padding: 0 35px;
  background-color: rgba(9, 132, 126, 0.7);
  color: #fff;
}
.case-swiper-list .swiper-slide .info p {
  line-height: 30px;
}
.case-swiper-list .swiper-slide .info .view {
  width: 140px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #0a837d;
  font-size: 14px;
  margin: 0 auto;
  background-color: #fff;
  display: none;
  border-radius: 36px;
  display: block;
  margin-top: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .case-swiper-list .swiper-slide .info .view:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #0a837d;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .case-swiper-list .swiper-slide .info {
    display: none;
  }
}
.case-swiper-list .swiper-slide .info-mobile {
  display: none;
  color: #333;
  padding: 20px;
}
.case-swiper-list .swiper-slide .info-mobile p {
  line-height: 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.case-swiper-list .swiper-slide .info-mobile .view {
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-color: #0a837d;
  border-radius: 36px;
  display: block;
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .case-swiper-list .swiper-slide .info-mobile .view {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .case-swiper-list .swiper-slide .info-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .case-swiper-list .swiper-slide .info-mobile p {
    line-height: 25px;
  }
  .case-swiper-list .swiper-slide .info-mobile .view {
    font-size: 14px;
    width: 110px;
    height: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 750px) {
  .case-swiper-list .swiper-slide .info-mobile {
    display: none;
  }
  .case-swiper-list .swiper-slide .info-mobile p {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .case-swiper-list .swiper-slide:hover .text {
    color: #09847e;
  }
  .case-swiper-list .swiper-slide:hover .info {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .case-swiper-list .swiper-slide {
    height: auto;
  }
}
@media screen and (max-width: 1660px) {
  .case-swiper-list {
    width: 1440px;
  }
}
@media screen and (max-width: 1460px) {
  .case-swiper-list {
    width: 1185px;
  }
}
@media screen and (max-width: 1200px) {
  .case-swiper-list {
    width: 100%;
  }
}

.home-news-head .view {
  overflow: hidden;
  margin-top: 30px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 46px;
  border-radius: 36px;
  color: #fff;
  font-size: 16px;
  background-color: #09847e;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0, 0.22, 0.3, 1);
  transition: all 0.3s cubic-bezier(0, 0.22, 0.3, 1);
  display: block;
}
.home-news-head .view i {
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
  color: #fff;
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  .home-news-head .view {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.news-title {
  background-image: url("../images/home-title-news.png");
}

.home-news-center {
  background-color: #e6f2f4;
  padding: 40px 0 30px 0;
}
@media screen and (max-width: 750px) {
  .home-news-center {
    padding: 30px 0;
    display: none;
  }
}

.news-row {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .news-row {
    margin-top: 27px;
  }
}
.news-row--item .pic img {
  width: 100%;
}
.news-row--item .text {
  background-color: #fff;
  padding: 37px;
}
@media screen and (max-width: 1460px) {
  .news-row--item .text {
    padding: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .news-row--item .text {
    padding: 16px;
  }
}
.news-row--item .text .content {
  min-height: 155px;
}
.news-row--item .text .content .type {
  font-size: 16px;
  color: #666666;
}
@media screen and (max-width: 1200px) {
  .news-row--item .text .content .type {
    font-size: 14px;
  }
}
.news-row--item .text .content .desc {
  font-size: var(--fontSize-24);
  color: #333333;
  margin-top: 15px;
}
@media screen and (max-width: 1460px) {
  .news-row--item .text .content {
    min-height: 135px;
  }
}
@media screen and (max-width: 1200px) {
  .news-row--item .text .content {
    min-height: auto;
  }
}
.news-row--item .text--bottom span {
  display: block;
}
.news-row--item .text--bottom .date {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #666666;
  font-size: 16px;
}
.news-row--item .text--bottom .view {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 35px;
  height: 35px;
  border: 1px solid #dedede;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: #dedede;
  -webkit-transform: rotate(-36deg);
  -ms-transform: rotate(-36deg);
  transform: rotate(-36deg);
}
@media screen and (max-width: 750px) {
  .news-row--item .text--bottom .view {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .news-row--item:hover .view {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #09847e;
    background-color: #09847e;
    color: #fff;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .news-row--item:hover .text .desc {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #09847e;
  }
}
@media screen and (max-width: 1200px) {
  .news-row--item:nth-child(2) {
    display: none;
  }
}
.news-row--list {
  background-color: #fff;
}
.news-row--list .more-list {
  padding: 28px 37px 0 37px;
  display: block;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 24px 30px;
}
.news-row--list .more-list .wrapper {
  border-bottom: 1px solid #dbdada;
}
.news-row--list .more-list .wrapper .sub-title {
  color: #666666;
  font-size: 14px;
}
.news-row--list .more-list .wrapper .sub-desc {
  color: #333333;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 1460px) {
  .news-row--list .more-list .wrapper .sub-desc {
    margin-top: 5px;
    font-size: 15px;
  }
  .news-row--list .more-list .wrapper {
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .news-row--list .more-list:hover {
    background-color: #09847e;
  }
  .news-row--list .more-list:hover .wrapper {
    border-color: #09847e;
  }
  .news-row--list .more-list:hover .wrapper .sub-title {
    color: #fff;
  }
  .news-row--list .more-list:hover .wrapper .sub-desc {
    color: #fff;
  }
}
@media screen and (max-width: 1460px) {
  .news-row--list .more-list {
    padding: 20px 30px;
  }
}
.news-row--list:last-child .wrapper {
  border: none;
}
@media screen and (max-width: 750px) {
  .news-row--list {
    display: none;
  }
}

.affix {
  position: fixed;
  right: 0;
  top: 50%;
  display: none;
  z-index: 15;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.affix ul {
  min-width: 70px;
}
.affix ul li {
  cursor: pointer;
}
.affix ul li:nth-child(1) {
  margin-bottom: 5px;
  height: 70px;
  position: relative;
}
.affix ul li:nth-child(1) .wrapper {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.affix ul li:nth-child(1) .wrapper .box {
  width: 70px;
  height: 70px;
  overflow: hidden;
  background-color: #09847e;
}
.affix ul li:nth-child(1) .wrapper .box span {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  margin-top: 5px;
}
.affix ul li:nth-child(1) .wrapper .tel {
  width: 170px;
  background-color: #09847e;
  overflow: hidden;
  height: 70px;
}
.affix ul li:nth-child(1) .wrapper .tel span {
  color: #fff;
  font-size: 22px;
  border-left: 1px solid #fff;
  padding: 5px 10px;
  display: block;
}
.affix ul li:nth-child(1) .wrapper .qr-code-box {
  display: none;
  position: relative;
}
.affix ul li:nth-child(1) .wrapper .qr-code-box .qr-code {
  position: absolute;
  top: -16px;
  right: 70px;
  width: 111px;
  height: 111px;
}
.affix ul li:nth-child(1) .wrapper .qr-code-box .wechat-id {
  display: none;
}
.affix ul li:nth-child(1) .icon {
  width: 31px;
  height: 31px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/affix-1.png");
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(1) .icon {
    width: 30px;
    height: 30px;
    margin: 8px auto 0;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(1) .icon {
    width: 28px;
    height: 28px;
    padding: 0 0;
    margin: 5px auto;
  }
}
.affix ul li:nth-child(1):hover .wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.affix ul li:nth-child(1):hover .wrapper .qr-code-box {
  display: block;
}
@media screen and (min-width: 1200px) {
  .affix ul li:nth-child(1):hover .wrapper {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
  }
  .affix ul li:nth-child(1):hover .wrapper .qr-code-box {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(1) {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(1) {
    width: 25%;
    height: auto;
    padding: 0px 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  .affix ul li:nth-child(1) .wrapper {
    position: static;
  }
  .affix ul li:nth-child(1) .wrapper .box {
    width: 100%;
    height: auto;
  }
  .affix ul li:nth-child(1) .wrapper .box span {
    display: none;
  }
  .affix ul li:nth-child(1) .qr-code-box {
    display: block;
  }
  .affix ul li:nth-child(1) .qr-code-box .qr-code {
    display: none;
  }
  .affix ul li:nth-child(1) .tel {
    display: none;
  }
}
.affix ul li {
  cursor: pointer;
}
.affix ul li:nth-child(2) {
  margin-bottom: 5px;
  height: 70px;
  position: relative;
}
.affix ul li:nth-child(2) .wrapper {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: -170px;
}
.affix ul li:nth-child(2) .wrapper .box {
  width: 70px;
  height: 70px;
  overflow: hidden;
  background-color: #09847e;
}
.affix ul li:nth-child(2) .wrapper .box span {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  margin-top: 5px;
}
.affix ul li:nth-child(2) .wrapper .tel {
  width: 170px;
  background-color: #09847e;
  overflow: hidden;
  height: 70px;
}
.affix ul li:nth-child(2) .wrapper .tel span {
  color: #fff;
  font-size: 22px;
  border-left: 1px solid #fff;
  padding: 5px 10px;
  display: block;
}
.affix ul li:nth-child(2) .wrapper .qr-code-box {
  display: none;
  position: relative;
}
.affix ul li:nth-child(2) .wrapper .qr-code-box .qr-code {
  position: absolute;
  top: -16px;
  right: 70px;
  width: 111px;
  height: 111px;
}
.affix ul li:nth-child(2) .wrapper .qr-code-box .wechat-id {
  display: none;
}
.affix ul li:nth-child(2) .icon {
  width: 31px;
  height: 31px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/affix-2.png");
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(2) .icon {
    width: 30px;
    height: 30px;
    margin: 8px auto 0;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(2) .icon {
    width: 28px;
    height: 28px;
    padding: 0 0;
    margin: 5px auto;
  }
}
.affix ul li:nth-child(2):hover .wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.affix ul li:nth-child(2):hover .wrapper .qr-code-box {
  display: block;
}
@media screen and (min-width: 1200px) {
  .affix ul li:nth-child(2):hover .wrapper {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
  }
  .affix ul li:nth-child(2):hover .wrapper .qr-code-box {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(2) {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(2) {
    width: 25%;
    height: auto;
    padding: 0px 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  .affix ul li:nth-child(2) .wrapper {
    position: static;
  }
  .affix ul li:nth-child(2) .wrapper .box {
    width: 100%;
    height: auto;
  }
  .affix ul li:nth-child(2) .wrapper .box span {
    display: none;
  }
  .affix ul li:nth-child(2) .qr-code-box {
    display: block;
  }
  .affix ul li:nth-child(2) .qr-code-box .qr-code {
    display: none;
  }
  .affix ul li:nth-child(2) .tel {
    display: none;
  }
}
.affix ul li {
  cursor: pointer;
}
.affix ul li:nth-child(3) {
  margin-bottom: 5px;
  height: 70px;
  position: relative;
}
.affix ul li:nth-child(3) .wrapper {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.affix ul li:nth-child(3) .wrapper .box {
  width: 70px;
  height: 70px;
  overflow: hidden;
  background-color: #09847e;
}
.affix ul li:nth-child(3) .wrapper .box span {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  margin-top: 5px;
}
.affix ul li:nth-child(3) .wrapper .tel {
  width: 170px;
  background-color: #09847e;
  overflow: hidden;
  height: 70px;
}
.affix ul li:nth-child(3) .wrapper .tel span {
  color: #fff;
  font-size: 22px;
  border-left: 1px solid #fff;
  padding: 5px 10px;
  display: block;
}
.affix ul li:nth-child(3) .wrapper .qr-code-box {
  display: none;
  position: relative;
}
.affix ul li:nth-child(3) .wrapper .qr-code-box .qr-code {
  position: absolute;
  top: -16px;
  right: 70px;
  width: 111px;
  height: 111px;
}
.affix ul li:nth-child(3) .wrapper .qr-code-box .wechat-id {
  display: none;
}
.affix ul li:nth-child(3) .icon {
  width: 31px;
  height: 31px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/affix-3.png");
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(3) .icon {
    width: 30px;
    height: 30px;
    margin: 8px auto 0;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(3) .icon {
    width: 28px;
    height: 28px;
    padding: 0 0;
    margin: 5px auto;
  }
}
.affix ul li:nth-child(3):hover .wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.affix ul li:nth-child(3):hover .wrapper .qr-code-box {
  display: block;
}
@media screen and (min-width: 1200px) {
  .affix ul li:nth-child(3):hover .wrapper {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
  }
  .affix ul li:nth-child(3):hover .wrapper .qr-code-box {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(3) {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(3) {
    width: 25%;
    height: auto;
    padding: 0px 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  .affix ul li:nth-child(3) .wrapper {
    position: static;
  }
  .affix ul li:nth-child(3) .wrapper .box {
    width: 100%;
    height: auto;
  }
  .affix ul li:nth-child(3) .wrapper .box span {
    display: none;
  }
  .affix ul li:nth-child(3) .qr-code-box {
    display: block;
  }
  .affix ul li:nth-child(3) .qr-code-box .qr-code {
    display: none;
  }
  .affix ul li:nth-child(3) .tel {
    display: none;
  }
}
.affix ul li {
  cursor: pointer;
}
.affix ul li:nth-child(4) {
  margin-bottom: 5px;
  height: 70px;
  position: relative;
}
.affix ul li:nth-child(4) .wrapper {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.affix ul li:nth-child(4) .wrapper .box {
  width: 70px;
  height: 70px;
  overflow: hidden;
  background-color: #09847e;
}
.affix ul li:nth-child(4) .wrapper .box span {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  margin-top: 5px;
}
.affix ul li:nth-child(4) .wrapper .tel {
  width: 170px;
  background-color: #09847e;
  overflow: hidden;
  height: 70px;
}
.affix ul li:nth-child(4) .wrapper .tel span {
  color: #fff;
  font-size: 22px;
  border-left: 1px solid #fff;
  padding: 5px 10px;
  display: block;
}
.affix ul li:nth-child(4) .wrapper .qr-code-box {
  display: none;
  position: relative;
}
.affix ul li:nth-child(4) .wrapper .qr-code-box .qr-code {
  position: absolute;
  top: -16px;
  right: 70px;
  width: 111px;
  height: 111px;
}
.affix ul li:nth-child(4) .wrapper .qr-code-box .wechat-id {
  display: none;
}
.affix ul li:nth-child(4) .icon {
  width: 31px;
  height: 31px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/affix-4.png");
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(4) .icon {
    width: 30px;
    height: 30px;
    margin: 8px auto 0;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(4) .icon {
    width: 28px;
    height: 28px;
    padding: 0 0;
    margin: 5px auto;
  }
}
.affix ul li:nth-child(4):hover .wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.affix ul li:nth-child(4):hover .wrapper .qr-code-box {
  display: block;
}
@media screen and (min-width: 1200px) {
  .affix ul li:nth-child(4):hover .wrapper {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
  }
  .affix ul li:nth-child(4):hover .wrapper .qr-code-box {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .affix ul li:nth-child(4) {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 750px) {
  .affix ul li:nth-child(4) {
    width: 25%;
    height: auto;
    padding: 0px 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  .affix ul li:nth-child(4) .wrapper {
    position: static;
  }
  .affix ul li:nth-child(4) .wrapper .box {
    width: 100%;
    height: auto;
  }
  .affix ul li:nth-child(4) .wrapper .box span {
    display: none;
  }
  .affix ul li:nth-child(4) .qr-code-box {
    display: block;
  }
  .affix ul li:nth-child(4) .qr-code-box .qr-code {
    display: none;
  }
  .affix ul li:nth-child(4) .tel {
    display: none;
  }
  .affix {
    top: auto;
    -webkit-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    transform: translate(0, 0%);
    bottom: 0;
    width: 100%;
  }
  .affix ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.feedback {
  position: fixed;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%);
  -ms-transform: translate(-50%, -20%);
  transform: translate(-50%, -20%);
  z-index: 100;
  background-color: #f0f9eb;
  color: #67c23a;
  border: 1px solid #e1f3d8;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
@media screen and (max-width: 750px) {
  .feedback {
    top: 10%;
    -webkit-transform: translate(-50%, -10%);
    -ms-transform: translate(-50%, -10%);
    transform: translate(-50%, -10%);
  }
}

.process {
  padding: 100px 0;
  background-color: #f7f7f7;
}
.process .title {
  font-size: var(--fontSize-48);
  color: #333;
  text-align: center;
}
.process .process-list {
  margin-top: 80px;
}
.process .process-list .process-list--item {
  cursor: pointer;
  position: relative;
}
.process .process-list .process-list--item:nth-child(1) {
  width: 150px;
  color: #333333;
  text-align: center;
}
.process .process-list .process-list--item:nth-child(1) .cyc {
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px dashed #b9d9d7;
}
.process .process-list .process-list--item:nth-child(1) .cyc .icon {
  background-image: url("../images/process-icon1.png");
  width: 100px;
  height: 100px;
  background-color: #09847e;
  background-size: 40px;
  margin: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.process .process-list .process-list--item:nth-child(1) .sub-title {
  margin-top: 25px;
  font-size: var(--fontSize-24);
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(1) .sub-title {
    margin-top: 20px;
  }
}
.process .process-list .process-list--item:nth-child(1) .sub-desc {
  font-size: 16px;
  margin: 10px 0;
}
.process .process-list .process-list--item:nth-child(1) .sub-num {
  color: #c7e0df;
  font-size: var(--fontSize-30);
  font-weight: bold;
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(1) {
    width: 100px;
  }
  .process .process-list .process-list--item:nth-child(1) .cyc {
    height: 100px;
  }
  .process .process-list .process-list--item:nth-child(1) .cyc .icon {
    width: 75px;
    height: 75px;
    margin: 12px;
  }
}
@media screen and (max-width: 750px) {
  .process .process-list .process-list--item:nth-child(1) {
    width: 100%;
  }
  .process .process-list .process-list--item:nth-child(1) .cyc {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  .process .process-list .process-list--item:nth-child(1) .cyc .icon {
    width: 45px;
    height: 45px;
    background-size: 25px;
    margin: 6px;
  }
  .process .process-list .process-list--item:nth-child(1) .sub-title {
    margin-top: 10px;
  }
  .process .process-list .process-list--item:nth-child(1) .sub-desc {
    font-size: 14px;
  }
}
.process .process-list .process-list--item::after {
  content: "";
  background-image: url("../images/process-line.png");
  width: 194px;
  height: 29px;
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -200px;
  top: 55px;
}
@media screen and (max-width: 1600px) {
  .process .process-list .process-list--item::after {
    width: 155px;
    right: -165px;
  }
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item::after {
    top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .process .process-list .process-list--item::after {
    display: none;
  }
}
.process .process-list .process-list--item:last-child::after {
  display: none;
}
.process .process-list .process-list--item {
  cursor: pointer;
  position: relative;
}
.process .process-list .process-list--item:nth-child(2) {
  width: 150px;
  color: #333333;
  text-align: center;
}
.process .process-list .process-list--item:nth-child(2) .cyc {
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px dashed #b9d9d7;
}
.process .process-list .process-list--item:nth-child(2) .cyc .icon {
  background-image: url("../images/process-icon2.png");
  width: 100px;
  height: 100px;
  background-color: #09847e;
  background-size: 40px;
  margin: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.process .process-list .process-list--item:nth-child(2) .sub-title {
  margin-top: 25px;
  font-size: var(--fontSize-24);
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(2) .sub-title {
    margin-top: 20px;
  }
}
.process .process-list .process-list--item:nth-child(2) .sub-desc {
  font-size: 16px;
  margin: 10px 0;
}
.process .process-list .process-list--item:nth-child(2) .sub-num {
  color: #c7e0df;
  font-size: var(--fontSize-30);
  font-weight: bold;
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(2) {
    width: 100px;
  }
  .process .process-list .process-list--item:nth-child(2) .cyc {
    height: 100px;
  }
  .process .process-list .process-list--item:nth-child(2) .cyc .icon {
    width: 75px;
    height: 75px;
    margin: 12px;
  }
}
@media screen and (max-width: 750px) {
  .process .process-list .process-list--item:nth-child(2) {
    width: 100%;
  }
  .process .process-list .process-list--item:nth-child(2) .cyc {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  .process .process-list .process-list--item:nth-child(2) .cyc .icon {
    width: 45px;
    height: 45px;
    background-size: 25px;
    margin: 6px;
  }
  .process .process-list .process-list--item:nth-child(2) .sub-title {
    margin-top: 10px;
  }
  .process .process-list .process-list--item:nth-child(2) .sub-desc {
    font-size: 14px;
  }
}
.process .process-list .process-list--item::after {
  content: "";
  background-image: url("../images/process-line.png");
  width: 194px;
  height: 29px;
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -200px;
  top: 55px;
}
@media screen and (max-width: 1600px) {
  .process .process-list .process-list--item::after {
    width: 155px;
    right: -165px;
  }
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item::after {
    top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .process .process-list .process-list--item::after {
    display: none;
  }
}
.process .process-list .process-list--item:last-child::after {
  display: none;
}
.process .process-list .process-list--item {
  cursor: pointer;
  position: relative;
}
.process .process-list .process-list--item:nth-child(3) {
  width: 150px;
  color: #333333;
  text-align: center;
}
.process .process-list .process-list--item:nth-child(3) .cyc {
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px dashed #b9d9d7;
}
.process .process-list .process-list--item:nth-child(3) .cyc .icon {
  background-image: url("../images/process-icon3.png");
  width: 100px;
  height: 100px;
  background-color: #09847e;
  background-size: 40px;
  margin: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.process .process-list .process-list--item:nth-child(3) .sub-title {
  margin-top: 25px;
  font-size: var(--fontSize-24);
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(3) .sub-title {
    margin-top: 20px;
  }
}
.process .process-list .process-list--item:nth-child(3) .sub-desc {
  font-size: 16px;
  margin: 10px 0;
}
.process .process-list .process-list--item:nth-child(3) .sub-num {
  color: #c7e0df;
  font-size: var(--fontSize-30);
  font-weight: bold;
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(3) {
    width: 100px;
  }
  .process .process-list .process-list--item:nth-child(3) .cyc {
    height: 100px;
  }
  .process .process-list .process-list--item:nth-child(3) .cyc .icon {
    width: 75px;
    height: 75px;
    margin: 12px;
  }
}
@media screen and (max-width: 750px) {
  .process .process-list .process-list--item:nth-child(3) {
    width: 100%;
  }
  .process .process-list .process-list--item:nth-child(3) .cyc {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  .process .process-list .process-list--item:nth-child(3) .cyc .icon {
    width: 45px;
    height: 45px;
    background-size: 25px;
    margin: 6px;
  }
  .process .process-list .process-list--item:nth-child(3) .sub-title {
    margin-top: 10px;
  }
  .process .process-list .process-list--item:nth-child(3) .sub-desc {
    font-size: 14px;
  }
}
.process .process-list .process-list--item::after {
  content: "";
  background-image: url("../images/process-line.png");
  width: 194px;
  height: 29px;
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -200px;
  top: 55px;
}
@media screen and (max-width: 1600px) {
  .process .process-list .process-list--item::after {
    width: 155px;
    right: -165px;
  }
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item::after {
    top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .process .process-list .process-list--item::after {
    display: none;
  }
}
.process .process-list .process-list--item:last-child::after {
  display: none;
}
.process .process-list .process-list--item {
  cursor: pointer;
  position: relative;
}
.process .process-list .process-list--item:nth-child(4) {
  width: 150px;
  color: #333333;
  text-align: center;
}
.process .process-list .process-list--item:nth-child(4) .cyc {
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px dashed #b9d9d7;
}
.process .process-list .process-list--item:nth-child(4) .cyc .icon {
  background-image: url("../images/process-icon4.png");
  width: 100px;
  height: 100px;
  background-color: #09847e;
  background-size: 40px;
  margin: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.process .process-list .process-list--item:nth-child(4) .sub-title {
  margin-top: 25px;
  font-size: var(--fontSize-24);
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(4) .sub-title {
    margin-top: 20px;
  }
}
.process .process-list .process-list--item:nth-child(4) .sub-desc {
  font-size: 16px;
  margin: 10px 0;
}
.process .process-list .process-list--item:nth-child(4) .sub-num {
  color: #c7e0df;
  font-size: var(--fontSize-30);
  font-weight: bold;
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(4) {
    width: 100px;
  }
  .process .process-list .process-list--item:nth-child(4) .cyc {
    height: 100px;
  }
  .process .process-list .process-list--item:nth-child(4) .cyc .icon {
    width: 75px;
    height: 75px;
    margin: 12px;
  }
}
@media screen and (max-width: 750px) {
  .process .process-list .process-list--item:nth-child(4) {
    width: 100%;
  }
  .process .process-list .process-list--item:nth-child(4) .cyc {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  .process .process-list .process-list--item:nth-child(4) .cyc .icon {
    width: 45px;
    height: 45px;
    background-size: 25px;
    margin: 6px;
  }
  .process .process-list .process-list--item:nth-child(4) .sub-title {
    margin-top: 10px;
  }
  .process .process-list .process-list--item:nth-child(4) .sub-desc {
    font-size: 14px;
  }
}
.process .process-list .process-list--item::after {
  content: "";
  background-image: url("../images/process-line.png");
  width: 194px;
  height: 29px;
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -200px;
  top: 55px;
}
@media screen and (max-width: 1600px) {
  .process .process-list .process-list--item::after {
    width: 155px;
    right: -165px;
  }
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item::after {
    top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .process .process-list .process-list--item::after {
    display: none;
  }
}
.process .process-list .process-list--item:last-child::after {
  display: none;
}
.process .process-list .process-list--item {
  cursor: pointer;
  position: relative;
}
.process .process-list .process-list--item:nth-child(5) {
  width: 150px;
  color: #333333;
  text-align: center;
}
.process .process-list .process-list--item:nth-child(5) .cyc {
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px dashed #b9d9d7;
}
.process .process-list .process-list--item:nth-child(5) .cyc .icon {
  background-image: url("../images/process-icon5.png");
  width: 100px;
  height: 100px;
  background-color: #09847e;
  background-size: 40px;
  margin: 24px;
  border-radius: 50%;
  overflow: hidden;
}
.process .process-list .process-list--item:nth-child(5) .sub-title {
  margin-top: 25px;
  font-size: var(--fontSize-24);
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(5) .sub-title {
    margin-top: 20px;
  }
}
.process .process-list .process-list--item:nth-child(5) .sub-desc {
  font-size: 16px;
  margin: 10px 0;
}
.process .process-list .process-list--item:nth-child(5) .sub-num {
  color: #c7e0df;
  font-size: var(--fontSize-30);
  font-weight: bold;
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item:nth-child(5) {
    width: 100px;
  }
  .process .process-list .process-list--item:nth-child(5) .cyc {
    height: 100px;
  }
  .process .process-list .process-list--item:nth-child(5) .cyc .icon {
    width: 75px;
    height: 75px;
    margin: 12px;
  }
}
@media screen and (max-width: 750px) {
  .process .process-list .process-list--item:nth-child(5) {
    width: 100%;
  }
  .process .process-list .process-list--item:nth-child(5) .cyc {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  .process .process-list .process-list--item:nth-child(5) .cyc .icon {
    width: 45px;
    height: 45px;
    background-size: 25px;
    margin: 6px;
  }
  .process .process-list .process-list--item:nth-child(5) .sub-title {
    margin-top: 10px;
  }
  .process .process-list .process-list--item:nth-child(5) .sub-desc {
    font-size: 14px;
  }
}
.process .process-list .process-list--item::after {
  content: "";
  background-image: url("../images/process-line.png");
  width: 194px;
  height: 29px;
  display: block;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -200px;
  top: 55px;
}
@media screen and (max-width: 1600px) {
  .process .process-list .process-list--item::after {
    width: 155px;
    right: -165px;
  }
}
@media screen and (max-width: 1460px) {
  .process .process-list .process-list--item::after {
    top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .process .process-list .process-list--item::after {
    display: none;
  }
}
.process .process-list .process-list--item:last-child::after {
  display: none;
}
@media screen and (max-width: 1200px) {
  .process .process-list {
    margin-top: 30px;
  }
  .process {
    padding: 30px 0;
  }
}
.process .button-group {
  margin-top: 85px;
}
@media screen and (max-width: 1200px) {
  .process .button-group {
    margin-top: 30px;
  }
}
.process .button-group .btn:nth-child(1) {
  margin: 0 13px;
  border-radius: 36px;
  min-width: 300px;
  text-align: center;
  color: #fff;
  background-color: #0eb8ca;
  font-size: 18px;
  padding: 10px 30px;
}
.process .button-group .btn:nth-child(1):hover {
  background-color: #09847e;
}
.process .button-group .btn:nth-child(1) i {
  background-image: url("../images/process-icon6.png");
  background-size: 25px;
  width: 26px;
  display: block;
  height: 23px;
  margin-right: 10px;
}
.process .button-group .btn:nth-child(1) span {
  display: block;
}
@media screen and (max-width: 1200px) {
  .process .button-group .btn:nth-child(1) {
    min-width: auto;
    width: 46%;
    padding: 10px 2%;
    font-size: 16px;
    margin: 0 1%;
  }
  .process .button-group .btn:nth-child(1) i {
    background-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .process .button-group .btn:nth-child(1) {
    font-size: 14px;
    padding: 5px 2%;
  }
}
.process .button-group .btn:nth-child(2) {
  margin: 0 13px;
  border-radius: 36px;
  min-width: 300px;
  text-align: center;
  color: #fff;
  background-color: #0eb8ca;
  font-size: 18px;
  padding: 10px 30px;
}
.process .button-group .btn:nth-child(2):hover {
  background-color: #09847e;
}
.process .button-group .btn:nth-child(2) i {
  background-image: url("../images/process-icon7.png");
  background-size: 25px;
  width: 26px;
  display: block;
  height: 23px;
  margin-right: 10px;
}
.process .button-group .btn:nth-child(2) span {
  display: block;
}
@media screen and (max-width: 1200px) {
  .process .button-group .btn:nth-child(2) {
    min-width: auto;
    width: 46%;
    padding: 10px 2%;
    font-size: 16px;
    margin: 0 1%;
  }
  .process .button-group .btn:nth-child(2) i {
    background-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .process .button-group .btn:nth-child(2) {
    font-size: 14px;
    padding: 5px 2%;
  }
}

.process-group {
  margin-top: 80px;
}
.process-group .p-group--item {
  padding-bottom: 80px;
  position: relative;
}
.process-group .p-group--item .pic {
  width: 720px;
}
.process-group .p-group--item .pic img {
  width: 100%;
}
@media screen and (max-width: 1618px) {
  .process-group .p-group--item .pic {
    width: 630px;
  }
}
@media screen and (max-width: 1460px) {
  .process-group .p-group--item .pic {
    width: 550px;
  }
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item .pic {
    width: 100%;
  }
}
.process-group .p-group--item .info {
  width: 720px;
}
.process-group .p-group--item .info .type {
  color: #09847e;
  font-size: 24px;
}
@media screen and (max-width: 1460px) {
  .process-group .p-group--item .info .type {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item .info .type {
    margin-top: 10px;
  }
}
@media screen and (max-width: 750px) {
  .process-group .p-group--item .info .type {
    font-size: 16px;
  }
}
.process-group .p-group--item .info .desc {
  font-size: 36px;
  color: #333333;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1618px) {
  .process-group .p-group--item .info .desc {
    font-size: 28px;
  }
}
@media screen and (max-width: 1460px) {
  .process-group .p-group--item .info .desc {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item .info .desc {
    margin: 0;
    padding: 10px 0;
  }
}
@media screen and (max-width: 750px) {
  .process-group .p-group--item .info .desc {
    font-size: 18px;
  }
}
.process-group .p-group--item .info .content .sub-title {
  color: #333333;
  font-size: 16px;
  margin-bottom: 10px;
}
.process-group .p-group--item .info .content p {
  line-height: 35px;
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item .info .content {
    display: none;
  }
}
@media screen and (max-width: 1618px) {
  .process-group .p-group--item .info {
    width: 630px;
  }
}
@media screen and (max-width: 1460px) {
  .process-group .p-group--item .info {
    width: 550px;
  }
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item .info {
    width: 100%;
  }
}
.process-group .p-group--item .line {
  position: absolute;
  height: 100%;
  border-left: 2px dashed #a7e5ec;
  border-right: 2px dashed #a7e5ec;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item .line {
    left: 18px;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.process-group .p-group--item .num {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  left: 50%;
  top: 0px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}
.process-group .p-group--item .num span {
  border: 2px solid #09847e;
  display: block;
  color: #148984;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item .num {
    left: 0;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.process-group .p-group--item.active .line {
  border-left: 2px solid #09847e;
  border-right: 2px solid #09847e;
}
.process-group .p-group--item.active .num {
  border: 10px solid #b4dad8;
  background-color: #09847e;
  color: #fff;
}
.process-group .p-group--item.active .num span {
  border: 2px solid #09847e;
  display: block;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item.active .num {
    border: 5px solid #b4dad8;
  }
  .process-group .p-group--item.active .num span {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1460px) {
  .process-group .p-group--item {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .process-group .p-group--item {
    width: 100%;
    padding-left: 50px;
    box-sizing: border-box;
    padding-bottom: 30px;
  }
}

.process-ys {
  padding: 100px 0;
  background-color: #edf0f4;
}
.process-ys .title {
  color: #222222;
  font-size: var(--fontSize-42);
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .process-ys {
    padding: 30px 0;
  }
}
@media screen and (max-width: 750px) {
  .process-ys {
    display: none;
  }
}

.ys--list {
  margin-top: 85px;
}
@media screen and (max-width: 1200px) {
  .ys--list {
    margin-top: 30px;
  }
}
.ys--list--item {
  padding: 60px 20px;
  background-color: #fff;
  min-height: 500px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .ys--list--item {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 750px) {
  .ys--list--item {
    min-height: auto;
  }
}
.ys--list--item .sub-title {
  font-size: var(--fontSize-24);
  color: #333333;
}
.ys--list--item i {
  margin: 30px 0;
  position: relative;
  display: block;
  width: 100px;
  height: 2px;
  background-color: #e7e7e7;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .ys--list--item i {
    margin: 10px 0;
  }
}
.ys--list--item i::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #0eb8ca;
}
.ys--list--item .desc {
  color: #666666;
  font-size: 16px;
}
.ys--list--item:hover {
  background-image: url("../images/prcess-bg-ys.jpg");
  background-position: center;
  background-position: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 0px 6px 7px 0 rgba(0, 0, 0, 0.2);
}
.ys--list--item:hover .sub-title {
  color: #fff;
}
.ys--list--item:hover .desc {
  color: #fff;
}

/* 气体系统流程图 */
.gas-module {
  padding: 30px 0 30px 0;
}
@media screen and (max-width: 750px) {
  .gas-module {
    padding: 0 0 10px 0;
    display: none;
  }
}

.gas-system {
  margin-top: 30px;
}

.gas-title {
  background-image: url("../images/home-title-fl.png");
}

.dot-animate, .dot-animate-4, .dot-animate-3, .dot-animate-2 {
  position: absolute;
  bottom: 22.5%;
  left: 12.38%;
  z-index: 8;
  cursor: pointer;
}
.dot-animate .dot-item, .dot-animate-4 .dot-item, .dot-animate-3 .dot-item, .dot-animate-2 .dot-item {
  position: relative;
  width: 1.0416666667vw;
  height: 1.0416666667vw;
}
.dot-animate .dot-item .dot-item-in, .dot-animate-4 .dot-item .dot-item-in, .dot-animate-3 .dot-item .dot-item-in, .dot-animate-2 .dot-item .dot-item-in {
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  background-color: #09847e;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dot-animate .dot-item .dot-item-out, .dot-animate-4 .dot-item .dot-item-out, .dot-animate-3 .dot-item .dot-item-out, .dot-animate-2 .dot-item .dot-item-out {
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  background-color: #09847e;
  border-radius: 50%;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  left: 0;
  -webkit-animation: both dotScale 1s infinite;
  animation: both dotScale 1s infinite;
  top: 0;
}

.dot-animate-2 {
  bottom: auto;
  top: 51.5%;
  left: 15.38%;
}

.dot-animate-3 {
  bottom: auto;
  top: 51.5%;
  left: 18.38%;
}

.dot-animate-4 {
  bottom: auto;
  bottom: 23%;
  left: 15.6%;
}

.gas-pipe-pic-1 {
  position: relative;
}
.gas-pipe-pic-1 .pic img {
  width: 100%;
}
.gas-pipe-pic-1 .vmb {
  width: 14.7916666667vw;
  height: 12.34375vw;
  position: absolute;
  top: 36.5%;
  left: 22.6%;
  z-index: 6;
}
.gas-pipe-pic-1 .vmb-2 {
  width: 14.7916666667vw;
  height: 12.34375vw;
  position: absolute;
  top: 41.5%;
  left: 26.6%;
  z-index: 6;
}
.gas-pipe-pic-1 .bed {
  width: 24.4791666667vw;
  height: 11.6666666667vw;
  position: absolute;
  bottom: 10%;
  right: 32%;
  z-index: 3;
}
.gas-pipe-pic-1 .bed img {
  width: 100%;
}
.gas-pipe-pic-1 .bed-2 {
  width: 22.0833333333vw;
  height: 10.46875vw;
  position: absolute;
  bottom: 14.5%;
  right: 29%;
  z-index: 3;
}
.gas-pipe-pic-1 .bed-2 img {
  width: 100%;
}
.gas-pipe-pic-1 .pecvd {
  width: 19.4270833333vw;
  height: 12.8125vw;
  position: absolute;
  bottom: 36%;
  right: 33%;
  z-index: 3;
}
.gas-pipe-pic-1 .pecvd img {
  width: 100%;
}
.gas-pipe-pic-1 .pecvd-2 {
  width: 22.9166666667vw;
  height: 10.5208333333vw;
  position: absolute;
  bottom: 40%;
  right: 29%;
  z-index: 3;
}
.gas-pipe-pic-1 .pecvd-2 img {
  width: 100%;
}

.pipe-line-1 {
  position: absolute;
  width: 8.8020833333vw;
  height: 0.8333333333vw;
  left: 13.4%;
  bottom: 29%;
  background-image: url(../images/pipe-line-3.png);
  background-size: contain;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: 2;
  background-repeat: no-repeat;
  opacity: 0;
}
.pipe-line-1.active {
  -webkit-animation: pipe-line-1-an 1s infinite;
  animation: pipe-line-1-an 1s infinite;
}

@-webkit-keyframes pipe-line-1-an {
  0% {
    bottom: 31%;
    opacity: 1;
  }
  100% {
    bottom: 23%;
    opacity: 0;
  }
}

@keyframes pipe-line-1-an {
  0% {
    bottom: 31%;
    opacity: 1;
  }
  100% {
    bottom: 23%;
    opacity: 0;
  }
}
.pipe-line-2 {
  position: absolute;
  width: 8.8020833333vw;
  height: 0.8333333333vw;
  left: 0%;
  bottom: 5%;
  background-image: url(../images/pipe-line-3.png);
  background-size: contain;
  z-index: 2;
  opacity: 0;
  background-repeat: no-repeat;
}
.pipe-line-2.active {
  -webkit-animation: pipe-line-2-an 1s infinite;
  animation: pipe-line-2-an 1s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pipe-line-2-an {
  0% {
    left: 13%;
    opacity: 1;
  }
  100% {
    left: 76%;
    opacity: 1;
  }
}

@keyframes pipe-line-2-an {
  0% {
    left: 13%;
    opacity: 1;
  }
  100% {
    left: 76%;
    opacity: 1;
  }
}
.pipe-line-3 {
  position: absolute;
  width: 5.7291666667vw;
  height: 0.8333333333vw;
  right: 8.8%;
  opacity: 0;
  background-image: url(../images/pipe-line-3.png);
  background-size: contain;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 0 0%;
  -ms-transform-origin: 0 0%;
  transform-origin: 0 0%;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-3.active {
  -webkit-animation: pipe-line-3-an 1s infinite;
  animation: pipe-line-3-an 1s infinite;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@-webkit-keyframes pipe-line-3-an {
  0% {
    bottom: 1%;
    opacity: 1;
  }
  100% {
    bottom: 4%;
    opacity: 0;
  }
}

@keyframes pipe-line-3-an {
  0% {
    bottom: 1%;
    opacity: 1;
  }
  100% {
    bottom: 4%;
    opacity: 0;
  }
}
.change-2 {
  background-image: url(../images/change-2.png);
  background-repeat: no-repeat;
  width: 2.7604166667vw;
  height: 2.8125vw;
  background-size: contain;
  position: absolute;
  bottom: 2.8%;
  left: 28%;
  z-index: 3;
}

.change-4, .change-41 {
  background-image: url(../images/change-4.png);
  background-repeat: no-repeat;
  width: 2.7083333333vw;
  height: 2.34375vw;
  background-size: contain;
  position: absolute;
  z-index: 3;
  left: 35.5%;
  top: 50.8%;
}

.change-41 {
  left: 38.7%;
}

.pipe-line-4 {
  position: absolute;
  width: 0;
  height: 0.8333333333vw;
  left: 16.8%;
  bottom: 46.5%;
  opacity: 0;
  background-image: url(../images/pipe-line-1.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-4.active {
  -webkit-animation: pipe-line-4-an 1s infinite;
  animation: pipe-line-4-an 1s infinite;
  opacity: 1;
}

@-webkit-keyframes pipe-line-4-an {
  0% {
    width: 0%;
  }
  100% {
    width: 30.7291666667vw;
  }
}

@keyframes pipe-line-4-an {
  0% {
    width: 0%;
  }
  100% {
    width: 30.7291666667vw;
  }
}
.pipe-line-5 {
  position: absolute;
  width: 0.8333333333vw;
  height: 11.7708333333vw;
  left: 29%;
  bottom: 35%;
  opacity: 0;
  background-image: url(../images/pipe-line-2.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-5.active {
  -webkit-animation: pipe-line-5-an 1s infinite;
  animation: pipe-line-5-an 1s infinite;
  opacity: 1;
}

@-webkit-keyframes pipe-line-5-an {
  0% {
    bottom: 35%;
  }
  100% {
    bottom: 9%;
  }
}

@keyframes pipe-line-5-an {
  0% {
    bottom: 35%;
  }
  100% {
    bottom: 9%;
  }
}
.pipe-line-6 {
  position: absolute;
  width: 0.8333333333vw;
  height: 0;
  left: 36.5%;
  bottom: 20%;
  background-image: url(../images/pipe-line-4.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-6.active {
  -webkit-animation: pipe-line-6-an 1s infinite;
  animation: pipe-line-6-an 1s infinite;
  opacity: 1;
}

@-webkit-keyframes pipe-line-6-an {
  0% {
    height: 0%;
  }
  100% {
    height: 11.40625vw;
  }
}

@keyframes pipe-line-6-an {
  0% {
    height: 0%;
  }
  100% {
    height: 11.40625vw;
  }
}
.pipe-line-7 {
  position: absolute;
  width: 5vw;
  height: 0.8333333333vw;
  left: 48%;
  bottom: 46.5%;
  opacity: 0;
  background-image: url(../images/pipe-line-6.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-7.active {
  -webkit-animation: pipe-line-7-an 1s infinite;
  animation: pipe-line-7-an 1s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 1;
}

@-webkit-keyframes pipe-line-7-an {
  0% {
    left: 48%;
  }
  100% {
    left: 63%;
  }
}

@keyframes pipe-line-7-an {
  0% {
    left: 48%;
  }
  100% {
    left: 63%;
  }
}
.pipe-line-8 {
  position: absolute;
  width: 5.2604166667vw;
  height: 0.8333333333vw;
  left: 38%;
  bottom: 16.7%;
  opacity: 0;
  background-image: url(../images/pipe-line-5.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-8.active {
  -webkit-animation: pipe-line-8-an 1s infinite;
  animation: pipe-line-8-an 1s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes pipe-line-8-an {
  0% {
    left: 38%;
    opacity: 1;
  }
  50% {
    background-image: url(../images/pipe-line-6.png);
  }
  100% {
    left: 63%;
    opacity: 1;
    background-image: url(../images/pipe-line-6.png);
  }
}

@keyframes pipe-line-8-an {
  0% {
    left: 38%;
    opacity: 1;
  }
  50% {
    background-image: url(../images/pipe-line-6.png);
  }
  100% {
    left: 63%;
    opacity: 1;
    background-image: url(../images/pipe-line-6.png);
  }
}
@-webkit-keyframes dotScale {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes dotScale {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.pipe-line-11 {
  position: absolute;
  width: 8.8020833333vw;
  height: 0.8333333333vw;
  left: 16.6%;
  bottom: 34%;
  background-image: url(../images/pipe-line-3.png);
  background-size: contain;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: 2;
  background-repeat: no-repeat;
  opacity: 0;
}
.pipe-line-11.active {
  -webkit-animation: pipe-line-11-an 1s infinite;
  animation: pipe-line-11-an 1s infinite;
}

@-webkit-keyframes pipe-line-11-an {
  0% {
    bottom: 34%;
    opacity: 1;
  }
  100% {
    bottom: 24%;
    opacity: 0;
  }
}

@keyframes pipe-line-11-an {
  0% {
    bottom: 34%;
    opacity: 1;
  }
  100% {
    bottom: 24%;
    opacity: 0;
  }
}
.pipe-line-22 {
  position: absolute;
  width: 8.8020833333vw;
  height: 0.8333333333vw;
  bottom: 5%;
  background-image: url(../images/pipe-line-3.png);
  background-size: contain;
  z-index: 2;
  opacity: 0;
  background-repeat: no-repeat;
}
.pipe-line-22.active {
  -webkit-animation: pipe-line-22-an 1s infinite;
  animation: pipe-line-22-an 1s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pipe-line-22-an {
  0% {
    left: 14%;
    opacity: 1;
  }
  100% {
    left: 79%;
    opacity: 1;
  }
}

@keyframes pipe-line-22-an {
  0% {
    left: 14%;
    opacity: 1;
  }
  100% {
    left: 79%;
    opacity: 1;
  }
}
.pipe-line-33 {
  position: absolute;
  width: 5.7291666667vw;
  height: 0.8333333333vw;
  right: 5.5%;
  bottom: 2%;
  opacity: 0;
  background-image: url(../images/pipe-line-3.png);
  background-size: contain;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 0 0%;
  -ms-transform-origin: 0 0%;
  transform-origin: 0 0%;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-33.active {
  -webkit-animation: pipe-line-33-an 1s infinite;
  animation: pipe-line-33-an 1s infinite;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@-webkit-keyframes pipe-line-33-an {
  0% {
    bottom: 2%;
    opacity: 1;
  }
  100% {
    bottom: 5%;
    opacity: 0;
  }
}

@keyframes pipe-line-33-an {
  0% {
    bottom: 2%;
    opacity: 1;
  }
  100% {
    bottom: 5%;
    opacity: 0;
  }
}
.pipe-line-44 {
  position: absolute;
  width: 0;
  height: 0.8333333333vw;
  left: 20.8%;
  bottom: 46.5%;
  opacity: 0;
  background-image: url(../images/pipe-line-1.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-44.active {
  -webkit-animation: pipe-line-44-an 1s infinite;
  animation: pipe-line-44-an 1s infinite;
  opacity: 1;
}

@-webkit-keyframes pipe-line-44-an {
  0% {
    width: 0%;
  }
  100% {
    width: 30.5208333333vw;
  }
}

@keyframes pipe-line-44-an {
  0% {
    width: 0%;
  }
  100% {
    width: 30.5208333333vw;
  }
}
.pipe-line-55 {
  position: absolute;
  width: 0.8333333333vw;
  height: 11.7708333333vw;
  left: 31.9%;
  bottom: 39%;
  background-image: url(../images/pipe-line-2.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-55.active {
  -webkit-animation: pipe-line-55-an 1s infinite;
  animation: pipe-line-55-an 1s infinite;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  opacity: 1;
}

@-webkit-keyframes pipe-line-55-an {
  0% {
    bottom: 39%;
  }
  100% {
    bottom: 13%;
  }
}

@keyframes pipe-line-55-an {
  0% {
    bottom: 39%;
  }
  100% {
    bottom: 13%;
  }
}
.pipe-line-222 {
  position: absolute;
  width: 8.8020833333vw;
  height: 0.8333333333vw;
  bottom: 9.8%;
  left: 31%;
  background-image: url(../images/pipe-line-3.png);
  background-size: contain;
  z-index: 2;
  opacity: 0;
  background-repeat: no-repeat;
}
.pipe-line-222.active {
  -webkit-animation: pipe-line-222-an 1s infinite;
  animation: pipe-line-222-an 1s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes pipe-line-222-an {
  0% {
    left: 31%;
    opacity: 1;
  }
  100% {
    left: 76%;
    opacity: 1;
  }
}

@keyframes pipe-line-222-an {
  0% {
    left: 31%;
    opacity: 1;
  }
  100% {
    left: 76%;
    opacity: 1;
  }
}
.pipe-line-66 {
  position: absolute;
  width: 0.8333333333vw;
  height: 0;
  left: 39.8%;
  bottom: 26%;
  opacity: 0;
  background-image: url(../images/pipe-line-4.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-66.active {
  -webkit-animation: pipe-line-66-an 1s infinite;
  animation: pipe-line-66-an 1s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 1;
}

@-webkit-keyframes pipe-line-66-an {
  0% {
    height: 0;
  }
  100% {
    height: 8.3854166667vw;
  }
}

@keyframes pipe-line-66-an {
  0% {
    height: 0;
  }
  100% {
    height: 8.3854166667vw;
  }
}
.pipe-line-77 {
  position: absolute;
  width: 5vw;
  height: 0.8333333333vw;
  left: 48%;
  bottom: 46.5%;
  background-image: url(../images/pipe-line-6.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-77.active {
  -webkit-animation: pipe-line-77-an 1s infinite;
  animation: pipe-line-77-an 1s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 1;
}

@-webkit-keyframes pipe-line-77-an {
  0% {
    left: 48%;
  }
  100% {
    left: 67%;
  }
}

@keyframes pipe-line-77-an {
  0% {
    left: 48%;
  }
  100% {
    left: 67%;
  }
}
.pipe-line-88 {
  position: absolute;
  width: 5.2604166667vw;
  height: 0.8333333333vw;
  left: 40%;
  bottom: 22.7%;
  opacity: 0;
  background-image: url(../images/pipe-line-5.png);
  background-size: cover;
  z-index: 2;
  background-repeat: no-repeat;
}
.pipe-line-88.active {
  -webkit-animation: pipe-line-88-an 1s infinite;
  animation: pipe-line-88-an 1s infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes pipe-line-88-an {
  0% {
    left: 38%;
    opacity: 1;
  }
  60% {
    background-image: url(../images/pipe-line-6.png);
  }
  100% {
    left: 66%;
    opacity: 1;
    background-image: url(../images/pipe-line-6.png);
  }
}

@keyframes pipe-line-88-an {
  0% {
    left: 38%;
    opacity: 1;
  }
  60% {
    background-image: url(../images/pipe-line-6.png);
  }
  100% {
    left: 66%;
    opacity: 1;
    background-image: url(../images/pipe-line-6.png);
  }
}
.gas-swiper {
  overflow: hidden;
  position: relative;
}

.swiper-pagination-gas {
  position: absolute;
  bottom: 0;
  z-index: 9;
  left: 0;
  text-align: center;
}
.swiper-pagination-gas .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  background: #fff;
  opacity: 1;
  border-radius: 0px;
}
.swiper-pagination-gas .swiper-pagination-bullet-active {
  background: #09847e;
}

/*# sourceMappingURL=style.css.map */