.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: auto;
  padding: 0 1rem;
  background: #fff;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
  z-index: 59;
}
nav .nav-main .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 1rem;
  z-index: 9;
}
nav .nav-main .main-cont .main-logo {
  position: relative;
  width: 5.25rem;
  height: 0.6rem;
}
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-logo .img2 {
  opacity: 0;
}
nav .nav-main .main-cont .main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
}
nav .nav-main .main-cont .main-nav .nav-cont {
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: 100%;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 0.42rem;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
  font-size: var(--fs18);
  text-align: center;
  color: #333333;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -5px;
  border: solid 2px #ca3526;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link-active {
  font-weight: bold;
  color: #ca3526;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-link-active::after {
  bottom: 0.15rem;
  opacity: 1;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 1.8rem;
  height: auto;
  padding: 0.1rem 0;
  margin-left: -0.9rem;
  background: #f8f8f8;
  border-top: solid 5px #ca3526;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 29;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list a {
  display: none;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.15rem 0;
  font-size: var(--fs16);
  text-align: center;
  color: #333;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list a span {
  position: relative;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list a span::after {
  content: '';
  position: absolute;
  bottom: -0.04rem;
  left: 0;
  width: 0;
  height: 1px;
  background: #ca3526;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list a:hover {
  color: #ca3526;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li .li-list a:hover span::after {
  width: 100%;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-link {
  font-weight: bold;
  color: #ca3526 !important;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-link::after {
  bottom: 0.15rem;
  opacity: 1;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-nav .nav-cont .nav-li:hover .li-list a {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
nav .nav-main .main-cont .main-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 100%;
  margin-left: 0.3rem;
}
nav .nav-main .main-cont .main-right .right-serach {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.22rem;
  height: 100%;
  margin-left: 0.3rem;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-serach span {
  width: 100%;
  height: 100%;
  background: url(../images/icon/icon-search.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang {
  display: flex;
  align-items: center;
  position: relative;
  width: auto;
  height: 100%;
  cursor: pointer;
}
nav .nav-main .main-cont .main-right .right-lang .lang-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 0.4rem;
  border-radius: 0.45rem;
}
nav .nav-main .main-cont .main-right .right-lang .lang-flag {
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  background: url(../images/icon/icon-lang.png) no-repeat center center;
  background-size: 100%;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-title {
  width: auto;
  margin: 0;
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs16);
  text-transform: uppercase;
  color: #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-right .right-lang .lang-arrow {
  width: 11px;
  height: 9px;
  background: url(../images/icon/icon-lang-arrow.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 1.5rem;
  height: auto;
  padding: 0.15rem 0;
  margin-left: -0.75rem;
  box-shadow: 0px 0px 27px 0px rgba(64, 64, 64, 0.1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 9;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  transform: translatey(-105%);
  -o-transform: translatey(-105%);
  -moz-transform: translatey(-105%);
  -webkit-transform: translatey(-105%);
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list .list-link {
  display: none;
  position: relative;
  width: 100%;
  padding: 0.06rem 0.2rem;
  font-size: var(--fs14);
  line-height: 0.26rem;
  text-align: center;
  color: #333;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .nav-main .main-cont .main-right .right-lang .lang-list .list-link:hover {
  color: #ca3526;
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-arrow {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list {
  opacity: 1;
  visibility: visible;
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list::before {
  transform: translatey(0);
  -o-transform: translatey(0);
  -moz-transform: translatey(0);
  -webkit-transform: translatey(0);
}
nav .nav-main .main-cont .main-right .right-lang:hover .lang-list .list-link {
  display: block;
  animation: navInUp50 0.6s ease;
  animation-fill-mode: forwards;
}
nav .nav-main .main-cont .main-right .right-menu {
  display: none;
}
nav .Whead-search {
  display: none;
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  height: 2rem;
  background: #fff;
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  z-index: 999;
  overflow: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .Whead-search .hide-pic {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  width: 0.2rem;
  height: 0.2rem;
  margin-left: -0.1rem;
  background: url(../images/icon/icon-close.png) no-repeat center center;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .Whead-search .hide-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
nav .Whead-search .hide-pic:hover {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
nav .Whead-search .search-input {
  position: absolute;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 5rem;
}
nav .Whead-search .search-input .input-box {
  flex: 1;
}
nav .Whead-search .search-input .input-box input {
  width: 100%;
  height: 0.5rem;
  padding: 0.08rem 0;
  font-family: 'Arial';
  font-size: 0.16rem;
  color: #444;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid #ccc;
}
nav .Whead-search .search-input .input-box input::-webkit-input-placeholder {
  font-family: 'Arial';
  color: #444;
}
nav .Whead-search .search-input .input-box input:-moz-placeholder {
  font-family: 'Arial';
  color: #444;
}
nav .Whead-search .search-input .input-box input:-ms-input-placeholder {
  font-family: 'Arial';
  color: #444;
}
nav .Whead-search .search-input .input-icon {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 0.2rem;
  background: url(../images/icon/icon-search-on.png) no-repeat center center;
  background-size: 100%;
}
nav .Whead-search .search-input .input-icon img {
  width: 100%;
}
nav .sidebar-mask,
nav .Whead-sidebar,
nav .head-Wnav,
nav .cont-web-suosou,
nav .cont-web-caidan {
  display: none;
}
header {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 1rem !important;
  z-index: 19;
}
header .head-banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
header .head-banner .swiper-slide {
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
header .head-banner .swiper-slide .slide-box .slide-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .head-banner .swiper-slide .slide-box .slide-pic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .head-banner .swiper-slide .slide-box .slide-pic img {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .head-banner .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  transition: all 1.4s 0.5s;
  -o-transition: all 1.4s 0.5s;
  -moz-transition: all 1.4s 0.5s;
  -webkit-transition: all 1.4s 0.5s;
}
header .head-banner .swiper-slide .slide-box .box-web-pic {
  display: none;
}
header .head-banner .swiper-slide .slide-box .box-cent {
  position: absolute;
  top: 32%;
  left: 50%;
  width: 15.38rem;
  height: auto;
  z-index: 9;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-title {
  font-size: 0.48rem;
  font-weight: 100;
  line-height: 0.72rem;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.6s;
  -o-transition: all 0.5s 0.6s;
  -moz-transition: all 0.5s 0.6s;
  -webkit-transition: all 0.5s 0.6s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-title2 {
  font-size: 0.48rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.6s;
  -o-transition: all 0.5s 0.6s;
  -moz-transition: all 0.5s 0.6s;
  -webkit-transition: all 0.5s 0.6s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-title3 {
  font-size: 0.48rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  background: linear-gradient(180deg, #fff 55%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.6s;
  -o-transition: all 0.5s 0.6s;
  -moz-transition: all 0.5s 0.6s;
  -webkit-transition: all 0.5s 0.6s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-subtitle {
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 0.72rem;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.8s;
  -o-transition: all 0.5s 0.8s;
  -moz-transition: all 0.5s 0.8s;
  -webkit-transition: all 0.5s 0.8s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-English {
  width: 100%;
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 1s;
  -o-transition: all 0.5s 1s;
  -moz-transition: all 0.5s 1s;
  -webkit-transition: all 0.5s 1s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-English2 {
  width: 100%;
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.8s;
  -o-transition: all 0.5s 0.8s;
  -moz-transition: all 0.5s 0.8s;
  -webkit-transition: all 0.5s 0.8s;
}
header .head-banner .swiper-slide .slide-box .box-cent .cent-text {
  margin-top: 0.35rem;
  font-size: var(--fs30);
  font-weight: 100;
  text-align: center;
  letter-spacing: 0.05rem;
  color: #fff;
  opacity: 0;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
  transition: all 0.5s 0.8s;
  -o-transition: all 0.5s 0.8s;
  -moz-transition: all 0.5s 0.8s;
  -webkit-transition: all 0.5s 0.8s;
}
header .head-banner .swiper-pagination {
  bottom: 0.6rem;
  left: 50%;
  width: 15.36rem;
  text-align: center;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
header .head-banner .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0 18px;
  background: #fff;
  opacity: 0.8;
  border-radius: 50%;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart .circle-chart {
  width: 30px;
  height: 30px;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart .circle-chart .circle-chart__background {
  opacity: 0;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet .circlechart .circle-chart .circle-chart__circle {
  stroke-dasharray: 182 182;
  stroke-dashoffset: 182;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__background {
  opacity: 0.2 !important;
}
header .head-banner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__circle {
  stroke-dashoffset: 0 !important;
  transition: all 11s;
  -o-transition: all 11s;
  -moz-transition: all 11s;
  -webkit-transition: all 11s;
}
header .head-banner .swiper-slide-active .box-cent .cent-title,
header .head-banner .swiper-slide-active .box-cent .cent-text,
header .head-banner .swiper-slide-active .box-cent .cent-subtitle,
header .head-banner .swiper-slide-active .box-cent .cent-heng,
header .head-banner .swiper-slide-active .box-cent .cent-title2,
header .head-banner .swiper-slide-active .box-cent .cent-subtitle2,
header .head-banner .swiper-slide-active .box-cent .cent-title3,
header .head-banner .swiper-slide-active .box-cent .cent-English,
header .head-banner .swiper-slide-active .box-cent .cent-English2 {
  opacity: 1 !important;
  transform: translatey(0) !important;
  -o-transform: translatey(0) !important;
  -moz-transform: translatey(0) !important;
  -webkit-transform: translatey(0) !important;
}
header .head-banner .banner-pic {
  width: 100%;
  height: auto;
  background-position: left 1rem;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
  overflow: hidden;
}
header .head-banner .banner-pic img {
  width: 100%;
  opacity: 0;
}
header .head-banner .banner-pic video {
  width: 100%;
}
header .head-banner .banner-pic .videoGif {
  display: none;
}
header .head-banner .banner-video {
  width: 100%;
  height: auto;
}
header .head-banner .banner-video video {
  width: 100%;
}
header .head-banner .banner-gif {
  display: none;
}
header .head-banner .video-pic {
  display: none;
}
header .head-banner .banner-cent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.36rem;
  height: auto;
  z-index: 9;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
header .head-banner .banner-cent .cent-title {
  font-size: 0.72rem;
  font-weight: bold;
  color: #fff;
}
header .head-banner .banner-cent .cent-English {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs16);
  text-transform: uppercase;
  color: #fff;
}
header .head-banner .banner-cent .cent-heng {
  width: 0.33rem;
  height: 2px;
  margin-top: 0.45rem;
  background: #fff;
}
header .head-banner .banner-cent2 {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 15.36rem;
  height: auto;
  z-index: 9;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
header .head-banner .banner-cent2 .cent-title {
  font-size: 0.84rem;
  font-weight: bold;
  text-align: center;
  color: #ca3526;
}
header .head-banner .banner-cent2 .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs30);
  text-align: center;
  color: #ca3526;
}
header .head-banner .banner-swiper-button-prev,
header .head-banner .banner-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.18rem;
  height: 0.34rem;
  margin-top: -0.09rem;
  opacity: 0.6;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .head-banner .banner-swiper-button-prev img,
header .head-banner .banner-swiper-button-next img {
  width: 100%;
}
header .head-banner .banner-swiper-button-prev:hover,
header .head-banner .banner-swiper-button-next:hover {
  opacity: 1;
}
header .head-banner .banner-swiper-button-prev {
  left: 0.5rem;
}
header .head-banner .banner-swiper-button-next {
  right: 0.5rem;
}
header .head-banner .banner-play {
  display: none;
}
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.15rem 0 0.65rem !important;
  background: url(../images/foot-bg2.jpg) no-repeat top left;
  background-size: cover;
}
footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  margin-top: -0.1rem;
  background: url(../images/foot-bg.png) no-repeat top left;
  background-size: 100%;
}
footer .foot-main .main-cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
footer .foot-main .main-cont .cont-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: auto;
}
footer .foot-main .main-cont .cont-nav .nav-item {
  width: 2rem;
  height: auto;
  padding-right: 0.2rem;
}
footer .foot-main .main-cont .cont-nav .nav-item:last-of-type {
  width: auto;
  padding-right: 0;
}
footer .foot-main .main-cont .cont-nav .nav-item .item-title {
  display: block;
  font-size: var(--fs18);
  font-weight: bold;
  color: #fff;
}
footer .foot-main .main-cont .cont-nav .nav-item .item-title:hover {
  color: #ca3526;
}
footer .foot-main .main-cont .cont-nav .nav-item .item-cent {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
footer .foot-main .main-cont .cont-nav .nav-item .item-cent a {
  display: block;
  width: 100%;
  margin-bottom: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.22rem;
  color: rgba(255, 255, 255, 0.6);
}
footer .foot-main .main-cont .cont-nav .nav-item .item-cent a span {
  position: relative;
}
footer .foot-main .main-cont .cont-nav .nav-item .item-cent a span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
footer .foot-main .main-cont .cont-nav .nav-item .item-cent a:hover {
  color: #fff;
}
footer .foot-main .main-cont .cont-nav .nav-item .item-cent a:hover span::after {
  left: 0;
  width: 100%;
}
footer .foot-main .main-cont .cont-cent {
  width: auto;
}
footer .foot-main .main-cont .cont-cent .cent-top {
  width: 100%;
  height: auto;
}
footer .foot-main .main-cont .cont-cent .cent-top .top-title {
  font-size: var(--fs18);
  color: #fff;
}
footer .foot-main .main-cont .cont-cent .cent-top .top-tel {
  margin-top: 0.05rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs40);
  color: #fff;
}
footer .foot-main .main-cont .cont-cent .cent-ewm {
  width: 1.4rem;
  height: auto;
  margin-top: 0.2rem;
}
footer .foot-main .main-cont .cont-cent .cent-ewm img {
  width: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
footer .foot-main .main-cont .cont-cent .cent-share {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item {
  position: relative;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.3rem;
  border-radius: 50%;
  background: #fff;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item:first-of-type {
  margin-left: 0;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item .img2 {
  opacity: 0;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item:hover {
  background: linear-gradient(90deg, #ca3526, #f03625);
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item:hover .img1 {
  opacity: 0;
}
footer .foot-main .main-cont .cont-cent .cent-share .share-item:hover .img2 {
  opacity: 1;
}
footer .foot-main .main-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
}
footer .foot-main .main-bottom .bottom-link {
  font-size: var(--fs16);
  color: #989898;
}
footer .foot-main .main-bottom .bottom-link a {
  color: #989898;
}
footer .foot-main .main-bottom .bottom-link a:hover {
  color: #fff;
}
footer .foot-main .main-bottom .bottom-link span {
  margin: 0 0.3rem;
}
footer .foot-main .main-bottom .bottom-zhizi {
  font-size: var(--fs16);
  color: #989898;
}
footer .foot-main .main-bottom .bottom-zhizi a {
  color: #989898;
}
footer .foot-main .main-bottom .bottom-zhizi a:hover {
  color: #fff;
}
.index-mask {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.index-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(5, 5) translateZ(0);
  -o-transform: scale(5, 5) translateZ(0);
  -moz-transform: scale(5, 5) translateZ(0);
  -webkit-transform: scale(5, 5) translateZ(0);
}
.index-mask .mask-cent {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  width: 100%;
  opacity: 0;
}
.index-mask .mask-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  text-align: center;
  color: #333;
}
.index-mask .mask-cent .cent-text {
  margin-top: 0.15rem;
  font-size: var(--fs30);
  text-align: center;
  color: #666;
}
.index-box {
  width: 100%;
  height: 19.2rem;
}
.index-plate1 {
  position: relative;
  width: 100%;
  height: 200vh;
  overflow: visible;
}
.index-plate1 .plate1-pic {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.8;
}
.index-plate1 .plate1-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-plate1 .plate1-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index-plate1 .plate1-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(10, 10) translateZ(0);
  -o-transform: scale(10, 10) translateZ(0);
  -moz-transform: scale(10, 10) translateZ(0);
  -webkit-transform: scale(10, 10) translateZ(0);
}
.index-plate1 .plate1-mask .mask-cent {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  width: 100%;
  opacity: 0;
}
.index-plate1 .plate1-mask .mask-cent .cent-title {
  font-size: var(--fs48);
  font-weight: bold;
  text-align: center;
  color: #333;
}
.index-plate1 .plate1-mask .mask-cent .cent-text {
  margin-top: 0.15rem;
  font-size: var(--fs30);
  text-align: center;
  color: #666;
}
.index-plate2 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.6rem;
  background: url(../images/plate2-bg.jpg) no-repeat bottom left;
  background-size: cover;
}
.index-plate2 .plate2-main {
  display: flex;
  justify-content: space-between;
}
.index-plate2 .plate2-main .main-cent {
  position: relative;
  width: 6.4rem;
  height: auto;
}
.index-plate2 .plate2-main .main-cent .cent-title {
  margin-top: 0.4rem;
  font-size: var(--fs40);
  font-weight: bold;
  color: #000;
}
.index-plate2 .plate2-main .main-cent .cent-text {
  margin-top: 0.35rem;
  font-size: var(--fs18);
  font-weight: 100;
  line-height: 0.34rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.index-plate2 .plate2-main .main-cent .page-button {
  margin-top: 0.5rem;
}
.index-plate2 .plate2-main .main-pic {
  width: 7.68rem;
  height: auto;
  border-top-left-radius: 1.5rem;
  overflow: hidden;
}
.index-plate2 .plate2-main .main-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;
}
.index-plate2 .plate2-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.index-plate2 .plate2-data {
  display: flex;
  justify-content: space-between;
  margin-top: 1.05rem;
}
.index-plate2 .plate2-data .data-item {
  width: calc(100% / 5);
  height: auto;
}
.index-plate2 .plate2-data .data-item:last-of-type {
  width: auto;
}
.index-plate2 .plate2-data .data-item .item-title {
  font-size: var(--fs16);
  font-weight: 100;
  color: #666;
}
.index-plate2 .plate2-data .data-item .item-title span {
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: 0.6rem;
  background: linear-gradient(90deg, #ca3526, #f03625);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.index-plate2 .plate2-data .data-item .item-title em {
  display: inline-block;
  margin-left: 0.1rem;
}
.index-plate2 .plate2-data .data-item .item-title .jia {
  position: relative;
}
.index-plate2 .plate2-data .data-item .item-title .jia::after {
  content: '+';
  position: absolute;
  top: -0.35rem;
  left: 0;
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: var(--fs24);
  color: #ca3526;
}
.index-plate2 .plate2-data .data-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  font-weight: 100;
  color: #666;
}
.index-plate3 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.index-plate3 .plate3-video {
  width: 100%;
  height: auto;
  background: #000;
  overflow: hidden;
}
.index-plate3 .plate3-video video {
  display: block;
  width: 100%;
  background: #fff;
}
.index-plate3 .plate3-video img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate3 .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  margin: -0.31rem 0 0 -0.31rem;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate3 .video-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  margin: -0.31rem 0 0 -0.31rem;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: mapAddress3 5s linear infinite;
}
.index-plate3 .video-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  margin: -0.31rem 0 0 -0.31rem;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: mapAddress3 5s 2.5s linear infinite;
}
.index-plate3 .video-play img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate3 .video-play:hover img {
  transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.index-plate4 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 0;
}
.index-plate4 .plate4-top .page-title {
  text-align: center;
}
.index-plate4 .plate4-top .page-heng {
  margin: 0.2rem auto 0;
}
.index-plate4 .plate4-swiper {
  width: 110%;
  height: auto;
  margin-top: 0.6rem;
  margin-left: -5%;
}
.index-plate4 .plate4-swiper .swiper-slide {
  flex: 1 0 0.35rem;
  position: relative;
  width: 3.65rem;
  height: 7.05rem;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  will-change: transform;
  transform: skew(-10.15deg, 0);
  -o-transform: skew(-10.15deg, 0);
  -moz-transform: skew(-10.15deg, 0);
  -webkit-transform: skew(-10.15deg, 0);
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont {
  position: relative;
  width: 100%;
  height: 100%;
  transform: skew(10.15deg, 0);
  -o-transform: skew(10.15deg, 0);
  -moz-transform: skew(10.15deg, 0);
  -webkit-transform: skew(10.15deg, 0);
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-pic {
  position: absolute;
  top: 0;
  left: 50%;
  width: 11rem;
  height: 7.05rem;
  margin-left: -5.5rem;
  background: #000;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-lump {
  position: absolute;
  top: 0;
  left: 0;
  width: 11rem;
  height: 100%;
  padding: 1.2rem 0 0 1.2rem;
  background: linear-gradient(180deg, #f4f4f4, transparent 65%);
  z-index: 2;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-lump .lump-icon {
  display: none;
  position: relative;
  width: 0.53rem;
  height: auto;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-lump .lump-icon img {
  width: 100%;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-lump .lump-title {
  margin-top: 0.3rem;
  font-size: var(--fs36);
  color: #333;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-lump .lump-button {
  width: 0.36rem;
  height: 0.36rem;
  margin-top: 0.3rem;
  border-radius: 50%;
  border: solid 2px #000;
  background: url(../images/icon/icon-arrow2.png) no-repeat center center;
  background-size: 8px;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 11rem;
  height: 100%;
  padding: 1.25rem 0 0 2.4rem;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-icon {
  display: none;
  position: relative;
  width: 0.53rem;
  height: auto;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-icon img {
  width: 100%;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-title {
  margin-top: 0.25rem;
  font-size: var(--fs40);
  color: #fff;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-text {
  width: 4.15rem;
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-button {
  width: 0.48rem;
  height: 0.35rem;
  margin-top: 0.5rem;
  border-top-left-radius: 0.16rem;
  border-bottom-right-radius: 0.15rem;
  background: #fff url(../images/icon/icon-arrow3.png) no-repeat center center;
  background-size: 6px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate4 .plate4-swiper .swiper-slide .slide-box .box-cont .cont-cent .cent-button:hover {
  width: 0.68rem;
}
.index-plate4 .plate4-swiper .swiper-slide:hover {
  flex: 1 0 5rem;
}
.index-plate4 .plate4-swiper .swiper-slide:hover .slide-box .box-cont .cont-lump {
  opacity: 0;
}
.index-plate4 .plate4-swiper .swiper-slide:hover .slide-box .box-cont .cont-cent {
  opacity: 1;
}
.index-plate5 {
  width: 100%;
  height: auto;
  padding: 1.25rem 0 1.3rem;
  background: url(../images/plate5-bg.jpg) no-repeat top left;
  background-size: cover;
}
.index-plate5 .plate5-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-plate5 .plate5-top .top-cent {
  width: auto;
  height: auto;
}
.index-plate5 .plate5-main {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.index-plate5 .plate5-main .main-box {
  display: flex;
  justify-content: space-between;
  width: 9.34rem;
}
.index-plate5 .plate5-main .main-box .box-item {
  width: calc(100% / 2 - 0.07rem);
  height: auto;
  background: #fff;
}
.index-plate5 .plate5-main .main-box .box-item .item-pic {
  width: 100%;
  height: 3rem;
  overflow: hidden;
}
.index-plate5 .plate5-main .main-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate5 .plate5-main .main-box .box-item .item-cent {
  position: relative;
  width: 100%;
  height: 3rem;
  padding: 0.55rem 0.5rem 0.5rem;
  background: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate5 .plate5-main .main-box .box-item .item-cent::after {
  content: '';
  position: absolute;
  bottom: 0.05rem;
  right: 0.05rem;
  width: 2.7rem;
  height: 1.04rem;
  background: url(../images/plate5-bg2.png) no-repeat top left;
  background-size: 100%;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate5 .plate5-main .main-box .box-item .item-cent .cent-time {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs18);
  color: rgba(51, 51, 51, 0.3);
}
.index-plate5 .plate5-main .main-box .box-item .item-cent .cent-title {
  height: 0.8rem;
  margin-top: 0.1rem;
  font-size: var(--fs28);
  line-height: 0.4rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate5 .plate5-main .main-box .box-item .item-cent .cent-button {
  width: 0.48rem;
  height: 0.35rem;
  margin-top: 0.35rem;
  border-radius: 0.45rem;
  border: solid 2px #ed6d1e;
  background: #fff url(../images/icon/icon-arrow3.png) no-repeat center center;
  background-size: 6px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate5 .plate5-main .main-box .box-item .item-cent .cent-button:hover {
  width: 0.6rem;
}
.index-plate5 .plate5-main .main-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.index-plate5 .plate5-main .main-box .box-item:hover .item-cent {
  background: linear-gradient(90deg, #ca3526, #f03625);
}
.index-plate5 .plate5-main .main-box .box-item:hover .item-cent::after {
  opacity: 1;
}
.index-plate5 .plate5-main .main-box .box-item:hover .item-cent .cent-time {
  color: rgba(255, 255, 255, 0.3);
}
.index-plate5 .plate5-main .main-box .box-item:hover .item-cent .cent-title {
  color: #fff;
}
.index-plate5 .plate5-main .main-box .box-item:hover .item-cent .cent-button {
  border: solid 2px #fff;
}
.index-plate5 .plate5-main .main-lump {
  width: 5.9rem;
  height: auto;
  padding: 0.6rem 0.55rem 0;
  background: #fff;
}
.index-plate5 .plate5-main .main-lump .lump-top {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  border-bottom: solid 1px #e5e5e5;
}
.index-plate5 .plate5-main .main-lump .lump-top .top-time {
  font-family: 'MONTSERRAT-MEDIUM';
  font-size: var(--fs18);
  color: rgba(51, 51, 51, 0.3);
}
.index-plate5 .plate5-main .main-lump .lump-top .top-title {
  margin-top: 0.1rem;
  font-size: var(--fs30);
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.index-plate5 .plate5-main .main-lump .lump-top .top-text {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.index-plate5 .plate5-main .main-lump .lump-top:hover .top-title {
  color: #ed6d1e;
}
.index-plate5 .plate5-main .main-lump .lump-cent {
  width: 100%;
  height: auto;
}
.index-plate5 .plate5-main .main-lump .lump-cent .cent-item {
  display: block;
  width: 100%;
  font-size: var(--fs16);
  line-height: 0.48rem;
  color: #555;
  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;
}
.index-plate5 .plate5-main .main-lump .lump-cent .cent-item:hover {
  color: #ca3526;
}
.about-plate1 {
  width: 100%;
  height: auto;
  padding: 1.05rem 0 2.05rem;
  background: url(../images/about-bg.jpg) no-repeat bottom left;
  background-size: 100%;
}
.about-plate1 .plate1-main .page-title {
  text-align: center;
}
.about-plate1 .plate1-main .main-subTitle {
  margin-top: 0.05rem;
  font-size: var(--fs24);
  text-align: center;
  color: #666;
}
.about-plate1 .plate1-main .page-heng {
  margin: 0.25rem auto 0;
}
.about-plate1 .plate1-main .main-text {
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.34rem;
  color: #666;
}
.about-plate1 .plate1-main .main-data {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.about-plate1 .plate1-main .main-data .data-item {
  width: calc(100% / 5);
  height: auto;
}
.about-plate1 .plate1-main .main-data .data-item:last-of-type {
  width: auto;
}
.about-plate1 .plate1-main .main-data .data-item .item-title {
  font-size: var(--fs16);
  font-weight: 100;
  color: #666;
}
.about-plate1 .plate1-main .main-data .data-item .item-title span {
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: 0.6rem;
  background: linear-gradient(90deg, #ca3526, #f03625);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-plate1 .plate1-main .main-data .data-item .item-title em {
  display: inline-block;
  margin-left: 0.1rem;
}
.about-plate1 .plate1-main .main-data .data-item .item-title .jia {
  position: relative;
}
.about-plate1 .plate1-main .main-data .data-item .item-title .jia::after {
  content: '+';
  position: absolute;
  top: -0.35rem;
  left: 0;
  font-family: 'MONTSERRAT-SEMI-BOLD';
  font-size: var(--fs24);
  color: #ca3526;
}
.about-plate1 .plate1-main .main-data .data-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  font-weight: 100;
  color: #666;
}
.about-plate2 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
  background: url(../images/about-plate2-bg.jpg) no-repeat top left;
  background-size: cover;
}
.about-plate2 .plate2-main .page-title {
  text-align: center;
}
.about-plate2 .plate2-main .page-heng {
  margin: 0.25rem auto 0;
}
.about-plate2 .plate2-main .main-box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  overflow: auto;
}
.about-plate2 .plate2-main .main-box img {
  width: 100%;
}
.about-plate3 {
  width: 100%;
  height: auto;
  padding-top: 1.15rem;
}
.about-plate3 .plate3-head .page-title {
  text-align: center;
}
.about-plate3 .plate3-head .page-heng {
  margin: 0.25rem auto 0;
}
.about-plate3 .plate3-top {
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
  border-bottom: solid 3px #ededed;
}
.about-plate3 .plate3-top .top-swiper {
  overflow: hidden;
}
.about-plate3 .plate3-top .top-swiper .swiper-slide {
  width: calc(100% / 4);
  height: auto;
}
.about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  padding-bottom: 0.15rem;
  cursor: pointer;
}
.about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ca3526;
  z-index: 9;
  transform: scale(0, 0) translateZ(0);
  -o-transform: scale(0, 0) translateZ(0);
  -moz-transform: scale(0, 0) translateZ(0);
  -webkit-transform: scale(0, 0) translateZ(0);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box .box-title {
  font-size: var(--fs22);
  text-align: center;
  color: #545454;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate3 .plate3-top .top-swiper .swiper-slide .slide-box .box-time {
  margin-top: 0.15rem;
  font-size: var(--fs18);
  font-weight: 100;
  text-align: center;
  color: #545454;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate3 .plate3-top .top-swiper .swiper-slide-on .slide-box::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);
}
.about-plate3 .plate3-top .top-swiper .swiper-slide-on .slide-box .box-title {
  font-weight: bold;
  color: #ca3526;
}
.about-plate3 .plate3-top .top-swiper .swiper-slide-on .slide-box .box-time {
  color: #ca3526;
}
.about-plate3 .plate3-main {
  width: 100%;
  height: auto;
  padding: 0.7rem 0 1.2rem;
  background: url(../images/about-plate3-bg.jpg) no-repeat top left;
  background-size: cover;
}
.about-plate3 .plate3-main .main-wrap {
  position: relative;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .cont-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .cont-swiper .swiper-slide {
  width: calc(100% / 4 - 0.21rem);
  height: auto;
  margin-right: 0.28rem;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .cont-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .cont-swiper .swiper-slide .slide-box {
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.28rem 1.15rem;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: solid 2px #ca3526;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .cont-swiper .swiper-slide .slide-box .box-title {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .cont-swiper .swiper-slide .slide-box .box-title span {
  background: linear-gradient(90deg, #ca3526, #f03625);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .cont-swiper .swiper-slide .slide-box .box-text {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-prev,
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-prev img,
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-next img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-prev .img2,
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-next .img2 {
  opacity: 0;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-prev:hover .img1,
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-next:hover .img1 {
  opacity: 0;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-prev:hover .img2,
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-next:hover .img2 {
  opacity: 1;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-prev {
  left: -1rem;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont .plate3-swiper-button-next {
  right: -1rem;
}
.about-plate3 .plate3-main .main-wrap .wrap-cont-on {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}
.about-plate4 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 0;
}
.about-plate4 .plate4-top .page-title {
  text-align: center;
}
.about-plate4 .plate4-top .page-heng {
  margin: 0.25rem auto 0;
}
.about-plate4 .plate4-main {
  width: 100%;
  height: 6.7rem;
  margin-top: 0.6rem;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.about-plate4 .plate4-main .main-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-plate4 .plate4-main .main-swiper .swiper-slide {
  width: calc(100% / 5);
  height: 100%;
}
.about-plate4 .plate4-main .main-swiper .swiper-slide:last-of-type .slide-box {
  border-right: none;
}
.about-plate4 .plate4-main .main-swiper .swiper-slide .slide-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 0.6rem 0.55rem;
  border-right: solid 1px rgba(255, 255, 255, 0.2);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate4 .plate4-main .main-swiper .swiper-slide .slide-box .box-title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #fff;
}
.about-plate4 .plate4-main .main-swiper .swiper-slide .slide-box .box-text {
  display: none;
  margin-top: 0.2rem;
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
}
.about-plate4 .plate4-main .main-swiper .swiper-slide .slide-box:hover {
  background: rgba(0, 0, 0, 0.1);
  border-right: solid 1px rgba(255, 255, 255, 0);
  backdrop-filter: blur(5px);
}
.about-plate4 .plate4-main .main-swiper .swiper-slide .slide-box:hover .box-text {
  display: block;
}
.about-plate5 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.about-plate5 .plate5-top .page-title {
  text-align: center;
}
.about-plate5 .plate5-top .page-heng {
  margin: 0.25rem auto 0;
}
.about-plate5 .plate5-main {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.about-plate5 .plate5-main::after {
  content: '';
  position: absolute;
  top: 2.48rem;
  left: 9vw;
  width: 17.45rem;
  height: 0.91rem;
  background: url(../images/about-plate5-bg.png) no-repeat top left;
  background-size: 100%;
}
.about-plate5 .plate5-main .main-left {
  width: 10vw;
}
.about-plate5 .plate5-main .main-swiper {
  position: relative;
  width: 90vw;
  height: auto;
  overflow: hidden;
}
.about-plate5 .plate5-main .main-swiper .swiper-slide {
  width: 3.36rem;
  height: auto;
  margin-right: 0.56rem;
}
.about-plate5 .plate5-main .main-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.about-plate5 .plate5-main .main-swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: auto;
}
.about-plate5 .plate5-main .main-swiper .swiper-slide .slide-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: -0.2rem;
  width: 2.57rem;
  height: 2.47rem;
  background: url(../images/about-plate5-bg2.png) no-repeat bottom right;
  background-size: 100%;
}
.about-plate5 .plate5-main .main-swiper .swiper-slide .slide-box .box-pic {
  position: relative;
  width: 100%;
  height: 2.48rem;
  overflow: hidden;
  z-index: 9;
}
.about-plate5 .plate5-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;
}
.about-plate5 .plate5-main .main-swiper .swiper-slide .slide-box .box-title {
  margin-top: 0.4rem;
  font-size: var(--fs20);
  text-align: center;
  color: #666;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate5 .plate5-main .main-swiper .swiper-slide .slide-box:hover .box-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.about-plate5 .plate5-main .main-swiper .swiper-slide .slide-box:hover .box-title {
  color: #ca3526;
}
.about-plate5 .plate5-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
}
.about-plate5 .plate5-cont .cont-button {
  display: flex;
  justify-content: space-between;
  width: 1.6rem;
  height: auto;
}
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-prev,
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-next {
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-prev img,
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-next img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-prev .img2,
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-next .img2 {
  opacity: 0;
}
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-prev:hover .img1,
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-next:hover .img1 {
  opacity: 0;
}
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-prev:hover .img2,
.about-plate5 .plate5-cont .cont-button .plate5-swiper-button-next:hover .img2 {
  opacity: 1;
}
.about-plate5 .plate5-cont .swiper-pagination {
  position: relative;
  width: calc(100% - 2rem);
  height: 2px;
  background: #cdd1d4;
}
.about-plate5 .plate5-cont .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #ca3526;
}
.news-plate1 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.1rem;
}
.news-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.news-plate1 .plate1-main .main-pic {
  width: 50%;
  height: 4.8rem;
  overflow: hidden;
}
.news-plate1 .plate1-main .main-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-plate1 .plate1-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0.8rem 1rem 0;
  background: url(../images/news-bg.jpg) no-repeat bottom left;
  background-size: cover;
}
.news-plate1 .plate1-main .main-cent .cent-time {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs30);
  color: rgba(0, 0, 0, 0.25);
}
.news-plate1 .plate1-main .main-cent .cent-title {
  margin-top: 0.2rem;
  font-size: var(--fs28);
  font-weight: bold;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-plate1 .plate1-main .main-cent .cent-button {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #ca3526, #f03625);
  opacity: 0.8;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news-plate1 .plate1-main .main-cent .cent-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 0.18rem;
}
.news-plate1 .plate1-main .main-cent .cent-button:hover {
  width: 0.8rem;
  border-radius: 0.45rem;
  opacity: 1;
}
.news-plate1 .plate1-main:hover .main-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.news-plate1 .plate1-main:hover .main-cent .cent-title {
  color: #ca3526;
}
.news-plate2 {
  width: 100%;
  height: auto;
  padding: 1.05rem 0 1.2rem;
  background: #f8f8f8;
}
.news-plate2 .plate2-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.1rem;
}
.news-plate2 .plate2-main .main-item {
  width: calc(100% / 3 - 0.3734rem);
  height: auto;
  margin-right: 0.56rem;
  margin-bottom: 0.7rem;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.news-plate2 .plate2-main .main-item:nth-child(3n) {
  margin-right: 0;
}
.news-plate2 .plate2-main .main-item .item-pic {
  width: 100%;
  height: 3.1rem;
  overflow: hidden;
}
.news-plate2 .plate2-main .main-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news-plate2 .plate2-main .main-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.45rem;
  background: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news-plate2 .plate2-main .main-item .item-cent .cent-time {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs20);
  color: rgba(153, 153, 153, 0.6);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.news-plate2 .plate2-main .main-item .item-cent .cent-title {
  height: 0.72rem;
  margin-top: 0.2rem;
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #333333;
  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-plate2 .plate2-main .main-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.news-plate2 .plate2-main .main-item:hover .item-cent {
  background: linear-gradient(90deg, #ca3526, #f03625);
}
.news-plate2 .plate2-main .main-item:hover .item-cent .cent-time {
  color: rgba(255, 255, 255, 0.6);
}
.news-plate2 .plate2-main .main-item:hover .item-cent .cent-title {
  color: #fff;
}
.newsDetail {
  width: 100%;
  height: auto;
  padding-top: 0.75rem;
  background: #f8f8f8;
}
.newsDetail .newsDetail-top {
  padding-right: 4.5rem;
  background: url(../images/news-d-logo.png) no-repeat 90% center;
  background-size: 2.81rem;
}
.newsDetail .newsDetail-top .top-title {
  font-size: var(--fs30);
  color: #2f2d53;
}
.newsDetail .newsDetail-top .top-cont {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-top: 0.3rem;
}
.newsDetail .newsDetail-top .top-cont .cont-time {
  margin-right: 0.75rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs30);
  color: #ca3526;
}
.newsDetail .newsDetail-top .top-cont .cont-data {
  margin-right: 0.2rem;
  font-size: var(--fs14);
  color: rgba(76, 76, 76, 0.5);
}
.newsDetail .newsDetail-main {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.newsDetail .newsDetail-main .main-cont {
  width: 10.24rem;
  height: auto;
  padding: 0.7rem 0.55rem 1.3rem 0.45rem;
  background: #fff;
}
.newsDetail .newsDetail-main .main-cont .cont-cent {
  width: 100%;
  height: auto;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.newsDetail .newsDetail-main .main-cont .cont-cent img {
  max-width: 100%;
  width: auto;
  height: auto !important;
}
.newsDetail .newsDetail-main .main-cont .cont-cent iframe {
  width: 100%;
  height: auto;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share span {
  margin-right: 0.15rem;
  font-size: var(--fs16);
  color: #333;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share .share-box {
  display: flex;
  justify-content: flex-start;
  width: auto;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share .share-box .share-irem {
  position: relative;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.13rem;
  border: solid 2px #efeff3;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share .share-box .share-irem img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.26rem;
  height: auto;
  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;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share .share-box .share-irem .img2 {
  opacity: 0;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share .share-box .share-irem:hover {
  border: solid 2px #ca3526;
  background: #ca3526;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share .share-box .share-irem:hover .img1 {
  opacity: 0;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-share .share-box .share-irem:hover .img2 {
  opacity: 1;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.9rem;
  height: 0.6rem;
  margin-left: 1.4rem;
  background: #f8f8f8;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-button span {
  margin-right: 0.18rem;
  font-size: var(--fs14);
  font-weight: bold;
  color: #c3c3c3;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-button em {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  border: solid 3px #ca3526;
  background: url(../images/icon/icon-arrow5.png) no-repeat center center;
  background-size: 9px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-button:hover {
  background: #ca3526;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-button:hover span {
  color: #fff;
}
.newsDetail .newsDetail-main .main-cont .cont-bottom .bottom-button:hover em {
  border: solid 3px #fff;
  background: url(../images/icon/icon-arrow6.png) no-repeat center center;
  background-size: 9px;
}
.newsDetail .newsDetail-main .main-list {
  width: 5.12rem;
  height: auto;
  padding: 0.7rem 0.6rem;
  background: #f4f4f4;
}
.newsDetail .newsDetail-main .main-list .list-item {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: solid 3px #e8e8e8;
}
.newsDetail .newsDetail-main .main-list .list-item .item-pic {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.newsDetail .newsDetail-main .main-list .list-item .item-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newsDetail .newsDetail-main .main-list .list-item .item-title {
  margin-top: 0.2rem;
  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;
}
.newsDetail .newsDetail-main .main-list .list-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.newsDetail .newsDetail-main .main-list .list-item .item-time {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #cccccc;
}
.newsDetail .newsDetail-main .main-list .list-box {
  width: 100%;
  height: auto;
}
.newsDetail .newsDetail-main .main-list .list-box a {
  display: block;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsDetail .newsDetail-main .main-list .list-box a:hover {
  color: #ca3526;
}
.newsDetail .newsDetail-main .main-list .list-button {
  display: block;
  width: 1.42rem;
  height: 0.48rem;
  margin-top: 0.4rem;
  font-size: var(--fs14);
  text-align: center;
  line-height: 0.48rem;
  color: #fff;
  border-bottom-right-radius: 0.2rem;
  border-top-left-radius: 0.2rem;
  background: #ca3526;
}
.newsDetail .newsDetail-main .main-list .list-button:hover {
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.activity-plate1 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 1.1rem;
}
.activity-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.activity-plate1 .plate1-main .main-pic {
  width: 50%;
  height: 4.8rem;
  overflow: hidden;
}
.activity-plate1 .plate1-main .main-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;
}
.activity-plate1 .plate1-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0.8rem 1rem 0;
  background: url(../images/news-bg.jpg) no-repeat bottom left;
  background-size: cover;
}
.activity-plate1 .plate1-main .main-cent .cent-time {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs30);
  color: rgba(0, 0, 0, 0.25);
}
.activity-plate1 .plate1-main .main-cent .cent-title {
  margin-top: 0.2rem;
  font-size: var(--fs28);
  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;
}
.activity-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.activity-plate1 .plate1-main .main-cent .cent-button {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #ca3526, #f03625);
  opacity: 0.8;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.activity-plate1 .plate1-main .main-cent .cent-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 0.18rem;
}
.activity-plate1 .plate1-main .main-cent .cent-button:hover {
  width: 0.8rem;
  border-radius: 0.45rem;
  opacity: 1;
}
.activity-plate1 .plate1-main:hover .main-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);
}
.activity-plate1 .plate1-main:hover .main-cent .cent-title {
  color: #ca3526;
}
.activity-plate2 {
  width: 100%;
  height: auto;
  padding: 1.05rem 0 1.2rem;
  background: #f8f8f8;
}
.activity-plate2 .plate2-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.1rem;
}
.activity-plate2 .plate2-main .main-item {
  width: calc(100% / 3 - 0.3734rem);
  height: auto;
  margin-right: 0.56rem;
  margin-bottom: 0.7rem;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.activity-plate2 .plate2-main .main-item:nth-child(3n) {
  margin-right: 0;
}
.activity-plate2 .plate2-main .main-item .item-pic {
  width: 100%;
  height: 3.1rem;
  overflow: hidden;
}
.activity-plate2 .plate2-main .main-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.activity-plate2 .plate2-main .main-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.45rem;
  background: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.activity-plate2 .plate2-main .main-item .item-cent .cent-time {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs20);
  color: rgba(153, 153, 153, 0.6);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.activity-plate2 .plate2-main .main-item .item-cent .cent-title {
  height: 0.72rem;
  margin-top: 0.2rem;
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #333333;
  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;
}
.activity-plate2 .plate2-main .main-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.activity-plate2 .plate2-main .main-item:hover .item-cent {
  background: linear-gradient(90deg, #ca3526, #f03625);
}
.activity-plate2 .plate2-main .main-item:hover .item-cent .cent-time {
  color: rgba(255, 255, 255, 0.6);
}
.activity-plate2 .plate2-main .main-item:hover .item-cent .cent-title {
  color: #fff;
}
.mineral-plate1 {
  width: 100%;
  height: auto;
  padding: 1.1rem 0 1rem;
  background: url(../images/mineral-pic1.jpg) no-repeat bottom left;
  background-size: 100%;
}
.mineral-plate1 .plate1-main .page-title {
  text-align: center;
}
.mineral-plate1 .plate1-main .page-heng {
  margin: 0.25rem auto 0;
}
.mineral-plate1 .plate1-main .main-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.mineral-plate1 .plate1-main .main-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
}
.mineral-plate1 .plate1-main .main-box .box-item {
  position: relative;
  width: calc(100% / 4 - 0.15rem);
  height: auto;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
}
.mineral-plate1 .plate1-main .main-box .box-item:nth-child(4n) {
  margin-right: 0;
}
.mineral-plate1 .plate1-main .main-box .box-item .item-pic {
  width: 100%;
  height: 4.6rem;
  overflow: hidden;
}
.mineral-plate1 .plate1-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;
}
.mineral-plate1 .plate1-main .main-box .box-item .item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.6rem 0.3rem 0.3rem;
  font-size: var(--fs30);
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
}
.mineral-plate1 .plate1-main .main-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.mineral-plate2 {
  width: 100%;
  height: auto;
  padding: 1.1rem 0 1.35rem;
}
.mineral-plate2 .plate2-main .page-title {
  text-align: center;
}
.mineral-plate2 .plate2-main .page-heng {
  margin: 0.25rem auto 0;
}
.mineral-plate2 .plate2-main .main-text {
  margin-top: 0.1rem;
  font-size: var(--fs20);
  text-align: center;
  color: #666;
}
.mineral-plate2 .plate2-main .main-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.mineral-plate2 .plate2-main .main-box .box-item {
  width: 33.33%;
  height: auto;
  margin-bottom: 0.65rem;
  cursor: pointer;
}
.mineral-plate2 .plate2-main .main-box .box-item .item-icon {
  width: 1.04rem;
  height: 0.85rem;
  margin: 0 auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mineral-plate2 .plate2-main .main-box .box-item .item-icon img {
  width: 100%;
}
.mineral-plate2 .plate2-main .main-box .box-item .item-title {
  margin-top: 0.15rem;
  font-size: var(--fs22);
  text-align: center;
  color: #333;
}
.mineral-plate2 .plate2-main .main-box .box-item:hover .item-icon {
  transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.mineral-plate3 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 0.5rem;
  background: url(../images/mineral-plate3-bg.jpg) no-repeat bottom left;
  background-size: 100%;
}
.mineral-plate3 .page-title {
  text-align: center;
}
.mineral-plate3 .page-heng {
  margin: 0.25rem auto 0;
}
.mineral-plate3 .plate3-main {
  position: relative;
  height: 1.35rem;
  margin-top: 0.65rem;
}
.mineral-plate3 .plate3-main .main-item {
  position: absolute;
  width: 1.5rem;
  height: auto;
}
.mineral-plate3 .plate3-main .main-item .item-icon {
  width: 0.9rem;
  height: auto;
  margin: 0 auto;
}
.mineral-plate3 .plate3-main .main-item .item-icon img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mineral-plate3 .plate3-main .main-item .item-title {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  text-align: center;
  color: #666;
}
.mineral-plate3 .plate3-main .main-item:hover .item-icon {
  animation: mainBlock 1s ease infinite;
}
.mineral-plate3 .plate3-main .main-item:nth-child(1) {
  top: 1.95rem;
  left: 1rem;
}
.mineral-plate3 .plate3-main .main-item:nth-child(3) {
  top: 1.1rem;
  left: 2.6rem;
}
.mineral-plate3 .plate3-main .main-item:nth-child(5) {
  top: 0.4rem;
  left: 4.25rem;
}
.mineral-plate3 .plate3-main .main-item:nth-child(7) {
  top: 0;
  left: 5.94rem;
}
.mineral-plate3 .plate3-main .main-item:nth-child(9) {
  top: 0;
  right: 6.05rem;
}
.mineral-plate3 .plate3-main .main-item:nth-child(11) {
  top: 0.25rem;
  right: 4.25rem;
}
.mineral-plate3 .plate3-main .main-item:nth-child(13) {
  top: 0.9rem;
  right: 2.45rem;
}
.mineral-plate3 .plate3-main .main-item:nth-child(15) {
  top: 1.85rem;
  right: 0.9rem;
}
.mineral-plate3 .plate3-main .main-arrow {
  position: absolute;
  width: 0.38rem;
  height: 0.29rem;
  background: url(../images/icon/icon-mineral-plate3-arrow.png) no-repeat center center;
  background-size: 100%;
}
.mineral-plate3 .plate3-main .main-arrow:nth-child(2) {
  top: 1.75rem;
  left: 2.15rem;
}
.mineral-plate3 .plate3-main .main-arrow:nth-child(4) {
  top: 0.94rem;
  left: 3.9rem;
  transform: rotate(10deg);
  -o-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
}
.mineral-plate3 .plate3-main .main-arrow:nth-child(6) {
  top: 0.4rem;
  left: 5.6rem;
  transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
}
.mineral-plate3 .plate3-main .main-arrow:nth-child(8) {
  top: 0.25rem;
  left: 7.45rem;
  transform: rotate(30deg);
  -o-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
}
.mineral-plate3 .plate3-main .main-arrow:nth-child(10) {
  top: 0.4rem;
  right: 5.8rem;
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.mineral-plate3 .plate3-main .main-arrow:nth-child(12) {
  top: 0.86rem;
  right: 3.94rem;
  transform: rotate(55deg);
  -o-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -webkit-transform: rotate(55deg);
}
.mineral-plate3 .plate3-main .main-arrow:nth-child(14) {
  top: 1.68rem;
  right: 2.18rem;
  transform: rotate(65deg);
  -o-transform: rotate(65deg);
  -moz-transform: rotate(65deg);
  -webkit-transform: rotate(65deg);
}
.mineral-plate3 .plate3-main .main-up {
  position: absolute;
  top: 0.2rem;
  right: 3.2rem;
  font-size: var(--fs16);
  color: #333;
  transform: rotate(19deg);
  -o-transform: rotate(19deg);
  -moz-transform: rotate(19deg);
  -webkit-transform: rotate(19deg);
}
.mineral-plate3 .plate3-main .main-up::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 110%;
  width: 2.16rem;
  height: 0.53rem;
  background: url(../images/mineral-plate3-prev.png) no-repeat top right;
  background-size: 100%;
  opacity: 0.35;
  transform: scaleX(-1) rotate(-24deg);
}
.mineral-plate3 .plate3-main .main-up::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 110%;
  width: 2.16rem;
  height: 0.53rem;
  background: url(../images/mineral-plate3-prev.png) no-repeat top right;
  background-size: 100%;
  opacity: 0.35;
  transform: rotate(-24deg);
}
.mineral-plate3 .plate3-main .main-down {
  position: absolute;
  top: 1.8rem;
  right: 5.08rem;
  font-size: var(--fs16);
  color: #333;
  transform: rotate(19deg);
  -o-transform: rotate(19deg);
  -moz-transform: rotate(19deg);
  -webkit-transform: rotate(19deg);
}
.mineral-plate3 .plate3-main .main-down::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 110%;
  width: 1.4rem;
  height: 0.53rem;
  background: url(../images/mineral-plate3-next.png) no-repeat top right;
  background-size: 100%;
  opacity: 0.35;
  transform: scaleX(-1) rotate(-24deg);
}
.mineral-plate3 .plate3-main .main-down::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 110%;
  width: 1.4rem;
  height: 0.53rem;
  background: url(../images/mineral-plate3-next.png) no-repeat top right;
  background-size: 100%;
  opacity: 0.35;
  transform: rotate(-24deg);
}
.mineral-plate3 .plate3-cont .cont-pic {
  position: relative;
  width: 5.24rem;
  height: 2.9rem;
  margin: 0.85rem auto 0;
}
.mineral-plate3 .plate3-cont .cont-pic img {
  width: 100%;
}
.mineral-plate3 .plate3-cont .cont-pic .cont-title {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 100%;
  font-size: var(--fs30);
  font-weight: bold;
  text-align: center;
  color: #3e3a39;
}
.mineral-plate3 .plate3-web-main {
  display: none;
}
.mineral-plate4 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
  background: url(../images/mineral-plate4-bg.png) no-repeat center center;
  background-size: 17.13rem;
}
.mineral-plate4 .page-title {
  text-align: center;
}
.mineral-plate4 .page-heng {
  margin: 0.25rem auto 0;
}
.mineral-plate4 .plate4-main {
  position: relative;
  width: 100%;
  margin-top: 0.6rem;
}
.mineral-plate4 .plate4-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.92rem;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 45%, transparent);
  z-index: 9;
}
.mineral-plate4 .plate4-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1.92rem;
  height: 100%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.9) 45%, transparent);
  z-index: 9;
}
.mineral-plate4 .plate4-main .main-lump1,
.mineral-plate4 .plate4-main .main-lump2 {
  width: 100%;
  height: auto;
  margin-bottom: 0.35rem;
}
.mineral-plate4 .plate4-main .main-lump1 a,
.mineral-plate4 .plate4-main .main-lump2 a {
  display: inline-block;
  width: 2.88rem;
  height: 1.5rem;
  margin-right: 0.24rem;
  background: #fff;
  border: solid 2px #f5f5f5;
  overflow: hidden;
}
.mineral-plate4 .plate4-main .main-lump1 a img,
.mineral-plate4 .plate4-main .main-lump2 a 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;
}
.mineral-plate4 .plate4-main .main-lump1 a:hover,
.mineral-plate4 .plate4-main .main-lump2 a:hover {
  border: solid 2px #ca3526;
}
.mineral-plate4 .plate4-main .main-lump1 a:hover img,
.mineral-plate4 .plate4-main .main-lump2 a: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);
}
.mineral-plate4 .plate4-main .str_wrap {
  background: none;
  overflow: visible;
}
.fruit-plate1 {
  width: 100%;
  height: auto;
  padding: 0.95rem 0 1rem;
  background: url(../images/fruit-plate1-bg.jpg) no-repeat bottom left;
  background-size: 100%;
}
.fruit-plate1 .plate1-main .page-title {
  text-align: center;
}
.fruit-plate1 .plate1-main .page-heng {
  margin: 0.25rem auto 0;
}
.fruit-plate1 .plate1-main .main-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.fruit-plate1 .plate1-main .main-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
}
.fruit-plate1 .plate1-main .main-box .box-item {
  position: relative;
  width: calc(100% / 3 - 0.2rem);
  height: auto;
  margin-right: 0.3rem;
  margin-bottom: 0.2rem;
}
.fruit-plate1 .plate1-main .main-box .box-item:nth-child(3n) {
  margin-right: 0;
}
.fruit-plate1 .plate1-main .main-box .box-item .item-pic {
  width: 100%;
  height: 4.2rem;
  overflow: hidden;
}
.fruit-plate1 .plate1-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;
}
.fruit-plate1 .plate1-main .main-box .box-item .item-cent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.6rem 0.3rem 0.3rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}
.fruit-plate1 .plate1-main .main-box .box-item .item-cent .cent-title {
  font-size: var(--fs22);
  font-weight: bold;
  color: #fff;
}
.fruit-plate1 .plate1-main .main-box .box-item .item-cent .cent-text {
  margin-top: 0.1rem;
  font-size: var(--fs14);
  line-height: 0.2rem;
  color: #fff;
}
.fruit-plate1 .plate1-main .main-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.fruit-plate2 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.fruit-plate2 .plate2-main .page-title {
  text-align: center;
}
.fruit-plate2 .plate2-main .main-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.fruit-plate2 .plate2-main .main-box .box-item {
  width: 33.33%;
  height: auto;
  padding: 0 0.1rem;
}
.fruit-plate2 .plate2-main .main-box .box-item .item-icon {
  width: 1.04rem;
  height: auto;
  margin: 0 auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.fruit-plate2 .plate2-main .main-box .box-item .item-icon img {
  width: 100%;
}
.fruit-plate2 .plate2-main .main-box .box-item .item-title {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  font-weight: bold;
  text-align: center;
  color: #000;
}
.fruit-plate2 .plate2-main .main-box .box-item .item-text {
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
  color: #666;
}
.fruit-plate2 .plate2-main .main-box .box-item:hover .item-icon {
  transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.fruit-plate3 {
  width: 100%;
  height: auto;
  padding: 0.65rem 0 0.9rem;
  background: #f6f6f6;
}
.fruit-plate3 .plate3-main .page-title {
  text-align: center;
}
.fruit-plate3 .plate3-main .page-heng {
  margin: 0.25rem auto 0;
}
.fruit-plate3 .plate3-main .main-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.fruit-plate3 .plate3-main .main-box .main-item {
  width: calc(100% / 6 - 0.158334rem);
  height: auto;
  margin-right: 0.19rem;
  margin-bottom: 0.3rem;
  border-radius: 0.1rem;
  background: #b69583;
  overflow: hidden;
}
.fruit-plate3 .plate3-main .main-box .main-item:nth-child(6n) {
  margin-right: 0;
}
.fruit-plate3 .plate3-main .main-box .main-item .item-pic {
  width: 100%;
  height: 1rem;
  background: #fff;
  overflow: hidden;
}
.fruit-plate3 .plate3-main .main-box .main-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.fruit-plate3 .plate3-main .main-box .main-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.15rem 0.15rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
  text-align: center;
  color: #fff;
}
.fruit-plate3 .plate3-main .main-box .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);
}
.fruit-plate4 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.fruit-plate4 .page-title {
  text-align: center;
}
.fruit-plate4 .plate4-top {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  border-bottom: solid 1px #e1e1e1;
}
.fruit-plate4 .plate4-top .top-main {
  display: flex;
  justify-content: space-evenly;
}
.fruit-plate4 .plate4-top .top-main .main-item {
  position: relative;
  width: auto;
  padding-bottom: 0.2rem;
  cursor: pointer;
}
.fruit-plate4 .plate4-top .top-main .main-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ca3526;
  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;
}
.fruit-plate4 .plate4-top .top-main .main-item .item-icon {
  position: relative;
  width: 0.45rem;
  height: 0.44rem;
  margin: 0 auto;
}
.fruit-plate4 .plate4-top .top-main .main-item .item-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.fruit-plate4 .plate4-top .top-main .main-item .item-icon .img2 {
  opacity: 0;
}
.fruit-plate4 .plate4-top .top-main .main-item .item-title {
  margin-top: 0.15rem;
  font-size: var(--fs20);
  text-align: center;
  color: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.fruit-plate4 .plate4-top .top-main .main-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);
}
.fruit-plate4 .plate4-top .top-main .main-item-on .item-icon .img1 {
  opacity: 0;
}
.fruit-plate4 .plate4-top .top-main .main-item-on .item-icon .img2 {
  opacity: 1;
}
.fruit-plate4 .plate4-top .top-main .main-item-on .item-title {
  color: #ca3526;
}
.fruit-plate4 .plate4-main {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.fruit-plate4 .plate4-main .main-swiper {
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.fruit-plate4 .plate4-main .main-swiper .swiper-slide {
  width: 7.5rem;
  height: 4.5rem;
  margin: 0 0.2rem;
}
.fruit-plate4 .plate4-main .main-swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.fruit-plate4 .plate4-main .main-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.fruit-plate4 .plate4-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;
}
.fruit-plate4 .plate4-main .main-swiper .swiper-slide .slide-box .box-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.8rem 0.3rem 0.2rem;
  font-size: var(--fs20);
  text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
.fruit-plate4 .plate4-main .main-swiper .swiper-slide .slide-box:hover .box-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.fruit-plate4 .plate4-main .main-swiper-on {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}
.energy-plate1 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: url(../images/energy-plate1-bg.jpg) no-repeat bottom left;
  background-size: 100%;
}
.energy-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.energy-plate1 .plate1-main .main-cent {
  width: 50%;
  height: auto;
  padding-right: 1.15rem;
}
.energy-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.energy-plate1 .plate1-main .main-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.energy-plate1 .plate1-main .main-pic img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.energy-plate1 .plate1-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.energy-plate2 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 0;
}
.energy-plate2 .plate2-main .page-title {
  text-align: center;
}
.energy-plate2 .plate2-main .page-heng {
  margin: 0.25rem auto 0;
}
.energy-plate2 .plate2-main .main-swiper {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.energy-plate2 .plate2-main .main-swiper .swiper-slide {
  width: calc(100% / 3 - 0.32rem);
  height: 3.8rem;
  margin-right: 0.48rem;
}
.energy-plate2 .plate2-main .main-swiper .swiper-slide:last-of-type {
  margin-right: 0;
}
.energy-plate2 .plate2-main .main-swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.energy-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.energy-plate2 .plate2-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;
}
.energy-plate2 .plate2-main .main-swiper .swiper-slide .slide-box .box-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.6rem 0.3rem 0.3rem;
  font-size: var(--fs30);
  text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}
.energy-plate2 .plate2-main .main-swiper .swiper-slide .slide-box:hover .box-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.energy-plate2 .plate2-main .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.7rem;
}
.energy-plate2 .plate2-main .main-cont .cont-button {
  display: flex;
  justify-content: space-between;
  width: 1.28rem;
  height: auto;
}
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-prev,
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-next {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  border: solid 1px #cdcdcd;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-prev img,
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  margin: -6px 0 0 -3.5px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-prev .img2,
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-next .img2 {
  opacity: 0;
}
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-prev:hover,
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-next:hover {
  border: solid 1px #ca3526;
  background: #ca3526;
}
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-prev:hover .img1,
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-next:hover .img1 {
  opacity: 0;
}
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-prev:hover .img2,
.energy-plate2 .plate2-main .main-cont .cont-button .plate2-swiper-button-next:hover .img2 {
  opacity: 1;
}
.energy-plate2 .plate2-main .main-cont .swiper-pagination {
  position: relative;
  width: calc(100% - 1.75rem);
  height: 2px;
  background: #cdd1d4;
}
.energy-plate2 .plate2-main .main-cont .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #ca3526;
}
.energy-plate2 .plate2-box {
  position: relative;
  width: 100%;
  margin-top: 0.9rem;
}
.energy-plate2 .plate2-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.92rem;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 45%, transparent);
  z-index: 9;
}
.energy-plate2 .plate2-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1.92rem;
  height: 100%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.9) 45%, transparent);
  z-index: 9;
}
.energy-plate2 .plate2-box .box-lump1,
.energy-plate2 .plate2-box .box-lump2,
.energy-plate2 .plate2-box .box-lump3 {
  width: 100%;
  height: auto;
  margin-bottom: 0.35rem;
}
.energy-plate2 .plate2-box .box-lump1 a,
.energy-plate2 .plate2-box .box-lump2 a,
.energy-plate2 .plate2-box .box-lump3 a {
  display: inline-block;
  width: 2.42rem;
  height: 1.25rem;
  margin-right: 0.18rem;
  background: #fff;
  border-radius: 0.05rem;
  border: solid 2px #fff;
  box-shadow: 0px 5px 25px 0px rgba(13, 26, 53, 0.1);
  overflow: hidden;
}
.energy-plate2 .plate2-box .box-lump1 a img,
.energy-plate2 .plate2-box .box-lump2 a img,
.energy-plate2 .plate2-box .box-lump3 a 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;
}
.energy-plate2 .plate2-box .box-lump1 a:hover,
.energy-plate2 .plate2-box .box-lump2 a:hover,
.energy-plate2 .plate2-box .box-lump3 a:hover {
  border: solid 2px #ca3526;
}
.energy-plate2 .plate2-box .box-lump1 a:hover img,
.energy-plate2 .plate2-box .box-lump2 a:hover img,
.energy-plate2 .plate2-box .box-lump3 a: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);
}
.energy-plate2 .plate2-box .str_wrap {
  background: none;
  overflow: visible;
}
.energy-plate3 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1rem;
  background: #f9f9f9;
}
.energy-plate3 .page-title {
  text-align: center;
}
.energy-plate3 .page-heng {
  margin: 0.25rem auto 0;
}
.energy-plate3 .plate3-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.energy-plate3 .plate3-main .main-item {
  width: calc(100% / 6 - 0.15rem);
  height: 1.25rem;
  margin-right: 0.18rem;
  margin-bottom: 0.2rem;
  background: #fff;
  border-radius: 0.05rem;
  border: solid 2px #fff;
  box-shadow: 0px 5px 25px 0px rgba(13, 26, 53, 0.1);
  overflow: hidden;
}
.energy-plate3 .plate3-main .main-item:nth-child(6n) {
  margin-right: 0;
}
.energy-plate3 .plate3-main .main-item 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;
}
.energy-plate3 .plate3-main .main-item:hover {
  border: solid 2px #ca3526;
}
.energy-plate3 .plate3-main .main-item:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.energy-plate4 {
  width: 100%;
  height: auto;
  padding: 0.9rem 0;
}
.energy-plate4 .page-title {
  text-align: center;
}
.energy-plate4 .page-heng {
  margin: 0.25rem auto 0;
}
.energy-plate4 .plate4-box {
  position: relative;
  width: 100%;
  margin-top: 0.6rem;
}
.energy-plate4 .plate4-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.92rem;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 45%, transparent);
  z-index: 9;
}
.energy-plate4 .plate4-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1.92rem;
  height: 100%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.9) 45%, transparent);
  z-index: 9;
}
.energy-plate4 .plate4-box .box-lump1,
.energy-plate4 .plate4-box .box-lump2,
.energy-plate4 .plate4-box .box-lump3 {
  width: 100%;
  height: auto;
  margin-bottom: 0.35rem;
}
.energy-plate4 .plate4-box .box-lump1 a,
.energy-plate4 .plate4-box .box-lump2 a,
.energy-plate4 .plate4-box .box-lump3 a {
  display: inline-block;
  width: 2.42rem;
  height: 1.25rem;
  margin-right: 0.18rem;
  background: #fff;
  border-radius: 0.05rem;
  border: solid 2px #fff;
  box-shadow: 0px 5px 25px 0px rgba(13, 26, 53, 0.1);
  overflow: hidden;
}
.energy-plate4 .plate4-box .box-lump1 a img,
.energy-plate4 .plate4-box .box-lump2 a img,
.energy-plate4 .plate4-box .box-lump3 a 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;
}
.energy-plate4 .plate4-box .box-lump1 a:hover,
.energy-plate4 .plate4-box .box-lump2 a:hover,
.energy-plate4 .plate4-box .box-lump3 a:hover {
  border: solid 2px #ca3526;
}
.energy-plate4 .plate4-box .box-lump1 a:hover img,
.energy-plate4 .plate4-box .box-lump2 a:hover img,
.energy-plate4 .plate4-box .box-lump3 a: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);
}
.energy-plate4 .plate4-box .str_wrap {
  background: none;
  overflow: visible;
}
.consumer-plate1 {
  width: 100%;
  height: auto;
  padding: 0.95rem 0 1.2rem;
  background: url(../images/consumer-bg.jpg) no-repeat bottom left;
  background-size: 100%;
}
.consumer-plate1 .plate1-main .page-title {
  text-align: center;
}
.consumer-plate1 .plate1-main .page-heng {
  margin: 0.25rem auto 0;
}
.consumer-plate1 .plate1-main .main-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.consumer-plate1 .plate1-main .main-swiper {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide {
  width: 10.6rem;
  height: 6.75rem;
  margin: 0 0.3rem;
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide .slide-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  background: #fff;
  overflow: hidden;
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide .slide-box .box-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem 0.3rem 0.2rem;
  font-size: var(--fs30);
  text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide .slide-box:hover .box-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide-active .slide-box .box-pic img {
  opacity: 1;
}
.consumer-plate1 .plate1-main .main-swiper .swiper-slide-active .slide-box .box-title {
  opacity: 1;
}
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev,
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev img,
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-next img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev .img2,
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-next .img2 {
  opacity: 0;
}
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev:hover .img1,
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-next:hover .img1 {
  opacity: 0;
}
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev:hover .img2,
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-next:hover .img2 {
  opacity: 1;
}
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-prev {
  left: 0;
}
.consumer-plate1 .plate1-main .main-swiper .plate1-swiper-button-next {
  right: 0;
}
.brand-plate1 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.brand-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
}
.brand-plate1 .plate1-main .main-pic {
  position: relative;
  width: 7.63rem;
  height: auto;
  overflow: hidden;
}
.brand-plate1 .plate1-main .main-pic::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/brand-plate1-bg.png) no-repeat center center;
  background-size: cover;
}
.brand-plate1 .plate1-main .main-pic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-plate1 .plate1-main .main-pic img {
  width: 100%;
  height: auto;
}
.brand-plate1 .plate1-main .main-cent {
  width: 6.26rem;
  height: auto;
}
.brand-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.55rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.brand-plate2 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.75rem;
  background: url(../images/brand-plate2-bg.jpg) no-repeat bottom left;
  background-size: cover;
}
.brand-plate2 .page-title {
  text-align: center;
}
.brand-plate2 .page-heng {
  margin: 0.25rem auto 0;
}
.brand-plate2 .plate2-main {
  position: relative;
  margin-top: 1rem;
}
.brand-plate2 .plate2-main .main-swiper {
  position: absolute;
  top: 50%;
  left: 3rem;
  width: 4rem;
  height: 6.3rem;
  margin-top: -3.15rem;
  overflow: hidden;
  z-index: 9;
}
.brand-plate2 .plate2-main .main-swiper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.62rem;
  height: 6.1rem;
  background: url(../images/icon/icon-brand-plate2-bg.png) no-repeat top left;
  background-size: 100%;
}
.brand-plate2 .plate2-main .main-swiper .swiper-slide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: calc(100% / 7);
  padding-left: 2.53rem;
  cursor: pointer;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.brand-plate2 .plate2-main .main-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.brand-plate2 .plate2-main .main-swiper .swiper-slide .slide-box em {
  width: 0.15rem;
  height: 0.16rem;
  background: url(../images/icon/icon-brand-plate2-round1.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;
}
.brand-plate2 .plate2-main .main-swiper .swiper-slide .slide-box p {
  padding-left: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs18);
  color: #999;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.brand-plate2 .plate2-main .main-swiper .swiper-slide-active .slide-box em {
  background: url(../images/icon/icon-brand-plate2-round2.png) no-repeat center center;
  background-size: 100%;
}
.brand-plate2 .plate2-main .main-swiper .swiper-slide-active .slide-box p {
  font-size: var(--fs30);
  color: #ca3526;
}
.brand-plate2 .plate2-main .main-cont {
  position: relative;
  width: 100%;
  height: auto;
}
.brand-plate2 .plate2-main .main-cont .cont-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-lump {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 5.22rem;
  height: 5.22rem;
  padding: 0.09rem;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(202, 53, 38, 0.2), rgba(240, 54, 37, 0.2));
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-lump .lump-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-lump .lump-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;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-cent {
  width: 6.65rem;
  height: auto;
  padding-top: 0.3rem;
  transform: translateX(-0.5rem);
  -o-transform: translateX(-0.5rem);
  -moz-transform: translateX(-0.5rem);
  -webkit-transform: translateX(-0.5rem);
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-cent .cent-lump {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-cent .cent-lump .lump-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 0.1rem;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-cent .cent-lump .lump-item span {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs48);
  line-height: 0.4rem;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-cent .cent-lump .lump-item .item-GJH {
  color: #2b7ac1;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-cent .cent-lump .lump-item .item-QC {
  color: #ca3526;
}
.brand-plate2 .plate2-main .main-cont .cont-box .box-cent .cent-lump .lump-item p {
  flex: 1;
  padding-left: 0.6rem;
  font-size: var(--fs18);
  color: #333;
}
.brand-plate2 .plate2-main .main-cont .cont-box-on {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.brand-plate2 .plate2-main .main-cont .cont-box-on .box-cent {
  transform: translateX(0);
  -o-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}
.brand-plate2 .plate2-main .main-button {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -0.5rem;
  right: 5.3rem;
  width: 1.35rem;
  height: auto;
}
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-prev,
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-next {
  position: relative;
  width: 0.58rem;
  height: 0.59rem;
  box-shadow: 0px 0px 10px 0px rgba(23, 109, 185, 0.1);
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-prev img,
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-next img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-prev .img2,
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-next .img2 {
  opacity: 0;
}
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-prev:hover,
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-next:hover {
  box-shadow: none;
}
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-prev:hover .img1,
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-next:hover .img1 {
  opacity: 0;
}
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-prev:hover .img2,
.brand-plate2 .plate2-main .main-button .plate2-swiper-button-next:hover .img2 {
  opacity: 1;
}
.brand-plate2 .plate2-main .main-lump {
  position: absolute;
  bottom: -0.5rem;
  right: 2rem;
  width: auto;
}
.brand-plate2 .plate2-main .main-lump .lump-title {
  font-size: var(--fs20);
  font-weight: bold;
  line-height: 1.6;
}
.brand-plate2 .plate2-main .main-lump .lump-title:first-of-type {
  color: #2b7ac1;
}
.brand-plate2 .plate2-main .main-lump .lump-title:last-of-type {
  color: #ca3526;
}
.brand-plate3 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 0.9rem;
}
.brand-plate3 .plate3-main .page-title {
  text-align: center;
}
.brand-plate3 .plate3-main .page-heng {
  margin: 0.25rem auto 0;
}
.brand-plate3 .plate3-main .main-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.brand-plate3 .plate3-main .main-box .box-item {
  width: calc(100% / 3 - 0.2rem);
  height: auto;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  padding: 0.1rem 0.8rem 0.3rem;
  background: #fff;
  border-radius: 3px;
  box-shadow: 1px 2px 30px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.brand-plate3 .plate3-main .main-box .box-item:nth-child(3n) {
  margin-right: 0;
}
.brand-plate3 .plate3-main .main-box .box-item .item-pic {
  width: 100%;
  height: 1.25rem;
}
.brand-plate3 .plate3-main .main-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.brand-plate3 .plate3-main .main-box .box-item .item-title {
  margin-top: 0.1rem;
  font-size: var(--fs22);
  font-weight: bold;
  text-align: center;
  color: #1c1d25;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.brand-plate3 .plate3-main .main-box .box-item .item-text {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #595757;
}
.brand-plate3 .plate3-main .main-box .box-item:hover .item-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.brand-plate3 .plate3-main .main-box .box-item:hover .item-title {
  color: #ca3526;
}
.political-plate1 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
}
.political-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
}
.political-plate1 .plate1-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0.7rem 0.85rem 0.4rem;
  box-shadow: 0px 0px 30px 0px rgba(97, 97, 97, 0.15);
}
.political-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.political-plate1 .plate1-main .main-video {
  position: relative;
  width: 50%;
  height: auto;
  overflow: hidden;
}
.political-plate1 .plate1-main .main-video .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  margin: -0.31rem 0 0 -0.31rem;
  cursor: pointer;
  z-index: 9;
}
.political-plate1 .plate1-main .main-video .video-play img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.political-plate1 .plate1-main .main-video .video-play:hover img {
  transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.political-plate1 .plate1-main .main-video .video-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.political-plate1 .plate1-main .main-video .video-pic img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.political-plate1 .plate1-main .main-video:hover .video-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.political-plate2 {
  width: 100%;
  height: auto;
  padding: 1rem 0 1.2rem;
  background: url(../images/political-palte2-bg.jpg) no-repeat top left;
  background-size: cover;
}
.political-plate2 .plate2-main {
  display: flex;
  justify-content: space-between;
}
.political-plate2 .plate2-main .main-video {
  position: relative;
  width: 50%;
  height: auto;
  overflow: hidden;
}
.political-plate2 .plate2-main .main-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.political-plate2 .plate2-main .main-video .video-play {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  margin: -0.31rem 0 0 -0.31rem;
  cursor: pointer;
  z-index: 9;
}
.political-plate2 .plate2-main .main-video .video-play img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.political-plate2 .plate2-main .main-video .video-play:hover img {
  transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.political-plate2 .plate2-main .main-video .video-pic {
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.political-plate2 .plate2-main .main-video .video-pic img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.political-plate2 .plate2-main .main-video:hover .video-pic img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.political-plate2 .plate2-main .main-cent {
  width: 50%;
  height: auto;
  padding: 0.6rem 1rem 0.5rem 0.72rem;
  background: #f6f6f6;
}
.political-plate2 .plate2-main .main-cent .cent-title {
  font-size: var(--fs36);
  font-weight: bold;
  background: linear-gradient(90deg, #ca3526, #f03625);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.political-plate2 .plate2-main .main-cent .cent-subTitle {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  color: #333;
}
.political-plate2 .plate2-main .main-cent .cent-heng {
  width: 0.45rem;
  height: 3px;
  margin-top: 0.3rem;
  background: #ca3526;
}
.political-plate2 .plate2-main .main-cent .cent-text {
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.political-plate2 .plate2-main .main-cent .cent-button {
  display: block;
  position: relative;
  width: 0.5rem;
  height: 0.35rem;
  margin-top: 0.45rem;
  border-radius: 0.45rem;
  background: linear-gradient(90deg, #ca3526, #f03625);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.political-plate2 .plate2-main .main-cent .cent-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/icon/icon-arrow7.png) no-repeat center center;
  background-size: 6px;
}
.political-plate2 .plate2-main .main-cent .cent-button:hover {
  width: 0.65rem;
}
.political-plate3 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.political-plate3 .plate3-main .page-title {
  text-align: center;
}
.political-plate3 .plate3-main .page-heng {
  margin: 0.25rem auto 0;
}
.political-plate3 .plate3-main .main-box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.political-plate3 .plate3-main .main-box .box-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0 0 0.4rem 0.48rem;
  margin-bottom: 0.4rem;
  border-bottom: solid 1px #eeeeee;
}
.political-plate3 .plate3-main .main-box .box-item .item-lump {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  position: relative;
}
.political-plate3 .plate3-main .main-box .box-item .item-lump::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 1.8rem;
  margin-top: -0.9rem;
  background: #eeeeee;
}
.political-plate3 .plate3-main .main-box .box-item .item-lump .lump-pic {
  width: 3.12rem;
  height: 2.21rem;
  overflow: hidden;
}
.political-plate3 .plate3-main .main-box .box-item .item-lump .lump-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;
}
.political-plate3 .plate3-main .main-box .box-item .item-lump .lump-cent {
  flex: 1;
  padding: 0 1.25rem 0 0.6rem;
}
.political-plate3 .plate3-main .main-box .box-item .item-lump .lump-cent .cent-title {
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 0.36rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.political-plate3 .plate3-main .main-box .box-item .item-lump .lump-cent .cent-text {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.political-plate3 .plate3-main .main-box .box-item .item-date {
  width: 1.92rem;
  height: auto;
}
.political-plate3 .plate3-main .main-box .box-item .item-date .date-year {
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs40);
  text-align: center;
  color: #333;
}
.political-plate3 .plate3-main .main-box .box-item .item-date .date-time {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs14);
  text-align: center;
  color: #888;
}
.political-plate3 .plate3-main .main-box .box-item:hover .item-lump .lump-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);
}
.political-plate3 .plate3-main .main-box .box-item:hover .item-lump .lump-cent .cent-title {
  background: linear-gradient(90deg, #ca3526, #f03625);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.political-plate3 .plate3-main .page-button {
  margin: 0.3rem auto 0;
}
.party-plate1 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.party-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
}
.party-plate1 .plate1-main .main-cent {
  width: 50%;
  height: auto;
  padding-right: 1.05rem;
}
.party-plate1 .plate1-main .main-cent .cent-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666666;
}
.party-plate1 .plate1-main .main-cent .cent-text span {
  font-weight: bold;
  color: #ca3526;
}
.party-plate1 .plate1-main .main-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.party-plate1 .plate1-main .main-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.party-plate1 .plate1-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.party-plate2 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0;
  background: #f9f9f9;
}
.party-plate2 .plate2-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.party-plate2 .plate2-main .main-cent {
  width: 50%;
  height: auto;
  padding-left: 1.35rem;
}
.party-plate2 .plate2-main .main-cent .cent-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666666;
}
.party-plate2 .plate2-main .main-pic {
  width: 50%;
  height: auto;
  overflow: hidden;
}
.party-plate2 .plate2-main .main-pic img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.party-plate2 .plate2-main .main-pic:hover img {
  transform: scale(1.1, 1.1) translateZ(0);
  -o-transform: scale(1.1, 1.1) translateZ(0);
  -moz-transform: scale(1.1, 1.1) translateZ(0);
  -webkit-transform: scale(1.1, 1.1) translateZ(0);
}
.party-plate3 {
  width: 100%;
  height: auto;
  padding: 1.15rem 0 0;
}
.party-plate3 .plate3-top .page-title {
  text-align: center;
}
.party-plate3 .plate3-top .page-heng {
  margin: 0.25rem auto 0;
}
.party-plate3 .plate3-top .top-text {
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: #666;
}
.party-plate3 .plate3-main {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.party-plate3 .plate3-main .main-item {
  position: relative;
  flex: 1;
  height: 7.6rem;
  overflow: hidden;
}
.party-plate3 .plate3-main .main-item .item-pic {
  position: absolute;
  top: 0;
  left: 50%;
  width: 5rem;
  height: 100%;
  margin-left: -2.5rem;
  background: #000;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.party-plate3 .plate3-main .main-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.party-plate3 .plate3-main .main-item .item-lump {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.7rem 0.3rem 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.party-plate3 .plate3-main .main-item .item-lump .lump-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 auto;
}
.party-plate3 .plate3-main .main-item .item-lump .lump-icon img {
  width: 100%;
}
.party-plate3 .plate3-main .main-item .item-lump .lump-heng {
  width: 0.3rem;
  height: 2px;
  margin: 0.3rem auto 0;
  background: #fff;
}
.party-plate3 .plate3-main .main-item .item-lump .lump-title {
  margin-top: 0.2rem;
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.party-plate3 .plate3-main .main-item .item-cent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem 0.58rem 0;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.party-plate3 .plate3-main .main-item .item-cent .cent-title {
  font-size: var(--fs30);
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.party-plate3 .plate3-main .main-item .item-cent .cent-heng {
  width: 0.3rem;
  height: 2px;
  margin: 0.2rem auto 0;
  background: #fff;
}
.party-plate3 .plate3-main .main-item .item-cent .cent-text {
  margin-top: 0.35rem;
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
.party-plate3 .plate3-main .main-item .item-bottom {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 1.3rem;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 0.58rem;
  z-index: 9;
}
.party-plate3 .plate3-main .main-item .item-bottom .bottom-num {
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs30);
  color: #fff;
}
.party-plate3 .plate3-main .main-item .item-bottom .bottom-arrow {
  width: 0.2rem;
  height: 0.08rem;
  background: url(../images/icon/icon-arrow8.png) no-repeat center center;
  background-size: 100%;
}
.party-plate3 .plate3-main .main-item:hover {
  flex: 1.41;
}
.party-plate3 .plate3-main .main-item:hover .item-pic {
  background: #ca3526;
}
.party-plate3 .plate3-main .main-item:hover .item-pic img {
  opacity: 0.15;
}
.party-plate3 .plate3-main .main-item:hover .item-lump {
  opacity: 0;
}
.party-plate3 .plate3-main .main-item:hover .item-cent {
  opacity: 1;
}
.partyNews-plate1 {
  width: 100%;
  height: auto;
  padding: 1.2rem 0 0.65rem;
}
.partyNews-plate1 .plate1-main {
  display: flex;
  justify-content: space-between;
}
.partyNews-plate1 .plate1-main .main-lump {
  position: relative;
  width: 9.6rem;
  height: 6rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.partyNews-plate1 .plate1-main .main-lump .lump-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.partyNews-plate1 .plate1-main .main-lump .lump-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;
}
.partyNews-plate1 .plate1-main .main-lump .lump-cent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.8rem 0.58rem 0.4rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}
.partyNews-plate1 .plate1-main .main-lump .lump-cent .cent-title {
  font-size: var(--fs30);
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.partyNews-plate1 .plate1-main .main-lump .lump-cent .cent-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0.2rem;
}
.partyNews-plate1 .plate1-main .main-lump .lump-cent .cent-button span {
  margin-right: 0.1rem;
  font-size: var(--fs18);
  color: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.partyNews-plate1 .plate1-main .main-lump .lump-cent .cent-button em {
  width: 0.14rem;
  height: 0.12rem;
  background: url(../images/icon/icon-arrow9.png) no-repeat center center;
  background-size: 100%;
}
.partyNews-plate1 .plate1-main .main-lump .lump-cent .cent-button:hover span {
  margin-right: 0.2rem;
}
.partyNews-plate1 .plate1-main .main-lump:hover .lump-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);
}
.partyNews-plate1 .plate1-main .main-box {
  width: 5.06rem;
  height: auto;
}
.partyNews-plate1 .plate1-main .main-box .box-item {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.15rem 0 0.3rem;
  margin-bottom: 0.4rem;
  border-bottom: solid 1px #e9e9e9;
}
.partyNews-plate1 .plate1-main .main-box .box-item:last-of-type {
  margin-bottom: 0;
}
.partyNews-plate1 .plate1-main .main-box .box-item .item-time {
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs20);
  color: #ca3526;
}
.partyNews-plate1 .plate1-main .main-box .box-item .item-title {
  margin-top: 0.15rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.partyNews-plate1 .plate1-main .main-box .box-item:hover .item-title {
  color: #ca3526;
}
.partyNews-plate2 {
  width: 100%;
  height: auto;
}
.partyNews-plate2 .plate2-main {
  display: flex;
  justify-content: space-between;
}
.partyNews-plate2 .plate2-main select {
  width: 3.45rem;
  height: 0.7rem;
  padding: 0 0.3rem 0 0.2rem;
  font-size: var(--fs18);
  color: #999;
  border: solid 1px #dfdfdf;
  border-radius: 0.1rem;
  background: url(../images/icon/icon-arrow10.png) no-repeat scroll right 0.14rem center #fff;
  appearance: none;
  outline: none;
}
.partyNews-plate2 .plate2-main .main-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 3.75rem);
  height: 0.7rem;
  padding-right: 0.35rem;
  border: solid 1px #dfdfdf;
  border-radius: 0.1rem;
  background: #fff;
  overflow: hidden;
}
.partyNews-plate2 .plate2-main .main-search input {
  flex: 1;
  height: 100%;
  padding: 0 0.3rem;
  font-size: var(--fs18);
  color: #333;
  background: transparent;
  border: none;
}
.partyNews-plate2 .plate2-main .main-search input::placeholder {
  color: #999;
}
.partyNews-plate2 .plate2-main .main-search .main-icon {
  width: 0.28rem;
  height: 0.31rem;
  background: url(../images/icon/icon-search2.png) no-repeat center center;
  background-size: 100%;
}
.partyNews-plate3 {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 1.2rem;
}
.partyNews-plate3 .plate3-main {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
.partyNews-plate3 .plate3-main .main-item {
  position: relative;
  width: calc(100% / 3);
  height: auto;
  margin-bottom: 0.6rem;
  padding: 0.4rem 0.6rem 0.35rem;
  border-right: solid 1px #e0e0e0;
  overflow: hidden;
}
.partyNews-plate3 .plate3-main .main-item .item-pic {
  width: 100%;
  height: 2.55rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.partyNews-plate3 .plate3-main .main-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.partyNews-plate3 .plate3-main .main-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.25rem 0 0;
}
.partyNews-plate3 .plate3-main .main-item .item-cent .cent-time {
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs20);
  color: #ca3526;
}
.partyNews-plate3 .plate3-main .main-item .item-cent .cent-title {
  margin-top: 0.25rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.partyNews-plate3 .plate3-main .main-item .item-cent .cent-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.partyNews-plate3 .plate3-main .main-item .item-cent .cent-button span {
  margin-right: 0.1rem;
  font-size: var(--fs18);
  color: #ca3526;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.partyNews-plate3 .plate3-main .main-item .item-cent .cent-button em {
  width: 0.14rem;
  height: 0.12rem;
  background: url(../images/icon/icon-arrow11.png) no-repeat center center;
  background-size: 100%;
}
.partyNews-plate3 .plate3-main .main-item .item-cent .cent-button:hover span {
  margin-right: 0.2rem;
}
.partyNews-plate3 .plate3-main .main-item .item-lump {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  padding: 0.95rem 0.6rem 0;
  border-radius: 0.2rem;
  overflow: hidden;
  background: url(../images/party-plate3-bg.jpg) no-repeat top left;
  background-size: cover;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.partyNews-plate3 .plate3-main .main-item .item-lump .lump-time {
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs20);
  color: #ca3526;
}
.partyNews-plate3 .plate3-main .main-item .item-lump .lump-title {
  margin-top: 0.25rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.partyNews-plate3 .plate3-main .main-item .item-lump .lump-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 2.5rem;
}
.partyNews-plate3 .plate3-main .main-item .item-lump .lump-button span {
  margin-right: 0.1rem;
  font-size: var(--fs18);
  color: #ca3526;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.partyNews-plate3 .plate3-main .main-item .item-lump .lump-button em {
  width: 0.14rem;
  height: 0.12rem;
  background: url(../images/icon/icon-arrow11.png) no-repeat center center;
  background-size: 100%;
}
.partyNews-plate3 .plate3-main .main-item .item-lump .lump-button:hover span {
  margin-right: 0.2rem;
}
.partyNews-plate3 .plate3-main .main-item:hover {
  border-right: solid 1px transparent;
}
.partyNews-plate3 .plate3-main .main-item:hover .item-lump {
  left: 0;
  opacity: 1;
}
.recruit-plate1 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.15rem 0 1.2rem;
}
.recruit-plate1::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.4rem;
  width: 1.85rem;
  height: 3.13rem;
  background: url(../images/recruit-bg2.png) no-repeat top left;
  background-size: 100%;
}
.recruit-plate1::after {
  content: '';
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  width: 1.85rem;
  height: 3.13rem;
  background: url(../images/recruit-bg.png) no-repeat top left;
  background-size: 100%;
}
.recruit-plate1 .plate1-main {
  position: relative;
  z-index: 9;
}
.recruit-plate1 .plate1-main .page-title {
  text-align: center;
}
.recruit-plate1 .plate1-main .page-heng {
  margin: 0.25rem auto 0;
}
.recruit-plate1 .plate1-main .main-top {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.recruit-plate1 .plate1-main .main-top select {
  width: 2.4rem;
  height: 0.62rem;
  margin-right: 0.2rem;
  padding: 0 0.3rem 0 0.18rem;
  font-size: var(--fs16);
  color: #666;
  border: solid 1px #dcdcdc;
  border-radius: 0.05rem;
  background: url(../images/icon/icon-arrow12.png) no-repeat scroll right 0.14rem center #fff;
  appearance: none;
  outline: none;
}
.recruit-plate1 .plate1-main .main-top select option:first-of-type {
  display: none;
}
.recruit-plate1 .plate1-main .main-top .top-search {
  width: 1.2rem;
  height: 0.62rem;
  font-size: var(--fs18);
  text-align: center;
  line-height: 0.62rem;
  color: #fff;
  border-radius: 0.05rem;
  background: linear-gradient(90deg, #ca3526, #f03625);
}
.recruit-plate1 .plate1-main .main-top .top-search:hover {
  background: linear-gradient(-90deg, #ca3526, #f03625);
}
.recruit-plate1 .plate1-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0.2rem;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ca3526;
  transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 1.93rem;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  background: #f5f5f5;
  border-top: #e7e7e7 solid 2px;
  cursor: pointer;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-left {
  width: calc(100% - 65px);
  height: auto;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-left .top-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-left .top-title .title {
  margin-right: 1.5rem;
  font-size: 0.22rem;
  font-weight: bold;
  color: #17171d;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-left .top-title .text {
  font-size: 0.14rem;
  color: #878787;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-left .top-heng {
  width: 20px;
  height: 3px;
  margin-top: 0.2rem;
  background: #e4e4e4;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-left .top-text {
  margin-top: 0.2rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s 0.3s;
  -o-transition: all 0.3s 0.3s;
  -moz-transition: all 0.3s 0.3s;
  -webkit-transition: all 0.3s 0.3s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-right {
  position: relative;
  width: 59px;
  height: 59px;
  background: url(../images/icon/icon-recruit-jia.png) no-repeat center center;
  background-size: 100%;
  z-index: 19;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-right img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-right .img2 {
  opacity: 0;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-top .top-right::after {
  display: none;
  content: '+';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 59px;
  color: #ca3526;
  background: #fff;
  border-radius: 50%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .top-active {
  background: #fff;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .top-active .top-left .top-title .title {
  color: #ca3526;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .top-active .top-left .top-text {
  display: none;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .top-active .top-right {
  background: url(../images/icon/icon-recruit-jian.png) no-repeat center center;
  background-size: 100%;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .top-active .top-right::after {
  content: '-';
  line-height: 55px;
  color: #fff;
  background: #ca3526;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent {
  display: none;
  position: relative;
  top: 0;
  width: 100%;
  margin-top: -0.8rem;
  padding: 0.2rem 0.5rem 0.6rem 0.35rem;
  background: #fff;
  z-index: 9;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty {
  width: 100%;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-title {
  width: 100%;
  font-size: 0.18rem;
  line-height: 0.3rem;
  font-weight: bold;
  color: #333;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-text,
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-text2 {
  width: 100%;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #999;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-text2 {
  padding-bottom: 0;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-bottom {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-bottom .bottom-button {
  width: 150px;
  height: 50px;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 45px;
  background: #ca3526;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-bottom .bottom-button:hover {
  transform: translatey(-10px);
  -o-transform: translatey(-10px);
  -moz-transform: translatey(-10px);
  -webkit-transform: translatey(-10px);
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-bottom .bottom-button2 {
  width: 150px;
  height: 50px;
  margin-left: 0.2rem;
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 45px;
  background: #dedede;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-bottom .bottom-button2:hover {
  transform: translatey(-10px);
  -o-transform: translatey(-10px);
  -moz-transform: translatey(-10px);
  -webkit-transform: translatey(-10px);
}
.recruit-plate1 .plate1-main .main-cont .cont-dd .dd-cent .cent-duty .duty-Emali {
  margin-top: 0.4rem;
  font-size: 0.16rem;
  font-weight: bold;
  color: #010101;
}
.recruit-plate1 .plate1-main .main-cont .cont-dd-active {
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
}
.recruit-plate1 .plate1-main .main-cont .cont-dd-active::after {
  width: 100%;
}
.contact-plate1 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1.15rem 0 2.5rem;
}
.contact-plate1 .plate1-main .page-title {
  text-align: center;
}
.contact-plate1 .plate1-main .page-heng {
  margin: 0.25rem auto 0;
}
.contact-plate1 .plate1-main .main-box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.contact-plate1 .plate1-main .main-box .box-item {
  width: calc(100% / 4);
  height: auto;
  padding: 0 0.1rem;
  cursor: pointer;
}
.contact-plate1 .plate1-main .main-box .box-item .item-icon {
  width: 1.05rem;
  height: auto;
  margin: 0 auto;
}
.contact-plate1 .plate1-main .main-box .box-item .item-icon img {
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.contact-plate1 .plate1-main .main-box .box-item .item-title {
  margin-top: 0.35rem;
  font-size: var(--fs18);
  font-weight: bold;
  text-align: center;
  color: #262323;
}
.contact-plate1 .plate1-main .main-box .box-item .item-text {
  margin-top: 0.1rem;
  font-family: 'MONTSERRAT-REGULAR';
  font-size: var(--fs20);
  text-align: center;
  color: #808080;
}
.contact-plate1 .plate1-main .main-box .box-item .item-text2 {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  text-align: center;
  color: #808080;
}
.contact-plate1 .plate1-main .main-box .box-item:hover .item-icon img {
  transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
}
.contact-plate1 .wave {
  position: absolute;
  bottom: -15%;
  left: 0;
  width: 200%;
  height: auto;
  margin-left: -25%;
  z-index: 0;
  opacity: 0.1;
}
.subsidiary-plate1 {
  width: 100%;
  height: auto;
  padding: 1.05rem 0 0.5rem;
  background: #f7fafc;
}
.subsidiary-plate1 .plate1-main {
  display: none;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.subsidiary-plate1 .plate1-main .main-item {
  width: calc(100% / 3 - 0.3734rem);
  height: auto;
  margin-right: 0.56rem;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.subsidiary-plate1 .plate1-main .main-item:nth-child(3n) {
  margin-right: 0;
}
.subsidiary-plate1 .plate1-main .main-item .item-pic {
  width: 100%;
  height: 3.1rem;
  overflow: hidden;
}
.subsidiary-plate1 .plate1-main .main-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.subsidiary-plate1 .plate1-main .main-item .item-cent {
  width: 100%;
  height: auto;
  padding: 0.35rem 0.4rem;
  background: #fff;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.subsidiary-plate1 .plate1-main .main-item .item-cent .cent-title {
  height: auto;
  font-size: var(--fs22);
  line-height: 0.36rem;
  text-align: center;
  color: #333333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.subsidiary-plate1 .plate1-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);
}
.subsidiary-plate1 .plate1-main .main-item:hover .item-cent {
  background: linear-gradient(90deg, #ca3526, #f03625);
}
.subsidiary-plate1 .plate1-main .main-item:hover .item-cent .cent-title {
  color: #fff;
}
.subsidiary-plate1 .plate1-cont {
  width: 100%;
  height: auto;
}
.subsidiary-plate1 .plate1-cont .page-title {
  text-align: center;
}
.subsidiary-plate1 .plate1-cont .page-heng {
  margin: 0.25rem auto 0;
}
.subsidiary-plate1 .plate1-cont .cont-swiper {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide {
  width: 4.5rem;
  height: 2.98rem;
  margin: 0 0.175rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide .slide-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide .slide-box .box-pic {
  width: 100%;
  height: 100%;
  border-radius: 0.15rem;
  background: #000;
  overflow: hidden;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide .slide-box .box-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide .slide-box .box-cent {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.2rem;
  font-size: var(--fs24);
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide .slide-box:hover .box-pic img {
  opacity: 0.5;
  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);
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide .slide-box:hover .box-cent {
  opacity: 1;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide-active .slide-box {
  transform: scale(0.9, 0.9) translateZ(0);
  -o-transform: scale(0.9, 0.9) translateZ(0);
  -moz-transform: scale(0.9, 0.9) translateZ(0);
  -webkit-transform: scale(0.9, 0.9) translateZ(0);
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide-active .swiper-slide-shadow-left,
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-slide-active .swiper-slide-shadow-right {
  background: none;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button {
  display: flex;
  justify-content: space-between;
  width: 1.2rem;
  height: auto;
  margin: 0.32rem auto 0;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-prev,
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-next {
  position: relative;
  width: 0.5rem;
  height: 0.51rem;
  cursor: pointer;
  outline: none;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-prev img,
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-next img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-prev .img2,
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-next .img2 {
  opacity: 0;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-prev:hover .img1,
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-next:hover .img1 {
  opacity: 0;
}
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-prev:hover .img2,
.subsidiary-plate1 .plate1-cont .cont-swiper .swiper-button .plate1-swiper-button-next:hover .img2 {
  opacity: 1;
}
.prompt {
  width: 100%;
  height: auto;
  margin-top: 1.04rem;
  padding: 1.2rem 0 1.3rem;
}
.prompt .prompt-main {
  width: 15.36rem;
  height: auto;
  margin: 0 auto;
}
.prompt .prompt-main .main-title {
  font-size: var(--fs36);
  font-weight: bold;
  text-align: center;
  color: #333;
}
.prompt .prompt-main .main-cent {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
}
.search {
  width: 100%;
  height: auto;
  padding: 1.5rem 0 1.2rem;
}
.search .search-main .main-top {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
}
.search .search-main .main-top a {
  width: auto;
  height: 0.5rem;
  padding: 0 0.3rem;
  margin-right: 0.3rem;
  font-size: 0.16rem;
  line-height: 0.45rem;
  color: #fff;
  background: #ca3526;
  border: solid 2px #ca3526;
  border-radius: 0.1rem;
}
.search .search-main .main-top a:hover {
  color: #ca3526;
  background: transparent;
}
.search .search-main .main-cont {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-size: 0.16rem;
  color: #000;
}
.search .search-main .main-cont span {
  margin-right: 0.3rem;
}
.search .search-main .main-cont b {
  color: #cd0000;
}
.search .search-main .main-box {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.search .search-main .main-box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0.5rem;
  border-bottom: 1px dashed #eee;
}
.search .search-main .main-box a p {
  width: 100%;
  font-size: 0.16rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search .search-main .main-box a:first-of-type {
  border-top: 1px dashed #eee;
}
.search .search-main .main-box a:hover p {
  color: #ca3526;
}
.page-pic-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.page-pic-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 0.2rem;
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.page-pic-main .main-hide {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-pic-main .main-hide img {
  width: 100%;
}
.page-pic-main .main-hide:hover {
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.page-pic-main .main-title {
  font-size: var(--fs20);
  color: #fff;
}
.page-pic-main .main-swiper1 {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.page-pic-main .main-swiper1 .swiper-slide {
  width: 100%;
  height: 6.5rem;
}
.page-pic-main .main-swiper1 .swiper-slide .slide-pic {
  width: 10rem;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.page-pic-main .main-swiper1 .swiper-slide .slide-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-pic-main .main-swiper2 {
  width: 12rem;
  height: auto;
  margin: 0.5rem auto 0;
  overflow: hidden;
}
.page-pic-main .main-swiper2 .swiper-slide {
  width: calc(100% / 10 - 0.135rem);
  height: auto;
  margin-right: 0.15rem;
  border: solid 2px #fff;
  opacity: 0.8;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-pic-main .main-swiper2 .swiper-slide:last-of-type {
  margin-right: 0;
}
.page-pic-main .main-swiper2 .swiper-slide .slide-pic {
  width: 100%;
  height: 0.8rem;
  overflow: hidden;
  cursor: pointer;
}
.page-pic-main .main-swiper2 .swiper-slide .slide-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-pic-main .main-swiper2 .swiper-slide-on {
  border: solid 2px #ca3526;
  opacity: 1;
}
.page-pic-main .pic-swiper-button-prev,
.page-pic-main .pic-swiper-button-next {
  position: absolute;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  outline: none;
  cursor: pointer;
  z-index: 9;
}
.page-pic-main .pic-swiper-button-prev img,
.page-pic-main .pic-swiper-button-next img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-pic-main .pic-swiper-button-prev .img2,
.page-pic-main .pic-swiper-button-next .img2 {
  opacity: 0;
}
.page-pic-main .pic-swiper-button-prev:hover .img1,
.page-pic-main .pic-swiper-button-next:hover .img1 {
  opacity: 0;
}
.page-pic-main .pic-swiper-button-prev:hover .img2,
.page-pic-main .pic-swiper-button-next:hover .img2 {
  opacity: 1;
}
.page-pic-main .pic-swiper-button-prev {
  left: 0.5rem;
}
.page-pic-main .pic-swiper-button-next {
  right: 0.5rem;
}
.page-pic-show {
  opacity: 1;
  visibility: visible;
}
.page-lump {
  display: flex;
  justify-content: flex-start;
}
.page-lump .lump-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% / 4 - 0.09rem);
  height: 1.5rem;
  padding: 0 0.35rem;
  margin-right: 0.12rem;
  border-radius: 0.15rem;
  background: url(../images/icon/icon-science-bg.png) no-repeat center center;
  background-size: 100%;
  overflow: hidden;
}
.page-lump .lump-item:last-of-type {
  margin-right: 0;
}
.page-lump .lump-item .item-cent {
  width: calc(100% - 0.7rem);
  height: auto;
  padding-top: 0.2rem;
}
.page-lump .lump-item .item-cent .cent-title {
  font-size: var(--fs28);
  letter-spacing: 0.02rem;
  color: #111;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-lump .lump-item .item-cent .cent-English {
  margin-top: 0.05rem;
  font-family: 'MONTSERRAT-LIGHT';
  font-size: var(--fs14);
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
}
.page-lump .lump-item .item-icon {
  position: relative;
  width: 0.64rem;
  height: 0.52rem;
}
.page-lump .lump-item .item-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-lump .lump-item .item-icon .img2 {
  opacity: 0;
}
.page-lump .lump-item:hover {
  background: linear-gradient(90deg, #003894, #0058dd);
}
.page-lump .lump-item:hover .item-cent .cent-title {
  color: #fff;
}
.page-lump .lump-item:hover .item-cent .cent-English {
  color: rgba(255, 255, 255, 0.6);
}
.page-lump .lump-item:hover .item-icon .img1 {
  opacity: 0;
}
.page-lump .lump-item:hover .item-icon .img2 {
  opacity: 1;
}
.page-lump .lump-item-on {
  background: linear-gradient(90deg, #003894, #0058dd);
}
.page-lump .lump-item-on .item-cent .cent-title {
  color: #fff;
}
.page-lump .lump-item-on .item-cent .cent-English {
  color: rgba(255, 255, 255, 0.6);
}
.page-lump .lump-item-on .item-icon .img1 {
  opacity: 0;
}
.page-lump .lump-item-on .item-icon .img2 {
  opacity: 1;
}
.page-heng {
  width: 0.5rem;
  height: 3px;
  margin-top: 0.2rem;
  background: #ca3526;
}
.page-title {
  font-size: var(--fs42);
  font-weight: bold;
  color: #2e2624;
}
.page-English {
  margin-top: -0.6rem;
  font-family: 'MONTSERRAT-BOLD';
  font-size: var(--fs46);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #fff;
  white-space: nowrap;
  -webkit-text-stroke: 1px #003894;
  opacity: 0.11;
}
.page-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1.8rem;
  height: 0.54rem;
  border-top-left-radius: 0.27rem;
  border-bottom-right-radius: 0.27rem;
  background: linear-gradient(90deg, #ca3526, #f03625);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.page-button span {
  position: relative;
  font-size: var(--fs16);
  color: #fff;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button em {
  position: relative;
  width: 0.18rem;
  height: 0.14rem;
  margin-left: 0.16rem;
  background: url(../images/icon/icon-arrow.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button:hover {
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0.27rem;
  border-top-right-radius: 0.27rem;
}
.page-button:hover em {
  margin-left: 0.1rem;
}
.page-button2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1.8rem;
  height: 0.54rem;
  border-top-left-radius: 0.27rem;
  border-bottom-right-radius: 0.27rem;
  border: solid 2px #cdcdcd;
}
.page-button2 span {
  position: relative;
  font-size: var(--fs16);
  color: #333;
  z-index: 9;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button2 em {
  position: relative;
  width: 0.18rem;
  height: 0.15rem;
  margin-left: 0.16rem;
  background: url(../images/icon/icon-arrow4.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-button2:hover {
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0.27rem;
  border-top-right-radius: 0.27rem;
  border: solid 2px #ca3526;
}
.page-button2:hover span {
  color: #ca3526;
}
.page-crumb .crumb-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-size: var(--fs18);
  font-weight: 100;
  color: #333;
}
.page-crumb .crumb-box .box-icon {
  width: 10px;
  margin-right: 0.15rem;
}
.page-crumb .crumb-box .box-icon img {
  display: block;
  width: 100%;
}
.page-crumb .crumb-box .box-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  font-size: var(--fs18);
  font-weight: 100;
  color: #ca3526;
}
.page-crumb .crumb-box .box-text a {
  color: #333;
}
.page-crumb .crumb-box .box-text a:hover {
  color: #ca3526;
  text-decoration: underline;
}
.page-crumb .crumb-box .box-text em {
  display: inline-block;
  width: 4px;
  height: 7px;
  margin: 0 0.15rem;
  background: url(../images/icon/icon-index-arrow.png) no-repeat center center;
  background-size: 100%;
}
.page-load {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
}
.page-load .load-icon {
  width: 0.34rem;
  height: 0.34rem;
  margin-right: 0.15rem;
  background: url(../images/icon/icon-load.png) no-repeat center center;
  background-size: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-load .load-title {
  font-size: var(--fs16);
  text-align: center;
  color: #ca3526;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-load:hover .load-icon {
  margin-right: 0.25rem;
}
.page-strip {
  position: relative;
  width: 100%;
  height: 0.9rem;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  z-index: 29;
}
.page-strip .strip-box {
  display: flex;
  justify-content: center;
  height: 100%;
}
.page-strip .strip-box .box-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  height: 100%;
  margin: 0 0.36rem;
  font-size: var(--fs18);
  text-align: center;
  color: #333;
}
.page-strip .strip-box .box-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ca3526;
  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;
}
.page-strip .strip-box .box-item:hover {
  color: #ca3526;
}
.page-strip .strip-box .box-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);
}
.page-strip .strip-box .box-item-on {
  font-weight: bold;
  color: #ca3526;
}
.page-strip .strip-box .box-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);
}
.page-Wnav {
  display: none;
}
.wrap {
  width: 15.38rem;
  height: auto;
  margin: 0 auto;
}
