.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: 1rem;
  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: 15.36rem;
  height: 100%;
  margin: 0 auto;
  z-index: 9;
}
nav .nav-main .main-cont .main-logo {
  position: relative;
  width: 1.75rem;
  height: 0.41rem;
}
nav .nav-main .main-cont .main-logo 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;
}
nav .nav-main .main-cont .main-logo .img2 {
  opacity: 0;
}
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: #fff;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link::after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  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: #fff;
}
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;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  max-height: 4rem;
  height: auto;
  padding: 0.1rem 0;
  background: #fff;
  border-top: solid 1px #efefef;
  box-shadow: 0 0.15rem 0.15rem 0 rgba(0, 0, 0, 0.05);
  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, #00a2e9, #2f318b);
  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.3rem;
  padding: 0.1rem 0;
  font-size: var(--fs16);
  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-nav .nav-cont .nav-li .li-list a:hover {
  color: #00a2e9;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-link {
  font-weight: bold;
  color: #00a2e9 !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%;
}
nav .nav-main .main-cont .main-right .right-serach {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.22rem;
  height: 100%;
  margin-left: 0.35rem;
  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: auto;
  height: 100%;
  margin-left: 0.9rem;
  font-family: Arial;
  font-size: var(--fs14);
  font-weight: bold;
  color: #00a2e9;
  cursor: pointer;
}
nav .nav-main .main-cont .main-right .right-menu {
  display: none;
}
nav .nav-main:hover {
  background: #fff;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.3);
}
nav .nav-main:hover .main-cont .main-logo .img1 {
  opacity: 0;
}
nav .nav-main:hover .main-cont .main-logo .img2 {
  opacity: 1;
}
nav .nav-main:hover .main-cont .main-nav .nav-cont .nav-li .li-link {
  color: #000;
}
nav .nav-main:hover .main-cont .main-nav .nav-cont .nav-li .li-link::after {
  background: #00a2e9;
}
nav .nav-main:hover .main-cont .main-nav .nav-cont .nav-li .li-link-active {
  color: #00a2e9;
}
nav .nav-main:hover .main-cont .main-right .right-serach span {
  background: url(../images/icon/icon-search2.png) no-repeat center center;
  background-size: 100%;
}
nav .nav-main-active {
  background: #fff;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
}
nav .nav-main-active .main-cont .main-logo .img1 {
  opacity: 0;
}
nav .nav-main-active .main-cont .main-logo .img2 {
  opacity: 1;
}
nav .nav-main-active .main-cont .main-nav .nav-cont .nav-li .li-link {
  color: #000;
}
nav .nav-main-active .main-cont .main-nav .nav-cont .nav-li .li-link::after {
  background: #00a2e9;
}
nav .nav-main-active .main-cont .main-nav .nav-cont .nav-li .li-link-active {
  color: #00a2e9;
}
nav .nav-main-active .main-cont .main-right .right-serach span {
  background: url(../images/icon/icon-search2.png) no-repeat center center;
  background-size: 100%;
}
nav .nav-main-on {
  background: #fff;
}
nav .nav-main-on .main-cont .main-logo .img1 {
  opacity: 0;
}
nav .nav-main-on .main-cont .main-logo .img2 {
  opacity: 1;
}
nav .nav-main-on .main-cont .main-nav .nav-cont .nav-li .li-link {
  color: #000;
}
nav .nav-main-on .main-cont .main-nav .nav-cont .nav-li .li-link::after {
  background: #00a2e9;
}
nav .nav-main-on .main-cont .main-nav .nav-cont .nav-li .li-link-active {
  color: #00a2e9;
}
nav .nav-main-on .main-cont .main-right .right-serach span {
  background: url(../images/icon/icon-search2.png) no-repeat center center;
  background-size: 100%;
}
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;
  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-web-pic {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14.4rem;
  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 .swiper-slide .slide-box .box-cent .cent-zi {
  width: 8.88rem;
  height: 0.88rem;
  margin: 0 auto;
  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-cent .cent-zi img {
  width: 100%;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-title {
  margin-top: 0.2rem;
  font-size: var(--fs48);
  font-weight: bold;
  text-align: center;
  color: #fff;
  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-pagination {
  bottom: 0.4rem;
  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: 0.6rem;
  height: 4px;
  margin: 0 5px;
  background: #fff;
  opacity: 0.3;
  border-radius: 0;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
header .head-banner .swiper-slide-active .box-cent .cent-title,
header .head-banner .swiper-slide-active .box-cent .cent-zi,
header .head-banner .swiper-slide-active .box-cent .cent-English,
header .head-banner .swiper-slide-active .box-cent .cent-lump,
header .head-banner .swiper-slide-active .box-cent .cent-button,
header .head-banner .swiper-slide-active .box-cent .cent-button2 {
  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 top;
  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: 14.4rem;
  height: auto;
  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;
  color: #fff;
}
header .head-banner .banner-cent .cent-English {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  font-weight: 100;
  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%;
}
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.9rem 0 0.5rem !important;
  background: #000015;
  overflow: hidden;
}
footer .foot-main .main-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
footer .foot-main .main-top .top-cent {
  width: 4.5rem;
  height: auto;
}
footer .foot-main .main-top .top-cent .cent-logo {
  display: block;
  width: 1.75rem;
  height: auto;
}
footer .foot-main .main-top .top-cent .cent-logo img {
  width: 100%;
}
footer .foot-main .main-top .top-cent .cent-text {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #86868a;
}
footer .foot-main .main-top .top-cent .cent-share {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
footer .foot-main .main-top .top-cent .cent-share .share-item {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.15rem;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 50%;
  background: #262629;
}
footer .foot-main .main-top .top-cent .cent-share .share-item img {
  width: 0.2rem;
  opacity: 0.6;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
footer .foot-main .main-top .top-cent .cent-share .share-item:hover {
  background: #00a2e9;
}
footer .foot-main .main-top .top-cent .cent-share .share-item:hover img {
  opacity: 1;
}
footer .foot-main .main-top .top-nav {
  display: flex;
  justify-content: flex-start;
  width: auto;
}
footer .foot-main .main-top .top-nav .nav-item {
  width: 1.92rem;
  height: auto;
  padding-right: 0.3rem;
}
footer .foot-main .main-top .top-nav .nav-item:last-of-type {
  padding-right: 0;
}
footer .foot-main .main-top .top-nav .nav-item .item-title {
  display: block;
  font-size: var(--fs18);
  color: #fff;
}
footer .foot-main .main-top .top-nav .nav-item .item-cent {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
footer .foot-main .main-top .top-nav .nav-item .item-cent a {
  display: block;
  width: 100%;
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.22rem;
  color: #86868a;
}
footer .foot-main .main-top .top-nav .nav-item .item-cent a span {
  position: relative;
}
footer .foot-main .main-top .top-nav .nav-item .item-cent a span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  background: #fff;
  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-top .top-nav .nav-item .item-cent a:hover {
  color: #fff;
}
footer .foot-main .main-top .top-nav .nav-item .item-cent a:hover span::after {
  left: 0;
  right: auto;
  width: 100%;
}
footer .foot-main .main-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}
footer .foot-main .main-bottom .bottom-link {
  font-size: var(--fs14);
  color: #86868a;
}
footer .foot-main .main-bottom .bottom-link a {
  color: #86868a;
}
footer .foot-main .main-bottom .bottom-link a:hover {
  color: #fff;
}
footer .foot-main .main-bottom .bottom-link em {
  margin: 0 0.1rem;
}
footer .foot-main .main-bottom .bottom-zhizi {
  font-size: var(--fs14);
  color: #86868a;
}
footer .foot-main .main-bottom .bottom-zhizi a {
  color: #86868a;
}
footer .foot-main .main-bottom .bottom-zhizi a:hover {
  color: #fff;
}
.container {
  position: relative;
  width: 100%;
  height: auto;
}
.container .cont-plate1 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.container .cont-plate1 .plate1-top .top-lump {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.container .cont-plate1 .plate1-top .top-lump .lump-item {
  position: relative;
  width: auto;
  height: auto;
  padding-bottom: 0.14rem;
  margin: 0 0.32rem;
  font-size: var(--fs16);
  color: #666;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate1 .plate1-top .top-lump .lump-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(-90deg, #00a2e9, #2f318b);
  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-plate1 .plate1-top .top-lump .lump-item:hover {
  color: #00a2e9;
}
.container .cont-plate1 .plate1-top .top-lump .lump-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-plate1 .plate1-top .top-lump .lump-item-on {
  color: #00a2e9;
}
.container .cont-plate1 .plate1-top .top-lump .lump-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-plate1 .plate1-main {
  position: relative;
  margin-top: 0.3rem;
}
.container .cont-plate1 .plate1-main .main-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide .slide-box {
  display: block;
  width: 6.4rem;
  height: auto;
  margin: 0 auto;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 5.23rem;
  border-radius: 0.1rem;
  background: linear-gradient(180deg, #e8e8e8, #fff);
  overflow: hidden;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  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-swiper .swiper-slide .slide-box .box-title {
  margin-top: 0.25rem;
  font-size: var(--fs36);
  text-align: center;
  color: #000;
  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-swiper .swiper-slide .slide-box .box-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.32rem;
  height: 0.48rem;
  margin: 0.15rem auto 0;
  border-radius: 0.45rem;
  border: solid 1px #bfbfbf;
  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-swiper .swiper-slide .slide-box .box-button span {
  margin-right: 0.1rem;
  font-size: var(--fs16);
  color: #666;
  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-swiper .swiper-slide .slide-box .box-button em {
  width: 0.15rem;
  height: 0.1rem;
  background: url(../images/icon/icon-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;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-button:hover {
  border: solid 1px #00a2e9;
  background: #00a2e9;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-button:hover span {
  color: #fff;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-button:hover em {
  background: url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 100%;
}
.container .cont-plate1 .plate1-main .main-swiper .swiper-slide .slide-box:hover .box-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-main .main-swiper .swiper-slide .slide-box:hover .box-title {
  color: #00a2e9;
}
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev,
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-next {
  position: absolute;
  top: 40%;
  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;
}
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev img,
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-next img {
  width: 100%;
}
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev:hover,
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-next:hover {
  opacity: 1;
}
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev {
  left: 0;
}
.container .cont-plate1 .plate1-main .main-swiper .plate1-swiper-button-next {
  right: 0;
}
.container .cont-plate1 .plate1-main .main-swiper-on {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  -webkit-transition: all 2s;
}
.container .cont-plate2 {
  width: 100%;
  height: auto;
  padding: 1.92rem 0;
  background-position: left top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.container .cont-plate2 .page-title {
  color: #fff;
}
.container .cont-plate2 .plate2-text {
  width: 8.65rem;
  margin: 0.25rem auto 0;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
}
.container .cont-plate2 .plate2-main {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}
.container .cont-plate2 .plate2-main .main-item {
  width: 2rem;
  height: auto;
  margin: 0 0.5rem;
}
.container .cont-plate2 .plate2-main .main-item .item-icon {
  width: 0.8rem;
  height: auto;
  margin: 0 auto;
}
.container .cont-plate2 .plate2-main .main-item .item-icon img {
  width: 100%;
}
.container .cont-plate2 .plate2-main .main-item .item-title {
  position: relative;
  margin-top: 0.15rem;
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: var(--fs16);
  text-align: center;
  color: #fff;
}
.container .cont-plate2 .plate2-main .main-item .item-title span {
  margin-right: 0.1rem;
  font-size: 0.6rem;
}
.container .cont-plate2 .plate2-main .main-item .item-title em {
  position: relative;
}
.container .cont-plate2 .plate2-main .main-item .item-title em::after {
  content: '';
  position: absolute;
  top: -0.4rem;
  left: 0;
  width: 0.1rem;
  height: 0.1rem;
  background: url(../images/icon/icon-jia.png) no-repeat center center;
  background-size: 100%;
}
.container .cont-plate2 .plate2-main .main-item .item-text {
  font-size: var(--fs16);
  text-align: center;
  color: #fff;
}
.container .cont-plate2 .plate2-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.32rem;
  height: 0.48rem;
  margin: 0.9rem auto 0;
  border-radius: 0.45rem;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate2 .plate2-button span {
  margin-right: 0.1rem;
  font-size: var(--fs16);
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate2 .plate2-button em {
  width: 0.15rem;
  height: 0.1rem;
  background: url(../images/icon/icon-arrow2.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;
}
.container .cont-plate2 .plate2-button:hover {
  border: solid 1px #fff;
  background: #fff;
}
.container .cont-plate2 .plate2-button:hover span {
  color: #00a2e9;
}
.container .cont-plate2 .plate2-button:hover em {
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
.container .cont-plate3 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.container .cont-plate3 .plate3-main .page-title {
  text-align: left;
}
.container .cont-plate3 .plate3-main .main-swiper {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide {
  width: calc(100% / 2 - 0.2rem);
  height: auto;
  margin-right: 0.4rem;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box {
  display: block;
  width: 100%;
  height: auto;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 4.5rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.container .cont-plate3 .plate3-main .main-swiper .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-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-title {
  margin-top: 0.2rem;
  font-size: var(--fs30);
  font-weight: bold;
  color: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box:hover .box-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-plate3 .plate3-main .main-swiper .swiper-slide .slide-box:hover .box-title {
  color: #00a2e9;
}
.container .cont-plate3 .plate3-main .main-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.36rem;
  height: auto;
  margin-top: 0.6rem;
}
.container .cont-plate3 .plate3-main .main-bottom .bottom-button {
  display: flex;
  justify-content: space-between;
  width: 1.4rem;
  margin-right: 0.4rem;
}
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-prev,
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-next {
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: solid 2px #e5e5e5;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-prev img,
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  margin: -8px 0 0 -4.5px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-prev .img2,
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-next .img2 {
  opacity: 0;
}
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-prev:hover,
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-next:hover {
  border: solid 2px #00a2e9;
}
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-prev:hover .img1,
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-next:hover .img1 {
  opacity: 0;
}
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-prev:hover .img2,
.container .cont-plate3 .plate3-main .main-bottom .bottom-button .plate3-swiper-button-next:hover .img2 {
  opacity: 1;
}
.container .cont-plate3 .plate3-main .main-bottom .swiper-pagination {
  position: relative;
  width: 13.56rem;
  height: 2px;
  background: #ececec;
}
.container .cont-plate3 .plate3-main .main-bottom .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #00a2e9;
}
.container .cont-plate4 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0 1.4rem;
  background: url(../images/plate4-bg.jpg) no-repeat top left;
  background-size: 100%;
}
.container .cont-plate4 .plate4-main .page-title {
  color: #fff;
}
.container .cont-plate4 .plate4-main .main-box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.container .cont-plate4 .plate4-main .main-box .box-item {
  width: calc(100% / 3 - 0.3rem);
  height: auto;
  padding: 0.7rem 0.3rem 0.65rem;
  margin-right: 0.45rem;
  border-radius: 0.1rem;
  background: #fff;
  overflow: hidden;
}
.container .cont-plate4 .plate4-main .main-box .box-item:last-of-type {
  margin-right: 0;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-icon {
  width: 0.42rem;
  height: auto;
  margin: 0 auto;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-icon img {
  width: 100%;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-title {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  text-align: center;
  color: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  text-align: center;
  color: #666;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.32rem;
  height: 0.48rem;
  margin: 0.55rem auto 0;
  border-radius: 0.45rem;
  border: solid 1px #bfbfbf;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-button span {
  margin-right: 0.1rem;
  font-size: var(--fs16);
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-button em {
  width: 0.15rem;
  height: 0.1rem;
  background: url(../images/icon/icon-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;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-button:hover {
  border: solid 1px #00a2e9;
  background: #00a2e9;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-button:hover span {
  color: #fff;
}
.container .cont-plate4 .plate4-main .main-box .box-item .item-button:hover em {
  background: url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 100%;
}
.container .cont-plate4 .plate4-main .main-box .box-item:hover {
  transform: translatey(-0.15rem);
  -o-transform: translatey(-0.15rem);
  -moz-transform: translatey(-0.15rem);
  -webkit-transform: translatey(-0.15rem);
}
.container .cont-plate4 .plate4-main .main-box .box-item:hover .item-title {
  color: #00a2e9;
}
.container .cont-plate5 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0 3.15rem;
}
.container .cont-plate5 .plate5-swiper {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.container .cont-plate5 .plate5-swiper .swiper-slide {
  width: 5.2rem;
  height: auto;
  margin: 0 0.3rem;
  transform-style: preserve-3d;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 3.2rem;
  overflow: hidden;
}
.container .cont-plate5 .plate5-swiper .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-plate5 .plate5-swiper .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 3.2rem;
  left: 0;
  width: 100%;
  height: auto;
  padding-top: 0.45rem;
  opacity: 0;
  visibility: hidden;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box .box-cent .cent-time {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  color: #00a2e9;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box .box-cent .cent-title {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #000;
  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-swiper .swiper-slide .slide-box .box-cent .cent-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box .box-cent .cent-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 0.3rem;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box .box-cent .cent-button span {
  margin-right: 0.08rem;
  font-size: var(--fs14);
  color: #00a2e9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box .box-cent .cent-button em {
  width: 0.15rem;
  height: 0.1rem;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box .box-cent .cent-button:hover span {
  margin-right: 0.2rem;
}
.container .cont-plate5 .plate5-swiper .swiper-slide .slide-box:hover .box-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-swiper .swiper-slide .slide-box:hover .box-cent .cent-title {
  color: #00a2e9;
}
.container .cont-plate5 .plate5-swiper .swiper-slide-active .slide-box .box-cent {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s 0.5s;
  -o-transition: all 0.3s 0.5s;
  -moz-transition: all 0.3s 0.5s;
  -webkit-transition: all 0.3s 0.5s;
}
.container .cont-plate5 .plate5-swiper .plate5-button {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 3.6rem;
  left: 4.9rem;
  width: 1.4rem;
  z-index: 9;
}
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-prev,
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-next {
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: solid 2px #e5e5e5;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-prev img,
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  margin: -6px 0 0 -4px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-prev .img2,
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-next .img2 {
  opacity: 0;
}
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-prev:hover,
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-next:hover {
  border: solid 2px #00a2e9;
}
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-prev:hover .img1,
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-next:hover .img1 {
  opacity: 0;
}
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-prev:hover .img2,
.container .cont-plate5 .plate5-swiper .plate5-button .plate5-swiper-button-next:hover .img2 {
  opacity: 1;
}
.product {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 1.2rem;
  background: #f5f5f5;
}
.product .product-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.18rem;
}
.product .product-main .main-item {
  width: calc(100% / 4 - 0.24rem);
  height: auto;
  margin-right: 0.32rem;
  margin-bottom: 0.32rem;
}
.product .product-main .main-item:nth-child(4n) {
  margin-right: 0;
}
.product .product-main .main-item .item-lump {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-item .item-lump .lump-pic {
  width: 100%;
  height: 3.2rem;
  overflow: hidden;
}
.product .product-main .main-item .item-lump .lump-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-item .item-lump .lump-cent {
  width: 100%;
  height: auto;
  padding: 0.12rem 0.3rem 0.4rem;
}
.product .product-main .main-item .item-lump .lump-cent .cent-title {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs24);
  text-align: center;
  color: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-item .item-lump .lump-cent .cent-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  font-size: var(--fs14);
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-item .item-lump .lump-cent .cent-link em {
  width: 6px;
  height: 10px;
  margin-left: 0.06rem;
  background: url(../images/icon/icon-arrow3.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;
}
.product .product-main .main-item .item-lump .lump-cent .cent-link:hover em {
  margin-left: 0.2rem;
}
.product .product-main .main-item .item-lump:hover {
  box-shadow: 0px 0px 30px 0px rgba(12, 12, 12, 0.1);
  transform: translatey(-0.1rem);
  -o-transform: translatey(-0.1rem);
  -moz-transform: translatey(-0.1rem);
  -webkit-transform: translatey(-0.1rem);
}
.product .product-main .main-item .item-lump:hover .lump-cent .cent-link {
  color: #00a2e9;
}
.product .product-main .main-item .item-lump:hover .lump-cent .cent-link em {
  background: url(../images/icon/icon-arrow4.png) no-repeat center center;
  background-size: 100%;
}
.productDetail {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.productDetail .productDetail-top {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0 1.2rem;
  border-bottom: solid 1px #eaeaea;
}
.productDetail .productDetail-top .top-cont {
  width: 50%;
  height: auto;
  padding: 0 0.94rem;
}
.productDetail .productDetail-top .top-cont .cont-pic {
  width: 5.8rem;
  height: 4.8rem;
  margin: 0 auto;
  overflow: hidden;
}
.productDetail .productDetail-top .top-cont .cont-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.productDetail .productDetail-top .top-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));
}
.productDetail .productDetail-top .top-cont .cont-bottom {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0.46rem;
  margin-top: 0.4rem;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper .swiper-slide {
  width: calc(100% / 4 - 0.105rem);
  height: 0.96rem;
  margin-right: 0.14rem;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper .swiper-slide .slide-box {
  width: 100%;
  height: 100%;
  border: solid 1px #dddddd;
  border-radius: 0.08rem;
  overflow: hidden;
  cursor: pointer;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper .swiper-slide .slide-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-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));
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper .swiper-slide .slide-box-on {
  border: solid 1px #00a2e9;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper .swiper-slide-on .slide-box {
  border: solid 1px #00a2e9;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-prev,
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.16rem;
  height: 0.29rem;
  margin-top: -0.14rem;
  cursor: pointer;
  z-index: 9;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-prev img,
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-next 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;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-prev .img2,
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-next .img2 {
  opacity: 0;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-prev:hover .img1,
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-next:hover .img1 {
  opacity: 0;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-prev:hover .img2,
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-next:hover .img2 {
  opacity: 1;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-prev {
  left: 0;
}
.productDetail .productDetail-top .top-cont .cont-bottom .bottom-swiper-button-next {
  right: 0;
}
.productDetail .productDetail-top .top-cent {
  width: 50%;
  height: auto;
  padding: 0.5rem 0.98rem 0;
}
.productDetail .productDetail-top .top-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #000;
}
.productDetail .productDetail-top .top-cent .cent-text {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.productDetail .productDetail-top .top-cent .cent-text span {
  font-weight: bold;
  color: #000;
}
.productDetail .productDetail-top .top-cent .cent-button {
  display: block;
  width: 1.86rem;
  height: 0.56rem;
  margin-top: 0.9rem;
  font-size: var(--fs18);
  font-weight: bold;
  text-align: center;
  line-height: 0.56rem;
  color: #fff;
  border-radius: 0.08rem;
  background: #00a2e9;
}
.productDetail .productDetail-top .top-cent .cent-button:hover {
  background: #0292d1;
}
.productDetail .productDetail-lump {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0.7rem;
  background: #f7f7f7;
}
.productDetail .productDetail-lump .lump-item {
  position: relative;
  width: auto;
  height: 100%;
  font-size: var(--fs18);
  line-height: 0.7rem;
  color: #000;
  cursor: pointer;
}
.productDetail .productDetail-lump .lump-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00a2e9;
  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;
}
.productDetail .productDetail-lump .lump-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));
}
.productDetail .productDetail-main {
  padding: 0.8rem 0 1.2rem;
}
.productDetail .productDetail-main .main-box {
  width: 100%;
  height: auto;
}
.productDetail .productDetail-main .main-box table {
  width: 100%;
}
.productDetail .productDetail-main .main-box tr:nth-child(2n) {
  background: #f7f7f7;
}
.productDetail .productDetail-main .main-box td {
  padding: 0.15rem 0.18rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  text-align: left;
  color: #666;
  border: solid 1px #eaeaea;
}
.productDetail .productDetail-main .main-box td:first-of-type {
  background: #fff;
}
.productDetail .productDetail-main .main-box td b {
  color: #333;
}
.productDetail .productDetail-bottom {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
  background: #f9f9f9;
}
.productDetail .productDetail-bottom .bottom-box {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.25rem;
}
.productDetail .productDetail-bottom .bottom-box .box-item {
  width: calc(100% / 4 - 0.24rem);
  height: auto;
  margin-right: 0.32rem;
  background: #fff;
}
.productDetail .productDetail-bottom .bottom-box .box-item:nth-child(4n) {
  margin-right: 0;
}
.productDetail .productDetail-bottom .bottom-box .box-item .item-pic {
  width: 100%;
  height: 3.2rem;
  overflow: hidden;
}
.productDetail .productDetail-bottom .bottom-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.productDetail .productDetail-bottom .bottom-box .box-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.12rem 0.3rem 0.4rem;
}
.productDetail .productDetail-bottom .bottom-box .box-item .item-cent .cent-title {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs24);
  text-align: center;
  color: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.productDetail .productDetail-bottom .bottom-box .box-item .item-cent .cent-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  font-size: var(--fs14);
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.productDetail .productDetail-bottom .bottom-box .box-item .item-cent .cent-link em {
  width: 6px;
  height: 10px;
  margin-left: 0.06rem;
  background: url(../images/icon/icon-arrow3.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;
}
.productDetail .productDetail-bottom .bottom-box .box-item .item-cent .cent-link:hover em {
  margin-left: 0.2rem;
}
.productDetail .productDetail-bottom .bottom-box .box-item:hover {
  box-shadow: 0px 0px 30px 0px rgba(12, 12, 12, 0.1);
  transform: translatey(-0.1rem);
  -o-transform: translatey(-0.1rem);
  -moz-transform: translatey(-0.1rem);
  -webkit-transform: translatey(-0.1rem);
}
.productDetail .productDetail-bottom .bottom-box .box-item:hover .item-cent .cent-link {
  color: #00a2e9;
}
.productDetail .productDetail-bottom .bottom-box .box-item:hover .item-cent .cent-link em {
  background: url(../images/icon/icon-arrow4.png) no-repeat center center;
  background-size: 100%;
}
.solution {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 0.6rem;
  background: #f5f5f5;
}
.solution .solution-main .main-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-bottom: 0.6rem;
}
.solution .solution-main .main-item .item-pic {
  width: calc(50% - 0.05rem);
  height: 6.4rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.solution .solution-main .main-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;
}
.solution .solution-main .main-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));
}
.solution .solution-main .main-item .item-cent {
  width: calc(50% - 0.05rem);
  height: 6.4rem;
  padding: 1rem 1.2rem 0 1rem;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #fff;
}
.solution .solution-main .main-item .item-cent .cent-icon {
  width: 0.8rem;
  height: 0.8rem;
}
.solution .solution-main .main-item .item-cent .cent-icon img {
  width: 100%;
}
.solution .solution-main .main-item .item-cent .cent-title {
  margin-top: 0.5rem;
  font-size: var(--fs48);
  font-weight: bold;
  color: #000;
}
.solution .solution-main .main-item .item-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.solution .solution-main .main-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.support {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 1.2rem;
  background: #f5f5f5;
}
.support .support-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.34rem;
}
.support .support-main .main-item {
  position: relative;
  width: calc(100% / 4 - 0.12rem);
  height: 3.3rem;
  padding: 0.3rem 0.3rem 0.4rem;
  margin-right: 0.16rem;
  margin-bottom: 0.16rem;
  background: #fff;
  border-radius: 0.1rem;
}
.support .support-main .main-item:nth-child(4n) {
  margin-right: 0;
}
.support .support-main .main-item .item-button {
  display: inline-block;
  width: auto;
  height: 0.32rem;
  padding: 0 0.2rem;
  font-size: var(--fs14);
  line-height: 0.3rem;
  color: #212121;
  border-radius: 0.45rem;
  border: solid 1px #e5e5e5;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.support .support-main .main-item .item-title {
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #212121;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.support .support-main .main-item .item-download {
  position: absolute;
  bottom: 0.35rem;
  right: 0.3rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
}
.support .support-main .main-item .item-download span {
  margin-right: 0.1rem;
  font-size: var(--fs16);
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.support .support-main .main-item .item-download em {
  width: 0.2rem;
  height: 0.16rem;
  background: url(../images/icon/icon-download.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;
}
.support .support-main .main-item:hover {
  background: linear-gradient(0deg, #00a2e9, #2f318b);
}
.support .support-main .main-item:hover .item-button {
  color: #b0c1c9;
  border: solid 1px transparent;
  background: rgba(0, 0, 0, 0.3);
}
.support .support-main .main-item:hover .item-title {
  color: #fff;
}
.support .support-main .main-item:hover .item-download span {
  color: #fff;
}
.support .support-main .main-item:hover .item-download em {
  background: url(../images/icon/icon-download2.png) no-repeat center center;
  background-size: 100%;
}
.about {
  width: 100%;
  height: auto;
}
.about .about-main {
  padding: 1.15rem 0;
}
.about .about-main .main-cent {
  width: 11.55rem;
  height: auto;
  margin: 0 auto;
}
.about .about-main .main-cent .page-title {
  text-align: left;
}
.about .about-main .main-cent .cent-text {
  margin-top: 0.25rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.about .about-main .main-pic {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
}
.about .about-main .main-pic img {
  width: 100%;
}
.about .about-main .main-data {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}
.about .about-main .main-data .data-item {
  width: 2rem;
  height: auto;
  margin: 0 0.5rem;
}
.about .about-main .main-data .data-item .item-icon {
  width: 0.8rem;
  height: auto;
  margin: 0 auto;
}
.about .about-main .main-data .data-item .item-icon img {
  width: 100%;
}
.about .about-main .main-data .data-item .item-title {
  position: relative;
  margin-top: 0.15rem;
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: var(--fs16);
  text-align: center;
  color: #666;
}
.about .about-main .main-data .data-item .item-title span {
  margin-right: 0.1rem;
  font-size: 0.6rem;
  color: #000;
}
.about .about-main .main-data .data-item .item-title em {
  position: relative;
}
.about .about-main .main-data .data-item .item-title em::after {
  content: '';
  position: absolute;
  top: -0.4rem;
  left: 0;
  width: 0.1rem;
  height: 0.1rem;
  background: url(../images/icon/icon-jia2.png) no-repeat center center;
  background-size: 100%;
}
.about .about-main .main-data .data-item .item-text {
  font-size: var(--fs16);
  text-align: center;
  color: #666;
}
.about .about-bottom {
  width: 100%;
  height: auto;
  padding: 1.1rem 0 1.2rem;
  background: #f8f8f8;
}
.about .about-bottom .bottom-cont {
  position: relative;
  margin-top: 0.35rem;
}
.about .about-bottom .bottom-cont .cont-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.about .about-bottom .bottom-cont .cont-swiper .swiper-slide {
  width: calc(100% / 4 - 0.24rem);
  height: auto;
  margin-right: 0.32rem;
}
.about .about-bottom .bottom-cont .cont-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.about .about-bottom .bottom-cont .cont-swiper .swiper-slide .slide-box {
  width: 100%;
  height: auto;
  padding: 0.18rem;
  background: #fff;
  border-radius: 0.08rem;
  box-shadow: 0px 0px 20px 0px rgba(220, 220, 220, 0.5);
}
.about .about-bottom .bottom-cont .cont-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 2.3rem;
  border-radius: 0.03rem;
  overflow: hidden;
}
.about .about-bottom .bottom-cont .cont-swiper .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-bottom .bottom-cont .cont-swiper .swiper-slide .slide-box .box-title {
  height: 0.6rem;
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-bottom .bottom-cont .cont-swiper .swiper-slide .slide-box:hover .box-title {
  color: #00a2e9;
}
.about .about-bottom .bottom-cont .about-swiper-button-prev,
.about .about-bottom .bottom-cont .about-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.16rem;
  height: 0.29rem;
  margin-top: -0.08rem;
  cursor: pointer;
  outline: none;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-bottom .bottom-cont .about-swiper-button-prev img,
.about .about-bottom .bottom-cont .about-swiper-button-next 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;
}
.about .about-bottom .bottom-cont .about-swiper-button-prev .img2,
.about .about-bottom .bottom-cont .about-swiper-button-next .img2 {
  opacity: 0;
}
.about .about-bottom .bottom-cont .about-swiper-button-prev:hover .img1,
.about .about-bottom .bottom-cont .about-swiper-button-next:hover .img1 {
  opacity: 0;
}
.about .about-bottom .bottom-cont .about-swiper-button-prev:hover .img2,
.about .about-bottom .bottom-cont .about-swiper-button-next:hover .img2 {
  opacity: 1;
}
.about .about-bottom .bottom-cont .about-swiper-button-prev {
  left: -0.6rem;
}
.about .about-bottom .bottom-cont .about-swiper-button-next {
  right: -0.6rem;
}
.news {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.2rem;
}
.news .news-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.news .news-main .main-item {
  width: calc(100% / 3 - 0.38rem);
  height: auto;
  margin-right: 0.57rem;
  margin-bottom: 0.55rem;
}
.news .news-main .main-item:nth-child(3n) {
  margin-right: 0;
}
.news .news-main .main-item .item-pic {
  width: 100%;
  height: 2.9rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.news .news-main .main-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-item .item-time {
  margin-top: 0.15rem;
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs16);
  color: #999;
}
.news .news-main .main-item .item-title {
  padding-right: 0.55rem;
  margin-top: 0.15rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
  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-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-item:hover .item-title {
  color: #00a2e9;
}
.newsDetail {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  padding: 1.15rem 0 1.34rem;
}
.newsDetail .newsDetail-main {
  display: flex;
  justify-content: space-between;
}
.newsDetail .newsDetail-main .main-cont {
  width: 60%;
  height: auto;
}
.newsDetail .newsDetail-main .main-cont .cont-top {
  width: 100%;
  height: auto;
  margin-bottom: 0.34rem;
  padding-bottom: 0.3rem;
  padding-right: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}
.newsDetail .newsDetail-main .main-cont .cont-top .top-title {
  font-size: var(--fs36);
  font-weight: bold;
  line-height: 0.48rem;
  color: #000;
}
.newsDetail .newsDetail-main .main-cont .cont-top .top-lump {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0.15rem;
}
.newsDetail .newsDetail-main .main-cont .cont-top .top-lump p {
  font-size: var(--fs16);
  color: #666;
  margin-right: 0.24rem;
}
.newsDetail .newsDetail-main .main-cont .cont-top .lump-share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}
.newsDetail .newsDetail-main .main-cont .cont-top .lump-share span {
  margin-right: 0.06rem;
  font-size: var(--fs16);
  color: #666;
}
.newsDetail .newsDetail-main .main-cont .cont-top .lump-share .share-item {
  width: 0.2rem;
  margin-right: 0.15rem;
  opacity: 0.5;
}
.newsDetail .newsDetail-main .main-cont .cont-top .lump-share .share-item img {
  width: 100%;
}
.newsDetail .newsDetail-main .main-cont .cont-top .lump-share .share-item:hover {
  opacity: 1;
}
.newsDetail .newsDetail-main .main-cont .cont-box {
  margin-bottom: 0.9rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.newsDetail .newsDetail-main .main-cont .cont-box img {
  display: block;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  margin: 0 auto;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  padding: 0.2rem 0.4rem 0.3rem;
  border: solid 1px #e1e1e1;
  border-top: 2px solid #5f5f5f;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2f318b, #00a2e9);
  z-index: 9;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom p {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #000;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom a {
  display: block;
  font-size: var(--fs16);
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom:hover::after {
  width: 100%;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom:hover a {
  color: #00a2e9;
}
.newsDetail .newsDetail-main .main-box {
  width: 33.33%;
  height: auto;
}
.newsDetail .newsDetail-main .main-box .box-title {
  margin-bottom: 0.28rem;
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 0.36rem;
  color: #000;
}
.newsDetail .newsDetail-main .main-box .box-item {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid #f0f0f0;
}
.newsDetail .newsDetail-main .main-box .box-item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.newsDetail .newsDetail-main .main-box .box-item .item-title {
  height: 0.48rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  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;
}
.newsDetail .newsDetail-main .main-box .box-item .item-time {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  color: #999999;
}
.newsDetail .newsDetail-main .main-box .box-item:hover .item-title {
  color: #00a2e9;
}
.contact {
  width: 100%;
  height: auto;
}
.contact .contact-main {
  width: 100%;
  height: auto;
  padding-top: 1.15rem;
}
.contact .contact-main .main-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 0.4rem;
  padding: 0.65rem 0.8rem 0.6rem;
  background: #fff;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
}
.contact .contact-main .main-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.08rem;
  background: linear-gradient(90deg, #2f318b, #00a2e9);
}
.contact .contact-main .main-top .top-item {
  width: 5.1rem;
  height: auto;
  padding-right: 2.5rem;
}
.contact .contact-main .main-top .top-item .item-title {
  font-size: var(--fs24);
  font-weight: bold;
  color: #000;
}
.contact .contact-main .main-top .top-item .item-text {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #666;
}
.contact .contact-main .main-top .top-item .item-tel {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  font-weight: bold;
  color: #666;
}
.contact .contact-main .main-top .top-ewm {
  width: 3.5rem;
  height: auto;
}
.contact .contact-main .main-top .top-ewm .ewm-title {
  font-size: var(--fs24);
  font-weight: bold;
  color: #000;
}
.contact .contact-main .main-top .top-ewm .ewm-pic {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.25rem;
  padding: 0.08rem;
  border: solid 1px #e8e8e8;
}
.contact .contact-main .main-map {
  width: 100%;
  height: 5.6rem;
  margin-top: -0.9rem;
  overflow: hidden;
}
.contact .contact-cont {
  padding: 1.15rem 0 1.2rem;
}
.contact .contact-cont .cont-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  padding: 0.6rem 0.74rem 1rem;
  background: #f7f7f9;
}
.contact .contact-cont .cont-form input {
  width: calc(100% / 2 - 0.1rem);
  height: 0.7rem;
  padding: 0 0.2rem;
  margin-bottom: 0.2rem;
  font-size: var(--fs16);
  color: #666;
  background: #fff;
}
.contact .contact-cont .cont-form input::placeholder {
  color: #999;
}
.contact .contact-cont .cont-form textarea {
  width: 100%;
  height: 1.36rem;
  padding: 0.2rem;
  margin-bottom: 0.3rem;
  font-family: '微软雅黑';
  font-size: var(--fs16);
  color: #666;
  background: #fff;
}
.contact .contact-cont .cont-form textarea::placeholder {
  color: #999;
}
.contact .contact-cont .cont-form .form-button {
  display: block;
  width: 3.82rem;
  height: 0.68rem;
  margin: 0 auto;
  font-size: var(--fs24);
  text-align: center;
  line-height: 0.68rem;
  color: #fff;
  border-radius: 0.08rem;
  background: linear-gradient(90deg, #0e6fb9, #363787);
}
.contact .contact-cont .cont-form .form-button:hover {
  width: 4.2rem;
}
.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: #00a2e9;
  border: solid 2px #00a2e9;
  border-radius: 0.1rem;
}
.search .search-main .main-top a:hover {
  color: #00a2e9;
  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: #00a2e9;
}
.page-heng {
  width: 0.5rem;
  height: 2px;
  margin: 0.25rem auto 0;
  background: #00a2e9;
}
.page-title {
  font-size: var(--fs48);
  font-weight: bold;
  text-align: center;
  color: #000;
}
.page-English {
  margin-top: 0.05rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs18);
  text-align: center;
  text-transform: uppercase;
  color: #ccc;
}
.page-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  background: #00a2e9;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button span {
  margin-right: 0.14rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  text-transform: uppercase;
  color: #fff;
}
.page-button em {
  width: 7px;
  height: 13px;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
.page-button:hover {
  background: #00a2e9;
}
.page-crumb {
  width: 100%;
  height: 0.5rem;
  background: #f4f4f4;
}
.page-crumb .crumb-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-size: var(--fs14);
  color: #666;
}
.page-crumb .crumb-box a {
  color: #666;
}
.page-crumb .crumb-box a:hover {
  color: #00a2e9;
}
.page-crumb .crumb-box span {
  margin: 0 0.08rem;
  font-size: var(--fs14);
  color: #666;
}
.page-crumb .crumb-box em {
  margin: 0 0.06rem;
}
.page-load {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1.15rem;
  height: auto;
  margin: 0.6rem auto 0;
  cursor: pointer;
}
.page-load span {
  width: 0.32rem;
  height: 0.32rem;
  background: url(../images/icon/icon-load.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-load em {
  font-size: var(--fs16);
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-load:hover span {
  transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.page-load:hover em {
  color: #00a2e9;
}
.page-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  z-index: 29;
}
.page-strip .strip-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.36rem;
  height: 100%;
  margin: 0 auto;
}
.page-strip .strip-box .box-item {
  font-size: var(--fs18);
  color: #cecbc9;
}
.page-strip .strip-box .box-item-on {
  color: #fdfdfd;
}
.page-strip .strip-box em {
  width: 1px;
  height: 0.2rem;
  margin: 0 0.35rem;
  background: rgba(255, 255, 255, 0.3);
}
.page-Wnav {
  display: none;
}
.pageW {
  width: 15.36rem;
  height: auto;
  margin: 0 auto;
}
