.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.1rem;
  background: #172980;
  z-index: 59;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 12.8rem;
  height: 100%;
  margin: 0 auto;
}
nav .nav-main .main-cont .main-logo {
  position: relative;
  width: 1.99rem;
  height: auto;
}
nav .nav-main .main-cont .main-logo img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-box {
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: 100%;
}
nav .nav-main .main-cont .main-box .box-nav {
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: auto;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li {
  display: inline-block;
  width: auto;
  height: 100%;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-link {
  display: inline-block;
  position: relative;
  width: auto;
  height: 100%;
  padding: 0 0.2rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 1.1rem;
  color: #fffefe;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.2rem;
  width: calc(100% - 0.4rem);
  height: 3px;
  background: #8dc900;
  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-box .box-nav .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-box .box-nav .nav-li .li-list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 29;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list::before {
  content: '';
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  transform: translatey(-100%);
  -o-transform: translatey(-100%);
  -moz-transform: translatey(-100%);
  -webkit-transform: translatey(-100%);
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.5s 0.1s;
  -o-transition: all 0.5s 0.1s;
  -moz-transition: all 0.5s 0.1s;
  -webkit-transition: all 0.5s 0.1s;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list a {
  display: none;
  position: relative;
  width: 1.3rem;
  padding: 0 0.15rem;
  font-size: var(--fs16);
  text-align: center;
  color: #333;
  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-box .box-nav .nav-li .li-list a span {
  display: flex;
  position: relative;
  width: 0.53rem;
  height: 0.53rem;
  margin: 0 auto;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list a span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list a span .img2 {
  opacity: 0;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list a em {
  display: block;
  margin-top: 0.1rem;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list a:hover {
  color: #172980;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list a:hover span .img1 {
  opacity: 0;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li .li-list a:hover span .img2 {
  opacity: 1;
}
nav .nav-main .main-cont .main-box .box-nav .nav-li:hover .li-link::after {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
nav .nav-main .main-cont .main-box .box-nav .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-box .box-nav .nav-li:hover .li-list a {
  display: block;
}
nav .nav-main .main-cont .main-box .box-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 100%;
  margin-left: 0.65rem;
}
nav .nav-main .main-cont .main-box .box-right .right-serach {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.5rem;
  height: 0.5rem;
  background: url(../images/icon/icon-search.png) no-repeat center center;
  background-size: 0.18rem;
  border-radius: 50%;
  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-box .box-right .right-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
  margin-left: 0.2rem;
  cursor: pointer;
}
nav .nav-main .main-cont .main-box .box-right .right-lang .lang-title {
  width: 0.28rem;
  height: 0.28rem;
  font-size: 0.12rem;
  text-align: center;
  line-height: 0.28rem;
  color: #172980;
  border-radius: 50%;
  background: #fff;
  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-box .box-right .right-lang .lang-list {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  width: 1.5rem;
  height: auto;
  margin-left: -0.75rem;
  overflow: hidden;
  z-index: 9;
}
nav .nav-main .main-cont .main-box .box-right .right-lang .lang-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  z-index: 0;
  transform: translatey(-101%);
  -o-transform: translatey(-101%);
  -moz-transform: translatey(-101%);
  -webkit-transform: translatey(-101%);
  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-box .box-right .right-lang .lang-list .list-link {
  display: none;
  position: relative;
  width: 100%;
  font-size: 0.14rem;
  line-height: 0.5rem;
  text-align: center;
  color: #333;
  opacity: 0;
  z-index: 9;
}
nav .nav-main .main-cont .main-box .box-right .right-lang .lang-list .list-link:hover {
  color: #fff;
  background: #172980;
}
nav .nav-main .main-cont .main-box .box-right .right-lang:hover .lang-flag {
  background: url(../images/icon/icon-nav-lang3.png) no-repeat center center;
  background-size: 100%;
}
nav .nav-main .main-cont .main-box .box-right .right-lang:hover .lang-title {
  color: #172980;
}
nav .nav-main .main-cont .main-box .box-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-box .box-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-box .box-right .right-web-menu {
  display: none;
}
nav .Whead-search {
  display: block;
  position: fixed;
  top: 1.1rem;
  left: 0;
  width: 100%;
  height: 0;
  background: #172980;
  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.45rem;
  cursor: pointer;
}
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.3rem;
  margin-left: 0.2rem;
}
nav .head-menu {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
}
nav .head-menu .menu-pic {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
nav .head-menu .menu-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
nav .head-menu .menu-pic .pic-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 0.48rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
}
nav .head-menu .menu-cont {
  width: 50%;
  height: 100%;
  padding: 0.9rem 0.72rem 0;
  background: #fff;
}
nav .head-menu .menu-cont .cont-title {
  font-size: var(--fs24);
  color: #333;
}
nav .head-menu .menu-cont .cont-link {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  margin-bottom: 0.3rem;
}
nav .head-menu .menu-cont .cont-link a {
  margin-right: 0.4rem;
  font-size: var(--fs14);
  line-height: 0.3rem;
  color: #666;
}
nav .head-menu .menu-cont .cont-link a:hover {
  color: #172980;
}
nav .head-menu .menu-cont .cont-share {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
nav .head-menu .menu-cont .cont-share .share-item {
  width: 0.26rem;
  height: 0.21rem;
  margin-right: 0.3rem;
  border-radius: 50%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .head-menu .menu-cont .cont-share .share-item img {
  width: 100%;
}
nav .head-menu .menu-cont .cont-share .share-item:hover {
  transform: translatey(-0.05rem);
  -o-transform: translatey(-0.05rem);
  -moz-transform: translatey(-0.05rem);
  -webkit-transform: translatey(-0.05rem);
}
nav .head-menu .menu-hide {
  position: absolute;
  top: 0.35rem;
  right: 0.75rem;
  width: 18px;
  height: 18px;
  background: url(../images/icon/icon-hidde2.png) no-repeat top left;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .head-menu .menu-hide:hover {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
nav .head-menu-on {
  opacity: 1;
  visibility: visible;
}
nav .sidebar-mask,
nav .Whead-sidebar,
nav .head-Wnav,
nav .cont-web-suosou,
nav .cont-web-caidan {
  display: none;
}
header {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 19;
}
header .head-banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
header .head-banner .swiper-slide {
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box .slide-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .head-banner .swiper-slide .slide-box .slide-pic video {
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box .slide-pic img {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .head-banner .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .head-banner .swiper-slide .slide-box .box-web-pic {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item {
  display: inline-block;
  position: absolute;
  width: auto;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item span {
  display: block;
  position: relative;
  width: 0.42rem;
  height: 0.42rem;
  background: url(../images/icon/icon-banner-round.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;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border: solid 2px #fff;
  border-radius: 50%;
  animation: wid 2s linear infinite;
  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;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border: solid 2px #fff;
  border-radius: 50%;
  opacity: 0;
  animation: wid 2s 1s linear infinite;
  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;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item .itme-title {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  width: 1.22rem;
  height: 0.35rem;
  margin-left: -0.61rem;
  font-size: var(--fs18);
  text-align: center;
  line-height: 0.35rem;
  color: #172980;
  background: #fff;
  border-radius: 0.05rem;
  opacity: 0;
  visibility: hidden;
  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-item .itme-title::after {
  content: '';
  position: absolute;
  top: -0.2rem;
  left: 50%;
  width: auto;
  height: auto;
  margin-left: -0.1rem;
  border: solid 0.1rem transparent;
  border-bottom: solid 0.1rem #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-item:hover span {
  background: url(../images/icon/icon-banner-round-on.png) no-repeat center center;
  background-size: 100%;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:hover span::after,
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:hover span::before {
  border: solid 2px #172980;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:hover .itme-title {
  top: 0.4rem;
  color: #fff;
  background: #172980;
  visibility: visible;
  opacity: 1;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:hover .itme-title::after {
  border-bottom: solid 0.1rem #172980;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:nth-child(1) {
  top: 2.8rem;
  left: 2rem;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:nth-child(2) {
  top: 4.4rem;
  left: 9.5rem;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:nth-child(3) {
  top: 6.2rem;
  left: 7.5rem;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:nth-child(4) {
  top: 5.9rem;
  left: 8.4rem;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-item:nth-child(5) {
  top: 6.15rem;
  left: 10.7rem;
}
header .head-banner .swiper-pagination {
  bottom: 20px;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 0.05rem;
  border: solid 2px #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #172980;
  border: solid 2px #172980;
}
header .head-banner .banner-pic {
  width: 100%;
  height: auto;
  background-position: left top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
  overflow: hidden;
}
header .head-banner .banner-pic img {
  width: 100%;
  opacity: 0;
}
header .head-banner .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: 25%;
  left: 50%;
  width: 12.8rem;
  height: auto;
  transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
header .head-banner .banner-cent .cent-title {
  font-size: 0.32rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
header .head-banner .banner-cent .cent-English {
  font-family: 'Poppins-SemiBold';
  font-size: var(--fs48);
  line-height: 0.48rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
header .head-banner .banner-cent .cent-text {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  font-weight: 100;
  text-align: center;
  color: #fff;
}
header .head-banner .banner-cent .cent-honor {
  width: auto;
  margin-top: 0.5rem;
  font-size: var(--fs18);
  font-weight: 100;
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
}
header .head-banner .banner-cent .cent-honor span {
  display: inline-block;
  position: relative;
}
header .head-banner .banner-cent .cent-honor span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -0.45rem;
  width: 0.45rem;
  height: 0.85rem;
  margin-top: -0.425rem;
  background: url(../images/icon/icon-page-feather.png) no-repeat center center;
  background-size: 100%;
}
header .head-banner .banner-cent .cent-honor span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.45rem;
  width: 0.45rem;
  height: 0.85rem;
  margin-top: -0.425rem;
  background: url(../images/icon/icon-page-feather2.png) no-repeat center center;
  background-size: 100%;
}
header .head-banner .banner-cent .cent-box {
  width: 5.76rem;
  height: auto;
  padding: 0.65rem 0.65rem 0.6rem;
  background: #fff;
}
header .head-banner .banner-cent .cent-box .box-title {
  font-size: 0.48rem;
  font-weight: bold;
  color: #000;
}
header .head-banner .banner-cent .cent-box .box-English {
  margin-top: 0.2rem;
  font-family: Arial;
  font-size: 0.24rem;
  color: #999999;
}
header .head-banner .banner-cent .cent-box .box-text {
  margin-top: 0.4rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #666;
}
header .head-banner .banner-cent2 {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 15.4rem;
  height: auto;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
header .head-banner .banner-cent2 .cent-box {
  width: 5.76rem;
  height: auto;
  padding: 0.65rem 0.65rem 0.6rem;
  background: #fff;
}
header .head-banner .banner-cent2 .cent-box .box-title {
  font-size: 0.48rem;
  font-weight: bold;
  color: #000;
}
header .head-banner .banner-cent2 .cent-box .box-English {
  margin-top: 0.2rem;
  font-family: Arial;
  font-size: 0.24rem;
  color: #999999;
}
header .head-banner .banner-cent2 .cent-box .box-text {
  margin-top: 0.4rem;
  font-size: 0.16rem;
  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-strip {
  position: relative;
  width: 100%;
  height: 1rem;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(2, 66, 135, 0.04);
  z-index: 29;
}
header .head-strip .strip-box {
  display: flex;
  justify-content: space-between;
  width: 15.4rem;
  height: 100%;
  margin: 0 auto;
}
header .head-strip .strip-box .box-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 100%;
}
header .head-strip .strip-box .box-left .left-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
  margin-right: 0.6rem;
  font-size: 0.16rem;
  color: #333;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-strip .strip-box .box-left .left-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #172980;
  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;
}
header .head-strip .strip-box .box-left .left-item:hover {
  color: #172980;
}
header .head-strip .strip-box .box-left .left-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));
}
header .head-strip .strip-box .box-left .left-item-active {
  font-weight: bold;
  color: #172980;
}
header .head-strip .strip-box .box-left .left-item-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));
}
header .head-strip .strip-box .box-right {
  display: flex;
  justify-content: flex-end;
  width: 28%;
  padding-right: 0.3rem;
  text-align: right;
  line-height: 0.92rem;
}
header .head-strip .strip-box .box-right .right-icon1 {
  width: auto;
  font-size: 0.16rem;
  color: #999;
}
header .head-strip .strip-box .box-right .right-icon1 img {
  width: 19px;
  margin-right: 0.12rem;
  margin-top: -0.04rem;
}
header .head-strip .strip-box .box-right .right-icon1 a {
  font-size: 0.16rem;
  color: #999;
  transition: none;
  -webkit-transition: none;
}
header .head-strip .strip-box .box-right .right-icon1 a:hover {
  color: #172980;
}
header .head-strip .strip-box .box-right .right-text {
  width: auto;
  font-size: 0.14rem;
}
header .head-strip .strip-box .box-right .right-text a {
  color: #999;
}
header .head-strip .strip-box .box-right .right-text a:hover {
  color: #172980;
}
header .head-strip .strip-box .box-right .right-text img {
  width: 3px;
  margin: -0.04rem 0.1rem 0;
}
header .head-strip .strip-box .box-right .right-text span {
  color: #333;
}
header .head-strip .strip-box .box-right .right-text em {
  margin: 0 0.1rem;
  font-size: 0.14rem;
  color: #999;
}
header .background {
  background: #f5f7f9;
}
header .head-Wnav {
  display: none;
}
footer {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
footer .foot-main {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0.54rem 0;
  background: #fafafa;
  border-top: solid 1px #e3e3e3;
}
footer .foot-main .main-box {
  display: flex;
  justify-content: space-between;
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
footer .foot-main .main-box .box-nav {
  display: flex;
  justify-content: space-between;
  width: 10.45rem;
  height: auto;
}
footer .foot-main .main-box .box-nav .nav-item {
  width: auto;
  height: auto;
}
footer .foot-main .main-box .box-nav .nav-item .item-title {
  display: block;
  font-size: var(--fs20);
  line-height: 0.48rem;
  color: #666;
}
footer .foot-main .main-box .box-nav .nav-item .item-title:hover {
  color: #172980;
}
footer .foot-main .main-box .box-nav .nav-item .item-cent {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
}
footer .foot-main .main-box .box-nav .nav-item .item-cent a {
  display: block;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
}
footer .foot-main .main-box .box-nav .nav-item .item-cent a span {
  position: relative;
}
footer .foot-main .main-box .box-nav .nav-item .item-cent a span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 0;
  height: 1px;
  background: #172980;
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
footer .foot-main .main-box .box-nav .nav-item .item-cent a:hover {
  color: #172980;
}
footer .foot-main .main-box .box-nav .nav-item .item-cent a:hover span::after {
  left: 0;
  right: auto;
  width: 100%;
}
footer .foot-main .main-box .box-ewm {
  width: 1.28rem;
  height: auto;
}
footer .foot-main .main-box .box-ewm img {
  width: 100%;
}
footer .foot-bottom {
  width: 100%;
  height: 0.56rem;
  background: #fff;
  border-top: solid 1px #e3e3e3;
}
footer .foot-bottom .bottom-zizhi {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
  font-size: var(--fs12);
  line-height: 0.56rem;
  color: #333;
}
footer .foot-bottom .bottom-zizhi a {
  color: #333;
}
footer .foot-bottom .bottom-zizhi a:hover {
  color: #172980;
}
.container {
  width: 100%;
  height: auto;
  overflow: visible;
  scroll-margin-top: 0.5rem !important;
}
.container .cont-plate1 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate1 .swiper-slide {
  width: 100%;
  height: auto;
}
.container .cont-plate1 .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.container .cont-plate1 .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: auto;
}
.container .cont-plate1 .swiper-slide .slide-box .box-pic img {
  width: 100%;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 0;
  left: 50%;
  width: 12.8rem;
  height: auto;
  margin-left: -6.4rem;
  padding: 0.96rem 0.7rem 0;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent .cent-title {
  font-size: var(--fs32);
  font-weight: bold;
  line-height: 0.48rem;
  color: #fff;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent .cent-heng {
  width: 0.4rem;
  height: 4px;
  margin-top: 0.25rem;
  background: #8dc900;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent .cent-English {
  margin-top: 0.1rem;
  font-family: 'Poppins-Regular';
  font-size: var(--fs16);
  color: #fff;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent .cent-button {
  display: block;
  width: 1.1rem;
  height: 0.3rem;
  margin-top: 0.3rem;
  font-size: var(--fs16);
  font-weight: bold;
  text-align: center;
  line-height: 0.28rem;
  color: #fff;
  border-radius: 0.45rem;
  border: solid 1px #fff;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent .cent-button:hover {
  color: #fff;
  border: solid 1px #172980;
  background: #172980;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent .black {
  color: #000;
}
.container .cont-plate1 .swiper-slide .slide-box .box-cent .buttonBlack {
  color: #000;
  border: solid 1px #000;
}
.container .cont-plate1 .swiper-slide .slide-box .box-video {
  position: absolute;
  bottom: 0.16rem;
  right: 3.36rem;
  width: 4.05rem;
  height: 2.26rem;
  border-radius: 0.1rem;
  border: solid 2px #fff;
  overflow: hidden;
}
.container .cont-plate1 .swiper-slide .slide-box .box-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate1 .swiper-slide .slide-box .box-video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.58rem;
  height: 0.58rem;
  margin: -0.29rem 0 0 -0.29rem;
  border-radius: 50%;
  background: #000 url(../images/icon/icon-video-play.png) no-repeat center center;
  background-size: 0.24rem;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate1 .swiper-slide .slide-box .box-video .video-play:hover {
  background: #172980 url(../images/icon/icon-video-play.png) no-repeat center center;
  background-size: 0.24rem;
}
.container .cont-plate1 .swiper-slide .slide-box .box-video: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-plate1 .plate1-swiper-button-prev,
.container .cont-plate1 .plate1-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.29rem;
  border-radius: 50%;
  background: #fff;
  outline: none;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate1 .plate1-swiper-button-prev img,
.container .cont-plate1 .plate1-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.14rem;
  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;
}
.container .cont-plate1 .plate1-swiper-button-prev .img2,
.container .cont-plate1 .plate1-swiper-button-next .img2 {
  opacity: 0;
}
.container .cont-plate1 .plate1-swiper-button-prev:hover,
.container .cont-plate1 .plate1-swiper-button-next:hover {
  background: #172980;
}
.container .cont-plate1 .plate1-swiper-button-prev:hover .img1,
.container .cont-plate1 .plate1-swiper-button-next:hover .img1 {
  opacity: 0;
}
.container .cont-plate1 .plate1-swiper-button-prev:hover .img2,
.container .cont-plate1 .plate1-swiper-button-next:hover .img2 {
  opacity: 1;
}
.container .cont-plate1 .plate1-swiper-button-prev {
  left: 2.28rem;
}
.container .cont-plate1 .plate1-swiper-button-next {
  right: 2.28rem;
}
.container .cont-plate2 {
  width: 100%;
  height: auto;
  padding: 0.75rem 0 0.55rem;
}
.container .cont-plate2 .plate2-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.container .cont-plate2 .plate2-main .main-top {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  border-left: solid 4px #8dc900;
}
.container .cont-plate2 .plate2-main .main-top .top-title {
  font-size: var(--fs32);
  color: #000;
}
.container .cont-plate2 .plate2-main .main-top .top-English {
  margin-top: 0.1rem;
  font-size: var(--fs12);
  font-weight: 100;
  text-transform: uppercase;
  color: #999999;
}
.container .cont-plate2 .plate2-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.42rem;
  border-radius: 0.1rem;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.container .cont-plate2 .plate2-main .main-cont 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-cont .cont-data {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 0.8rem;
}
.container .cont-plate2 .plate2-main .main-cont .cont-data .data-item {
  width: auto;
  height: auto;
  text-align: center;
}
.container .cont-plate2 .plate2-main .main-cont .cont-data .data-item .item-num {
  font-size: 0.45rem;
  font-weight: bold;
  color: #fff;
}
.container .cont-plate2 .plate2-main .main-cont .cont-data .data-item .item-num em {
  position: relative;
  top: -0.15rem;
  font-size: 0.3rem;
}
.container .cont-plate2 .plate2-main .main-cont .cont-data .data-item .item-text {
  font-size: var(--fs18);
  color: #fff;
}
.container .cont-plate2 .plate2-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));
}
.container .cont-plate3 {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 0.55rem;
  background: #e3e3e3;
}
.container .cont-plate3 .plate3-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.container .cont-plate3 .plate3-main .main-top {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  border-left: solid 4px #8dc900;
}
.container .cont-plate3 .plate3-main .main-top .top-title {
  font-size: var(--fs32);
  color: #000;
}
.container .cont-plate3 .plate3-main .main-top .top-English {
  margin-top: 0.1rem;
  font-size: var(--fs12);
  font-weight: 100;
  text-transform: uppercase;
  color: #999999;
}
.container .cont-plate3 .plate3-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.container .cont-plate3 .plate3-main .main-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container .cont-plate3 .plate3-main .main-cont .cont-data {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.45rem 0.5rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-data .data-item {
  width: auto;
  height: auto;
  margin-right: 0.32rem;
  text-align: center;
}
.container .cont-plate3 .plate3-main .main-cont .cont-data .data-item .item-title {
  font-size: var(--fs34);
  font-weight: bold;
  color: #fff;
}
.container .cont-plate3 .plate3-main .main-cont .cont-data .data-item .item-text {
  position: relative;
  margin-top: 0.1rem;
  font-size: var(--fs20);
  line-height: 0.2rem;
  color: #fff;
}
.container .cont-plate3 .plate3-main .main-cont .cont-data .data-item .item-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -0.16rem;
  width: 2px;
  height: 100%;
  background: #fff;
}
.container .cont-plate3 .plate3-main .main-cont .cont-data .data-item:last-of-type .item-text::after {
  display: none;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item {
  position: absolute;
  width: auto;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item .item-cent {
  position: absolute;
  top: 0;
  width: auto;
  height: auto;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item .item-cent .cent-title {
  font-size: var(--fs20);
  font-weight: bold;
  line-height: 0.24rem;
  color: #fff;
  white-space: nowrap;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item .item-cent .cent-text {
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.24rem;
  color: #fff;
  white-space: nowrap;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(1) {
  top: 2.14rem;
  right: 4.86rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(1) span {
  display: block;
  width: 4.04rem;
  height: 1.76rem;
  background: url(../images/icon-arrow-sz.png) no-repeat top right;
  background-size: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(1) .item-cent {
  right: 100%;
  text-align: right;
  padding-right: 0.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(2) {
  top: 2.9rem;
  right: 5.07rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(2) span {
  display: block;
  width: 3.84rem;
  height: 0.88rem;
  background: url(../images/icon-arrow-gz.png) no-repeat top right;
  background-size: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(2) .item-cent {
  right: 100%;
  text-align: right;
  padding-right: 0.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(3) {
  top: 3.7rem;
  right: 4.95rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(3) span {
  display: block;
  width: 3.96rem;
  height: 0.43rem;
  background: url(../images/icon-arrow-xg.png) no-repeat top right;
  background-size: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(3) .item-cent {
  right: 100%;
  text-align: right;
  padding-right: 0.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(4) {
  top: 1.26rem;
  left: 7.07rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(4) span {
  display: block;
  width: 2.85rem;
  height: 1.66rem;
  background: url(../images/icon-arrow-xa.png) no-repeat top right;
  background-size: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(4) .item-cent {
  left: 100%;
  padding-left: 0.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(5) {
  top: 2.1rem;
  left: 7.95rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(5) span {
  display: block;
  width: 1.98rem;
  height: 0.94rem;
  background: url(../images/icon-arrow-tz.png) no-repeat top right;
  background-size: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(5) .item-cent {
  left: 100%;
  padding-left: 0.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(6) {
  top: 2.9rem;
  left: 8rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(6) span {
  display: block;
  width: 1.94rem;
  height: 0.43rem;
  background: url(../images/icon-arrow-wx.png) no-repeat top right;
  background-size: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(6) .item-cent {
  left: 100%;
  padding-left: 0.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(7) {
  bottom: 0.54rem;
  left: 8.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(7) span {
  display: block;
  width: 1.85rem;
  height: 1.04rem;
  background: url(../images/icon-arrow-hn.png) no-repeat top right;
  background-size: 100%;
}
.container .cont-plate3 .plate3-main .main-cont .cont-address .address-item:nth-child(7) .item-cent {
  top: auto;
  bottom: 0;
  left: 100%;
  padding-left: 0.1rem;
}
.container .cont-plate3 .plate3-main .main-cont .cont-web-pic {
  display: none;
}
.container .cont-plate4 {
  width: 100%;
  height: auto;
  padding: 0.62rem 0 0.25rem;
  background: #fafafa;
}
.container .cont-plate4 .plate4-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.container .cont-plate4 .plate4-main .main-top {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  border-left: solid 4px #8dc900;
}
.container .cont-plate4 .plate4-main .main-top .top-title {
  font-size: var(--fs32);
  color: #000;
}
.container .cont-plate4 .plate4-main .main-top .top-English {
  margin-top: 0.1rem;
  font-size: var(--fs12);
  font-weight: 100;
  text-transform: uppercase;
  color: #999999;
}
.container .cont-plate4 .plate4-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.46rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item {
  width: calc(100% / 2 - 0.145rem);
  height: auto;
  margin-bottom: 0.25rem;
  background: #fff;
  border-radius: 0.14rem;
  overflow: hidden;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.02);
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic {
  width: 100%;
  height: 2.53rem;
  overflow: hidden;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.36rem 0.48rem;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-title {
  font-size: var(--fs20);
  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;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-text {
  width: 3.9rem;
  height: 0.4rem;
  margin-top: 0.15rem;
  font-size: var(--fs12);
  line-height: 0.2rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-button {
  position: absolute;
  bottom: 0.18rem;
  right: 0.18rem;
  width: 1rem;
  height: 0.25rem;
  font-size: var(--fs12);
  text-align: center;
  line-height: 0.22rem;
  color: #666;
  border-radius: 0.45rem;
  border: solid 1px #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-button:hover {
  color: #fff;
  background: #8dc900;
  border: solid 1px #8dc900;
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.container .cont-plate4 .plate4-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-cent .cent-title {
  color: #172980;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.29rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev img,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.14rem;
  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;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev .img2,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next .img2 {
  opacity: 0;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev:hover,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next:hover {
  background: #172980;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev:hover .img1,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next:hover .img1 {
  opacity: 0;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev:hover .img2,
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next:hover .img2 {
  opacity: 1;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-prev {
  left: -0.92rem;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-swiper-button-next {
  right: -0.92rem;
}
.container .cont-plate4 .plate4-main .main-cont .plate4-button-disabled {
  opacity: 0.3;
}
.product {
  width: 100%;
  height: auto;
  padding: 0.56rem 0 0.25rem;
  background: #f4f4f4;
}
.product .product-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.product .product-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
}
.product .product-main .main-cont .cont-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.product .product-main .main-cont .cont-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item {
  width: calc(100% / 3 - 0.166667rem);
  height: auto;
  margin-right: 0.25rem;
  margin-bottom: 0.2rem;
  padding: 0.38rem 0.3rem 0.3rem;
  background: #fff;
  border-radius: 0.14rem;
  overflow: hidden;
}
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:nth-child(3n) {
  margin-right: 0;
}
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-title {
  font-size: var(--fs14);
  font-weight: 100;
  text-align: center;
  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-cont .cont-swiper .swiper-slide .slide-box .box-item .item-text {
  margin-top: 0.05rem;
  font-size: var(--fs26);
  font-weight: 100;
  text-align: center;
  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-cont .cont-swiper .swiper-slide .slide-box .box-item .item-button {
  width: 1rem;
  height: 0.25rem;
  margin: 0.1rem auto 0;
  font-size: var(--fs12);
  text-align: center;
  line-height: 0.22rem;
  color: #666;
  border-radius: 0.45rem;
  border: solid 1px #666;
  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-swiper .swiper-slide .slide-box .box-item .item-button:hover {
  color: #fff;
  background: #8dc900;
  border: solid 1px #8dc900;
}
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic {
  width: 100%;
  height: 2.7rem;
  margin-top: 0.1rem;
  overflow: hidden;
}
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-title,
.product .product-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-text {
  color: #8dc900;
}
.product .product-main .main-cont .product-swiper-button-prev,
.product .product-main .main-cont .product-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.29rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product .product-main .main-cont .product-swiper-button-prev img,
.product .product-main .main-cont .product-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.14rem;
  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;
}
.product .product-main .main-cont .product-swiper-button-prev .img2,
.product .product-main .main-cont .product-swiper-button-next .img2 {
  opacity: 0;
}
.product .product-main .main-cont .product-swiper-button-prev:hover,
.product .product-main .main-cont .product-swiper-button-next:hover {
  background: #172980;
}
.product .product-main .main-cont .product-swiper-button-prev:hover .img1,
.product .product-main .main-cont .product-swiper-button-next:hover .img1 {
  opacity: 0;
}
.product .product-main .main-cont .product-swiper-button-prev:hover .img2,
.product .product-main .main-cont .product-swiper-button-next:hover .img2 {
  opacity: 1;
}
.product .product-main .main-cont .product-swiper-button-prev {
  left: -0.92rem;
}
.product .product-main .main-cont .product-swiper-button-next {
  right: -0.92rem;
}
.product .product-main .main-cont .product-button-disabled {
  opacity: 0.3;
}
.history {
  width: 100%;
  height: auto;
  padding: 1.26rem 0 1.2rem;
  background: url(../images/history/bg.jpg) no-repeat top left;
  background-size: cover;
}
.history .history-main {
  position: relative;
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.history .history-main .main-swiper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.history .history-main .main-swiper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.12rem;
  margin-top: -0.06rem;
  background: #fff;
  border-radius: 0.45rem;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.history .history-main .main-swiper .swiper-slide {
  width: 2.2rem;
  height: 7.2rem;
  padding-left: 0.4rem;
  opacity: 0;
}
.history .history-main .main-swiper .swiper-slide .slide-box {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
}
.history .history-main .main-swiper .swiper-slide .slide-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.history .history-main .main-swiper .swiper-slide .slide-box .box-round {
  position: absolute;
  bottom: -0.15rem;
  left: -0.15rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #fff;
  z-index: 9;
}
.history .history-main .main-swiper .swiper-slide .slide-box .box-round::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.22rem;
  height: 0.22rem;
  margin: -0.11rem 0 0 -0.11rem;
  border-radius: 50%;
  background: #8dc900;
}
.history .history-main .main-swiper .swiper-slide .slide-box .box-pic {
  width: 2rem;
  height: auto;
  padding: 0.04rem;
  background: #fff;
  overflow: hidden;
}
.history .history-main .main-swiper .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.history .history-main .main-swiper .swiper-slide .slide-box .box-cent {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: auto;
  padding-left: 0.12rem;
}
.history .history-main .main-swiper .swiper-slide .slide-box .box-cent .cent-year {
  margin-top: 0.12rem;
  font-size: var(--fs24);
  font-weight: bold;
  color: #8dc900;
}
.history .history-main .main-swiper .swiper-slide .slide-box .box-cent .cent-text {
  max-height: 1.3rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
  overflow: auto;
}
.history .history-main .main-swiper .swiper-slide:nth-child(even) {
  padding-top: 3.6rem;
}
.history .history-main .main-swiper .swiper-slide:nth-child(even) .slide-box {
  padding-top: 0.35rem;
}
.history .history-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-round {
  top: -0.15rem;
  bottom: auto;
}
.history .history-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-round::after {
  background: #999999;
}
.history .history-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-pic {
  position: absolute;
  bottom: 0;
  left: 0;
}
.history .history-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-cent {
  position: static;
}
.history .history-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-cent .cent-year {
  margin-top: 0;
  margin-bottom: 0.12rem;
  color: #666;
}
.history .history-main .main-swiper .swiper-slide:last-of-type {
  width: 4rem;
}
.history .history-main .main-swiper .swiper-slide:last-of-type .slide-box {
  width: 3.6rem;
}
.history .history-main .history-swiper-button-prev,
.history .history-main .history-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.29rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.history .history-main .history-swiper-button-prev img,
.history .history-main .history-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.14rem;
  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;
}
.history .history-main .history-swiper-button-prev .img2,
.history .history-main .history-swiper-button-next .img2 {
  opacity: 0;
}
.history .history-main .history-swiper-button-prev:hover,
.history .history-main .history-swiper-button-next:hover {
  background: #172980;
}
.history .history-main .history-swiper-button-prev:hover .img1,
.history .history-main .history-swiper-button-next:hover .img1 {
  opacity: 0;
}
.history .history-main .history-swiper-button-prev:hover .img2,
.history .history-main .history-swiper-button-next:hover .img2 {
  opacity: 1;
}
.history .history-main .history-swiper-button-prev {
  left: -0.92rem;
}
.history .history-main .history-swiper-button-next {
  right: -0.92rem;
}
.history .history-main .history-button-disabled {
  opacity: 0.3;
}
.capacity {
  width: 100%;
  height: auto;
}
.capacity .capacity-plate1 {
  width: 100%;
  height: auto;
  padding: 0.7rem 0 0.6rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.capacity .capacity-plate1 .plate1-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.capacity .capacity-plate1 .plate1-main .main-English {
  font-family: 'Poppins-SemiBold';
  font-size: var(--fs48);
  line-height: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.capacity .capacity-plate1 .plate1-main .main-title {
  font-size: var(--fs32);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.capacity .capacity-plate1 .plate1-main .main-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}
.capacity .capacity-plate1 .plate1-main .main-box .box-item {
  width: 2.2rem;
  height: auto;
  margin: 0 0.25rem;
}
.capacity .capacity-plate1 .plate1-main .main-box .box-item .item-top {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 auto;
  font-size: var(--fs32);
  text-align: center;
  line-height: 1.1rem;
  color: #fff;
  border-radius: 50%;
  background: #172980;
}
.capacity .capacity-plate1 .plate1-main .main-box .box-item .item-title {
  width: 2.2rem;
  height: 0.4rem;
  margin: 0.12rem auto 0;
  font-size: var(--fs24);
  text-align: center;
  line-height: 0.38rem;
  color: #fff;
  border-radius: 0.45rem;
  border: solid 1px #fff;
}
.capacity .capacity-plate1 .plate1-main .main-box .box-item .item-text {
  margin-top: 0.15rem;
  padding: 0 0.2rem;
  font-size: var(--fs16);
  font-weight: 100;
  text-align: center;
  line-height: 0.24rem;
  color: #fff;
}
.capacity .capacity-plate1 .plate1-main .main-box .box-item:first-of-type {
  width: 100%;
  margin-bottom: 0.5rem;
}
.capacity .capacity-plate1 .plate1-main .main-box .box-item:first-of-type .item-text {
  width: 6.35rem;
  margin: 0.15rem auto 0;
}
.capacity .capacity-plate2 {
  width: 100%;
  height: auto;
  padding: 0.7rem 0 0.65rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.capacity .capacity-plate2 .plate2-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.capacity .capacity-plate2 .plate2-main .main-English {
  font-family: 'Poppins-SemiBold';
  font-size: var(--fs48);
  line-height: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.capacity .capacity-plate2 .plate2-main .main-title {
  font-size: var(--fs32);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.capacity .capacity-plate2 .plate2-main .main-swiper {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 1.1rem;
  overflow: hidden;
}
.capacity .capacity-plate2 .plate2-main .main-swiper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2.05rem;
  width: 2rem;
  height: 0.1rem;
  margin-top: -0.05rem;
  background: #fff;
  border-radius: 0.45rem;
  z-index: 9;
  animation: position 3.5s ease-in-out infinite;
}
.capacity .capacity-plate2 .plate2-main .main-swiper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.1rem;
  margin-top: -0.05rem;
  background: #003399;
  border-radius: 0.45rem;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide {
  width: calc(100% / 4);
  height: auto;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: 3.9rem;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-round {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.66rem;
  right: 0;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 auto;
  font-size: var(--fs24);
  font-weight: 100;
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background: #003399;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 0.2rem;
  text-align: center;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-cent::before {
  content: '';
  position: absolute;
  top: -0.55rem;
  left: 50%;
  width: 0.06rem;
  height: 0.3rem;
  margin-left: -0.03rem;
  background: #003399;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-cent::after {
  content: '';
  position: absolute;
  top: -0.25rem;
  left: 50%;
  width: 0.14rem;
  height: 0.14rem;
  margin-left: -0.07rem;
  border-radius: 50%;
  background: #003399;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-cent img {
  width: auto;
  height: 0.57rem;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-cent .cent-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.2rem;
  text-align: center;
  color: #fff;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-cent .cent-title {
  display: inline-block;
  width: auto;
  height: 0.32rem;
  padding: 0 0.15rem;
  margin: 0 auto;
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.3rem;
  color: #fff;
  border-radius: 0.45rem;
  border: solid 1px #fff;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide .slide-box:hover .box-round {
  animation: mainBlock 0.8s linear infinite;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-round {
  bottom: 0.66rem;
  top: auto;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-cent {
  bottom: 2.5rem;
  top: auto;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-cent::before {
  bottom: -0.55rem;
  top: auto;
}
.capacity .capacity-plate2 .plate2-main .main-swiper .swiper-slide:nth-child(even) .slide-box .box-cent::after {
  bottom: -0.25rem;
  top: auto;
}
.capacity .capacity-plate2 .plate2-main .main-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.42rem;
  padding: 0.45rem 1.45rem 0.14rem;
  border: solid 1px #fff;
  border-radius: 0.1rem;
}
.capacity .capacity-plate2 .plate2-main .main-cont .cont-item {
  position: relative;
  width: auto;
  height: auto;
  padding: 0 0.32rem;
  margin-bottom: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  text-align: center;
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.capacity .capacity-plate2 .plate2-main .main-cont .cont-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.32rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  background: url(../images/icon/icon-page-feather.png) no-repeat center center;
  background-size: 100%;
}
.capacity .capacity-plate2 .plate2-main .main-cont .cont-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.32rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  background: url(../images/icon/icon-page-feather2.png) no-repeat center center;
  background-size: 100%;
}
.capacity .capacity-plate2 .plate2-main .main-cont .cont-item:hover {
  transform: translatey(-0.06rem);
  -o-transform: translatey(-0.06rem);
  -moz-transform: translatey(-0.06rem);
  -webkit-transform: translatey(-0.06rem);
}
.culture {
  width: 100%;
  height: auto;
}
.culture .culture-plate1 {
  position: relative;
  width: 100%;
  height: auto;
}
.culture .culture-plate1 .plate1-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.culture .culture-plate1 .plate1-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
  transition-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 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.culture .culture-plate1 .plate1-cent {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
}
.culture .culture-plate1 .plate1-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  line-height: 1.5rem;
  text-align: center;
  color: #000;
}
.culture .culture-plate1 .plate1-cent .cent-English {
  margin-top: -1.8rem;
  padding-left: 0.2rem;
  font-family: 'POPPINS-LIGHT';
  font-size: var(--fs32);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #000;
}
.culture .culture-plate1 .plate1-cent .cent-arrow {
  width: 0.11rem;
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.culture .culture-plate1 .plate1-cent .cent-arrow img {
  width: 100%;
  animation: translateY50 1.5s linear infinite;
}
.culture .culture-plate1 .plate1-cent .cent-text {
  margin-top: 0.25rem;
  font-size: var(--fs18);
  font-weight: bold;
  line-height: 0.28rem;
  text-align: center;
  color: #000;
}
.culture .culture-plate1:hover .plate1-pic img {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
.culture .culture-plate2 {
  position: relative;
  width: 100%;
  height: auto;
}
.culture .culture-plate2 .plate2-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.culture .culture-plate2 .plate2-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
  transition-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 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.culture .culture-plate2 .plate2-cent {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
}
.culture .culture-plate2 .plate2-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  line-height: 1.5rem;
  text-align: center;
  color: #fff;
}
.culture .culture-plate2 .plate2-cent .cent-English {
  margin-top: -1.8rem;
  padding-left: 0.2rem;
  font-family: 'POPPINS-LIGHT';
  font-size: var(--fs32);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #fff;
}
.culture .culture-plate2 .plate2-cent .cent-arrow {
  width: 0.11rem;
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.culture .culture-plate2 .plate2-cent .cent-arrow img {
  width: 100%;
  animation: translateY50 1.5s linear infinite;
}
.culture .culture-plate2 .plate2-cent .cent-text {
  margin-top: 0.25rem;
  font-size: var(--fs18);
  font-weight: bold;
  line-height: 0.28rem;
  text-align: center;
  color: #fff;
}
.culture .culture-plate2:hover .plate2-pic img {
  transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -webkit-transform: scale(1, 1 translateZ(0));
}
.culture .culture-plate3 {
  position: relative;
  width: 100%;
  height: auto;
}
.culture .culture-plate3 .plate3-main {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}
.culture .culture-plate3 .plate3-main .main-item {
  position: relative;
  width: 33.33%;
  height: auto;
}
.culture .culture-plate3 .plate3-main .main-item .item-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.culture .culture-plate3 .plate3-main .main-item .item-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 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.culture .culture-plate3 .plate3-main .main-item .item-cent {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
}
.culture .culture-plate3 .plate3-main .main-item .item-cent .cent-title {
  font-size: var(--fs42);
  font-weight: bold;
  line-height: 1.5rem;
  text-align: center;
  color: #fff;
}
.culture .culture-plate3 .plate3-main .main-item .item-cent .cent-English {
  margin-top: -1.75rem;
  font-family: 'POPPINS-LIGHT';
  font-size: var(--fs32);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.culture .culture-plate3 .plate3-main .main-item .item-cent .cent-arrow {
  width: 0.11rem;
  margin: 1.5rem auto 0;
}
.culture .culture-plate3 .plate3-main .main-item .item-cent .cent-arrow img {
  width: 100%;
}
.culture .culture-plate3 .plate3-main .main-item .item-cent .cent-text {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0 0.2rem;
  font-size: var(--fs18);
  font-weight: 100;
  line-height: 0.28rem;
  text-align: center;
  color: #fff;
}
.culture .culture-plate3 .plate3-main .main-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.culture .culture-plate3 .plate3-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-top: 0.95rem;
  z-index: 1;
}
.culture .culture-plate3 .plate3-cent .cent-title {
  font-size: var(--fs24);
  text-align: center;
  letter-spacing: 0.08rem;
  color: #fff;
}
.culture .culture-plate3 .plate3-cent .cent-English {
  margin: 0.05rem;
  font-size: var(--fs18);
  font-weight: 100;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.society {
  width: 100%;
  height: auto;
}
.society .society-plate1 {
  width: 100%;
  height: auto;
  padding: 0.62rem 0 0.35rem;
  background: #fafafa;
}
.society .society-plate1 .plate1-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.society .society-plate1 .plate1-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.46rem;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide {
  width: 100%;
  height: auto;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item {
  width: calc(100% / 2 - 0.11rem);
  height: auto;
  margin-bottom: 0.25rem;
  background: #fff;
  border-radius: 0.14rem;
  overflow: hidden;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.02);
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic {
  width: 100%;
  height: 2.53rem;
  overflow: hidden;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.36rem 0.48rem;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-title {
  font-size: var(--fs20);
  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;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-text {
  width: 4.3rem;
  height: 0.48rem;
  margin-top: 0.15rem;
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.24rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-button {
  position: absolute;
  bottom: 0.18rem;
  right: 0.18rem;
  width: 1rem;
  height: 0.25rem;
  font-size: var(--fs12);
  text-align: center;
  line-height: 0.22rem;
  color: #666;
  border-radius: 0.45rem;
  border: solid 1px #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item .item-cent .cent-button:hover {
  color: #fff;
  background: #8dc900;
  border: solid 1px #8dc900;
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.society .society-plate1 .plate1-main .main-cont .cont-swiper .swiper-slide .slide-box .box-item:hover .item-cent .cent-title {
  color: #172980;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-prev,
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.29rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-prev img,
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.14rem;
  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;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-prev .img2,
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-next .img2 {
  opacity: 0;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-prev:hover,
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-next:hover {
  background: #172980;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-prev:hover .img1,
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-next:hover .img1 {
  opacity: 0;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-prev:hover .img2,
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-next:hover .img2 {
  opacity: 1;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-prev {
  left: -0.92rem;
}
.society .society-plate1 .plate1-main .main-cont .plate1-swiper-button-next {
  right: -0.92rem;
}
.society .society-plate1 .plate1-main .main-cont .plate1-button-disabled {
  opacity: 0.3;
}
.society .society-plate2 {
  width: 100%;
  height: auto;
  padding: 0.58rem 0 0.4rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.society .society-plate2 .plate2-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.society .society-plate2 .plate2-main .page-top .top-title,
.society .society-plate2 .plate2-main .page-top .top-English {
  color: #fff;
}
.society .society-plate2 .plate2-main .main-box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
}
.society .society-plate2 .plate2-main .main-box .box-item {
  position: relative;
  top: 0;
  width: calc(100% / 3 - 0.0266667rem);
  height: auto;
  margin-right: 0.04rem;
  padding: 0.22rem 0.18rem 0.6rem;
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 0.1rem;
  background: rgba(0, 51, 153, 0.3);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.society .society-plate2 .plate2-main .main-box .box-item:last-of-type {
  margin-right: 0;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-top {
  width: 100%;
  height: 1.3rem;
  font-size: var(--fs40);
  font-weight: bold;
  text-align: center;
  line-height: 1.28rem;
  color: #fff;
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 0.04rem;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cent {
  width: 100%;
  height: auto;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cent .cent-item {
  width: 100%;
  height: auto;
  margin-bottom: 0.65rem;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cent .cent-item:last-of-type {
  margin-bottom: 0;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cent .cent-item .item-num {
  font-family: 'POPPINS-LIGHT';
  font-size: 0.65rem;
  text-align: center;
  color: #fff;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cent .cent-item .item-text {
  margin-top: -0.15rem;
  font-size: var(--fs14);
  font-weight: 100;
  line-height: 0.2rem;
  text-align: center;
  color: #fff;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-lump {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-lump .lump-item {
  width: 100%;
  height: auto;
  margin-bottom: 0.42rem;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-lump .lump-item:last-of-type {
  margin-bottom: 0;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-lump .lump-item .item-title {
  font-size: var(--fs24);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-lump .lump-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs14);
  font-weight: 100;
  line-height: 0.2rem;
  text-align: center;
  color: #fff;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cont {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cont .cont-item {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cont .cont-item .item-cent {
  width: calc(50% - 0.25rem);
  height: auto;
  text-align: right;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cont .cont-item .item-cent .cent-title {
  font-size: var(--fs24);
  font-weight: bold;
  color: #fff;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cont .cont-item .item-cent .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs14);
  line-height: 0.2rem;
  color: #fff;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cont .cont-item:nth-child(even) {
  justify-content: flex-end;
  margin-top: -0.6rem;
}
.society .society-plate2 .plate2-main .main-box .box-item .item-cont .cont-item:nth-child(even) .item-cent {
  text-align: left;
}
.society .society-plate2 .plate2-main .main-box .box-item:hover {
  top: -0.15rem;
  box-shadow: 0 0 0.2rem 0 rgba(255, 255, 255, 0.1);
}
.society .society-plate2 .plate2-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 1.85rem;
  padding-left: 4.85rem;
}
.society .society-plate2 .plate2-main .main-cont .cont-title {
  font-size: var(--fs40);
  font-weight: bold;
  color: #fff;
}
.society .society-plate2 .plate2-main .main-cont .cont-text {
  min-height: 5.8rem;
  margin-top: 0.3rem;
  font-size: var(--fs20);
  font-weight: 100;
  line-height: 0.3rem;
  color: #fff;
}
.about {
  width: 100%;
  height: auto;
  padding: 0.65rem 0 1.55rem;
  margin-top: 1.1rem;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  background-attachment: fixed;
}
.about .about-main {
  width: 12.8rem;
  height: auto;
  padding: 0 1.98rem;
  margin: 0 auto;
}
.about .about-main .main-top {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  border-left: solid 4px #fff;
}
.about .about-main .main-top .top-English {
  font-family: 'Poppins-SemiBold';
  font-size: var(--fs48);
  line-height: 0.48rem;
  text-transform: uppercase;
  color: #fff;
}
.about .about-main .main-top .top-title {
  font-size: var(--fs32);
  font-weight: bold;
  color: #fff;
}
.about .about-main .main-video {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  border-radius: 0.06rem;
  border: solid 1px #666666;
  overflow: hidden;
}
.about .about-main .main-video .video-pic {
  position: relative;
  width: 100%;
  height: auto;
}
.about .about-main .main-video .video-pic img {
  width: 100%;
}
.about .about-main .main-video .video-pic .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.86rem;
  height: 0.86rem;
  margin: -0.43rem 0 0 -0.43rem;
  background: #fff;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about .about-main .main-video .video-pic .video-icon img {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 0.27rem;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.about .about-main .main-video .video-pic .video-icon .img2 {
  opacity: 0;
}
.about .about-main .main-video .video-pic .video-icon::before {
  content: '';
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: solid 1px #fff;
  animation: wid 3s infinite linear;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.about .about-main .main-video .video-pic .video-icon::after {
  content: '';
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: solid 1px #fff;
  animation: wid 3s 1.5s infinite linear;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.about .about-main .main-video .video-pic .video-icon:hover {
  background: #8dc900;
}
.about .about-main .main-video .video-pic .video-icon:hover .img1 {
  opacity: 0;
}
.about .about-main .main-video .video-pic .video-icon:hover .img2 {
  opacity: 1;
}
.about .about-main .main-video .video-box {
  display: none;
  width: 100%;
  height: auto;
  font-size: 0;
}
.about .about-main .main-video .video-box video {
  width: 100%;
}
.about .about-main .main-cent {
  width: 100%;
  height: auto;
  margin-top: 0.58rem;
}
.about .about-main .main-cent .cent-title {
  font-size: var(--fs32);
  font-weight: 100;
  color: #fff;
}
.about .about-main .main-cent .cent-English {
  margin-top: 0.1rem;
  font-size: var(--fs12);
  font-weight: 100;
  text-transform: uppercase;
  color: #fff;
}
.about .about-main .main-cent .cent-heng {
  width: 0.36rem;
  height: 0.04rem;
  margin-top: 0.45rem;
  background: #8dc900;
}
.about .about-main .main-cent .cent-text {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  font-weight: 100;
  line-height: 0.3rem;
  text-align: justify;
  color: #fff;
}
.about .about-main .main-cent .cent-text span {
  display: inline-block;
  width: 100%;
}
.join {
  width: 100%;
  height: auto;
  padding: 0.35rem 0 0.75rem;
  background: #ededed;
}
.join .join-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.join .join-main .main-top {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  border-bottom: solid 2px #ccc;
}
.join .join-main .main-top .top-item {
  position: relative;
  width: auto;
  height: 0.35rem;
  margin: 0 0.8rem 0.12rem;
  padding: 0 0.25rem;
  font-size: var(--fs24);
  font-weight: 100;
  line-height: 0.33rem;
  color: #333;
  border-radius: 0.45rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.join .join-main .main-top .top-item::after {
  content: '';
  position: absolute;
  bottom: -0.14rem;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: 0.04rem;
  background: #8dc900;
  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;
}
.join .join-main .main-top .top-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));
}
.join .join-main .main-top .top-item-on {
  font-weight: bold;
  background: #fff;
}
.join .join-main .main-top .top-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));
}
.join .join-main .main-box {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.join .join-main .main-box .box-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.join .join-main .main-box .box-item .item-cent {
  width: 50%;
  height: auto;
  padding: 1.12rem 0.68rem 0.5rem 0.8rem;
  background: #172980;
}
.join .join-main .main-box .box-item .item-cent .cent-title {
  font-size: var(--fs36);
  font-weight: 100;
  color: #fff;
}
.join .join-main .main-box .box-item .item-cent .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
}
.join .join-main .main-box .box-item .item-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.join .join-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;
}
.join .join-main .main-box .box-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));
}
.join .join-main .main-box .box-item:nth-child(2) .item-pic {
  width: 3.87rem;
}
.join .join-main .main-box .box-item:nth-child(2) .item-pic:nth-child(3) {
  width: 4.57rem;
}
.join .join-main .main-box .box-item:nth-child(2) .item-cent {
  width: 4.35rem;
  padding: 1.08rem 0.68rem 0.3rem 0.88rem;
  background: #fff;
}
.join .join-main .main-box .box-item:nth-child(2) .item-cent .cent-title,
.join .join-main .main-box .box-item:nth-child(2) .item-cent .cent-text {
  color: #4d4d4d;
}
.join .join-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.join .join-main .main-cont .cont-title {
  font-size: var(--fs36);
  font-weight: 100;
  text-align: center;
  color: #4b4b4b;
}
.join .join-main .main-cont .cont-box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.join .join-main .main-cont .cont-box .box-item {
  position: relative;
  width: calc(100% / 3 - 0.09999994rem);
  height: auto;
  margin-right: 0.14rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.join .join-main .main-cont .cont-box .box-item:last-of-type {
  margin-right: 0;
}
.join .join-main .main-cont .cont-box .box-item .item-pic {
  width: 100%;
  height: 100%;
}
.join .join-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;
}
.join .join-main .main-cont .cont-box .box-item p {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  font-size: var(--fs40);
  font-weight: 100;
  text-align: center;
  color: #fff;
  transform: translatey(-49%);
  -o-transform: translatey(-49%);
  -moz-transform: translatey(-49%);
  -webkit-transform: translatey(-49%);
}
.join .join-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));
}
.recruit {
  width: 100%;
  height: auto;
  padding: 0.35rem 0 0.75rem;
  background: #ededed;
}
.recruit .recruit-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.recruit .recruit-main .main-top {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  border-bottom: solid 2px #ccc;
}
.recruit .recruit-main .main-top .top-item {
  position: relative;
  width: auto;
  height: 0.35rem;
  margin: 0 0.8rem 0.12rem;
  padding: 0 0.25rem;
  font-size: var(--fs24);
  font-weight: 100;
  line-height: 0.33rem;
  color: #333;
  border-radius: 0.45rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit .recruit-main .main-top .top-item::after {
  content: '';
  position: absolute;
  bottom: -0.14rem;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: 0.04rem;
  background: #8dc900;
  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;
}
.recruit .recruit-main .main-top .top-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));
}
.recruit .recruit-main .main-top .top-item-on {
  font-weight: bold;
  background: #fff;
}
.recruit .recruit-main .main-top .top-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));
}
.recruit .recruit-main .main-cont {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.18rem;
  border-radius: 0.12rem;
  border: solid 2px #fff;
  background: #fff;
  overflow: hidden;
}
.recruit .recruit-main .main-cont .cont-cent {
  position: relative;
  width: 6.06rem;
  height: auto;
  padding: 1.1rem 0.82rem;
}
.recruit .recruit-main .main-cont .cont-cent .cent-English {
  font-size: var(--fs36);
  font-weight: 100;
  text-transform: uppercase;
  color: #4b4b4b;
}
.recruit .recruit-main .main-cont .cont-cent .cent-title {
  margin-top: 0.05rem;
  font-size: var(--fs30);
  font-weight: 100;
  color: #4b4b4b;
}
.recruit .recruit-main .main-cont .cont-cent .cent-text {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.24rem;
  color: #4b4b4b;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 0.82rem;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: auto;
  height: auto;
  margin-right: 0.7rem;
  color: #4b4b4b;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item:last-of-type {
  margin-right: 0;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item span {
  position: relative;
  width: 0.46rem;
  height: 0.46rem;
  margin-right: 0.18rem;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item span .img2 {
  opacity: 0;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item p {
  font-size: var(--fs24);
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item:hover {
  color: #172980;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item:hover span .img1 {
  opacity: 0;
}
.recruit .recruit-main .main-cont .cont-cent .cent-box .box-item:hover span .img2 {
  opacity: 1;
}
.recruit .recruit-main .main-cont .cont-pic {
  width: 6.74rem;
  height: auto;
  overflow: hidden;
}
.recruit .recruit-main .main-cont .cont-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;
}
.recruit .recruit-main .main-cont .cont-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.contact {
  width: 100%;
  height: auto;
  padding: 0.35rem 0 0.75rem;
  background: #ededed;
}
.contact .contact-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.contact .contact-main .main-top {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  border-bottom: solid 2px #ccc;
}
.contact .contact-main .main-top .top-item {
  position: relative;
  width: auto;
  height: 0.35rem;
  margin: 0 0 0.12rem;
  padding: 0 0.25rem;
  font-size: var(--fs24);
  font-weight: 100;
  line-height: 0.33rem;
  color: #333;
  border-radius: 0.45rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.contact .contact-main .main-top .top-item::after {
  content: '';
  position: absolute;
  bottom: -0.14rem;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: 0.04rem;
  background: #8dc900;
  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;
}
.contact .contact-main .main-top .top-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));
}
.contact .contact-main .main-top .top-item-on {
  font-weight: bold;
  background: #fff;
}
.contact .contact-main .main-top .top-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));
}
.contact .contact-main .main-cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 0.18rem;
  padding: 0.25rem 0.24rem;
  border-radius: 0.12rem;
  border: solid 1px #f8f8f8;
  background: #f8f8f8;
  overflow: hidden;
}
.contact .contact-main .main-cont .main-cent {
  position: relative;
  width: 4.5rem;
  height: auto;
  padding-bottom: 0.4rem;
}
.contact .contact-main .main-cont .main-cent .cent-pic {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.contact .contact-main .main-cont .main-cent .cent-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;
}
.contact .contact-main .main-cont .main-cent .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));
}
.contact .contact-main .main-cont .main-cent .cent-title {
  margin: 0.4rem 0;
  font-size: var(--fs20);
  color: #333;
}
.contact .contact-main .main-cont .main-cent .cent-text {
  display: flex;
  justify-content: flex-start;
  font-size: var(--fs18);
  font-weight: 100;
  line-height: 0.42rem;
  color: #666;
}
.contact .contact-main .main-cont .main-cent .cent-text em {
  width: 0.92rem;
}
.contact .contact-main .main-cont .main-cent .cent-text em img {
  width: 0.21rem;
  margin-right: 0.1rem;
}
.contact .contact-main .main-cont .main-cent .cent-text span {
  width: calc(100% - 0.92rem);
}
.contact .contact-main .main-cont .main-cent .cent-button {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.4rem;
  height: 0.35rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.32rem;
  color: #666;
  border-radius: 0.45rem;
  border: solid 1px #999999;
}
.contact .contact-main .main-cont .main-cent .cent-button:hover {
  color: #fff;
  background: #172980;
  border: solid 1px #172980;
}
.contact .contact-main .main-cont .main-map {
  position: relative;
  width: 7.6rem;
  height: 5.5rem;
  border-radius: 0.08rem;
  box-shadow: 0px 0px 13px 0px #c1c1c1 inset;
  overflow: hidden;
}
.contact .contact-main .main-cont .main-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news {
  width: 100%;
  height: auto;
  padding: 0.35rem 0 0.45rem;
  background: #ededed;
}
.news .news-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.news .news-main .main-top {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  border-bottom: solid 2px #ccc;
}
.news .news-main .main-top .top-item {
  position: relative;
  width: auto;
  height: 0.35rem;
  margin: 0 0.8rem 0.12rem;
  padding: 0 0.25rem;
  font-size: var(--fs24);
  font-weight: 100;
  line-height: 0.33rem;
  color: #333;
  border-radius: 0.45rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-top .top-item::after {
  content: '';
  position: absolute;
  bottom: -0.14rem;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: 0.04rem;
  background: #8dc900;
  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;
}
.news .news-main .main-top .top-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));
}
.news .news-main .main-top .top-item-on {
  font-weight: bold;
  background: #fff;
}
.news .news-main .main-top .top-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));
}
.news .news-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  margin-bottom: 0.2rem;
}
.news .news-main .main-cont .cont-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-bottom: 0.14rem;
  background: #fff;
  border: solid 2px #fff;
  border-radius: 0.12rem;
  overflow: hidden;
}
.news .news-main .main-cont .cont-item .item-cent {
  width: 50%;
  height: auto;
  padding: 0.35rem 0.6rem 0.2rem 0;
}
.news .news-main .main-cont .cont-item .item-cent .cent-title {
  height: 0.92rem;
  font-size: var(--fs32);
  font-weight: 100;
  line-height: 0.46rem;
  text-align: right;
  color: #4b4b4b;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-cont .cont-item .item-cent .cent-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  font-weight: 100;
  text-align: right;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news .news-main .main-cont .cont-item .item-cent .cent-button {
  position: relative;
  left: calc(100% - 1rem);
  width: 1rem;
  height: 0.25rem;
  margin-top: 0.2rem;
  font-family: 'Poppins-Regular';
  font-size: var(--fs14);
  text-align: center;
  line-height: 0.25rem;
  color: #fff;
  background: #8dc900;
  border-radius: 0.45rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-cont .cont-item .item-cent .cent-button:hover {
  background: #172980;
}
.news .news-main .main-cont .cont-item .item-pic {
  width: 5.53rem;
  height: auto;
  overflow: hidden;
}
.news .news-main .main-cont .cont-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news .news-main .main-cont .cont-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.news .news-main .main-cont .cont-item:nth-child(odd) .item-cent {
  padding: 0.35rem 0 0.2rem 0.6rem;
}
.news .news-main .main-cont .cont-item:nth-child(odd) .item-cent .cent-title,
.news .news-main .main-cont .cont-item:nth-child(odd) .item-cent .cent-text {
  text-align: left;
}
.news .news-main .main-cont .cont-item:nth-child(odd) .item-cent .cent-button {
  left: 0;
}
.news .news-main .main-cont .cont-item:hover .item-cent .cent-title {
  color: #172980;
}
.news .news-main .main-cont .cont-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1 translateZ(0));
}
.message {
  width: 100%;
  height: auto;
  padding: 0.35rem 0 0.75rem;
  background: #ededed;
}
.message .message-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
}
.message .message-main .main-text {
  font-size: var(--fs20);
  line-height: 0.4rem;
  text-align: center;
  color: #333;
}
.message .message-main .main-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 0.5rem;
}
.message .message-main .main-form .form-item {
  width: calc(50% - 0.4rem);
  height: auto;
  margin-bottom: 0.15rem;
}
.message .message-main .main-form .form-item .item-title {
  margin-bottom: 0.06rem;
  font-size: var(--fs14);
  font-weight: bold;
  color: #333333;
}
.message .message-main .main-form .form-item .item-title em {
  margin-left: 0.05rem;
  color: #bf0000;
}
.message .message-main .main-form .form-item input {
  width: 100%;
  height: 0.5rem;
  padding: 0 0.15rem;
  font-size: var(--fs14);
  color: #333;
  border: 1px solid #DBDADA;
  background: #fff;
  border-radius: 0.05rem;
}
.message .message-main .main-form .form-item select {
  width: 100%;
  height: 0.5rem;
  padding: 0 0.15rem;
  font-size: var(--fs14);
  color: #333;
  border: 1px solid #DBDADA !important;
  background: #fff;
  border-radius: 0.05rem;
  appearance: none;
  outline: none;
}
.message .message-main .main-form .form-item textarea {
  width: 100%;
  height: 1.5rem;
  padding: 0.1rem 0.15rem;
  font-size: var(--fs14);
  color: #333;
  border: 1px solid #DBDADA;
  background: #fff;
  border-radius: 0.05rem;
}
.message .message-main .main-form .form-item:nth-child(10) {
  width: 100%;
  height: auto;
}
.message .message-main .main-form .form-agreement {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0.2rem;
  background: #fff;
}
.message .message-main .main-form .form-agreement input {
  width: 0.15rem;
  height: 0.15rem;
}
.message .message-main .main-form .form-agreement P {
  padding-left: 0.06rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333333;
}
.message .message-main .main-form .form-agreement P a {
  color: #172980;
}
.message .message-main .main-form .form-agreement P a:hover {
  color: #8dc900;
}
.message .message-main .main-button {
  display: block;
  width: 2rem;
  height: auto;
  margin: 0.4rem auto 0;
  padding: 0.15rem;
  font-size: var(--fs14);
  text-align: center;
  color: #fff;
  border-radius: 0.05rem;
  background: #172980;
}
.message .message-main .main-button:hover {
  background: #8dc900;
}
.agreement {
  width: 100%;
  height: auto;
  padding: 0.35rem 0 0.75rem;
  background: #ededed;
}
.agreement .agreement-main {
  width: 12.8rem;
  height: auto;
  margin: 0 auto;
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #5a5a5c;
}
.agreement .agreement-main strong {
  color: #333;
}
.page-top {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  border-left: solid 4px #8dc900;
}
.page-top .top-title {
  font-size: var(--fs32);
  color: #000;
}
.page-top .top-English {
  margin-top: 0.1rem;
  font-size: var(--fs12);
  font-weight: 100;
  text-transform: uppercase;
  color: #999999;
}
.product-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 17, 17, 0.8);
  z-index: 59;
}
.product-pupop {
  display: none;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 12.8rem;
  height: 9rem;
  margin: -4.5rem 0 0 -6.4rem;
  background: #fff;
  border-radius: 0.14rem;
  overflow: hidden;
  z-index: 99;
}
.product-pupop .pupop-left {
  position: relative;
  width: 4.2rem;
  height: auto;
  padding: 0.65rem 0.54rem 1.9rem;
}
.product-pupop .pupop-left .left-title {
  font-size: var(--fs18);
  color: #666;
}
.product-pupop .pupop-left .left-num {
  display: inline-block;
  width: auto;
  height: 0.46rem;
  margin-top: 0.15rem;
  padding: 0 0.16rem;
  font-size: var(--fs30);
  line-height: 0.46rem;
  color: #fff;
  border-radius: 0.1rem;
  background: #8dc900;
}
.product-pupop .pupop-left .left-bottom {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 0.55rem;
}
.product-pupop .pupop-left .left-bottom .bottom-text {
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #666;
}
.product-pupop .pupop-left .left-bottom .bottom-botton {
  display: block;
  width: 1.4rem;
  height: 0.35rem;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  text-align: center;
  color: #666;
  border-radius: 0.45rem;
  border: solid 1px #999999;
}
.product-pupop .pupop-left .left-bottom .bottom-botton:hover {
  border: solid 1px #8dc900;
  color: #fff;
  background: #8dc900;
}
.product-pupop .pupop-main {
  width: 8.78rem;
  height: 100%;
  padding: 0.65rem 0.8rem 0.65rem 0.9rem;
  background: #f5f5f5;
}
.product-pupop .pupop-main .main-cont {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.product-pupop .pupop-main .main-cont::-webkit-scrollbar {
  width: 0.19rem;
  height: 0.19rem;
  background: #fff;
}
.product-pupop .pupop-main .main-cont::-webkit-scrollbar-thumb {
  background: #898989;
}
.product-pupop .pupop-main .main-cont::-webkit-scrollbar-button {
  background: #fff;
}
.product-pupop .pupop-main .main-cont::-webkit-scrollbar-button {
  display: block;
  width: 0.14rem;
  height: 0.12rem;
}
.product-pupop .pupop-main .main-cont::-webkit-scrollbar-button:vertical:single-button:start {
  width: 0.14rem;
  height: 0.12rem;
  background: url(../images/icon/icon-scrollbar-arrow.png) no-repeat bottom center;
  background-size: 0.14rem;
}
.product-pupop .pupop-main .main-cont::-webkit-scrollbar-button:vertical:single-button:end {
  width: 0.14rem;
  height: 0.12rem;
  background: url(../images/icon/icon-scrollbar-arrow2.png) no-repeat center center;
  background-size: 0.14rem;
}
.product-pupop .pupop-main .main-cont .cont-pic {
  width: 100%;
  height: 3.4rem;
  background: #fff;
  overflow: hidden;
}
.product-pupop .pupop-main .main-cont .cont-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.product-pupop .pupop-main .main-cont .cont-cent {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
}
.product-pupop .pupop-main .main-cont .cont-cent .cent-English {
  font-size: var(--fs24);
  text-transform: uppercase;
  color: #666;
}
.product-pupop .pupop-main .main-cont .cont-cent .cent-title {
  margin-top: 0.05rem;
  font-size: var(--fs24);
  color: #666;
}
.product-pupop .pupop-main .main-cont .cont-cent .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #666;
}
.product-pupop .pupop-hide {
  position: absolute;
  top: 0.23rem;
  right: 0.3rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #8dc900 url(../images/icon/icon-hidde.png) no-repeat center center;
  background-size: 0.2rem;
  cursor: pointer;
}
