.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: 1.6rem;
  background: #fff;
  z-index: 59;
  transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
}
nav .nav-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background: url(../images/nav-bg.jpg) repeat-x top left;
  background-size: 100%;
}
nav .nav-main .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0.7rem 0 1.1rem;
  margin: 0 auto;
  z-index: 9;
}
nav .nav-main .main-cont .main-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 2.78rem;
  height: auto;
  padding-bottom: 0.05rem;
}
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%;
  padding-top: 0.6rem;
}
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 {
  position: relative;
  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);
  font-weight: bold;
  text-align: center;
  line-height: 0.22rem;
  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: #1266aa;
  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: #1266aa !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 {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 1.5rem;
  height: auto;
  padding: 0.15rem 0;
  margin-left: -0.75rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 29;
  box-shadow: 0px 0px 27px 0px rgba(64, 64, 64, 0.1);
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  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;
  padding: 0.1rem 0.2rem;
  font-size: var(--fs16);
  font-weight: bold;
  line-height: 0.22rem;
  text-align: center;
  color: #222;
  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 {
  font-weight: bold;
  color: #1266aa;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:nth-child(3) .li-list {
  width: 2rem;
  margin-left: -1rem;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-link {
  color: #1266aa !important;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list::before {
  transform: translatey(0);
  -o-transform: translatey(0);
  -moz-transform: translatey(0);
  -webkit-transform: translatey(0);
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list a {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
nav .nav-main .main-cont .main-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 100%;
  margin-left: 0.5rem;
}
nav .nav-main .main-cont .main-right .right-serach {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 0.85rem;
  height: auto;
  border-left: solid 1px #d6d6d6;
  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 {
  position: relative;
  width: 0.22rem;
  height: 0.22rem;
  background: url(../images/icon/icon-search.png) no-repeat center center;
  background-size: 0.2rem;
  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 em {
  margin-left: 0.08rem;
  font-size: var(--fs16);
  color: #333;
}
nav .nav-main .main-cont .main-right .right-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
  margin-right: 0.15rem;
  cursor: pointer;
}
nav .nav-main .main-cont .main-right .right-lang .lang-flag {
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: url(../images/icon/icon-lang.png) no-repeat center center;
  background-size: 100%;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-title {
  width: auto;
  margin: 0 0.08rem;
  font-weight: bold;
  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;
}
nav .nav-main .main-cont .main-right .right-lang .lang-arrow {
  width: 14px;
  height: 9px;
  background: url(../images/icon/icon-lang-arrow.png) no-repeat center center;
  background-size: 14px 9px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 1.5rem;
  height: auto;
  padding: 0.15rem 0;
  margin-left: -0.75rem;
  box-shadow: 0px 0px 27px 0px rgba(64, 64, 64, 0.1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 9;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  transform: translatey(-105%);
  -o-transform: translatey(-105%);
  -moz-transform: translatey(-105%);
  -webkit-transform: translatey(-105%);
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list .list-link {
  display: none;
  position: relative;
  width: 100%;
  padding: 0.06rem 0.2rem;
  font-size: var(--fs14);
  line-height: 0.26rem;
  text-align: center;
  color: #333;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list .list-link:hover {
  font-weight: bold;
  color: #1266aa;
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-arrow {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list {
  opacity: 1;
  visibility: visible;
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list::before {
  transform: translatey(0);
  -o-transform: translatey(0);
  -moz-transform: translatey(0);
  -webkit-transform: translatey(0);
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list .list-link {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
nav .nav-main .main-cont .main-right .right-menu {
  display: none;
}
nav .nav-main:hover {
  box-shadow: 0px 6px 38px 0px rgba(49, 49, 49, 0.12);
}
nav .nav-main-active {
  box-shadow: 0px 6px 38px 0px rgba(49, 49, 49, 0.12);
}
nav .Whead-search {
  display: none;
  position: fixed;
  top: 1.6rem;
  left: 0;
  width: 100%;
  height: 3rem;
  background: #1266aa;
  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;
  top: 0.2rem;
  right: 0.4rem;
  width: 0.2rem;
  cursor: pointer;
}
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 img {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
nav .Whead-search .search-input {
  position: absolute;
  bottom: 0.6rem;
  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: #fff;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid #fff;
}
nav .Whead-search .search-input .input-box input::-webkit-input-placeholder {
  font-family: 'Arial';
  color: #fff;
}
nav .Whead-search .search-input .input-box input:-moz-placeholder {
  font-family: 'Arial';
  color: #fff;
}
nav .Whead-search .search-input .input-box input:-ms-input-placeholder {
  font-family: 'Arial';
  color: #fff;
}
nav .Whead-search .search-input .input-icon {
  width: 0.2rem;
  margin-left: 0.2rem;
}
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: 1.6rem !important;
  z-index: 19;
}
header .head-banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
header .head-banner .banner-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background: url(../images/banner-bg.jpg) repeat-x top right;
  background-size: 100%;
  z-index: 9;
}
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: 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-logo {
  width: 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-logo img {
  max-width: 3.1rem;
  max-height: 1rem;
  width: auto;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-title {
  margin-top: 0.25rem;
  font-size: 0.46rem;
  font-weight: bold;
  line-height: 0.6rem;
  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-cent .cent-English {
  margin-top: 0.2rem;
  font-size: var(--fs36);
  font-weight: 100;
  color: #fff;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 1s;
  -o-transition: all 0.5s 1s;
  -moz-transition: all 0.5s 1s;
  -webkit-transition: all 0.5s 1s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button {
  margin-top: 0.7rem;
  width: 1.6rem;
  height: auto;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 1.2s;
  -o-transition: all 0.5s 1.2s;
  -moz-transition: all 0.5s 1.2s;
  -webkit-transition: all 0.5s 1.2s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.45rem;
  border: solid 2px #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button span {
  font-size: var(--fs14);
  color: #fff;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button em {
  width: 15px;
  height: 12px;
  margin-left: 0.08rem;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-button .button:hover {
  border: solid 2px #1266aa;
  background: #1266aa;
  transform: translatey(-0.1rem);
  -o-transform: translatey(-0.1rem);
  -moz-transform: translatey(-0.1rem);
  -webkit-transform: translatey(-0.1rem);
}
header .head-banner .swiper-pagination {
  bottom: 0.9rem;
}
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 10.5s;
  -o-transition: all 10.5s;
  -moz-transition: all 10.5s;
  -webkit-transition: all 10.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-cent .cent-logo,
header .head-banner .swiper-slide-active .box-cent2 .cent-logo,
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-cent .cent-button,
header .head-banner .swiper-slide-active .box-cent2 .cent-button,
header .head-banner .swiper-slide-active .box-cent .cent-title2,
header .head-banner .swiper-slide-active .box-cent2 .cent-title2 {
  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 1.6rem;
  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-video {
  width: 100%;
  height: auto;
}
header .head-banner .banner-video video {
  display: block;
  width: 100%;
  height: auto;
}
header .head-banner .banner-cent {
  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-cent .cent-title {
  font-size: 0.66rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
header .head-banner .banner-cent .cent-English {
  margin-top: 0.15rem;
  font-size: var(--fs30);
  text-align: center;
  letter-spacing: 0.02rem;
  color: #fff;
}
header .head-banner .banner-box {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 4.7rem;
  height: auto;
  transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
}
header .head-banner .banner-box .box-English {
  font-size: var(--fs30);
  font-weight: bold;
  color: #10384f;
}
header .head-banner .banner-box .box-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #10384f;
}
header .head-banner .banner-box .box-subtitle {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  font-weight: bold;
  color: #10384f;
}
header .head-banner .banner-box .box-text {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
header .head-banner .banner-mouse {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  width: 1rem;
  height: auto;
  z-index: 9;
  cursor: pointer;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
header .head-banner .banner-mouse .mouse-title {
  font-size: 14px;
  text-align: center;
  color: #fff;
}
header .head-banner .banner-mouse img {
  display: block;
  width: 19px;
  margin: 8px auto 0;
  animation: moveTop infinite 1.5s linear;
}
header .head-banner .swiper-bottom {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  width: 1.12rem;
  height: auto;
  margin-left: -0.56rem;
}
header .head-banner .swiper-bottom .banner-swiper-button-prev,
header .head-banner .swiper-bottom .banner-swiper-button-next {
  width: 0.46rem;
  height: 0.46rem;
  opacity: 0.5;
  cursor: pointer;
  outline: none;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-bottom .banner-swiper-button-prev img,
header .head-banner .swiper-bottom .banner-swiper-button-next img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .swiper-bottom .banner-swiper-button-prev:hover,
header .head-banner .swiper-bottom .banner-swiper-button-next:hover {
  opacity: 1;
}
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;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 0.4rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  text-align: center;
  color: #333;
}
header .head-strip .strip-box .box-left .left-item:hover {
  color: #fff;
  background: #1266aa;
}
header .head-strip .strip-box .box-left .left-item-on {
  color: #fff;
  background: #1266aa;
}
header .head-strip .strip-box .box-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 25%;
  text-align: left;
  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: #1266aa;
}
header .head-strip .strip-box .box-right .right-text a {
  color: #929292;
}
header .head-strip .strip-box .box-right .right-text a:hover {
  color: #1266aa;
  text-decoration: underline;
}
header .head-strip .strip-box .box-right .right-text .text {
  color: #929292;
}
header .head-strip .strip-box .box-right .right-text .text:hover {
  color: #c50815;
  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 .head-strip .strip-box .box-right .red {
  color: #c50815;
}
header .background {
  background: #f5f7f9;
}
header .head-Wnav {
  display: none;
}
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 0.2rem !important;
  background: url(../images/foot-bg.jpg) no-repeat top left;
  background-size: cover;
  overflow: hidden;
}
footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: url(../images/foot-bg.jpg) no-repeat top left;
  background-size: 100%;
  z-index: 1;
}
footer .foot-main {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.72rem 1.92rem;
}
footer .foot-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #f8f8f8;
}
footer .foot-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #e4e4e4;
}
footer .foot-main .main-box {
  position: relative;
  width: 50%;
  height: auto;
  z-index: 9;
}
footer .foot-main .main-box .box-logo {
  display: block;
  width: 0.98rem;
}
footer .foot-main .main-box .box-logo img {
  width: 100%;
}
footer .foot-main .main-box .box-link {
  width: 100%;
  margin-top: 0.4rem;
}
footer .foot-main .main-box .box-link a {
  display: inline-block;
  margin-right: 0.4rem;
  font-size: var(--fs16);
  font-weight: bold;
  color: #333;
}
footer .foot-main .main-box .box-link a:last-of-type {
  margin-right: 0;
}
footer .foot-main .main-box .box-link a:hover {
  color: #1266aa;
}
footer .foot-main .main-box .box-zizhi {
  margin-top: 0.1rem;
  font-size: var(--fs14);
  color: #666;
}
footer .foot-main .main-box .box-zizhi a {
  color: #666;
}
footer .foot-main .main-box .box-zizhi a:hover {
  color: #1266aa;
}
footer .foot-main .main-cont {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 50%;
  height: auto;
  z-index: 9;
}
footer .foot-main .main-cont .cont-cent {
  width: auto;
  margin-right: 1.7rem;
}
footer .foot-main .main-cont .cont-cent .cent-title {
  font-size: var(--fs14);
  color: #666;
}
footer .foot-main .main-cont .cont-cent .cent-tel {
  margin-top: 0.05rem;
  font-size: var(--fs48);
  color: #1266aa;
}
footer .foot-main .main-cont .cont-cent .cent-share {
  display: flex;
  justify-content: flex-start;
  width: auto;
  margin-top: 0.2rem;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item {
  position: relative;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.14rem;
  border-radius: 50%;
  background: #fff;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.22rem;
  margin: -0.12rem 0 0 -0.11rem;
  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-cent .cent-share .share-item .img2 {
  opacity: 0;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item:hover {
  background: #1266aa;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item:hover .img1 {
  opacity: 0;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item:hover .img2 {
  opacity: 1;
}
footer .foot-main .main-cont .cont-ewm {
  width: 1.13rem;
  height: auto;
}
footer .foot-main .main-cont .cont-ewm img {
  width: 100%;
}
footer .foot-main .main-cont .cont-ewm p {
  margin-top: 0.15rem;
  font-size: var(--fs14);
  text-align: center;
  color: #666;
}
.container {
  width: 100%;
  height: auto;
}
.container .cont-plate1 {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.3rem 0 1.4rem;
  background: url(../images/plate1-bg.png) no-repeat bottom left;
  background-size: 100%;
}
.container .cont-plate1::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 9.8rem;
  height: 5.45rem;
  background: rgba(1, 109, 184, 0.1);
  border-bottom-left-radius: 0.9rem;
}
.container .cont-plate1 .plate1-cent {
  width: 50%;
  height: auto;
  padding: 0 1.2rem 0 1.92rem;
}
.container .cont-plate1 .plate1-cent .cent-title {
  margin-top: 0.35rem;
  font-size: var(--fs36);
  font-weight: bold;
  color: #1266aa;
}
.container .cont-plate1 .plate1-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #666;
}
.container .cont-plate1 .plate1-cent .cent-data {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.container .cont-plate1 .plate1-cent .cent-data .data-item {
  width: auto;
  height: auto;
}
.container .cont-plate1 .plate1-cent .cent-data .data-item .item-title {
  font-size: var(--fs16);
  font-weight: 100;
  color: #666;
}
.container .cont-plate1 .plate1-cent .cent-data .data-item .item-title span {
  margin-right: 0.08rem;
  font-size: 0.54rem;
  font-weight: bold;
  color: #1266aa;
}
.container .cont-plate1 .plate1-cent .cent-data .data-item .item-title em {
  position: relative;
}
.container .cont-plate1 .plate1-cent .cent-data .data-item .item-title em::after {
  content: '+';
  position: absolute;
  top: -0.35rem;
  left: 0;
  font-size: var(--fs30);
  font-weight: bold;
  color: #1266aa;
}
.container .cont-plate1 .plate1-cent .cent-data .data-item .item-text {
  margin-top: 0.05rem;
  font-size: var(--fs16);
  color: #333;
}
.container .cont-plate1 .plate1-cent .cent-button {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  font-size: var(--fs16);
  font-weight: bold;
  text-align: center;
  line-height: 0.5rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #1266aa;
}
.container .cont-plate1 .plate1-cent .cent-button em {
  margin-left: 0.15rem;
}
.container .cont-plate1 .plate1-cent .cent-button::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.container .cont-plate1 .plate1-cent .cent-button:hover {
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.container .cont-plate1 .plate1-cent .cent-button:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.container .cont-plate1 .plate1-cont {
  position: relative;
  width: 8.8rem;
  height: auto;
  overflow: hidden;
  z-index: 9;
}
.container .cont-plate1 .plate1-cont .cont-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate1 .plate1-cont .cont-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate1 .plate1-cont .cont-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.95rem;
  height: 0.95rem;
  margin: -0.475rem 0 0 -0.475rem;
  cursor: pointer;
}
.container .cont-plate1 .plate1-cont .cont-play img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate1 .plate1-cont .cont-play:hover img {
  transform: rotate(120deg);
  -o-transform: rotate(120deg);
  -moz-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
}
.container .cont-plate1 .plate1-cont:hover .cont-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-plate2 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0;
}
.container .cont-plate2 .page-title,
.container .cont-plate2 .page-English {
  text-align: center;
}
.container .cont-plate2 .page-heng {
  margin: 0.3rem auto 0;
}
.container .cont-plate2 .plate2-swiper {
  position: relative;
  width: 15.36rem;
  height: auto;
  margin: 0.6rem auto 0;
  padding-bottom: 0.6rem;
}
.container .cont-plate2 .plate2-swiper .swiper-slide {
  width: calc(100% / 3 - 0.26rem);
  height: auto;
  margin-right: 0.39rem;
}
.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: auto;
}
.container .cont-plate2 .plate2-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: auto;
  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-title {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  font-weight: bold;
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate2 .plate2-swiper .swiper-slide .slide-box .box-English {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  text-transform: uppercase;
  color: #333;
}
.container .cont-plate2 .plate2-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-plate2 .plate2-swiper .swiper-slide .slide-box:hover .box-title {
  color: #1266aa;
}
.container .cont-plate2 .plate2-swiper .swiper-pagination {
  top: auto;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #f4f4f4;
}
.container .cont-plate2 .plate2-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #1266aa;
}
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-prev,
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: -0.325rem;
  text-align: center;
  line-height: 0.6rem;
  border-radius: 50%;
  background: #dddddd;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-prev img,
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-next img {
  width: 16px;
}
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-prev:hover,
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-next:hover {
  background: linear-gradient(90deg, #1266aa, #1a8cdc);
}
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-prev {
  left: -1.14rem;
}
.container .cont-plate2 .plate2-swiper .plate2-swiper-button-next {
  right: -1.14rem;
}
.container .cont-plate2 .plate2-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
  width: 15.36rem;
  height: 7.36rem;
  margin: 0.6rem auto 0;
}
.container .cont-plate2 .plate2-main .main-item {
  position: relative;
  width: calc(100% / 3 - 0.0666667rem);
  height: calc(100% / 2 - 0.04rem);
}
.container .cont-plate2 .plate2-main .main-item:first-of-type {
  height: 100%;
}
.container .cont-plate2 .plate2-main .main-item .item-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.container .cont-plate2 .plate2-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;
}
.container .cont-plate2 .plate2-main .main-item .item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.6rem 0.3rem 0.25rem;
  font-size: var(--fs24);
  text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}
.container .cont-plate2 .plate2-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));
}
.container .cont-plate3 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 0;
  background: #f6fafe;
}
.container .cont-plate3 .plate3-swiper {
  position: relative;
  width: 13.6rem;
  height: auto;
  margin: 0.6rem auto 0;
}
.container .cont-plate3 .plate3-swiper .swiper-slide {
  width: 100%;
  height: auto;
  margin-right: 0.44rem;
  opacity: 0.65;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 7.2rem;
  overflow: hidden;
}
.container .cont-plate3 .plate3-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-swiper .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 3.2rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0;
  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;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-cent .cent-title {
  font-size: var(--fs36);
  text-align: center;
  color: #fff;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.26rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-cent .cent-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 0.4rem;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-cent .cent-button span {
  font-size: var(--fs20);
  color: #fff;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-cent .cent-button em {
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.12rem;
  border-radius: 50%;
  background: #fff url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 13px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-swiper .swiper-slide .slide-box .box-cent .cent-button:hover em {
  transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}
.container .cont-plate3 .plate3-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-swiper .swiper-slide-active {
  opacity: 1;
}
.container .cont-plate3 .plate3-swiper .swiper-slide-active .slide-box .box-cent {
  opacity: 1;
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-prev,
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: -0.325rem;
  text-align: center;
  line-height: 0.6rem;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-prev img,
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  margin: -6px 0 0 -6px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-prev .img2,
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-next .img2 {
  opacity: 0;
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-prev:hover,
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-next:hover {
  background: linear-gradient(90deg, #1266aa, #1a8cdc);
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-prev:hover .img1,
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-next:hover .img1 {
  opacity: 0;
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-prev:hover .img2,
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-next:hover .img2 {
  opacity: 1;
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-prev {
  left: -1.58rem;
}
.container .cont-plate3 .plate3-swiper .plate3-swiper-button-next {
  right: -1.58rem;
}
.container .cont-plate3 .plate3-top {
  display: flex;
  justify-content: space-between;
}
.container .cont-plate3 .plate3-top .top-cent {
  width: auto;
  height: auto;
}
.container .cont-plate3 .plate3-top .top-box {
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: auto;
}
.container .cont-plate3 .plate3-top .top-box .box-item {
  position: relative;
  width: 2rem;
  height: auto;
  margin-right: 0.3rem;
  cursor: pointer;
}
.container .cont-plate3 .plate3-top .top-box .box-item:last-of-type {
  margin-right: 0;
}
.container .cont-plate3 .plate3-top .top-box .box-item .item-icon {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto;
  border-radius: 50%;
  border: solid 1px #c1c1c1;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-top .top-box .box-item .item-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.35rem;
  margin: -0.175rem 0 0 -0.175rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-top .top-box .box-item .item-icon .img2 {
  opacity: 0;
}
.container .cont-plate3 .plate3-top .top-box .box-item .item-title {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  text-align: center;
  color: #323232;
}
.container .cont-plate3 .plate3-top .top-box .box-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  height: auto;
  margin-left: -3px;
  border: 6px solid transparent;
  border-top-color: #757475;
  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-top .top-box .box-item:hover .item-icon {
  border: solid 1px #1266aa;
  background: #1266aa;
}
.container .cont-plate3 .plate3-top .top-box .box-item:hover .item-icon .img1 {
  opacity: 0;
}
.container .cont-plate3 .plate3-top .top-box .box-item:hover .item-icon .img2 {
  opacity: 1;
}
.container .cont-plate3 .plate3-top .top-box .box-item-on .item-icon {
  border: solid 1px #1266aa;
  background: #1266aa;
}
.container .cont-plate3 .plate3-top .top-box .box-item-on .item-icon .img1 {
  opacity: 0;
}
.container .cont-plate3 .plate3-top .top-box .box-item-on .item-icon .img2 {
  opacity: 1;
}
.container .cont-plate3 .plate3-top .top-box .box-item-on::after {
  bottom: -0.1rem;
  opacity: 1;
}
.container .cont-plate3 .plate3-main {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.container .cont-plate3 .plate3-main .main-box {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  box-shadow: -19px 5px 30px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.container .cont-plate3 .plate3-main .main-box .box-cent {
  position: relative;
  width: 7.68rem;
  height: auto;
  padding: 1.55rem 1.05rem 0.35rem 1.92rem;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-num {
  position: absolute;
  top: 0;
  right: 0.2rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: #f4f6f9;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-title {
  font-size: var(--fs36);
  color: #1266aa;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-English {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  text-transform: uppercase;
  color: #bbc2cd;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-text {
  margin-top: 0.45rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 0.5rem;
  margin-top: 1rem;
  font-size: var(--fs16);
  font-weight: bold;
  color: #fff;
  border-radius: 0.45rem;
  background: #1266aa;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-button em {
  margin-left: 0.16rem;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-button::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-button:hover {
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.container .cont-plate3 .plate3-main .main-box .box-cent .cent-button:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.container .cont-plate3 .plate3-main .main-box .cent-pic {
  width: 11.52rem;
  height: auto;
  overflow: hidden;
}
.container .cont-plate3 .plate3-main .main-box .cent-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate3 .plate3-main .main-box .cent-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.container .cont-plate3 .plate3-main .main-box-on {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.container .cont-plate4 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.3rem 0 1.45rem;
}
.container .cont-plate4 .plate4-3D {
  position: absolute;
  bottom: -55%;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}
.container .cont-plate4 .plate4-main {
  position: relative;
  z-index: 9;
}
.container .cont-plate4 .plate4-main .main-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
}
.container .cont-plate4 .plate4-main .main-top .top-cent {
  width: auto;
  height: auto;
}
.container .cont-plate4 .plate4-main .main-top .top-lump {
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.container .cont-plate4 .plate4-main .main-top .top-lump .lump-item {
  position: relative;
  width: auto;
  margin-left: 0.45rem;
  padding-bottom: 0.15rem;
  font-size: var(--fs16);
  font-weight: bold;
  color: #414141;
  cursor: pointer;
  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-top .top-lump .lump-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1266aa;
  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-plate4 .plate4-main .main-top .top-lump .lump-item:hover {
  color: #1266aa;
}
.container .cont-plate4 .plate4-main .main-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-plate4 .plate4-main .main-top .top-lump .lump-item-on {
  color: #1266aa;
}
.container .cont-plate4 .plate4-main .main-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-plate4 .plate4-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item {
  width: calc(100% / 3 - 0.42rem);
  height: auto;
  margin-right: 0.63rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item:nth-child(3n) {
  margin-right: 0;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-pic {
  width: 100%;
  height: 2.9rem;
  overflow: hidden;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-cent {
  width: 100%;
  height: auto;
  padding-top: 0.25rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-cent .cent-time {
  font-size: var(--fs16);
  color: #666;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-cent .cent-title {
  height: 0.72rem;
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-cent .cent-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.35rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-cent .cent-link span {
  font-size: var(--fs16);
  color: #1266aa;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-cent .cent-link em {
  width: 20px;
  height: 20px;
  margin-left: 0.12rem;
  border-radius: 50%;
  background: #1266aa url(../images/icon/icon-arrow3.png) no-repeat center center;
  background-size: 6px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item .item-cent .cent-link:hover em {
  margin-left: 0.2rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.container .cont-plate4 .plate4-main .main-cont .cont-box .box-item:hover .item-cent .cent-title {
  color: #1266aa;
}
.container .cont-plate4 .plate4-main .main-cont .cont-box-on {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.about {
  width: 100%;
  height: auto;
}
.about .about-plate1 {
  width: 100%;
  height: auto;
  padding: 1.1rem 0 1.6rem;
}
.about .about-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.5rem;
}
.about .about-plate1 .plate1-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0 0 0 1.92rem;
}
.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-subtitle {
  margin-top: 0.1rem;
  font-size: var(--fs40);
  font-weight: 100;
  color: #1266aa;
}
.about .about-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.about .about-plate1 .plate1-main .main-cent .cent-data {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item {
  width: auto;
  height: auto;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-icon {
  width: 0.5rem;
  height: auto;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-icon img {
  width: 100%;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-title {
  font-size: var(--fs16);
  font-weight: 100;
  color: #666;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-title span {
  margin-right: 0.08rem;
  font-size: 0.6rem;
  font-weight: bold;
  background: linear-gradient(-90deg, #1a8cdc, #1266aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-title em {
  position: relative;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-title em::after {
  content: '+';
  position: absolute;
  top: -0.35rem;
  left: 0;
  font-size: var(--fs30);
  font-weight: bold;
  color: #1266aa;
}
.about .about-plate1 .plate1-main .main-cent .cent-data .data-item .item-text {
  margin-top: 0.05rem;
  font-size: var(--fs16);
  color: #333;
}
.about .about-plate1 .plate1-main .main-cent .cent-button {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  font-size: var(--fs16);
  font-weight: bold;
  text-align: center;
  line-height: 0.5rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #1266aa;
}
.about .about-plate1 .plate1-main .main-cent .cent-button em {
  margin-left: 0.15rem;
}
.about .about-plate1 .plate1-main .main-cent .cent-button::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.about .about-plate1 .plate1-main .main-cent .cent-button:hover {
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.about .about-plate1 .plate1-main .main-cent .cent-button:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.about .about-plate1 .plate1-main .main-cont {
  position: relative;
  width: 8.2rem;
  height: auto;
  overflow: hidden;
  z-index: 9;
}
.about .about-plate1 .plate1-main .main-cont 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-cont: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.2rem 0 1.3rem;
  background: #f2f8fb;
}
.about .about-plate2 .page-title2,
.about .about-plate2 .page-English2 {
  text-align: center;
}
.about .about-plate2 .page-heng2 {
  margin: 0.2rem auto 0;
}
.about .about-plate2 .plate2-swiper {
  position: relative;
  margin-top: 0.6rem;
  overflow: hidden;
}
.about .about-plate2 .plate2-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cont {
  width: 5.76rem;
  height: auto;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cont .cont-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cont .cont-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cont .cont-cent {
  width: 100%;
  height: auto;
  padding: 0.25rem 0.65rem 0.3rem;
  background: #fff;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-title {
  font-size: var(--fs24);
  font-weight: bold;
  color: #232121;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-text {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #7f7f7f;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-heng {
  width: 16px;
  height: 3px;
  margin-top: 0.2rem;
  background: #1266aa;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent {
  width: 50%;
  height: auto;
  padding: 0.2rem 1rem 1rem 0;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent .cent-title {
  font-size: var(--fs30);
  font-weight: bold;
  color: #333;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent .cent-subtitle {
  margin-top: 0.45rem;
  font-size: var(--fs36);
  font-weight: bold;
  line-height: 0.6rem;
  color: #1266aa;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent span {
  display: block;
  margin-top: 0.65rem;
  margin-left: -0.35rem;
  font-size: 0.72rem;
  line-height: 0.5rem;
  font-weight: bold;
  color: #999;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent .cent-text {
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: justify;
  color: #333;
}
.about .about-plate2 .plate2-swiper .swiper-slide .slide-box .box-cent .cent-text em {
  font-weight: bold;
  color: #1266aa;
}
.about .about-plate2 .plate2-swiper .swiper-button {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  right: 6.2rem;
  width: 1.5rem;
  z-index: 9;
}
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-prev,
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-next {
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  border: solid 2px #999999;
  border-radius: 50%;
  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-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-prev img,
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-prev .img2,
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-next .img2 {
  opacity: 0;
}
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-prev:hover,
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-next:hover {
  border: solid 2px #1266aa;
  background: #1266aa;
}
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-prev:hover .img1,
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-next:hover .img1 {
  opacity: 0;
}
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-prev:hover .img2,
.about .about-plate2 .plate2-swiper .swiper-button .plate2-swiper-button-next:hover .img2 {
  opacity: 1;
}
.about .about-plate3 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0 1.4rem;
}
.about .about-plate3 .page-title2,
.about .about-plate3 .page-English2 {
  text-align: center;
}
.about .about-plate3 .page-heng2 {
  margin: 0.2rem auto 0;
}
.about .about-plate3 .plate3-top {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.about .about-plate3 .plate3-top::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #dcdcdc;
}
.about .about-plate3 .plate3-top .top-swiper {
  position: relative;
  width: 15.36rem;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide {
  width: calc(100% / 7);
  height: auto;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 0.8rem;
  cursor: pointer;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box .box-year {
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: 100%;
  font-size: var(--fs30);
  text-align: center;
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box .box-yuan {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  border: solid 2px transparent;
  border-radius: 50%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box .box-yuan span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #dcdcdc;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide-active .slide-box .box-year {
  top: 0;
  font-size: 0.6rem;
  font-weight: bold;
  color: #1266aa;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide-active .slide-box .box-yuan {
  border: solid 2px #1266aa;
  background: #fff;
}
.about .about-plate3 .plate3-top .top-swiper .swiper-slide-active .slide-box .box-yuan span {
  opacity: 0;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-prev,
.about .about-plate3 .plate3-top .plate3-swiper-button-next {
  position: absolute;
  bottom: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  border: solid 2px #999999;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-prev img,
.about .about-plate3 .plate3-top .plate3-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-prev .img2,
.about .about-plate3 .plate3-top .plate3-swiper-button-next .img2 {
  opacity: 0;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-prev:hover,
.about .about-plate3 .plate3-top .plate3-swiper-button-next:hover {
  border: solid 2px #1266aa;
  background: #1266aa;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-prev:hover .img1,
.about .about-plate3 .plate3-top .plate3-swiper-button-next:hover .img1 {
  opacity: 0;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-prev:hover .img2,
.about .about-plate3 .plate3-top .plate3-swiper-button-next:hover .img2 {
  opacity: 1;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-prev {
  left: 1rem;
}
.about .about-plate3 .plate3-top .plate3-swiper-button-next {
  right: 1rem;
}
.about .about-plate3 .plate3-main {
  position: relative;
  margin: 0.6rem auto 0;
}
.about .about-plate3 .plate3-main .main-box {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}
.about .about-plate3 .plate3-main .main-box .box-pic {
  width: 50%;
  height: 4.5rem;
  text-align: center;
  overflow: hidden;
}
.about .about-plate3 .plate3-main .main-box .box-pic img {
  display: none;
  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-box .box-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.about .about-plate3 .plate3-main .main-box .box-cent {
  position: relative;
  width: 50%;
  height: auto;
  padding: 0.3rem 0 0.8rem 1.25rem;
}
.about .about-plate3 .plate3-main .main-box .box-cent .cent-title {
  font-size: 0.72rem;
  font-weight: bold;
  color: #1266aa;
}
.about .about-plate3 .plate3-main .main-box .box-cent .cent-heng {
  width: 44px;
  height: 2px;
  margin: 0.45rem 0 0.3rem;
  background: #cecece;
}
.about .about-plate3 .plate3-main .main-box .box-cent .cent-lump {
  width: 100%;
}
.about .about-plate3 .plate3-main .main-box .box-cent .cent-lump .lump-text {
  position: relative;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
  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-box .box-cent .cent-lump .lump-text::after {
  content: '';
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: #999;
  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-box .box-cent .cent-lump .lump-text-on {
  color: #1266aa;
}
.about .about-plate3 .plate3-main .main-box .box-cent .cent-lump .lump-text-on::after {
  background: #1266aa;
}
.about .about-plate3 .plate3-main .main-box .box-cent .cent-tip {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: var(--fs14);
  font-weight: bold;
  color: #333;
}
.about .about-plate3 .plate3-main .main-box-active {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
}
.about .about-plate4 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0 2.1rem;
  background-position: left top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.about .about-plate4 .page-title2,
.about .about-plate4 .page-English2 {
  text-align: center;
  color: #fff;
}
.about .about-plate4 .page-heng2 {
  margin: 0.2rem auto 0;
  background: #fff;
}
.about .about-plate4 .plate4-main {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.about .about-plate4 .plate4-main .main-item {
  position: relative;
  width: 33.33%;
  height: auto;
  padding: 0.2rem 0.8rem;
  border-right: solid 1px rgba(255, 255, 255, 0.4);
}
.about .about-plate4 .plate4-main .main-item:last-of-type {
  border-right: none;
}
.about .about-plate4 .plate4-main .main-item .item-icon {
  width: 0.46rem;
  height: auto;
  margin: 0 auto;
}
.about .about-plate4 .plate4-main .main-item .item-icon img {
  width: 100%;
}
.about .about-plate4 .plate4-main .main-item .item-title {
  margin-top: 0.25rem;
  font-size: var(--fs18);
  text-align: center;
  color: #fff;
}
.about .about-plate4 .plate4-main .main-item .item-text {
  margin-top: 0.15rem;
  font-size: var(--fs24);
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
}
.about .about-plate5 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: #f6f6f6;
}
.about .about-plate5 .plate5-main .page-title2,
.about .about-plate5 .plate5-main .page-English2 {
  text-align: center;
}
.about .about-plate5 .plate5-main .page-heng2 {
  margin: 0.2rem auto 0;
}
.about .about-plate5 .plate5-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.about .about-plate5 .plate5-main .main-cont img {
  width: 100%;
}
.about .about-plate6 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0 1.4rem;
}
.about .about-plate6 .page-title2,
.about .about-plate6 .page-English2 {
  text-align: center;
}
.about .about-plate6 .page-heng2 {
  margin: 0.2rem auto 0;
}
.about .about-plate6 .plate6-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 0.6rem;
  margin-bottom: 0.32rem;
}
.about .about-plate6 .plate6-main .main-item {
  position: relative;
  width: calc(100% / 4 - 0.36rem);
  height: auto;
  margin-right: 0.48rem;
  margin-bottom: 0.48rem;
  padding: 0.38rem 0.4rem 0.25rem;
  background: #fafafa;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate6 .plate6-main .main-item:nth-child(4n) {
  margin-right: 0;
}
.about .about-plate6 .plate6-main .main-item .item-pic {
  width: 100%;
  height: 3.1rem;
  overflow: hidden;
}
.about .about-plate6 .plate6-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-plate6 .plate6-main .main-item .item-title {
  margin-top: 0.3rem;
  font-size: var(--fs20);
  font-weight: bold;
  text-align: center;
  line-height: 0.3rem;
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-plate6 .plate6-main .main-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1266aa;
  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;
}
.about .about-plate6 .plate6-main .main-item:hover {
  background: #fff;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.08);
}
.about .about-plate6 .plate6-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-plate6 .plate6-main .main-item:hover .item-title {
  color: #1266aa;
}
.about .about-plate6 .plate6-main .main-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));
}
.product {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 1.2rem;
}
.product .product-main {
  display: flex;
  justify-content: space-between;
}
.product .product-main .main-list {
  width: 3rem;
  height: auto;
}
.product .product-main .main-list .list-top {
  display: none;
}
.product .product-main .main-list .list-box {
  width: 100%;
  height: auto;
}
.product .product-main .main-list .list-box .box-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 0.7rem;
  padding: 0 0.3rem;
  margin-bottom: 0.1rem;
  background: #eeeeee;
}
.product .product-main .main-list .list-box .box-item p {
  font-size: var(--fs18);
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-list .list-box .box-item em {
  width: 7px;
  height: 11px;
  background: url(../images/icon/icon-arrow4.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-list .list-box .box-item:hover {
  background: #1266aa;
}
.product .product-main .main-list .list-box .box-item:hover p {
  color: #fff;
}
.product .product-main .main-list .list-box .box-item:hover em {
  background: url(../images/icon/icon-arrow3.png) no-repeat center center;
  background-size: 100%;
}
.product .product-main .main-list .list-box .box-item-active {
  background: #1266aa;
}
.product .product-main .main-list .list-box .box-item-active p {
  color: #fff;
}
.product .product-main .main-list .list-box .box-item-active em {
  background: url(../images/icon/icon-arrow3.png) no-repeat center center;
  background-size: 100%;
}
.product .product-main .main-cont {
  width: 11.52rem;
  height: auto;
}
.product .product-main .main-cont .cont-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-bottom: 0.3rem;
}
.product .product-main .main-cont .cont-box .box-item {
  width: calc(100% / 3 - 0.24rem);
  height: auto;
  margin-right: 0.36rem;
  margin-bottom: 0.45rem;
}
.product .product-main .main-cont .cont-box .box-item:nth-child(3n) {
  margin-right: 0;
}
.product .product-main .main-cont .cont-box .box-item .item-pic {
  position: relative;
  width: 100%;
  height: 3.6rem;
  background: #f5f6f8;
  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-cont .cont-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;
}
.product .product-main .main-cont .cont-box .box-item .item-pic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1266aa;
  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;
}
.product .product-main .main-cont .cont-box .box-item .item-title {
  margin-top: 0.25rem;
  font-size: var(--fs20);
  font-weight: bold;
  text-align: center;
  color: #222;
  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;
}
.product .product-main .main-cont .cont-box .box-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  text-align: center;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product .product-main .main-cont .cont-box .box-item:hover .item-pic {
  background: #fff;
  box-shadow: 1px 3px 30px 0px rgba(0, 0, 0, 0.15);
}
.product .product-main .main-cont .cont-box .box-item:hover .item-pic::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));
}
.product .product-main .main-cont .cont-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.product .product-main .main-cont .cont-box .box-item:hover .item-title {
  color: #1266aa;
}
.productDetail {
  width: 100%;
  height: auto;
}
.productDetail .productDetail-main {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0 1.2rem;
}
.productDetail .productDetail-main .main-box {
  width: 6.4rem;
  height: 6.4rem;
  background: #f5f6f8;
  overflow: hidden;
}
.productDetail .productDetail-main .main-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-main .main-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-main .main-cent {
  width: 7.68rem;
  height: auto;
  padding: 0.7rem 0 0;
}
.productDetail .productDetail-main .main-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #222;
}
.productDetail .productDetail-main .main-cent .cent-subtitle {
  margin-top: 0.25rem;
  padding-bottom: 0.55rem;
  font-size: var(--fs24);
  color: #666;
  border-bottom: solid 1px #1266aa;
}
.productDetail .productDetail-main .main-cent .cent-text {
  margin-top: 0.5rem;
  font-size: var(--fs18);
  line-height: 0.48rem;
  color: #666;
}
.productDetail .productDetail-main .main-cent .cent-bottom {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.productDetail .productDetail-main .main-cent .cent-bottom .button1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 0.6rem;
  padding: 0 0.38rem;
  border-radius: 0.45rem;
  background: #1266aa;
}
.productDetail .productDetail-main .main-cent .cent-bottom .button1 img {
  width: 0.24rem;
}
.productDetail .productDetail-main .main-cent .cent-bottom .button1 span {
  margin-left: 0.15rem;
  font-size: var(--fs24);
  color: #fff;
}
.productDetail .productDetail-main .main-cent .cent-bottom .button1::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.productDetail .productDetail-main .main-cent .cent-bottom .button1:hover {
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.productDetail .productDetail-main .main-cent .cent-bottom .button1:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.productDetail .productDetail-main .main-cent .cent-bottom .button2 {
  width: 1.96rem;
  height: 0.6rem;
  margin-left: 0.4rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.56rem;
  color: #333;
  border-radius: 0.45rem;
  border: solid 1px #1266aa;
}
.productDetail .productDetail-main .main-cent .cent-bottom .button2::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.productDetail .productDetail-main .main-cent .cent-bottom .button2:hover {
  color: #fff;
  background: #1266aa;
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.productDetail .productDetail-main .main-cent .cent-bottom .button2:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.productDetail .productDetail-bottom {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: url(../images/product-d-bg.jpg) no-repeat bottom left;
  background-size: cover;
}
.productDetail .productDetail-bottom .bottom-title {
  font-size: var(--fs48);
  font-weight: bold;
  text-align: center;
  color: #222222;
}
.productDetail .productDetail-bottom .bottom-main {
  position: relative;
  margin: 0.75rem auto 0;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide {
  width: calc(100% / 3 - 0.3066667rem);
  height: auto;
  margin-right: 0.46rem;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide .slide-item {
  width: 100%;
  height: auto;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide .slide-item .item-pic {
  position: relative;
  width: 100%;
  height: 4.8rem;
  background: #fff;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide .slide-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-main .main-swiper .swiper-slide .slide-item .item-pic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1266aa;
  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-bottom .bottom-main .main-swiper .swiper-slide .slide-item .item-title {
  margin-top: 0.25rem;
  font-size: var(--fs20);
  font-weight: bold;
  text-align: center;
  color: #222;
  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;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide .slide-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  text-align: center;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide .slide-item:hover .item-pic {
  background: #fff;
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide .slide-item:hover .item-pic::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-bottom .bottom-main .main-swiper .swiper-slide .slide-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));
}
.productDetail .productDetail-bottom .bottom-main .main-swiper .swiper-slide .slide-item:hover .item-title {
  color: #1266aa;
}
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-prev,
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-next {
  position: absolute;
  top: 45%;
  width: 0.56rem;
  height: 0.56rem;
  margin-top: -0.28rem;
  text-align: center;
  line-height: 0.56rem;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-prev img,
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-next img {
  width: 12px;
}
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-prev:hover,
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-next:hover {
  background: #1266aa;
}
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-prev {
  left: -1.06rem;
}
.productDetail .productDetail-bottom .bottom-main .bottom-swiper-button-next {
  right: -1.06rem;
}
.intelligence {
  width: 100%;
  height: auto;
}
.intelligence .intelligence-plate1 {
  position: relative;
  padding: 1.3rem 0;
}
.intelligence .intelligence-plate1 .plate1-pic {
  width: 7.68rem;
  height: auto;
  overflow: hidden;
}
.intelligence .intelligence-plate1 .plate1-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.intelligence .intelligence-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));
}
.intelligence .intelligence-plate1 .plate1-swiper {
  width: 7.68rem;
  height: auto;
  overflow: hidden;
}
.intelligence .intelligence-plate1 .plate1-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.intelligence .intelligence-plate1 .plate1-swiper .swiper-slide .slide-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.intelligence .intelligence-plate1 .plate1-swiper .swiper-slide .slide-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.intelligence .intelligence-plate1 .plate1-swiper .swiper-slide .slide-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));
}
.intelligence .intelligence-plate1 .plate1-cent {
  position: absolute;
  bottom: 1.3rem;
  right: 0;
  width: 8.15rem;
  height: 4.5rem;
  padding: 0.95rem 1rem 0.35rem;
  background: #f9f9f9;
}
.intelligence .intelligence-plate1 .plate1-cent .cent-text {
  margin-top: 0.55rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.intelligence .intelligence-plate2 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0;
  background: #f2f8fb;
}
.intelligence .intelligence-plate2 .plate2-main .main-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
}
.intelligence .intelligence-plate2 .plate2-main .main-item:last-of-type {
  margin-bottom: 0;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-swiper {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-swiper .swiper-slide .slide-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-swiper .swiper-slide .slide-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-swiper .swiper-slide .slide-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));
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.intelligence .intelligence-plate2 .plate2-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));
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-cent {
  width: 50%;
  height: auto;
  padding: 0 0 0 1.2rem;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-cent .cent-title {
  font-size: var(--fs28);
  font-weight: bold;
  line-height: 0.38rem;
  color: #1266aa;
}
.intelligence .intelligence-plate2 .plate2-main .main-item .item-cent .cent-text {
  margin-top: 0.45rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.intelligence .intelligence-plate2 .plate2-main .main-item:nth-child(even) {
  flex-direction: row-reverse;
}
.intelligence .intelligence-plate2 .plate2-main .main-item:nth-child(even) .item-cent {
  padding: 0 1.2rem 0 0;
}
.intelligence .intelligence-plate3 {
  display: flex;
  justify-content: flex-start;
  padding: 1.3rem 0;
}
.intelligence .intelligence-plate3 .plate3-item {
  width: calc(100% / 3 - 0.22rem);
  height: auto;
  margin-right: 0.33rem;
}
.intelligence .intelligence-plate3 .plate3-item:nth-child(3n) {
  margin-right: 0;
}
.intelligence .intelligence-plate3 .plate3-item .item-pic {
  width: 100%;
  height: 3.2rem;
  overflow: hidden;
}
.intelligence .intelligence-plate3 .plate3-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;;
}
.intelligence .intelligence-plate3 .plate3-item .item-title {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  font-weight: bold;
  text-align: center;
  color: #333;
}
.intelligence .intelligence-plate3 .plate3-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: #666;
}
.intelligence .intelligence-plate3 .plate3-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));
}
.intelligence .intelligence-plate4 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0;
  background: #f2f8fb;
}
.intelligence .intelligence-plate4 .page-title2 {
  line-height: 0.48rem;
  text-align: center;
}
.intelligence .intelligence-plate4 .plate4-swiper {
  position: relative;
  width: 15.36rem;
  height: auto;
  margin: 0.55rem auto 0;
}
.intelligence .intelligence-plate4 .plate4-swiper .swiper-slide {
  width: calc(100% / 3 - 0.23rem);
  height: auto;
  margin-right: 0.36rem;
}
.intelligence .intelligence-plate4 .plate4-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.intelligence .intelligence-plate4 .plate4-swiper .swiper-slide .slide-box {
  display: block;
  width: 100%;
  height: auto;
}
.intelligence .intelligence-plate4 .plate4-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 3.2rem;
  overflow: hidden;
}
.intelligence .intelligence-plate4 .plate4-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;
}
.intelligence .intelligence-plate4 .plate4-swiper .swiper-slide .slide-box .box-title {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.intelligence .intelligence-plate4 .plate4-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));
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-prev,
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-prev img,
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  margin: -6px 0 0 -6px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-prev .img2,
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-next .img2 {
  opacity: 0;
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-prev:hover,
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-next:hover {
  background: linear-gradient(90deg, #1266aa, #1a8cdc);
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-prev:hover .img1,
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-next:hover .img1 {
  opacity: 0;
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-prev:hover .img2,
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-next:hover .img2 {
  opacity: 1;
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-prev {
  left: -0.25rem;
}
.intelligence .intelligence-plate4 .plate4-swiper .plate4-swiper-button-next {
  right: -0.25rem;
}
.logistics {
  width: 100%;
  height: auto;
}
.logistics .logistics-plate1 {
  position: relative;
  padding: 1.3rem 0;
}
.logistics .logistics-plate1 .plate1-pic {
  width: 7.68rem;
  height: auto;
  overflow: hidden;
}
.logistics .logistics-plate1 .plate1-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.logistics .logistics-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));
}
.logistics .logistics-plate1 .plate1-swiper {
  width: 7.68rem;
  height: auto;
  overflow: hidden;
}
.logistics .logistics-plate1 .plate1-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.logistics .logistics-plate1 .plate1-swiper .swiper-slide .slide-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.logistics .logistics-plate1 .plate1-swiper .swiper-slide .slide-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.logistics .logistics-plate1 .plate1-swiper .swiper-slide .slide-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));
}
.logistics .logistics-plate1 .plate1-cent {
  position: absolute;
  bottom: 1.3rem;
  right: 0;
  width: 8.15rem;
  height: 4.5rem;
  padding: 0.7rem 1rem 0.35rem;
  background: #f9f9f9;
}
.logistics .logistics-plate1 .plate1-cent .cent-title {
  margin-top: 0.5rem;
  font-size: var(--fs26);
  font-weight: bold;
  color: #333;
}
.logistics .logistics-plate1 .plate1-cent .cent-text {
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.logistics .logistics-plate2 {
  width: 100%;
  height: auto;
}
.logistics .logistics-plate2 img {
  width: 100%;
}
.logistics .logistics-plate3 {
  padding: 1.3rem 0;
}
.logistics .logistics-plate3 .plate3-title {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.08rem;
  color: #333;
}
.logistics .logistics-plate3 .plate3-text {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  text-align: center;
  color: #666;
}
.logistics .logistics-plate3 .plate3-main {
  width: 100%;
  margin-top: 0.55rem;
}
.logistics .logistics-plate3 .plate3-main .main-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
}
.logistics .logistics-plate3 .plate3-main .main-item:last-of-type {
  margin-bottom: 0;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-swiper {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-swiper .swiper-slide .slide-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-swiper .swiper-slide .slide-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-swiper .swiper-slide .slide-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));
}
.logistics .logistics-plate3 .plate3-main .main-item .item-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.logistics .logistics-plate3 .plate3-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));
}
.logistics .logistics-plate3 .plate3-main .main-item .item-cent {
  width: 50%;
  height: auto;
  padding: 0 0 0 1.2rem;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-cent .cent-title {
  font-size: var(--fs36);
  font-weight: bold;
  line-height: 0.48rem;
  color: #1266aa;
}
.logistics .logistics-plate3 .plate3-main .main-item .item-cent .cent-text {
  margin-top: 0.45rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.logistics .logistics-plate3 .plate3-main .main-item:nth-child(even) {
  flex-direction: row-reverse;
}
.logistics .logistics-plate3 .plate3-main .main-item:nth-child(even) .item-cent {
  padding: 0 1.2rem 0 0;
}
.thinking {
  width: 100%;
  height: auto;
}
.thinking .thinking-plate1 {
  position: relative;
  padding: 1.3rem 0;
}
.thinking .thinking-plate1 .plate1-swiper {
  width: 7.68rem;
  height: auto;
  overflow: hidden;
}
.thinking .thinking-plate1 .plate1-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.thinking .thinking-plate1 .plate1-swiper .swiper-slide .slide-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.thinking .thinking-plate1 .plate1-swiper .swiper-slide .slide-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.thinking .thinking-plate1 .plate1-swiper .swiper-slide .slide-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));
}
.thinking .thinking-plate1 .plate1-cent {
  position: absolute;
  bottom: 1.3rem;
  right: 0;
  width: 8.15rem;
  height: 4.5rem;
  padding: 0.7rem 1rem 0.35rem;
  background: #f9f9f9;
}
.thinking .thinking-plate1 .plate1-cent .cent-title {
  margin-top: 0.5rem;
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 0.36rem;
  color: #333;
}
.thinking .thinking-plate1 .plate1-cent .cent-text {
  margin-top: 0.15rem;
  font-size: var(--fs24);
  line-height: 0.38rem;
  color: #666;
}
.thinking .thinking-plate2 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: url(../images/thinking-bg.jpg) no-repeat top left;
  background-size: cover;
}
.thinking .thinking-plate2 .plate2-title2 {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.thinking .thinking-plate2 .plate2-main {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.thinking .thinking-plate2 .plate2-main .main-item {
  display: flex;
  justify-content: center;
  position: relative;
  width: 33.33%;
  height: auto;
  border-right: solid 1px rgba(255, 255, 255, 0.4);
}
.thinking .thinking-plate2 .plate2-main .main-item:last-of-type {
  border-right: none;
}
.thinking .thinking-plate2 .plate2-main .main-item .item-data {
  width: auto;
  height: auto;
}
.thinking .thinking-plate2 .plate2-main .main-item .item-data .data-title {
  font-size: var(--fs18);
  color: #fff;
}
.thinking .thinking-plate2 .plate2-main .main-item .item-data .data-title span {
  font-size: 0.72rem;
  font-weight: bold;
}
.thinking .thinking-plate2 .plate2-main .main-item .item-data .data-title em {
  font-size: var(--fs36);
}
.thinking .thinking-plate2 .plate2-main .main-item .item-data .data-text {
  font-size: var(--fs16);
  font-weight: bold;
  color: #fff;
}
.thinking .thinking-plate3 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0;
}
.thinking .thinking-plate3 .page-title2 {
  text-align: center;
}
.thinking .thinking-plate3 .plate3-swiper {
  position: relative;
  width: 15.36rem;
  height: auto;
  margin: 0.55rem auto 0;
}
.thinking .thinking-plate3 .plate3-swiper .swiper-slide {
  width: calc(100% / 3 - 0.23rem);
  height: auto;
  margin-right: 0.36rem;
}
.thinking .thinking-plate3 .plate3-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.thinking .thinking-plate3 .plate3-swiper .swiper-slide .slide-box {
  display: block;
  width: 100%;
  height: auto;
}
.thinking .thinking-plate3 .plate3-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 3.2rem;
  overflow: hidden;
}
.thinking .thinking-plate3 .plate3-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;
}
.thinking .thinking-plate3 .plate3-swiper .swiper-slide .slide-box .box-title {
  margin-top: 0.3rem;
  font-size: var(--fs24);
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.thinking .thinking-plate3 .plate3-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));
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-prev,
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-prev img,
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  margin: -6px 0 0 -6px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-prev .img2,
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-next .img2 {
  opacity: 0;
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-prev:hover,
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-next:hover {
  background: linear-gradient(90deg, #1266aa, #1a8cdc);
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-prev:hover .img1,
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-next:hover .img1 {
  opacity: 0;
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-prev:hover .img2,
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-next:hover .img2 {
  opacity: 1;
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-prev {
  left: -0.25rem;
}
.thinking .thinking-plate3 .plate3-swiper .plate3-swiper-button-next {
  right: -0.25rem;
}
.majors {
  width: 100%;
  height: auto;
}
.majors .majors-plate1 {
  position: relative;
  padding: 1.3rem 0;
}
.majors .majors-plate1 .plate1-pic {
  width: 7.68rem;
  height: auto;
  overflow: hidden;
}
.majors .majors-plate1 .plate1-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.majors .majors-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));
}
.majors .majors-plate1 .plate1-cent {
  position: absolute;
  bottom: 1.3rem;
  right: 0;
  width: 8.15rem;
  height: 4.5rem;
  padding: 0.95rem 1rem 0.35rem;
  background: #f9f9f9;
}
.majors .majors-plate1 .plate1-cent .cent-text {
  margin-top: 0.55rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #666;
}
.majors .majors-plate2 {
  width: 100%;
  height: auto;
  padding: 1.3rem 0 1.4rem;
  background: #f2f8fb;
}
.majors .majors-plate2 .plate2-main .main-title {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.08rem;
  color: #333;
}
.majors .majors-plate2 .plate2-main .main-text {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  text-align: center;
  color: #666;
}
.majors .majors-plate2 .plate2-main .main-cont {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.85rem;
  width: 100%;
  height: auto;
}
.majors .majors-plate2 .plate2-main .main-cont .cont-item {
  position: relative;
  width: calc(100% / 5 - 0.224rem);
  height: 100%;
  margin-right: 0.28rem;
  border-radius: 0.1rem;
  box-shadow: 0px 3px 30px 0px rgba(2, 73, 131, 0.08);
  overflow: hidden;
}
.majors .majors-plate2 .plate2-main .main-cont .cont-item .item-pic {
  width: 100%;
  height: 3.8rem;
  overflow: hidden;
}
.majors .majors-plate2 .plate2-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;
}
.majors .majors-plate2 .plate2-main .main-cont .cont-item .item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 0.2rem 0.3rem;
  font-size: var(--fs16);
  text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
.majors .majors-plate2 .plate2-main .main-cont .cont-item:nth-child(5n) {
  margin-right: 0;
}
.majors .majors-plate2 .plate2-main .main-cont .cont-item:nth-child(odd) {
  margin-top: -0.3rem;
}
.majors .majors-plate2 .plate2-main .main-cont .cont-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.news {
  width: 100%;
  height: auto;
}
.news .news-top {
  padding: 1.1rem 0 1.2rem;
}
.news .news-top .top-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.55rem;
}
.news .news-top .top-box .box-pic {
  width: 8rem;
  height: auto;
  overflow: hidden;
}
.news .news-top .top-box .box-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-top .top-box .item-cent {
  width: 7.36rem;
  height: auto;
  padding: 0.55rem 1.1rem 0.3rem;
  background: url(../images/news-bg.jpg) no-repeat top left;
  background-size: cover;
}
.news .news-top .top-box .item-cent .cent-time {
  font-size: var(--fs24);
  color: #ccc;
}
.news .news-top .top-box .item-cent .cent-title {
  margin-top: 0.3rem;
  font-size: var(--fs30);
  font-weight: bold;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-top .top-box .item-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news .news-top .top-box .item-cent .cent-button {
  width: 1.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.5rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #1266aa;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-top .top-box .item-cent .cent-button::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.news .news-top .top-box .item-cent .cent-button:hover {
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.news .news-top .top-box .item-cent .cent-button:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.news .news-top .top-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));
}
.news .news-top .top-box:hover .item-cent .cent-title {
  color: #1266aa;
}
.news .news-main {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: #f8f8f8;
}
.news .news-main .main-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.news .news-main .main-box .box-item {
  width: calc(100% / 3 - 0.4133334rem);
  height: auto;
  margin-right: 0.62rem;
  margin-bottom: 0.4rem;
  background: #fff;
}
.news .news-main .main-box .box-item:nth-child(3n) {
  margin-right: 0;
}
.news .news-main .main-box .box-item .item-pic {
  width: 100%;
  height: 2.9rem;
  overflow: hidden;
}
.news .news-main .main-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-box .box-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.45rem 0.42rem;
}
.news .news-main .main-box .box-item .item-cent .cent-time {
  font-size: var(--fs18);
  color: #666;
}
.news .news-main .main-box .box-item .item-cent .cent-title {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 0.36rem;
  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;
}
.news .news-main .main-box .box-item:hover {
  box-shadow: 0px 5px 45px 0px rgba(0, 0, 0, 0.09);
}
.news .news-main .main-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.news .news-main .main-box .box-item:hover .item-cent .cent-title {
  color: #1266aa;
}
.news .news-main .page-number .page-item {
  background: #fff;
}
.newsDetail {
  width: 100%;
  height: auto;
  margin-top: 1.8rem;
}
.newsDetail .newsDetail-top {
  width: 100%;
  height: auto;
  padding: 0.75rem 0;
  background: #ebf4f9;
}
.newsDetail .newsDetail-top .top-main .main-title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #222;
}
.newsDetail .newsDetail-top .top-main .main-data {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin: 0.3rem 0 0;
}
.newsDetail .newsDetail-top .top-main .main-data .data-item {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 0.2rem;
  font-size: var(--fs16);
  color: #999;
}
.newsDetail .newsDetail-top .top-main .main-data .data-item img {
  width: 18px;
  margin: -0.04rem 0.08rem 0 0;
}
.newsDetail .newsDetail-main {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-bottom: 1.2rem;
}
.newsDetail .newsDetail-main .main-cent {
  width: 10.5rem;
  height: auto;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
}
.newsDetail .newsDetail-main .main-cent img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
.newsDetail .newsDetail-main .main-list {
  position: relative;
  width: 3.84rem;
  height: auto;
}
.newsDetail .newsDetail-main .main-list .list-box {
  position: relative;
  width: 100%;
  height: auto;
  background: #fff;
  z-index: 9;
}
.newsDetail .newsDetail-main .main-list .list-box .list-title {
  margin-top: 0.1rem;
  font-size: var(--fs30);
  font-weight: bold;
  color: #333;
}
.newsDetail .newsDetail-main .main-list .list-box .list-heng {
  width: 32px;
  height: 5px;
  margin-top: 0.15rem;
  border-radius: 0.45rem;
  background: #1266aa;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.4rem 0 0.4rem;
  border-bottom: solid 1px #eeeeee;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-list .list-box .list-item .item-title {
  margin-top: 0.2rem;
  font-size: var(--fs20);
  line-height: 0.36rem;
  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-list .list-box .list-item .item-time {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  color: #666;
}
.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-item:hover .item-title {
  color: #1266aa;
}
.newsDetail .newsDetail-main .main-list .list-box .list-link {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDetail .newsDetail-main .main-list .list-box .list-link a {
  color: #000;
}
.newsDetail .newsDetail-main .main-list .list-box .list-link:hover a {
  color: #1266aa;
}
.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.56rem;
  height: 0.56rem;
  margin-right: 0.15rem;
  border-radius: 50%;
  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.22rem;
  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 {
  background: #1266aa;
}
.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;
  position: relative;
  width: 100%;
  height: 0.56rem;
  margin-top: 0.4rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.56rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #1266aa;
}
.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::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.newsDetail .newsDetail-main .main-list .list-box .list-botton:hover {
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.newsDetail .newsDetail-main .main-list .list-box .list-botton:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.newsDetail .newsDetail-main .main-list .list-box-active {
  position: fixed;
  top: 1.2rem;
}
.newsDetail2 {
  width: 100%;
  height: auto;
  margin-top: 1.8rem;
}
.newsDetail2 .newsDetail-top {
  width: 100%;
  height: auto;
  padding: 0.75rem 0;
  background: #ebf4f9;
}
.newsDetail2 .newsDetail-top .top-main .main-title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #222;
}
.newsDetail2 .newsDetail-top .top-main .main-data {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin: 0.3rem 0 0;
}
.newsDetail2 .newsDetail-top .top-main .main-data .data-item {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 0.2rem;
  font-size: var(--fs16);
  color: #999;
}
.newsDetail2 .newsDetail-top .top-main .main-data .data-item img {
  width: 18px;
  margin: -0.04rem 0.08rem 0 0;
}
.newsDetail2 .newsDetail-main {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-bottom: 1.2rem;
}
.newsDetail2 .newsDetail-main .main-cent {
  width: 10.5rem;
  height: auto;
  margin: 0 auto;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
}
.newsDetail2 .newsDetail-main .main-cent img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
.info {
  width: 100%;
  height: auto;
}
.info .info-plate1 {
  width: 100%;
  padding: 1.15rem 0 1.2rem;
}
.info .info-plate1 .plate1-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: solid 1px #eeeeee;
}
.info .info-plate1 .plate1-main .main-cont {
  width: 2.88rem;
  height: auto;
  padding: 0.75rem 0.48rem 0.45rem;
  background: url(../images/info-bg.jpg) no-repeat bottom left;
  background-size: cover;
}
.info .info-plate1 .plate1-main .main-cont .cont-title {
  font-size: var(--fs18);
  color: #fff;
}
.info .info-plate1 .plate1-main .main-cont .cont-num {
  margin-top: 0.15rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs30);
  color: #fff;
}
.info .info-plate1 .plate1-main .main-cont .cont-text {
  margin-top: 0.5rem;
  font-size: var(--fs14);
  color: #fff;
}
.info .info-plate1 .plate1-main .main-box {
  width: calc(100% - 2.88rem);
  height: auto;
  padding-left: 0.45rem;
}
.info .info-plate1 .plate1-main .main-box .box-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-box {
  width: 100%;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-cent {
  width: auto;
  font-size: var(--fs24);
  color: #1266aa;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-cent span {
  font-size: 0.6rem;
  font-weight: bold;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-cent em {
  font-family: 'MONTSERRAT-BOLD';
}
.info .info-plate1 .plate1-main .main-box .box-top .top-cent i {
  display: inline-block;
  width: 13px;
  height: 11px;
  margin-left: 0.15rem;
  background: url(../images/icon/icon-info-arrow.png) no-repeat bottom left;
  background-size: 100%;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-cent img {
  width: 13px;
  margin-left: 0.15rem;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-cent--on i {
  background: url(../images/icon/icon-info-arrow2.png) no-repeat bottom left;
  background-size: 100%;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-data {
  display: flex;
  justify-content: space-between;
  width: auto;
  height: auto;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-data .data-item {
  width: 1.9rem;
  height: auto;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-data .data-item .item-title {
  font-size: var(--fs14);
  color: #4c4d4f;
}
.info .info-plate1 .plate1-main .main-box .box-top .top-data .data-item .num1 {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  font-weight: bold;
  color: #1266aa;
}
.info .info-plate1 .plate1-main .main-box .box-text {
  margin-top: 0.5rem;
  font-size: var(--fs14);
  color: #888;
}
.info .info-plate2 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: #f2f8fb;
}
.info .info-plate2 .page-title2,
.info .info-plate2 .page-English2 {
  text-align: center;
}
.info .info-plate2 .page-heng2 {
  margin: 0.2rem auto 0;
}
.info .info-plate2 .plate2-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.info .info-plate2 .plate2-main .main-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% / 2 - 0.2rem);
  height: 0.9rem;
  padding: 0 0.4rem;
  margin-bottom: 0.45rem;
  background: #fff;
}
.info .info-plate2 .plate2-main .main-item .item-cent {
  display: flex;
  justify-content: flex-start;
  width: calc(100% - 0.35rem);
  height: auto;
}
.info .info-plate2 .plate2-main .main-item .item-cent span {
  width: 0.88rem;
  font-size: 0.14rem;
  color: #1266aa;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.info .info-plate2 .plate2-main .main-item .item-cent p {
  width: calc(100% - 0.88rem);
  padding-left: 0.3rem;
  font-size: var(--fs16);
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.info .info-plate2 .plate2-main .main-item em {
  width: 0.29rem;
  height: 0.4rem;
  background: url(../images/icon/icon-info-pic1.png) no-repeat top left;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.info .info-plate2 .plate2-main .main-item:hover {
  background: #1266aa;
}
.info .info-plate2 .plate2-main .main-item:hover .item-cent span,
.info .info-plate2 .plate2-main .main-item:hover .item-cent p {
  color: #fff;
}
.info .info-plate2 .plate2-main .main-item:hover em {
  background: url(../images/icon/icon-info-pic2.png) no-repeat top left;
  background-size: 100%;
}
.info .info-plate2 .plate2-button {
  display: block;
  position: relative;
  width: 1.8rem;
  height: 0.52rem;
  margin: 0.2rem auto 0;
  font-size: var(--fs14);
  text-align: center;
  line-height: 0.52rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #1266aa;
}
.info .info-plate2 .plate2-button::before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.info .info-plate2 .plate2-button:hover {
  transform: translatey(-6px);
  -o-transform: translatey(-6px);
  -moz-transform: translatey(-6px);
  -webkit-transform: translatey(-6px);
}
.info .info-plate2 .plate2-button:hover::before {
  opacity: 0.4;
  transform: translatey(6px);
  -o-transform: translatey(6px);
  -moz-transform: translatey(6px);
  -webkit-transform: translatey(6px);
}
.info .info-plate3 {
  display: block;
  width: 100%;
  height: auto;
  padding: 1.35rem 0;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.info .info-plate3 .plate3-title {
  font-size: var(--fs48);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.info .info-plate3 .plate3-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0.45rem;
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #fff;
}
.info .info-plate3 .plate3-button img {
  width: 15px;
  margin-left: 0.05rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.info .info-plate3 .plate3-button:hover img {
  margin-left: 0.15rem;
}
.notice {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.notice .page-title2,
.notice .page-English2 {
  text-align: center;
}
.notice .page-heng2 {
  margin: 0.2rem auto 0;
}
.notice .notice-main {
  margin: 0.3rem auto;
}
.notice .notice-main .main-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0.9rem;
  padding: 0 0.4rem;
  margin-bottom: 0.2rem;
  background: #f8f8f8;
}
.notice .notice-main .main-item .item-cent {
  display: flex;
  justify-content: flex-start;
  width: calc(100% - 0.35rem);
  height: auto;
}
.notice .notice-main .main-item .item-cent span {
  width: 1rem;
  font-size: 0.18rem;
  font-weight: bold;
  color: #1266aa;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.notice .notice-main .main-item .item-cent p {
  width: calc(100% - 1rem);
  padding-left: 0.55rem;
  font-size: var(--fs16);
  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;
}
.notice .notice-main .main-item em {
  width: 0.29rem;
  height: 0.4rem;
  background: url(../images/icon/icon-info-pic1.png) no-repeat top left;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.notice .notice-main .main-item:hover {
  background: #1266aa;
}
.notice .notice-main .main-item:hover .item-cent span,
.notice .notice-main .main-item:hover .item-cent p {
  color: #fff;
}
.notice .notice-main .main-item:hover em {
  background: url(../images/icon/icon-info-pic2.png) no-repeat top left;
  background-size: 100%;
}
.notice .main-link {
  display: block;
  width: 1.6rem;
  height: 0.56rem;
  margin: 0.35rem auto 0.6rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.5rem;
  color: #1266aa;
  border-radius: 0.45rem;
  border: solid 2px #1266aa;
}
.notice .main-link:hover {
  color: #fff;
  background: #1266aa;
}
.hotline {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.hotline .hotline-main {
  display: flex;
  justify-content: space-between;
}
.hotline .hotline-main .main-cent {
  width: 50%;
  height: auto;
  padding-right: 1rem;
}
.hotline .hotline-main .main-cent .cent-text {
  margin-top: 0.5rem;
  font-size: var(--fs18);
  line-height: 0.48rem;
  color: #72757a;
}
.hotline .hotline-main .main-cent .cent-text span {
  margin-right: 0.2rem;
  font-weight: bold;
  color: #1266aa;
}
.hotline .hotline-main .main-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.hotline .hotline-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;
}
.hotline .hotline-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));
}
.contact {
  width: 100%;
  height: auto;
}
.contact .contact-plate1 {
  padding: 1.1rem 0 1.35rem;
}
.contact .contact-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.contact .contact-plate1 .plate1-main .main-cent {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding-right: 0;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-title {
  width: 100%;
  margin-bottom: 0.25rem;
  font-size: var(--fs30);
  color: #333;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-item .item-icon {
  width: 0.66rem;
  height: 0.66rem;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-item .item-icon img {
  width: 100%;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-item .item-lump {
  width: calc(100% - 0.66rem);
  height: auto;
  padding-left: 0.4rem;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-item .item-lump .lump-title {
  font-size: var(--fs18);
  color: #999;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-item .item-lump .lump-tel {
  margin-top: 0.05rem;
  font-size: var(--fs24);
  font-weight: bold;
  color: #1266aa;
}
.contact .contact-plate1 .plate1-main .main-cent .cent-item .item-lump .lump-text {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #333;
}
.contact .contact-plate1 .plate1-main .main-map {
  display: none;
  width: 50%;
  height: auto;
  overflow: hidden;
}
.contact .contact-plate2 {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 1.4rem;
  background: url(../images/contact-bg.jpg) no-repeat top left;
  background-size: cover;
}
.contact .contact-plate2 .plate2-main .page-title2,
.contact .contact-plate2 .plate2-main .page-English2 {
  text-align: center;
}
.contact .contact-plate2 .plate2-main .page-heng2 {
  margin: 0.2rem auto 0;
}
.contact .contact-plate2 .plate2-main .main-box {
  width: 100%;
  height: auto;
  padding: 0.55rem 0.65rem 1rem;
  margin-top: 0.55rem;
  background: #fff;
}
.contact .contact-plate2 .plate2-main .main-box .box-text {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666666;
}
.contact .contact-plate2 .plate2-main .main-box .box-ewm {
  width: 2.1rem;
  height: auto;
  margin: 0.55rem auto 0;
}
.contact .contact-plate2 .plate2-main .main-box .box-ewm img {
  width: 100%;
}
.pageW {
  width: 15.36rem;
  height: auto;
  margin: 0 auto;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.page-heng {
  width: 42px;
  height: 6px;
  margin-top: 0.3rem;
  background: #1266aa;
  border-radius: 0.45rem;
}
.page-title {
  font-size: var(--fs20);
  text-transform: uppercase;
  color: #333;
}
.page-English {
  margin-top: 0.05rem;
  font-size: var(--fs50);
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
}
.page-heng2 {
  width: 36px;
  height: 5px;
  margin-top: 0.2rem;
  background: #1266aa;
}
.page-title2 {
  font-size: var(--fs36);
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
}
.page-English2 {
  margin-top: 0.1rem;
  font-size: var(--fs26);
  text-transform: uppercase;
  color: #d6d6d6;
}
.page-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  height: 0.46rem;
  border-radius: 0.45rem;
  background: #1266aa;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.page-button span {
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button em {
  width: 16px;
  height: 12px;
  margin-left: 0.18rem;
  background: url(../images/icon/icon-button-arrow.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button:hover {
  box-shadow: 8px 8px rgba(11, 117, 190, 0.1);
  transform: translate(-4px, -4px);
  -o-transform: translate(-4px, -4px);
  -moz-transform: translate(-4px, -4px);
  -webkit-transform: translate(-4px, -4px);
}
.page-button:hover span {
  color: #fff;
}
.page-button:hover em {
  background: url(../images/icon/icon-button-arrow.png) no-repeat center center;
  background-size: 100%;
}
.page-button2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  height: 0.46rem;
  border-radius: 0.45rem;
  border: solid 2px #1266aa;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.page-button2 span {
  font-size: var(--fs14);
  text-transform: uppercase;
  color: #1266aa;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button2 em {
  width: 16px;
  height: 12px;
  margin-left: 0.18rem;
  background: url(../images/icon/icon-button-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;
}
.page-button2:hover {
  background: #1266aa;
  box-shadow: 8px 8px rgba(11, 117, 190, 0.1);
  transform: translate(-4px, -4px);
  -o-transform: translate(-4px, -4px);
  -moz-transform: translate(-4px, -4px);
  -webkit-transform: translate(-4px, -4px);
}
.page-button2:hover span {
  color: #fff;
}
.page-button2:hover em {
  background: url(../images/icon/icon-button-arrow.png) no-repeat center center;
  background-size: 100%;
}
