/* header */
.fixed-nav {
  position: fixed;
  top: 0;
  z-index: 999;
  /* max-width: 19.2rem; */
  width: 100%;
  background: #fff;
}

.fixed-brick {
  height: 1.7rem;
}

.brick {
  height: 1.2rem;
}

.top-nav-container {
  background: #edf1f2;
  transition: all 0.8s;
}

.top-nav-content {
  height: .5rem;
  align-items: center;
  justify-content: space-between;
}

.top-media a {
  margin-left: 20px;
}

.top-media a:hover svg {
  fill: #009979;
}

.pc-header .top-nav-right ul li {
  position: relative;
  margin-right: .4rem;
}

.pc-header .top-nav-right ul li a {
  align-items: center;
  color: #009979;
  text-decoration: none;
}

.pc-header .top-nav-right ul li a img {
  margin-right: 10px;
}


.pc-header .top-nav-right ul li a:hover {
  color: #009979;
}

.pc-header .top-nav-right ul li:first-child {
  padding: 0;
}

.pc-header .top-nav-right ul li:first-child::before {
  content: none;
}

.nav-lang {
  position: relative;
  padding-left: 40px;
  padding-right: 20px;
}

.nav-lang a {
  position: relative;
  align-items: center;
}

.nav-lang a:hover {
  color: #009979;
}

.nav-lang img {
  margin-right: 10px;
}

.nav-lang::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 20px;
  content: '';
  background: #eee;
}

.nav-lang a::after {
  position: absolute;
  top: 5px;
  right: -20px;
  width: 12px;
  height: 12px;
  content: '';
  transition: all 0.3s;
  background: url(../image/img_nav_down.svg) no-repeat center;
}

.pc-header .logo-text {
  position: relative;
  font-size: .18rem;
  /* padding-left: .3rem; */
  /* margin-left: .3rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* font-size: 0.937503vw; */
  padding-left: 1.562505vw;
  margin-left: 1.562505vw;
  color: #1b677a;
  font-family: 'Hind-Medium';
}

.pc-header .logo-text em {
  color: #009979;
}


.pc-header .logo-text::before {
  position: absolute;
  top: .03rem;
  left: 0;
  width: .02rem;
  height: .8rem;
  content: '';
  background: #009979;
}

.pc-header .nav-search {
  cursor: pointer;
  width: .4rem;
  height: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #009979;
}

/* 下导航 */
.bottom-nav-container {
  background: #fff;
  box-shadow: .03rem .03rem .05rem 0 rgba(11, 46, 39, 0.05);
}

.bottom-nav-content {
  height: 1.2rem;
  justify-content: space-between;
  align-items: center;
  transition: all 1s;
}

.nav-search-container {
  align-items: center;
}

/* 一级导航 */
.current-menu-item>a {
  color: #009979;
}

.menu-wrapper .menu-item {
  position: relative;
  color: #2d2d2d;
  font-size: .18rem;
  /* font-size: 0.937503vw; */
  /* cursor: pointer; */
  font-family: 'Hind-Medium';
}

.pc-header .menu-wrapper>.menu-item {
  padding-right: 3.12501vw;
}

.menu-wrapper .menu-item:hover>a {
  color: #009979;
}

.menu-item-has-children {
  position: relative;
}

.pc-header .menu-wrapper .menu-item-has-children>a {
  position: relative;
}

.pc-header .menu-wrapper>.menu-item-has-children>a {
  cursor: initial;
}

.pc-header .menu-wrapper>.menu-item-has-children>a::after {
  position: absolute;
  /* top: .08rem; */
  top: 0.5vw;
  right: -0.2rem;
  width: .1rem;
  height: .1rem;
  transform: rotate(0);
  content: '';
  transition: all 0.3s;
  background: url(../image/img_nav_down.svg) no-repeat center;
}

.pc-header .menu-wrapper .menu-item-has-children:hover>a::after,
.pc-header .menu-wrapper .menu-item-has-children>a.active::after {
  transform: rotate(-90deg);
  transition: all 0.3s;
}

.pc-header .menu-wrapper .menu-item-has-children>a img {
  margin-right: 10px;
}



