body {
  background: #f5f5f5;
}

.subBanner {
  width: 100%;
  height: 320px;
  position: relative;
}
.subBanner img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.subBanner .wrap {
  height: 100%;
  top: 0;
  left: 50%;
  color: #fff;
  position: absolute;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  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: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subBanner .name {
  font-size: max(24px, 0.4rem);
  font-weight: 400;
}
.subBanner .enName {
  font-size: max(16px, 0.2rem);
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .subBanner .wrap {
    width: 100%;
    margin: 0;
    padding: 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .subBanner {
    height: 210px;
  }
  .subBanner .wrap {
    padding: 0 30px;
  }
}

.crumbs {
  color: #666;
  height: 58px;
  position: relative;
  background: #fff;
  border-top: 1px solid #f3f4f4;
}
.crumbs .wrap {
  gap: 15px;
  height: 100%;
}
.crumbs .homeIcon {
  width: 15px;
  height: 15px;
}
.crumbs a {
  color: #666;
  gap: 13px;
}
.crumbs .jt {
  width: 10px;
}
.crumbs.grey {
  background: #f8f8f8;
}

@media only screen and (max-width: 959px) {
  .about {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.aboutLeftBox {
  padding: 0 31px 0 0;
  position: relative;
  z-index: 5;
}
.aboutLeftBox::after {
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  content: "";
  position: absolute;
  background: rgba(232, 232, 232, 0.8);
}
@media only screen and (max-width: 959px) {
  .aboutLeftBox {
    width: 100%;
    padding: 0;
  }
  .aboutLeftBox::after {
    display: none;
  }
}

.aboutLeftNav {
  gap: 4px;
  z-index: 10;
  padding: max(60px, 0.8rem) 0 0;
  position: sticky;
  top: 0;
}
.aboutLeftNav .item {
  position: relative;
}
.aboutLeftNav .item:hover .one {
  background: #2ca3a2;
}
.aboutLeftNav .item:hover .one a {
  color: #fff;
}
.aboutLeftNav .item:hover .two {
  opacity: 1;
  visibility: visible;
}
.aboutLeftNav .item.active .one {
  background: #2ca3a2;
}
.aboutLeftNav .item.active .one a {
  color: #fff;
}
.aboutLeftNav .one {
  background: #fff;
  border-radius: 0.1rem;
  position: relative;
}
.aboutLeftNav .one a {
  width: max(220px, 2.7rem);
  line-height:24px;
  display: block;
  padding: 18px 30px 18px 0.3rem;
  position: relative;
  font-size: 16px;
  color: #444444;
}
.aboutLeftNav .one .jt {
  right: 0.2rem;
  top: 0;
  position: absolute;
  width: 29px;
  height: 100%;
  -o-background-size: auto 19px;
     background-size: auto 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/aboutNavJt.svg");
  background-attachment: scroll;
}
.aboutLeftNav .two {
  left: 100%;
  top: 0;
  position: absolute;
  padding: 0 0 0 10px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.aboutLeftNav .two .box {
  background: rgba(44, 163, 162, 0.9);
  padding: 10px 0;
  border-radius: 0.1rem;
}
.aboutLeftNav .two a {
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.25rem;
  width:100%;
  position: relative;
  white-space: pre
}
.aboutLeftNav .two a::after {
  width: 100%;
  height: 1px;
  content: "";
  left: 0;
  top: -1px;
  position: absolute;
  background: rgba(174, 236, 235, 0.2);
  opacity: 0;
  visibility: hidden;
}
.aboutLeftNav .two a span {
  width: 100%;
  display: block;
  line-height:24px;
  padding: 13px 0 13px 20px;
  position: relative;
  border-bottom: 1px solid rgba(174, 236, 235, 0.2);
}
.aboutLeftNav .two a span::after {
  content: "";
  left: 8px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aboutLeftNav .two a:last-child span {
  border-bottom: 0 none;
}
.aboutLeftNav .two a:hover {
  background: rgba(117, 255, 254, 0.3);
}
.aboutLeftNav .two a:hover::after {
  opacity: 1;
  visibility: visible;
}
.aboutLeftNav .two a:hover span {
  border-color: transparent;
}
@media only screen and (max-width: 959px) {
  .aboutLeftNav {
    gap: 2px;
  }
  .aboutLeftNav .aboutLeftBox {
    width: 100%;
    padding: 0;
  }
  .aboutLeftNav .one {
    background: #2ca3a2;
  }
  .aboutLeftNav .one a {
    color: #fff;
  }
  .aboutLeftNav .one .jt {
    right: 0;
    cursor: pointer;
  }
  .aboutLeftNav .two {
    position: static;
    opacity: 1;
    padding: 0;
    visibility: visible;
    background: #fff;
    display: none;
  }
  .aboutLeftNav .two a {
    color: #333;
    width: 100%;
    white-space: pre-wrap
  }
  .aboutLeftNav .two a span {
    line-height:22px;
    padding:20px 0px
  }
  .aboutLeftNav .two .box {
    background: #fff;
  }
}

.subPageTitleBox .name {
  font-size: max(20px, 0.32rem);
  font-weight: normal;
  color: #2ca3a2;
  padding: 0 0 23px;
  position: relative;
}
.subPageTitleBox .name::after {
  width: 0.5rem;
  height: 4px;
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  border-radius: 2px;
  background-image: -webkit-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: -moz-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: -o-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: linear-gradient(90deg, #2ca3a2 0%, #9ffffe 100%);
}
.subPageTitleBox .names {
  font-size: max(20px, 0.28rem);
  font-weight: normal;
  color: #333;
  padding: 0 0 23px;
  position: relative;
}
.subPageTitleBox .names::after {
  width: 0.5rem;
  height: 4px;
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  border-radius: 2px;
  background-image: -webkit-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: -moz-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: -o-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: linear-gradient(90deg, #2ca3a2 0%, #9ffffe 100%);
}

.aboutRightCon {
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: max(60px, 0.8rem) 0 1.6rem 0.4rem;
  width: -webkit-calc(100% - max(220px, 2.7rem) - 0.4rem);
  width: -moz-calc(100% - max(220px, 2.7rem) - 0.4rem);
  width: calc(100% - max(220px, 2.7rem) - 0.4rem);
  position: relative;
  z-index: 3;
}
.aboutRightCon .zzjgPic {
  display: block;
  width: 100%;
}
.aboutRightCon .aboutContent {
  padding: 0.3rem 0 0;
  font-size: max(14px, 0.2rem);
  line-height: 2;
  color: #444;
}
.aboutRightCon .zxzr {
  padding: max(30px, 0.68rem) 0 0;
}
.aboutRightCon .zxzr .subPageTitleBox {
  margin: 0 0 30px;
}
@media only screen and (max-width: 959px) {
  .aboutRightCon {
    padding-left: 0;
    padding-top: 30px;
  }
}

.aboutTwo {
  -o-background-size: 100% auto;
     background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url("../images/aboutTwoBg.png");
  background-attachment: scroll;
}
@media only screen and (max-width: 959px) {
  .aboutTwo .wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.comRcInfoItem {
  background: #fff;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: max(15px, 0.2rem) max(20px, 0.45rem) max(15px, 0.2rem) max(15px, 0.2rem);
}
.comRcInfoItem .tag {
  right: 0;
  top: 0;
  position: absolute;
  color: #fff;
  -webkit-transform: translate(35%, -10%) rotate(45deg);
     -moz-transform: translate(35%, -10%) rotate(45deg);
      -ms-transform: translate(35%, -10%) rotate(45deg);
       -o-transform: translate(35%, -10%) rotate(45deg);
          transform: translate(35%, -10%) rotate(45deg);
  padding: max(20px, 0.4rem) max(30px, 0.6rem) max(10px, 0.2rem);
  background: -webkit-linear-gradient(top, #097281, #0aa1b7);
  background: -moz-linear-gradient(top, #097281, #0aa1b7);
  background: -o-linear-gradient(top, #097281, #0aa1b7);
  background: linear-gradient(180deg, #097281, #0aa1b7);
  font-size: max(14px, 0.18rem);
  font-weight: 800;
}
.comRcInfoItem .pic {
  width: max(180px, 2.4rem);
  height: max(240px, 3.2rem);
  overflow: hidden;
  border-radius: 6px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.comRcInfoItem .text {
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 0 0 max(20px, 0.45rem);
}
.comRcInfoItem .text .name {
  color: #333;
  font-size: max(20px, 0.36rem);
}
.comRcInfoItem .text .job {
  font-size: max(16px, 0.2rem);
  font-weight: 400;
  color: #333;
}
.comRcInfoItem .text .info {
  padding: max(10px, 0.2rem) 0 0;
  font-size: max(14px, 0.16rem);
  color: #999999;
  line-height: 1.9;
  text-align: justify;
}
.comRcInfoItem .bot {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 0.1rem;
  font-size: 14px;
  color: #2ca3a2;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-top: 1px solid #f5f5f5;
  margin: max(10px, 0.2rem) 0 0;
  padding: max(15px, 0.27rem) 0;
}
.comRcInfoItem .bot .icon {
  width: 18px;
  height: 18px;
  margin: 0 7px 0 0;
}
@media only screen and (max-width: 767px) {
  .comRcInfoItem {
    padding: 20px;
  }
  .comRcInfoItem .pic {
    display: none;
  }
  .comRcInfoItem .text {
    padding: 0;
  }
}

.aboutTwoContent .bigPic {
  width: 100%;
  overflow: hidden;
  border-radius: 0.1rem;
  height: max(162px, 3.6rem);
}
.aboutTwoContent.aboutFourContent {
  padding: max(30px, 0.5rem) 0 0;
}
.aboutTwoContent .swyxsyjszx {
  padding: max(30px, 0.7rem) 0 0;
}
.aboutTwoContent .swyxsyjszx .infoText {
  color: #666;
  padding: max(20px, 0.3rem) 0 max(20px, 0.27rem);
  font-size: max(16px, 0.18rem);
}
.aboutTwoContent .swyxsyjszx .infoText img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.aboutTwoContent .swyxsyjszx .sbz .bigName {
  font-size: max(18px, 0.24rem);
  color: #fff;
  background: #2ca3a2;
  text-align: center;
  line-height: max(44px, 0.66rem);
  border-radius: 0.15rem;
}
.aboutTwoContent .swyxsyjszx .sbz .itemBox {
  padding: max(40px, 0.66rem) 0 0;
}
.aboutTwoContent .swyxsyjszx .sbz .item {
  border: 1px dashed #2ca3a2;
  border-radius: 0.15rem;
  width: 4.9rem;
  height: 1.6rem;
  position: relative;
}
.aboutTwoContent .swyxsyjszx .sbz .item .icon {
  width: max(30px, 0.54rem);
  height: max(30px, 0.54rem);
}
.aboutTwoContent .swyxsyjszx .sbz .item .name {
  font-size: max(16px, 0.2rem);
  color: #2ca3a2;
  padding: 15px 0 0;
}
.aboutTwoContent .swyxsyjszx .sbz .item::after {
  width: max(46px, 0.72rem);
  height: max(23px, 0.36rem);
  left: 50%;
  bottom: 100%;
  position: absolute;
  content: "";
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/jszxJt.png");
  background-attachment: scroll;
}
.aboutTwoContent .swyxsyjszx .sbz .jiaIcon {
  width: max(26px, 0.35rem);
  height: max(26px, 0.35rem);
}
.aboutTwoContent .jsfw {
  padding: max(30px, 0.6rem) 0 0;
}
.aboutTwoContent .jsfw .list {
  gap: 0.2rem;
  padding: 30px 0 0;
}
.aboutTwoContent .jsfw .listItem {
  width: -webkit-calc((100% - 0.4rem) / 3);
  width: -moz-calc((100% - 0.4rem) / 3);
  width: calc((100% - 0.4rem) / 3);
  height: max(100px, 2rem);
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
.aboutTwoContent .jsfw .listItem .listIcon {
  width: max(30px, 0.6rem);
  height: max(30px, 0.6rem);
}
.aboutTwoContent .jsfw .listItem .name {
  color: #666;
  padding: 0.2rem 0 0;
  font-size: max(14px, 0.18rem);
  text-align:center;
  box-sizing:border-box;
  padding:0px 5%; 
}
.aboutTwoContent .jsfw .listItem a {
  width: 100%;
  height: 100%;
}
.aboutTwoContent .aboutImgText {
  color: #666;
  padding: max(30px, 0.8rem) 0 max(20px, 0.27rem);
  font-size: max(16px, 0.18rem);
}
.aboutTwoContent .aboutImgText  table{max-width:100%!important;}
.aboutTwoContent .aboutImgText  table td{text-wrap-mode:wrap;padding:10px !important}
.aboutTwoContent .aboutImgText  table p{line-height:20px}
.aboutTwoContent .aboutImgText p {
  line-height: 2;
}
.aboutTwoContent .aboutImgText h3 {
  font-size: max(20px, 0.28rem);
  font-weight: normal;
  color: #333;
  padding: 0 0 23px;
  position: relative;
  margin: 0 0 max(20px, 0.3rem);
}
.aboutTwoContent .aboutImgText h3::after {
  width: 0.5rem;
  height: 4px;
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  border-radius: 2px;
  background-image: -webkit-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: -moz-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: -o-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background-image: linear-gradient(90deg, #2ca3a2 0%, #9ffffe 100%);
}
.aboutTwoContent .aboutImgText img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 959px) {
  .aboutTwoContent .swyxsyjszx .sbz .item {
    height: auto;
    padding: 20px 0;
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .aboutTwoContent .swyxsyjszx .infoText {
    font-size: 14px;
  }
}
@media only screen and (max-width: 559px) {
  .aboutTwoContent .jsfw .listItem {
    width: -webkit-calc((100% - 0.2rem) / 2);
    width: -moz-calc((100% - 0.2rem) / 2);
    width: calc((100% - 0.2rem) / 2);
  }
}
@media only screen and (max-width: 479px) {
  .aboutTwoContent .swyxsyjszx .sbz .item .icon {
    width: 24px;
    height: 24px;
  }
  .aboutTwoContent .swyxsyjszx .sbz .item .name {
    font-size: 14px;
  }
  .aboutTwoContent .swyxsyjszx .sbz .jiaIcon {
    width: 20px;
    height: 20px;
  }
}

.aboutThreeContent .toptitle {
  margin-bottom: max(20px, 0.3rem);
}
.aboutThreeContent .aboutThreeSwiper {
  width: 100%;
  height: 566px;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
.aboutThreeContent .aboutThreeSwiper::after {
  width: 100%;
  height: 10%;
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 5;
  background: -webkit-linear-gradient(bottom, rgb(49, 165, 165), rgba(49, 165, 165, 0));
  background: -moz-linear-gradient(bottom, rgb(49, 165, 165), rgba(49, 165, 165, 0));
  background: -o-linear-gradient(bottom, rgb(49, 165, 165), rgba(49, 165, 165, 0));
  background: linear-gradient(to top, rgb(49, 165, 165), rgba(49, 165, 165, 0));
}
.aboutThreeContent .aboutThreeSwiper .aboutThreePagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
}
.aboutThreeContent .aboutThreeSwiper .aboutThreePagination .swiper-pagination-bullet-active {
  width: 32px;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.aboutThreeContent .xbfxymypt {
  padding: max(40px, 0.9rem) 0 0;
}
.aboutThreeContent .xbfxymypt .info {
  font-size: max(16px, 0.18rem);
  font-family: "HarmonyOS Sans SC Light";
  color: #666;
  line-height: 2;
  padding: max(20px, 0.3rem) 0 0;
}
.aboutThreeContent .rcdw {
  padding: max(30px, 0.5rem) 0 0;
}
.aboutThreeContent .rcdw .subPageTitleBox {
  margin: 0 0 30px;
}
.aboutThreeContent .rcdw .rcdwList {
  gap: 0.2rem;
}
.aboutThreeContent .ptyqsb {
  padding: max(30px, 0.77rem) 0 0;
}
.aboutThreeContent .ptyqsb .filter {
  position: relative;
  z-index: 10;
  width: 50%;
}
.aboutThreeContent .ptyqsb .filter .searchBox {
  width: 100%;
  max-width: 100%;
  height: 50px;
  background: #fff;
  padding: 0 50px 0 25px;
  position: relative;
  border-radius: 0.1rem;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.aboutThreeContent .ptyqsb .filter .searchBox input {
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.aboutThreeContent .ptyqsb .filter .searchBox .searchBtn {
  width: 16px;
  height: 16px;
  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/searchBold.svg");
  background-attachment: scroll;
  background-color: transparent;
}
.aboutThreeContent .ptyqsb .aboutPtyqsb {
  position: relative;
  padding: max(20px, 0.36rem) 0 max(50px, 0.73rem);
}
.aboutThreeContent .ptyqsb .slideItemBox {
  gap: 22px;
  padding-top: max(20px, 0.36rem);
}
.aboutThreeContent .ptyqsb .slideItem {
  width: -webkit-calc((100% - 44px) / 3);
  width: -moz-calc((100% - 44px) / 3);
  width: calc((100% - 44px) / 3);
  padding: 0.32rem 0.3rem -webkit-calc(0.6rem + 36px);
  padding: 0.32rem 0.3rem -moz-calc(0.6rem + 36px);
  padding: 0.32rem 0.3rem calc(0.6rem + 36px);
  border-radius: 0.1rem;
  background: #fff;
  height: initial;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}
.aboutThreeContent .ptyqsb .slideItem::after {
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  background: -webkit-linear-gradient(bottom, rgb(44, 163, 162), rgba(44, 163, 162, 0) 70%);
  background: -moz-linear-gradient(bottom, rgb(44, 163, 162), rgba(44, 163, 162, 0) 70%);
  background: -o-linear-gradient(bottom, rgb(44, 163, 162), rgba(44, 163, 162, 0) 70%);
  background: linear-gradient(to top, rgb(44, 163, 162), rgba(44, 163, 162, 0) 70%);
}
.aboutThreeContent .ptyqsb .slideItem .pic {
  margin: 0 0.1rem;
  height: 1.84rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.aboutThreeContent .ptyqsb .slideItem img {
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.aboutThreeContent .ptyqsb .slideItem:hover img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}
.aboutThreeContent .ptyqsb .slideItem:hover::after {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.aboutThreeContent .ptyqsb .slideItem:hover .name {
  color: #fff;
}
.aboutThreeContent .ptyqsb .slideItem:hover .enName {
  color: #fff;
}
.aboutThreeContent .ptyqsb .slideItem:hover .btnBox a {
  border-color: #fff;
  color: #fff;
}
.aboutThreeContent .ptyqsb .slideItem:hover .btnBox a:hover {
  color: #2ca3a2;
  background: #fff;
}
.aboutThreeContent .ptyqsb .slideItem .text {
  padding: 0.32rem 0 0;
  text-align: center;
  position: relative;
  z-index: 3;
}
.aboutThreeContent .ptyqsb .slideItem .name {
  font-size: max(20px, 0.24rem);
  font-weight: 400;
  color: #333;
}
.aboutThreeContent .ptyqsb .slideItem .enName {
  font-size: 14px;
  font-weight: 400;
  color: #999;
}
.aboutThreeContent .ptyqsb .slideItem .btnBox {
  gap: 7px;
  z-index: 5;
  padding: 0 0.1rem;
  left: 0;
  width: 100%;
  bottom: 0.35rem;
  position: absolute;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.aboutThreeContent .ptyqsb .slideItem .btnBox a {
  width: auto;
  height: 36px;
  color: #fff;
  border-radius: 18px;
  background: none;
  border: 2px solid #9d9d9d;
  line-height: 36px;
  -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 0.1rem;
  color: #9d9d9d;
  line-height: 32px;
}
.aboutThreeContent .ptyqsb .slideItem .btnBox a: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: none;
  opacity: 1;
}
.aboutThreeContent .ptyqsb .slideItem .btnBox a: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;
}
.aboutThreeContent .ptyqsb .slideItem .btnBox a.noHover:hover {
  color: #fff;
  border: 2px solid #9d9d9d;
  background: none;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
.aboutThreeContent .ptyqsb .czBox {
  left: 0;
  bottom: 0;
  gap: 10px;
  position: absolute;
}
.aboutThreeContent .ptyqsb .czBox .aboutPtyqsbPrev,
.aboutThreeContent .ptyqsb .czBox .aboutPtyqsbNext {
  cursor: pointer;
  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;
  width: max(30px, 0.4rem);
  height: max(30px, 0.4rem);
  position: static;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #b0b0b2;
}
.aboutThreeContent .ptyqsb .czBox .aboutPtyqsbPrev:hover,
.aboutThreeContent .ptyqsb .czBox .aboutPtyqsbNext:hover {
  border-color: #2ca3a2;
}
.aboutThreeContent .ptyqsb .czBox .aboutPtyqsbPrev:hover .cls-1,
.aboutThreeContent .ptyqsb .czBox .aboutPtyqsbNext:hover .cls-1 {
  stroke: #2ca3a2;
}
.aboutThreeContent .ptyqsb .czBox .cls-1 {
  stroke: #aeaeb0;
}
@media only screen and (max-width: 1680px) {
  .aboutThreeContent .aboutThreeSwiper {
    height: 486px;
  }
}
@media only screen and (max-width: 1439px) {
  .aboutThreeContent .ptyqsb .czBox #sweiperNext,
  .aboutThreeContent .ptyqsb .czBox #sweiperPrev {
    width: 7px;
  }
}
@media only screen and (max-width: 1365px) {
  .aboutThreeContent .aboutThreeSwiper {
    height: 388px;
  }
  .aboutThreeContent .ptyqsb .slideItem {
    width: -webkit-calc((100% - 22px) / 2);
    width: -moz-calc((100% - 22px) / 2);
    width: calc((100% - 22px) / 2);
  }
  .aboutThreeContent .ptyqsb .slideItem .pic {
    height: 217px;
  }
}
@media only screen and (max-width: 1279px) {
  .aboutThreeContent .aboutThreeSwiper {
    height: 339px;
  }
  .aboutThreeContent .ptyqsb .slideItem .pic {
    height: 190px;
  }
}
@media only screen and (max-width: 1024px) {
  .aboutThreeContent .aboutThreeSwiper {
    height: 309px;
  }
}
@media only screen and (max-width: 1023px) {
  .aboutThreeContent .ptyqsb .slideItem .name {
    font-size: 16px;
  }
  .aboutThreeContent .ptyqsb .slideItem .btnBox a {
    height: 30px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 959px) {
  .aboutThreeContent .aboutThreeSwiper {
    height: 44.5vw;
  }
  .aboutThreeContent .ptyqsb .slideItem .pic {
    height: 25.5vw;
  }
  .aboutThreeContent .aboutThreeSwiper .aboutThreePagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .aboutThreeContent .aboutThreeSwiper .aboutThreePagination .swiper-pagination-bullet-active {
    width: 20px;
  }
}
@media only screen and (max-width: 959px) {
  .aboutThreeContent .ptyqsb .titleSearchBox {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .aboutThreeContent .ptyqsb .filter {
    width: 100%;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 559px) {
  .aboutThreeContent .xbfxymypt .info {
    font-size: 14px;
  }
}
@media only screen and (max-width: 559px) {
  .aboutThreeContent .ptyqsb .slideItemBox {
    gap: 10px;
  }
  .aboutThreeContent .ptyqsb .slideItem {
    width: 100%;
  }
  .aboutThreeContent .ptyqsb .slideItem .pic {
    height: 56.5vw;
  }
}
@media only screen and (max-width: 479px) {
  .aboutThreeContent .ptyqsb .filter .searchBox {
    padding: 0 40px 0 15px;
  }
  .aboutThreeContent .ptyqsb .filter .searchBox .searchBtn {
    right: 15px;
  }
  .aboutThreeContent .ptyqsb .slideItem .pic {
    height: 49.5vw;
  }
}

.gain {
  padding: max(60px, 1rem) 0 max(60px, 1.08rem);
}
.gain .gainList {
  gap: 20px;
}
.gain .gainItem {
  padding: 20px 0 20px 20px;
  background: #fff;
  border-radius: 0.1rem;
}
.gain .gainItem:hover {
  box-shadow: 0px 10px 30px 0px rgba(54, 167, 166, 0.1);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gain .gainItem:hover .pic img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}
.gain .gainItem .pic {
  width: 25%;
  height: 230px;
  border-radius: 3px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.gain .gainItem .pic img {
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.gain .gainItem .text {
  width: 75%;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  padding: 0 0.64rem;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
.gain .gainItem .name {
  font-size: max(18px, 0.22rem);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 0.15rem;
  color: #333;
}
.gain .gainItem .date {
  gap: 7px;
  color: #333;
  padding: 0.2rem 0 0;
}
.gain .gainItem .date .icon {
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 1679px) {
  .gain .gainItem .pic {
    height: 196px;
  }
}
@media only screen and (max-width: 1365px) {
  .gain .gainItem .pic {
    height: 163px;
  }
}
@media only screen and (max-width: 1279px) {
  .gain .gainItem .pic {
    height: 146px;
  }
}
@media only screen and (max-width: 1023px) {
  .gain .gainItem .pic {
    width: 24vw;
    height: 16vw;
  }
}
@media only screen and (max-width: 767px) {
  .gain .gainItem {
    padding: 10px;
  }
  .gain .gainItem a {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .gain .gainItem .pic {
    width: 100%;
    height: 57vw;
  }
  .gain .gainItem .name {
    font-size: 16px;
  }
  .gain .gainItem .text {
    width: 100%;
    padding: 15px 10px 10px;
  }
  .gain .gainItem .date .icon {
    width: 15px;
    height: 15px;
  }
}

.gainDetails {
  background: #fff;
  padding: max(60px, 1rem) 0 1.4rem;
}
.gainDetails .titleBox {
  border-bottom: 3px solid #2ca3a2;
  padding: 0 0 0.4rem;
}
.gainDetails .titleBox .title {
  text-align: center;
  margin: 0 2.2rem;
  font-size: max(22px, 0.42rem);
  font-weight: 400;
}
.gainDetails .titleBox .dateLy {
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.1rem;
  font-size: 16px;
  font-family: "HarmonyOS Sans SC Light", "Source Han Sans CN", "Arial";
  padding: 0.55rem 0 0;
}
.gainDetails .titleBox .dateLy p {
  gap: 10px;
}
.gainDetails .titleBox .icon {
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 767px) {
  .gainDetails .titleBox .title {
    margin: 0 5vw;
    font-size: 20px;
  }
  .gainDetails .titleBox .dateLy {
    font-size: 14px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .gainDetails .titleBox .dateLy p {
    width: 100%;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gainDetails .titleBox .icon {
    width: 14px;
    height: 14px;
  }
  .gainDetails .content {
    padding-top: 30px;
  }
}

.comDetailsContent {
  color: #333;
  line-height: 1.8;
  position: relative;
  text-align: justify;
  padding: 0.4rem 0 max(50px, 1.1rem);
  border-bottom: 1px solid #e6e6e6;
  font-size: max(14px, 0.18rem);
  font-family: "HarmonyOS Sans SC Light";
}
.comDetailsContent img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.comDetailsContent .backBox {
  left: 50%;
  top: 100%;
  position: absolute;
  padding: 0 0.3rem;
  background: #fff;
  -webkit-transform: translate(-50%, min(-20px, -0.3rem));
     -moz-transform: translate(-50%, min(-20px, -0.3rem));
      -ms-transform: translate(-50%, min(-20px, -0.3rem));
       -o-transform: translate(-50%, min(-20px, -0.3rem));
          transform: translate(-50%, min(-20px, -0.3rem));
}
.comDetailsContent .back {
  color: #333;
  font-size: 14px;
  font-family: "HarmonyOS Sans SC Light";
}
.comDetailsContent .iconBox {
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  border: 1px solid #e7e7e7;
  border-radius: 50%;
}
.comDetailsContent .iconBox .icon {
  width: max(20px, 0.28rem);
  height: max(18px, 0.25rem);
}
.comDetailsContent .iconName {
  line-height: 1;
  padding: 0.14rem 0 0;
}
@media only screen and (max-width: 767px) {
  .comDetailsContent {
    padding-top: 0;
  }
}

.comDetailsLinkBox {
  padding: 0.4rem 0 0;
}
.comDetailsLinkBox .linkItem {
  width: 5.15rem;
  line-height: 0.6rem;
  padding: 0 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #333;
}
.comDetailsLinkBox .linkItem:hover {
  color: #2ca3a2;
}
@media only screen and (max-width: 767px) {
  .comDetailsLinkBox {
    padding: 60px 0 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .comDetailsLinkBox .linkItem {
    width: 100%;
    padding: 0;
    border: 0 none;
    font-size: 14px;
  }
}

.notice {
  padding: 0 0 max(60px, 1.3rem);
}
.notice .tabBox {
  gap: 0.56rem;
  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: safe center;
     -moz-box-pack: safe center;
      -ms-flex-pack: safe center;
          justify-content: safe center;
  padding: max(30px, 0.5rem) 0;
}
.notice .tabBox .tabLink {
  color: #777;
  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;
  width: max(100px, 1.5rem);
  height: max(34px, 0.56rem);
  font-size: max(14px, 0.2rem);
  border-radius: max(17px, 0.28rem);
  background: #fff;
}
.notice .tabBox .tabLink:hover, .notice .tabBox .tabLink.active {
  background: #2ca3a2;
  color: #fff;
}
.notice .screen {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin: 0 30px 0 0;
}
.notice #dateCon {
  margin: 17px 0 0;
}
.notice #dateCon .layui-laydate,
.notice #dateCon .layui-laydate-main {
  width: 100%;
  border: 0 none;
}
.notice #dateCon .layui-laydate {
  padding: 0.35rem 0 0;
  border-radius: 0.1rem;
  background: -webkit-linear-gradient(top, #d7ecec, #fff 50%);
  background: -moz-linear-gradient(top, #d7ecec, #fff 50%);
  background: -o-linear-gradient(top, #d7ecec, #fff 50%);
  background: linear-gradient(to bottom, #d7ecec, #fff 50%);
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.05);
}
.notice #dateCon .layui-laydate .laydate-set-ym {
  color: #333;
  font-size: max(20px, 0.24rem);
  font-weight: bold;
}
.notice #dateCon .layui-laydate .laydate-day-mark::after {
  right: 50%;
  top: auto;
  bottom: 0;
  background: #2ca3a2;
  -webkit-transform: translateX(50%);
     -moz-transform: translateX(50%);
      -ms-transform: translateX(50%);
       -o-transform: translateX(50%);
          transform: translateX(50%);
}
.notice #dateCon th {
  padding: 0.4rem 0 0.3rem;
  font-size: 16px;
}
.notice #dateCon .layui-laydate-content {
  padding: 0 0.4rem 0.4rem;
}
.notice #dateCon .layui-laydate-content td {
  font-size: 16px;
  color: #3e5052;
}
.notice #dateCon .layui-laydate-content td.laydate-day-next, .notice #dateCon .layui-laydate-content td.laydate-day-prev {
  opacity: 0;
  visibility: hidden;
}
.notice #dateCon .layui-laydate-content td::before {
  width: 26px;
  height: 26px;
  left: 50%;
  top: 50%;
  content: "";
  opacity: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #2ca3a2;
  border-radius: 50%;
  z-index: -1;
}
.notice #dateCon .layui-laydate-content td:hover {
  background: none;
}
.notice #dateCon .layui-laydate-content td:hover::before {
  opacity: 0.2;
}
.notice #dateCon .layui-laydate-content td.layui-this {
  background: none !important;
  position: relative;
}
.notice #dateCon .layui-laydate-content td.layui-this::before {
  opacity: 1;
}
.notice #dateCon .layui-laydate-header {
  border: 0 none;
}
.notice #dateCon .layui-laydate-content table {
  width: 100%;
}
.notice #dateCon .layui-laydate-footer,
.notice #dateCon .laydate-prev-y,
.notice #dateCon .laydate-next-y {
  display: none;
}
.notice .listCon {
  width: -webkit-calc(100% - 30px - 380px);
  width: -moz-calc(100% - 30px - 380px);
  width: calc(100% - 30px - 380px);
}
.notice .newsListCon {
  width: 100%;
}
.notice .jzListCon .noticeSlideItem .text {
  padding-top: 0;
}
.notice .jzListCon .noticeSlideItem .text .title {
  margin-top: 0;
  font-family: "HarmonyOS Sans SC", "Source Han Sans CN";
}
.notice .jzListCon .noticeSlideItem .text .nr {
  font-size: max(14px, 0.16rem);
  font-family: "HarmonyOS Sans SC Light";
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .notice .jzListCon .noticeSlideItem .text {
    padding: 15px 0 0;
  }
}
.notice .jzListCon .ggPicPagination {
  bottom: 0.4rem;
}
.notice .jzListCon .listItem {
  padding: 0;
}
.notice .jzListCon .listItem a {
  padding: max(15px, 0.3rem) max(50px, 0.8rem) max(15px, 0.3rem) 0.42rem;
}
.notice .jzListCon .listItem .title {
  padding-left: 0;
  font-family: "HarmonyOS Sans SC", "Source Han Sans CN";
}
.notice .jzListCon .listItem .nr {
  padding-top: 0.15rem;
  font-size: max(14px, 0.16rem);
  font-family: "HarmonyOS Sans SC Light";
  line-height: 1.8;
}
@media only screen and (max-width: 479px) {
  .notice .jzListCon .listItem {
    padding-left: 12px;
  }
}
.notice .noticeSlideItem {
  padding: max(20px, 0.45rem) max(25px, 0.5rem);
  background: #fff;
  border-radius: 0.1rem;
}
.notice .noticeSlideItem .pic {
  width: 365px;
  height: 257px;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.notice .noticeSlideItem .pic img {
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.notice .noticeSlideItem .text {
  padding: 0.24rem 0.63rem 0 0;
  font-size: max(16px, 0.18rem);
  color: #333;
}
.notice .noticeSlideItem .text .date {
  color: #2ca3a2;
}
.notice .noticeSlideItem .text .title {
  font-size: max(20px, 0.28rem);
  font-weight: normal;
  line-height: 1.4;
  margin: 0.1rem 0;
}
.notice .noticeSlideItem .text p {
  font-family: "HarmonyOS Sans SC Light";
  line-height: 1.8;
}
.notice .noticeSlideItem:hover .pic img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}
.notice .ggPicPagination {
  left: 0;
  bottom: 0.6rem;
  top: auto;
  text-align: left;
  padding-left: max(25px, 0.5rem);
}
.notice .ggPicPagination .swiper-pagination-bullet {
  width: max(6px, 0.1rem);
  height: max(6px, 0.1rem);
  background: #cfcfcf;
  opacity: 1;
}
.notice .ggPicPagination .swiper-pagination-bullet-active {
  background: #2ca3a2;
}
.notice .list {
  padding: 20px 0 0;
  gap: 20px;
  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;
}
.notice .listItem {
  position: relative;
  background: #fff;
  border-radius: 0.1rem;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: max(15px, 0.3rem) max(50px, 0.8rem) max(15px, 0.3rem) 6px;
}
.notice .listItem .date {
  width: 1.5rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #2ca3a2;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: max(16px, 0.18rem);
  font-family: "MiSans-Light", "HarmonyOS Sans SC Light", "Source Han Sans CN", "Arial";
}
.notice .listItem .date .day {
  font-size: max(32px, 0.48rem);
}
.notice .listItem .date::after {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
  position: absolute;
  background: #e6e6e6;
}
.notice .listItem .title {
  color: #333;
  padding-left: 0.42rem;
  font-size: max(20px, 0.24rem);
  font-family: "HarmonyOS Sans SC Light", "Source Han Sans CN", "Arial";
}
.notice .listItem .iconJt {
  right: 0.6rem;
  top: 50%;
  width: 14px;
  height: 24px;
  position: absolute;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.notice .listItem:hover {
  box-shadow: 0px 10px 30px 0px rgba(54, 167, 166, 0.1);
}
.notice .listItem:hover .title {
  color: #2ca3a2;
}
.notice .layui-laydate-header i:hover,
.notice .layui-laydate-header span:hover {
  color: #2ca3a2;
}
@media only screen and (max-width: 1365px) {
  .notice .listCon {
    width: -webkit-calc(100% - 30px - 340px);
    width: -moz-calc(100% - 30px - 340px);
    width: calc(100% - 30px - 340px);
  }
  .notice .newsListCon {
    width: 100%;
  }
  .notice #dateCon .layui-laydate-content {
    padding: 0 0.2rem 0.2rem;
  }
  .notice .noticeSlideItem {
    padding: 20px;
  }
  .notice .noticeSlideItem .pic {
    width: 270px;
    height: 189px;
  }
  .notice .ggPicPagination {
    padding-left: 0.2rem;
    bottom: 0.4rem;
  }
}
@media only screen and (max-width: 1365px) {
  .notice .listItem .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .notice .noticeSlideItem .text {
    font-size: 14px;
  }
  .notice .noticeSlideItem .text p {
    line-height: 1.6;
  }
  .notice .noticeSlideItem .text .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1023px) {
  .notice .screen {
    width: 100%;
    margin-right: 0;
  }
  .notice .content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .notice .listCon {
    width: 100%;
    padding: 30px 0 0;
  }
  .notice .listItem .date {
    width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .notice .ggPicSwiper {
    padding: 0 0 30px;
  }
  .notice .noticeSlideItem a {
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .notice .noticeSlideItem .pic {
    width: 100%;
    height: 58vw;
  }
  .notice .ggPicPagination {
    padding: 0;
    text-align: center;
    bottom: 0;
  }
}
@media only screen and (max-width: 479px) {
  .notice .tabBox {
    gap: 10px;
  }
  .notice .tabBox .tabLink {
    height: 30px;
  }
  .notice .layui-laydate-header {
    padding-left: 30px;
    padding-right: 30px;
  }
  .notice .layui-laydate-header i.laydate-prev-m {
    left: 20px;
  }
  .notice .layui-laydate-header i.laydate-next-m {
    right: 20px;
  }
  .notice #dateCon .layui-laydate-content {
    padding: 0 5px 5px;
  }
  .notice .noticeSlideItem {
    padding: 12px;
  }
  .notice .noticeSlideItem .text p {
    line-height: 1.6;
  }
  .notice .noticeSlideItem .text .title {
    font-size: 16px;
  }
  .notice .list {
    gap: 10px;
  }
  .notice .listItem {
    padding: 10px 30px 10px 15px;
  }
  .notice .listItem a {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .notice .listItem .date {
    width: 100%;
    font-size: 14px;
    -webkit-flex-direction: row-reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .notice .listItem .date::after {
    display: none;
  }
  .notice .listItem .date .day {
    font-size: 14px;
  }
  .notice .listItem .date .day::before {
    content: "-";
  }
  .notice .listItem .title {
    padding-left: 0;
  }
  .notice .listItem .iconJt {
    right: 12px;
    width: 8px;
    height: auto;
  }
}

.mnSelect {
  width: 380px;
  height: 72px;
  z-index: 10;
  position: relative;
  border-radius: 10px;
  padding: 0 50px 0 25px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.mnSelect .jtIcon {
  width: 9px;
  height: 6px;
  right: 30px;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mnSelect .showText {
  width: 100%;
  line-height: 72px;
  font-size: 18px;
  color: #999;
}
.mnSelect .show.on .showText {
  color: #333;
}
.mnSelect .hide {
  width: 100%;
  left: 0;
  top: 100%;
  max-height: 320px;
  overflow-y: auto;
  position: absolute;
  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;
  padding: 20px 25px;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  display: none;
}
.mnSelect .hide a {
  color: #333;
  display: block;
  line-height: 2.4;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
@media only screen and (max-width: 1365px) {
  .mnSelect {
    width: 340px;
  }
}
@media only screen and (max-width: 1024px) {
  .mnSelect .showText {
    font-size: 16px;
  }
  .mnSelect .hide {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1023px) {
  .mnSelect {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .mnSelect {
    height: 54px;
  }
  .mnSelect .showText {
    line-height: 54px;
  }
}
@media only screen and (max-width: 479px) {
  .mnSelect {
    padding: 0 30px 0 12px;
    height: 44px;
  }
  .mnSelect .showText {
    line-height: 44px;
  }
}

.noticeDetailsTop {
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/noticeDetailsTopBg.jpg");
  background-attachment: scroll;
}
.noticeDetailsTop .crumbs {
  background: none;
}
.noticeDetailsTop .titleBox {
  padding: 1rem 0 1.15rem;
}
.noticeDetailsTop .titleBox .title {
  font-size: max(22px, 0.52rem);
  font-weight: normal;
}
.noticeDetailsTop .titleBox .dateLy {
  row-gap: 0.1rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 0.45rem 0 0;
  font-size: 16px;
  font-family: "HarmonyOS Sans SC Light", "Source Han Sans CN", "Arial";
}
.noticeDetailsTop .titleBox .dateLy .icon {
  width: 18px;
  height: 18px;
}
.noticeDetailsTop .titleBox .dateLy p {
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .noticeDetailsTop .titleBox .title {
    font-size: 20px;
  }
  .noticeDetailsTop .titleBox .title br {
    display: none;
  }
  .noticeDetailsTop .titleBox .dateLy {
    font-size: 14px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .noticeDetailsTop .titleBox .dateLy .icon {
    width: 14px;
    height: 14px;
  }
  .noticeDetailsTop .titleBox .dateLy p {
    gap: 4px;
  }
}

.noticeDetails {
  background: #fff;
  padding-bottom: 1.47rem;
  padding-top: max(60px, 0.92rem);
}

.contactList {
  gap: max(20px, 0.3rem);
  padding: max(60px, 1.2rem) 0 max(60px, 1.3rem);
}
.contactList .contactListItem {
  width: -webkit-calc((100% - max(20px, 0.3rem) * 2) / 3);
  width: -moz-calc((100% - max(20px, 0.3rem) * 2) / 3);
  width: calc((100% - max(20px, 0.3rem) * 2) / 3);
  padding: 0.6rem;
  background: #fff;
  border-radius: 0.1rem;
  position: relative;
  box-shadow: -7px 7px 30px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.contactList .contactListItem .gzhBox .ewm {
  display: block;
  width: max(100px, 1.3rem);
  height: max(100px, 1.3rem);
}
.contactList .contactListItem .icon {
  width: max(30px, 0.46rem);
  height: max(37px, 0.56rem);
  position: relative;
}
.contactList .contactListItem .icon img {
  width: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.contactList .contactListItem .icon img.on {
  opacity: 0;
  visibility: hidden;
}
.contactList .contactListItem .icons {
  stroke: #2ca3a2;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.contactList .contactListItem .name {
  color: #333;
  position: relative;
  font-size: max(18px, 0.26rem);
  padding: max(15px, 0.3rem) 0 max(18px, 0.24rem);
}
.contactList .contactListItem .name::after {
  width: 24px;
  height: 3px;
  left: 50%;
  bottom: 0;
  content: "";
  background: #2ca3a2;
  position: absolute;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contactList .contactListItem .text {
  height: -webkit-calc(2em + max(28px, 0.22rem));
  height: -moz-calc(2em + max(28px, 0.22rem));
  height: calc(2em + max(28px, 0.22rem));
  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;
  text-align: center;
  font-size: max(14px, 0.2rem);
  font-family: "HarmonyOS Sans SC Light", "HarmonyOS Sans SC", "Microsoft Yahei";
  padding: max(20px, 0.22rem) 0 0;
}
.contactList .contactListItem * {
  position: relative;
  z-index: 2;
}
.contactList .contactListItem::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/contactItemBg.jpg");
  background-attachment: scroll;
}
.contactList .contactListItem:hover .icons {
  stroke: #fff;
}
.contactList .contactListItem:hover .icon img {
  opacity: 0;
  visibility: hidden;
}
.contactList .contactListItem:hover .icon img.on {
  opacity: 1;
  visibility: visible;
}
.contactList .contactListItem:hover .name {
  color: #fff;
}
.contactList .contactListItem:hover .name::after {
  background: #fff;
}
.contactList .contactListItem:hover .text {
  color: #fff;
}
.contactList .contactListItem:hover::after {
  opacity: 1;
}
@media only screen and (max-width: 959px) {
  .contactList .contactListItem .text br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .contactList .contactListItem {
    width: 100%;
  }
}

.contactForm {
  background-color: #fff;
  padding: max(60px, 1.13rem) 0 1.3rem;
  -o-background-size: 100% auto;
     background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url("../images/contactBg.jpg");
  background-attachment: scroll;
}
.contactForm .layui-input-block {
  margin: 0;
}
.contactForm .layui-form-select .layui-edge {
  display: none;
}
.contactForm .contactTitleBox {
  text-align: center;
  position: relative;
  padding: 0 0 max(15px, 0.26rem);
}
.contactForm .contactTitleBox::after {
  width: 32px;
  height: 4px;
  left: 50%;
  bottom: 0;
  content: "";
  border-radius: 2px;
  position: absolute;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background: -moz-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background: -o-linear-gradient(left, #2ca3a2 0%, #9ffffe 100%);
  background: linear-gradient(90deg, #2ca3a2 0%, #9ffffe 100%);
}
.contactForm .contactTitleBox .title {
  font-size: max(22px, 0.28rem);
  font-weight: 400;
}
.contactForm .contactTitleBox p {
  color: #666666;
  padding-top: 7px;
  font-size: 16px;
  font-family: "HarmonyOS Sans SC Light", "Source Han Sans CN", "Arial";
}
.contactForm .form {
  row-gap: max(10px, 0.17rem);
  -webkit-column-gap: max(10px, 0.14rem);
     -moz-column-gap: max(10px, 0.14rem);
          column-gap: max(10px, 0.14rem);
  padding: 0.4rem 0 0;
  font-size: max(14px, 0.18rem);
}
.contactForm .form .layui-input,
.contactForm .form .select,
.contactForm .form .layui-textarea {
  width: 100%;
  height: max(38px, 0.66rem);
  background: #fff;
  padding: 0 0.28rem;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  resize: none;
}
.contactForm .form .layui-input:hover, .contactForm .form .layui-input:focus,
.contactForm .form .select:hover,
.contactForm .form .select:focus,
.contactForm .form .layui-textarea:hover,
.contactForm .form .layui-textarea:focus {
  color: #2ca3a2;
  border-color: #2ca3a2 !important;
}
.contactForm .form .inputItem {
  margin-bottom: 0;
  width: -webkit-calc((100% - max(10px, 0.14rem) * 3) / 4);
  width: -moz-calc((100% - max(10px, 0.14rem) * 3) / 4);
  width: calc((100% - max(10px, 0.14rem) * 3) / 4);
}
.contactForm .selectBox {
  position: relative;
}
.contactForm .selectBox .iconfont {
  right: 0.3rem;
  top: 50%;
  color: rgba(0, 0, 0, 0.2);
  position: absolute;
  font-size: max(14px, 0.16rem);
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contactForm .selectBox .icon {
  width: 9px;
  height: 6px;
  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%);
}
.contactForm .textareaItem {
  width: 100%;
}
.contactForm .textareaItem .layui-textarea {
  height: 2.4rem;
  padding: 0.2rem 0.28rem;
}
.contactForm .btnBox {
  width: 100%;
  padding: 0.3rem 0 0;
}
.contactForm .formButton {
  color: #fff;
  margin: 0 auto;
  font-size: 16px;
  width: auto;
  height: max(34px, 0.44rem);
  color: #fff;
  border-radius: max(17px, 0.22rem);
  background: #2ca3a2;
  border: 0 none;
  line-height: max(34px, 0.44rem);
  -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 0.48rem;
}
.contactForm .formButton: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;
}
.contactForm .formButton: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;
}
.contactForm .formButton.noHover:hover {
  color: #fff;
  border: 0 none;
  background: #2ca3a2;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
.contactForm .formButton b {
  font-weight: 400;
}
@media screen and (max-width: 1679px) {
  .contactForm .formButton {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .contactForm .formButton {
    font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  .contactForm .form .inputItem {
    width: -webkit-calc((100% - max(10px, 0.14rem)) / 2);
    width: -moz-calc((100% - max(10px, 0.14rem)) / 2);
    width: calc((100% - max(10px, 0.14rem)) / 2);
  }
}
@media screen and (max-width: 479px) {
  .contactForm .form .inputItem {
    width: 100%;
  }
}

.jiangzuo .gTreeSelect {
  width: 380px;
}
.jiangzuo .gTreeSelect .showText {
  line-height: max(56px, 0.72rem);
}
.jiangzuo .gTreeSelect .hideBox {
  width: 100%;
}
.jiangzuo .gTreeSelect .hideItem {
  line-height: max(56px, 0.72rem);
}
.jiangzuo .gTreeSelect .two {
  width: 70%;
  line-height: max(56px, 0.72rem);
}
@media only screen and (max-width: 1023px) {
  .jiangzuo .gTreeSelect {
    width: 100%;
  }
}

.gTreeSelect {
  width: 560px;
  max-width: 100%;
  background: #fff;
  padding: 0 50px 0 25px;
  position: relative;
  border-radius: 0.1rem;
  z-index: 10;
  margin: 10px 0 0;
  font-size: 16px;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.gTreeSelect .showText {
  width: 100%;
  line-height: 50px;
  display: block;
}
.gTreeSelect .iconJt {
  width: 9px;
  height: 7px;
  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%);
}
.gTreeSelect .hideBox {
  width: 50%;
  left: 0;
  display: none;
  top: -webkit-calc(100% + 10px);
  top: -moz-calc(100% + 10px);
  top: calc(100% + 10px);
  position: absolute;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0 25px;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.gTreeSelect .hideItem {
  cursor: pointer;
  line-height: 72px;
  border-bottom: 1px solid #f2f4f5;
}
.gTreeSelect .hideItem:nth-last-child(2) {
  border: 0 none;
}
.gTreeSelect .hideItem a {
  color: #666666;
}
.gTreeSelect .hideItem:hover > a {
  color: #2ca3a2;
}
.gTreeSelect .hideItem::after {
  right: 215px;
  top: 50%;
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 8px solid #91cbca;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gTreeSelect .hideItem.hover a {
  color: #2ca3a2;
}
.gTreeSelect .hideItem.hover::after {
  opacity: 1;
}
.gTreeSelect .two {
  left: -webkit-calc(100% + 5px);
  left: -moz-calc(100% + 5px);
  left: calc(100% + 5px);
  top: 0;
  width: -webkit-calc(100% - 5px);
  width: -moz-calc(100% - 5px);
  width: calc(100% - 5px);
  display: none;
  position: absolute;
  line-height: 72px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 0.1rem;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.gTreeSelect .two a {
  display: block;
  border-bottom: 1px solid #f2f4f5;
}
.gTreeSelect .two a:hover {
  color: #2ca3a2;
}
.gTreeSelect .two a:last-child {
  border: 0 none;
}
@media screen and (max-width: 959px) {
  .gTreeSelect .hideBox {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
  }
  .gTreeSelect .hideItem {
    line-height: 56px;
  }
  .gTreeSelect .hideItem .two {
    position: static;
    height: auto;
    max-height: none;
    width: 100%;
    padding: 0;
    box-shadow: none;
    font-size: 14px;
  }
  .gTreeSelect .hideItem .two a {
    padding: 0 20px;
  }
  .gTreeSelect .two {
    line-height: 40px;
  }
}
@media screen and (max-width: 479px) {
  .gTreeSelect {
    padding: 0 30px 0 15px;
  }
  .gTreeSelect .iconJt {
    right: 15px;
  }
}

.product {
  padding: 48px 0 max(60px, 1.3rem);
}
.product .filter {
  position: relative;
  z-index: 10;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product .searchBox {
  width: 560px;
  width: 49%;
  max-width: 100%;
  height: 50px;
  background: #fff;
  padding: 0 50px 0 25px;
  position: relative;
  border-radius: 0.1rem;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.product .searchBox input {
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.product .searchBox .searchBtn {
  width: 16px;
  height: 16px;
  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/searchBold.svg");
  background-attachment: scroll;
  background-color: transparent;
}
.product .gTreeSelect {
  width: 49%;
  max-width: 100%;
  background: #fff;
  padding: 0 50px 0 25px;
  position: relative;
  border-radius: 0.1rem;
  z-index: 10;
  margin: 0;
  font-size: 16px;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.product .gTreeSelect .showText {
  width: 100%;
  line-height: 50px;
  display: block;
}
.product .gTreeSelect .iconJt {
  width: 9px;
  height: 7px;
  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%);
}
.product .gTreeSelect .hideBox {
  width: 50%;
  left: 0;
  display: none;
  top: -webkit-calc(100% + 10px);
  top: -moz-calc(100% + 10px);
  top: calc(100% + 10px);
  position: absolute;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0 25px;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.product .gTreeSelect .hideItem {
  cursor: pointer;
  line-height: 72px;
  border-bottom: 1px solid #f2f4f5;
}
.product .gTreeSelect .hideItem:nth-last-child(2) {
  border: 0 none;
}
.product .gTreeSelect .hideItem a {
  color: #666666;
}
.product .gTreeSelect .hideItem:hover > a {
  color: #2ca3a2;
}
.product .gTreeSelect .hideItem::after {
  right: 215px;
  top: 50%;
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 8px solid #91cbca;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.product .gTreeSelect .hideItem.hover a {
  color: #2ca3a2;
}
.product .gTreeSelect .hideItem.hover::after {
  opacity: 1;
}
.product .gTreeSelect .two {
  left: -webkit-calc(100% + 5px);
  left: -moz-calc(100% + 5px);
  left: calc(100% + 5px);
  top: 0;
  width: -webkit-calc(420px - 5px);
  width: -moz-calc(420px - 5px);
  width: calc(420px - 5px);
  display: none;
  position: absolute;
  line-height: 72px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 0.1rem;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0px 0px 40px 0px rgba(203, 203, 203, 0.35);
}
.product .gTreeSelect .two a {
  display: block;
  border-bottom: 1px solid #f2f4f5;
}
.product .gTreeSelect .two a:hover {
  color: #2ca3a2;
}
.product .gTreeSelect .two a:last-child {
  border: 0 none;
}
.product .productList {
  gap: 25px;
  padding: 40px 0 0;
}
.product .productItem {
  width: max((100% - 50px) / 3);
  padding: max(20px, 0.4rem);
  border: 1px solid #dee2e6;
  border-radius: 0.12rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.product .productItem .pic {
  width: 100%;
  height: 276px;
  overflow: hidden;
}
.product .productItem .text {
  text-align: center;
  position: relative;
  z-index: 5;
  padding-top: max(5px, 0.2rem);
}
.product .productItem .name {
  font-size: max(18px, 0.24rem);
  font-weight: 400;
}
.product .productItem .enName {
  font-size: 14px;
  color: #999;
}
.product .productItem .btnBox {
  gap: 0.13rem;
  padding: max(15px, 0.25rem) 0 0;
}
.product .productItem .btnBox a {
  font-size: 14px;
  width: auto;
  height: 36px;
  color: #fff;
  border-radius: 18px;
  background: none;
  border: 2px solid #9d9d9d;
  line-height: 36px;
  -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 0.25rem;
  color: #9d9d9d;
  line-height: 32px;
}
@media screen and (max-width:1280px){
.product .productItem .btnBox a{font-size:12px}
}
.product .productItem .btnBox a: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: none;
  opacity: 1;
}
.product .productItem .btnBox a: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;
}
.product .productItem .btnBox a.noHover:hover {
  color: #fff;
  border: 2px solid #9d9d9d;
  background: none;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
.product .productItem::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background: -webkit-linear-gradient(bottom, #2ca3a2, rgba(255, 255, 255, 0) 60%);
  background: -moz-linear-gradient(bottom, #2ca3a2, rgba(255, 255, 255, 0) 60%);
  background: -o-linear-gradient(bottom, #2ca3a2, rgba(255, 255, 255, 0) 60%);
  background: linear-gradient(to top, #2ca3a2, rgba(255, 255, 255, 0) 60%);
}
.product .productItem:hover {
  border-color: #fff;
}
.product .productItem:hover::after {
  opacity: 1;
}
.product .productItem:hover .name,
.product .productItem:hover .enName {
  color: #fff;
}
.product .productItem:hover .btnBox a {
  border-color: #fff;
  color: #fff;
}
.product .productItem:hover .btnBox a:hover {
  color: #2ca3a2;
  background: #fff;
}
@media only screen and (max-width: 1679px) {
  .product .productItem .pic {
    height: 238px;
  }
}
@media only screen and (max-width: 1439px) {
  .product .productItem .pic {
    height: 244px;
  }
}
@media only screen and (max-width: 1365px) {
  .product .productItem .pic {
    height: 200px;
  }

}

@media only screen and (max-width: 1023px) {
  .product .productItem .btnBox a {
    height: 30px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 959px) {
  .product .filter {
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 15px;
  }
  .product .productList {
    gap: 20px;
  }
  .product .productItem {
    width: max((100% - 20px) / 2);
  }
  .product .productItem .pic {
    height: 21.5vw;
  }
  .product .searchBox {
    width: 100%;
  }
  .product .gTreeSelect {
    width: 100%;
  }
  .product .gTreeSelect .hideBox {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
  }
  .product .gTreeSelect .hideItem {
    line-height: 56px;
  }
  .product .gTreeSelect .hideItem .two {
    position: static;
    height: auto;
    max-height: none;
    width: 100%;
    padding: 0;
    box-shadow: none;
    font-size: 14px;
  }
  .product .gTreeSelect .hideItem .two a {
    padding: 0 20px;
  }
  .product .gTreeSelect .two {
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .product .twoBox {
    display: none;
  }
  .aboutTwoContent .aboutImgText table{display:block;overflow-x:auto}
}
@media only screen and (max-width: 559px) {
  .product .productItem {
    width: 100%;
  }
  .product .productItem .pic {
    height: 55vw;
  }
}
@media only screen and (max-width: 479px) {
  .product .searchBox {
    padding: 0 40px 0 15px;
  }
  .product .searchBox .searchBtn {
    right: 15px;
  }
  .product .gTreeSelect {
    padding: 0 30px 0 15px;
  }
  .product .gTreeSelect .iconJt {
    right: 15px;
  }
}

.productDetails .basicData {
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/basicDataBg.jpg");
  background-attachment: scroll;
}
.productDetails .basicData .top {
  height: max(60px, 1rem);
  border-bottom: 1px solid #e4e4e4;
}
.productDetails .basicData .top .back {
  gap: 0.17rem;
  color: #333;
  font-size: 16px;
}
.productDetails .basicData .top .back .cls-1 {
  stroke: #2ca3a2;
}
.productDetails .basicData .top .back:hover {
  color: #2ca3a2;
}
.productDetails .basicData .top .linkBox {
  gap: 0.4rem;
  font-size: 16px;
}
.productDetails .basicData .top .linkBox .linkItem {
  color: #333;
}
.productDetails .basicData .top .linkBox .linkItem:hover, .productDetails .basicData .top .linkBox .linkItem.on {
  color: #2ca3a2;
}
.productDetails .basicData .con {
  padding: max(50px, 0.8rem) 0 max(80px, 1.23rem);
}
.productDetails .basicData .con .pic {
  width: 600px;
  height: 424px;
  overflow: hidden;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.productDetails .basicData .con .text {
  width: 700px;
  padding: 0.25rem 0 0;
}
.productDetails .basicData .con .title {
  font-size: max(22px, 0.34rem);
  font-weight: 600;
  color: #333;
}
.productDetails .basicData .con .enTitle {
  font-size: max(18px, 0.26rem);
  font-family: "HarmonyOS Sans SC Light", "Source Han Sans CN", "Arial";
}
.productDetails .basicData .con .infoBox {
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: max(10px, 0.3rem) 0 0;
}
.productDetails .basicData .con .infoItem {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #808080;
  line-height: 1.4;
  margin: 0!important;
  font-size: max(14px, 0.18rem);
}
.productDetails .basicData .con .infoItem .infoName {
  width: max(70px, 0.9rem);
  text-align: justify;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
}
.productDetails .basicData .con .infoItem .infoName::after {
  content: "";
  width: 100%;
  line-height: 1;
  display: inline-block;
}
.productDetails .basicData .con .infoItem.two {
  width: 2.9rem;
}
.productDetails .basicData .con .infoItem.two:nth-child(2n-1) {
  width: 40%;
}
.productDetails .basicData .con .infoItem.two:nth-child(2n) {
  width: 55%;
}
.productDetails .basicData .con .infoItem:nth-child(n+3){width:100%!important;}
.productDetails .basicData .con .infoItem:nth-child(n+3) span{width:auto!important;margin-right:15px!important}
.productDetails .basicData .con .infoItem.two p {
  word-wrap: anywhere;
}
@media screen and (max-width:768px){
.productDetails .basicData .con .infoItem{width:100%!important }
.productDetails .basicData .con .infoItem:nth-child(n+3) span{width:auto!important;margin-right:10px!important}
.productDetails .basicData .con .infoItem span{width: auto!important;margin-right:10px!important }
.productDetails .infoContent .tabBox{gap:0px!important;text-align:center}
.productDetails .infoContent .tabBox .tabClick{padding:10px 5px!important}
.productDetails .basicData .top{height:auto!important;display:block!important;padding:10px 0px!important }
.productDetails .basicData .top .back{width:100%;}
.productDetails .basicData .top .linkBox{display:block!important}
}
.productDetails .basicData .con .infoItem .email {
  color: #2ca3a2;
}
.productDetails .basicData .con .btnBox {
  padding: 0.3rem 0 0;
}
.productDetails .basicData .con .btn {
  width: auto;
  height: max(32px, 0.4rem);
  color: #fff;
  border-radius: max(16px, 0.2rem);
  background: #2ca3a2;
  border: 0 none;
  line-height: max(32px, 0.4rem);
  -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 0.38rem;
}
.productDetails .basicData .con .btn: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;
}
.productDetails .basicData .con .btn: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;
}
.productDetails .basicData .con .btn.noHover:hover {
  color: #fff;
  border: 0 none;
  background: #2ca3a2;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
.productDetails .infoContent {
  padding-bottom: max(50px, 0.7rem);
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/productBotBg.jpg");
  background-attachment: scroll;
}
.productDetails .infoContent .content {
  top: min(-25px, -0.42rem);
  position: relative;
  background: #fff;
  border-radius: 0.1rem;
  padding: 0 max(15px, 0.27rem) max(60px, 1.1rem);
  box-shadow: 0px 20px 20px 0px rgba(186, 189, 197, 0.12);
}
.productDetails .infoContent .tabBox {
  gap: 0.48rem;
  border-bottom: 1px solid #efefef;
}
.productDetails .infoContent .tabBox .tabClick {
  height: 1.38rem;
  padding: 0 0.7rem;
  position: relative;
}
.productDetails .infoContent .tabBox .tabClick .icon {
  position: relative;
  width: max(24px, 0.34rem);
  height: max(24px, 0.34rem);
}
.productDetails .infoContent .tabBox .tabClick .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.productDetails .infoContent .tabBox .tabClick .icon img.iconImgs {
  opacity: 0;
}
.productDetails .infoContent .tabBox .tabClick::after {
  width: 100%;
  left: 0;
  bottom: -1px;
  content: "";
  height: 2px;
  position: absolute;
  background: #2ca3a2;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.productDetails .infoContent .tabBox .tabClick:hover, .productDetails .infoContent .tabBox .tabClick.active {
  color: #2ca3a2;
}
.productDetails .infoContent .tabBox .tabClick:hover .icon img.iconImgs, .productDetails .infoContent .tabBox .tabClick.active .icon img.iconImgs {
  opacity: 1;
}
.productDetails .infoContent .tabBox .tabClick:hover .icon img.iconImg, .productDetails .infoContent .tabBox .tabClick.active .icon img.iconImg {
  opacity: 0;
}
.productDetails .infoContent .tabBox .tabClick:hover::after, .productDetails .infoContent .tabBox .tabClick.active::after {
  opacity: 1;
}
.productDetails .infoContent .tabBox .tabClick strong {
  padding: 0.15rem 0 0;
  font-size: max(16px, 0.2rem);
  font-family: "HarmonyOS Sans SC Light", "Source Han Sans CN", "Arial";
}
.productDetails .infoContent .tabItemBox {
  padding: 0.9rem 0.3rem 0;
}
.productDetails .infoContent .item {
  color: #666;
  display: none;
  line-height: 1.4;
  font-size: max(14px, 0.18rem);
  line-height: 1.4;
}
.productDetails .infoContent .item p {
  margin: 0 0 0.38rem;
}
.productDetails .infoContent .item p .index {
  font-size: max(14px, 0.18rem);
  width: 20px;
  height: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border-radius: 50%;
  -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;
  margin: 0 0.1rem 0 0;
  border: 1px solid #666;
}
@media only screen and (max-width: 1679px) {
  .productDetails .basicData .con .pic {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 500px;
    height: 353px;
  }
  .productDetails .basicData .con .text {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1439px) {
  .productDetails .basicData .con .infoItem.two {
    width: 45%;
  }
}
@media only screen and (max-width: 1365px) {
  .productDetails .basicData .con .pic {
    width: 420px;
    height: 297px;
  }
}
@media only screen and (max-width: 1023px) {
  .productDetails .basicData .con .infoItem {
    margin-bottom: 0;
  }
  .productDetails .basicData .con .infoItem.two {
    width: 100%;
  }
  .productDetails .infoContent .tabBox {
    gap: 15px;
  }
  .productDetails .infoContent .tabBox .tabClick {
    padding: 0 15px;
  }
  .productDetails .infoContent .tabBox .tabClick .icon {
    width: 18px;
    height: 18px;
  }
  .productDetails .infoContent .item p .index {
    width: 16px;
    height: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .productDetails .basicData .con {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .productDetails .basicData .con .pic {
    width: 100%;
    height: 55vw;
    padding: 0;
    margin: 0 auto;
  }
  .productDetails .basicData .con .text {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .productDetails .basicData .con .pic {
    height: 60vw;
  }
  .productDetails .basicData .top .back {
    font-size: 14px;
  }
  .productDetails .basicData .top .back svg {
    width: 7px;
  }
  .productDetails .basicData .top .linkBox {
    gap: 5px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 559px) {
  .productDetails .basicData .con .pic {
    height: 59vw;
  }
  .productDetails .infoContent .tabBox {
    gap: 10px;
  }
  .productDetails .infoContent .tabBox .tabClick {
    padding: 0 5px;
  }
  .productDetails .infoContent .tabBox .tabClick strong {
    font-size: 14px;
  }
  .productDetails .infoContent .tabItemBox {
    padding: 30px 10px 0;
  }
}
@media only screen and (max-width: 479px) {
  .productDetails .basicData .top .linkBox {
    font-size: 12px;
  }
  .productDetails .basicData .con .title {
    font-size: 20px;
  }
  .productDetails .basicData .con .enTitle {
    font-size: 14px;
  }
}

.privacy {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.privacy .privacyLeft {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: max(275px, 3.7rem);
  padding-right: max(15px, 0.3rem);
}
.privacy .privacyLeft .itemBox {
  top: 100px;
  position: sticky;
}
.privacy .privacyLeft .item {
  width: 100%;
  display: block;
  position: relative;
  color: #333;
  border-radius: 5px;
  font-size: max(14px, 0.16rem);
  padding: 0.15rem 40px 0.15rem 20px;
}
.privacy .privacyLeft .item .iconfont {
  right: 20px;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  color: #2ca3a2;
  position: absolute;
  -webkit-transform: translate(-20px, -50%);
     -moz-transform: translate(-20px, -50%);
      -ms-transform: translate(-20px, -50%);
       -o-transform: translate(-20px, -50%);
          transform: translate(-20px, -50%);
}
.privacy .privacyLeft .item.active, .privacy .privacyLeft .item:hover {
  background: #f5f5f7;
}
.privacy .privacyLeft .item.active .iconfont, .privacy .privacyLeft .item:hover .iconfont {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.privacy .privacyRight {
  color: #999;
  padding-left: 0.5rem;
  border-left: 1px solid #dee2e6;
}
.privacy .privacyRight .textItem {
  margin-bottom: max(30px, 0.6rem);
}
.privacy .privacyRight .textItem:last-child {
  margin-bottom: 0;
}
.privacy .privacyRight .nameBox {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #333;
  position: relative;
  margin: 0 0 max(15px, 0.3rem);
  padding: 0 0 max(20px, 0.3rem);
  font-size: max(16px, 0.26rem);
  border-bottom: 1px solid #dee2e6;
}
.privacy .privacyRight .nameBox::after {
  width: 1.2rem;
  height: 1px;
  left: 0;
  bottom: -1px;
  content: "";
  background: #2ca3a2;
  position: absolute;
}
.privacy .privacyRight .nr {
  line-height: 1.8;
  font-size: max(14px, 0.2rem);
  text-align: justify;
}

.searchPage {
  background: #fff;
}

.appMap {
  padding: max(60px, 1rem) 0;
}
.appMap .listBox {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.appMap .listBox::before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 0.4rem;
  content: "";
  position: absolute;
  background: #dee2e6;
}
.appMap .listBox li {
  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-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.appMap .listBox .twoNav {
  font-size: 16px;
}
.appMap .listBox .twoNav a {
  display: block;
  padding: 0 15px;
  line-height: 40px;
  margin: 0 0 10px;
  background: #f5f5f7;
  border-radius: 5px;
  text-align: center;
}
.appMap .listBox .twoNav a:last-child {
  margin: 0;
}
.appMap .listBox .twoNav a:hover {
  color: #fff;
  background: #2ca3a2;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.appMap .listBox .name {
  padding: 0 0 0.4rem;
  font-size: max(16px, 0.22rem);
}
.appMap .listBox .name a {
  color: #333;
}

.searchPageTop {
  background-color: #f2f2f2;
}
.searchPageTop .form {
  position: relative;
  width: 100%;
  max-width: 7.2rem;
  margin: 0 auto;
  background-color: #fff;
  height: 0.8rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.searchPageTop .form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.3rem;
  color: #3e4247;
  font-size: max(14px, 0.18rem);
}
.searchPageTop .form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8rem;
  height: 0.8rem;
  cursor: pointer;
  background: none;
  border: 0 none;
  font-size: 26px;
  color: #333;
  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;
}
.searchPageTop .form button .iconfont {
  width: max(20px, 0.34rem);
  height: max(20px, 0.34rem);
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search.svg");
  background-attachment: scroll;
}
.searchPageTop .radiomod {
  margin-top: 0.32rem;
  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;
  grid-gap: 0.32rem;
}
.searchPageTop .radiomod .item {
  cursor: pointer;
  font-size: max(14px, 0.18rem);
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #3e4247;
  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;
  cursor: pointer;
}
.searchPageTop .radiomod input {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 3px #fff solid;
}
.searchPageTop .radiomod input[type=radio] {
  border: 4px #fff solid;
  background: #f4f4f4;
  border-radius: 50%;
}
.searchPageTop .radiomod input[type=radio]:checked {
  background: #2ca3a2;
  border: 4px #fff solid;
}

.searchListCon .tips {
  text-align: center;
  font-size: 0.32rem;
  color: #353844;
}
.searchListCon .tips span {
  color: #2ca3a2;
}
.searchListCon .searchList {
  margin: 0.24rem 0 0.4rem;
}
.searchListCon .searchItem {
  position: relative;
}
.searchListCon .searchItem a {
  position: relative;
  display: block;
  padding: 0.4rem 0;
}
.searchListCon .searchItem .tit {
  margin: 0.24rem 0;
  font-size: max(16px, 0.2rem);
  color: #353844;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.searchListCon .searchItem::after, .searchListCon .searchItem::before {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
}
.searchListCon .searchItem::before {
  background-color: #f2f2f2;
}
.searchListCon .searchItem::after {
  background-color: #2ca3a2;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left top;
     -moz-transform-origin: left top;
      -ms-transform-origin: left top;
       -o-transform-origin: left top;
          transform-origin: left top;
}
.searchListCon .searchItem p {
  display: block;
  font-size: max(14px, 0.16rem);
  color: #808080;
}
.searchListCon .searchItem:hover::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -moz-transition: transform 0.5s linear, -moz-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear, -moz-transform 0.5s linear, -o-transform 0.5s linear;
}

@media screen and (max-width: 1279px) {
  .searchPageTop .form {
    width: 432px;
    max-width: 100%;
  }
  .appMap .listBox::before {
    top: 0.55rem;
  }
}
@media screen and (max-width: 1024px) {
  .privacy .privacyLeft {
    display: none;
  }
  .privacy .privacyRight {
    border: 0 none;
    padding-left: 0;
  }
  .appMap .listBox .twoNav {
    font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  .searchPageTop .radiomod {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-gap: 0;
    padding-top: 10px;
  }
  .searchPageTop .radiomod .item {
    width: 50%;
    margin: 0 0 20px;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .searchListCon .searchItem::before, .searchListCon .searchItem::after {
    height: 4px;
  }
}
@media screen and (max-width: 770px) {
  .appMap .listBox {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .appMap .listBox::before {
    display: none;
  }
  .appMap .listBox li {
    width: 100%;
    margin: 0 0 30px;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .appMap .listBox li:last-child {
    margin-bottom: 0;
  }
  .appMap .listBox li .twoNav {
    width: 100%;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px;
  }
  .appMap .listBox li .twoNav a {
    margin-bottom: 0;
  }
  .appMap .listBox li .twoNav a:last-child {
    margin-right: 0;
  }
}
.searchListCon {
  padding: max(60px, 1rem) 0;
}

.layui-form-select dl dd.layui-this {
  background-color: #2ca3a2;
}

.fuwuxiangmu {
  padding: max(30px, 0.5rem) 0 0;
}
.fuwuxiangmu .subPageTitleBox {
  margin-bottom: 30px;
}
.fuwuxiangmu .fuwuItem {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fuwuxiangmu .fuwuItem:last-child {
  margin-bottom: 0;
}
.fuwuxiangmu .fuwuItem .pic {
  width: 226px;
  height: 168px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  border: 1px solid #e2e2e2;
}
.fuwuxiangmu .fuwuItem .text {
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 30px 0 40px;
  font-size: max(14px, 0.16rem);
  color: #666;
}
.fuwuxiangmu .fuwuItem .text .name {
  color: #333;
  font-size: max(18px, 0.22rem);
}
.fuwuxiangmu .fuwuItem .text .nr {
  line-height: 1.8;
  padding: 5px 0;
}
.fuwuxiangmu .fuwuItem .text .btn {
  width: 90px;
  height: 30px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -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;
  color: #fff;
  background: #2ca3a2;
  border-radius: 15px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.fuwuxiangmu .fuwuItem .text .btn:hover {
  -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(21, 86, 85, 0.5);
}
@media only screen and (max-width: 767px) {
  .fuwuxiangmu .fusuList {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
  }
  .fuwuxiangmu .fuwuItem {
    margin-bottom: 0;
    width: -webkit-calc((100% - 20px) / 2);
    width: -moz-calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fuwuxiangmu .fuwuItem .pic {
    width: 100%;
    height: 30vw;
  }
  .fuwuxiangmu .fuwuItem .text {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 559px) {
  .fuwuxiangmu .fuwuItem {
    width: 100%;
  }
  .fuwuxiangmu .fuwuItem .pic {
    height: 62vw;
  }
}

.aboutFwDetails .fuwuDetails {
  padding: max(20px, 0.4rem) max(20px, 0.4rem) max(30px, 0.65rem);
  background: #fff;
  border-radius: max(5px, 0.1rem);
}
.aboutFwDetails .fuwuDetails .con {
  padding: max(20px, 0.4rem) 0 0;
  font-size: max(16px, 0.18rem);
  color: #333;
  line-height: 1.8;
}
.aboutFwDetails .fuwuDetails .con img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 559px) {
  .aboutFwDetails .fuwuDetails .con {
    font-size: 14px;
  }
}



/*video*/
.video-click{cursor:pointer}
.video-click:before{width:90px;height:90px;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background: url("../images/video.png")no-repeat center;background-size:100%;z-index:12;content:"";transition:all 0.4s ease;opacity:0.7;}
.video-click:hover:before{opacity:1;transform:translate(-50%,-50%)}
.video-prop {width:100%;height:100%;overflow:hidden;position:fixed;left:0px;top:0px;z-index:1000;background:rgba(0, 0, 0, 0.6);text-align:center;visibility:hidden;opacity:0;-webkit-transition:all 0.4s ease;-moz-transition:all 0.4s ease;-ms-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease;  }
.video-prop:before{height:100%;content:"";display:inline-block;vertical-align:middle;}
.video-center{width:65%;vertical-align:middle;display:inline-block;position:relative;}
.video-center video{width:100%;height:auto;display:block }
.video-close {width:36px;height:36px;overflow:hidden;position:absolute;right:-18px;top:-18px;z-index:12;border-radius:50%;background:#fafafa;text-align:center;cursor:pointer;-webkit-transition:all 0.4s ease;-moz-transition:all 0.4s ease;-ms-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease; }
.video-close:before{width:60%;height:2px;content:"";position: absolute;left:20%;top:calc(50% - 1px);background:#333;transform: rotate(45deg)}
.video-close:after{width:60%;height:2px;content:"";position: absolute;left:20%;top:calc(50% - 1px);background:#333;transform: rotate(-45deg)}
.video-close:hover{transform: rotate(180deg);}
.video-active{opacity:1;visibility: visible;}

@media screen and (max-width:1366px){
.video-click:before{width:70px;height:70px;}
}


@media screen and (max-width:768px){
.video-click:before{width:50px;height:50px;}
.video-center{width:90%;}
.video-close{width:32px;height:32px;right:-16px;top:-16px;}
}





