.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;
  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;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 0 1.92rem;
  z-index: 9;
}
nav .nav-main .main-cont .main-logo {
  position: relative;
  width: 1.01rem;
  height: auto;
}
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: flex-end;
  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: auto;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li {
  display: inline-block;
  width: auto;
  height: 100%;
}
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%;
  padding: 0 0.45rem;
  font-size: var(--fs18);
  font-weight: bold;
  text-align: center;
  line-height: 1rem;
  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: 3px;
  background: #2f54eb;
  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 {
  color: #2f54eb !important;
}
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;
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.72rem 2.4rem 1rem;
  border-top: solid 1px #e5e5e5;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 29;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list .list-pic {
  width: 3.3rem;
  height: auto;
  overflow: hidden;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list .list-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;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list .list-cent {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  width: auto;
  height: 1.8rem;
  margin-left: 1.36rem;
  padding-left: 1.2rem;
  border-left: solid 1px #e5e5e5;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list .list-cent .cent-link {
  display: flex;
  align-items: center;
  position: relative;
  width: 2.4rem;
  height: 0.52rem;
  margin-right: 0.2rem;
  font-size: var(--fs16);
  color: #999;
  border-bottom: solid 1px #e5e5e5;
  opacity: 0;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list .list-cent .cent-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2f54eb;
  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 .list-cent .cent-link:hover {
  font-weight: bold;
  color: #2f54eb;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list .list-cent .cent-link:hover::after {
  width: 100%;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-link {
  color: #2f54eb !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 a {
  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: 1.2rem;
  height: 100%;
  margin-left: 0.6rem;
  background: linear-gradient(320deg, #2f54eb, #1896f2);
  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 !important;
  background-size: 0.3rem !important;
}
nav .nav-main .main-cont .main-right .right-serach:hover {
  background: linear-gradient(135deg, #2f54eb, #1896f2);
}
nav .nav-main .main-cont .main-right .right-lang {
  display: flex;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
  margin-left: 0.4rem;
  font-size: var(--fs18);
  font-weight: bold;
  color: #222;
}
nav .nav-main .main-cont .main-right .right-lang a {
  color: #222;
}
nav .nav-main .main-cont .main-right .right-lang a:hover {
  color: #2f54eb;
}
nav .nav-main .main-cont .main-right .right-lang span {
  margin: 0 0.05rem;
}
nav .nav-main .main-cont .main-right .right-menu {
  display: none;
}
nav .Whead-search {
  display: none;
  position: fixed;
  top: 1rem;
  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: 16px;
  height: 16px;
  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: 1rem !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-web-pic {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 35%;
  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 .swiper-slide .slide-box .box-cent .cent-title {
  font-size: 0.6rem;
  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.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-English {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  text-align: center;
  text-transform: uppercase;
  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-slide .slide-box .box-cent2 {
  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 .swiper-slide .slide-box .box-cent2 .cent-title {
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 0.8rem;
  color: #fff;
  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-English {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  text-transform: uppercase;
  line-height: 0.36rem;
  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: 1rem;
  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 18px;
  background: #fff;
  opacity: 0.8;
  border-radius: 50%;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart .circle-chart {
  width: 30px;
  height: 30px;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart .circle-chart .circle-chart__background {
  opacity: 0;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart .circle-chart .circle-chart__circle {
  stroke-dasharray: 182 182;
  stroke-dashoffset: 182;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__background {
  opacity: 0.2 !important;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__circle {
  stroke-dashoffset: 0 !important;
  transition: all 12.5s;
  -o-transition: all 12.5s;
  -moz-transition: all 12.5s;
  -webkit-transition: all 12.5s;
}
header .head-banner .swiper-slide-active .box-cent .cent-title,
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-cent .cent-text,
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-cent .cent-subtitle,
header .head-banner .swiper-slide-active .box-cent2 .cent-subtitle,
header .head-banner .swiper-slide-active .box-cent3 .cent-subtitle,
header .head-banner .swiper-slide-active .box-cent .cent-English,
header .head-banner .swiper-slide-active .box-cent2 .cent-English,
header .head-banner .swiper-slide-active .box-cent3 .cent-English {
  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 1rem;
  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 .banner-cent {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 15.36rem;
  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.6rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
header .head-banner .banner-cent .cent-English {
  margin-top: 0.15rem;
  font-family: Arial;
  font-size: var(--fs24);
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
header .head-banner .banner-cent .cent-text {
  margin-top: 0.4rem;
  font-size: var(--fs48);
  text-align: center;
  color: #999;
}
header .head-banner .banner-cent2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.36rem;
  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-cent2 .cent-box {
  width: 9.6rem;
  height: auto;
  padding: 0.7rem 0.7rem 0.9rem;
  background: linear-gradient(90deg, rgba(150, 202, 1, 0.9), rgba(0, 99, 54, 0.9));
  border-radius: 0.1rem;
}
header .head-banner .banner-cent2 .cent-box .box-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #fff;
}
header .head-banner .banner-cent2 .cent-box .box-title2 {
  margin: 0.3rem 0;
  font-size: var(--fs48);
  font-weight: bold;
  line-height: 0.8rem;
  color: #fff;
}
header .head-banner .banner-cent2 .cent-box .box-text {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.48rem;
  color: #fff;
}
header .head-banner .banner-swiper-button-prev,
header .head-banner .banner-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.48rem;
  height: 0.48rem;
  margin-top: -0.24rem;
  font-family: '宋体';
  font-size: var(--fs16);
  font-weight: bold;
  text-align: center;
  line-height: 0.48rem;
  color: #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  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:hover,
header .head-banner .banner-swiper-button-next:hover {
  background: #2f54eb;
}
header .head-banner .banner-swiper-button-prev {
  left: 0.3rem;
}
header .head-banner .banner-swiper-button-next {
  right: 0.3rem;
}
header .head-strip {
  width: 100%;
  height: 0.7rem;
  background: #f9f9f9;
  z-index: 29;
}
header .head-strip .strip-box {
  display: flex;
  justify-content: space-between;
  width: 15.36rem;
  height: 100%;
  margin: 0 auto;
}
header .head-strip .strip-box .box-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 75%;
  height: 100%;
}
header .head-strip .strip-box .box-left .left-item {
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 0.5rem;
  font-size: var(--fs16);
  text-align: center;
  color: #333;
}
header .head-strip .strip-box .box-left .left-item:hover {
  color: #fff;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
header .head-strip .strip-box .box-left .left-item-on {
  color: #fff;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
header .head-strip .strip-box .box-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 25%;
  text-align: right;
  line-height: 0.7rem;
}
header .head-strip .strip-box .box-right .right-icon {
  width: 10px;
  margin-right: 0.15rem;
}
header .head-strip .strip-box .box-right .right-icon img {
  display: block;
  width: 100%;
}
header .head-strip .strip-box .box-right .right-text {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  font-size: var(--fs16);
  color: #2f54eb;
}
header .head-strip .strip-box .box-right .right-text a {
  color: #929292;
}
header .head-strip .strip-box .box-right .right-text a:hover {
  color: #2f54eb;
  text-decoration: underline;
}
header .head-strip .strip-box .box-right .right-text em {
  display: inline-block;
  width: 4px;
  height: 7px;
  margin: 0 0.15rem;
  background: url(../images/icon/icon-index-arrow.png) no-repeat center center;
  background-size: 100%;
}
header .background {
  background: #f5f7f9;
}
header .head-Wnav {
  display: none;
}
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.25rem 0 1.05rem !important;
  background: #101018 url(../images/foot-bg.png) no-repeat bottom left;
  background-size: 100%;
  overflow: hidden;
}
footer .foot-main {
  display: flex;
  justify-content: space-between;
}
footer .foot-main .main-nav {
  display: flex;
  justify-content: flex-start;
  width: auto;
}
footer .foot-main .main-nav .nav-item {
  width: auto;
  height: auto;
  margin-right: 0.85rem;
}
footer .foot-main .main-nav .nav-item:last-of-type {
  margin-right: 0;
}
footer .foot-main .main-nav .nav-item .item-title {
  display: block;
  font-size: var(--fs16);
  font-weight: bold;
  color: #fff;
}
footer .foot-main .main-nav .nav-item .item-title:hover {
  color: #9bd11a;
}
footer .foot-main .main-nav .nav-item .item-cent {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
footer .foot-main .main-nav .nav-item .item-cent a {
  display: block;
  width: 100%;
  margin-bottom: 0.1rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #999;
}
footer .foot-main .main-nav .nav-item .item-cent a span {
  position: relative;
}
footer .foot-main .main-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-nav .nav-item .item-cent a:hover {
  color: #fff;
}
footer .foot-main .main-nav .nav-item .item-cent a:hover span::after {
  left: 0;
  right: auto;
  width: 100%;
}
footer .foot-main .main-cont {
  display: flex;
  justify-content: space-between;
  width: 5.78rem;
}
footer .foot-main .main-cont .cont-cent {
  width: 2.9rem;
  height: auto;
}
footer .foot-main .main-cont .cont-cent .cent-title {
  margin-bottom: 0.05rem;
  font-size: var(--fs14);
  color: #c6c6c6;
}
footer .foot-main .main-cont .cont-cent .cent-address {
  margin-bottom: 0.1rem;
  font-size: var(--fs14);
  font-weight: bold;
  line-height: 0.24rem;
  color: #fff;
}
footer .foot-main .main-cont .cont-cent .cent-title2 {
  margin-bottom: 0.05rem;
  font-size: var(--fs14);
  color: #fff;
}
footer .foot-main .main-cont .cont-cent .cent-tel {
  margin-bottom: 0.1rem;
  font-size: var(--fs18);
  font-weight: bold;
  color: #fff;
}
footer .foot-main .main-cont .cont-box {
  width: auto;
  height: auto;
}
footer .foot-main .main-cont .cont-box .box-ewm {
  width: auto;
  height: auto;
  text-align: right;
}
footer .foot-main .main-cont .cont-box .box-ewm img {
  width: 1.4rem;
}
footer .foot-main .main-cont .cont-box .box-ewm p {
  display: none;
  font-size: var(--fs18);
  color: #999;
}
footer .foot-main .main-cont .cont-box .box-share {
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: auto;
  margin-top: 0.4rem;
}
footer .foot-main .main-cont .cont-box .box-share .share-item {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.25rem;
  text-align: center;
  line-height: 0.34rem;
  border: solid 1px #fff;
  border-radius: 50%;
}
footer .foot-main .main-cont .cont-box .box-share .share-item:last-of-type {
  margin-right: 0;
}
footer .foot-main .main-cont .cont-box .box-share .share-item img {
  width: 0.19rem;
  opacity: 0.2;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
footer .foot-main .main-cont .cont-box .box-share .share-item:hover {
  border: solid 1px transparent;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
footer .foot-main .main-cont .cont-box .box-share .share-item:hover img {
  opacity: 1;
}
footer .foot-bottom {
  display: flex;
  justify-content: space-between;
  margin: 0.8rem auto 0;
}
footer .foot-bottom .bottom-link {
  width: auto;
}
footer .foot-bottom .bottom-link a {
  margin-right: 0.32rem;
  font-size: var(--fs12);
  color: #999999;
}
footer .foot-bottom .bottom-link a:hover {
  color: #fff;
}
footer .foot-bottom .bottom-zhizi {
  width: auto;
  font-size: var(--fs12);
  color: #999;
}
footer .foot-bottom .bottom-zhizi a {
  color: #999999;
}
footer .foot-bottom .bottom-zhizi a:hover {
  color: #fff;
}
.container {
  width: 100%;
  height: auto;
}
.container .cont-plate1 {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 1.3rem;
  background: #f7fbff url(../images/plate1-bg.png) no-repeat 22% top;
  background-size: 7.63rem;
}
.container .cont-plate1 .plate1-cent {
  width: 50%;
  height: auto;
  padding: 0 1.28rem 0 1.92rem;
}
.container .cont-plate1 .plate1-cent .cent-title {
  margin-top: 0.5rem;
  font-size: var(--fs36);
  font-weight: bold;
}
.container .cont-plate1 .plate1-cent .cent-title span {
  background: linear-gradient(90deg, #1896f2, #2f54eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.container .cont-plate1 .plate1-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
}
.container .cont-plate1 .plate1-cent .page-button {
  margin-top: 0.5rem;
}
.container .cont-plate1 .plate1-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate1 .plate1-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-plate1 .plate1-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-plate2 {
  padding: 1.1rem 0 0.75rem;
}
.container .cont-plate2 .plate2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
}
.container .cont-plate2 .plate2-top .top-cent {
  width: auto;
}
.container .cont-plate2 .plate2-top .top-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  height: 0.46rem;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
.container .cont-plate2 .plate2-top .top-button span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #fff;
}
.container .cont-plate2 .plate2-top .top-button em {
  width: 13px;
  height: 12px;
  margin-left: 0.18rem;
  background: url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 100%;
}
.container .cont-plate2 .plate2-top .top-button:hover {
  background: linear-gradient(-90deg, #1896f2, #2f54eb);
}
.container .cont-plate2 .plate2-swiper {
  width: 100%;
  height: auto;
  padding: 0.6rem 0;
}
.container .cont-plate2 .plate2-swiper .swiper-slide {
  width: calc(100% / 3 - 0.32rem);
  height: auto;
  margin-right: 0.48rem;
}
.container .cont-plate2 .plate2-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.container .cont-plate2 .plate2-swiper .swiper-slide .slide-box {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0px 8px 60px 0px rgba(0, 0, 0, 0.04);
}
.container .cont-plate2 .plate2-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 2.9rem;
  overflow: hidden;
}
.container .cont-plate2 .plate2-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-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.4rem 0.45rem;
}
.container .cont-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent .cent-title {
  height: 0.72rem;
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 0.36rem;
  color: #222;
  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-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent .cent-text {
  height: 0.6rem;
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.container .cont-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent .cent-time {
  margin-top: 0.45rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs16);
  color: #cecece;
}
.container .cont-plate2 .plate2-swiper .swiper-slide .slide-box:hover .box-cent .cent-title {
  color: #2f54eb;
}
.container .cont-plate3 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.4rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.container .cont-plate3 .page-English {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.container .cont-plate3 .page-title {
  text-align: center;
  color: #fff;
}
.container .cont-plate3 .page-heng {
  margin: 0.2rem auto 0;
}
.container .cont-plate3 .plate3-main {
  position: relative;
  margin-top: 0.6rem;
}
.container .cont-plate3 .plate3-main .main-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide {
  width: calc(100% / 3 - 0.32rem);
  height: auto;
  margin-right: 0.48rem;
}
.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;
  position: relative;
  width: 100%;
  height: auto;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 5.78rem;
  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 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.6rem 0.25rem 0.4rem;
  font-size: var(--fs30);
  text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  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-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.75rem 0.9rem 0;
  background: linear-gradient(0deg, rgba(47, 84, 235, 0.9), rgba(24, 150, 242, 0.9));
  opacity: 0;
  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-cent .cent-title {
  font-size: var(--fs30);
  text-align: center;
  color: #fff;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .cent-English {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .page-button {
  margin: 0.65rem auto 0;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .page-button .button-box {
  border: dashed 1px #fff;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .page-button .button-box span {
  background: url(../images/icon/icon-arrow3.png) no-repeat center right;
  background-size: 8px;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .page-button .button-box span::after {
  background: #fff;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .page-button:hover .button-box {
  width: 100%;
  border: solid 1px #fff;
  border-radius: 0.45rem;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .page-button:hover .button-box span {
  width: 30px;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box .box-cent .page-button:hover .button-box span::after {
  width: 30px;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box:hover .box-title {
  opacity: 0;
}
.container .cont-plate3 .plate3-main .main-swiper .swiper-slide .slide-box:hover .box-cent {
  opacity: 1;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-prev,
.container .cont-plate3 .plate3-main .plate3-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-prev img,
.container .cont-plate3 .plate3-main .plate3-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;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-prev .img1,
.container .cont-plate3 .plate3-main .plate3-swiper-button-next .img1 {
  opacity: 0.5;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-prev .img2,
.container .cont-plate3 .plate3-main .plate3-swiper-button-next .img2 {
  opacity: 0;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-prev:hover .img1,
.container .cont-plate3 .plate3-main .plate3-swiper-button-next:hover .img1 {
  opacity: 0;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-prev:hover .img2,
.container .cont-plate3 .plate3-main .plate3-swiper-button-next:hover .img2 {
  opacity: 1;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-prev {
  left: -0.98rem;
}
.container .cont-plate3 .plate3-main .plate3-swiper-button-next {
  right: -0.98rem;
}
.container .cont-plate3 .plate3-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  height: 0.46rem;
  margin: 0.45rem auto 0;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
.container .cont-plate3 .plate3-button span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #fff;
}
.container .cont-plate3 .plate3-button em {
  width: 13px;
  height: 12px;
  margin-left: 0.18rem;
  background: url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 100%;
}
.container .cont-plate3 .plate3-button:hover {
  background: linear-gradient(-90deg, #1896f2, #2f54eb);
}
.container .cont-plate4 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.5rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.container .cont-plate4 .plate4-main .page-English,
.container .cont-plate4 .plate4-main .page-title {
  text-align: center;
}
.container .cont-plate4 .plate4-main .page-heng {
  margin: 0.2rem auto 0;
}
.container .cont-plate4 .plate4-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide {
  width: calc(100% / 4 - 0.21rem);
  height: auto;
  margin-right: 0.28rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box {
  display: block;
  width: 100%;
  height: auto;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 2.7rem;
  overflow: hidden;
}
.container .cont-plate4 .plate4-main .main-cont .cont-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-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-cent {
  width: 100%;
  height: 0.8rem;
  padding: 0 0.2rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.8rem;
  color: #000;
  background: #fff;
  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-plate4 .plate4-main .main-cont .cont-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-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box:hover .box-cent {
  color: #2f54eb;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev img,
.container .cont-plate4 .plate4-main .main-cont .plate4-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;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev .img2,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next .img2 {
  opacity: 0;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev:hover .img1,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next:hover .img1 {
  opacity: 0;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev:hover .img2,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next:hover .img2 {
  opacity: 1;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev {
  left: -0.98rem;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next {
  right: -0.98rem;
}
.about {
  width: 100%;
  height: auto;
}
.about .about-plate1 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.3rem;
}
.about .about-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  padding-left: 1.92rem;
}
.about .about-plate1 .plate1-main .main-cent {
  width: 7.7rem;
  height: auto;
}
.about .about-plate1 .plate1-main .main-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #333;
}
.about .about-plate1 .plate1-main .main-cent .cent-English {
  margin-top: 0.15rem;
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs20);
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}
.about .about-plate1 .plate1-main .main-cent .cent-English span {
  background: linear-gradient(90deg, #1896f2, #2f54eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about .about-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.6rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.about .about-plate1 .plate1-main .main-cent .cent-data {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.95rem;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item {
  width: auto;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-icon {
  width: auto;
  height: 0.45rem;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-icon img {
  width: auto;
  height: 100%;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-num {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  color: #666;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-num span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs40);
  color: #1160bc;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-num em {
  position: relative;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-num em::after {
  content: '+';
  position: absolute;
  top: -0.3rem;
  left: 0;
  font-size: var(--fs30);
  font-weight: bold;
  color: #1160bc;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-title {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  color: #666;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item:nth-child(2),
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item:nth-child(3) {
  padding-right: 0.2rem;
}
.about .about-plate1 .plate1-main .main-pic {
  width: 8.12rem;
  height: 100%;
  overflow: hidden;
}
.about .about-plate1 .plate1-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-plate1 .plate1-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-plate2 {
  width: 100%;
  height: auto;
  padding: 1.1rem 0 1.25rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.about .about-plate2 .page-English {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about .about-plate2 .page-title {
  text-align: center;
  color: #fff;
}
.about .about-plate2 .page-heng {
  margin: 0.2rem auto 0;
  background: #fff;
}
.about .about-plate2 .plate2-main {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.6rem;
}
.about .about-plate2 .plate2-main .main-item {
  position: relative;
  width: calc(100% / 4 - 0.39rem);
  height: 2.3rem;
  margin-right: 0.52rem;
  padding: 0.5rem 0.2rem 0;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate2 .plate2-main .main-item:nth-child(4n) {
  margin-right: 0;
}
.about .about-plate2 .plate2-main .main-item .item-bg {
  position: absolute;
  bottom: -0.35rem;
  right: 0.05rem;
  width: 1.78rem;
  height: 1.84rem;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate2 .plate2-main .main-item .item-bg img {
  width: 100%;
}
.about .about-plate2 .plate2-main .main-item .item-icon {
  width: 0.51rem;
  margin: 0 auto;
}
.about .about-plate2 .plate2-main .main-item .item-icon img {
  width: 100%;
}
.about .about-plate2 .plate2-main .main-item .item-title {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  text-align: center;
  color: #fff;
}
.about .about-plate2 .plate2-main .main-item .item-English {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.about .about-plate2 .plate2-main .main-item:hover {
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
.about .about-plate2 .plate2-main .main-item:hover .item-bg {
  bottom: 0.05rem;
  opacity: 0.15;
}
.about .about-plate3 {
  padding: 1.1rem 0 1.3rem;
}
.about .about-plate3 .page-English,
.about .about-plate3 .page-title {
  text-align: center;
}
.about .about-plate3 .page-heng {
  margin: 0.2rem auto 0;
}
.about .about-plate3 .plate3-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
}
.about .about-plate3 .plate3-main .main-item {
  width: calc(100% / 4 - 0.375rem);
  height: auto;
  margin-right: 0.5rem;
  margin-bottom: 0.78rem;
  padding: 0.32rem 0.16rem 0.45rem;
  background: #f5f5f5;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-main .main-item:nth-child(4n) {
  margin-right: 0;
}
.about .about-plate3 .plate3-main .main-item .item-pic {
  position: relative;
  width: 100%;
  height: 2.75rem;
  overflow: hidden;
}
.about .about-plate3 .plate3-main .main-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;
}
.about .about-plate3 .plate3-main .main-item .item-pic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.76rem;
  height: 0.76rem;
  margin: -0.38rem 0 0 -0.38rem;
  background: rgba(17, 96, 188, 0.8) url(../images/icon/icon-search3.png) no-repeat center center;
  background-size: 0.25rem;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-main .main-item .item-title {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  text-align: center;
  color: #333;
}
.about .about-plate3 .plate3-main .main-item:hover {
  background: #fff;
  box-shadow: 0 0 0.29rem 0 rgba(0, 0, 0, 0.1);
}
.about .about-plate3 .plate3-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));
}
.about .about-plate3 .plate3-main .main-item:hover .item-pic::after {
  opacity: 1;
}
.about .about-plate3 .plate3-load {
  display: block;
  width: 0.48rem;
  height: auto;
  margin: 0 auto;
}
.about .about-plate3 .plate3-load img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-load:hover img {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.news {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.news .news-main .page-English,
.news .news-main .page-title {
  text-align: center;
}
.news .news-main .page-heng {
  margin: 0.2rem auto 0;
}
.news .news-main .main-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.news .news-main .main-top .top-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.news .news-main .main-top .top-pic img {
  width: 100%;
  height: 100%;
  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: 50%;
  height: auto;
  padding: 0.75rem 1.2rem 0 0.85rem;
  background: #fff;
}
.news .news-main .main-top .top-cent .cent-time {
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs16);
  color: #c5c8ca;
}
.news .news-main .main-top .top-cent .cent-title {
  margin-top: 0.15rem;
  font-size: var(--fs30);
  color: #000;
  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-text {
  margin-top: 0.6rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news .news-main .main-top .top-cent .cent-link {
  margin-top: 0.8rem;
  font-size: var(--fs16);
  color: #2f54eb;
  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-link:hover {
  color: #9bd11a;
}
.news .news-main .main-top:hover .top-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-top:hover .top-cent .cent-title {
  color: #2f54eb;
}
.news .news-main .main-cont {
  width: 100%;
  height: auto;
  margin: 0.5rem 0 0.8rem;
}
.news .news-main .main-cont .cont-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0.48rem 0.5rem;
  border-bottom: solid 1px #f0f0f0;
}
.news .news-main .main-cont .cont-item .item-time {
  width: 0.96rem;
  height: 0.94rem;
  margin-right: 0.45rem;
  padding-top: 0.1rem;
  border: solid 1px #ebebeb;
  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-time .time-num {
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: var(--fs36);
  text-align: center;
  color: #2f54eb;
  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-time .time-text {
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs14);
  text-align: center;
  color: #2f54eb;
  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: 10.4rem;
  height: auto;
  margin-right: 1.75rem;
}
.news .news-main .main-cont .cont-item .item-cent .cent-title {
  font-size: var(--fs24);
  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-cont .cont-item .item-cent .cent-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news .news-main .main-cont .cont-item .item-link {
  width: 0.85rem;
  font-size: var(--fs16);
  color: #2f54eb;
  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-link:hover {
  color: #9bd11a;
}
.news .news-main .main-cont .cont-item:hover {
  background: #f6f6f6;
}
.news .news-main .main-cont .cont-item:hover .item-time {
  border: solid 1px transparent;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
.news .news-main .main-cont .cont-item:hover .item-time .time-num,
.news .news-main .main-cont .cont-item:hover .item-time .time-text {
  color: #fff;
}
.newsDetail {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 2.2rem;
}
.newsDetail .newsDetail-main {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.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.5rem;
  color: #000;
}
.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: #cccccc;
}
.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);
  line-height: 0.32rem;
  color: #777;
}
.newsDetail .newsDetail-main .main-cent .cent-box img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
.newsDetail .newsDetail-main .main-list {
  position: relative;
  width: 4.02rem;
  height: auto;
}
.newsDetail .newsDetail-main .main-list .list-box {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 9;
}
.newsDetail .newsDetail-main .main-list .list-box .list-title {
  font-size: var(--fs22);
  font-weight: bold;
  color: #393435;
}
.newsDetail .newsDetail-main .main-list .list-box .list-English {
  margin-top: 0.1rem;
  font-family: Arial;
  font-size: var(--fs14);
  text-transform: uppercase;
  color: 999;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.45rem 0 0.45rem;
  border-bottom: solid 1px #f5f5f5;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-title {
  font-size: var(--fs24);
  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;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-time {
  margin-top: 0.15rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs14);
  color: #1266aa;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item:hover .item-title {
  color: #2f54eb;
}
.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);
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDetail .newsDetail-main .main-list .list-box .list-link a {
  color: #333;
}
.newsDetail .newsDetail-main .main-list .list-box .list-link:hover a {
  color: #2f54eb;
}
.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 #fff;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
.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: linear-gradient(90deg, #1896f2, #2f54eb);
}
.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: linear-gradient(-90deg, #1896f2, #2f54eb);
}
.newsDetail .newsDetail-main .main-list .list-box-active {
  position: fixed;
  top: 1.2rem;
}
.product {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1rem;
}
.product .product-main .page-English,
.product .product-main .page-title {
  text-align: center;
}
.product .product-main .page-heng {
  margin: 0.2rem auto 0;
}
.product .product-main .main-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.product .product-main .main-top .top-item {
  width: auto;
  height: 0.46rem;
  margin: 0 0.1rem;
  padding: 0 0.25rem;
  font-size: var(--fs18);
  text-align: center;
  line-height: 0.46rem;
  color: #fff;
  border-radius: 0.05rem;
  background: #2f54eb;
}
.product .product-main .main-top .top-item:hover {
  background: #9bd11a;
}
.product .product-main .main-top .top-item-on {
  background: #9bd11a;
}
.product .product-main .main-cont {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.product .product-main .main-cont .cont-item {
  position: relative;
  width: calc(100% / 3 - 0.32rem);
  height: auto;
  margin-right: 0.48rem;
  margin-bottom: 0.3rem;
}
.product .product-main .main-cont .cont-item:nth-child(3n) {
  margin-right: 0;
}
.product .product-main .main-cont .cont-item .item-pic {
  width: 100%;
  height: 5.78rem;
  overflow: hidden;
}
.product .product-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;
}
.product .product-main .main-cont .cont-item .item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.6rem 0.25rem 0.4rem;
  font-size: var(--fs30);
  text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-cont .cont-item .item-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.75rem 0.9rem 0;
  background: linear-gradient(0deg, rgba(47, 84, 235, 0.9), rgba(24, 150, 242, 0.9));
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-cont .cont-item .item-cent .cent-title {
  font-size: var(--fs30);
  text-align: center;
  color: #fff;
}
.product .product-main .main-cont .cont-item .item-cent .cent-English {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
}
.product .product-main .main-cont .cont-item .item-cent .page-button {
  margin: 0.65rem auto 0;
}
.product .product-main .main-cont .cont-item .item-cent .page-button .button-box {
  border: dashed 1px #fff;
}
.product .product-main .main-cont .cont-item .item-cent .page-button .button-box span {
  background: url(../images/icon/icon-arrow3.png) no-repeat center right;
  background-size: 8px;
}
.product .product-main .main-cont .cont-item .item-cent .page-button .button-box span::after {
  background: #fff;
}
.product .product-main .main-cont .cont-item .item-cent .page-button:hover .button-box {
  width: 100%;
  border: solid 1px #fff;
  border-radius: 0.45rem;
}
.product .product-main .main-cont .cont-item .item-cent .page-button:hover .button-box span {
  width: 30px;
}
.product .product-main .main-cont .cont-item .item-cent .page-button:hover .button-box span::after {
  width: 30px;
}
.product .product-main .main-cont .cont-item:hover .item-title {
  opacity: 0;
}
.product .product-main .main-cont .cont-item:hover .item-cent {
  opacity: 1;
}
.productDetail {
  width: 100%;
  height: auto;
}
.productDetail .productDetail-top {
  display: flex;
  justify-content: space-between;
  width: 14.4rem;
  padding: 1.2rem 0;
}
.productDetail .productDetail-top .top-pic {
  width: 6rem;
  height: 7.2rem;
  background: #f0f2f2;
  overflow: hidden;
}
.productDetail .productDetail-top .top-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-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-cent {
  width: 6.9rem;
  height: auto;
  padding: 1rem 0 0;
}
.productDetail .productDetail-top .top-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #333;
}
.productDetail .productDetail-top .top-cent .cent-subtitle {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  color: #666;
}
.productDetail .productDetail-top .top-cent .cent-text {
  margin-top: 0.55rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
}
.productDetail .productDetail-top .top-cent .cent-button {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 1.1rem;
}
.productDetail .productDetail-top .top-cent .cent-button .button1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.76rem;
  height: 0.64rem;
  margin-right: 0.4rem;
  border-top-left-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
  background: linear-gradient(90deg, #1896f2, #2f54eb);
}
.productDetail .productDetail-top .top-cent .cent-button .button1 em {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.15rem;
  background: url(../images/icon/icon-tel.png) no-repeat center center;
  background-size: 100%;
}
.productDetail .productDetail-top .top-cent .cent-button .button1 p {
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs20);
  color: #fff;
}
.productDetail .productDetail-top .top-cent .cent-button .button1:hover {
  background: linear-gradient(-90deg, #1896f2, #2f54eb);
}
.productDetail .productDetail-top .top-cent .cent-button .button2 {
  width: 1.96rem;
  height: 0.64rem;
  font-size: var(--fs16);
  font-weight: bold;
  text-align: center;
  line-height: 0.6rem;
  color: #333;
  border-top-left-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
  border: solid 1px #2f54eb;
  background: #f8f8f8;
}
.productDetail .productDetail-top .top-cent .cent-button .button2:hover {
  color: #fff;
  background: #2f54eb;
}
.productDetail .productDetail-main {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.3rem;
  background: #f8f8f8;
}
.productDetail .productDetail-main .main-cont {
  width: 14.4rem;
}
.productDetail .productDetail-main .main-cont .cont-title {
  font-size: var(--fs48);
  text-align: center;
  color: #333;
}
.productDetail .productDetail-main .main-cont .page-heng {
  margin: 0.2rem auto 0;
}
.productDetail .productDetail-main .main-cont .cont-table {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.productDetail .productDetail-main .main-cont .cont-table table {
  width: 100%;
}
.productDetail .productDetail-main .main-cont .cont-table th {
  padding: 0.15rem 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
  border: solid 1px #827e74;
  background: #4c4638;
}
.productDetail .productDetail-main .main-cont .cont-table td {
  padding: 0.15rem 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: #333;
  border: solid 1px #d9d9d9;
}
.productDetail .productDetail-main .main-cont .cont-table td:first-of-type {
  font-weight: bold;
  background: #efefee;
}
.technology {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.technology .technology-main .page-English,
.technology .technology-main .page-title {
  text-align: center;
}
.technology .technology-main .page-heng {
  margin: 0.2rem auto 0;
}
.technology .technology-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.technology .technology-main .main-cont .cont-item {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.technology .technology-main .main-cont .cont-item:last-of-type {
  margin-bottom: 0;
}
.technology .technology-main .main-cont .cont-item:nth-child(even) {
  flex-direction: row-reverse;
}
.technology .technology-main .main-cont .cont-item .item-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.technology .technology-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;
}
.technology .technology-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));
}
.technology .technology-main .main-cont .cont-item .item-cent {
  width: 50%;
  height: auto;
  padding: 0.7rem 0.85rem 0;
  background: #f6f6f6;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.technology .technology-main .main-cont .cont-item .item-cent .cent-title {
  font-size: var(--fs30);
  color: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.technology .technology-main .main-cont .cont-item .item-cent .cent-text {
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  text-align: justify;
  color: #666;
}
.technology .technology-main .main-cont .cont-item .item-cent .cent-text span {
  display: inline-block;
  width: 49%;
}
.technology .technology-main .main-cont .cont-item:hover {
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
}
.technology .technology-main .main-cont .cont-item:hover .item-cent {
  background: #fff;
}
.technology .technology-main .main-cont .cont-item:hover .item-cent .cent-title {
  color: #2f54eb;
}
.contact {
  width: 100%;
  height: auto;
}
.contact .contact-top {
  padding: 1.15rem 0 0.85rem;
}
.contact .contact-top .page-English,
.contact .contact-top .page-title {
  text-align: center;
}
.contact .contact-top .page-heng {
  margin: 0.2rem auto 0;
}
.contact .contact-top .top-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.contact .contact-top .top-box .box-item {
  width: 3.7rem;
  height: auto;
}
.contact .contact-top .top-box .box-item .item-icon {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0 auto;
}
.contact .contact-top .top-box .box-item .item-icon img {
  width: 100%;
}
.contact .contact-top .top-box .box-item .item-title {
  margin-top: 0.35rem;
  font-size: var(--fs18);
  text-align: center;
  color: #262323;
}
.contact .contact-top .top-box .box-item .item-tel {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs22);
  text-align: center;
  color: #808080;
}
.contact .contact-top .top-box .box-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  text-align: center;
  color: #808080;
}
.contact .contact-main {
  width: 100%;
  height: auto;
  padding: 1.25rem 0 1.3rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact .contact-main .main-box .box-title {
  font-size: var(--fs42);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.contact .contact-main .main-box .box-text {
  margin-top: 0.15rem;
  font-size: var(--fs18);
  text-align: center;
  color: #fff;
}
.contact .contact-main .main-box .box-ewm {
  width: 1.54rem;
  height: auto;
  margin: 0.5rem auto 0;
}
.contact .contact-main .main-box .box-ewm .ewm-pic {
  width: 100%;
  border-radius: 0.05rem;
  box-shadow: 0 0 0.57rem 0 rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.contact .contact-main .main-box .box-ewm .ewm-pic img {
  width: 100%;
}
.contact .contact-main .main-box .box-ewm p {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  text-align: center;
  color: #fff;
}
.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: #2f54eb;
  border: solid 2px #2f54eb;
  border-radius: 0.1rem;
}
.search .search-main .main-top a:hover {
  color: #2f54eb;
  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: #2f54eb;
}
.pageW {
  width: 15.36rem;
  height: auto;
  margin: 0 auto;
}
.page-heng {
  width: 46px;
  height: 3px;
  margin-top: 0.2rem;
  background: #9bd11a;
}
.page-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #333;
}
.page-English {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs48);
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(21, 69, 119, 0.18), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-button {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 0.98rem;
  height: 0.54rem;
}
.page-button .button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  border: dashed 1px #2f54eb;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button .button-box span {
  position: relative;
  width: 8px;
  height: 15px;
  background: url(../images/icon/icon-arrow.png) no-repeat center right;
  background-size: 8px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button .button-box span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.7rem;
  height: 1px;
  background: #2f54eb;
  margin-top: -0.5px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button:hover .button-box {
  width: 100%;
  border: solid 1px #2f54eb;
  border-radius: 0.45rem;
}
.page-button:hover .button-box span {
  width: 30px;
}
.page-button:hover .button-box span::after {
  width: 30px;
}