/* 二级导航 */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  margin-top: .45rem !important;
  height: auto !important;
  padding: 20px 0;
  line-height: 1;
  background-color: #fff;
  display: none;
  list-style: none;
  overflow: inherit !important;
  box-shadow: 0 0 .1rem rgba(33, 33, 33, 0.2);
}

.sub-menu .menu-item {
  padding: 10px 30px;
  /* width: 2.5rem; */
}

.pc-header .sub-menu .menu-item-has-children {
  padding-right: 40px;
}

.pc-header .sub-menu .menu-item-has-children::after {
  position: absolute;
  right: 0;
  top: .1rem;
  z-index: 10;
  width: .3rem;
  height: .2rem;
  content: '';
  transform: rotate(0deg);
  transition: all 0.4s;
  background: url(../image/img_nav_down.svg) no-repeat center #fff;
}

.pc-header .sub-menu .menu-item-has-children.active::after {
  transform: rotate(-90deg);
  transition: all 0.4s;

}

.pc-header .sub-menu .menu-item-has-children a {
  /* max-width: 2rem; */
  /* white-space: pre-wrap; */
  /* width: 100%; */
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.3;
}

/* 三级导航 */
.three-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  padding: 12px 0;
  transition: all 1s;
  background-color: #fff;
  box-shadow: .1rem 0 .1rem rgba(33, 33, 33, 0.2)
}

.three-menu .menu-item {
  padding: 10px 20px;
}

.pc-header .three-menu {
  width: 100%;
  overflow: hidden;
}

.pc-header .three-menu .menu-item {
  color: #999;
  font-family: 'Hind-Regular';
}


.nav-email a {
  color: #009979;
  font-size: .18rem;
  font-family: 'Hind-SemiBold';
}

.nav-email a:hover {
  text-decoration: none;
}

.nav-email img {
  margin-right: 10px;
}

.fixed-search {
  display: none;
  margin-left: 30px;
}

.fixed-nav-icon {
  display: none;
}

.fixed-nav-icon .fixed-tell {
  margin-right: 30px;
}

/* pc header end */


/* mobile nav start */
.mobile-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 .1rem rgba(0, 10, 32, 0.1);
}

.mobile-header-content {
  width: 100%;
}

.mobile-header .content-container {
  height: .78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.04167vw 30px;
}

/* 导航列表 start */
.mobile-menu-container {
  height: 100%;
}


.mobile-nav-bottom {
  background: #fff;
  max-width: 5rem;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);

}

