@charset "UTF-8";
/* bannersvg */
@-webkit-keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes aScale {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes aScale {
  from {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  to {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@-o-keyframes aScale {
  from {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
  to {
    -o-transform: scale(1);
       transform: scale(1);
  }
}
@keyframes aScale {
  from {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.navBtn {
  width: 22px;
  height: 16px;
  z-index: 5;
  position: relative;
  cursor: pointer;
  display: block;
}
.navBtn span {
  width: 100%;
  height: 2px;
  background: #231815;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
  border-radius: 2px;
}
.navBtn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.navBtn span:nth-child(3) {
  top: auto;
  bottom: 0;
}
.navBtn.active span:nth-child(2) {
  -webkit-transform: translate(10px, -50%);
     -moz-transform: translate(10px, -50%);
      -ms-transform: translate(10px, -50%);
       -o-transform: translate(10px, -50%);
          transform: translate(10px, -50%);
  opacity: 0;
  visibility: hidden;
}
.navBtn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
     -moz-transform: rotate(45deg) translate(5px, 5px);
      -ms-transform: rotate(45deg) translate(5px, 5px);
       -o-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.navBtn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
     -moz-transform: rotate(-45deg) translate(5px, -5px);
      -ms-transform: rotate(-45deg) translate(5px, -5px);
       -o-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

#header {
  position: sticky;
  z-index: 30;
  width: 100%;
  top: 0;
  background: #fff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.1);
}
#header.up {
  -webkit-transform: translateY(-100%);
     -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
}
#header.up.fixed {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
#header.fixed {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (max-width: 1024px) {
  #header.up {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

.slogan {
  color: #333;
  background: #f5f5f5;
}
.slogan .wrap,.slogan .wrap2 {
  height: 40px;
}

.slogan a {
  gap: 7px;
  color: #333;
}
.slogan a .icon {
  width: 14px;
  height: 14px;
}
.slogan a:hover {
  color: #333;
}
.slogan a::after {
  background: #333;
}
.slogan .r {
  gap: 15px;
}
@media only screen and (max-width: 1024px) {
  .slogan {
    display: none;
  }
}

.header .logo {
  width: max(218px, 3.52rem);
  height: max(25px, 0.4rem);
  position: relative;
  z-index: 3;
}
.header .logo .mLogo {
  display: none;
}
.header .r .linkBtn {
  color: #fff;
  font-size: 16px;
  display: block;
  margin: 0 0 0 20px;
  width: auto;
  height: 32px;
  color: #fff;
  border-radius: 16px;
  background: #2ca3a2;
  border: 0 none;
  line-height: 32px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 0 22px;
}
.header .r .linkBtn:hover {
  border-color: transparent;
  color: #fff;
  -webkit-transform: translateY(-10px);
     -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
       -o-transform: translateY(-10px);
          transform: translateY(-10px);
  background: #2ca3a2;
  opacity: 1;
}
.header .r .linkBtn:hover s {
  -webkit-animation: ltor 1.3s linear infinite;
     -moz-animation: ltor 1.3s linear infinite;
       -o-animation: ltor 1.3s linear infinite;
          animation: ltor 1.3s linear infinite;
}
.header .r .linkBtn.noHover:hover {
  color: #fff;
  border: 0 none;
  background: #2ca3a2;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
.header .navList {
  gap: 0.4rem;
}
.header .navItem {
  font-size: 20px;
  position: relative;
}
.header .navItem::after {
  width: 0%;
  left: 50%;
  bottom: 0;
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  background: #2ab0a5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .navItem .one {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .navItem .one a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: max(80px, 1rem);
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
}
.header .navItem .one .iconJt {
  height: 10px;
  cursor: pointer;
  width: 6px;
  margin-left: 10px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header .navItem .one .iconJt::after {
  width: 8px;
  height: 100%;
  content: "";
  -o-background-size: 100% auto;
     background-size: 100% auto;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url("../images/swiperNext.svg");
  background-attachment: scroll;
}
.header .navItem .two {
  width: 300px;
  left: 50%;
  top: 100%;
  font-size: 16px;
  position: absolute;
  display: none;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.header .navItem .two a {
  color: #333;
  display: block;
  text-align: center;
  padding: 0.2rem;
  position: relative;
}
.header .navItem .two a::after {
  width: 0;
  height: 100%;
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  background: #2ca3a2;
}
.header .navItem .two a span {
  position: relative;
  z-index: 1;
}
.header .navItem .two a:hover {
  color: #fff;
}
.header .navItem .two a:hover::after {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 1681px) {
  .header .navItem .two {
    width: 250px;
  }
}
@media only screen and (max-width: 1281px) {
  .header .navItem .two {
    width: 230px;
  }
}
.header .navItem:hover::after {
  width: 100%;
}
.header .mr {
  gap: 20px;
  display: none;
}
.header .mr .icon {
  width: 20px;
  height: 20px;
}
.header .mr .language {
  color: #333;
  gap: 5px;
}
.header .mr .language .icon {
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 1660px) {
  .header .navItem {
    font-size: 18px;
  }
  .header .navList {
      gap: 0.32rem;
    }
}
@media only screen and (max-width: 1439px) {
  .header .navItem {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1279px) {
  .header .navItem {
    font-size: 16px;
  }
  .header .navItem .two {
    font-size: 14px;
  }
  .header .r .linkBtn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1130px) {
  .header .navItem {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1024px) {
  .header {
    height: 60px;
  }
  .header .wrap,.header .wrap2 {
    height: inherit;
  }
  .header .mr {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .r .linkBtn {
    display: none;
    margin-right: 20px;
    height: 28px;
    line-height: 28px;
    padding: 0 15px;
  }
  .header .nav {
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #fff;
    padding: 60px;
    display: none;
  }
  .header .navList {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0;
  }
  .header .navItem {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
  }
  .header .navItem::after {
    display: none;
  }
  .header .navItem .one {
    position: relative;
  }
  .header .navItem .one a {
    height: 50px;
    position: relative;
  }
  .header .navItem .one .iconJt {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
        -ms-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
    right: 0;
    height: 100%;
    position: absolute;
  }
  .header .navItem .two {
    position: static;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
    font-size: 14px;
    padding-bottom:20px; 
  }
  .header .navItem .two a {
    text-align: left;
    padding: 0 20px;
    line-height: 18px;
    margin-top: 20px;
  }
  .header .navItem .two a:last-child {
    border-bottom: 0 none;
  }
  .header .navItem .two a::after {
    display: none;
  }
  .header .navItem .two a:hover span {
    color: #333;
  }
  .header .navItem .two a:nth-child(1) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header .nav {
    padding: 60px 30px;
  }
}
@media only screen and (max-width: 479px) {
  .header .mr {
    gap: 10px;
  }
  .header .logo {
    width: 150px;
    height: 17px;
  }
}

.headerSearch {
  width: 100%;
  top: 100%;
  left: 0;
  display: none;
  position: absolute;
  padding: 0.3rem 0 1rem 0;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.8);
}
.headerSearch .hsForm {
  width: 860px;
  max-width: 100%;
  padding: 0 60px 0 25px;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  height: 60px;
  background: #fff;
  position: relative;
}
.headerSearch .hsForm .input {
  height: 100%;
  width: 100%;
  font-size: max(16px, 0.18rem);
}
.headerSearch .hsForm .btn {
  width: 24px;
  height: 24px;
  right: 25px;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search.svg");
  background-attachment: scroll;
  background-color: transparent;
}
.headerSearch .keywordBox {
  width: 700px;
  max-width: 100%;
  padding: 30px 0 0;
}
.headerSearch .keywordBox .topName {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin: 0 0 10px;
}
.headerSearch .keywordBox .item {
  height: max(40px, 0.6rem);
  padding: 0 max(15px, 0.3rem);
  border-radius: 5px;
  font-size: max(16px, 0.18rem);
  margin: 0 0 10px;
  color: #333;
}
.headerSearch .keywordBox .item .iconJt {
  width: 8px;
}
.headerSearch .keywordBox .item:hover {
  background: #f5f5f5;
  color: #fff;
  background: #2ca3a2;
}
.headerSearch .keywordBox .item:hover .cls-1 {
  stroke: #fff;
}
@media only screen and (max-width: 1279px) {
  .headerSearch .keywordBox .item .iconJt {
    width: 7px;
  }
}
@media only screen and (max-width: 959px) {
  .headerSearch .hsForm {
    height: 48px;
  }
}
@media only screen and (max-width: 479px) {
  .headerSearch .hsForm {
    padding: 0 35px 0 15px;
  }
  .headerSearch .hsForm .btn {
    right: 15px;
  }
}

.footer {
  -o-background-size: 100% auto;
     background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url("../images/footerBg.jpg");
  background-attachment: scroll;
  background-color: #f3fafa;
  padding: 0.55rem 0 0.8rem;
  position: relative;
}
.footer::after {
  width: 100%;
  height: 2px;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  background: -webkit-linear-gradient(left, #7c5292, #eee330, #0ba29a, #ea5415, #a40c5e);
  background: -moz-linear-gradient(left, #7c5292, #eee330, #0ba29a, #ea5415, #a40c5e);
  background: -o-linear-gradient(left, #7c5292, #eee330, #0ba29a, #ea5415, #a40c5e);
  background: linear-gradient(to right, #7c5292, #eee330, #0ba29a, #ea5415, #a40c5e);
}
.footer .fLogo {
  width: max(152px, 2.48rem);
  height: max(30px, 0.48rem);
}
.footer .con {
  padding: 0.7rem 0 0;
  margin: 0.4rem 0 0;
  border-top: 1px solid rgba(44, 163, 162, 0.1);
}
.footer .con .info{width:500px }
@media screen and (max-width:1679px){
.footer .con .info{width:380px }
}
@media screen and (max-width:1365px){
.footer .con .info{width:280px }
.footer .con .r {gap: 0.5rem;}
}
@media screen and (max-width:1279px){
.footer .con .info{width:280px }
.footer .con .r {gap: 0.3rem;}
}
.footer .con .name {
  font-size: 18px;
  padding: 0 0 max(5px, 0.15rem);
}
.footer .con .infoText {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: baseline;
     -moz-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 16px;
  color: #333;
  margin: 15px 0 0;
}
.footer .con .infoText .icon {
  margin: 0 15px 0 0;
  width: 15px;
  max-height: 15px;
}
.footer .con .fNavItemLink {
  line-height: 2.1;
  font-family: "HarmonyOS Sans SC Light";
}
.footer .con a {
  color: #333;
}
.footer .con a:hover {
  color: #2ca3a2;
}
.footer .con .fNav {
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
}
.footer .con .r {
  gap: 0.7rem;
}
.footer .con .gzhBox {
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
}
.footer .con .gzhBox img {
  width: max(100px, 1.55rem);
  height: max(100px, 1.55rem);
}
.footer .con .gzhBox p {
  padding: 12px 0 0;
}
@media only screen and (max-width: 1279px) {
  .footer .con .info {
    width: 300px;
    padding-right: 30px;
  }
  .footer .con .name {
    font-size: 16px;
  }
  .footer .con .infoText {
    font-size: 14px;
  }
}
@media only screen and (max-width: 959px) {
  .footer .con {
    padding-top: 0;
  }
  .footer .con .info {
    display: none;
  }
  .footer .con .r {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
  }
  .footer .con .fNav {
    width: 100%;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer .con .fNavItem {
    width: 100%;
    border-bottom: 1px solid rgba(44, 163, 162, 0.1);
  }
  .footer .con .fNavItem a {
    display: block;
  }
  .footer .con .fNavItem dd {
    display: none;
  }
  .footer .con .flex-col {
    width: 100%;
  }
  .footer .con .name {
    line-height: 40px;
    padding: 0;
    position: relative;
  }
  .footer .con .iconJt {
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    position: absolute;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer .con .iconJt::after {
    width: 8px;
    content: "";
    height: 100%;
    -o-background-size: 100% auto;
       background-size: 100% auto;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url("../images/right.svg");
    background-attachment: scroll;
  }
}
@media only screen and (max-width: 767px) {
  .footer .fLogo {
    width: 120px;
    height: 23px;
  }
}

.copyCon {
  color: #fff;
  background: #2ca3a2;
  padding: 0.25rem 0;
}
.copyCon .wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.copyCon .l {
  gap: 0.1rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.copyCon a {
  color: #fff;
}
.copyCon .r {
  gap: 0.15rem;
}
.copyCon .r em {
  opacity: 0.2;
}
@media only screen and (max-width: 1024px) {
  .copyCon .r {
    width: 100%;
    padding: 10px 0 0;
  }
}

.rightFloat {
  right: max(40px, 0.6rem);
  z-index: 30;
  top: 50%;
  display: none;
  position: fixed;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.rightFloat .kf {
  width: max(48px, 0.6rem);
  padding: 0.05rem 0 0.2rem;
  background: #2ca3a2;
  border-radius: max(24px, 0.3rem);
  color: #fff;
  font-size: max(14px, 0.16rem);
}
.rightFloat .kf .icon {
  width: max(40px, 0.5rem);
}
.rightFloat .kf strong {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  padding-top: 0.07rem;
  letter-spacing: 2px;
}
.rightFloat .list {
  width: max(48px, 0.6rem);
  gap: 0.15rem;
  background: #fff;
  border-radius: max(24px, 0.3rem);
  margin: 0.1rem 0 0;
  padding: 0.2rem 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.rightFloat .list .icon {
  width: max(18px, 0.24rem);
  height: max(18px, 0.24rem);
  position: relative;
}
.rightFloat .list .icon img {
  width: 100%;
  position: absolute;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.rightFloat .list .icon img.imgOn {
  opacity: 0;
  visibility: hidden;
}
.rightFloat .list .item {
  width: 100%;
  position: relative;
  font-size: 12px;
}
.rightFloat .list .item a {
  color: #000;
}
.rightFloat .list .item:hover a {
  color: #2ca3a2;
}
.rightFloat .list .item:hover .icon img.imgOn {
  opacity: 1;
  visibility: visible;
}
.rightFloat .list .item:hover .icon img.img {
  opacity: 0;
  visibility: hidden;
}
.rightFloat .list .item span {
  margin: 2px 0 3px;
}
.rightFloat .list .item .backToTop .icon {
  width: max(14px, 0.18rem);
  height: max(14px, 0.18rem);
}
.rightFloat .list .item.gzh::after {
  right: -webkit-calc(100% + 0.2rem);
  right: -moz-calc(100% + 0.2rem);
  right: calc(100% + 0.2rem);
  top: 50%;
  position: absolute;
  content: "";
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(100%, -50%);
     -moz-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
       -o-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-left: 0.1rem solid #fff;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
}
.rightFloat .list .item.gzh:hover .ewmCon {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.rightFloat .list .item.gzh:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.rightFloat .list .item.tel::after {
  right: -webkit-calc(100% + 0.2rem);
  right: -moz-calc(100% + 0.2rem);
  right: calc(100% + 0.2rem);
  top: 50%;
  position: absolute;
  content: "";
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(100%, -50%);
     -moz-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
       -o-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  border-left: 0.1rem solid #fff;
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
}
.rightFloat .list .item.tel:hover .telBox {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.rightFloat .list .item.tel:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.rightFloat .list .telBox {
  width: max(200px, 2.6rem);
  right: -webkit-calc(100% + 0.2rem);
  right: -moz-calc(100% + 0.2rem);
  right: calc(100% + 0.2rem);
  height: 100%;
  border-radius: 5px;
  position: absolute;
  top: 0;
  background: #fff;
  padding: 0 0.2rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2ca3a2;
  opacity: 0;
  visibility: hidden;
  font-size: max(16px, 0.2rem);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.rightFloat .list .ewmCon {
  padding: 0.25rem 0.4rem;
  background: #fff;
  border-radius: 0.1rem;
  right: -webkit-calc(100% + 0.2rem);
  right: -moz-calc(100% + 0.2rem);
  right: calc(100% + 0.2rem);
  bottom: -0.4rem;
  position: absolute;
  font-size: 14px;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.rightFloat .list .ewmCon strong {
  font-size: 18px;
  color: #2ca3a2;
}
.rightFloat .list .ewmCon .ewm {
  width: max(120px, 1.3rem);
  height: max(120px, 1.3rem);
  margin: 0.18rem 0 0.22rem;
}
@media only screen and (max-width: 1439px) {
  .rightFloat {
    right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .rightFloat {
    bottom: 20px;
    top: auto;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
  }
  .rightFloat .kf {
    display: none;
  }
  .rightFloat .list {
    width: 40px;
    height: 40px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rightFloat .list .item {
    display: none;
  }
  .rightFloat .list .item:last-child {
    display: block;
  }
}

html {
  font-size: 100px;
}
@media screen and (max-width: 1919px) {
  html {
    font-size: 90px;
  }
}
@media screen and (max-width: 1679px) {
  html {
    font-size: 80px;
  }
}
@media screen and (max-width: 1439px) {
  html {
    font-size: 70px;
  }
}
@media screen and (max-width: 1365px) {
  html {
    font-size: 60px;
  }
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 50px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 45px;
  }
}
@media screen and (max-width: 959px) {
  html {
    font-size: 40x;
  }
}

body {
  font-size: 14px;
  font-family: "HarmonyOS Sans SC", "Source Han Sans CN", "思源黑体", "Microsoft Yahei", "微软雅黑", "Arial Regular", "Arial";
}

.padTB120 {
  padding: max(60px, 1.2rem) 0;
}

.bannerSwiper {
  overflow: hidden;
}
.bannerSwiper img {
  width: 100%;
  display: block;
  -webkit-transform: rotate(1.1);
     -moz-transform: rotate(1.1);
      -ms-transform: rotate(1.1);
       -o-transform: rotate(1.1);
          transform: rotate(1.1);
}
.bannerSwiper .swiper-slide-active img {
  -webkit-animation: aScale 2.5s linear;
     -moz-animation: aScale 2.5s linear;
       -o-animation: aScale 2.5s linear;
          animation: aScale 2.5s linear;
}

.bannerPagina {
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0;
  z-index: 2;
}
.bannerPagina span {
  /* @include inline-top; */
  position: relative;
  /* margin-left: 1rem; */
  margin: 0 15px;
  cursor: pointer;
  display: inline-block;
  width: 30px !important;
  height: 30px !important;
}
.bannerPagina span:nth-of-type(1) {
  margin-left: 0;
}
.bannerPagina span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
}
.bannerPagina span::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.bannerPagina span svg {
  fill: none;
  stroke: #e50042;
  stroke-width: 1px;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.bannerPagina span.active::before {
  opacity: 1;
}
.bannerPagina span.active svg {
  -webkit-animation: bannerSvg 3s linear forwards;
     -moz-animation: bannerSvg 3s linear forwards;
       -o-animation: bannerSvg 3s linear forwards;
          animation: bannerSvg 3s linear forwards;
}

.louver {
  width: 100%;
  height: 30vw;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.louver .louverItem {
  width: 15%;
  height: 100%;
  background: pink;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.louver .louverItem.active {
  width: 54%;
}

.img100 {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.flex-center {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-bet {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-wrap {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-center-cen {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-center-bet {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-col {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-center {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-centers {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-bet {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-col-center-cen {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrap {
  width: 1400px;
  margin: 0 auto;
}
.wrap2 {
  width:86%;
  margin: 0 auto;
}
@media only screen and (max-width: 1679px) {
  .wrap {
    width: 1200px;
  }
}
@media only screen and (max-width: 1440px) {
  .wrap2 {
    width:92%;
  }
}
@media only screen and (max-width: 1365px) {
  .wrap {
    width: 1000px;
  }
}
@media only screen and (max-width: 1279px) {
  .wrap {
    width: 970px;
  }
}
@media only screen and (max-width: 1130px) {
  .wrap2 {
    width:95%;
  }
  .header .r .linkBtn{padding:0px 10px}
}
@media only screen and (max-width: 1024px) {
  .wrap {
    width: auto;
    margin: 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap {
    margin: 0 30px;
  }
}

.linkLine {
  position: relative;
}
.linkLine::after {
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  position: absolute;
  background: #fff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.linkLine:hover {
  color: #fff;
}
.linkLine:hover::after {
  width: 100%;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.comShare {
  right: max(10px, 0.6rem);
  right: -webkit-calc(0.6rem + (0.9rem - max(46px, 0.72rem)) / 2);
  right: -moz-calc(0.6rem + (0.9rem - max(46px, 0.72rem)) / 2);
  right: calc(0.6rem + (0.9rem - max(46px, 0.72rem)) / 2);
  top: 50%;
  position: fixed;
  z-index: 22;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: max(3px, 0.06rem);
  background: #f8f8f8;
}
.comShare a {
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 max(5px, 0.1rem);
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: max(3px, 0.05rem);
  position: relative;
  color: #333;
}
.comShare a:hover {
  color: #2ca3a2;
}
.comShare a::after {
  width: 90%;
  left: 50%;
  bottom: max(-5px, -0.1rem);
  content: "";
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  border-bottom: 1px solid #dee2e6;
}
.comShare a:hover {
  background: #2ca3a2;
}
.comShare a:last-child {
  margin: 0;
}
.comShare a:last-child::after {
  display: none;
}

.comPage {
  gap: 7px;
  width: 100%;
  font-size: max(14px, 0.16rem);
  padding: max(30px, 0.7rem) 0 0;
}
.comPage a {
  width: max(32px, 0.48rem);
  height: max(30px, 0.45rem);
  color: #333;
  border-radius: 6px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: max(14px, 0.16rem);
}
.comPage li {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #fff;
}
.comPage li:hover, .comPage li.active {
  border-color: transparent;
}
.comPage li:hover a, .comPage li.active a {
  color: #fff;
  background: #2ca3a2;
}
.comPage li:last-child a, .comPage li:nth-child(1) a {
  color: #666;
}
.comPage li:last-child:hover a, .comPage li:nth-child(1):hover a {
  color: #fff;
}
@media only screen and (max-width: 479px) {
  .comPage {
    gap: 3px;
  }
  .comPage a {
    font-size: 12px;
  }
}

/* 适配1920 */
/* // 适配1680 */
/* // 适配1440 */
/* // 适配1366 */
/* // 适配1280 */
/* // 适配1025 */
/* 以下属于移动端设备 */
/* // 适配1024 */
/* // 适配960 */
/* // 适配768 */
/* // 适配480 */
/* // 适配320 *//*# sourceMappingURL=common.css.map */