.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.regular {
  font-family: "regular";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.font {
  font-family: Arial;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.mbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hidden-xs {
  display: block;
}
.hidden-pc {
  display: none;
}
.box-container {
  width: 16.8rem;
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.box-container-fluid {
  width: 100%;
  margin: 0 auto;
}
.medium-box-container {
  width: 80%;
  margin: 0 auto;
}
body {
  font-size: 16px;
  overflow-x: hidden;
}
.rl {
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
}
@font-face {
  font-family: "regular";
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mb";
  src: url('../fonts/MontserratBold.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mr";
  src: url('../fonts/Montserrat-Regular.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ba";
  src: url('../fonts/bahnschrift.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "light";
  src: url('../fonts/ALIBABA-PUHUITI-LIGHT.OTF');
  font-weight: normal;
  font-style: normal;
}
.pic {
  font-size: 0;
  overflow: hidden;
  display: block;
  width: 100%;
}
.pic img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.pic img.phone {
  display: none;
}
:root {
  --fs14: 14px;
  --fs16: 16px;
  --fs18: 18px;
  --fs20: 20px;
  --fs22: 22px;
  --fs24: 24px;
  --fs28: 28px;
  --fs30: 30px;
  --fs36: 36px;
  --fs40: 40px;
  --fs48: 48px;
}
.phone-nav {
  display: none;
}
.links {
  font-size: 0;
}
.links a {
  position: relative;
  font-size: var(--fs14);
  padding-right: 24px;
  margin-right: 22px;
  display: inline-block;
  font-family: "regular";
  vertical-align: top;
  line-height: 24px;
  color: #989898;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.links a:hover {
  color: #fff;
}
.links a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 1;
  width: 2px;
  height: 13px;
  background: #989898;
}
.links a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.links a:last-child:after {
  display: none;
}
.content,
.desc {
  text-align: justify;
}
.content img,
.content input[type="image"] {
  max-width: 100%;
  height: auto!important;
  display: block;
  margin: 0 auto;
}
.swiper-box {
  position: relative;
}
.header-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.header-wrapper.shadow {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.header-wrapper.on,
.header-wrapper.shadow,
.header-wrapper.active {
  background: #fff;
}
.header-wrapper.on .logo-box .init,
.header-wrapper.shadow .logo-box .init,
.header-wrapper.active .logo-box .init {
  display: none;
}
.header-wrapper.on .logo-box .on,
.header-wrapper.shadow .logo-box .on,
.header-wrapper.active .logo-box .on {
  display: block;
}
.header-wrapper.on .pc-nav-box > ul > li:hover > a,
.header-wrapper.shadow .pc-nav-box > ul > li:hover > a,
.header-wrapper.active .pc-nav-box > ul > li:hover > a,
.header-wrapper.on .pc-nav-box > ul > li.on > a,
.header-wrapper.shadow .pc-nav-box > ul > li.on > a,
.header-wrapper.active .pc-nav-box > ul > li.on > a {
  color: #7fbe26;
}
.header-wrapper.on .pc-nav-box > ul > li > a,
.header-wrapper.shadow .pc-nav-box > ul > li > a,
.header-wrapper.active .pc-nav-box > ul > li > a {
  color: #333;
}
.header-wrapper.on .search,
.header-wrapper.shadow .search,
.header-wrapper.active .search {
  background-image: url(../img/search2.png);
}
.header-wrapper.on .language .caption,
.header-wrapper.shadow .language .caption,
.header-wrapper.active .language .caption {
  color: #666;
}
.header-wrapper.on .language .caption:before,
.header-wrapper.shadow .language .caption:before,
.header-wrapper.active .language .caption:before {
  background-image: url(../img/lang2.png);
}
.header-wrapper.on .language .caption:after,
.header-wrapper.shadow .language .caption:after,
.header-wrapper.active .language .caption:after {
  background-image: url(../img/idown2.png);
}
.header-wrapper .box-container {
  height: 0.6rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.header-wrapper .logo-box {
  width: 0.74rem;
}
.header-wrapper .logo-box a {
  display: block;
}
.header-wrapper .logo-box img {
  width: 100%;
}
.header-wrapper .logo-box .init {
  display: block;
}
.header-wrapper .logo-box .on {
  display: none;
}
.header-wrapper .other-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.header-wrapper .search {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/search.png);
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.header-wrapper .language {
  position: relative;
  margin-left: 0.7rem;
}
.header-wrapper .language.on .caption:after {
  transform: rotateX(180deg);
}
.header-wrapper .language.on .list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.header-wrapper .language .caption {
  font-size: 14px;
  color: #fff;
  font-family: "regular";
  text-transform: uppercase;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  line-height: 0.6rem;
  cursor: pointer;
}
.header-wrapper .language .caption:before,
.header-wrapper .language .caption:after {
  content: "";
  display: inline-block;
  position: relative;
  vertical-align: middle;
  top: -1px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.header-wrapper .language .caption:before {
  width: 20px;
  height: 20px;
  margin-right: 0.13rem;
  background-image: url(../img/lang.png);
}
.header-wrapper .language .caption:after {
  width: 8px;
  height: 5px;
  background-image: url(../img/idown.png);
  margin-left: 0.15rem;
}
.header-wrapper .list {
  position: absolute;
  width: 130px;
  top: 100%;
  left: 50%;
  margin-left: -65px;
  z-index: 10;
  padding: 0.15rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.1rem);
  -webkit-transform: translateY(0.1rem);
  -moz-transform: translateY(0.1rem);
  -ms-transform: translateY(0.1rem);
  -o-transform: translateY(0.1rem);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.5);
}
.header-wrapper .list a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 0.36rem;
  padding: 0 0.15rem;
  text-align: center;
  font-family: "regular";
}
.header-wrapper .list a:hover,
.header-wrapper .list a.on {
  color: #7fbe26;
}
.pc-nav-box {
  flex: 1;
  margin: 0 0.75rem 0 1rem;
}
.pc-nav-box > ul {
  font-size: 0;
  text-align: right;
}
.pc-nav-box > ul > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 0.5rem;
}
.pc-nav-box > ul > li:last-child {
  margin-right: 0;
}
.pc-nav-box > ul > li:hover .nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.pc-nav-box > ul > li > a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #fff;
  height: 0.6rem;
  line-height: 0.6rem;
}
.pc-nav-box > ul > li > a:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #7fbe26;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.pc-nav-box > ul > li:hover > a,
.pc-nav-box > ul > li.on > a {
  color: #7fbe26;
}
.pc-nav-box > ul > li:hover > a:after,
.pc-nav-box > ul > li.on > a:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.pc-nav-box > ul > li:hover .hidebox {
  visibility: visible;
  z-index: 10;
  opacity: 1;
}
.pc-nav-box a {
  display: block;
  transition: color 0.4s ease;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  -ms-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
}
.pc-nav-box .nav {
  position: absolute;
  width: 160px;
  top: 100%;
  left: 50%;
  margin-left: -80px;
  z-index: 10;
  padding: 0.15rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.1rem);
  -webkit-transform: translateY(0.1rem);
  -moz-transform: translateY(0.1rem);
  -ms-transform: translateY(0.1rem);
  -o-transform: translateY(0.1rem);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.5);
}
.pc-nav-box .nav a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 0.36rem;
  padding: 0 0.15rem;
  text-align: center;
}
.pc-nav-box .nav a:hover,
.pc-nav-box .nav a.on {
  color: #7fbe26;
}
.pc-nav-box .nav a:hover:before,
.pc-nav-box .nav a.on:before {
  background: #7fbe26;
}
.pc-nav-box .hidebox {
  position: fixed;
  left: 0;
  top: 0.6rem;
  width: 100%;
  background-color: #fff;
  padding: 0.6rem 0;
  border-top: 1px solid #e5e5e5;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity 0.4s ease;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
}
.pc-nav-box .hidebox .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 14rem;
  margin: 0 auto;
}
.pc-nav-box .swiper-box {
  width: 30%;
  padding-right: 0.5rem;
}
.pc-nav-box .swiper-box .swiper-slide {
  overflow: hidden;
}
.pc-nav-box .swiper-box .swiper-slide:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.pc-nav-box .swiper-box .swiper-slide img {
  display: block;
  width: 100%;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.pc-nav-box .nav-box {
  width: 70%;
  border-left: 1px solid #e5e5e5;
}
.pc-nav-box .nav-box ul {
  height: 4.5rem;
}
.pc-nav-box .nav-box > ul {
  position: relative;
}
.pc-nav-box .nav-box > ul > li:hover .two {
  display: block;
}
.pc-nav-box .nav-box > ul > li:hover > a {
  color: #333;
}
.pc-nav-box .nav-box > ul > li:hover > a:before {
  width: 100%;
}
.pc-nav-box .nav-box > ul > li:hover > a:after {
  opacity: 0.5;
}
.pc-nav-box .nav-box > ul > li:hover > ul > li:hover > a,
.pc-nav-box .nav-box > ul > li:hover > ul ul li:hover > a {
  color: #333;
}
.pc-nav-box .nav-box > ul > li:hover > ul > li:hover > a:before,
.pc-nav-box .nav-box > ul > li:hover > ul ul li:hover > a:before {
  width: 100%;
}
.pc-nav-box .nav-box > ul > li:hover > ul > li:hover > a:after,
.pc-nav-box .nav-box > ul > li:hover > ul ul li:hover > a:after {
  opacity: 0.5;
}
.pc-nav-box .nav-box > ul > li > a,
.pc-nav-box .nav-box > ul ul a {
  color: #999;
  line-height: 0.3rem;
  padding: 0.1rem 0.3rem 0.1rem 0;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}
.pc-nav-box .nav-box > ul > li > a:before,
.pc-nav-box .nav-box > ul ul a:before {
  content: "";
  width: 0;
  height: 2px;
  background-color: #7fbe26;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
}
.pc-nav-box .nav-box > ul > li > a:after,
.pc-nav-box .nav-box > ul ul a:after {
  content: "";
  width: 9px;
  height: 100%;
  position: absolute;
  right: 0.1rem;
  top: 0;
  z-index: 10;
  background-image: url(../img/right2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.pc-nav-box .nav-box > ul > li > a {
  font-weight: 700;
  font-size: 0.17rem;
}
.pc-nav-box .nav-box li {
  text-align: left;
  width: 3.6rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.pc-nav-box .nav-box a {
  display: block;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.pc-nav-box .two,
.pc-nav-box .three {
  position: absolute;
  top: 0;
  z-index: 10;
  border-left: 1px solid #e5e5e5;
  display: none;
}
.pc-nav-box .two {
  left: 3.6rem;
  width: 95%;
}
.pc-nav-box .two > li:hover ul {
  display: block;
}
.pc-nav-box .two > li > a {
  font-size: 0.15rem;
}
.pc-nav-box .three {
  left: 3.6rem;
}
.footer-nav-box {
  width: 61.9%;
}
.footer-nav-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-nav-box a {
  display: block;
  line-height: 0.3rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  font-family: "regular";
}
.footer-nav-box li > a {
  font-size: var(--fs18);
  color: #fff;
  margin-bottom: 0.2rem;
}
.footer-nav-box li > a:last-child {
  margin-bottom: 0;
}
.footer-nav-box .nav a {
  color: #666;
  font-size: var(--fs16);
}
.footer-nav-box .nav a:hover {
  color: #7fbe26;
}
.footer-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 0 1.44rem;
  background-color: #000;
}
.footer-wrapper > div {
  position: relative;
  z-index: 10;
}
.footer-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-wrapper .copyright,
.footer-wrapper .copyright a {
  font-size: var(--fs16);
  color: #989898;
  font-family: "regular";
}
.footer-wrapper .copyright {
  line-height: 24px;
  max-width: 60%;
}
.footer-wrapper .copyright a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.footer-wrapper .copyright a:hover {
  color: #fff;
}
.footer-wrapper .contact-box {
  text-align: right;
}
.footer-wrapper .contact-box > p {
  font-size: var(--fs18);
  color: #565655;
  line-height: 24px;
  margin-bottom: 0.1rem;
}
.footer-wrapper .tel {
  font-size: var(--fs30);
  color: #fff;
  line-height: 0.36rem;
  font-family: "mb";
  margin-bottom: 0.58rem;
}
.footer-wrapper .qrcode ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.footer-wrapper .qrcode li {
  width: 1.3rem;
  display: block;
  text-align: center;
  margin-right: 0.52rem;
}
.footer-wrapper .qrcode li:last-child {
  margin-right: 0;
}
.footer-wrapper .qrcode li img {
  display: block;
  width: 100%;
}
.footer-wrapper .qrcode p {
  font-size: var(--fs14);
  color: #999;
  line-height: 24px;
  font-family: "regular";
  margin-top: 0.15rem;
}
.footer-wrapper .box-2 {
  margin-top: 0.56rem;
}
.footer-wrapper #webgl {
  position: absolute;
  left: 0;
  bottom: -35%;
  z-index: 0;
  width: 100%;
  height: 90%;
  opacity: 0.4;
}
.search-form {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0.6rem;
  background: #fff;
  z-index: 30;
  padding: 0.5rem 0;
  display: none;
  border-top: 1px solid #eaeaea;
  box-shadow: 0 24px 30px rgba(0, 0, 0, 0.04);
  /* input placeholder  */
}
.search-form .main {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  width: 9.6rem;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
}
.search-form .keywords {
  flex: 1;
  overflow: hidden;
  line-height: 0.56rem;
  margin-left: 20px;
  font-size: var(--fs15);
  color: #999;
}
.search-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: 14px;
}
.search-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  font-size: 14px;
}
.search-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: 14px;
}
.search-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: 14px;
}
.search-form .close {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 10;
  color: #999;
  margin-top: -0.15rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/close.png) no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.search-form .close:hover {
  color: #7fbe26;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.index-banner-wrapper .index-banner-swiper .swiper-slide-active img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.index-banner-wrapper .swiper-slide {
  overflow: hidden;
}
.index-banner-wrapper .swiper-slide a {
  display: block;
}
.index-banner-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  transition: transform 6s ease;
  -webkit-transition: transform 6s ease;
  -moz-transition: transform 6s ease;
  -ms-transition: transform 6s ease;
  -o-transition: transform 6s ease;
}
.index-banner-wrapper .swiper-slide img.phone {
  display: none;
}
.index-banner-wrapper .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-banner-wrapper .swiper-pagination-bullet svg {
  width: 0.38rem;
  height: 0.38rem;
  position: absolute;
  top: 50%;
  margin-top: -0.19rem;
  left: 50%;
  margin-left: -0.19rem;
}
.index-banner-wrapper .swiper-pagination-bullet svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.index-banner-wrapper .swiper-pagination-bullet {
  fill: none;
}
.index-banner-wrapper .circle-chart__circle {
  stroke-linecap: square;
  fill: none;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__background {
  stroke: rgba(255, 255, 255, 0.2);
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__circle {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: square;
  fill: none;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -moz-transform-origin: center;
}
.index-banner-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 3.8s linear reverse;
  -moz-animation: circle-chart-fill 3.8s linear reverse;
  -webkit-animation: circle-chart-fill 3.8s linear reverse;
  -ms-animation: circle-chart-fill 3.8s linear reverse;
}
.index-banner-wrapper .swiper-pagination-bullet.one.swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 2.4s linear reverse;
  -moz-animation: circle-chart-fill 2.4s linear reverse;
  -webkit-animation: circle-chart-fill 2.4s linear reverse;
  -ms-animation: circle-chart-fill 2.4s linear reverse;
}
.index-banner-wrapper .swiper-pagination {
  bottom: 0.64rem;
  text-align: right;
  padding: 0 calc((100% - 16.8rem) / 2);
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.17rem;
  opacity: 1;
}
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:focus,
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:active,
.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:link {
  outline: none;
}
.swiper-btn {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.index-title-box {
  text-align: center;
  padding-top: 1.12rem;
  margin-bottom: 0.52rem;
}
.index-title-box h3 {
  color: #e6e6e6;
  font-size: var(--fs48);
  font-family: "regular";
  font-weight: 700;
  line-height: 0.6rem;
}
.index-title-box p {
  font-size: var(--fs16);
  color: #666;
  font-family: "mr";
  text-transform: uppercase;
  line-height: 0.24rem;
  margin-top: 0.08rem;
}
.index-more {
  display: block;
  width: 1.6rem;
  height: 0.5rem;
  line-height: 0.46rem;
  border-radius: 25px;
  border: solid 0.02rem #7fbe26;
  text-align: center;
  font-family: "mr";
  color: #7fbe26;
  font-size: var(--fs14);
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.index-more:hover {
  color: #fff;
  background-color: #7fbe26;
}
.index-more.white {
  border-color: #fff;
  color: #fff;
}
.index-more.white:hover {
  background-color: #fff;
  color: #7fbe26;
}
.learn {
  display: inline-block;
  color: #7fbe26;
  border-bottom: 1px solid #7fbe26;
  line-height: 0.2rem;
  font-size: var(--fs14);
}
.news-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.news-box .swiper-slide {
  width: 26.66%;
}
.news-box li {
  width: 28.57%;
  margin-right: 7.145%;
  margin-top: 0.9rem;
}
.news-box li:hover a {
  box-shadow: 1px 9px 24px 0px rgba(0, 0, 0, 0.14);
}
.news-box li,
.news-box .swiper-slide {
  background: #fff;
}
.news-box li:hover .pic img,
.news-box .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.news-box li:hover .title,
.news-box .swiper-slide:hover .title {
  color: #7fbe26;
}
.news-box li a,
.news-box .swiper-slide a {
  display: block;
  transition: box-shadow 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -ms-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
}
.news-box .pic img {
  height: 3.2rem;
  object-fit: cover;
}
.news-box .info {
  padding: 0.46rem 0.4rem 0.56rem;
}
.news-box .info div {
  font-family: "regular";
}
.news-box .title {
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.72rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: justify;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.news-box .desc {
  color: #999;
  line-height: 0.24rem;
  height: 0.72rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0.08rem auto 0.22rem;
}
.news-box .time {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.24rem;
}
.data {
  position: absolute;
  left: 0;
  bottom: 0.86rem;
  z-index: 10;
  width: 100%;
}
.data ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.data p,
.data span,
.data i,
.data em {
  color: #fff;
  display: inline-block;
}
.data i,
.data em {
  font-style: normal;
  margin-left: 0.08rem;
}
.data p,
.data em {
  font-family: "regular";
}
.data p {
  font-size: var(--fs16);
  line-height: 0.24rem;
  margin-bottom: 0.1rem;
}
.data .num span {
  font-size: 0.5rem;
  font-family: "mb";
  height: 0.5rem;
  line-height: 0.5rem;
}
.data i {
  font-size: var(--fs24);
  font-family: Arial;
  line-height: 0.16rem;
  height: 0.16rem;
  font-weight: 700;
  vertical-align: top;
  position: relative;
  top: 2px;
}
.data em {
  font-size: var(--fs16);
  font-family: "regular";
  line-height: 0.24rem;
}
.cat-box {
  text-align: center;
}
.cat-box a {
  position: relative;
  display: inline-block;
  font-size: var(--fs24);
  color: #999;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  margin-right: 0.56rem;
  padding-bottom: 0.08rem;
  line-height: 0.3rem;
  font-family: "regular";
}
.cat-box a:last-child {
  margin-right: 0;
}
.cat-box a.on,
.cat-box a:hover {
  color: #fff;
}
.cat-box a.on:after,
.cat-box a:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.cat-box a:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #7fbe26;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.index-box-1 {
  padding-bottom: 2.92rem;
  background-image: url(../img/indexbg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.index-box-1 .box-container {
  position: relative;
}
.index-box-1 .index-title-box {
  text-align: left;
  padding-top: 0.8rem;
}
.index-box-1 .cat-box {
  position: absolute;
  left: 50%;
  top: 1.15rem;
  z-index: 10;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.index-box-1 .index-more {
  position: absolute;
  right: 0;
  top: 1.04rem;
  z-index: 10;
}
.index-box-1 .phone-detail-box {
  display: none;
}
.index-box-1 .pc-detail-box .info {
  margin-top: 0.1rem;
}
.index-box-1 .pc-detail-box ul {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.index-box-1 .pc-detail-box li {
  text-align: center;
  border-radius: 0.1rem;
  overflow: hidden;
  width: 24.115%;
  margin-right: 1.18%;
  margin-top: 1.18%;
}
.index-box-1 .pc-detail-box li:nth-child(4n) {
  margin-right: 0;
}
.index-box-1 .pc-detail-box li:nth-child(-n+4) {
  margin-top: 0;
}
.index-box-1 .pc-detail-box li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-1 .pc-detail-box li:hover .name {
  color: #fff;
}
.index-box-1 .pc-detail-box li:hover .learn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.index-box-1 .pc-detail-box li a {
  display: block;
  background-image: url(../img/index2_bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0.4rem 0.28rem 0.2rem;
}
.index-box-1 .item {
  display: none;
}
.index-box-1 .pic img {
  height: 3.5rem;
  object-fit: contain;
}
.index-box-1 .name {
  font-size: 0.22rem;
  color: #cececf;
  font-family: "regular";
  line-height: 0.3rem;
  height: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.index-box-1 .learn {
  margin-top: 0.06rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.3rem);
  -webkit-transform: translateY(0.3rem);
  -moz-transform: translateY(0.3rem);
  -ms-transform: translateY(0.3rem);
  -o-transform: translateY(0.3rem);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.index-box-2 {
  position: relative;
  margin-top: -2.92rem;
  z-index: 1;
}
.index-box-2 ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  background: #000;
}
.index-box-2 li {
  position: relative;
  width: 50%;
}
.index-box-2 li:hover .pic:before {
  opacity: 1;
  visibility: visible;
}
.index-box-2 li:hover .icon:before,
.index-box-2 li:hover .icon:after {
  animation: iconScale 2s linear infinite;
}
.index-box-2 li:hover .icon:after {
  animation-delay: 0.5s;
}
.index-box-2 .pic {
  position: relative;
}
.index-box-2 .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.index-box-2 .info {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  padding: 0 0.8rem;
  text-align: center;
}
.index-box-2 .icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin: 0 auto;
}
.index-box-2 .icon:before,
.index-box-2 .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
}
.index-box-2 .icon img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.index-box-2 .name {
  color: #fff;
  font-size: var(--fs36);
  font-family: "regular";
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.48rem;
  margin-top: 0.7rem;
}
.index-box-2 .en {
  font-size: var(--fs16);
  font-family: "mr";
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 0.24rem;
  margin: 0.2rem auto 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 0.48rem;
}
.index-box-2 .index-more {
  margin: 0 auto;
}
.index-box-3 {
  position: relative;
  background-color: #000;
}
.index-box-3 .brief {
  font-size: var(--fs16);
  color: #999;
  text-align: center;
  line-height: 0.3rem;
  font-family: "regular";
  width: 71.9%;
  margin: 0 auto;
}
.index-box-3 .index-more {
  margin: 0.45rem auto 0.68rem;
}
.index-box-4 {
  padding-bottom: 1.5rem;
  background-color: #000;
}
.index-box-4 .swiper-container {
  padding-left: 1.2rem;
}
.index-box-4 .bottom {
  margin-top: 1.04rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  width: calc(53.32% + 80px);
  margin-left: auto;
  margin-right: 2rem;
}
.index-box-4 .swiper-pagination {
  position: relative;
  width: 8.8rem;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}
.index-box-4 .swiper-pagination .swiper-pagination-progressbar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7fbe26;
  transform-origin: left center;
}
.index-box-5 {
  padding-bottom: 1.5rem;
  background-image: url(../img/index5bg.jpg);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.index-box-5 .caption {
  font-size: var(--fs30);
  color: #fff;
  line-height: 0.36rem;
  margin-bottom: 0.7rem;
  font-family: "regular";
  text-align: center;
}
.index-box-5 .caption em {
  display: inline-block;
  margin-left: 0.32rem;
}
.index-box-5 .swiper-box {
  padding: 0 0.93rem;
}
.index-box-5 .swiper-slide {
  background-image: url(../img/brandbg.png);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 0.1rem;
  overflow: hidden;
  width: 1.78rem;
}
.index-box-5 .swiper-slide:hover img {
  transform: scale(10.05rem);
  -webkit-transform: scale(10.05rem);
  -moz-transform: scale(10.05rem);
  -ms-transform: scale(10.05rem);
  -o-transform: scale(10.05rem);
}
.index-box-5 .swiper-slide img {
  display: block;
  width: 100%;
  height: 0.9rem;
  object-fit: contain;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.index-box-5 .swiper-btn {
  width: 0.5rem;
  height: 0.5rem;
}
.index-box-5 .prev {
  left: 0;
  background-image: url(../img/prev.png);
}
.index-box-5 .prev:hover {
  background-image: url(../img/prev2.png);
}
.index-box-5 .next {
  right: 0;
  background-image: url(../img/next.png);
}
.index-box-5 .next:hover {
  background-image: url(../img/next2.png);
}
.gotop {
  position: fixed;
  right: 0.46rem;
  bottom: 20%;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.gotop:after {
  position: absolute;
  font-family: "regular";
  content: "";
  background-image: url(../img/gotop.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
  text-align: center;
  left: 2px;
  top: 2px;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  cursor: pointer;
  display: block;
  background-size: 20px;
  z-index: 2;
  border-radius: 50%;
  transition: all 200ms linear 0s;
}
.gotop.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gotop svg.progress-circle path {
  stroke: #ccc;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.gotop svg {
  overflow: hidden;
  vertical-align: middle;
}
.gotop svg path {
  fill: none;
}
.page-banner-wrapper {
  position: relative;
}
.page-banner-wrapper .info,
.page-banner-wrapper .info2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.page-banner-wrapper .box-container {
  text-align: center;
}
.page-banner-wrapper .caption {
  color: #fff;
  font-family: "regular";
  letter-spacing: 0.08rem;
  font-size: var(--fs48);
  font-weight: 700;
  line-height: 0.6rem;
}
.page-banner-wrapper .index-more {
  font-weight: 500;
  font-family: "regular";
  margin: 0.55rem auto 0;
  font-size: var(--fs18);
}
.page-banner-wrapper .info h2 {
  font-size: var(--fs24);
  color: #7fbe26;
  line-height: 0.36rem;
  font-family: "regular";
  font-weight: 700;
}
.page-banner-wrapper .info .en {
  color: #fff;
  font-size: 0.6rem;
  line-height: 0.5rem;
  text-transform: uppercase;
  font-family: "regular";
  font-weight: 700;
  margin: 0.38rem auto 0.65rem;
}
.page-banner-wrapper .line {
  width: 0.6rem;
  height: 0.05rem;
  background-color: #7fbe26;
  margin: 0 auto;
}
.page-banner-wrapper .info2 h2 {
  color: #fff;
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-family: "regular";
  font-weight: 700;
  letter-spacing: 0.03rem;
  margin: 0.28rem auto 0.54rem;
}
.page-banner-wrapper .info2 .brief {
  font-size: var(--fs30);
  color: #fff;
  line-height: 0.36rem;
  font-family: "regular";
  margin-top: 0.5rem;
}
.page-banner-wrapper .info2 .en {
  font-size: var(--fs48);
  color: #7fbe26;
  font-family: "mb";
  text-transform: uppercase;
  line-height: 0.48rem;
}
.page-banner-wrapper .border {
  width: 1px;
  height: 0.4rem;
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  z-index: 10;
  background-color: #49bb77;
}
.successful-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 50;
  width: 4rem;
  height: 4rem;
  margin-top: -2rem;
  margin-left: -2rem;
  background-color: #fff;
  text-align: center;
  padding: 0.6rem 0.4rem 0;
  display: none;
}
.successful-modal .index-more {
  font-size: var(--fs16);
  color: #fff;
  background-color: #7fbe26;
  margin: 0 auto;
  font-family: "regular";
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.successful-modal .index-more:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.successful-modal .index-more img {
  position: relative;
  vertical-align: middle;
  top: -1px;
  margin-right: 0.06rem;
}
.successful-modal .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-family: "regular";
  margin: 0.3rem auto 0.24rem;
}
.successful-modal .brief {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.36rem;
  text-align: center;
  margin: 0.2rem auto 0.32rem;
}
.successful-modal .line {
  width: 0.48rem;
  height: 0.05rem;
  background-color: #7fbe26;
  margin: 0 auto;
}
.form-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  display: none;
}
.form-modal .box {
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.form-modal .main {
  position: relative;
  width: 12rem;
  margin: 0 auto;
  padding: 0.5rem 1rem 0.6rem;
  background-color: #fff;
}
.form-modal .title-box {
  position: relative;
  text-align: center;
  margin-bottom: 0.2rem;
}
.form-modal .title-box .line {
  width: 0.48rem;
  height: 0.05rem;
  background-color: #7fbe26;
  margin: 0.24rem auto 0;
}
.form-modal .title-box h1,
.form-modal .title-box .line {
  position: relative;
  z-index: 10;
}
.form-modal h1 {
  font-size: var(--fs36);
  color: #000;
  font-family: "regular";
  line-height: 0.48rem;
}
.form-modal .en {
  position: absolute;
  left: 0;
  bottom: -0.06rem;
  z-index: 0;
  width: 100%;
  font-size: 0.72rem;
  color: #f6f6f6;
  line-height: 0.6rem;
  font-family: "mb";
  text-transform: uppercase;
}
.form-modal .brief {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.36rem;
  text-align: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #e0e0e0;
}
.form-modal .form {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow: wrap;
  margin-top: 0.52rem;
  padding-right: 0.3rem;
}
.form-modal .form span {
  width: 1.24rem;
  font-size: var(--fs16);
  text-align: right;
  padding-right: 0.18rem;
}
.form-modal .form span i {
  color: #ff2100;
}
.form-modal .form .text {
  background-color: #f5f5f7;
  line-height: 0.5rem;
  padding: 0 0.2rem;
  width: calc(100% - 1.24rem);
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.form-modal .form .text:focus {
  background-color: rgba(127, 190, 38, 0.3);
}
.form-modal .group {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  margin-bottom: 0.4rem;
}
.form-modal .group:nth-child(odd) {
  width: 4.3rem;
}
.form-modal .group:nth-child(even) {
  width: 5.2rem;
}
.form-modal .group.max {
  width: 100%;
  margin-bottom: 0.56rem;
}
.form-modal .index-more {
  font-size: var(--fs16);
  color: #fff;
  background-color: #7fbe26;
  margin: 0 auto;
  font-family: "regular";
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.form-modal .index-more:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.form-modal .close {
  position: absolute;
  right: 0.2rem;
  top: 0.26rem;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/close2.png);
  width: 0.28rem;
  height: 0.28rem;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.form-modal .close:hover {
  transform: rotate(-90deg);
}
.address select {
  font-size: var(--fs16);
  width: 1.2rem;
  height: 0.5rem;
  border: solid 1px #e6e6e6;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  outline: none;
  cursor: pointer;
  padding-left: 0.05rem;
  background: url(../img/idown3.png) no-repeat scroll right 0.05rem center #fff;
}
.radio-box input {
  display: none;
}
.radio-box input:checked + label:after {
  background-color: #7fbe26;
  border-color: #7fbe26;
}
.radio-box label {
  position: relative;
  cursor: pointer;
  font-size: var(--fs16);
  margin-right: 0.24rem;
}
.radio-box label:last-child {
  margin-right: 0;
}
.radio-box label:after {
  content: "";
  width: 0.16rem;
  height: 0.16rem;
  border: solid 0.02rem #ccc;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 0.1rem;
}
.page-title {
  font-size: var(--fs48);
  color: #010101;
  font-weight: 700;
  font-family: "regular";
  line-height: 0.6rem;
  text-align: center;
  margin-bottom: 0.43rem;
}
.page-box {
  padding: 0.8rem 0 1.4rem;
}
.job-wrapper .quick-box {
  position: relative;
  z-index: 20;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
  margin-bottom: 0.6rem;
  /* input placeholder  */
}
.job-wrapper .quick-box .group {
  position: relative;
  width: 14.28%;
  margin-right: 0.2rem;
}
.job-wrapper .quick-box .group.search {
  width: 25.95%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.job-wrapper .quick-box .group:last-child {
  margin-right: 0;
}
.job-wrapper .quick-box .submit {
  display: block;
  width: 1.1rem;
  height: 0.62rem;
  line-height: 0.62rem;
  background-color: #7fbe26;
  text-align: center;
  color: #fff;
  font-size: var(--fs16);
  font-family: "regular";
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: box-shadow 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -ms-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
}
.job-wrapper .quick-box .submit:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.job-wrapper .quick-box .caption,
.job-wrapper .quick-box .text {
  font-size: var(--fs16);
  color: #666;
  height: 0.62rem;
  line-height: 0.6rem;
  background-color: #fff;
  border: solid 1px #dcdcdc;
  border-radius: 5px;
  font-family: "regular";
}
.job-wrapper .quick-box .caption {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 0 0.48rem 0 0.2rem;
}
.job-wrapper .quick-box .caption.on:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.job-wrapper .quick-box .caption:after {
  content: "";
  display: block;
  width: 0.17rem;
  height: 100%;
  background: url(../img/idown4.png) no-repeat left center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 0;
  z-index: 10;
}
.job-wrapper .quick-box .text {
  padding: 0 0.2rem;
  width: calc(100% - 1.1rem);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.job-wrapper .quick-box ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #666;
  font-size: var(--fs16);
}
.job-wrapper .quick-box :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
  font-size: var(--fs16);
}
.job-wrapper .quick-box ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
  font-size: var(--fs16);
}
.job-wrapper .quick-box :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #666;
  font-size: var(--fs16);
}
.job-wrapper .quick-box .list {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 3.1rem;
  overflow-y: auto;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  border: solid 1px #dcdcdc;
  display: none;
}
.job-wrapper .quick-box .list a {
  display: block;
  color: #666;
  font-family: "regular";
  font-size: var(--fs16);
  line-height: 0.61rem;
  padding: 0 0.2rem;
  border-bottom: solid 1px #dcdcdc;
}
.job-wrapper .quick-box .list a:hover,
.job-wrapper .quick-box .list a.on {
  color: #7fbe26;
  font-weight: 700;
}
.job-wrapper .quick-box .list a:last-child {
  border-bottom: none;
}
.job-wrapper .job-box .item {
  position: relative;
  background-color: #f5f5f5;
  margin-bottom: 0.2rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.job-wrapper .job-box .item.on {
  background-color: #fff;
  box-shadow: 0px 4px 25px 0px rgba(16, 16, 16, 0.1);
}
.job-wrapper .job-box .item.on .desc {
  display: none;
}
.job-wrapper .job-box .item.on .title {
  color: #7fbe26;
}
.job-wrapper .job-box .item.on .top {
  padding-bottom: 0;
  border-color: #7fbe26;
}
.job-wrapper .job-box .item.on .btn {
  background-color: #7fbe26;
}
.job-wrapper .job-box .item.on .btn:before,
.job-wrapper .job-box .item.on .btn:after {
  background-color: #fff;
}
.job-wrapper .job-box .item.on .btn:after {
  transform: rotate(90deg);
}
.job-wrapper .job-box .item:last-child {
  margin-bottom: 0;
}
.job-wrapper .job-box .top {
  position: relative;
  padding: 0.28rem 1.4rem 0.46rem 0.4rem;
  border-top: 2px solid #e7e7e7;
}
.job-wrapper .job-box .title {
  color: #17171d;
  font-size: 0.22rem;
  line-height: 0.36rem;
  font-family: "regular";
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  width: 325px;
  margin-bottom: 0.2rem;
}
.job-wrapper .job-box .other {
  position: absolute;
  left: 370px;
  top: 0.28rem;
  z-index: 10;
}
.job-wrapper .job-box .other span {
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  font-family: "regular";
  margin: 0 0.14rem;
}
.job-wrapper .job-box .other span:first-child {
  margin-left: 0;
}
.job-wrapper .job-box .other span:last-child {
  margin-right: 0;
}
.job-wrapper .job-box .desc {
  font-size: var(--fs16);
  color: rgba(0, 0, 0, 0.6);
  line-height: 0.3rem;
  font-family: "regular";
  max-height: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.job-wrapper .job-box .detail {
  display: none;
  padding: 0 1.2rem 0.36rem 0.4rem;
}
.job-wrapper .job-box .caption,
.job-wrapper .job-box .content {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--fs16);
  line-height: 0.3rem;
  font-family: "regular";
}
.job-wrapper .job-box .caption {
  font-weight: 700;
  margin-bottom: 0.32rem;
}
.job-wrapper .job-box .content {
  margin-bottom: 0.28rem;
}
.job-wrapper .job-box .content a:hover {
  color: #7fbe26;
}
.job-wrapper .job-box .content:last-child {
  margin-bottom: 0;
}
.job-wrapper .btn {
  position: absolute;
  right: 0.4rem;
  top: 0.35rem;
  z-index: 10;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  display: block;
  background-color: #fff;
  cursor: pointer;
}
.job-wrapper .btn:before,
.job-wrapper .btn:after {
  content: "";
  background-color: #7fbe26;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.job-wrapper .btn:before {
  width: 0.2rem;
  height: 0.04rem;
  margin-top: -0.02rem;
  margin-left: -0.1rem;
}
.job-wrapper .btn:after {
  height: 0.2rem;
  width: 0.04rem;
  margin-left: -0.02rem;
  margin-top: -0.1rem;
}
.contact-wrapper {
  padding-top: 0!important;
}
.contact-wrapper .box-1 {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f7;
}
.contact-wrapper .box-1 .info,
.contact-wrapper .box-1 .map {
  width: 50%;
}
.contact-wrapper .box-1 .map {
  position: relative;
  overflow: hidden;
  height: 9.2rem;
}
.contact-wrapper .box-1 .map > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-wrapper .box-1 .info {
  padding-right: 0.88rem;
  padding-left: calc((100% - 16.8rem) / 2);
}
.contact-wrapper .box-1 .info h1 {
  font-size: var(--fs40);
  font-family: "regular";
  font-weight: 700;
  line-height: 0.48rem;
  margin-bottom: 0.8rem;
}
.contact-wrapper .box-1 .item {
  margin-bottom: 0.45rem;
}
.contact-wrapper .box-1 .item:last-child {
  margin-bottom: 0;
}
.contact-wrapper .box-1 .item:first-child li:nth-child(odd) {
  width: 3rem;
  margin-right: 0.07rem;
}
.contact-wrapper .box-1 .item:first-child li:nth-child(even) {
  width: calc(100% - 3.07rem);
}
.contact-wrapper .box-1 .item:first-child li:nth-child(-n+2) {
  margin-top: 0;
}
.contact-wrapper .box-1 .item:nth-child(2) li {
  width: 3rem;
}
.contact-wrapper .box-1 .item:nth-child(2) li:nth-child(1) {
  width: 100%;
  margin-top: 0;
}
.contact-wrapper .box-1 .item:nth-child(2) li:nth-child(even) {
  margin-right: 0.07rem;
}
.contact-wrapper .box-1 .item .title {
  font-size: var(--fs24);
  font-family: "regular";
  line-height: 0.36rem;
  padding-bottom: 0.24rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #d8d8d8;
}
.contact-wrapper .box-1 .item ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.contact-wrapper .box-1 .item li {
  position: relative;
  padding-left: 0.78rem;
  margin-top: 0.27rem;
}
.contact-wrapper .box-1 .item .icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 0.6rem;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.contact-wrapper .box-1 .item p,
.contact-wrapper .box-1 .item .desc {
  font-size: var(--fs16);
  line-height: 0.3rem;
  font-family: "regular";
}
.contact-wrapper .box-1 .item .tel {
  font-size: 0.26rem;
  font-family: "regular";
  line-height: 0.3rem;
  font-weight: 700;
  color: #7fbe26;
}
.contact-wrapper .box-2 .en,
.contact-wrapper .box-3 .en {
  font-size: 0.6rem;
  color: #f5f5f7;
  text-transform: uppercase;
  font-family: "regular";
  font-weight: 700;
  line-height: 0.5rem;
}
.contact-wrapper .box-2 .title,
.contact-wrapper .box-3 .title {
  font-size: var(--fs36);
  color: #000;
  line-height: 0.48rem;
  font-family: "regular";
  font-weight: 700;
  margin: 0.04rem auto 0.18rem;
}
.contact-wrapper .box-2 .line,
.contact-wrapper .box-3 .line {
  width: 0.6rem;
  height: 0.05rem;
  background-color: #7fbe26;
}
.contact-wrapper .box-2 {
  margin-top: 1.4rem;
}
.contact-wrapper .box-2 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.contact-wrapper .box-2 .info,
.contact-wrapper .box-2 .form {
  width: 50%;
}
.contact-wrapper .box-2 .info {
  padding-right: 1.2rem;
}
.contact-wrapper .box-2 .info .brief {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.3rem;
  font-family: "regular";
  margin-top: 0.72rem;
}
.contact-wrapper .box-3 {
  padding: 1.2rem 0;
  background-color: rgba(251, 251, 251, 0.5);
}
.contact-wrapper .box-3 ul {
  margin-top: 0.72rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.contact-wrapper .box-3 li {
  width: 31%;
  margin-right: 3.5%;
  padding-bottom: 0.35rem;
  margin-top: 0.58rem;
  border-bottom: 1px solid #f1f1f1;
}
.contact-wrapper .box-3 li.last {
  margin-bottom: 0;
}
.contact-wrapper .box-3 li:hover .name {
  color: #7fbe26;
}
.contact-wrapper .box-3 li:nth-child(-n+3) {
  margin-top: 0;
}
.contact-wrapper .box-3 li:nth-child(3n) {
  margin-right: 0;
}
.contact-wrapper .box-3 .name {
  font-size: 0.22rem;
  color: #000;
  line-height: 0.3rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.contact-wrapper .box-3 .desc {
  color: #989898;
  line-height: 0.32rem;
  margin: 0.12rem auto 0.3rem;
}
.contact-wrapper .box-3 .more {
  color: #7fbe26;
  line-height: 0.24rem;
}
.contact-wrapper .box-3 .more img {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  margin-right: 10px;
}
.contact-wrapper .radio-box {
  background-color: #f5f5f7;
  height: 0.5rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  padding: 0 0.2rem;
}
.contact-wrapper .radio-box label {
  margin-right: 0.6rem;
}
.contact-wrapper .radio-box label:last-child {
  margin-right: 0;
}
.contact-wrapper .form {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow: wrap;
}
.contact-wrapper .form .left {
  width: 36.3%;
}
.contact-wrapper .form .right {
  width: 57.62%;
}
.contact-wrapper .form .group {
  margin-bottom: 0.15rem;
}
.contact-wrapper .form .group:last-child {
  margin-bottom: 0;
}
.contact-wrapper .form .tit {
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.24rem;
}
.contact-wrapper .form .tit img {
  vertical-align: middle;
  position: relative;
  top: -1px;
  z-index: 10;
  margin-right: 0.08rem;
}
.contact-wrapper .form .tit i {
  color: #f00;
}
.contact-wrapper .form .msg,
.contact-wrapper .form .text {
  width: 100%;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  background-color: #f5f5f7;
}
.contact-wrapper .form .text {
  height: 0.5rem;
  line-height: 0.5rem;
}
.contact-wrapper .form .msg {
  resize: none;
  height: 1.5rem;
  line-height: 0.3rem;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
.contact-wrapper .btn-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  margin-top: 0.56rem;
  width: 100%;
}
.contact-wrapper .btn-box a {
  width: 1.5rem;
  line-height: 0.5rem;
  border-radius: 25px;
  text-align: center;
  font-size: var(--fs16);
  color: #fff;
  font-family: "regular";
  transition: box-shadow 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -ms-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
}
.contact-wrapper .btn-box a:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.contact-wrapper .btn-box .submit {
  margin-right: 0.2rem;
  background-color: #7fbe26;
}
.contact-wrapper .btn-box .cancel {
  background-color: #dedede;
}
.news-wrapper {
  background-color: #f7f7f7;
}
.newsinfo-wrapper {
  position: relative;
  padding-top: 0.6rem;
}
.newsinfo-wrapper:before {
  content: "";
  width: 100%;
  height: 0.6rem;
  background: url(../img/newsinfobg.jpg) no-repeat center top;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.newsinfo-wrapper .top {
  text-align: center;
  padding: 0.85rem 0 0.6rem;
}
.newsinfo-wrapper .top h1 {
  font-size: var(--fs40);
  color: #404040;
  line-height: 0.48rem;
  margin-bottom: 0.4rem;
  font-family: "regular";
}
.newsinfo-wrapper .top .date {
  font-size: var(--fs20);
  line-height: 0.24rem;
  color: #ccc;
  font-family: "mr";
}
.newsinfo-wrapper .top .date img {
  margin-right: 0.12rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -2px;
  width: 0.16rem;
}
.newsinfo-wrapper .box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #f5f5f5;
}
.newsinfo-wrapper .box .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.newsinfo-wrapper .box .left {
  width: 80.95%;
  padding-bottom: 0.9rem;
  background-color: #fff;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.newsinfo-wrapper .box .left .main {
  width: calc(100% - 1.5rem);
  padding-right: 1.22rem;
}
.newsinfo-wrapper .box .content {
  border-top: 1px solid #f0f0f0;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.32rem;
  padding-top: 0.6rem;
  font-family: "regular";
}
.newsinfo-wrapper .box .content,
.newsinfo-wrapper .box .relative-box {
  padding-left: 1.3rem;
}
.newsinfo-wrapper .box .right {
  width: 19.05%;
  padding-top: 0.45rem;
  padding-left: 0.4rem;
  border-top: 0.04rem solid #7fbe26;
}
.newsinfo-wrapper .box .right .caption {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-family: "regular";
  color: #7fbe26;
  margin-bottom: 0.44rem;
}
.newsinfo-wrapper .box .right li {
  margin-bottom: 0.36rem;
}
.newsinfo-wrapper .box .right li:last-child {
  margin-bottom: 0;
}
.newsinfo-wrapper .box .right li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.newsinfo-wrapper .box .right li:hover .title {
  color: #7fbe26;
}
.newsinfo-wrapper .box .right li a {
  display: block;
}
.newsinfo-wrapper .box .right li .title {
  font-size: var(--fs14);
  color: #666;
  line-height: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 0.48rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  font-family: "regular";
  margin-top: 0.3rem;
}
.newsinfo-wrapper .relative-box {
  margin-top: 0.72rem;
}
.newsinfo-wrapper .relative-box p {
  background-color: #f7f7f7;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  padding: 0 0.2rem;
  margin-bottom: 0.1rem;
}
.newsinfo-wrapper .relative-box p:last-child {
  margin-bottom: 0;
}
.newsinfo-wrapper .relative-box p:hover {
  color: #7fbe26;
}
.newsinfo-wrapper .relative-box p:hover a:hover {
  color: #7fbe26;
}
.newsinfo-wrapper .relative-box p a {
  height: 0.48rem;
  line-height: 0.48rem;
  max-width: 85%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.newsinfo-wrapper .relative-box p,
.newsinfo-wrapper .relative-box p a {
  color: #666;
  font-size: var(--fs14);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.share-box {
  width: 1.5rem;
  position: sticky;
  height: 4.26rem;
  top: 1rem;
  border-top: 0.03rem solid #7fbe26;
}
.share-box a {
  display: block;
  line-height: 0.7rem;
  padding-left: 0.28rem;
  font-size: 0.16rem;
  color: #666;
  background-color: #fafafa;
  border-bottom: 1px solid #ebebeb;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.share-box a:hover {
  color: #7fbe26;
}
.share-box a.return {
  color: #fff !important;
  padding-left: 0;
  text-align: center;
  background-color: #7fbe26;
}
.share-box a.return img {
  margin-right: 0;
  margin-left: 10px;
  width: 0.17rem;
}
.share-box img {
  vertical-align: middle;
  width: 0.3rem;
  margin-right: 0.15rem;
}
.base-wrapper .box-1 {
  padding: 1.2rem 0 1.3rem;
  background: url(../img/commercialbg.jpg) no-repeat center center;
  background-size: cover;
}
.base-wrapper .box-1 .noSwiper .swiper-wrapper,
.base-wrapper .box-1 .noSwiper .swiper-container {
  overflow: inherit;
}
.base-wrapper .box-1 .swiper-slide {
  cursor: default;
  width: 21.6%;
  background-color: #fff;
  border-radius: 0.1rem;
  margin-right: 4.533%;
  text-align: center;
  padding: 0.88rem 0.36rem 0.54rem;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.base-wrapper .box-1 .swiper-slide:last-child {
  margin-right: 0;
}
.base-wrapper .box-1 .swiper-slide:hover {
  background-color: #7fbe26;
}
.base-wrapper .box-1 .swiper-slide:hover .icon .init {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  opacity: 0;
  visibility: hidden;
}
.base-wrapper .box-1 .swiper-slide:hover .icon .on {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.base-wrapper .box-1 .swiper-slide:hover .brief,
.base-wrapper .box-1 .swiper-slide:hover .name,
.base-wrapper .box-1 .swiper-slide:hover .title {
  color: #fff;
}
.base-wrapper .box-1 .key {
  font-family: "ba";
  color: rgba(214, 214, 214, 0.3);
  font-size: 2rem;
  line-height: 1.8rem;
  position: absolute;
  left: 0;
  top: 0.36rem;
  z-index: 0;
  width: 100%;
}
.base-wrapper .box-1 .icon,
.base-wrapper .box-1 .title,
.base-wrapper .box-1 .brief {
  position: relative;
  z-index: 10;
}
.base-wrapper .box-1 .icon {
  width: 0.55rem;
  height: 0.55rem;
  position: relative;
  display: block;
  margin: 0 auto;
}
.base-wrapper .box-1 .icon img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  display: block;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.base-wrapper .box-1 .icon .on {
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  opacity: 0;
  visibility: hidden;
}
.base-wrapper .box-1 .title,
.base-wrapper .box-1 .brief {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.base-wrapper .box-1 .title {
  font-size: var(--fs30);
  color: #7fbe26;
  line-height: 0.36rem;
  font-weight: 700;
  font-family: "regular";
  margin: 0.12rem auto;
}
.base-wrapper .box-1 .name {
  position: relative;
  z-index: 10;
  color: #191c22;
  font-size: var(--fs24);
  font-family: "regular";
  font-weight: 700;
  line-height: 0.36rem;
  margin: 0.2rem auto 0.34rem;
}
.base-wrapper .box-1 .brief {
  font-size: var(--fs16);
  color: #999;
  min-height: 0.9rem;
  font-family: "regular";
  line-height: 0.3rem;
}
.base-wrapper .box-1 .swiper-pagination {
  position: relative;
  width: 50%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0.8rem auto 0;
}
.base-wrapper .box-1 .swiper-pagination .swiper-pagination-progressbar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7fbe26;
  transform-origin: left center;
}
.base-wrapper .box-2 .pic {
  position: relative;
}
.base-wrapper .box-2 .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.base-wrapper .box-2 .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.base-wrapper .box-2 .info .inner {
  width: 56.25%;
  margin: 0 auto;
  text-align: center;
}
.base-wrapper .box-2 .title {
  font-size: var(--fs48);
  color: #fff;
  font-family: "regular";
  font-weight: 700;
  line-height: 0.6rem;
  letter-spacing: 2px;
}
.base-wrapper .box-2 .brief {
  font-size: var(--fs24);
  color: #fff;
  font-family: "regular";
  line-height: 0.36rem;
  margin-top: 0.58rem;
}
.tab-box {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
  overflow: hidden;
  padding: 0.32rem 0;
}
.tab-box a {
  position: relative;
  text-align: center;
  font-size: var(--fs18);
  color: #999;
  font-family: "regular";
  font-weight: 700;
  width: 20%;
  line-height: 0.45rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.tab-box a.on,
.tab-box a:hover {
  color: #7fbe26;
}
.tab-box a.on .icon .init,
.tab-box a:hover .icon .init {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  opacity: 0;
  visibility: hidden;
}
.tab-box a.on .icon .on,
.tab-box a:hover .icon .on {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.tab-box a:first-child:before,
.tab-box a:after {
  content: "";
  width: 1px;
  height: 0.3rem;
  background-color: #dfdfdf;
  position: absolute;
  top: 50%;
  margin-top: -0.15rem;
  z-index: 1;
}
.tab-box a:first-child:before {
  left: 0;
}
.tab-box a:after {
  right: 0;
}
.tab-box .icon {
  display: inline-block;
  margin-right: 0.32rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
  height: 0.45rem;
}
.tab-box .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
.tab-box .icon .on {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.smart-wrapper {
  padding-top: 0!important;
}
.smart-wrapper .box-2 .bigImg-swiper .info {
  padding-bottom: 2.55rem;
}
.smart-wrapper .box-2 .swiper-box {
  position: relative;
  z-index: 10;
  margin-top: -2.55rem;
}
.smart-wrapper .box-2 .swiper-box.center .swiper-wrapper {
  justify-content: center;
}
.smart-wrapper .box-2 .swiper-box .swiper-slide {
  width: 15.476%;
  text-align: center;
  margin-right: 1.4288%;
  background-color: #f3f3f3;
}
.smart-wrapper .box-2 .swiper-box .swiper-slide:last-child {
  margin-right: 0;
}
.smart-wrapper .box-2 .swiper-box .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.smart-wrapper .box-2 .swiper-box .pic img {
  height: 1.8rem;
  object-fit: cover;
}
.smart-wrapper .box-2 .swiper-box .info {
  display: block;
  height: auto;
  position: static;
  padding: 0.28rem 0 0.5rem;
}
.smart-wrapper .box-2 .swiper-box .info .name,
.smart-wrapper .box-2 .swiper-box .info .desc {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.smart-wrapper .box-2 .swiper-box .name {
  font-size: var(--fs24);
  font-family: "regular";
  line-height: 0.36rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.smart-wrapper .box-2 .swiper-box .line {
  width: 0.5rem;
  height: 0.02rem;
  background-color: #7fbe26;
  margin: 0.16rem auto 0.2rem;
}
.smart-wrapper .box-2 .swiper-box .desc {
  text-align: center;
  font-size: var(--fs16);
  color: #999;
  font-family: "regular";
  height: 1.04rem;
  overflow-y: auto;
  line-height: 0.26rem;
}
.smart-wrapper .box-2 .swiper-box .desc::-webkit-scrollbar {
  width: 3px;
  background-color: rgba(0, 0, 0, 0.15);
}
.smart-wrapper .box-2 .swiper-box .desc::-webkit-scrollbar-thumb {
  background-color: #7fbe26;
}
.smart-wrapper .btn-box {
  font-size: 0;
  text-align: center;
  margin-top: 0.33rem;
}
.smart-wrapper .btn-box a {
  position: static;
  width: 0.48rem;
  height: 0.48rem;
  transform: none;
}
.smart-wrapper .btn-box .prev {
  background-image: url(../img/prev3.png);
  margin-right: 0.64rem;
}
.smart-wrapper .btn-box .prev:hover {
  background-image: url(../img/prev4.png);
}
.smart-wrapper .btn-box .next {
  background-image: url(../img/next3.png);
}
.smart-wrapper .btn-box .next:hover {
  background-image: url(../img/next4.png);
}
.commercial-wrapper {
  padding-top: 0!important;
}
.commercial-wrapper .caption {
  font-size: var(--fs36);
  font-family: "regular";
  line-height: 0.36rem;
  text-align: center;
  margin-bottom: 0.64rem;
}
.commercial-wrapper .box-3 {
  margin-top: 1.2rem;
}
.commercial-wrapper .box-3 .main {
  position: relative;
}
.commercial-wrapper .box-3 ul {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  padding: 0 1.6rem 0 1.54rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow: wrap;
}
.commercial-wrapper .box-3 li {
  position: relative;
  width: 5rem;
  background-color: #fff;
  border-radius: 0.1rem;
  margin-top: 1.1rem;
  padding: 0.74rem 2.2rem 0.5rem 0.65rem;
  transition: box-shadow 0.32s ease;
  -webkit-transition: box-shadow 0.32s ease;
  -moz-transition: box-shadow 0.32s ease;
  -ms-transition: box-shadow 0.32s ease;
  -o-transition: box-shadow 0.32s ease;
}
.commercial-wrapper .box-3 li:nth-child(-n+2) {
  margin-top: 0;
}
.commercial-wrapper .box-3 li:hover {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.commercial-wrapper .box-3 li:hover .icon {
  transform: rotateY(180deg);
}
.commercial-wrapper .box-3 .title {
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-family: "regular";
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.commercial-wrapper .box-3 .desc {
  font-size: var(--fs16);
  color: #9a9a9a;
  line-height: 0.3rem;
  font-family: "regular";
  min-height: 1.2rem;
}
.commercial-wrapper .box-3 .icon {
  position: absolute;
  right: 0.96rem;
  top: 0.72rem;
  z-index: 10;
  width: 0.86rem;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.commercial-wrapper .box-4 {
  margin-top: 0.98rem;
}
.commercial-wrapper .box-4 .main {
  background-color: #eee;
  border-radius: 0.1rem;
  padding: 1.1rem 2.38rem 0.8rem 2.18rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.commercial-wrapper .box-4 .info {
  width: 38%;
  padding-top: 1.38rem;
}
.commercial-wrapper .box-4 .pic {
  width: 42.16%;
}
.commercial-wrapper .box-4 .title {
  font-size: var(--fs36);
  line-height: 0.4rem;
  font-family: "regular";
}
.commercial-wrapper .box-4 .desc {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.3rem;
  font-family: "regular";
  margin: 0.4rem auto 0.62rem;
}
.commercial-wrapper .box-4 .icon {
  width: 0.86rem;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.commercial-wrapper .box-4 ul {
  font-size: 0;
}
.commercial-wrapper .box-4 li {
  cursor: default;
  display: inline-block;
  text-align: center;
  margin-right: 0.4rem;
}
.commercial-wrapper .box-4 li:last-child {
  margin-right: 0;
}
.commercial-wrapper .box-4 li:hover .icon {
  transform: rotateY(180deg);
}
.commercial-wrapper .box-4 li p {
  font-size: var(--fs18);
  font-family: "regular";
  line-height: 0.24rem;
  margin-top: 0.2rem;
}
.public-wrapper .tab-box a:first-child:before,
.charging-wrapper .tab-box a:first-child:before,
.public-wrapper .tab-box a:last-child:after,
.charging-wrapper .tab-box a:last-child:after {
  display: none;
}
.public-wrapper .box-2 .pic,
.charging-wrapper .box-2 .pic {
  position: relative;
}
.public-wrapper .box-2 .info,
.charging-wrapper .box-2 .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.public-wrapper .box-2 .inner,
.charging-wrapper .box-2 .inner {
  width: 80%;
  text-align: center;
  margin: 0 auto;
}
.public-wrapper .box-2 .name,
.charging-wrapper .box-2 .name {
  font-size: var(--fs48);
  letter-spacing: 2px;
  color: #fff;
  font-family: "regular";
  font-weight: 700;
  line-height: 0.6rem;
}
.public-wrapper .box-2 .ename,
.charging-wrapper .box-2 .ename {
  font-size: var(--fs16);
  color: #fff;
  font-family: "mr";
  line-height: 0.24rem;
  margin: 0.12rem auto 0.38rem;
}
.public-wrapper .box-2 .desc,
.charging-wrapper .box-2 .desc {
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  font-family: "regular";
  font-size: var(--fs30);
  line-height: 0.36rem;
  margin-top: 0.65rem;
}
.public-wrapper .box-2 .line,
.charging-wrapper .box-2 .line {
  width: 0.4rem;
  height: 0.03rem;
  background-color: #7fbe26;
  margin: 0 auto;
}
.charging-wrapper .box-1 .swiper-slide {
  padding-top: 0.92rem;
}
.charging-wrapper .box-1 .icon {
  display: inline-block;
  height: 0.5rem;
  width: auto;
}
.charging-wrapper .box-1 .icon .init {
  position: relative;
}
.charging-wrapper .box-1 .brief {
  margin-top: 0.6rem;
}
.charging-wrapper .box-3 {
  margin-top: 1.36rem;
}
.charging-wrapper .box-3 > .pic li {
  position: absolute;
  z-index: 10;
  width: 3.06rem;
}
.charging-wrapper .box-3 > .pic li:hover .img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.charging-wrapper .box-3 > .pic li:first-child {
  left: 0.24rem;
  top: 16%;
}
.charging-wrapper .box-3 > .pic li:nth-child(2) {
  left: 22.92%;
  top: 5%;
}
.charging-wrapper .box-3 > .pic li:nth-child(2) .icon {
  margin-left: auto;
  margin-right: auto;
}
.charging-wrapper .box-3 > .pic li:nth-child(3) {
  left: 47.395%;
  top: 29%;
}
.charging-wrapper .box-3 > .pic li:nth-child(3) .icon {
  margin-left: 0;
}
.charging-wrapper .box-3 > .pic li:nth-child(4) {
  left: 66.5%;
  top: 37%;
}
.charging-wrapper .box-3 > .pic li:nth-child(4) .icon {
  margin-left: 0;
}
.charging-wrapper .box-3 > .pic .inner {
  width: 100%;
  background-image: url(../img/shadow.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 100%;
  height: 2.06rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  padding: 0.1rem 0.1rem 0.46rem 0.1rem;
}
.charging-wrapper .box-3 > .pic .img {
  width: 1.3rem;
  overflow: hidden;
  background-color: #fff;
}
.charging-wrapper .box-3 > .pic .img img {
  display: block;
  width: 100%;
  height: 1.5rem;
  object-fit: contain;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.charging-wrapper .box-3 > .pic .name {
  position: relative;
  z-index: 10;
  width: 1.55rem;
  font-size: var(--fs24);
  color: #666;
  line-height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 0.72rem;
  font-family: "regular";
  margin-left: -0.35rem;
}
.charging-wrapper .box-3 .icon {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin: -0.32rem 0 0 0.64rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.charging-wrapper .box-3 .icon:before,
.charging-wrapper .box-3 .icon:after {
  content: "";
  position: absolute;
  z-index: -10;
  border-radius: 50%;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  animation: iconScale2 5s linear infinite;
}
.charging-wrapper .box-3 .icon:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  animation-delay: 0.2s;
}
.charging-wrapper .box-3 .icon:after {
  left: 12.5%;
  top: 12.5%;
  width: 75%;
  height: 75%;
  background-color: #009eff;
  animation-delay: 0.5s;
}
.charging-wrapper .box-3 .icon img {
  width: 75%;
  margin: 0 auto;
  display: block;
}
.charging-wrapper .box-3 .pic {
  position: relative;
}
.charging-wrapper .box-3 .list {
  margin-top: 1.6rem;
}
.charging-wrapper .box-3 .list .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow: wrap;
}
.charging-wrapper .box-3 .list .item {
  width: 50%;
  position: relative;
}
.charging-wrapper .box-3 .list .item:hover .pic:before {
  background-color: rgba(0, 0, 0, 0.7);
}
.charging-wrapper .box-3 .list .item:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.charging-wrapper .box-3 .list .pic {
  position: relative;
}
.charging-wrapper .box-3 .list .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: background 0.4s ease;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  -ms-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
}
.charging-wrapper .box-3 .list .pic img {
  height: 5rem;
  object-fit: cover;
  transition-duration: 1.4s;
}
.charging-wrapper .box-3 .list .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.charging-wrapper .box-3 .list .inner {
  width: 100%;
  padding: 0 0.6rem;
}
.charging-wrapper .box-3 .list .title {
  font-size: var(--fs30);
  color: #fff;
  letter-spacing: 1px;
  font-family: "regular";
  line-height: 0.36rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.charging-wrapper .box-3 .list .desc {
  text-align: center;
  font-size: var(--fs18);
  color: #fff;
  line-height: 0.36rem;
  font-family: "regular";
}
.charging-wrapper .box-4 {
  margin-top: 1.5rem;
}
.relative-goods {
  padding: 0.92rem 0 1.55rem;
  background-color: #e9e9ea;
}
.relative-goods .swiper-slide {
  width: 30.95%;
  margin-right: 3.575%;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem 0 0.37rem;
}
.relative-goods .swiper-slide:last-child {
  margin-right: 0;
}
.relative-goods .swiper-slide:after {
  content: "";
  width: 0;
  height: 0.03rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #7fbe26;
  transition: width 1s ease;
  -webkit-transition: width 1s ease;
  -moz-transition: width 1s ease;
  -ms-transition: width 1s ease;
  -o-transition: width 1s ease;
}
.relative-goods .swiper-slide:hover:after {
  width: 100%;
}
.relative-goods .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.relative-goods .swiper-slide:hover .learn {
  color: #7fbe26;
  border-color: #7fbe26;
}
.relative-goods .swiper-slide:hover .name {
  color: #7fbe26;
}
.relative-goods .swiper-slide a {
  display: block;
}
.relative-goods .pic {
  width: 73%;
  margin: 0 auto;
}
.relative-goods .pic img {
  height: 3.8rem;
  object-fit: contain;
}
.relative-goods .info {
  padding: 0 0.6rem;
}
.relative-goods .name {
  font-size: var(--fs24);
  font-family: "regular";
  font-weight: 700;
  line-height: 0.36rem;
  height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 0.13rem auto;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.relative-goods .learn {
  color: #999;
  border-color: #999;
}
.relative-goods .swiper-btn {
  width: 0.48rem;
  height: 0.48rem;
  display: none;
  background-size: 100%;
}
.relative-goods .prev {
  left: -0.8rem;
  background-image: url(../img/prev3.png);
}
.relative-goods .prev:hover {
  background-image: url(../img/prev4.png);
}
.relative-goods .next {
  right: -0.8rem;
  background-image: url(../img/next3.png);
}
.relative-goods .next:hover {
  background-image: url(../img/next4.png);
}
.page-title-box {
  text-align: center;
  margin-bottom: 0.72rem;
}
.page-title-box .title {
  font-size: var(--fs48);
  font-family: "regular";
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.5rem;
}
.page-title-box p {
  line-height: 0.24rem;
  font-size: var(--fs16);
  color: #999;
  font-family: "mr";
  margin: 0.18rem auto 0.36rem;
}
.page-title-box .line {
  width: 0.4rem;
  height: 0.03rem;
  background-color: #7fbe26;
  margin: 0 auto;
}
.page-title-box .brief {
  font-size: 0.29rem;
  color: #231815;
  line-height: 0.36rem;
  letter-spacing: 1px;
  margin-top: 0.53rem;
}
.public-wrapper .box-1 .swiper-slide {
  padding-top: 0.63rem;
}
.public-wrapper .box-3 {
  position: relative;
}
.public-wrapper .box-3 .swiper-container {
  position: relative;
}
.public-wrapper .box-3 .swiper-container:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.public-wrapper .box-3 .swiper-container .swiper-slide {
  overflow: hidden;
}
.public-wrapper .box-3 .swiper-container .swiper-slide img {
  display: block;
  width: 100%;
}
.public-wrapper .box-3 .list {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.public-wrapper .box-3 .item {
  width: 33.33%;
  height: 100%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.public-wrapper .box-3 .item:last-child {
  border-right: none;
}
.public-wrapper .box-3 .item.on,
.public-wrapper .box-3 .item:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.public-wrapper .box-3 .item.on .title,
.public-wrapper .box-3 .item:hover .title {
  color: #7fbe26;
}
.public-wrapper .box-3 .inner {
  width: 100%;
  padding-right: 0.76rem;
  padding-left: 0.76rem;
  position: absolute;
  left: 0;
  bottom: 0.82rem;
  z-index: 10;
}
.public-wrapper .box-3 .key {
  font-size: 0.6rem;
  color: #fff;
  font-family: "mb";
  line-height: 0.5rem;
}
.public-wrapper .box-3 .title {
  position: relative;
  color: #fff;
  font-weight: 700;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  margin: 0.25rem auto 0.42rem;
}
.public-wrapper .box-3 .title:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.public-wrapper .box-3 .title span {
  display: inline-block;
  font-size: var(--fs24);
  font-family: "regular";
  line-height: 0.3rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #7fbe26;
}
.public-wrapper .box-3 .desc {
  font-size: var(--fs16);
  font-family: "regular";
  line-height: 0.3rem;
  color: #fff;
  width: 70.66%;
  height: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.public-wrapper .relative-goods .swiper-slide {
  width: 47.62%;
  margin-right: 4.76%;
}
.public-wrapper .relative-goods .swiper-slide:last-child {
  margin-right: 0;
}
.goodsinfo-wrapper .item,
.goodsinfo-wrapper > div {
  position: relative;
  z-index: 10;
}
.goodsinfo-wrapper .border {
  width: 1px;
  height: 0.4rem;
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  z-index: 10;
  background-color: #49bb77;
}
.goodsinfo-wrapper .box-1 .info {
  left: calc((100% - 16.8rem) / 2);
  width: 34.6875%;
}
.goodsinfo-wrapper .box-1 .info .title {
  font-size: var(--fs30);
  color: #7fbe26;
  line-height: 0.36rem;
}
.goodsinfo-wrapper .box-1 .info .brief {
  font-size: 0.5rem;
  color: #fff;
  font-family: "regular";
  line-height: 0.6rem;
  font-weight: 700;
  margin: 0.36rem auto 0.54rem;
}
.goodsinfo-wrapper .box-1 .info .desc {
  font-size: var(--fs24);
  color: #fff;
  line-height: 0.36rem;
  margin-top: 0.88rem;
}
.goodsinfo-wrapper .box-1 .info .desc span {
  display: inline-block;
  margin-right: 0.2rem;
}
.goodsinfo-wrapper .box-1 .info .desc span:last-child {
  margin-right: 0;
}
.goodsinfo-wrapper .box-1 .line {
  width: 0.6rem;
  height: 0.05rem;
  background-color: #7fbe26;
}
.goodsinfo-wrapper .box-2 .info {
  left: calc((100% - 16.8rem) / 2);
  width: 45%;
}
.goodsinfo-wrapper .box-2 .content li,
.goodsinfo-wrapper .box-2 .content {
  font-size: var(--fs16);
  color: #666;
  font-family: "regular";
}
.goodsinfo-wrapper .box-2 .content {
  line-height: 0.32rem;
}
.goodsinfo-wrapper .box-2 .content li {
  position: relative;
  padding-left: 0.36rem;
}
.goodsinfo-wrapper .box-2 .content li:before {
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  background-color: #fff;
  border: solid 0.03rem #7fbe26;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.1rem;
  z-index: 1;
  box-sizing: border-box;
}
.goodsinfo-wrapper .box-2 .title-box {
  margin-bottom: 0.52rem;
}
.goodsinfo-wrapper .box-2 .title-box .title {
  color: #333;
}
.goodsinfo-wrapper .box-3 .info {
  left: 15%;
  text-align: center;
  width: 70%;
}
.goodsinfo-wrapper .box-3 .info .title-box .title {
  margin-bottom: 0.1rem;
}
.goodsinfo-wrapper .box-3 .info .title-box .line {
  margin: 0 auto;
}
.goodsinfo-wrapper .box-3 .info .title-box .brief {
  margin-top: 0.3rem;
}
.goodsinfo-wrapper .box-3 .content ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  justify-content: center;
}
.goodsinfo-wrapper .box-3 .content li {
  display: inline-block;
  text-align: center;
  width: 18%;
  margin-top: 1rem;
}
.goodsinfo-wrapper .box-3 .content li p {
  font-size: var(--fs24);
  color: #fff;
  line-height: 0.3rem;
  margin-top: 0.1rem;
}
.goodsinfo-wrapper .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.goodsinfo-wrapper .info .inner {
  width: 100%;
}
.goodsinfo-wrapper .title-box .title {
  font-size: var(--fs48);
  color: #fff;
  line-height: 0.84rem;
  font-family: "regular";
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.goodsinfo-wrapper .title-box .line {
  width: 0.43rem;
  height: 0.03rem;
  background-color: #7fbe26;
}
.goodsinfo-wrapper .title-box .brief {
  font-size: var(--fs36);
  color: #ccc;
  font-family: "light";
  line-height: 0.6rem;
  margin-top: 0.48rem;
}
.goodsinfo-wrapper .item .info {
  left: 16.04%;
  width: 29.68%;
}
.goodsinfo-wrapper .item .info.right {
  left: auto;
  right: 11.14%;
}
.goodsinfo-wrapper .item .info.center {
  left: 15%;
  width: 70%;
}
.goodsinfo-wrapper .item .info.center .inner {
  text-align: center;
}
.goodsinfo-wrapper .item .info.center .inner .title-box .line {
  margin: 0 auto;
}
.goodsinfo-wrapper .item .info.center .inner .content img {
  margin: 0 auto;
}
.goodsinfo-wrapper .item .info .content {
  margin-top: 1.1rem;
}
.goodsinfo-wrapper .item .content img {
  margin: 0;
}
.goodsinfo-wrapper .item .content li {
  text-align: center;
  display: inline-block;
  font-size: 0.28rem;
  color: #fff;
  letter-spacing: 1px;
  font-family: "light";
  line-height: 0.32rem;
  margin-right: 0.56rem;
}
.goodsinfo-wrapper .item .content li:last-child {
  margin-right: 0;
}
.goodsinfo-wrapper .item .content li img {
  display: inline-block;
  margin-bottom: 0.06rem;
}
.about-wrapper .title-box {
  margin-bottom: 0.84rem;
}
.about-wrapper .title-box.center {
  text-align: center;
}
.about-wrapper .title-box.center .line {
  margin: 0 auto;
}
.about-wrapper .title-box h3 {
  font-size: var(--fs48);
  font-family: "regular";
  font-weight: 700;
  line-height: 0.6rem;
  margin-bottom: 0.12rem;
}
.about-wrapper .title-box .line {
  width: 0.43rem;
  height: 0.03rem;
  background-color: #7fbe26;
}
.about-wrapper .box-1 {
  background: url(../img/aboutbg.jpg) no-repeat center center;
  background-size: cover;
  padding: 0.8rem 0 1.64rem;
}
.about-wrapper .box-1 .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-wrapper .box-1 .info {
  width: 51.2%;
}
.about-wrapper .box-1 .data {
  width: 42.26%;
  position: relative;
  bottom: 0;
  margin-top: 0.65rem;
  background: url(../img/about.jpg) no-repeat center center;
  background-size: cover;
  height: 100%;
}
.about-wrapper .box-1 .data ul {
  flex-flow: wrap;
}
.about-wrapper .box-1 .data ul li {
  position: relative;
  width: 33.33%;
  height: 2.25rem;
  padding: 0.96rem 0.1rem 0.3rem 0.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.about-wrapper .box-1 .data ul li:hover {
  background-color: #7fbe26;
}
.about-wrapper .box-1 .data p {
  margin-bottom: 0.2rem;
}
.about-wrapper .box-1 .data em,
.about-wrapper .box-1 .data p,
.about-wrapper .box-1 .data i,
.about-wrapper .box-1 .data .num span {
  color: #fff;
}
.about-wrapper .box-1 .name {
  font-size: var(--fs36);
  color: #7fbe26;
  font-weight: 700;
  font-family: "regular";
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.about-wrapper .box-1 .content {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.32rem;
  font-family: "regular";
}
.about-wrapper .cate-box {
  text-align: center;
  margin-bottom: 1.16rem;
  padding-left: 5.35rem;
  padding-right: 1.2rem;
}
.about-wrapper .cate-box a {
  position: relative;
  display: inline-block;
  font-size: var(--fs18);
  color: #999;
  font-family: "regular";
  margin-right: 0.5rem;
  line-height: 0.24rem;
  padding-bottom: 0.1rem;
}
.about-wrapper .cate-box a:last-child {
  margin-right: 0;
}
.about-wrapper .cate-box a.on {
  color: #000;
}
.about-wrapper .cate-box a.on:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.about-wrapper .cate-box a:after {
  content: "";
  width: 100%;
  height: 0.03rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  background-color: #7fbe26;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.about-wrapper .box-2 {
  background: url(../img/aboutbg2.jpg) no-repeat center center;
  background-size: cover;
  padding: 0.5rem 0 1.06rem;
}
.about-wrapper .box-2 .title-box h3 {
  color: #fff;
}
.about-wrapper .box-2 .year-box {
  position: relative;
}
.about-wrapper .box-2 .year-box:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  z-index: 0;
}
.about-wrapper .box-2 .year-box .box-container {
  padding: 0 1.22rem;
}
.about-wrapper .box-2 .swiper-slide {
  text-align: center;
  width: 25%;
  cursor: pointer;
}
.about-wrapper .box-2 .swiper-slide.on .year {
  color: #7fbe26;
}
.about-wrapper .box-2 .swiper-slide.on .dot {
  border-width: 0.03rem;
  border-color: #fff;
  background-color: #7fbe26;
}
.about-wrapper .box-2 .year {
  font-size: var(--fs18);
  color: #fff;
  line-height: 0.3rem;
  margin-bottom: 0.14rem;
  font-family: "regular";
}
.about-wrapper .box-2 .dot {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #000;
  border: solid 0.05rem rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.about-wrapper .box-2 .detail-box {
  margin-top: 0.9rem;
}
.about-wrapper .box-2 .item {
  display: none;
  padding: 0 1.22rem;
}
.about-wrapper .box-2 .item.on {
  display: block;
}
.about-wrapper .box-2 .item.on .pic,
.about-wrapper .box-2 .item.on .info {
  opacity: 1;
  visibility: visible;
}
.about-wrapper .box-2 .item.on .pic {
  animation: fadeInRight50 0.8s ease;
}
.about-wrapper .box-2 .item.on .info {
  animation: fadeInLeft50 0.8s ease;
}
.about-wrapper .box-2 .item .inner {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-wrapper .box-2 .item .pic,
.about-wrapper .box-2 .item .info {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.about-wrapper .box-2 .item .pic {
  width: 48.74%;
}
.about-wrapper .box-2 .item .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.about-wrapper .box-2 .item .info {
  width: 43.31%;
  padding-top: 0.66rem;
}
.about-wrapper .box-2 .item .title {
  font-size: 0.6rem;
  color: #7fbe26;
  line-height: 0.5rem;
  font-family: "mb";
  margin-bottom: 0.32rem;
}
.about-wrapper .box-2 .item .content {
  font-size: var(--fs16);
  color: rgba(255, 255, 255, 0.5);
  line-height: 0.36rem;
}
.about-wrapper .box-2 .box-container {
  position: relative;
}
.about-wrapper .box-2 .swiper-btn {
  width: 0.48rem;
  height: 0.48rem;
  transform: none;
  top: auto;
  bottom: -0.14rem;
}
.about-wrapper .box-2 .prev {
  left: 0;
  background-image: url(../img/prev5.png);
}
.about-wrapper .box-2 .prev:hover {
  background-image: url(../img/prev6.png);
}
.about-wrapper .box-2 .next {
  right: 0;
  background-image: url(../img/next5.png);
}
.about-wrapper .box-2 .next:hover {
  background-image: url(../img/next6.png);
}
.about-wrapper .box-3 {
  margin-top: -1px;
  background: url(../img/aboutbg3.jpg) no-repeat center center;
  background-size: cover;
  padding: 0.34rem 0 0.3rem;
}
.about-wrapper .box-3 .box-container {
  position: relative;
}
.about-wrapper .box-3 .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 60.42%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.about-wrapper .box-3 .title-box {
  margin-bottom: 0.96rem;
}
.about-wrapper .box-3 .title-box h3 {
  color: #fff;
}
.about-wrapper .box-3 .pic {
  position: relative;
  width: 54.643%;
  margin-left: auto;
  margin-right: 0;
}
.about-wrapper .box-3 .pic ul {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.about-wrapper .box-3 .pic li {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
.about-wrapper .box-3 .pic li:before,
.about-wrapper .box-3 .pic li:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: rgba(143, 195, 32, 0.2);
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.about-wrapper .box-3 .pic li:before {
  animation: iconScale 2s linear infinite;
}
.about-wrapper .box-3 .pic li:after {
  animation: iconScale 3s 1s linear infinite;
}
.about-wrapper .box-3 .pic li:first-child {
  right: 36%;
  top: 23%;
}
.about-wrapper .box-3 .pic li:nth-child(2) {
  right: 48%;
  top: 25%;
}
.about-wrapper .box-3 .pic li:nth-child(3) {
  left: 54%;
  top: 33%;
}
.about-wrapper .box-3 .pic li:nth-child(4) {
  left: 58.5%;
  top: 30.5%;
}
.about-wrapper .box-3 .pic li:nth-child(5) {
  right: 35.5%;
  top: 35.5%;
}
.about-wrapper .box-3 .pic li:nth-child(6) {
  left: 42%;
  top: 36%;
}
.about-wrapper .box-3 .pic li:nth-child(7) {
  left: 49%;
  top: 39%;
}
.about-wrapper .box-3 .pic li:nth-child(8) {
  left: 56.5%;
  top: 39%;
}
.about-wrapper .box-3 .pic li:nth-child(9) {
  left: 40%;
  top: 46%;
}
.about-wrapper .box-3 .pic li:nth-child(10) {
  left: 43%;
  top: 49%;
}
.about-wrapper .box-3 .pic li:nth-child(11) {
  left: 43%;
  top: 46%;
}
.about-wrapper .box-3 .pic li:nth-child(12) {
  left: 47%;
  top: 48%;
}
.about-wrapper .box-3 .pic li:nth-child(13) {
  left: 40%;
  top: 56.8%;
}
.about-wrapper .box-3 .pic li:nth-child(14) {
  left: 39%;
  top: 59.4%;
}
.about-wrapper .box-3 .pic li:nth-child(15) {
  left: 37%;
  top: 59.2%;
}
.about-wrapper .box-3 .pic li:nth-child(16) {
  left: 50.5%;
  top: 59.4%;
}
.about-wrapper .box-3 .pic li:nth-child(17) {
  left: 51.8%;
  top: 67.5%;
}
.about-wrapper .box-3 .pic li:nth-child(18) {
  left: 57%;
  top: 60%;
}
.about-wrapper .box-3 .pic li:nth-child(19) {
  left: 58.5%;
  top: 61.5%;
}
.about-wrapper .box-3 .pic li:nth-child(20) {
  left: 59.5%;
  top: 62%;
}
.about-wrapper .box-3 .pic li:nth-child(21) {
  left: 60.2%;
  top: 61.8%;
}
.about-wrapper .box-3 .pic li:nth-child(22) {
  left: 61.3%;
  top: 59.8%;
}
.about-wrapper .box-3 .pic li:nth-child(23) {
  left: 60.5%;
  top: 49%;
}
.about-wrapper .box-3 .pic li:nth-child(24) {
  left: 56%;
  top: 49.5%;
}
.about-wrapper .box-3 .pic li:nth-child(25) {
  left: 56.6%;
  top: 45%;
}
.about-wrapper .box-3 .pic li:nth-child(26) {
  left: 62.6%;
  top: 43%;
}
.about-wrapper .box-3 .pic li:nth-child(27) {
  left: 65.8%;
  top: 41%;
}
.about-wrapper .box-3 .pic li:nth-child(28) {
  left: 69%;
  top: 42.5%;
}
.about-wrapper .box-3 .pic li:nth-child(29) {
  left: 67%;
  top: 48%;
}
.about-wrapper .box-3 .pic li i {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -0.03rem;
  margin-left: -0.03rem;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-color: #7fbe26;
  z-index: 1;
}
.about-wrapper .box-3 .data {
  position: relative;
  bottom: 0;
  margin-top: 1.16rem;
}
.about-wrapper .box-3 .data em,
.about-wrapper .box-3 .data p {
  color: #fff;
}
.about-wrapper .box-3 .data i {
  color: #7fbe26;
}
.about-wrapper .box-3 .info .title {
  font-size: var(--fs36);
  color: #fff;
  font-family: "regular";
  line-height: 0.48rem;
  margin-bottom: 0.13rem;
}
.about-wrapper .box-3 .info .title,
.about-wrapper .box-3 .info .content,
.about-wrapper .box-3 .info .title-box {
  width: 51.63%;
}
.about-wrapper .box-3 .content {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.32rem;
  font-family: "regular";
}
.about-wrapper .box-4 {
  position: relative;
  background-color: #f3f4f6;
}
.about-wrapper .box-4:after {
  content: "";
  width: 100%;
  height: 2.13rem;
  background: url(../img/aboutbg4.jpg) no-repeat center bottom;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.about-wrapper .box-4 .info-box {
  position: absolute;
  z-index: 10;
  width: 31.44%;
  padding-top: 1.34rem;
  padding-left: calc((100% - 16.8rem) / 2);
}
.about-wrapper .box-4 .info-box:before {
  content: "";
  width: calc(100% - 0.87rem);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  background: url(../img/aboutbg42.jpg) no-repeat center top;
  background-size: cover;
}
.about-wrapper .box-4 .info-box > div {
  position: relative;
  z-index: 10;
}
.about-wrapper .box-4 .info-box .data {
  position: relative;
  padding-right: 0.7rem;
  bottom: 0;
}
.about-wrapper .box-4 .info-box .data ul {
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-wrapper .box-4 .info-box .data li {
  width: 31%;
  margin-top: 0.52rem;
}
.about-wrapper .box-4 .info-box .data li:nth-child(-n+3) {
  margin-top: 0;
}
.about-wrapper .box-4 .title-box {
  margin-bottom: 0.44rem;
}
.about-wrapper .box-4 .brief {
  font-family: "regular";
  font-size: var(--fs16);
  margin-bottom: 0.56rem;
}
.about-wrapper .box-4 .brief span {
  display: inline-block;
  margin-top: 0.1rem;
  font-size: var(--fs30);
}
.about-wrapper .box-4 .pic img {
  height: 3.57rem;
  object-fit: contain;
}
.about-wrapper .data .num span {
  color: #7fbe26;
  height: 0.36rem;
  line-height: 0.36rem;
  font-size: var(--fs36);
}
.about-wrapper .data p,
.about-wrapper .data em {
  color: #333;
}
.about-wrapper .data p {
  margin-bottom: 0.1rem;
}
.about-wrapper .honor-box {
  position: relative;
  z-index: 10;
  width: calc(100% - (100% - 16.8rem) / 2);
  padding-top: 2.14rem;
  margin-left: auto;
  margin-right: 0;
}
.about-wrapper .honor-box .item {
  position: relative;
  display: none;
}
.about-wrapper .honor-box .item.on {
  display: block;
  animation: fadeIn 0.4s ease;
}
.about-wrapper .honor-box .item .swiper-container {
  width: calc(100% - 5.35rem);
  margin-left: auto;
  margin-right: 0;
}
.about-wrapper .honor-box .swiper-slide {
  width: 2.64rem;
}
.about-wrapper .honor-box .swiper-slide p {
  color: #999;
  font-family: "regular";
  height: 0.3rem;
  line-height: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: center;
  margin-top: 0.06rem;
}
.about-wrapper .honor-box .pic {
  padding: 0.05rem 0.06rem 0.07rem;
  background-image: linear-gradient(-63deg, #dedede 0%, #ededed 2%, #fdfdfd 50%, #ffffff 96%, #e1e1e1 100%), linear-gradient(#cecece, #cecece);
  background-blend-mode: normal, 
					normal;
}
.about-wrapper .honor-box .swiper-pagination {
  position: relative;
  width: 100%;
  height: 0.14rem;
  background-color: #d9d9d9;
  margin-top: 0.13rem;
}
.about-wrapper .honor-box .swiper-pagination .swiper-pagination-progressbar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7fbe26;
  transform-origin: left center;
}
.about-wrapper .honor-box .more {
  display: inline-block;
  color: #999;
  font-family: "regular";
  line-height: 0.24rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.about-wrapper .honor-box .more:hover {
  color: #7fbe26;
}
.about-wrapper .honor-box .more img {
  vertical-align: middle;
  margin-left: 0.14rem;
  position: relative;
  top: -1px;
  width: 0.24rem;
}
.about-wrapper .honor-box .bottom {
  background: url(../img/aboutbg43.png) no-repeat center center;
  background-size: cover;
  padding: 0.4rem 0.82rem 0.6rem;
}
.about-wrapper .box-5 {
  background: url(../img/aboutbg5.jpg) no-repeat center center;
  background-size: cover;
  background-color: #000;
  padding: 1.42rem 0 2.13rem;
}
.about-wrapper .box-5 .title-box {
  text-align: center;
  margin-bottom: 1.16rem;
}
.about-wrapper .box-5 .title-box h3 {
  color: #e6e6e6;
  margin-bottom: 0.23rem;
}
.about-wrapper .box-5 .title-box .line {
  margin: 0 auto;
}
.about-wrapper .box-5 .title-box .brief {
  font-size: var(--fs30);
  color: #e6e6e6;
  font-family: "regular";
  line-height: 0.36rem;
  margin-top: 0.37rem;
}
.about-wrapper .box-5 .title-box .brief em {
  display: inline-block;
  margin-left: 0.36rem;
}
.about-wrapper .box-5 .swiper-box {
  padding: 0 0.93rem;
}
.about-wrapper .box-5 .swiper-slide {
  position: relative;
  background-image: url(../img/brandbg.png);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 0.1rem;
  width: 1.78rem;
}
.about-wrapper .box-5 .swiper-slide:nth-last-child(-n+3):after,
.about-wrapper .box-5 .swiper-slide:nth-child(3n):after {
  display: none;
}
.about-wrapper .box-5 .swiper-slide:after {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  background-image: url(../img/block.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: -0.17rem;
  bottom: -0.17rem;
  z-index: 1;
}
.about-wrapper .box-5 .swiper-slide:hover img {
  transform: scale(10.05rem);
  -webkit-transform: scale(10.05rem);
  -moz-transform: scale(10.05rem);
  -ms-transform: scale(10.05rem);
  -o-transform: scale(10.05rem);
}
.about-wrapper .box-5 .swiper-slide img {
  display: block;
  width: 100%;
  height: 0.9rem;
  object-fit: contain;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.about-wrapper .box-5 .swiper-btn {
  width: 0.48rem;
  height: 0.48rem;
}
.about-wrapper .box-5 .prev {
  left: 0;
  background-image: url(../img/prev5.png);
}
.about-wrapper .box-5 .prev:hover {
  background-image: url(../img/prev6.png);
}
.about-wrapper .box-5 .next {
  right: 0;
  background-image: url(../img/next5.png);
}
.about-wrapper .box-5 .next:hover {
  background-image: url(../img/next6.png);
}
/*分页*/
.pageNum {
  text-align: center;
  font-size: 0;
  margin-top: 0.8rem;
}
.pageNum a {
  display: inline-block;
  font-size: var(--fs18);
  font-family: "regular";
  color: #3f4150;
  vertical-align: middle;
  margin: 0 0.05rem;
  width: 0.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  background-color: #f8f8f8;
  text-align: center;
  border-radius: 50%;
  transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
}
.pageNum a:first-child {
  margin-left: 0;
}
.pageNum a:last-child {
  margin-right: 0;
}
.pageNum .dot {
  line-height: 0.38rem;
}
.pageNum .ibtn {
  width: 1.1rem;
  border-radius: 40px;
}
.pageNum a:hover,
.pageNum .on {
  color: #fff;
  background-color: #7fbe26;
}
.pageMore {
  display: none;
  margin-top: 0.6rem;
}
.pageMore a {
  display: block;
  width: 100%;
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #7fbe26;
  color: #fff;
  font-size: 12px;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes iconScale {
  0% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
    -webkit-transform: scale(2.2);
    -moz-transform: scale(2.2);
    -ms-transform: scale(2.2);
    -o-transform: scale(2.2);
  }
}
@keyframes iconScale2 {
  from {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    opacity: 0;
  }
}