.nav-mobile {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-mobile.active {
  opacity: 1 !important;
  pointer-events: auto;
}

.nav-mobile.active .nav,
.nav-mobile.active .mobile-nav-bottom {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.nav-mobile .nav {
  width: 80%;
  max-width: 5rem;
  height: 100%;
  display: block;
  overflow: auto;
  margin: auto 0;
  padding: 0 15px;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.nav-mobile .menu-wrapper {
  min-height: 80%;
  width: 100%;
  display: inline-block;
  height: 80%;
}

.nav-mobile .menu-item:first-child {
  margin-top: 14px;
  border-top: 0;
}

.nav-mobile .menu-wrapper .menu-item {
  font-size: .24rem;
}

.nav-mobile .menu-wrapper .menu-item a {
  width: auto;
  display: initial;
}

.nav-mobile .menu-wrapper .menu-item a>img {
  margin-right: 10px;
}

/* 手机端一级导航 start */
.nav-mobile .menu-wrapper .menu-item {
  position: relative;
  height: auto;
  padding: 15px 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: .01rem solid #cccccc;
}

.nav-mobile .menu-wrapper .menu-item:first-child {
  border-top: none;
}

/* 手机端一级导航 end */


/* 手机端二级导航 start */
.nav-mobile .sub-menu {
  position: relative;
  box-shadow: none;
  width: 100%;
  min-width: auto;
  margin-top: 0 !important;
  padding: 10px 0 0;
}

.nav-mobile .sub-menu .menu-item {
  padding-left: 10px;
  border-top: none;
  /* padding-top: 0; */
  width: auto;
}

.nav-mobile .sub-menu .menu-item:first-child {
  padding-top: 0;
}


/* 手机端二级导航 end */

/* 手机端三级导航 end */
.nav-mobile .three-menu {
  position: relative;
  left: 0;
  transition: none;
  padding-top: 15px;
  min-width: auto;
  box-shadow: none;
}

.nav-mobile .three-menu .menu-item {
  padding: 15px 0 0 10px;
}

.nav-mobile .three-menu .menu-item a {
  color: #666;
}

.nav-mobile .three-menu .menu-item:first-child {
  margin-top: 0;
  padding-top: 5px;
}

/* 手机端三级导航 end */

/* 箭头 */
.nav-mobile .nav .header-nav-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: .2rem;
  height: .2rem;
}


.nav-mobile .nav .header-nav-arrow::after {
  position: absolute;
  content: '';
  top: .3rem;
  right: .02rem;
  height: 7px;
  width: 7px;
  margin-top: 5px;
  border-right: .01rem solid;
  border-bottom: .01rem solid;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all .3s;
}

.nav-mobile .nav::-webkit-scrollbar {
  display: none;
}

.nav-mobile .nav .header-nav-arrow.active::after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all .3s;
}

.nav-mobile .nav .sub-menu .header-nav-arrow::after {
  top: 17px;
}

.nav-mobile .nav .sub-menu li:first-child .header-nav-arrow::after {
  top: 3px;
}

.nav-mobile .menu-wrapper .menu-item a {
  line-height: 1.5;
}

/* 箭头 end*/


/* 导航图标 start */
.mobile-nav-btn {
  width: 30px;
  height: 30px;
  margin: auto 0;
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 50%;
  background: #009979;
}

.mobile-nav-btn span {
  display: inline-block;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), opacity 500ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 500ms cubic-bezier(0.2, 0, 0, 1), opacity 500ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 500ms cubic-bezier(0.2, 0, 0, 1);
}

.mobile-nav-btn.active span:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}

.mobile-nav-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-btn.active span:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}

/* 导航图标 end */

.mobile-header .nav-others {
  align-items: center;
}

.mobile-header .nav-others .language a {
  align-items: center;
}

.mobile-header .nav-others .language a span {
  margin: 0 10px;
  font-size: 14px;
}

.mobile-search {
  margin: 0 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #009979;
}

.mobile-media a {
  margin-right: 20px;
}

.mobile-contact-div a {
  align-items: center;
  color: #009979;
  margin-bottom: 20px;
  text-decoration: none;
}

.mobile-contact-div a img {
  margin-right: 10px;
}


/* 下拉导航 */
.fixed-nav.active .pc-header .top-nav-container {
  display: none;
  transition: all 0.8s;
}

.fixed-nav.active .pc-header .bottom-nav-content {
  height: .8rem;
  transition: all 0.8s;
}

.fixed-nav.active .pc-header .logo-text {
  display: none;
}

.fixed-nav.active .open-search {
  display: none;
}

.fixed-nav.active .fixed-nav-icon .fixed-search {
  display: flex !important;
}

.fixed-nav.active .pc-header .logo img {
  width: 70%;
}

.fixed-nav.active .fixed-nav-icon {
  display: flex;
  align-items: center;
}

.fixed-nav.active .fixed-nav-icon a {
  width: .4rem;
  height: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #009979;
}

.fixed-nav.active .pc-header .nav-search {
  margin-right: 30px;
}

.fixed-nav.active .fixed-nav-icon .fixed-tell {
  margin-right: 30px;
}

.fixed-nav.active .pc-header .sub-menu {
  margin-top: 25px !important;
}


@media (max-width: 1400px) {

  .menu-wrapper .menu-item {
    font-size: 13px;
  }
}


@media (max-width: 1279px) {
  .mobile-header .logo img {
    width: 70%;
  }

  .mobile-header .content-container {
    height: 1.2rem;
  }

  .mobile-search img {
    margin: auto;
    width: 80%;
  }

  .fixed-nav .pc-header .logo img {
    max-width: 1.2rem;
  }

}

