.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
.txet-over1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
nav {
  width: 100%;
  height: auto;
}
nav .nav-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.9rem;
  background: #fff;
  z-index: 59;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0.42rem 0 1.72rem;
  z-index: 9;
}
nav .nav-main .main-cont .main-logo {
  position: relative;
  width: 3.75rem;
  height: 0.45rem;
}
nav .nav-main .main-cont .main-logo img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
}
nav .nav-main .main-cont .main-nav .nav-cont {
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: 100%;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li {
  display: inline-block;
  width: auto;
  height: 100%;
  padding: 0 0.3rem;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
  font-size: var(--fs16);
  text-align: center;
  color: #333;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #01b2b6;
  transform: scale(0, 0) translateZ(0);
  -o-transform: scale(0, 0) translateZ(0);
  -moz-transform: scale(0, 0) translateZ(0);
  -webkit-transform: scale(0, 0 translateZ(0));
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link-active {
  font-weight: bold;
  color: #01b2b6;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link-active::after {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 100%;
  height: 0.92rem;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 29;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list::before {
  content: '';
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(0deg, #ea5504, #ff752a);
  transform: translatey(-102%);
  -o-transform: translatey(-102%);
  -moz-transform: translatey(-102%);
  -webkit-transform: translatey(-102%);
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list a {
  display: none;
  position: relative;
  width: auto;
  margin-right: 0.55rem;
  font-size: var(--fs16);
  color: #999;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list a:hover {
  color: #01b2b6;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-link {
  font-weight: bold;
  color: #01b2b6 !important;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-link::after {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list::before {
  transform: translatey(0);
  -o-transform: translatey(0);
  -moz-transform: translatey(0);
  -webkit-transform: translatey(0);
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list a {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
nav .nav-main .main-cont .main-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 100%;
  margin-left: 1rem;
}
nav .nav-main .main-cont .main-right .right-serach {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.18rem;
  height: 100%;
  margin-left: 0.7rem;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-serach span {
  width: 100%;
  height: 100%;
  background: url(../images/icon/icon-search.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang {
  display: flex;
  align-items: center;
  position: relative;
  width: 0.6rem;
  height: 100%;
  cursor: pointer;
}
nav .nav-main .main-cont .main-right .right-lang .lang-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
nav .nav-main .main-cont .main-right .right-lang .lang-flag {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #01b2b6 url(../images/icon/icon-lang.png) no-repeat center center;
  background-size: 0.2rem;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-title {
  width: auto;
  margin: 0 0.15rem 0 0.1rem;
  font-size: var(--fs18);
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-arrow {
  width: 8px;
  height: 5px;
  background: url(../images/icon/icon-lang-arrow.png) no-repeat center center;
  background-size: 8px 5px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list {
  position: absolute;
  top: 0.9rem;
  left: 50%;
  width: 1.5rem;
  height: auto;
  padding: 0.15rem 0;
  margin-left: -0.75rem;
  box-shadow: 0px 0px 27px 0px rgba(64, 64, 64, 0.1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 9;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  transform: translatey(-105%);
  -o-transform: translatey(-105%);
  -moz-transform: translatey(-105%);
  -webkit-transform: translatey(-105%);
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list .list-link {
  display: none;
  position: relative;
  width: 100%;
  padding: 0.06rem 0.2rem;
  font-size: var(--fs14);
  line-height: 0.26rem;
  text-align: center;
  color: #333;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list .list-link:hover {
  font-weight: bold;
  color: #01b2b6;
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-arrow {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list {
  opacity: 1;
  visibility: visible;
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list::before {
  transform: translatey(0);
  -o-transform: translatey(0);
  -moz-transform: translatey(0);
  -webkit-transform: translatey(0);
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list .list-link {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
nav .nav-main .main-cont .main-right .right-menu {
  display: none;
}
nav .nav-main-active {
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.2);
}
nav .Whead-search {
  display: none;
  position: fixed;
  top: 0.8rem;
  left: 0;
  width: 100%;
  height: 2rem;
  background: #fff;
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  z-index: 999;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .Whead-search .hide-pic {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  width: 0.2rem;
  height: 0.2rem;
  margin-left: -0.1rem;
  background: url(../images/icon/icon-close.png) no-repeat center center;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .Whead-search .hide-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .Whead-search .hide-pic:hover {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
nav .Whead-search .search-input {
  position: absolute;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 5rem;
}
nav .Whead-search .search-input .input-box {
  flex: 1;
}
nav .Whead-search .search-input .input-box input {
  width: 100%;
  height: 0.5rem;
  padding: 0.08rem 0;
  font-family: 'Arial';
  font-size: 0.16rem;
  color: #444;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid #ccc;
}
nav .Whead-search .search-input .input-box input::-webkit-input-placeholder {
  font-family: 'Arial';
  color: #444;
}
nav .Whead-search .search-input .input-box input:-moz-placeholder {
  font-family: 'Arial';
  color: #444;
}
nav .Whead-search .search-input .input-box input:-ms-input-placeholder {
  font-family: 'Arial';
  color: #444;
}
nav .Whead-search .search-input .input-icon {
  display: block;
  width: 0.2rem;
  height: 0.2rem;
  margin-left: 0.2rem;
  background: url(../images/icon/icon-search2.png) no-repeat center center;
  background-size: 100%;
}
nav .Whead-search .search-input .input-icon img {
  width: 100%;
}
nav .sidebar-mask,
nav .Whead-sidebar,
nav .head-Wnav,
nav .cont-web-suosou,
nav .cont-web-caidan {
  display: none;
}
header {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.9rem !important;
  z-index: 19;
}
header .head-banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
header .head-banner .swiper-slide {
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box .slide-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .head-banner .swiper-slide .slide-box .slide-pic video {
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box .slide-pic img {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .head-banner .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  transition: all 1.4s 0.5s;
  -o-transition: all 1.4s 0.5s;
  -moz-transition: all 1.4s 0.5s;
  -webkit-transition: all 1.4s 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-pic2 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .head-banner .swiper-slide .slide-box .box-pic2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  transition: all 1.4s 0.5s;
  -o-transition: all 1.4s 0.5s;
  -moz-transition: all 1.4s 0.5s;
  -webkit-transition: all 1.4s 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-web-pic {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 42%;
  left: 0;
  width: 8.6rem;
  height: auto;
  padding: 0.3rem 0.8rem 0.35rem;
  background: linear-gradient(90deg, #18b9bd, rgba(25, 185, 189, 0.4));
  z-index: 9;
  opacity: 0;
  transform: translate(-30px, -50%);
  -o-transform: translate(-30px, -50%);
  -moz-transform: translate(-30px, -50%);
  -webkit-transform: translate(-30px, -50%);
  transition: all 0.5s 0.6s;
  -o-transition: all 0.5s 0.6s;
  -moz-transition: all 0.5s 0.6s;
  -webkit-transition: all 0.5s 0.6s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-title {
  font-size: 0.6rem;
  line-height: 0.8rem;
  color: #fff;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  color: #fff;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button {
  width: 2.12rem;
  height: 0.82rem;
  margin-top: 0.25rem;
  border: solid 0.06rem rgba(255, 255, 255, 0.3);
  border-radius: 0.45rem;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #52ac01, #afcd00);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button-box span {
  margin-right: 0.14rem;
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button-box em {
  width: 0.23rem;
  height: 0.18rem;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button-box:hover {
  background: linear-gradient(-90deg, #52ac01, #afcd00);
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button-box:hover span {
  margin-right: 0.24rem;
}
header .head-banner .swiper-slide .slide-box .box-cent2 {
  position: absolute;
  top: 42%;
  left: 0;
  width: 8.6rem;
  height: auto;
  padding: 0.3rem 0.8rem 0.35rem;
  z-index: 9;
  transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-title {
  font-size: 0.6rem;
  line-height: 0.8rem;
  background: linear-gradient(-90deg, #00c3c7, #0075c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.6s;
  -o-transition: all 0.5s 0.6s;
  -moz-transition: all 0.5s 0.6s;
  -webkit-transition: all 0.5s 0.6s;
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  color: #333;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.8s;
  -o-transition: all 0.5s 0.8s;
  -moz-transition: all 0.5s 0.8s;
  -webkit-transition: all 0.5s 0.8s;
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-button {
  width: 2rem;
  height: 0.7rem;
  margin-top: 0.25rem;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.8s;
  -o-transition: all 0.5s 0.8s;
  -moz-transition: all 0.5s 0.8s;
  -webkit-transition: all 0.5s 0.8s;
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-button .button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #08c1c5, #1aaac9);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-button .button-box span {
  margin-right: 0.14rem;
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-button .button-box em {
  width: 0.23rem;
  height: 0.18rem;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-button .button-box:hover {
  background: linear-gradient(-90deg, #08c1c5, #1aaac9);
}
header .head-banner .swiper-slide .slide-box .box-cent2 .cent-button .button-box:hover span {
  margin-right: 0.24rem;
}
header .head-banner .swiper-slide .slide-box .box-cent3 {
  position: absolute;
  top: 42%;
  right: 0;
  width: 8rem;
  height: auto;
  padding: 0 1.38rem 0 0;
  z-index: 9;
  transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-title {
  font-size: 0.6rem;
  line-height: 0.8rem;
  background: linear-gradient(-90deg, #ff934c, #fc686f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.6s;
  -o-transition: all 0.5s 0.6s;
  -moz-transition: all 0.5s 0.6s;
  -webkit-transition: all 0.5s 0.6s;
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-text {
  padding-right: 0.9rem;
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.4rem;
  color: #333;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.8s;
  -o-transition: all 0.5s 0.8s;
  -moz-transition: all 0.5s 0.8s;
  -webkit-transition: all 0.5s 0.8s;
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-button {
  width: 2rem;
  height: 0.7rem;
  margin-top: 0.25rem;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.8s;
  -o-transition: all 0.5s 0.8s;
  -moz-transition: all 0.5s 0.8s;
  -webkit-transition: all 0.5s 0.8s;
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-button .button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #08c1c5, #1aaac9);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-button .button-box span {
  margin-right: 0.14rem;
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-button .button-box em {
  width: 0.23rem;
  height: 0.18rem;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-button .button-box:hover {
  background: linear-gradient(-90deg, #08c1c5, #1aaac9);
}
header .head-banner .swiper-slide .slide-box .box-cent3 .cent-button .button-box:hover span {
  margin-right: 0.24rem;
}
header .head-banner .swiper-pagination {
  bottom: 1.42rem;
  left: 50%;
  width: 15.36rem;
  text-align: center;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
header .head-banner .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.5rem;
  border-radius: 0.45rem;
  background: #01b2b6;
}
header .head-banner .swiper-pagination2 {
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  width: 15.36rem;
  text-align: center;
  z-index: 9;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
header .head-banner .swiper-pagination2 .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-pagination2 .swiper-pagination-bullet-active {
  width: 0.5rem;
  border-radius: 0.45rem;
  background: #01b2b6;
}
header .head-banner .swiper-slide-active .box-cent {
  opacity: 1 !important;
  transform: translate(0, -50%) !important;
  -o-transform: translate(0, -50%) !important;
  -moz-transform: translate(0, -50%) !important;
  -webkit-transform: translate(0, -50%) !important;
}
header .head-banner .swiper-slide-active .box-cent2 .cent-title,
header .head-banner .swiper-slide-active .box-cent3 .cent-title,
header .head-banner .swiper-slide-active .box-cent2 .cent-text,
header .head-banner .swiper-slide-active .box-cent3 .cent-text,
header .head-banner .swiper-slide-active .box-cent2 .cent-button,
header .head-banner .swiper-slide-active .box-cent3 .cent-button {
  opacity: 1 !important;
  transform: translatey(0) !important;
  -o-transform: translatey(0) !important;
  -moz-transform: translatey(0) !important;
  -webkit-transform: translatey(0) !important;
}
header .head-banner .banner-pic {
  width: 100%;
  height: auto;
  background-position: left 0.9rem;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
  overflow: hidden;
}
header .head-banner .banner-pic img {
  width: 100%;
  opacity: 0;
}
header .head-banner .video-pic {
  display: none;
}
header .head-banner .banner-cent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.36rem;
  height: auto;
  z-index: 9;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
header .head-banner .banner-cent .cent-title {
  font-size: 0.48rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
header .head-banner .banner-cent .cent-English {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs18);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
header .head-banner .banner-cent .cent-heng {
  width: 0.45rem;
  height: 2px;
  margin-top: 0.7rem;
  background: #fff;
}
header .head-banner .banner-swiper-button-prev,
header .head-banner .banner-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.21rem;
  height: 0.4rem;
  margin-top: -0.2rem;
  opacity: 0.5;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .banner-swiper-button-prev img,
header .head-banner .banner-swiper-button-next img {
  width: 100%;
}
header .head-banner .banner-swiper-button-prev:hover,
header .head-banner .banner-swiper-button-next:hover {
  opacity: 1;
}
header .head-banner .banner-swiper-button-prev {
  left: 0.48rem;
}
header .head-banner .banner-swiper-button-next {
  right: 0.48rem;
}
header .head-banner .banner-play {
  display: none;
}
header .head-banner video {
  width: 100%;
}
header .head-form {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1.23rem;
  margin-left: -7.68rem;
  background: #fff;
  border-top-right-radius: 0.1rem;
  border-top-left-radius: 0.1rem;
  overflow: hidden;
  z-index: 9;
}
header .head-form .form-cent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 1.92rem);
  height: 100%;
  padding: 0 0.85rem 0 0.92rem;
}
header .head-form .form-cent .cent-left {
  width: auto;
  height: auto;
}
header .head-form .form-cent .cent-left .left-title {
  font-size: var(--fs30);
  font-weight: bold;
  background: linear-gradient(0deg, #52ac01, #009944);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
header .head-form .form-cent .cent-left .left-text {
  margin-top: 0.15rem;
  font-size: var(--fs14);
  color: #999;
}
header .head-form .form-cent .right-cont {
  width: 8.1rem;
  height: auto;
}
header .head-form .form-cent .right-cont .cont-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: 0.46rem;
  border-radius: 0.06rem;
  border: solid 1px #ddd;
}
header .head-form .form-cent .right-cont .cont-box .box-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  height: 100%;
  padding: 0 0.2rem;
  border-right: solid 1px #e4e4e4;
}
header .head-form .form-cent .right-cont .cont-box .box-item:last-of-type {
  border-right: none;
}
header .head-form .form-cent .right-cont .cont-box .box-item span {
  display: inline-block;
  width: auto;
  font-size: var(--fs16);
  line-height: 0.4rem;
  color: #333;
}
header .head-form .form-cent .right-cont .cont-box .box-item input {
  width: calc(100% - 0.8rem);
  height: 100%;
  margin-left: 0.04rem;
  font-size: var(--fs16);
  color: #666;
  border: none;
  background: none;
}
header .head-form .form-cent .right-cont .cont-box .box-item input::placeholder {
  color: #c6c6c6;
}
header .head-form .form-cent .right-cont .cont-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
}
header .head-form .form-cent .right-cont .cont-text input[type=checkbox],
header .head-form .form-cent .right-cont .cont-text input[type=radio] {
  display: none;
  margin: 4px 0 0;
  line-height: normal;
  padding: 0;
}
header .head-form .form-cent .right-cont .cont-text label {
  position: relative;
  cursor: pointer;
  color: #999;
  font-size: var(--fs14);
  font-weight: 500;
  line-height: 0.2rem;
  padding-left: 0.2rem;
}
header .head-form .form-cent .right-cont .cont-text label::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/icon/icon-check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 4px;
  z-index: 10;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-form .form-cent .right-cont .cont-text label a {
  color: #666;
  text-decoration: underline;
}
header .head-form .form-cent .right-cont .cont-text label a:hover {
  color: #01b2b6;
}
header .head-form .form-cent .right-cont .cont-text .agree:checked + label:before {
  background-image: url(../images/icon/icon-check-on.png);
}
header .head-form .form-button {
  width: 1.92rem;
  height: 100%;
  font-size: var(--fs24);
  font-weight: bold;
  text-align: center;
  line-height: 1.23rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #52ac01, #009944);
}
header .head-form .form-button:hover {
  background: #01b2b6;
}
footer {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
footer .foot-top {
  width: 100%;
  height: 1rem;
  background: #01b2b6;
}
footer .foot-top .top-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
footer .foot-top .top-cont .cont-tel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}
footer .foot-top .top-cont .cont-tel em {
  width: 0.33rem;
  height: 0.36rem;
  margin-right: 0.18rem;
  background: url(../images/icon/icon-foot-tel.png) no-repeat center center;
  background-size: 100%;
}
footer .foot-top .top-cont .cont-tel span {
  margin-right: 0.2rem;
  font-size: var(--fs18);
  color: #fff;
}
footer .foot-top .top-cont .cont-tel p {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs40);
  color: #fff;
}
footer .foot-top .top-cont .cont-text {
  font-size: var(--fs18);
  color: #fff;
}
footer .foot-top .top-cont .cont-share {
  display: flex;
  justify-content: flex-start;
  width: auto;
  height: auto;
}
footer .foot-top .top-cont .cont-share .share-item {
  position: relative;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.28rem;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.3);
}
footer .foot-top .top-cont .cont-share .share-item:last-of-type {
  margin-right: 0;
}
footer .foot-top .top-cont .cont-share .share-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  margin: -0.08rem 0 0 -0.1rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
footer .foot-top .top-cont .cont-share .share-item .img2 {
  opacity: 0;
}
footer .foot-top .top-cont .cont-share .share-item:hover {
  border: solid 1px #fff;
  background: #fff;
}
footer .foot-top .top-cont .cont-share .share-item:hover .img1 {
  opacity: 0;
}
footer .foot-top .top-cont .cont-share .share-item:hover .img2 {
  opacity: 1;
}
footer .foot-main {
  display: flex;
  justify-content: space-between;
  padding-top: 0.35rem;
}
footer .foot-main .main-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 6.7rem;
}
footer .foot-main .main-nav .nav-item {
  width: 1.9rem;
  height: auto;
  margin-top: 0.45rem;
  padding-right: 0.15rem;
}
footer .foot-main .main-nav .nav-item:nth-child(4n) {
  width: auto;
  padding-right: 0;
}
footer .foot-main .main-nav .nav-item .item-title {
  display: block;
  font-size: var(--fs18);
  font-weight: bold;
  color: #666;
}
footer .foot-main .main-nav .nav-item .item-title:hover {
  color: #01b2b6;
}
footer .foot-main .main-nav .nav-item .item-cent {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
footer .foot-main .main-nav .nav-item .item-cent a {
  display: block;
  width: 100%;
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.22rem;
  color: #999;
}
footer .foot-main .main-nav .nav-item .item-cent a span {
  position: relative;
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
footer .foot-main .main-nav .nav-item .item-cent a span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  background: #01b2b6;
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
footer .foot-main .main-nav .nav-item .item-cent a:hover {
  color: #01b2b6;
}
footer .foot-main .main-nav .nav-item .item-cent a:hover span {
  letter-spacing: 2px;
}
footer .foot-main .main-nav .nav-item .item-cent a:hover span::after {
  left: 0;
  width: 100%;
}
footer .foot-main .main-nav .nav-item .item-cent .cent-text {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}
footer .foot-main .main-nav .nav-item .item-cent .cent-text span {
  width: 0.21rem;
  height: auto;
}
footer .foot-main .main-nav .nav-item .item-cent .cent-text span img {
  width: 100%;
}
footer .foot-main .main-nav .nav-item .item-cent .cent-text p {
  width: calc(100% - 0.21rem);
  padding-left: 0.12rem;
  padding-top: 0.02rem;
  margin-bottom: 0.16rem;
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #bbb;
}
footer .foot-main .main-pic {
  width: 5.3rem;
  height: auto;
  padding-top: 0.45rem;
}
footer .foot-main .main-pic img {
  width: 100%;
}
footer .foot-main .main-cont {
  width: 2.98rem;
  height: auto;
  padding-top: 0.45rem;
}
footer .foot-main .main-cont .cont-ewm {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
footer .foot-main .main-cont .cont-ewm .ewm-item {
  width: 1.3rem;
  height: auto;
}
footer .foot-main .main-cont .cont-ewm .ewm-item img {
  width: 100%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
footer .foot-main .main-cont .cont-ewm .ewm-item p {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  text-align: center;
  color: #999;
}
footer .foot-main .main-cont .cont-link {
  position: relative;
  width: 100%;
  margin-top: 0.55rem;
}
footer .foot-main .main-cont .cont-link .link-box {
  position: relative;
  width: 100%;
  text-align: left;
}
footer .foot-main .main-cont .cont-link .link-box .box-name {
  position: relative;
  z-index: 10;
  cursor: pointer;
  color: #999;
  height: 46px;
  font-size: var(--fs14);
  line-height: 40px;
  border-radius: 5px;
  border: solid 1px #eee;
  padding: 0 40px 0 15px;
  background-image: url(../images/icon/icon-arrow4.png);
  background-repeat: no-repeat;
  background-position: right 28px center;
}
footer .foot-main .main-cont .cont-link .link-box .box-list {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 45px;
  z-index: 6;
  max-height: 264px;
  overflow-y: auto;
  display: none;
  background-color: #f7f7f7;
  border-bottom: none;
}
footer .foot-main .main-cont .cont-link .link-box .box-list a {
  display: block;
  color: #666;
  line-height: 43px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 26px;
}
footer .foot-main .main-cont .cont-link .link-box .box-list a:hover {
  color: #fff;
  background: #01b2b6;
}
footer .foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0.3rem 0 0.8rem;
}
footer .foot-bottom .bottom-link {
  width: auto;
}
footer .foot-bottom .bottom-link a {
  font-size: var(--fs16);
  color: #999;
}
footer .foot-bottom .bottom-link a:hover {
  color: #01b2b6;
}
footer .foot-bottom .bottom-link span {
  margin: 0 0.32rem;
  font-size: var(--fs16);
  color: #999;
}
footer .foot-bottom .bottom-zhizi {
  width: auto;
  font-size: var(--fs16);
  color: #999;
}
footer .foot-bottom .bottom-zhizi a {
  color: #999;
}
footer .foot-bottom .bottom-zhizi a:hover {
  color: #01b2b6;
}
.container {
  position: relative;
  width: 100%;
  height: auto;
}
.container .cont-plate1 {
  width: 100%;
  height: auto;
  padding-top: 0.75rem;
}
.container .cont-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: auto;
}
.container .cont-plate1 .plate1-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0 1rem 0.9rem 1.92rem;
}
.container .cont-plate1 .plate1-main .main-cent .cent-title {
  margin-top: 0.55rem;
  font-size: var(--fs48);
  font-weight: bold;
  color: #01b2b6;
}
.container .cont-plate1 .plate1-main .main-cent .cent-subTitle {
  margin-top: 0.1rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
}
.container .cont-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.container .cont-plate1 .plate1-main .main-cent .page-button {
  margin-top: 0.5rem;
}
.container .cont-plate1 .plate1-main .main-video {
  position: relative;
  width: 50%;
  height: auto;
}
.container .cont-plate1 .plate1-main .main-video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.68rem;
  height: 0.68rem;
  margin: -0.34rem 0 0 -0.34rem;
  z-index: 9;
  cursor: pointer;
}
.container .cont-plate1 .plate1-main .main-video .video-play img {
  position: relative;
  width: 100%;
  z-index: 9;
}
.container .cont-plate1 .plate1-main .main-video .video-play::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  opacity: 0.8;
  animation: mapAddress3 3s linear infinite ;
}
.container .cont-plate1 .plate1-main .main-video .video-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate1 .plate1-main .main-video .video-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate1 .plate1-main .main-video:hover .video-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.container .cont-plate1 .plate1-date {
  width: 100%;
  height: auto;
  padding: 0.65rem 0;
  background: #f7f7f7;
}
.container .cont-plate1 .plate1-date .data-box {
  display: flex;
  justify-content: flex-start;
}
.container .cont-plate1 .plate1-date .data-box .box-item {
  display: flex;
  justify-content: flex-start;
  height: auto;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-icon {
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.2rem;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-icon img {
  width: 100%;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-cent {
  width: calc(100% - 0.5rem);
  height: auto;
  padding-left: 0.42rem;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-cent .cent-num {
  font-size: var(--fs18);
  color: #999;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-cent .cent-num span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: 0.72rem;
  background: linear-gradient(180deg, #00c3c7, #0093c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-cent .cent-num em {
  position: relative;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-cent .cent-num em::before {
  content: '+';
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs48);
  color: #01b2b6;
}
.container .cont-plate1 .plate1-date .data-box .box-item .item-cent .cent-text {
  font-size: var(--fs18);
  color: #999;
}
.container .cont-plate1 .plate1-date .data-box .box-item:nth-child(1) {
  width: 4.68rem;
}
.container .cont-plate1 .plate1-date .data-box .box-item:nth-child(2) {
  width: 4rem;
}
.container .cont-plate1 .plate1-date .data-box .box-item:nth-child(3) {
  width: 3.72rem;
}
.container .cont-plate1 .plate1-date .data-box .box-item:nth-child(4) {
  width: 2.96rem;
}
.container .cont-plate2 {
  width: 100%;
  height: auto;
  padding-top: 0.95rem;
}
.container .cont-plate2 .page-title,
.container .cont-plate2 .page-English {
  text-align: center;
}
.container .cont-plate2 .page-heng {
  margin: 0.15rem auto 0;
}
.container .cont-plate2 .plate2-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.container .cont-plate2 .plate2-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0 1.92rem 0.9rem 1.1rem;
}
.container .cont-plate2 .plate2-main .main-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #01b2b6;
}
.container .cont-plate2 .plate2-main .main-cent .cent-subTitle {
  margin-top: 0.1rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
}
.container .cont-plate2 .plate2-main .main-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: justify;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.container .cont-plate2 .plate2-main .main-cent .page-button {
  margin-top: 0.5rem;
}
.container .cont-plate2 .plate2-main .main-pic {
  position: relative;
  width: 50%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate2 .plate2-main .main-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate2 .plate2-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.container .cont-plate3 {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 0.9rem;
}
.container .cont-plate3 .page-title,
.container .cont-plate3 .page-English {
  text-align: center;
}
.container .cont-plate3 .page-heng {
  margin: 0.15rem auto 0;
}
.container .cont-plate3 .plate3-main {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
  overflow: hidden;
}
.container .cont-plate3 .plate3-main .main-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.container .cont-plate3 .plate3-main .main-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.container .cont-plate3 .plate3-main .main-pic-on {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.container .cont-plate3 .plate3-main .main-pic-on img {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
.container .cont-plate3 .plate3-swiper {
  position: absolute;
  bottom: 0;
  left: 0.28rem;
  width: calc(100% - 0.56rem);
  height: auto;
  overflow: hidden;
  z-index: 9;
}
.container .cont-plate3 .plate3-swiper .swiper-slide {
  position: relative;
  width: calc(100% / 5 - 0.224rem);
  height: 1.5rem;
  margin-right: 0.28rem;
}
.container .cont-plate3 .plate3-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0.42rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 9;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-icon {
  width: 0.5rem;
  height: 0.45rem;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-icon img {
  width: 100%;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-title {
  padding-left: 0.3rem;
  font-size: var(--fs28);
  font-weight: bold;
  color: #fff;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box em {
  position: absolute;
  top: 0;
  right: 0.4rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgba(255, 255, 255, 0.08);
}
.container .cont-plate3 .plate3-swiper .swiper-slide-on .slide-box {
  background: #01b2b6;
  backdrop-filter: blur(0);
}
.container .cont-plate3 .plate3-bg {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  bottom: 0;
  left: 0.28rem;
  width: calc(100% - 0.56rem);
  height: auto;
  overflow: hidden;
}
.container .cont-plate3 .plate3-bg .bg-item {
  width: calc(100% / 5 - 0.224rem);
  height: 1.5rem;
  margin-right: 0.28rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.container .cont-plate3 .plate3-bg .bg-item:last-of-type {
  margin-right: 0;
}
.container .cont-plate4 {
  width: 100%;
  height: auto;
  padding: 0.9rem 0.28rem 1.35rem;
}
.container .cont-plate4 .page-title,
.container .cont-plate4 .page-English {
  text-align: center;
}
.container .cont-plate4 .page-heng {
  margin: 0.15rem auto 0;
}
.container .cont-plate4 .plate4-swiper {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.container .cont-plate4 .plate4-swiper .swiper-slide {
  width: calc(100% / 3 - 0.2rem);
  height: auto;
  margin-right: 0.3rem;
  overflow: hidden;
}
.container .cont-plate4 .plate4-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 7.36rem;
  background: #000;
  overflow: hidden;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3.35rem 1.05rem 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cent .cent-title {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cent .cent-heng {
  width: 0.26rem;
  height: 3px;
  margin: 0.25rem auto 0;
  border-radius: 0.45rem;
  background: #fff;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cent .cent-button {
  width: 1.46rem;
  height: 0.48rem;
  margin: 1.4rem auto 0;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs14);
  text-align: center;
  text-transform: uppercase;
  line-height: 0.46rem;
  color: #fff;
  border: solid 1px #fff;
  border-radius: 0.45rem;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  padding: 2rem 1.05rem 0;
  background: linear-gradient(0deg, rgba(82, 172, 1, 0.9), rgba(175, 205, 0, 0.9));
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-title {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-heng {
  width: 0.26rem;
  height: 3px;
  margin: 0.25rem auto 0;
  border-radius: 0.45rem;
  background: #fff;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-text {
  margin-top: 0.8rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  color: #fff;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-button {
  width: 1.46rem;
  height: 0.48rem;
  margin: 1.25rem auto 0;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs14);
  text-align: center;
  text-transform: uppercase;
  line-height: 0.48rem;
  color: #52ac01;
  background: #fff;
  border-radius: 0.45rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-button:hover {
  color: #fff;
  background: #01b2b6;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box:hover .box-pic img {
  opacity: 1;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box:hover .box-cent {
  opacity: 0;
}
.container .cont-plate4 .plate4-swiper .swiper-slide .slide-box:hover .box-cont {
  left: 0;
}
.container .cont-plate5 {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 1.55rem;
  background: #eef6f7;
}
.container .cont-plate5 .plate5-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .cont-plate5 .plate5-top .top-cent {
  width: auto;
  height: auto;
}
.container .cont-plate5 .plate5-top .top-list {
  display: flex;
  justify-content: center;
  width: auto;
}
.container .cont-plate5 .plate5-top .top-list .list-item {
  position: relative;
  width: auto;
  margin: 0 0.3rem;
  padding-bottom: 0.1rem;
  font-size: var(--fs20);
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-top .top-list .list-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #52ac01;
  transform: scale(0, 0) translateZ(0);
  -o-transform: scale(0, 0) translateZ(0);
  -moz-transform: scale(0, 0) translateZ(0);
  -webkit-transform: scale(0, 0 translateZ(0));
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-top .top-list .list-item:hover {
  color: #52ac01;
}
.container .cont-plate5 .plate5-top .top-list .list-item:hover::after {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
.container .cont-plate5 .plate5-top .top-list .list-item-on {
  color: #52ac01;
}
.container .cont-plate5 .plate5-top .top-list .list-item-on::after {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
.container .cont-plate5 .plate5-web-top {
  display: none;
}
.container .cont-plate5 .plate5-main {
  position: relative;
  margin-top: 0.8rem;
}
.container .cont-plate5 .plate5-main .main-box {
  position: absolute;
  top: 0.3rem;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.container .cont-plate5 .plate5-main .main-box .box-item {
  width: 6.96rem;
  height: auto;
  background: #fff;
}
.container .cont-plate5 .plate5-main .main-box .box-item .item-pic {
  width: 100%;
  height: 4.2rem;
  overflow: hidden;
}
.container .cont-plate5 .plate5-main .main-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-main .main-box .box-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.35rem 0.5rem 0.5rem;
}
.container .cont-plate5 .plate5-main .main-box .box-item .item-cent .cent-title {
  font-size: var(--fs24);
  color: #01b2b6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-main .main-box .box-item .item-cent .cent-text {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-main .main-box .box-item .item-cent .cent-time {
  margin-top: 0.2rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  color: #c9c9c9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-main .main-box .box-item:hover {
  background: #01b2b6;
}
.container .cont-plate5 .plate5-main .main-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.container .cont-plate5 .plate5-main .main-box .box-item:hover .item-cent .cent-title,
.container .cont-plate5 .plate5-main .main-box .box-item:hover .item-cent .cent-text,
.container .cont-plate5 .plate5-main .main-box .box-item:hover .item-cent .cent-time {
  color: #fff;
}
.container .cont-plate5 .plate5-main .main-box .box-cont {
  width: 7.9rem;
  height: auto;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 1.5rem;
  padding: 0 0.35rem;
  margin-bottom: 0.2rem;
  background: #fff;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item:last-of-type {
  margin-bottom: 0;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item .item-cent {
  width: calc(100% - 0.5rem);
  padding-right: 0.5rem;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item .item-cent .cent-title {
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item .item-cent .cent-time {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  color: #c9c9c9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item .item-button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: solid 2px #fff;
  background: url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 9px;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item:hover {
  background: #01b2b6;
}
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item:hover .item-cent .cent-title,
.container .cont-plate5 .plate5-main .main-box .box-cont .cont-item:hover .item-cent .cent-time {
  color: #fff;
}
.container .cont-plate5 .plate5-main .main-box-on {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 1.2s;
  -o-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -webkit-transition: all 1.2s;
}
.container .cont-plate6 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate6 .swiper-slide {
  width: 33.33%;
  height: auto;
}
.container .cont-plate6 .swiper-slide .slide-box {
  display: block;
  position: relative;
  width: 100%;
  height: 5rem;
}
.container .cont-plate6 .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.container .cont-plate6 .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate6 .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.8rem 1.1rem 0;
  background: linear-gradient(180deg, #fff 0%, transparent);
}
.container .cont-plate6 .swiper-slide .slide-box .box-cent .cent-icon {
  position: relative;
  width: 0.4rem;
  height: 0.4rem;
}
.container .cont-plate6 .swiper-slide .slide-box .box-cent .cent-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate6 .swiper-slide .slide-box .box-cent .cent-icon .img2 {
  opacity: 0;
}
.container .cont-plate6 .swiper-slide .slide-box .box-cent .cent-title {
  margin-top: 0.25rem;
  font-size: var(--fs30);
  font-weight: bold;
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate6 .swiper-slide .slide-box .box-cent .cent-English {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs18);
  text-transform: uppercase;
  color: #ccc;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate6 .swiper-slide .slide-box .box-cent .cent-button {
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.6rem;
  border-radius: 50%;
  background: #fff url(../images/icon/icon-arrow3.png) no-repeat center center;
  background-size: 9px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate6 .swiper-slide .slide-box:hover .box-cent {
  background: linear-gradient(180deg, #01b2b6 0%, transparent);
}
.container .cont-plate6 .swiper-slide .slide-box:hover .box-cent .cent-icon .img1 {
  opacity: 0;
}
.container .cont-plate6 .swiper-slide .slide-box:hover .box-cent .cent-icon .img2 {
  opacity: 1;
}
.container .cont-plate6 .swiper-slide .slide-box:hover .box-cent .cent-title,
.container .cont-plate6 .swiper-slide .slide-box:hover .box-cent .cent-English {
  color: #fff;
}
.container .cont-plate6 .swiper-slide .slide-box:hover .box-cent .cent-button {
  background: #01b2b6 url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 9px;
}
.about {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.about .about-main {
  position: relative;
  margin-top: 0.5rem;
}
.about .about-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3.16rem;
  height: 3.73rem;
  background: url(../images/about-bg.png) no-repeat top left;
  background-size: 100%;
}
.about .about-main .main-title {
  margin-top: 0.65rem;
  font-size: var(--fs48);
  font-weight: bold;
  color: #01b2b6;
}
.about .about-main .main-subTitle {
  margin-top: 0.45rem;
  font-size: var(--fs36);
  color: #1d1d1d;
}
.about .about-main .main-text {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.about .about-main .main-pic {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  overflow: hidden;
}
.about .about-main .main-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.about .about-main .main-cont {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 8.6rem;
  margin-top: 0.3rem;
}
.about .about-main .main-cont .cont-item {
  width: 7.58rem;
  height: 4.2rem;
  overflow: hidden;
}
.about .about-main .main-cont .cont-item:nth-child(3) {
  height: 8.6rem;
}
.about .about-main .main-cont .cont-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-main .main-cont .cont-item:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.honor {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1rem;
}
.honor .honor-top {
  margin-top: 0.5rem;
}
.honor .honor-swiper {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 1rem;
  overflow: hidden;
}
.honor .honor-swiper::before {
  content: '';
  position: absolute;
  top: 2.55rem;
  left: 0;
  width: 100%;
  height: 2.4rem;
  background: url(../images/honor-bg.png) no-repeat bottom left;
  background-size: 100%;
  z-index: -1;
}
.honor .honor-swiper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.4rem;
  background: url(../images/honor-bg.png) no-repeat bottom left;
  background-size: 100%;
  z-index: -1;
}
.honor .honor-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 3.16rem;
}
.honor .honor-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item {
  width: calc(100% / 3 - 0.2667rem);
  height: auto;
  margin-right: 0.4rem;
  margin-bottom: 0.65rem;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item .item-pic {
  width: 100%;
  height: 3.54rem;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item .item-title {
  margin-top: 0.45rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: center;
  color: #666;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item:nth-child(3n) {
  margin-right: 0;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item:nth-child(1)::after {
  content: '';
  display: none;
  position: absolute;
  top: 2.55rem;
  left: 0;
  width: 100%;
  height: 2.4rem;
  background: url(../images/honor-bg.png) no-repeat bottom left;
  background-size: 100%;
  z-index: -1;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item:nth-child(4)::after {
  content: '';
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.4rem;
  background: url(../images/honor-bg.png) no-repeat bottom left;
  background-size: 100%;
  z-index: -1;
}
.honor .honor-swiper .swiper-slide .slide-box .box-item:hover .item-pic {
  transform: translatey(-0.1rem);
  -o-transform: translatey(-0.1rem);
  -moz-transform: translatey(-0.1rem);
  -webkit-transform: translatey(-0.1rem);
}
.honor .honor-swiper .honor-swiper-button-prev,
.honor .honor-swiper .honor-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.honor .honor-swiper .honor-swiper-button-prev img,
.honor .honor-swiper .honor-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.honor .honor-swiper .honor-swiper-button-prev .img2,
.honor .honor-swiper .honor-swiper-button-next .img2 {
  opacity: 0;
}
.honor .honor-swiper .honor-swiper-button-prev:hover,
.honor .honor-swiper .honor-swiper-button-next:hover {
  background: linear-gradient(90deg, #52ac01, #afcd00);
}
.honor .honor-swiper .honor-swiper-button-prev:hover .img1,
.honor .honor-swiper .honor-swiper-button-next:hover .img1 {
  opacity: 0;
}
.honor .honor-swiper .honor-swiper-button-prev:hover .img2,
.honor .honor-swiper .honor-swiper-button-next:hover .img2 {
  opacity: 1;
}
.honor .honor-swiper .honor-swiper-button-prev {
  left: 1.92rem;
}
.honor .honor-swiper .honor-swiper-button-next {
  right: 1.92rem;
}
.video {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.video .video-main {
  margin-top: 0.55rem;
}
.video .video-main .main-cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.6rem;
  padding-right: 0.32rem;
}
.video .video-main .main-cont .cont-video {
  position: relative;
  width: 11.52rem;
  height: auto;
  overflow: hidden;
}
.video .video-main .main-cont .cont-video .video-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.video .video-main .main-cont .cont-video .video-pic video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}
.video .video-main .main-cont .cont-video .video-pic img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.video .video-main .main-cont .cont-video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin: -0.3rem 0 0 -0.3rem;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.video .video-main .main-cont .cont-video .video-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin: -0.35rem 0 0 -0.35rem;
  background: url(../images/icon/icon-video-play3.png) no-repeat center center;
  background-size: 100%;
  animation: load 2s linear infinite;
}
.video .video-main .main-cont .cont-video .video-play img {
  width: 100%;
}
.video .video-main .main-cont .cont-video:hover .video-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.video .video-main .main-cont .cont-swiper {
  position: relative;
  width: 2.73rem;
  height: auto;
  padding-bottom: 0.5rem;
  overflow: hidden;
}
.video .video-main .main-cont .cont-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box {
  width: 100%;
  height: auto;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0.3rem;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic {
  width: 100%;
  height: 1.55rem;
  overflow: hidden;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .video-play {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 0.3rem;
  height: 0.3rem;
  margin: -0.15rem 0 0 -0.15rem;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .video-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  margin: -0.2rem 0 0 -0.2rem;
  background: url(../images/icon/icon-video-play3.png) no-repeat center center;
  background-size: 100%;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .video-play img {
  width: 100%;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .video-play:hover::after {
  animation: load 2s linear infinite;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-title {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  color: #999;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.video .video-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-title {
  color: #01b2b6;
}
.video .video-main .main-cont .cont-swiper .swiper-button {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: auto;
  z-index: 9;
}
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-prev,
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-next {
  position: relative;
  width: 0.5rem;
  height: 0.35rem;
  border-radius: 0.45rem;
  border: solid 2px #c3c3c3;
  cursor: pointer;
  outline: none;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-prev img,
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  margin: -4px 0 0 -2.5px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-prev .img2,
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-next .img2 {
  opacity: 0;
}
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-prev:hover,
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-next:hover {
  border: solid 2px #01b2b6;
  background: #01b2b6;
}
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-prev:hover .img1,
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-next:hover .img1 {
  opacity: 0;
}
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-prev:hover .img2,
.video .video-main .main-cont .cont-swiper .swiper-button .video-swiper-button-next:hover .img2 {
  opacity: 1;
}
.mechanism {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
  overflow: visible;
}
.mechanism .mechanism-main {
  margin-top: 0.5rem;
}
.mechanism .mechanism-main .main-cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.mechanism .mechanism-main .main-cont .cont-box {
  width: 9.8rem;
  height: auto;
}
.mechanism .mechanism-main .main-cont .cont-box .box-item {
  width: 100%;
  height: auto;
  padding-top: 0.55rem;
}
.mechanism .mechanism-main .main-cont .cont-box .box-item .item-title {
  padding-bottom: 0.15rem;
  font-size: var(--fs24);
  color: #000;
  border-bottom: solid 1px #ebebeb;
}
.mechanism .mechanism-main .main-cont .cont-box .box-item .item-cent {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #666;
}
.mechanism .mechanism-main .main-cont .cont-box .box-item .item-cent img {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
}
.mechanism .mechanism-main .main-cont .cont-list {
  position: sticky;
  top: 1.5rem;
  width: 3.92rem;
  height: 100%;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top {
  position: relative;
  width: 100%;
  height: auto;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ebebeb;
  z-index: -1;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.45rem 0;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump::before,
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump::after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #dcdcdc;
  box-sizing: border-box;
  z-index: 10;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump::before {
  top: 0;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump::after {
  bottom: 0;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump .lump-item {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 0.3rem;
  margin-bottom: 0.2rem;
  font-size: var(--fs18);
  color: #333;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump .lump-item:last-of-type {
  margin-bottom: 0;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump .lump-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-radius: 50%;
  border: solid 2px #fff;
  background: #dcdcdc;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump .lump-item:hover {
  color: #01b2b6;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump .lump-item:hover::after {
  background: #01b2b6;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump .lump-item-on {
  color: #01b2b6;
}
.mechanism .mechanism-main .main-cont .cont-list .list-top .top-lump .lump-item-on::after {
  background: #01b2b6;
}
.mechanism .mechanism-main .main-cont .cont-list .list-pic {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.mechanism .mechanism-main .main-cont .cont-list .list-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.introduce {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.introduce .introduce-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.introduce .introduce-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0 1rem 0 1.92rem;
}
.introduce .introduce-main .main-cent .cent-logo {
  display: block;
  width: 2.52rem;
  height: auto;
}
.introduce .introduce-main .main-cent .cent-logo img {
  width: 100%;
}
.introduce .introduce-main .main-cent .cent-title {
  margin-top: 0.7rem;
  font-size: var(--fs48);
  font-weight: bold;
  color: #01b2b6;
}
.introduce .introduce-main .main-cent .cent-subTitle {
  margin-top: 0.1rem;
  font-size: var(--fs36);
  color: #1d1d1d;
}
.introduce .introduce-main .main-cent .cent-text {
  margin-top: 0.45rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #666;
}
.introduce .introduce-main .main-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.introduce .introduce-main .main-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.introduce .introduce-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.environment {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 0.5rem;
}
.environment .environment-top {
  margin-top: 0.55rem;
}
.environment .environment-top .top-text {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #666;
}
.environment .environment-top .top-cont {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.environment .environment-top .top-cont .cont-title {
  font-size: var(--fs36);
  color: #333;
}
.environment .environment-top .top-cont .cont-title span {
  font-weight: bold;
  color: #01b2b6;
}
.environment .environment-top .top-cont .cont-lump {
  display: flex;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-left: 2.45rem;
}
.environment .environment-top .top-cont .cont-lump .lump-item {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 1.38rem;
  height: 1.05rem;
  padding: 0 0.1rem;
  margin: 0 0.1rem;
  font-size: var(--fs22);
  text-align: center;
  color: #01b2b6;
  background: linear-gradient(180deg, rgba(1, 178, 182, 0.2), transparent);
  border-radius: 0.1rem;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.environment .environment-top .top-cont .cont-lump .lump-item-on {
  color: #fff;
  background: linear-gradient(0deg, #00c3c7, #0093c2);
}
.environment .environment-top .top-cont .cont-text {
  margin-left: 2.45rem;
  font-size: var(--fs22);
  color: #01b2b6;
}
.environment .environment-main {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  padding-left: 0.45rem;
}
.environment .environment-main .main-swiper {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.environment .environment-main .main-swiper .swiper-slide {
  width: 9rem;
  height: auto;
  margin-right: 0.3rem;
}
.environment .environment-main .main-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.environment .environment-main .main-swiper .swiper-slide .slide-box {
  width: 100%;
  height: 6rem;
  overflow: hidden;
}
.environment .environment-main .main-swiper .swiper-slide .slide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.environment .environment-main .main-swiper .swiper-slide .slide-box:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.environment .environment-main .main-swiper .swiper-button {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0.3rem;
  width: 1.46rem;
  height: 0.48rem;
  padding: 0 0.1rem;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, rgba(82, 172, 1, 0.9), rgba(175, 205, 0, 0.9));
  z-index: 9;
}
.environment .environment-main .main-swiper .swiper-button span {
  font-size: var(--fs14);
  color: #fff;
}
.environment .environment-main .main-swiper .swiper-button .environment-swiper-button-prev,
.environment .environment-main .main-swiper .swiper-button .environment-swiper-button-next {
  width: 9px;
  height: auto;
  cursor: pointer;
  outline: none;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.environment .environment-main .main-swiper .swiper-button .environment-swiper-button-prev img,
.environment .environment-main .main-swiper .swiper-button .environment-swiper-button-next img {
  display: block;
  width: 100%;
}
.environment .environment-main .main-swiper-on {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 1.2s;
  -o-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -webkit-transition: all 1.2s;
}
.environment .environment-main .main-swiper-active {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 1.2s;
  -o-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -webkit-transition: all 1.2s;
}
.region {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.15rem;
}
.region .region-main {
  margin-top: 0.6rem;
}
.region .region-main .main-text {
  margin-top: 0.45rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #666;
}
.region .region-main .main-cont {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.region .region-main .main-cont .cont-item {
  width: calc(100% / 3 - 0.3rem);
  height: auto;
  margin-right: 0.45rem;
  margin-bottom: 0.5rem;
}
.region .region-main .main-cont .cont-item:nth-child(3n) {
  margin-right: 0;
}
.region .region-main .main-cont .cont-item .item-pic {
  width: 100%;
  height: 3.1rem;
  overflow: hidden;
}
.region .region-main .main-cont .cont-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.region .region-main .main-cont .cont-item .item-title {
  margin-top: 0.25rem;
  font-size: var(--fs18);
  text-align: center;
  color: #333;
}
.region .region-main .main-cont .cont-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.system {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.system .system-main {
  margin-top: 0.55rem;
}
.system .system-main .page-title,
.system .system-main .page-English {
  text-align: center;
}
.system .system-main .page-heng {
  margin: 0.15rem auto 0;
}
.system .system-main .main-text {
  width: 12.2rem;
  margin: 0.45rem auto 0;
  font-size: var(--fs20);
  font-weight: 100;
  line-height: 0.4rem;
  text-align: center;
  color: #666666;
}
.system .system-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
}
.system .system-main .main-cont::after {
  content: '';
  position: absolute;
  top: 75%;
  left: 50%;
  width: 19.2rem;
  height: 15.33rem;
  margin: -7.665rem 0 0 -9.6rem;
  background: url(../images/system-bg2.png) no-repeat center center;
  background-size: 100%;
}
.system .system-main .main-cont .cont-box {
  position: relative;
  width: 3.8rem;
  height: 3.8rem;
  margin: 0 auto;
  border-radius: 50%;
}
.system .system-main .main-cont .cont-box .box-title {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: var(--fs48);
  font-weight: bold;
  line-height: 3.8rem;
  text-align: center;
  color: #01b2b6;
}
.system .system-main .main-cont .cont-box .box-title::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.34rem;
  height: 4.34rem;
  margin: -2.17rem 0 0 -2.17rem;
  background: url(../images/system-bg.png) no-repeat center center;
  background-size: 100%;
  animation: load 8s linear infinite;
}
.system .system-main .main-cont .cont-box .box-lump {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  width: 4.9rem;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item .item-icon {
  width: 0.9rem;
  height: 0.9rem;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item .item-icon img {
  width: 100%;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item .item-title {
  padding: 0 0.34rem;
  font-size: var(--fs24);
  color: #333;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item:nth-child(1) {
  flex-direction: row-reverse;
  top: -0.3rem;
  right: 4.65rem;
  animation-delay: 0.2s;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item:nth-child(2) {
  top: -0.3rem;
  left: 4.65rem;
  animation-delay: 0.2s;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item:nth-child(3) {
  flex-direction: row-reverse;
  top: 1.42rem;
  right: 5.15rem;
  animation-delay: 0.4s;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item:nth-child(4) {
  top: 1.42rem;
  left: 5.15rem;
  animation-delay: 0.4s;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item:nth-child(5) {
  flex-direction: row-reverse;
  bottom: -0.26rem;
  right: 4.65rem;
  animation-delay: 0.6s;
}
.system .system-main .main-cont .cont-box .box-lump .lump-item:nth-child(6) {
  bottom: -0.26rem;
  left: 4.65rem;
  animation-delay: 0.6s;
}
.characteristic {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.characteristic .characteristic-main {
  margin-top: 0.55rem;
}
.characteristic .characteristic-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 1.05rem;
}
.characteristic .characteristic-main .main-cont .cont-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-bottom: 0.65rem;
}
.characteristic .characteristic-main .main-cont .cont-item .item-pic {
  width: 7.68rem;
  height: auto;
  overflow: hidden;
}
.characteristic .characteristic-main .main-cont .cont-item .item-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.characteristic .characteristic-main .main-cont .cont-item .item-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.characteristic .characteristic-main .main-cont .cont-item .item-cent {
  width: 7.68rem;
  height: auto;
  padding: 0 0 0 0.56rem;
}
.characteristic .characteristic-main .main-cont .cont-item .item-cent .cent-num {
  font-family: 'MONTSERRAT-BOLD';
  font-size: 1.2rem;
  background: linear-gradient(180deg, #8fb4e3, #f1f5fb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.characteristic .characteristic-main .main-cont .cont-item .item-cent .cent-title {
  margin-top: -0.2rem;
  font-size: var(--fs30);
  font-weight: bold;
  line-height: 0.36rem;
  color: #000;
}
.characteristic .characteristic-main .main-cont .cont-item .item-cent .cent-text {
  margin-top: 0.35rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  color: #666;
}
.characteristic .characteristic-main .main-cont .cont-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.characteristic .characteristic-main .main-cont .cont-item:nth-child(odd) .item-cent {
  padding: 0 0.56rem 0 0;
}
.package {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.package .package-main {
  margin-top: 0.55rem;
}
.package .package-main .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
}
.package .package-main .main-cont .cont-cent {
  width: 5.77rem;
  height: auto;
  padding: 0.95rem 0.58rem;
  background: #f9f9f9;
}
.package .package-main .main-cont .cont-cent .cent-title {
  font-size: var(--fs30);
  font-weight: bold;
  color: #000;
}
.package .package-main .main-cont .cont-cent .cent-subTitle {
  font-size: var(--fs36);
  color: #01b2b6;
}
.package .package-main .main-cont .cont-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #666;
}
.package .package-main .main-cont .cont-cent .cent-text span {
  font-size: var(--fs24);
  color: #333;
}
.package .package-main .main-cont .cont-cent .cent-text em {
  color: #01b2b6;
}
.package .package-main .main-cont .cont-pic {
  width: 9.6rem;
  height: auto;
  overflow: hidden;
}
.package .package-main .main-cont .cont-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.package .package-main .main-cont .cont-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.service {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.1rem;
}
.service .service-main {
  margin-top: 0.55rem;
}
.service .service-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.service .service-main .main-cont .cont-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 2.05rem;
}
.service .service-main .main-cont .cont-item .item-pic {
  width: 10.39rem;
  height: auto;
  overflow: hidden;
}
.service .service-main .main-cont .cont-item .item-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item .item-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.service .service-main .main-cont .cont-item .item-cent {
  position: absolute;
  top: -0.9rem;
  width: 6.8rem;
  height: 6rem;
  padding: 0.9rem 0.6rem 0 0.8rem;
  background: #fff;
  border-bottom-left-radius: 0.45rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item .item-cent .cent-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
}
.service .service-main .main-cont .cont-item .item-cent .cent-top .top-title {
  position: relative;
  width: auto;
  padding-top: 0.3rem;
  font-size: var(--fs40);
  font-weight: bold;
  color: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item .item-cent .cent-top .top-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2.05rem;
  height: 1px;
  background: #01b2b6;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item .item-cent .cent-top .top-icon {
  position: relative;
  width: 1.02rem;
  height: 1rem;
}
.service .service-main .main-cont .cont-item .item-cent .cent-top .top-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item .item-cent .cent-top .top-icon .img2 {
  opacity: 0;
}
.service .service-main .main-cont .cont-item .item-cent .cent-text {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item .item-cent .cent-ewm {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.service .service-main .main-cont .cont-item .item-cent .cent-ewm .ewm-pic {
  width: 1.4rem;
  height: auto;
  border-radius: 0.05rem;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.09);
  overflow: hidden;
}
.service .service-main .main-cont .cont-item .item-cent .cent-ewm .ewm-pic img {
  width: 100%;
}
.service .service-main .main-cont .cont-item .item-cent .cent-ewm .ewm-title {
  width: calc(100% - 1.4rem);
  padding-left: 0.26rem;
  font-size: var(--fs22);
  line-height: 0.32rem;
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item .item-cent .cent-ewm .ewm-title span {
  font-size: var(--fs30);
  font-weight: bold;
  color: #01b2b6;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.service .service-main .main-cont .cont-item:hover .item-cent {
  background: #01b2b6;
}
.service .service-main .main-cont .cont-item:hover .item-cent .cent-top .top-title {
  color: #fff;
}
.service .service-main .main-cont .cont-item:hover .item-cent .cent-top .top-title::after {
  background: #fff;
}
.service .service-main .main-cont .cont-item:hover .item-cent .cent-top .top-icon .img1 {
  opacity: 0;
}
.service .service-main .main-cont .cont-item:hover .item-cent .cent-top .top-icon .img2 {
  opacity: 1;
}
.service .service-main .main-cont .cont-item:hover .item-cent .cent-text {
  color: #fff;
}
.service .service-main .main-cont .cont-item:hover .item-cent .cent-ewm .ewm-title {
  color: #fff;
}
.service .service-main .main-cont .cont-item:hover .item-cent .cent-ewm .ewm-title span {
  color: #fff;
}
.service .service-main .main-cont .cont-item:last-of-type {
  margin-bottom: 0;
}
.service .service-main .main-cont .cont-item:nth-child(odd) .item-cent {
  right: 0;
}
.service .service-main .main-cont .cont-item:nth-child(even) {
  flex-direction: row-reverse;
}
.service .service-main .main-cont .cont-item:nth-child(even) .item-cent {
  left: 0;
}
.service .service-main .main-text {
  margin-top: 1.25rem;
  font-size: var(--fs40);
  font-weight: bold;
  text-align: center;
  line-height: 0.6rem;
  color: #333;
}
.news {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.1rem;
}
.news .news-main {
  margin-top: 0.55rem;
}
.news .news-main .main-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
}
.news .news-main .main-top .top-pic {
  width: 7.5rem;
  height: auto;
  overflow: hidden;
}
.news .news-main .main-top .top-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-top .top-cent {
  width: 7.86rem;
  height: auto;
  padding: 0.6rem 0.85rem 0;
  background: #f6f6f6;
}
.news .news-main .main-top .top-cent .cent-title {
  font-size: var(--fs32);
  font-weight: bold;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-top .top-cent .cent-time {
  margin-top: 0.2rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs32);
}
.news .news-main .main-top .top-cent .cent-time em {
  font-size: var(--fs18);
  color: #c9c9c9;
}
.news .news-main .main-top .top-cent .cent-time span {
  font-size: var(--fs48);
  background: linear-gradient(90deg, #52ac01, #afcd00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.news .news-main .main-top .top-cent .cent-time i {
  display: inline-block;
  width: 1px;
  height: 0.46rem;
  margin: 0 0.1rem;
  background: #999;
  transform: rotate(30deg) translateY(0.1rem);
}
.news .news-main .main-top .top-cent .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news .news-main .main-top .top-cent .cent-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #52ac01, #afcd00);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-top .top-cent .cent-button span {
  margin-right: 0.2rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #fff;
}
.news .news-main .main-top .top-cent .cent-button em {
  width: 0.16rem;
  height: 0.12rem;
  background: url(../images/icon/icon-arrow6.png) no-repeat center center;
  background-size: 100%;
}
.news .news-main .main-top .top-cent .cent-button:hover {
  box-shadow: 8px 8px rgba(11, 117, 190, 0.1);
  transform: translate(-4px, -4px);
  -o-transform: translate(-4px, -4px);
  -moz-transform: translate(-4px, -4px);
  -webkit-transform: translate(-4px, -4px);
}
.news .news-main .main-cont {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 1.05rem;
}
.news .news-main .main-cont .cont-item {
  width: calc(100% / 3 - 0.62rem);
  height: auto;
  margin-right: 0.93rem;
  margin-bottom: 0.88rem;
  background: #f5f5f5;
}
.news .news-main .main-cont .cont-item:nth-child(3n) {
  margin-right: 0;
}
.news .news-main .main-cont .cont-item .item-pic {
  width: 100%;
  height: 2.72rem;
  overflow: hidden;
}
.news .news-main .main-cont .cont-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-cont .cont-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.35rem 0.35rem 0.4rem;
}
.news .news-main .main-cont .cont-item .item-cent .cent-time {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs18);
  color: rgba(51, 51, 51, 0.3);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-cont .cont-item .item-cent .cent-title {
  height: 0.72rem;
  margin-top: 0.15rem;
  font-size: var(--fs22);
  font-weight: bold;
  line-height: 0.36rem;
  color: #353432;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-cont .cont-item .item-cent .cent-button {
  width: 0.5rem;
  height: 0.35rem;
  margin-top: 0.25rem;
  border: solid 2px #01b2b6;
  border-radius: 0.45rem;
  background: url(../images/icon/icon-arrow8.png) no-repeat center center;
  background-size: 6px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-cont .cont-item:hover {
  background: #01b2b6;
}
.news .news-main .main-cont .cont-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.news .news-main .main-cont .cont-item:hover .item-cent .cent-time,
.news .news-main .main-cont .cont-item:hover .item-cent .cent-title {
  color: #fff;
}
.news .news-main .main-cont .cont-item:hover .item-cent .cent-button {
  border: solid 2px #fff;
  background: #fff url(../images/icon/icon-arrow7.png) no-repeat center center;
  background-size: 6px;
}
.newsDetail {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.1rem;
}
.newsDetail .newsDetail-main {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
}
.newsDetail .newsDetail-main .main-cent {
  width: 64.3%;
  height: auto;
}
.newsDetail .newsDetail-main .main-cent .cent-title {
  font-size: var(--fs36);
  font-weight: bold;
  line-height: 0.48rem;
  color: #01b2b6;
}
.newsDetail .newsDetail-main .main-cent .cent-data {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin: 0.3rem 0 0.5rem;
}
.newsDetail .newsDetail-main .main-cent .cent-data .data-item {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 0.2rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs14);
  color: #ccc;
}
.newsDetail .newsDetail-main .main-cent .cent-data .data-item img {
  width: auto;
  margin: -0.04rem 0.08rem 0 0;
}
.newsDetail .newsDetail-main .main-cent .cent-box {
  width: 100%;
  height: auto;
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.32rem;
  color: #666;
}
.newsDetail .newsDetail-main .main-cent .cent-box img {
  display: block;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  margin: 0 auto;
}
.newsDetail .newsDetail-main .main-cent .cent-box .box-title {
  width: 100%;
  padding-bottom: 0.2rem;
  font-size: var(--fs24);
  font-weight: bold;
  color: #333;
  border-bottom: solid 2px #01b2b6;
}
.newsDetail .newsDetail-main .main-list {
  position: relative;
  width: 4rem;
  height: auto;
}
.newsDetail .newsDetail-main .main-list .list-box {
  position: relative;
  width: 100%;
  height: auto;
  background: #fff;
  z-index: 9;
}
.newsDetail .newsDetail-main .main-list .list-box .list-title {
  font-size: var(--fs30);
  font-weight: bold;
  color: #393435;
}
.newsDetail .newsDetail-main .main-list .list-box .list-English {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs14);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.25);
}
.newsDetail .newsDetail-main .main-list .list-box .list-item {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.2rem 0 0.2rem;
  border-bottom: solid 1px #ebebeb;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item:last-of-type {
  margin-bottom: 0.5rem;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item:first-of-type {
  padding: 0.35rem 0 0.45rem;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-pic {
  width: 100%;
  height: auto;
  margin-bottom: 0.2rem;
  overflow: hidden;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-title {
  font-size: var(--fs18);
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-title2 {
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 0.36rem;
  color: #01b2b6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-time {
  margin-top: 0.2rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  color: #666;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item:hover .item-title {
  color: #01b2b6;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item:hover .item-title2 {
  color: #01b2b6;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.newsDetail .newsDetail-main .main-list .list-box .list-link {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  font-weight: 100;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDetail .newsDetail-main .main-list .list-box .list-link a {
  font-weight: 500;
  color: #333;
}
.newsDetail .newsDetail-main .main-list .list-box .list-link:hover a {
  color: #01b2b6;
}
.newsDetail .newsDetail-main .main-list .list-box .list-share {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.newsDetail .newsDetail-main .main-list .list-box .list-share .share-item {
  position: relative;
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.15rem;
  border-radius: 50%;
  border: solid 1px #ededed;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-list .list-box .list-share .share-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.18rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.newsDetail .newsDetail-main .main-list .list-box .list-share .share-item .img2 {
  opacity: 0;
}
.newsDetail .newsDetail-main .main-list .list-box .list-share .share-item:hover {
  border: solid 1px #01b2b6;
  background: #01b2b6;
}
.newsDetail .newsDetail-main .main-list .list-box .list-share .share-item:hover .img2 {
  opacity: 1;
}
.newsDetail .newsDetail-main .main-list .list-box .list-share .share-item:hover .img1 {
  opacity: 0;
}
.newsDetail .newsDetail-main .main-list .list-box .list-botton {
  display: block;
  width: 100%;
  height: 0.56rem;
  margin-top: 0.5rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.56rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #01b2b6;
}
.newsDetail .newsDetail-main .main-list .list-box .list-botton img {
  width: 14px;
  margin: -0.04rem 0 0 0.1rem;
}
.newsDetail .newsDetail-main .main-list .list-box .list-botton:hover {
  background: #52ac01;
}
.newsDetail .newsDetail-main .main-list .list-box-active {
  position: fixed;
  top: 1.2rem;
}
.thinking {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.1rem;
}
.thinking .thinking-main {
  position: relative;
  margin-top: 0.55rem;
}
.thinking .thinking-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3.16rem;
  height: 3.73rem;
  background: url(../images/about-bg.png) no-repeat top left;
  background-size: 100%;
}
.thinking .thinking-main .main-text {
  margin-top: 0.45rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #666;
}
.thinking .thinking-main .main-cont {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.thinking .thinking-main .main-cont .cont-box {
  position: relative;
  width: 10.8rem;
  height: auto;
}
.thinking .thinking-main .main-cont .cont-box .box-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.thinking .thinking-main .main-cont .cont-box .box-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.thinking .thinking-main .main-cont .cont-box .box-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 1.6rem;
  margin: -0.8rem 0 0 -0.8rem;
  cursor: pointer;
}
.thinking .thinking-main .main-cont .cont-box .box-play::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: mapAddress3 4s 2s linear infinite;
}
.thinking .thinking-main .main-cont .cont-box .box-play::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.3);
  animation: mapAddress3 4s linear infinite;
}
.thinking .thinking-main .main-cont .cont-box .box-play img {
  width: 100%;
}
.thinking .thinking-main .main-cont .cont-cent {
  width: 4.57rem;
  height: auto;
  padding: 0.7rem 0.8rem 0 0.58rem;
  background: url(../images/thinking-bg.jpg) no-repeat bottom right;
  background-size: cover;
}
.thinking .thinking-main .main-cont .cont-cent .cent-English {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs36);
  font-weight: bold;
  color: #fff;
}
.thinking .thinking-main .main-cont .cont-cent .cent-heng {
  width: 0.4rem;
  height: 6px;
  margin-top: 0.25rem;
  background: #fff;
}
.thinking .thinking-main .main-cont .cont-cent .cent-title {
  margin-top: 0.2rem;
  font-size: var(--fs30);
  font-weight: bold;
  color: #fff;
}
.thinking .thinking-main .main-cont .cont-cent .cent-text {
  margin-top: 0.15rem;
  font-family: 'MONTSERRAT-EXTRALIGHT';
  font-size: var(--fs12);
  line-height: 0.22rem;
  color: rgba(255, 255, 255, 0.3);
}
.thinking .thinking-main .main-cont .cont-cent .cent-share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0.5rem;
}
.thinking .thinking-main .main-cont .cont-cent .cent-share span {
  font-size: var(--fs16);
  color: #fff;
}
.thinking .thinking-main .main-cont .cont-cent .cent-share .share-item {
  position: relative;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.2rem;
  border-radius: 50%;
  background: #fff;
}
.thinking .thinking-main .main-cont .cont-cent .cent-share .share-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.19rem;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.thinking .thinking-main .main-cont .cont-cent .cent-share .share-item .img2 {
  opacity: 0;
}
.thinking .thinking-main .main-cont .cont-cent .cent-share .share-item:hover .img1 {
  opacity: 0;
}
.thinking .thinking-main .main-cont .cont-cent .cent-share .share-item:hover .img2 {
  opacity: 1;
}
.procedure {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.procedure .procedure-main {
  margin-top: 0.55rem;
}
.procedure .procedure-main .page-title,
.procedure .procedure-main .page-English {
  text-align: center;
}
.procedure .procedure-main .page-heng {
  margin: 0.15rem auto 0;
}
.procedure .procedure-main .main-pic {
  width: 12.4rem;
  height: auto;
  margin: 0.7rem auto 0;
}
.procedure .procedure-main .main-pic img {
  width: 100%;
}
.notify {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.2rem;
}
.notify .notify-main {
  position: relative;
  margin-top: 0.55rem;
}
.notify .notify-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3.16rem;
  height: 3.73rem;
  background: url(../images/about-bg.png) no-repeat top left;
  background-size: 100%;
}
.notify .notify-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
}
.notify .notify-main .main-cont .cont-text {
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
}
.notify .notify-main .main-cont .cont-text span {
  font-size: var(--fs24);
  line-height: 0.48rem;
  color: #333;
}
.notify .notify-main .main-cont .cont-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.notify .notify-main .main-cont .cont-box .box-pic {
  width: 7.48rem;
  height: auto;
  margin-bottom: 0.4rem;
  overflow: hidden;
}
.notify .notify-main .main-cont .cont-box .box-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.notify .notify-main .main-cont .cont-box .box-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.visit {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 2.3rem;
}
.visit .visit-main {
  margin-top: 0.55rem;
}
.visit .visit-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.visit .visit-main .main-cont .cont-pic {
  width: 9.6rem;
  height: auto;
  overflow: hidden;
}
.visit .visit-main .main-cont .cont-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.visit .visit-main .main-cont .cont-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.visit .visit-main .main-cont .cont-cent {
  position: absolute;
  top: 0.7rem;
  right: 0;
  width: 7rem;
  height: 5.6rem;
  padding: 0.85rem 0.95rem 0;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
}
.visit .visit-main .main-cont .cont-cent .cent-title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #01b2b6;
}
.visit .visit-main .main-cont .cont-cent .cent-English {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-EXTRALIGHT';
  font-size: var(--fs14);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
.visit .visit-main .main-cont .cont-cent .cent-text {
  margin-top: 0.35rem;
  font-size: var(--fs18);
  line-height: 0.4rem;
  color: #666;
}
.visit .visit-main .main-cont .cont-cent .cent-text em {
  color: #01b2b6;
}
.visit .visit-main .main-cont .cont-cent .cent-text span {
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: var(--fs24);
  color: #01b2b6;
}
.healthy {
  width: 100%;
  height: auto;
  padding: 0.3rem 0 1.6rem;
}
.healthy .healthy-main {
  position: relative;
  margin-top: 0.5rem;
}
.healthy .healthy-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3.16rem;
  height: 3.73rem;
  background: url(../images/about-bg.png) no-repeat top left;
  background-size: 100%;
}
.healthy .healthy-main .main-title {
  margin-top: 0.65rem;
  font-size: var(--fs48);
  font-weight: bold;
  color: #01b2b6;
}
.healthy .healthy-main .main-subTitle {
  margin-top: 0.45rem;
  font-size: var(--fs36);
  color: #1d1d1d;
}
.healthy .healthy-main .main-text {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.4rem;
  color: #666;
}
.healthy .healthy-main .main-text em {
  color: #01b2b6;
}
.healthy .healthy-main .main-pic {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  overflow: hidden;
}
.healthy .healthy-main .main-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.healthy .healthy-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.healthy .healthy-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.healthy .healthy-main .main-cont .cont-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.healthy .healthy-main .main-cont .cont-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.healthy .healthy-main .main-cont .cont-swiper .swiper-slide .slide-box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.healthy .healthy-main .main-cont .cont-swiper .swiper-slide .slide-box img {
  width: 100%;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.healthy .healthy-main .main-cont .cont-swiper .swiper-slide .slide-box:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.healthy .healthy-main .main-cont .healthy-swiper-button-prev,
.healthy .healthy-main .main-cont .healthy-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.healthy .healthy-main .main-cont .healthy-swiper-button-prev img,
.healthy .healthy-main .main-cont .healthy-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.healthy .healthy-main .main-cont .healthy-swiper-button-prev .img2,
.healthy .healthy-main .main-cont .healthy-swiper-button-next .img2 {
  opacity: 0;
}
.healthy .healthy-main .main-cont .healthy-swiper-button-prev:hover,
.healthy .healthy-main .main-cont .healthy-swiper-button-next:hover {
  background: linear-gradient(90deg, #52ac01, #afcd00);
}
.healthy .healthy-main .main-cont .healthy-swiper-button-prev:hover .img1,
.healthy .healthy-main .main-cont .healthy-swiper-button-next:hover .img1 {
  opacity: 0;
}
.healthy .healthy-main .main-cont .healthy-swiper-button-prev:hover .img2,
.healthy .healthy-main .main-cont .healthy-swiper-button-next:hover .img2 {
  opacity: 1;
}
.healthy .healthy-main .main-cont .healthy-swiper-button-prev {
  left: -0.8rem;
}
.healthy .healthy-main .main-cont .healthy-swiper-button-next {
  right: -0.8rem;
}
.prompt {
  width: 100%;
  height: auto;
  margin-top: 1.04rem;
  padding: 1.2rem 0 1.3rem;
}
.prompt .prompt-main {
  width: 15.36rem;
  height: auto;
  margin: 0 auto;
}
.prompt .prompt-main .main-title {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  color: #333;
}
.prompt .prompt-main .main-cent {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.search {
  width: 100%;
  height: auto;
  padding: 1.5rem 0 1.2rem;
}
.search .search-main .main-top {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}
.search .search-main .main-top a {
  width: auto;
  height: 0.5rem;
  padding: 0 0.3rem;
  margin-right: 0.3rem;
  font-size: 0.16rem;
  line-height: 0.45rem;
  color: #fff;
  background: #01b2b6;
  border: solid 2px #01b2b6;
  border-radius: 0.1rem;
}
.search .search-main .main-top a:hover {
  color: #01b2b6;
  background: transparent;
}
.search .search-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-size: 0.16rem;
  color: #000;
}
.search .search-main .main-cont span {
  margin-right: 0.3rem;
}
.search .search-main .main-cont b {
  color: #cd0000;
}
.search .search-main .main-box {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.search .search-main .main-box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0.5rem;
  border-bottom: 1px dashed #eee;
}
.search .search-main .main-box a p {
  width: 100%;
  font-size: 0.16rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search .search-main .main-box a:first-of-type {
  border-top: 1px dashed #eee;
}
.search .search-main .main-box a:hover p {
  color: #01b2b6;
}
.page-heng {
  width: 0.3rem;
  height: 4px;
  margin-top: 0.15rem;
  background: #01b2b6;
}
.page-title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #161616;
}
.page-English {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs18);
  text-transform: uppercase;
  color: #ccc;
}
.page-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.46rem;
  height: 0.48rem;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #52ac01, #afcd00);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.page-button span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button em {
  width: 16px;
  height: 12px;
  margin-left: 0.18rem;
  background: url(../images/icon/icon-button-arrow.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button:hover {
  box-shadow: 8px 8px rgba(11, 117, 190, 0.1);
  transform: translate(-4px, -4px);
  -o-transform: translate(-4px, -4px);
  -moz-transform: translate(-4px, -4px);
  -webkit-transform: translate(-4px, -4px);
}
.page-crumb .crumb-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  font-size: var(--fs16);
  color: #929292;
}
.page-crumb .crumb-box a {
  margin-right: 0.14rem;
  color: #929292;
}
.page-crumb .crumb-box a img {
  width: 10px;
}
.page-crumb .crumb-box a:hover {
  color: #01b2b6;
}
.page-crumb .crumb-box span {
  font-size: var(--fs16);
  color: #01b2b6;
}
.page-crumb .crumb-box em {
  display: block;
  width: 4px;
  height: 7px;
  margin-right: 0.14rem;
}
.page-crumb .crumb-box em img {
  display: block;
  width: 100%;
}
.page-load {
  display: block;
  width: 0.7rem;
  height: auto;
  margin: 0 auto;
}
.page-load .load-pic {
  width: 0.4rem;
  height: auto;
  margin: 0 auto;
}
.page-load .load-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-load .load-title {
  margin-top: 0.12rem;
  font-size: var(--fs16);
  text-align: center;
  color: #01b2b6;
}
.page-load:hover .load-pic img {
  transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.page-subnav {
  width: 100%;
  height: auto;
  background: #f9f9f9;
}
.page-subnav .subnav-main {
  display: flex;
  justify-content: flex-start;
  height: 0.7rem;
}
.page-subnav .subnav-main .main-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1.7rem;
  height: 100%;
  font-size: var(--fs18);
  text-align: center;
  color: #333;
}
.page-subnav .subnav-main .main-item:hover {
  color: #fff;
  background: linear-gradient(90deg, #00c3c7, #0093c2);
}
.page-subnav .subnav-main .main-item-on {
  color: #fff;
  background: linear-gradient(90deg, #00c3c7, #0093c2);
}
.page-Wnav {
  display: none;
}
.page-sidebar {
  position: fixed;
  top: 45%;
  right: 0.15rem;
  width: 0.8rem;
  height: auto;
  z-index: 39;
}
.page-sidebar .sidebar-item {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.05rem;
  margin-bottom: 0.35rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.3);
}
.page-sidebar .sidebar-item:first-of-type .item-lump {
  background: #01b2b6;
}
.page-sidebar .sidebar-item:first-of-type:hover .item-lump {
  background: #52ac01;
}
.page-sidebar .sidebar-item:nth-child(2) .item-lump {
  background: linear-gradient(0deg, #52ac01, #afcd00);
}
.page-sidebar .sidebar-item:nth-child(2):hover .item-lump {
  background: linear-gradient(180deg, #52ac01, #afcd00);
}
.page-sidebar .sidebar-item:nth-child(3) {
  display: none;
}
.page-sidebar .sidebar-item .item-lump {
  width: 100%;
  height: auto;
  padding: 0.2rem 0.1rem;
  border-radius: 0.3rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-sidebar .sidebar-item .item-lump .lump-pic {
  width: 0.25rem;
  height: auto;
  margin: 0 auto;
}
.page-sidebar .sidebar-item .item-lump .lump-pic img {
  width: 100%;
}
.page-sidebar .sidebar-item .item-lump .lump-title {
  width: 100%;
  margin-top: 0.1rem;
  font-size: var(--fs22);
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
}
.page-sidebar .sidebar-up {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2) url(../images/icon/icon-arrow5.png) no-repeat center center;
  background-size: 14px;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-sidebar .sidebar-up:hover {
  background: #01b2b6 url(../images/icon/icon-arrow5.png) no-repeat center center;
}
.form-popup {
  display: none;
  position: fixed;
  top: 30%;
  right: 1.03rem;
  width: 4rem;
  height: 4.8rem;
  padding: 0.25rem 0.45rem 0;
  border-radius: 0.1rem;
  background: #fff;
  z-index: 39;
}
.form-popup .popup-hide {
  position: absolute;
  top: 0.15rem;
  right: 0.18rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/icon/icon-hidde2.png) no-repeat center center;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.form-popup .popup-hide:hover {
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.form-popup .popup-title {
  margin-bottom: 0.3rem;
  font-size: var(--fs24);
  font-weight: bold;
  color: #009944;
}
.form-popup .popup-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0.12rem;
  padding: 0 0.25rem 0 0.12rem;
  border: solid 1px #e7e7e7;
  border-radius: 0.05rem;
}
.form-popup .popup-item span {
  font-size: var(--fs16);
  line-height: 0.42rem;
  color: #333;
}
.form-popup .popup-item em {
  font-size: var(--fs16);
  line-height: 0.45rem;
  color: #ff0000;
}
.form-popup .popup-item input {
  width: calc(100% - 0.8rem);
  height: 0.42rem;
  padding: 0 0.1rem;
  font-size: var(--fs16);
  color: #666;
  background: none;
}
.form-popup .popup-item textarea {
  width: calc(100% - 0.6rem);
  height: 1rem;
  padding: 0.12rem;
  font-size: var(--fs16);
  color: #666;
  background: none;
}
.form-popup .popup-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
}
.form-popup .popup-text input[type=checkbox],
.form-popup .popup-text input[type=radio] {
  display: none;
  margin: 4px 0 0;
  line-height: normal;
  padding: 0;
}
.form-popup .popup-text label {
  position: relative;
  cursor: pointer;
  color: #999;
  font-size: var(--fs14);
  font-weight: 500;
  line-height: 0.2rem;
  padding-left: 0.2rem;
}
.form-popup .popup-text label::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/icon/icon-check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 4px;
  z-index: 10;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.form-popup .popup-text label a {
  color: #666;
  text-decoration: underline;
}
.form-popup .popup-text label a:hover {
  color: #01b2b6;
}
.form-popup .popup-text .agree:checked + label:before {
  background-image: url(../images/icon/icon-check-on.png);
}
.form-popup .popup-button {
  display: block;
  width: 100%;
  height: 0.45rem;
  margin-top: 0.15rem;
  font-size: var(--fs18);
  font-weight: bold;
  text-align: center;
  line-height: 0.45rem;
  color: #fff;
  border-radius: 0.1rem;
  background: linear-gradient(90deg, #52ac01, #afcd00);
}
.form-popup .popup-button:hover {
  background: linear-gradient(-90deg, #52ac01, #afcd00);
}
.tips-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 6.2rem;
  height: 3.6rem;
  margin: -1.8rem 0 0 -3.1rem;
  background: #fff;
  border-top-right-radius: 0.06rem;
  border-top-left-radius: 0.06rem;
  box-shadow: 0px 16px 38px 0px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  z-index: 49;
}
.tips-popup .popup-top {
  width: 100%;
  height: 0.9rem;
  font-size: var(--fs24);
  text-align: center;
  line-height: 0.9rem;
  color: #fff;
  background: linear-gradient(0deg, #52ac01, #009944);
}
.tips-popup .popup-text {
  width: 100%;
  padding: 0 0.3rem;
  margin-top: 0.6rem;
  font-size: var(--fs18);
  text-align: center;
  color: #2d2d2d;
}
.tips-popup .popup-button {
  width: 1.46rem;
  height: 0.48rem;
  margin: 0.5rem auto 0;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.48rem;
  color: #fff;
  background: linear-gradient(90deg, #52ac01, #afcd00);
  border-radius: 0.45rem;
  cursor: pointer;
}
.pageW {
  width: 15.36rem;
  height: auto;
  margin: 0 auto;
}