@media (max-width: 767px) {

  .mobile-header .content-container,
  .brick {
    height: 1.2rem;
  }

  .mobile-header .content-container {
    padding: 0 15px;
  }

  .mobile-header .logo img {
    width: 50%;
  }

  .mobile-search,
  .mobile-nav-btn {
    width: 0.5rem;
    height: 0.5rem;
  }

  .mobile-nav-btn.active span:nth-child(3) {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-mobile .menu-wrapper .menu-item {
    font-size: .32rem;
  }

}

/* header end */



/* footer */
.footer {
  padding-top: 60px;
  color: #fff;
  background: url(../image/img_footer_bg.webp) no-repeat bottom #092f5e;
  background-size: contain;
}

.footer .footer-content {
  justify-content: space-between;
}

.footer a:hover {
  color: #fff;
  text-decoration: none;
}

.footer .footer-logo-contact {
  max-width: 3rem;
  width: 100%;
  margin-right: 40px;
}

.footer .footer-logo {
  margin-bottom: 40px;
}

.footer .footer-media {
  margin: 30px 0;
}

.footer .footer-media a {
  margin-right: 20px;
}

.footer .footer-media a:hover {
  transform: scale(1.1);
}

.footer .footer-contact-way a {
  line-height: 1.7;
  display: flex;
}

.footer .footer-contact-way a:hover {
  color: #009979;
}


.footer .footer-form {
  max-width: 5.2rem;
  width: 100%;
  margin-left: auto;
}

.footer .footer-form .input-double .input-div {
  width: 100%;
}

.footer .footer-form .input-double .input-div:first-child {
  margin-right: .2rem;
}

.footer .footer-form input {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 6px;
  border: .01rem solid #ffffff10;
  background: #ffffff10;
}

.footer .footer-form textarea {
  height: 0.8rem;
  padding: 20px 20px 0;
  border: .01rem solid #ffffff10;
  margin-bottom: 20px;
  background: #ffffff10;
}

.footer .footer-form input::placeholder,
.footer .footer-form textarea::placeholder {
  font-size: .16rem;
  color: #ffffff50;
}

.footer .footer-form input:focus,
.footer .footer-form textarea:focus {
  border: .01rem solid #009979;
}

.footer .footer-form input[type="submit"] {
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0;
  background: #009979;
}

.footer .footer-link {
  justify-content: space-between;
}

.footer .footer-link .footer-item {
  margin-bottom: 40px;
  padding-left: 1.2rem;
  width: 50%;
}

.footer .footer-link .bottom .footer-item {
  margin-bottom: 0;
}

.footer .footer-link .bottom .footer-others-link {
  padding-left: 1.2rem;
  width: 50%;
}

.footer .footer-link .bottom .footer-others-link a {
  white-space: nowrap;
}

.footer .footer-link .footer-title {
  position: relative;
  display: block;
  width: 100%;
  font-size: .2rem;
  margin-bottom: 10px;
}

.footer .footer-link .footer-item ul {
  width: 100%;
}

.footer .footer-link .footer-item ul li {
  margin-bottom: 8px;
}

.footer .footer-link .footer-item ul li a {
  color: #ffffff70;
  white-space: nowrap;
}

.footer .footer-link .footer-item ul li a:hover {
  color: #fff;
}

.footer .footer-link .footer-others-link ul li {
  margin-bottom: 14px;
  font-size: .2rem;
}


.footer .footer-link .footer-item ul li:last-child,
.footer .footer-link .footer-others-link ul li:last-child {
  margin-bottom: 0;
}






/* copyright */
.copyright {
  margin-top: .5rem;
  padding: 30px 0;
  border-top: .01rem solid #ffffff10;
}

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

.copyright a {
  display: flex;
  margin-left: 40px;
  color: #ffffff70;
}

@media (max-width: 1279px) {


  .footer .footer-logo-contact {
    margin-right: 30px;
  }

  .footer .footer-form {
    margin: 40px 0 40px 0;
  }

  .footer .footer-link .footer-item {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
  }

  .footer .footer-link .footer-item:nth-child(2n) {
    margin-right: 0;
  }

  .footer .footer-link .bottom .footer-others-link {
    padding-left: 30px;
  }

  .copyright {
    margin-top: 50px;
  }

  .copyright-content {
    justify-content: flex-start;
  }

  .footer .footer-link .footer-title {
    font-size: 16px;
  }

  .footer .footer-link .footer-item ul {
    font-size: 14px;
  }

}

@media (max-width: 1023px) {
  .footer .footer-logo-contact {
    max-width: 100%;
    margin-right: 0px;
  }

  .footer .footer-content,
  .footer .footer-link .top,
  .footer .footer-link .bottom {
    flex-direction: column;
  }

  .footer .footer-link .footer-item {
    padding-left: 0;
  }

  .footer .footer-link .bottom .footer-others-link {
    margin-top: 10px;
    padding-left: 0;
  }

  .copyright-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright a:first-child {
    margin-left: 0;
  }

  .footer {
    padding-top: 60px;
  }

  .footer .footer-link .footer-others-link ul li {
    font-size: 16px;
  }

  .footer .footer-link .footer-item {
    margin-bottom: 10px;
  }


  .footer .footer-link .footer-item ul {
    display: none;
  }


  .footer .footer-link .footer-title::before {
    position: absolute;
    top: 11px;
    right: 0;
    width: 18px;
    height: 2px;
    content: '';
    background: #fff;
  }


  .footer .footer-link .footer-title::after {
    position: absolute;
    top: 3px;
    right: 8px;
    width: 2px;
    height: 18px;
    content: '';
    background: #fff;
  }

  .footer .footer-link .footer-title.active::after {
    display: none;
  }
}

@media (max-width: 767px) {

  .copyright {
    margin-top: 40px;
  }

  .copyright-content p {
    margin-bottom: 10px;
  }


  .footer {
    padding-top: 40px;
    background: #092f5e;
  }

  .footer .footer-form .input-double {
    flex-direction: column;
  }

  .footer .footer-link .top,
  .footer .footer-link .bottom {
    flex-direction: column;
  }

  .footer .footer-link .bottom .footer-item {
    margin-right: 0;
  }

  .footer .footer-link .footer-item {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer .footer-others-link {
    margin-top: 10px;
  }


  .footer .footer-form .input-double .input-div:first-child {
    margin-right: 0;
  }
}



/* footer end */
























@font-face {
  font-family: 'Hind-Bold';
  src: url("../font/Hind-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Hind-Light';
  src: url("../font/Hind-Light.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Hind-Medium';
  src: url("../font/Hind-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Hind-Regular';
  src: url("../font/Hind-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Hind-SemiBold';
  src: url("../font/Hind-SemiBold.ttf");
  font-display: swap;
}


html {
  font-size: 100px;
}

body {
  color: #404040;
  font-size: .16rem;
  font-family: 'Hind-Regular';
}

.flex {
  display: flex;
}

.com-container {
  max-width: 16.4rem;
  width: 100%;
  margin: auto;
  padding: 0 30px;
}

.title {
  color: #009979;
  font-size: .4rem;
  font-family: 'Hind-Bold';
  line-height: 1.3;
}

.subtitle {
  color: #009979;
  font-size: .28rem;
}

.title-div {
  text-align: center;
  margin: auto;
}




.text-overflow {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

/* 主按钮 */
.main-btn p,
.main-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  color: #fff;
  transition: all 0.4s;
  cursor: pointer;
  background: #1b677a;
}

.main-btn p img,
.main-btn a img {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.main-btn p:hover,
.main-btn a:hover {
  color: #fff;
  background: #009979;
  transition: all 0.4s;
}


/* 特殊按钮 */
.special-btn {
  width: fit-content;
}

.special-btn p,
.special-btn a {
  position: relative;
  width: 3.2rem;
  height: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009979;
  cursor: pointer;
  border-radius: .02rem;
  font-family: 'Hind-Medium';
  background: #fff;
  border: .02rem solid #edf1f2;
  transition: all 0.4s;
}

.special-btn p::before,
.special-btn a::before {
  position: absolute;
  top: .34rem;
  left: -0.6rem;
  width: 1rem;
  height: .02rem;
  content: '';
  background: #009979;
  transition: all 0.4s;
}

.special-btn p img,
.special-btn a img {
  margin-right: 10px;
}

.special-btn p:hover,
.special-btn a:hover {
  color: #fff;
  transition: all 0.4s;
  border-color: #009979;
  background: #009979;
}

.special-btn p:hover::before,
.special-btn a:hover::before {
  left: -0.02rem;
  width: .4rem;
  background: #fff;
}

.get-quote p,
.get-quote a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 240px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  background: #009979;
  transition: all 0.4s;
}

.get-quote p:hover,
.get-quote a:hover {
  background: #fff;
  color: #009979;
  border: 2px solid #009979;
  transition: all 0.4s;
}




/* 面包屑导航 */
.breadcrumbs .content {
  padding: 30px 0;
  flex-wrap: wrap;
}

.special-content {
  flex-wrap: wrap;
}

.special-breadcrumbs .home a,
.breadcrumbs .content .home a {
  align-items: center;
}


.special-breadcrumbs svg,
.breadcrumbs .content svg,
.special-breadcrumbs .home a svg,
.breadcrumbs .content .home a svg {
  margin-right: 7px;
  width: 16px;
  flex-shrink: 0;
  height: 16px;
}


.special-breadcrumbs span,
.breadcrumbs .content span {
  margin: 0 5px;
  color: #999;
  display: contents;
  width: fit-content;
  flex-wrap: wrap;
}


.breadcrumbs .content a:hover span,
.breadcrumbs .content a:hover {
  color: #009979;
}




/* 附加信息 */
.seo-extension {
  padding: 40px 10px;
  margin-bottom: 100px;
  border: .01rem solid #eee;
}

.seo-extension .title {
  text-align: center;
  margin-bottom: 40px;
}

.seo-extension-content .wrap {
  overflow: hidden;
}

.seo-extension-content .wrap p {
  margin-bottom: 30px;
}

.seo-extension-content .wrap ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.seo-extension-content .wrap ul li {
  line-height: 1.5;
  margin-bottom: 10px;
}

.seo-extension-content .wrap h3 {
  color: #2d2d2d;
  font-size: .24rem;
  margin-bottom: 30px;
  font-family: 'Hind-Medium';
}

.seo-extension-content .wrap img {
  margin-bottom: 30px;
}


.seo-extension-more {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 2rem;
  height: .48rem; */
  /* padding: 0 20px; */
  color: #fff;
  cursor: pointer;
  /* margin: 50px auto 0; */
  border-radius: .02rem;
  transition: all 0.4s;
}

.seo-extension-more p {
  /* width: 100%;
  height: 100%; */
  margin: 50px auto 0;

  width: 2rem;
  height: .48rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #009979;

}


.seo-extension-more p:focus,
.seo-extension-more p:hover {
  color: #fff;
}

.seo-extension-more p:hover {
  background: #8fdae3;
  transition: all 0.4s;
}



/* swiper */

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '';
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
}

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

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

.swiper-button-prev {
  background: url(../image/img_banner_arrow_rleft.svg) no-repeat center #009979;
  background-size: 40%;
}

.swiper-button-next {
  background: url(../image/img_banner_arrow_right.svg) no-repeat center #009979;
  background-size: 40%;
}







.common-fixed-contact,
.c-online-chat {
  height: auto !important;
  max-width: 800px;
  width: 100% !important;
}

.common-fixed-contact__close span {
  height: 2px !important;
}

.c-sidebar {
  bottom: 2rem;
}

.c-sidebar-item--contact {
  display: none !important;
}

.common-fixed-contact-form {
  padding: 0.1rem 0.4rem;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0.2rem 0.5em 0em !important;
}

@media (max-width: 1400px) {

  .title {
    font-size: .5rem;
  }

}

@media (max-width: 1279px) {

  .title {
    font-size: .4rem;
  }

  body {
    font-size: .24rem;
  }

}

@media (max-width: 1180px) {
  .common-fixed-contact__close span:nth-child(1) {
    -webkit-transform: translateY(0.2rem) rotate(-45deg);
    transform: translateY(0.2rem) rotate(-45deg);
  }
}

@media (max-width: 1023px) {
  .title {
    font-size: .36rem;
  }
}

@media (max-width: 950px) {
  .common-fixed-contact__close span:nth-child(1) {
    -webkit-transform: translateY(0.16rem) rotate(-45deg);
    transform: translateY(0.16rem) rotate(-45deg);
  }
}


@media (max-width: 850px) {
  .common-fixed-contact__close span:nth-child(1) {
    -webkit-transform: translateY(0.2rem) rotate(-45deg);
    transform: translateY(0.2rem) rotate(-45deg);
  }
}




@media (max-width: 767px) {

  .common-fixed-contact,
  .c-online-chat {
    height: auto !important;
    width: 90% !important;
  }

  .common-fixed-contact__close span:nth-child(1) {
    -webkit-transform: translateY(-0.1rem) rotate(-45deg);
    transform: translateY(-0.1rem) rotate(-45deg);
  }


  .common-fixed-contact__close span:nth-child(2) {
    -webkit-transform: translateY(-0.6rem) rotate(45deg);
    transform: translateY(-0.6rem) rotate(45deg);
  }


  body {
    font-size: .32rem;
  }

  .title {
    font-size: .56rem;
  }

  .subtitle {
    font-size: .40rem;
  }

  .com-container {
    padding: 0 15px;
  }

  .regular-btn,
  .special-btn,
  .main-btn {
    width: 100%;
  }

  .regular-btn p,
  .regular-btn a,
  .special-btn,
  .special-btn p,
  .special-btn a,
  .main-btn p,
  .main-btn a {
    width: 100%;
  }

  .special-btn p::before,
  .special-btn a::before {
    left: -0.15rem;
    width: .6rem;
  }

  .breadcrumbs .content {
    padding: 15px 0;
  }

  .seo-extension {
    padding: 30px 0;
    margin-bottom: 40px;
  }

  .seo-extension .title {
    margin-bottom: 30px;
  }

  .seo-extension-content {
    margin: 0;
  }

  .common-fixed-contact,
  .c-online-chat {
    height: 85%;
  }

  .seo-extension-more {
    width: 3rem;
    height: 1rem;
  }

  .main-btn a {
    height: 1rem;
  }


  .special-btn a {
    height: 1.4rem;
  }

  .special-btn p::before,
  .special-btn a::before {
    top: 0.68rem;
  }

  .navigation.pagination .nav-links .page-numbers {
    padding: 0.1rem 0.3rem;
  }

  .c-sidebar-item {
    width: 50px !important;
    height: 50px !important;
  }

  .c-sidebar-item--top {
    width: 40px !important;
    height: 40px !important;
  }

  .c-sidebar-item--contact img {
    width: 27px !important;
    height: 27px !important;
  }

  .c-sidebar {
    right: 0.15rem;
    bottom: 2rem !important;
  }

  .footer .footer-form input {
    height: 50px;
  }

  .footer .footer-link .footer-title,
  .footer .footer-link .footer-others-link ul li {
    font-size: 20px;
  }
}

.has-text-color.has-contrast-color {
  color: #222222;
}

.has-text-color.has-contrast-2-color {
  color: #575760;
}

.has-text-color.has-contrast-3-color {
  color: #f0f0f0;
}

.has-text-color.has-base-color {
  color: #f0f0f0;
}

.has-text-color.has-base-2-color {
  color: #f7f8f9;
}

.has-text-color.has-base-3-color {
  color: #ffffff
}

;

.has-text-color.has-accent-color {
  color: #1e73be;
}

.has-contrast-1-color {
  color: #222222;
}

.has-contrast-2-color {
  color: #575760;
}

.has-contrast-3-color {
  color: #b2b2be;
}

.has-contrast-4-color {
  color: #f0f0f0;
}

.has-contrast-5-color {
  color: #f7f8f9;
}

.has-contrast-6-color {
  color: #ffffff;
}

.has-contrast-7-color {
  color: #1e73be;
}

.has-base-background-color {
  background: #f0f0f0;
}

.has-contrast-background-color {
  background: #222222;
}

.has-contrast-2-background-color {
  background: #575760;
}

.has-contrast-3-background-color {
  background: #b2b2be;
}

.has-base-background-color {
  background: #f0f0f0;
}

.has-base-2-background-color {
  background: #f7f8f9;
}

.has-base-3-background-color {
  background: #ffffff;
}

.has-accent-background-color {
  background: #1e73be;
}

.has-medium-font-size {
  font-size: 20px;
}